/* service Section */
.service{
    padding: 80px 0 150px;
}
.service .section-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service-wrapper{
    display: flex;
    justify-content: space-between;
}
.service-img{
    width: 48%;
    display: flex;
    gap: 16px;
}
.service-img img{
    width: 100%;
}
.service-content{
    width: 48%;
}

.service-content p{
    line-height: 24px;
    margin-bottom: 14px;
}
.service-content ul{
    margin-bottom: 32px;
}
.service-content ul li{
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.service-content ul li img{
    height: 14px;
    margin-right: 4px;
}

@media (max-width:768px) {
    /* service Section 768*/
    .service-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 24px;
    }
    .service-img {
        width: 80%;
    }
    .service-img img {
        height: 260px;
        object-fit: cover;
        object-position: center center;
    }
    .service-content{
        width: 100%;
    }
}

@media (max-width:480px) {
    /* service Section 480*/
    .service-img {
        width: 100%;
    }
    .service-img img {
        height: 240px;
    }
}