#white {
    width: 100%;
    max-width: 1467px;
    margin: 0 auto;
    height: 100%;
    min-height: 765px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background-color: white;
}

@media (max-width: 950px) {
    #white {
        align-items: flex-start;
        flex-direction: column;
        gap: 50px;
    }
}

@media (max-width: 726px) {
    #white {
        align-items: flex-start;
        gap: 30px;
    }
}

@media (max-width: 550px) {
    #white {
        min-height: unset;
    }
}

.sider {
    width: 100%;
    max-width: 1467px;
    margin: 0 auto;
    height: 100%;
    min-height: 765px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background-color: black;
}

@media (max-width: 950px) {
    .sider {
        align-items: flex-start;
        flex-direction: column;
        gap: 50px;
    }
}

@media (max-width: 726px) {
    .sider {
        align-items: flex-start;
        gap: 30px;
    }
}

@media (max-width: 550px) {
    .sider {
        min-height: unset;
    }
}

.background {
    position: relative;
    right: 0;
    bottom: 0;
    min-width: 100%;
    height: 62vh;
    min-height: 800px;
    width: auto;
    overflow: hidden;
    opacity: 0;
    transition: opacity .3s, z-index .3s;
}

@media (max-width:1269px) {
    .background {
        min-height: 406px;
        height: 50.7vw;
    }
}
@media (max-width: 550px) {
    .background {
        position: relative;
        min-height: unset;
    }
}

.current {
    transition: opacity .5s, z-index .5s;
    opacity: 1;
}

.background video,
.background img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

#white .nav_block {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    border-bottom: 2px solid rgba(0, 0, 0, .1);
    padding-bottom: 6px;
    position: relative;
    justify-content: center;
    gap: 40px;
    z-index: 3;
    padding-top: 10px;
    max-width: fit-content;
    margin: 0px auto;
}

@media (max-width: 726px) {
    #white .nav_block {
        flex-direction: column;
        left: -11.2432%;
        position: relative;
        border-left: 2px solid rgba(0, 0, 0, .1);
        border-bottom: unset;
        padding-left: 22px;
        margin: unset;
    }
}

#white .info_block h2, #white .info_block p {
    color: #8c8c8c;
    line-height: 26px;
    font-size: 18px;
    font-family: "SFProDisplay-Bold", Sans-serif;
    font-weight: 500;
    transition: color .3s ease-in;
    cursor: pointer;
}

#white .top_line {
    position: absolute;
    top: 42px;
    left: -4px;
    transition: left .5s ease, width .5s ease;
    height: 2px;
    background-color: #dbad76;
}

@media (max-width: 726px) {
    #white .top_line {
        top: 0px;
        left: -2px;
        height: 40px;
        width: 2px !important;
        transition: top .3s ease, height .3s ease;
    }
}

.active_h2_white {
    color: #191919 !important;
}

.active_h2 {
    color: #8c8c8c !important;
}

.top_line {
    position: absolute;
    top: 42px;
    left: -4px;
    transition: left .5s ease, width .5s ease;
    height: 2px;
    background-color: #dbad76;
}

@media (max-width: 726px) {
    .top_line {
        top: 0px;
        left: -2px;
        height: 40px;
        width: 2px !important;
        transition: top .3s ease, height .3s ease;
    }
}

.nav_block {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    border-bottom: 2px solid rgba(0, 0, 0, .1);
    border-color: hsla(0, 0%, 100%, .1);
    padding-bottom: 6px;
    position: relative;
    justify-content: center;
    gap: 40px;
    z-index: 3;
    padding-top: 10px;
}

@media (max-width: 726px) {
    .nav_block {
        flex-direction: column;
        left: unset !important;
        position: relative;
        border-left: 2px solid rgba(0, 0, 0, .1);
        border-bottom: unset;
        border-color: hsla(0, 0%, 100%, .1);
        padding-left: 22px;
        margin: unset;
    }
}

.info_block h2, .info_block p {
    color: #8c8c8c;
    line-height: 26px;
    font-size: 18px;
    font-family: "SFProDisplay-Bold", Sans-serif;
    font-weight: 500;
    transition: color .3s ease-in;
    cursor: pointer;
}

