.services-sec{
    width: 80%;
    margin: auto;
    margin-bottom: 70px;
}
.services_flex{
    flex-wrap: wrap;
}
.servicess_caption{
    font-size: 25px;
    font-weight: 900;
    text-shadow: 0.5px 0.5px 0.5px black;
    text-align: center;
    margin-top: 60px;
}
.services_item{
    width: 31%;
    margin-top: 80px;
}
.services_item_img{
    background-position: center;
    height: 350px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px;
}
.services_item_title{
    font-size: 18px;
    font-weight: 900;
    text-shadow: 0.5px 0.5px 0.5px black;
    margin:20px 0 7px;
}
.services_item_description{
    font-size: 14px;
    font-weight: 900;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 60px;
}
.see_more_services{
    padding: 9px;
    background-color: var(--main);
    color: var(--white);
    border: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    margin-top: 20px;
    width: 150px;
    letter-spacing: 1px;
    transition: background-color 1s;
}
.see_more_services:hover{
    background-color: rgb(56, 47, 47);
}
/* ------media */

@media screen and (max-width: 1024px){
    .services_item{
        width: 45%;
    }
}
@media screen and (max-width: 768px){
    .services_item_img{
        height: 250px;
    }
}
@media screen and (max-width: 550px){
    .services_item{
        width: 100%;
    }
}


