.service__title {
    color: var(--gray-800);
    text-align: center;
    text-wrap-style: balance;
    font-weight: 600;
    line-height: 1;
    font-size: 2.5rem;
}

.service-item:hover {
    background-color: #D1BF90;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    background-color: #EDE9D4;
    padding: 1rem 1rem 1.375rem;
    border-radius: 1.25rem;
    transition: 0.5s;
}



.service-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--gold-400);
}

.service-item__icon img {
    height: 3rem;
    object-fit: contain;
}


.sw--service {
    margin-top: 2rem;
}

.service-item__title {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.25;
    color: #011632;
    font-weight: 600;
    min-height: 2.75rem;
    align-items: center;
    display: flex;
    justify-content: center;
}

.service-item__short {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    font-size: 1.125rem;
    line-height: 1.25;
    color: var(--gray-800);
    text-align: center;
    min-height: 5.625rem;
}

.service-item__more i {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item__more span {
    text-decoration: underline;
}

.service-item__more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    color: #011632;
    font-size: 1.125rem;
    line-height: 1.5;
    font-weight: 500;
}

.section-service--bg {
    padding-block: 5.5rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../../img/bg.webp);
}

.sw--service2 {
    position: relative;
}

.sw-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: calc(100% + 3rem);
    z-index: 1;
}

.sw-prev::before {
    content: '\e90b';
    font-family: 'icomoon';
}

.sw-next::after {
    content: '\e90c';
    font-family: 'icomoon';
}

.sw-btn:hover {
    background-color: var(--gold-400);
    color: #fff;
}

.sw-btn {
    pointer-events: all;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 4px 6px -2px #0A0D1208;
    box-shadow: 0px 12px 16px -4px #0A0D1214;
    color: var(--gold-400);
    background-color: #fff;
    cursor: pointer;
    transition: 0.5s;
}

.sw-btn.swiper-button-disabled {
    opacity: .5;
    pointer-events: none;
}

.service__button {
    margin: 3rem auto 0;
}








.sw--service2 .service-item__title {
    min-height: unset;
    font-size: 1.25rem;
}

.sw--service2 .service-item__short {
    font-weight: 300;
    padding-inline: 1rem;
}

.sw--service2 .service-item a {
    transition: color 0.5s;
}

.sw--service2 .service-item:hover a {
    color: var(--gold-400);
}

.sw--service2 .service-item {
    background-color: #fff;
    box-shadow: 0px 4px 6px -2px #0A0D1208;
    padding: 1.25rem 1rem 1.75rem;

}




.service__button {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    background-color: var(--gold-400);
    border-color: var(--gold-400);
}

.service__button:hover {
    background-color: #fff;
    color: var(--gold-400);
}

.service__button i {
    font-size: 0.75rem;
}


@media (min-width:992px) {
    .sw-service2 {
        padding: 0.5rem !important;
        margin: -0.5rem !important;
    }

    .sw--service2 .service-item__short {
        font-weight: 300;
        padding-inline: 1rem;
    }
}

@media (max-width:991.98px) {
    .service__title {
        font-size: 1.75rem;
    }

    .service__button {
        margin: 2rem auto 0;
    }

    .section-service--bg {
        padding-block: 3rem;
    }
}

@media (max-width:767.98px) {
    .sw-nav {
        transform: unset;
        position: unset;
        margin: 2rem auto 0;
        width: fit-content;
    }

    .sw--service2 .service-item__title {
        font-size: 1.125rem;
    }
}