.text_block {
    display: flex;
    position: relative;
    width: 100%;
    max-width: unset;
    justify-content: center;
}

@media (max-width: 550px) {
    .text_block {
        height: 100%;
        min-height: 80px;
    }
}

.text {
    color: #9f9f9f;
    line-height: 1.5;
    text-align: center;
    font-family: "SFProDisplay-Regular", Sans-serif;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: .2s display, .6s opacity, .6s visibility;
    position: relative;
    top: 0%;
    font-weight: 400;
    display: none;
}

@media (max-width: 726px) {
    .text {
        text-align: left;
    }
}

#white .text {
    color: #666666;
}

.text_active {
    opacity: 1;
    visibility: visible;
    display: block;
}

.container_content {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

@media (max-width: 726px) {
    .container_content {
        width: 100%;
        flex-direction: column-reverse;
        gap: 40px;
        padding-bottom: 50px;
        align-items: flex-start;
        padding-left: unset;
        padding-bottom: 20px;
    }
}

.vertical_sider {
    width: 100%;
    max-width: 1467px;
    margin: 0 auto;
    height: 100%;
    min-height: 832px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: black;
}

@media (max-width: 950px) {
    .vertical_sider {
        align-items: flex-start;
        flex-direction: column;
        gap: 50px;
        padding-bottom: unset;
        background-color: unset;
        min-height: unset;
    }
}

.video-background {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    overflow: hidden;
    opacity: 0;
    transition: opacity .5, z-index .5s;
}

@media (max-width: 950px) {
    .video-background {
        position: relative;
        height: 50vh;
    }
}

@media (max-width: 550px) {
    .video-background {
        position: relative;
        height: 50vw;
    }
}

.current {
    transition: opacity .5s, z-index .5s;
    opacity: 1;
}

.video-background video,
.video-background img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover !important;
}

.nav_block_slider {
    width: 348px;
    height: 225px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-left: 2px solid rgba(0, 0, 0, .1);
    border-color: hsla(0, 0%, 100%, .1);
    padding-left: 22px;
    left: 6.7568%;
    position: relative;
    justify-content: center;
    gap: 40px;
    z-index: 3;
}

@media (max-width: 950px) {
    .nav_block_slider {
        border-color: rgba(0, 0, 0, .1) !important
    }
}

@media (max-width: 550px) {
    .nav_block_slider {
        margin-bottom: 55px;
        padding-right: 3px;
        width: fit-content;
        left: unset;
    }
}

.info h2 {
    color: #8c8c8c;
    line-height: 26px;
    font-size: 18px;
    font-family: "SFProDisplay-Bold", Sans-serif;
    font-weight: 500;
    transition: color .15s ease-in;
    cursor: pointer;
}

.info p {
    color: #bababa;
    line-height: 21px;
    padding-top: 4px;
    font-family: "SFProDisplay-Bold", Sans-serif;
    font-weight: 500;
    font-size: 14px;
    overflow: hidden;
    transition: height .15s linear, padding-top .15s linear;
    height: 0;
    padding-top: 0;
    opacity: 1;
    cursor: pointer;
}

.top {
    position: absolute;
    top: 0;
    left: -2px;
    width: 2px;
    transition: top .3s ease, height .3s ease;
    height: 93px !important;
    background-color: #dbad76;
}

.active_h2 {
    color: white !important;
}

.active_p {
    height: 63px !important;
    padding-top: 4px !important;
}

.slider_content p {
    font-size: 36px;
    line-height: 25px;
    font-weight: 500;
    color: white;
    font-family: "SFProDisplay-Bold", Sans-serif;
}

.table_content .block span {
    font-size: 22px;
    line-height: 24px;
    font-weight: 400;
    color: white;
    font-family: "SFProDisplay-Regular", Sans-serif;
}

.block_text_open span {
    font-family: "SFProDisplay-Regular", Sans-serif;
    font-size: 35px;
    color: rgba(0, 0, 0, .9);
    font-weight: 700;
}

.slider_content span {
    font-size: 36px;
    line-height: 48px;
    font-weight: 500;
    color: white;
    font-family: "SFProDisplay-Bold", Sans-serif;
}

