.services__list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.item {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.item__top-sec {
    display: flex;
    justify-content: space-between;
}

.item__text-sec {
    width: 43%;
}

.item__sec--order-1 {
    order: 1;
}

.item__sec--order-2 {
    order: 2;
}

.item__title {
    font-family: var(--second-family);
    font-size: 48px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.item__text {
    font-family: var(--font-family);
    font-size: 24px;
    line-height: 171%;
    margin-bottom: 30px;
}

.item__img-sec {
    position: relative;
    width: 50%;
    height: 380px;
}

.item__img-sec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.button--item {
    padding: 20px 80px;
}

.button--item.hidden {
    opacity: 0;
    pointer-services: none;
}

/* swiper */
.read-more__swiper {
    width: 100%;
    display: none;
    transition: max-height 0.5s ease-in-out;
}

.read-more__swiper.open {
    display: block;
}

.read-more__swiper-wrapper {
    margin-bottom: 30px;
}

.slide__wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.read-more__slide img {
    object-fit: cover;
    width: 100%;
    /* height: 100%; */
    margin-bottom: 16px;
}

.read-more__slide span {
    font-family: var(--second-family);
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #151515;
}

.buttons__container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.button--close {
    padding: 20px 110px;
}

@media (max-width: 1440px) {
}

@media (max-width: 1024px) {
    .item__top-sec {
        flex-direction: column;
        position: relative;
        padding-top: 65px;
        gap: 30px;
    }

    .item__title {
        width: 100%;
        position: absolute;
        top: 0;
        font-size: 32px;
        text-align: center;
    }

    .item__text-sec {
        order: 2 !important;
        width: 100%;
    }

    .item__img-sec {
        order: 1 !important;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .item__img-sec {
        height: 190px;
    }

    .item__title {
        font-size: 32px;
    }

    .item__text {
        font-size: 14px;
    }

    .button--item {
        font-size: 22px;
        width: 100%;
    }
}
