

.img_header{
    width: 100%;
    height: 400px;
    position: relative;
}
.img_header img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center center;
}

.sho{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
}

.textimgh{
    position: absolute;
    top: 150px;
    right: 100px;
    color: #fff;
    z-index: 5;
}
.textimgh p{
    width: 60%;
    font-size: 19px;
}

@media (max-width:800px) {
    .textimgh p{
        width: 90%;
        font-size: 19px;
    }
    
.img_header{
    width: 100%;
    height: 300px;
    position: relative;
}
.textimgh{
    top:50px;
}
.img_header img{
    width: 100%;
    height: 300px;
}
}
@media (max-width:600px) {
    .textimgh{
        top:80px;
        right: 30px;
    }
    .textimgh p{
        width: 97%;
        font-size: 16px;

    }
}

/* ///////////////////////////bodyserv///////////////// */


.bodyserv{
    display: flex;
    justify-content: center ;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cardserv{
    position: relative;
    width: 100%;
    height: 210px;
    margin-bottom: 25px;
    border-radius: 6px;
    overflow: hidden;
}
.cardserv img{
    width: 100%;
    height:  280px;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    transition: all .4s ease;
}
.cardserv:hover img{ 
    transform: scale(1.1);
}
.cardserv a{
    color: #fff;
}
.textcardserv{
    position: absolute;
    top: 32px;
    right: 10px;
    color: #fff;
    height: 163px;
    z-index: 5;
}
.textcardserv h3{
    width: 96%;
    font-size: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.textcardserv p{
    font-size: 14px;
    margin-top: 10px;
    margin-left: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mored{
    border: none;
    background-color: #28AAE1;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    position: absolute;
    bottom: 0;
    right: 10px;
    font-size: 14px ;
}
@media (max-width:1080px) {
    .bodyserv{
        display: flex;
        justify-content: center;
        gap: 10px;
    }
    .cardserv{
        margin-bottom:15px ;
    }
}
@media (max-width:430px) {
    .cardserv{
        width: 100%;
    }
}