@media (max-width: 715px) {
    .slider_content p {
        font-size: 18px;
        color: black;
        text-align: center;
        width: 100%;
    }
    .table_content .block span {
        padding-top: 4px;
        font-size: 18px;
        line-height: 26px;
        color: black;
    }
}

/* ========== ОСНОВНЫЕ СТИЛИ СЛАЙДЕРА — ВСЕ СЛАЙДЫ ОДИНАКОВОГО РАЗМЕРА ========== */

html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

.swiper.mySwiper {
    position: relative !important;
    overflow: visible !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-bottom: 80px !important;
}

.swiper-wrapper {
    display: flex !important;
    align-items: stretch !important;
}

/* КЛЮЧЕВОЕ: все слайды строго одинаковой ширины */
.swiper.mySwiper .swiper-slide {
    position: relative !important;
    width: 900px !important;
    flex-shrink: 0 !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    background-color: #1a1a1a;
    overflow: hidden;
    border-radius: 0;
}

/* Адаптивная ширина для разных экранов (сохраняя одинаковость) */
@media (max-width: 1400px) {
    .swiper.mySwiper .swiper-slide {
        width: 75vw !important;
    }
}

@media (max-width: 1024px) {
    .swiper.mySwiper .swiper-slide {
        width: 70vw !important;
    }
}

@media (max-width: 768px) {
    .swiper.mySwiper .swiper-slide {
        width: 75vw !important;
    }
}

@media (max-width: 550px) {
    .swiper.mySwiper .swiper-slide {
        width: 80vw !important;
    }
}

.swiper.mySwiper .swiper-slide img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.swiper.mySwiper .swiper-slide .slider_content {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: transparent !important;
    padding: 30px 40px !important;
    color: white !important;
    z-index: 2 !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Навигация */
.navigation_block {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 25px auto 0 auto !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    pointer-events: auto !important;
    z-index: 10 !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
    background: transparent !important;
}

.navigation_block .swiper-pagination {
    position: relative !important;
    left: 0 !important;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
    width: auto !important;
    text-align: left !important;
    display: flex !important;
    gap: 12px !important;
}

.navigation_block .swiper-pagination-bullet {
    width: 32px !important;
    height: 4px !important;
    border-radius: 0 !important;
    background-color: #dddddd !important;
    opacity: 1 !important;
    margin: 0 !important;
    transition: all 0.3s ease !important;
}

.navigation_block .swiper-pagination-bullet-active {
    background-color: #dbad76 !important;
    width: 48px !important;
}

.navigation_block .nav_buttons {
    position: relative !important;
    right: 0 !important;
    left: auto !important;
    display: flex !important;
    gap: 16px !important;
}

.navigation_block .swiper-button-next,
.navigation_block .swiper-button-prev {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    margin-top: 0 !important;
    width: 50px !important;
    height: 40px !important;
    background-color: transparent !important;
    border: 1.5px solid #000000 !important;
    border-radius: 50% !important;
    transition: all 0.2s ease !important;
}

.navigation_block .swiper-button-next:after,
.navigation_block .swiper-button-prev:after {
    font-size: 18px !important;
    color: #000000 !important;
    font-weight: bold !important;
}

.navigation_block .swiper-button-next:hover,
.navigation_block .swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.05) !important;
    border-color: #dbad76 !important;
}

.navigation_block .swiper-button-next:hover:after,
.navigation_block .swiper-button-prev:hover:after {
    color: #dbad76 !important;
}

@media (max-width: 768px) {
    .swiper.mySwiper {
        padding-bottom: 70px !important;
    }
    
    .navigation_block {
        margin-top: 20px !important;
        padding: 0 16px !important;
    }
    
    .navigation_block .swiper-pagination-bullet {
        width: 24px !important;
        height: 3px !important;
    }
    
    .navigation_block .swiper-pagination-bullet-active {
        width: 36px !important;
    }
    
    .navigation_block .swiper-button-next,
    .navigation_block .swiper-button-prev {
        width: 36px !important;
        height: 36px !important;
    }
    
    .navigation_block .swiper-button-next:after,
    .navigation_block .swiper-button-prev:after {
        font-size: 14px !important;
    }
    
    .swiper.mySwiper .swiper-slide .slider_content {
        padding: 15px 20px !important;
    }
}