.documentation {
    overflow: hidden;
}

.documentation .main-title {
    margin-bottom: 24px;
}

.documentationSwiper {
    overflow: visible;
    padding-top: 62px;
}

.documentationSwiper .swiper-wrapper {
    padding-left: 0;
    align-items: stretch;
}

.documentationSwiper .swiper-wrapper .swiper-slide {
    height: unset;
}

.documentationSwiper .swiper-slide {
    border: 1px solid #B8B8B8;
    border-radius: 24px;
    padding: 40px;
}

.documentationSwiper .swiper-slide .top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid #B8B8B8;
    margin-bottom: 24px;
    position: relative;
}

.documentationSwiper .swiper-slide .top h3 {
    font-size: 32px;
    font-weight: 500;
    max-width: 342px;
    flex: 1;
}

.documentationSwiper .swiper-slide .top h5 {
    color: #48788c;
    position: absolute;
    top: 0;
    right: 0;
}

.documentationSwiper .swiper-slide .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}


.documentation-prev,
.documentation-next {
    position: absolute;
    top: 0;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    z-index: 10;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.documentation-prev {
    left: 0;
}

.documentation-next {
    right: 0;
}


.documentation-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.documentation-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    cursor: pointer;
}

.documentation-bullet-active {
    background: #000;
}

.documentation-pagination {
    display: flex;
    gap: 4px;
    margin-top: 60px;
    justify-content: center;
}

.documentation-bullet {
    width: 24px;
    height: 2px;
    background: #F4EEE7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.documentation-bullet-active {
    background: #48788c;
    width: 48px;
}

@media screen and (max-width: 992px) {
    .documentationSwiper .swiper-slide {
        padding: 24px;
    }

    .documentationSwiper .swiper-slide .top h3 {
        font-size: 24px;
    }
}

@media screen and (max-width: 767px) {
    .documentationSwiper {
        padding-top: 49px;
    }

    .documentationSwiper .swiper-slide {
        border-radius: 16px;
    }

    .documentationSwiper .swiper-slide .top {
        padding-bottom: 16px;
        margin-bottom: 16px;
    }

    .documentationSwiper .swiper-slide .top h3 {
        font-size: 18px;
    }

    .documentationSwiper .swiper-slide .bottom p {
        font-size: 12px;
    }

    .documentation-prev, .documentation-next {
        font-size: 12px;
        padding: 12px;
        bottom: unset;
    }

    .documentation-pagination {
        margin-top: 40px;
    }

    .documentation-bullet {
        width: 12px;
    }

    .documentation-bullet-active {
        width: 24px;
    }
}