.service{
    padding: 150px 0;
}
.service .container{
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.service-img{
    width: 40%;
}
.service-img img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.service-content{
    width: 56%;
}

.service-description{
    margin: 20px 0;
    font-size: 15px;
    color: #292929;
    line-height: 24px;
}

.service-points{
    margin-bottom: 24px;
}

.service-points li{
    margin-bottom: 10px;
    font-size: 16px;
}

.service-points li i{
    color: var(--primary-color);
}



.service-advantage{
    padding: 0 0 150px;
}
.service-advantage .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.service-advantage-img{
    width: 42%;
    /* margin-left: 250px; */
    position: relative;
    z-index: 2;
}
.service-advantage-img img{
    width: 100%;
    height: 400px;
    object-fit: cover;
     position: relative;
    z-index: 2;
}
.service-advantage-content{
    position: relative;
    z-index: 1;
    /* margin-right: 280px; */
    right: 132px;
    width: 54%;
    padding: 48px 56px 48px 120px;
    background: var(--secondary-color);
    color: #fff;
}
.service-advantage-content .section-subtitle{
    color: #fff;
}
.service-advantage-description{
    margin-top: 16px;
    color: #e7e7e7;
    line-height: 27px;
}

@media (max-width: 768px) {
    .service .container {
        flex-wrap: wrap;
        gap: 32px;
        /* padding: 0 20px; */
    }
    .service-content {
        width: 80%;
    }
    .service-img {
        width: 100%;
    }

    .service-advantage .container {
        flex-direction: column-reverse;
    }
    .service-advantage-content {
        padding: 48px 48px 120px;
        width: 84%;
        right: 0;
    }
    .service-advantage-img {
        margin-top: -90px;
        width: 62%;
    }
    
}
@media (max-width: 480px) {
    .service-content {
        width: 100%;
    }

    .service-advantage-content {
        padding: 48px 20px 120px;
        width: 100%;
        right: 0;
    }
    .service-advantage-img {
        margin-top: -90px;
        width: 80%;
    }

}