.service__dec{
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    opacity: 0;
    transition: 0.3s all linear;
    padding-inline: 30px;
    text-align: center;
}
.service__dec p{
    font-size: 16px;
    line-height: 30px;
    color: #ECECEC;
}

.service-item{
    transition: 0.3s all linear;
    position: relative;
    margin-bottom: 24px;
}

.service-item:hover .service__dec{
    opacity: 1;
}
.service-item:hover .service-txt-div{
    bottom: 24px;
}

.service-txt-div{
    transition: 0.3s all linear;
    position: absolute;
    z-index: 9;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 100%;
    padding-inline: 30px;
    height: 60px;
    text-align: center;
}

.service-item:before{
    content: "";
    display: block;
    z-index: 99;
    background-image: url(../../img/arrow-hover.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    height: 47px;
    width: 47px;
    position: absolute;
    bottom: 100px;
    right: 50%;
    transform: translateX(50%);
    transition: 0.3s all linear;
    opacity: 0;
}
.service-item:after{
    content: "";
    display: block;
    z-index: 99;
    position: absolute;
    top: -38px;
    right: 50%;
    transform: translateX(50%);
    width: 1px;
    height: 38px;
    background-color: #ffffffcc;
    transition: 0.3s all linear;
    opacity: 0;
}
.service-item:hover:before {
    opacity: 1;
}
.service-item:hover:after{
    top: 0;
    opacity: 1;
}

.service-item-image{
    transition: all 0.3s;
    position: relative;
}
.service-item-image:before{
    content: "";
    display: block;
    z-index: 9;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, rgba(33, 33, 33, 0) 0%, #212121 86.3%);
    border-radius: 16px;
}
.service-item-image img{
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    object-fit: cover;
    margin: auto;
    display: block;
    width: 100%;
}

.card-head-service , .card-head-service a{
    font-size: 20px;
    color: white;
    line-height: 30px;
    z-index: 99;
    text-align: center;
    font-family: 'Dosis-Regular';
}

.service-btn-wrapper{
    margin-top: 32px;
}

.download_btn{
   margin-bottom: 25px;
   width: 100%;
   height: 60px !important;
   font-size: 20px !important;
   border-radius: 12px !important;
}
.button.download_btn:after{
    display: none;
}









@media (min-width:992px){
    .sw-service{
        position: absolute;
        transform: translate(-50%, -46%);
        top: 46%;
        left: 50%;
        width: calc(100% + 24px);
        justify-content: space-between !important;
        z-index: 9;
        pointer-events: none;
    }
}






@media (max-width:991px) {

    .service-txt-div{
        padding-inline: 15px !important;
    }

    .swiper-service{
        padding-inline: 12px;
        margin-inline: -12px;
    }

    .card-head-service , .card-head-service a{
        font-size: 16px;
        line-height: 28px;
    }

    .service-btn-wrapper {
        margin-top: 16px;
    }

    .sw-service{
     margin-top: 24px;
    }

}



@media (max-width:575px){
    .service-item:before{
        height: 24px;
        width: 24px;
    }
}




@media (max-width:423px) {
    .card-head-service, .card-head-service a{
        line-height: 22px !important;
    }
}



@media (max-width:767px){
    .service__dec{
        padding-top: 5px;
        -webkit-line-clamp: 2;
        padding-inline: 0;
    }

    .service__dec p {
        font-size: 14px;
        line-height: 22px;
    }

    .service-txt-div{
        height: 70px;
    }
}