/* Generated from the theme CSS. Rebuild with scripts/theme-performance/build-css.cjs. */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');/* @import url('./components/section/section.css'); *//* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
    box-sizing: border-box;
  }
  
  /* 2. Remove default margin */
  * {
    margin: 0;
  }
  
  body {
    /* 3. Add accessible line-height */
    line-height: 1.1;
    /* 4. Improve text rendering */
    -webkit-font-smoothing: antialiased;
  }
  
  /* 5. Improve media defaults */
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
  }
  
  /* 6. Inherit fonts for form controls */
  input, button, textarea, select {
    font: inherit;
  }
  
  /* 7. Avoid text overflows */
  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }
  
  /* 8. Improve line wrapping */
  p {
    text-wrap: pretty;
  }
  h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
  }
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /*
    9. Create a root stacking context
  */
  #root, #__next {
    isolation: isolate;
  }.mySwiper {
    margin-top: 83px;
}

.swiper {
    width: 100%;
    height: 100%;
    left: 2%;
    
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;

}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider__card {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: flex-start;
    justify-content: end;
    flex-direction: column;
    background-size: cover;
    background-position: center;
    padding: 30px;
}

.slider__card-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: start;
}

.slider__card-title {
    font-size: 40px;
    color: #fff;
}
.slider__card-link {
    background-color: var(--accent);
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    width: fit-content;
}

.swiper-slide {
    width: 60%;
}

.swiper-slide:nth-child(2n) {
    width: 60%;
}

.swiper-slide:nth-child(3n) {
    width: 60% !important;
}

:root {
    /* colors */
    --accent: #EA5212;
    --accent-active: #ff4d00;
    --disabled: #ef9772;
    --body: #F6EEE9;
    --white: #FFFDFB;
    --font-color: #673C33;
    --TextColor: #673C33;

    --Body: #F6EEE9;
    --AccentLight: #ef9772;
    --AccentDark: #FFFDFB;
    --Hover: #ff4d00;
    --Block-Dark: #FFFDFB;

    /* font-size */
    --title-xl: 74px;
    --title-l: 70px;
    --title-m: 32px;
    --text-l: 24px;

    --text-m: 24px;

    /* margins */
    --margin-l: 130px;

    --radius-md: 12px;
}

body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300 !important;
    font-style: normal;
    font-size: var(--text-l);
    background-color: var(--body);
    color: var(--font-color);
}

.container {
    max-width: 1780px;
    width: auto;
    margin: 0 auto;
    padding: 0 15px;
}

.accent {
    color: var(--accent);
}

.btn {
    border: none;
    background-color: var(--accent);
    padding: 20px;
    cursor: pointer;
    width: fit-content;
    color: #fff;
    border-radius: 15px;
    font-size: 20px;
}

.btn:hover {
    background-color: var(--accent-active);
}


.title {
    font-size: 32px;
    margin: 0;
    padding: 0;
}

.title_L {
    font-size: 40px;
    margin: 0;
    padding: 0;
}

.title_s {
    font-size: 24px;
    margin: 0;
    padding: 0;
}

.margin-block {
    margin-top: 80px;
}

@media screen and (max-width: 768px) {
    .title_L, .title {
        font-size: 24px;
    }
}

@media screen and (max-width: 768px) {
    .bg_blur_center {
        max-width: 500%;
    }
}

.lock {
    overflow: hidden;
}

@media screen and (max-width: 1280px) {
    :root {
        --title-m: 32px;
        --text-l: 18px;
        --title-l: 60px;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --title-l: 48px
    }
}
/* header */.header {
    position: relative;
    z-index: 5;
    margin-top: 25px;
}.header__wrapper {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}.header__logo {
    color: #fff;
}
@media screen and (max-width: 1024px) {
    .header__logo {
        font-size: 12px;
    }
}@media screen and (max-width: 1024px) {
    .header__nav.active {
        top: -25px;
        left: 0;
        position: absolute;
        background-color: var(--font-color);
        width: 100%;
        padding: 100px 40px;
        z-index: -1;
        height: 100vh;
        transition: .3s;
    }
    .header__nav {
        top: -25px;
        left: -100%;
        position: absolute;
        background-color: var(--Block-Dark);
        width: 100%;
        padding: 100px 40px;
        z-index: -1;
        height: 100vh;
        transition: .3s
    }
}.header__links {
    display: flex;
    gap: 21px;
}

@media screen and (max-width: 1024px) {
    .header__links {
        flex-direction: column;
    }
}.header__link {
    transition: .3s;
    color: #fff;
    font-size: 18px;
}
.header__link:hover {
    color: var(--Hover);
    transition: .3s;
}.header__buttons {
    display: flex;
    gap: 12px;
}

@media screen and (max-width: 1024px) {
    .signin-btn {
        display: none !important;
    }
}.burger-btn {
    display: none;
    border: none;
    width: 50px;
    cursor: pointer;
    background-image: url('assets/img/menu-btn.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-position-x: -27px;
}

@media screen and (max-width: 1024px) {
    .burger-btn {
        display: block;
        max-width: 36px;
    }

    .burger-btn.active {
        background-position-x: 5px;
    }
}.btn_header_light {
    background-color: var(--white);
    padding: 10px 8px;
    border-radius: 8px;
    transition: .3s;
    color: var(--text-color);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn_header_light:hover, .btn_header_dark:hover, .btn_dark:hover, .btn_light:hover, .btn_play:hover {
    background-color: var(--Hover);
    transition: .3s;
    color: #fff;
}


.btn_header_dark {
    padding: 10px 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0px 0px 4px 0px rgb(255, 255, 255);
    box-shadow: 0px 0px 4px 0px rgb(255, 255, 255);
    transition: .3s;
    background-color: rgba(255, 255, 255, 0);
}

.btn_light {
    background-color: var(--accent);
    padding: 10px 20px;
    border-radius: 15px;
    transition: .3s;
    width: fit-content;
    color: #fff;
}

.btn_dark {
    background-color: var(--AccentDark);
    padding: 10px 20px;
    border-radius: 15px;
    transition: .3s;
  	color: var(--TextColor);
}

.btn_play {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    color: var(--Text);
    border-radius: 28px;
    border: none;
    background-color: var(--AccentDark);
    cursor: pointer;
    transition: .3s;
}

@media screen and (max-width: 1024px) {
    .btn_header_dark {
        padding: 5px;
    }
}

/* Pages */
/* Pages */.thin {
    font-weight: 300 !important;
}

.accent {
    color: var(--accent);
}

.btn {
    border: none;
    background-color: var(--accent);
    padding: 20px;
    cursor: pointer;
    width: fit-content;
    color: #fff;
    border-radius: 15px;
    font-size: 20px;
    display: block ruby;
}

.btn:hover {
    background-color: var(--accent-active);
}

.hero {
    position: relative;
    height: 120vh;
    margin-top: -94px;
    border-radius: 0 0 50px 50px;
    overflow: hidden;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0%;
    background-image: url('assets/img/hero.png');
    background-size: cover;
    background-position: center;
    will-change: transform;
    transform: translateY(0);
}

.hero-bg_kt {
	background-image: url('assets/img/kt.webp');
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, calc(var(--overlay, 0))) 0%,
            rgba(234, 82, 18, calc(var(--overlay, 0) * 0.8)) 100%);
    opacity: var(--overlay, 0);
    pointer-events: none;
}

.hero__wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.hero__cta {
    color: #fff;
    display: flex;
    gap: 40px;
    flex-direction: column;
}

.hero__breads {
    font-size: 15px;
}

.hero__title {
    max-width: 760px;
    width: 100%;
    font-size: var(--title-xl);
    line-height: 0.6;
}

.hero__subtitle {
    font-size: 48px;
    max-width: 760px;
    width: 100%;
}

.hero__paragraph {
    font-size: var(--text-l);
    max-width: 600px;
    width: 100%;
}

.hero__link {
    background-color: var(--accent);
    padding: 20px;
    color: #fff;
    border-radius: 20px;
    width: fit-content;
    display: block ruby;
}

.hero__link>img {
    margin-left: 15px;
}

.hero__link:hover {
    background-color: var(--accent-active);
}

.hero__cards {
    display: flex;
    gap: 10%;
    z-index: 1;
    position: relative;
}

.hero__card {
    position: relative;
    background-color: var(--white);
    padding: 25px;
    border-radius: 15px;
    width: 33.33%;
    display: flex;
    align-items: center;
    gap: 45px;
}

.hero__card-img {
    width: 50px;
    height: 50px;
}

.hero__card-text {
    font-size: 20px;
    max-width: 250px;
    width: 100%;
    color: var(--font-color);
}

.hero__card-num {
    color: var(--accent);
    font-size: 15px;
    position: absolute;
    top: 15px;
    right: 15px;
}

.about-us__title {
    font-size: var(--title-m);
    text-align: center;
    max-width: 1064px;
    width: 100%;
    margin: 0 auto;
    margin-top: 80px;
}

.about-us__paragraph {
    max-width: 855px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    margin-top: 30px;
}

.about-us__cards {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.about-us__card_main {
    width: 50%;
    height: 550px;
    background-image: url('assets/img/about.png');
    display: flex;
    flex-direction: column;
    justify-content: end;
    background-position: center;
    border-radius: 15px;
}

.about-us__card_main-text {
    padding: 25px;
    color: #fff;

}

.about-us__card-title {
    font-size: var(--title-m);
}

.about-us__card-paragraph {
    margin-top: 23px;
}

.about-us__card {
    background-color: var(--white);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    padding: 25px;
    max-width: 430px;
    width: 49%;
}

.about-us__card-title_num {
    font-size: 100px;
    color: var(--accent);
}

.about-us__card-text {
    font-size: 20px;
    max-width: 370px;
    width: 100%;
    margin-top: 16px;
}

.about-us__cards_white {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 50%;
    gap: 2%;
}

.explore__text {
    margin-top: var(--margin-l);
}

.explore__title {
    font-size: var(--title-l);
}

.explore__paragraph {
    max-width: 1210px;
    width: 100%;
    margin-top: 33px;
}

.ctrl-slider {
    margin-top: 35px;
}

.slider-btn {
    border: none;
    background-color: var(--accent);
    background-position: center;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    cursor: pointer;
}

.slider-btn:hover {
    background-color: var(--accent-active);
}

.slider-btn_prev {
    background-image: url('assets/img/arrl.svg');
}

.slider-btn_next {
    background-image: url('assets/img/arrr.svg');
}

.slider-btn[aria-disabled="true"] {
    background-color: var(--disabled);
}

.video-play {
    padding: 20px;
    border-radius: 100%;
    border: none;
    cursor: pointer;
    display: flex;
    width: 70px;
    height: 70px;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.video-play>img {
    display: block;
    width: 25px;
    height: auto;
}

.slider__card-link:hover {
    background-color: var(--accent-active);
}

.test__wrapper {
    margin-top: var(--margin-l);
    background-color: white;
    padding: 40px;
    margin-top: 40px;
    border-radius: 50px;
    display: flex;
    flex-wrap: wrap-reverse;
    gap: 20%;
}

.test__img > img {
  max-height: 400px;
  height: auto;
  max-width: 100%;
}

.test__text {
    max-width: 650px;
}

.tests__title {
    font-size: var(--title-l);
}

.tests__paragraph {
    margin-top: 30px;
}

.tests__link {
    margin-top: 30px;
    display: block;
}

.price__wrapper {
    margin-top: var(--margin-l);
    padding: 80px 0 80px 0;
    background-color: var(--accent);
    border-radius: 50px;
}

.price__text {
    max-width: 825px;
    width: 100%;
    color: #fff;
}

.price__title {
    font-size: var(--title-l);
}

.price__pragraph {
    margin-top: 30px;
}

.offer-cards {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.offer-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 50px 20px;
    max-width: 530px;
    width: 100%;
    display: flex;
    flex-direction: column;
    font-size: 20px;
}

.offer-card__title {
    font-size: var(--title-m);
    max-width: 500px;
    width: 100%;
}

.offer-card__tag {
    margin-top: 30px;
    background-color: #FAE3B1;
    padding: 7px 15px;
    display: block;
    border-radius: 10px;
    width: fit-content;
    font-size: 18px;
}

.offer-card__img {
    margin-top: 30px;
    max-width: 530px;
    width: 100%;
    height: auto;
}

.offer-card__paragraph {
    margin-top: 30px;
    min-height: 180px;
}

.offer-card__list {
    margin-top: 30px;
}

.offer-card__body {
    margin-top: 57px;
}

.offer-card__body>span {
    color: var(--accent);
    font-weight: 500;
}

.offer-card__variables {
    display: flex;
    margin-top: 30px;
    height: 280px;
    position: relative;
    justify-content: space-between;
}

.offer-card__variables_divider {
    width: 2px;
    display: block;
    background-color: rgba(103, 60, 51, 0.141);
    position: absolute;
}

.offer-card__variant {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.variant-week {
    text-transform: uppercase;
    font-weight: 500;

}

.variant-op {
    margin-top: 30px;
    max-width: 230px;
    width: 100%;
}

.variant-price {
    margin-top: 30px;
    color: var(--accent);
    font-weight: 500;
}

.variant__link {
    margin-top: 23px;
    display: block !important;
    margin: 0 auto;
}

.offer-card__footer>a {
    text-decoration: underline;
    color: var(--font-color);
    text-align: center;
    margin-top: 40px;
    display: block;
}

.answer__title {
    margin-top: var(--margin-l);
    font-size: var(--title-l);
}

.answer__wrapper {
    margin-top: 48px;
    display: flex;
    gap: 20px;
}

.answer__list {
    width: 100%;
}

.qwestion {
    background-color: var(--white);
    padding: 28px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    cursor: pointer;
    font-size: 24px;
}

.qwestion:first-child {
    margin-top: 0px;
}

.qwestion>div {
    display: flex;
    align-items: center;
    gap: 25px;
}

.hystmodal__simple {
    padding: 20px;
    border-radius: 15px;
    font-size: 18px;
}

.reviews__title {
    margin-top: var(--margin-l);
    font-size: var(--title-l);
}

.ticker {
    overflow: hidden;
    width: 100%;
    margin-bottom: 32px;
    margin-top: 32px;
}

.track {
    display: flex;
    width: max-content;
    gap: 24px;
    --move: calc((860px + 24px) * 3);
    animation: scroll 25s linear infinite;
}

.comment {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    max-width: 800px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    font-size: 18px;
}

.comment__author {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 25px;
    padding: 35px;
    border-radius: 100%;
    color: #fff;
    background-color: var(--accent);
}

.track>.comment:nth-child(2n)>.comment__author {
    background-color: cadetblue;
}

.comment__name {
    font-size: 40px;
    color: var(--accent);
}

.comment__text {
    margin-top: 30px;
}

.reverse {
    animation-direction: reverse;
}

@keyframes scroll {
    to {
        transform: translateX(calc(-1 * var(--move)));
    }
}

.track:hover {
    animation-play-state: paused;
}

.contact__wrapper {
    display: flex;
    gap: 17px;
}

.contact__wrapper>img {
    width: 50%;
}

.contact__title {
    font-size: var(--title-l);
    max-width: 750px;
    width: 100%;
}

.contact__paragraph {
    margin-top: 30px;
    max-width: 715px;
    width: 100%;
    font-size: 18px !important;
}

.form-main {
    margin-top: 85px;
    display: flex;
    flex-direction: column;
}

.form-main__input {
    font-size: 20px;
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    border: none;
}

.form-main__input:focus-visible {
    outline: 2px solid var(--accent);
}

.form-main__input:first-child {
    margin-top: 0px;
}

.form-main__btn {
    margin-top: 20px;
}

.footer {
    background-color: #3B2925;
    border-radius: 20px 20px 0 0;
    /* height: 50vh; */
    margin-top: 80px;
}

.footer__wrapper {
    padding: 40px 0px;
    display: flex;
    justify-content: space-between;
    color: #fff;
}

.footer__title {
    font-size: 55px;
    color: #fff;
    max-width: 230px;
    width: 100%;
}

.footer__text {
    color: #fff;
    max-width: 420px;
    width: 100%;
    margin-top: 30px;
}

.footer__instagram {
    color: #fff;
    margin-top: 30px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer__link {
    font-size: 18px;
    color: #fff;
}

.footer__link:hover {
    color: var(--accent);
}

.sign_footer {
    background-color: var(--white);
    color: var(--accent);
}

.sign_footer:hover {
    background-color: #FAE3B1;
}

.author {
    background-color: #150F0E;
    color: #fff;
    padding: 5px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
}

.author__link {
    color: #fff;
}

/* adaptive styles */

@media screen and (max-width: 1280px) {
    .hero__paragraph {
        max-width: 475px;
    }

    .hero__cards {
        gap: 6%;
    }

    .hero__card {
        gap: 16px;
    }

    .hero__card-text {
        font-size: 18px;
    }

    .about-us__card {
        padding: 15px;
    }

    .about-us__card-title_num {
        font-size: 80px;
    }

    .offer-card__tag {
        font-size: 15px;
    }

    .btn {
        font-size: 16px;
    }

    .offer-card {
        font-size: 18px;
    }

    .qwestion {
        font-size: 20px;
    }

    .explore__paragraph {
        max-width: 700px;
    }

    .comment {
        max-width: 630px;
    }

    .form-main__input {
        font-size: 18px;
    }
}

@media screen and (max-width: 1024px) {
    .about-us__card-title_num {
        font-size: 60px;
    }

    .about-us__cards {
        gap: 5px;
    }

    .about-us__title {
        max-width: 700px;
    }

    .offer-card__title {
        font-size: 25px;
    }

    .offer-cards {
        gap: 10px;
    }

    .answer__img {
        width: 50%;
        object-fit: cover;
        border-radius: 15px;
    }

    .answer__list {
        width: 50%;
    }

    .form-main {
        margin-top: 35px;
    }

    .contact__wrapper>img {
        object-fit: cover;
        border-radius: 15px;
    }

    .offer-cards {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 768px) {

    .hero {
        height: auto;
    }

    .hero__wrapper {
        height: auto;
        margin-top: 120px;
    }

    .hero__title {
        line-height: 1.1;
    }

    .hero__subtitle {
        font-size: 24px;
    }

    .hero__cards {
        margin-top: 30px;
        flex-direction: column;
        gap: 15px;
        padding-bottom: 45px;
    }

    .hero__card {
        width: auto;
    }

    .about-us__cards {
        flex-direction: column;
        gap: 15px;
    }

    .about-us__card_main {
        width: auto;
    }

    .about-us__cards_white {
        width: auto;
        gap: 15px;
    }

    .about-us__card {
        width: auto;
    }

    .slider__card {
        padding: 10px;
    }

    .video-play {
        width: 35px;
        height: 35px;
    }

    .video-play>img {
        width: 15px;
    }

    .slider__card-title {
        font-size: 24px;
    }

    .slider__card-link {
        font-size: 16px;
    }

    .offer-card {
        width: auto;
    }

    .offer-card__variables {
        flex-direction: column;
        height: auto;
    }

    .variant-op {
        max-width: fit-content;
        text-align: center;
    }

    .offer-card__variant {
        align-items: center;
    }

    .offer-card__variables>.offer-card__variant:last-child {
        margin-top: 40px;
    }

    .answer__wrapper {
        flex-direction: column;
    }

    .answer__img {
        width: auto;
    }

    .answer__list {
        width: auto;
    }

    .comment {
        padding: 18px;
        max-width: 350px;
    }

    .comment__text {
        font-size: 12px;
        margin-top: 10px;
    }

    .comment__name {
        font-size: 18px;
    }

    .comment__author {
        width: 20px;
        height: 20px;
        padding: 20px;
    }

    .contact__wrapper {
        flex-direction: column;
    }

    .contact__wrapper>img {
        width: auto;
    }

    .footer__wrapper {
        flex-direction: column;
        gap: 35px;
    }

    .footer__title {
        font-size: 48px;
    }
  .hero__links {
      display: flex;
      flex-direction: column;
      width: fit-content;
      align-items: center;
      width: -webkit-fill-available;
      gap: 30px;
      padding-bottom: 30px;
  }
}.hero-s__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}.hero-s__title {
    margin-top: 115px;
    text-align: center;
}.hero-s__subtitle {
    max-width: 390px;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}.card_rectangular {
    background-color: var(--Block-Dark);
    border-radius: 20px;
    max-width: 685px;
    width: 100%;
    padding: 28px 28px 56px 28px;
    position: relative;
    align-items: start;
}.card__text > span {
    margin-top: 16px;
    display: block;
}.degree {
    position: relative;
}

@media screen and (max-width: 1024px) {
    .degree {
        overflow: hidden;
        padding-bottom: 50px;
    }
}.degree__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.degree__row:last-child {
    flex-direction: row-reverse;
}

@media screen and (max-width: 1024px) {
    .degree__row {
        flex-direction: column-reverse;
    }
    .degree__row:last-child {
        flex-direction: column-reverse;
    }
}.card__btn {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translate(-50%);
}.tariffs {
    background-image: url('assets/img/bg-v-2.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

.download-tables {
    display: none;
}

.tariffs__table {
  max-width: 80%;
}

@media screen and (max-width: 767px) {
    .download-tables {
        margin: 0 auto;
        display: block;
        margin-top: 50px;
    }
      .tariffs__wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
  	.tariffs__table {
  		max-width: 100%;
	}
}

@media screen and (min-width: 768px) and (max-width: 1270px) {
    .options.price-card__info {
        font-size: 10px;
    }
}.price-cards {
    display: flex;
    align-items: flex-start;
}

.price-card {
    width: 25%;
}

.transparent {
    background-color: var(--Body)!important;
}


@media screen and (max-width: 767px) {
    .price-cards {
        flex-direction: column;
        align-items: center;
    }

    .price-card {
        width: -webkit-fill-available;
        width: -moz-available;
        width: fill-available;
    }
}.price-card__top {
    background-color: var(--Block-Dark);
    max-width: 329px;
    width: 100%;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    text-align: center;
    border-radius: 22px;
    align-items: center;
    min-height: 300px;
    height: 100%;
    position: sticky;
    top: 0;
}.price-card__title {
    font-size: 16px;
    text-transform: uppercase;
}.price-card__cost {
    font-size: 24px;
}

.price-card__cost-old {
    color: tomato;
    text-decoration:line-through;
  	display: none;
}.price-card__info {
    max-width: 329px;
    display: flex;
    justify-content: center;
    padding: 28px;
    border-radius: 12px;
    background-color: var(--AccentDark);
    height: 150px;
    align-items: center;
}

.price-card__info[data-info="true"] {
    background-image: url('assets/img/check.svg');
    width: -moz-available;
    width: -webkit-fill-available;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px;
}

.price-card__info[data-info="false"] {
    background-image: url('assets/img/not.svg');
    width: -moz-available;
    width: -webkit-fill-available;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px;
}


@media screen and (max-width: 767px) {
    .price-card__info[data-info="false"],
    .price-card__info[data-info="true"] {
        display: none;
    }
}.price-card__btn {
    display: block;
}.blog-p {
    overflow: hidden;
    position: relative;
}.blog__title {
    text-align: center;
    margin-top: 115px;
}.posts {
    display: flex;
    flex-direction: column;
}

@media screen and (max-width:1023px) {

}.post-sm {
    display: flex;
    gap: 65px;
    margin-top: 90px;
}

.post-sm:nth-child(2n) {
    flex-direction: row-reverse;
}


@media screen and (max-width: 1023px) {
    .post-sm, .post-sm:nth-child(2n) {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
}.post__img {
    max-height: 356px;
    min-width: 488px;
    border-radius: 30px;
    object-fit: cover;
    object-position: center;
}

@media screen and (max-width: 1023px) {
    .post__img {
      min-width: 100%;
    }
}.post__preview {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--Block-Dark);
    border-radius: 25px;
    padding: 30px;
    min-height: 356px;
}.post__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

@media screen and (max-width: 400px) {
  .post__bottom {
    flex-wrap: wrap;
  	gap: 15px;
  	justify-content: center;
  }
}.hero_instructor-page {
    background-image: url('assets/img/instructor.png');
}.card_dark {
    background-color: var(--Block-Dark);
    padding: 30px;
    border-radius: 30px;
}.card_flex {
    display: flex;
    justify-content: space-between;
}.benefits__column > p {
    margin-top: 25px;
}

.benefits__column > ul {
    margin-top: 25px;
    list-style: disc;
    padding: 0 0 0 25px;
}.shedule__wrapper {
    text-align: center;
}

.shedule__wrapper > p {
    margin-bottom: 40px;
}.shedule__link {
    margin-top: 40px;
}.practics {
    position: relative;
}

@media screen and (max-width: 768px) {
    .practics {
        overflow: hidden;
    }
}.practics__wrapper > p {
    margin-top: 10px;
}

.practics__wrapper > ul {
    margin-top: 25px;
    list-style: disc;
    padding: 0 0 0 25px;
}.congress__title {
    text-align: center;
}.congress__cards {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

@media screen and (max-width: 810px) {
    .congress__cards {
        flex-direction: column;
    }
}.congress__card  > h5 {
    font-size: 20px;
}

.congress__card  > ul {
    margin-top: 20px;
    list-style: disc;
    padding: 0 0 0 20px;
}.subscribe {
    text-align: center;
}.subscribe__links {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

@media screen and (max-width: 810px) {
    .subscribe__links {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}.subscribe__link {
    border-radius: 25px;
    overflow: hidden;
    transition: .3s;
}

.subscribe__link:hover > .subscribe__img {
    transform: scale(1.2);
    transition: .3s;
}

.subscribe__link > .subscribe__img {
    transition: .3s;
}.subscribe__img {
    max-width: 400px;
} 

@media screen and (max-width: 810px) {
    .subscribe__img {
        max-width: 100%;
    }
}.info__wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.info__wrapper > p {
   margin-top: 25px;
}.info__links{
    display: flex;
    gap: 20px;
    margin: 25px 0;
}

@media screen and (max-width: 767px) {
    .info__links {
        flex-direction: column;
        align-items: center;
    }
}.instructor-options {
    position: relative;
}

@media screen and (max-width: 768px) {
    .instructor-options {
        overflow: hidden;
    }
}.instructor-options__title {
    text-align: center;
}.option-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}.option-card__header > h5 {
    font-size: 24px;
}

.option-card__header > span:first-child {
    font-size: 24px;
    display: block;
}.option-card__body {
    margin-top: 30px;
}

.option-card__body > li {
    margin-top: 20px;
    max-width: 230px;
}

.option-card__body > li:first-child {
    margin-top: 0;
    text-decoration:line-through;
    color: red;
}.option-card__footer {
    margin-top: 30px;
}.cards_instructor {
    gap: 30px;
    display: flex;
  	margin-top: 30px;
  	flex-wrap: wrap;
  	font-size: 18px;
  	justify-content: center;
}.entry-title {
  margin-top: 80px;
}
.wc-block-cart__sidebar, .wc-block-checkout__sidebar, .wc-block-checkout__form {
  background-color: var(--AccentDark);
  padding: 20px;
  border-radius: 12px;
}

.wc-block-components-button, .wp-element-button, .wc-block-cart__submit-button, .contained {
  background-color: var(--AccentLight);
  border-radius:12px;
}

.wc-block-cart-items__row {
  background-color: var(--AccentDark);
}

.wc-block-components-checkout-place-order-button__text {
  color: #fff;
}.post {
    flex-direction: column;
    margin-top: 80px;
}

.post__image > img{
    object-fit: cover;
    border-radius: 12px;
    width: 100%;
    margin: 20px 0;
}

.post__content > img {
    margin-top: 40px;
    border-radius: 12px;
}

.post__comments {
    margin-top: 40px;
}

.comment-body {
    background-color: var(--AccentDark);
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
}

.comment-reply-title {
    margin: 20px 0;
}

.comment-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comment-form > p {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
}

.comment-form > p > input {
    background-color: var(--AccentDark);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 5px;
}

.comment-form > p > textarea {
	background-color: #FFEDDA;
    border: none;
  	border-radius: 10px;
  	padding: 5px;
  	color: var(--font-color);
  	margin-top: 30px;

}

.comment-form-cookies-consent {
    flex-direction: row !important;
    gap: 10px
}

.form-submit > input {
    background-color: var(--accent) !important;
    display: block;
    width: fit-content;
    padding: 10px !important;
}

.comment-list {
    list-style: none;
    padding: 0;
}.message {
    display: none;
    padding: 10px;
    text-align: center;
    margin: 20px 0;
}

.message.success {
    background-color: #45E55B;
  	border-radius: 15px;
}

.message.error {
    background-color: #ff0505;
  	border-radius: 15px;
  	color: #fff;
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.contact_page {
  margin-top: 50px;
}.team__title {
    text-align: center;
}

.team__info {
    display: flex;
    justify-content: space-around;
}

.team__info:nth-child(2n) {
    display: flex;
    justify-content: space-around;
    flex-direction: row-reverse;
}

.team__text {
    display: flex;
    flex-direction: column;
}

.team__img {
    height: max-content;
}

.team__bio {
    max-width: 600px;
    width: 100%;
    margin: 30px 0
}

@media screen and (max-width: 1023px) {
    .team__info {
        flex-direction: column;
    }
    .team__info:nth-child(2n) {
        flex-direction: column;
    }
}.tutor-wrap {
  margin-top: 40px !important;
}*{ box-sizing: border-box; }

p{ margin:0; line-height:1.55; }
ul{ margin:0; padding:0; list-style:none; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.section{
  max-width: var(--container);
  margin: 0 auto;
  padding: 90px 40px;
}
.section--tight{ padding-top: 0; padding-bottom: 0; margin-bottom: 90px; }
.section-title{
  font-size: clamp(30px, 3.6vw, 46px);
  margin-bottom: 34px;
}
.section-lead{
  max-width: 900px;
  font-size: 18px;
  color: var(--brown-soft);
  margin-bottom: 14px;
}
.accent{ color: var(--accent); }

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family: var(--font-display);
  font-weight:600;
  font-size:14px;
  letter-spacing: .04em;
  padding: 16px 26px;
  border: none;
  cursor:pointer;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover{ transform: translateY(-2px); }
.btn--orange{ background: var(--accent); color:#fff; }
.btn--orange:hover{ background: var(--accent-active); box-shadow: 0 10px 24px rgba(234,82,18,.35); }
.btn--white{ background:#fff; color: var(--accent); }
.btn--white:hover{ box-shadow: 0 10px 24px rgba(0,0,0,.12); color: #fff; }
.btn--ghost{ background: rgba(255,255,255,.08); color:#fff; border:1px solid rgba(255,255,255,.35); }
.btn--ghost:hover{ background: rgba(255,255,255,.16); }
.btn--block{ width:100%; justify-content:center; }
.btn--sm{ padding: 11px 18px; font-size:12.5px; width:100%; justify-content:center; }
.icon-arrow{ font-size:14px; }

.card{
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(92,64,51,.08);
}

/* ============ HERO ============ */

.hero-bg_traineer {
    position: absolute;
    inset: 0%;
    background-image: url('assets/img/hero_trp.webp');
    background-size: cover;
    background-position: center;
    will-change: transform;
    transform: translateY(0);
}

.field{ display:block; margin-bottom: 18px; }
.field span{ display:block; font-size:15px; color: var(--brown-soft); margin-bottom:8px; }
.field input{
  width:100%;
  border:none;
  border-bottom: 1px solid var(--border);
  padding: 6px 2px 10px;
  font-size:15px;
  font-family: var(--font-body);
  background: transparent;
  color: var(--brown);
  outline:none;
}
.field input:focus{ border-color: var(--orange); }
.hero--trial__form-note{ font-size: 13.5px; color: var(--brown-soft); margin: 6px 0 20px; }

/* ============ JAK TO DZIALA ============ */
.how-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.how-grid__heading{ display:flex; align-items:flex-start; padding-top: 6px; }
.how-grid__heading h2{ font-size: clamp(28px,3.4vw,42px); }

.step-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 26px 30px;
}
.step-card__top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.step-card h3{ font-size:19px; color: var(--orange); line-height:1.25; }
.step-card p{ font-size:14.5px; color: var(--brown-soft); }
.num{ font-family: var(--font-display); font-size:15px; color: var(--accent); flex-shrink:0; }
.step-card--active{ background: var(--accent); }
.step-card--active h3, .step-card--active .num{ color:#fff; }
.step-card--active p{ color: rgba(255,255,255,.9); }

/* ============ SPLIT / SILA ============ */
.split{ margin-bottom: 34px; }
.split__text h2{ font-size: clamp(30px,3.8vw,44px); margin-bottom: 20px; }
.split__text p{ font-size:19px; max-width: 900px; color: var(--brown); }

.photo{ border-radius: var(--radius-lg); overflow:hidden; }
.photo--wide{ max-width: var(--container); margin: 0 auto; padding: 0 0 90px; }
.photo__placeholder{
  width:100%;
  aspect-ratio: 16/8;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg,#c9beb2,#efe6db);
  position:relative;
}
.photo__placeholder::after{
  content:'';
  position:absolute; inset:0;
  background-image: radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), transparent 60%);
}
.photo--floor{ background: linear-gradient(120deg,#d8cdbf,#efe4d6); }

/* ============ BANNER POZNAJ ============ */
.banner-photo{
  position:relative;
  border-radius: var(--radius-lg);
  overflow:hidden;
}
.banner-photo .photo__placeholder{ aspect-ratio: 16/5; border-radius: var(--radius-lg); }
.photo--gear{ background: linear-gradient(110deg,#8b8378,#5c5952); }
.banner-photo__content{
  position:absolute;
  left: 40px; top:0; bottom:0;
  display:flex; flex-direction:column; justify-content:center; gap:18px;
}
.banner-photo__content h3{ color:#fff; font-size: 30px; line-height:1.2; }

/* ============ PAKIET ============ */
.package-grid{
  display:grid;
  grid-template-columns: 300px 1fr;
  gap: 22px;
  align-items:start;
}
.package-aside{
  padding: 30px 26px;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.package-aside h3{ color: var(--accent); font-size:22px; }
.package-aside p{ color: var(--brown-soft); font-size:15px; }

.package-list{ display:flex; flex-direction:column; gap: 16px; }
.package-item{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
}
.package-item__head{
  display:flex;
  align-items:center;
  gap: 14px;
  margin-bottom: 12px;
}
.package-item__icon{ color: var(--accent); font-size:16px; }
.package-item__head h4{ color: var(--accent); font-size:18px; flex:1; }
.package-item ul li{
  color: var(--brown-soft);
  font-size:15px;
  padding: 2px 0;
}
.package-item--active{ background: var(--accent); color: #fff;}
.package-item--active h4, .package-item--active .num, .package-item--active .package-item__icon{ color:#fff; }
.package-item--active li{ color: rgba(255,255,255,.92); }

/* ============ DLA KOGO ============ */
.who-grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin: 40px 0 44px;
}
.who-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 20px 26px;
  display:flex;
  flex-direction:column;
}
.who-card__top{ display:flex; justify-content:space-between; gap:8px; margin-bottom: 18px; }
.who-card h4{ color: var(--accent); font-size: 17px; line-height:1.25; }
.who-card p{ color: var(--brown-soft); font-size: 13.5px; margin-top:auto; }
.who-card--active{ background: var(--accent); }
.who-card--active h4, .who-card--active .num{ color:#fff; }
.who-card--active p{ color: rgba(255,255,255,.92); }
.center-cta{ display:flex; justify-content:center; }

/* ============ WARSZTATY ============ */
.workshop{
  display:grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-md);
  overflow:hidden;
}
.workshop__text{
  background: linear-gradient(135deg, #F4B36A 0%, var(--accent) 90%);
  padding: 46px 44px;
  color:#fff;
  display:flex;
  flex-direction:column;
  gap: 16px;
  justify-content:center;
}
.workshop__text h3{ color:#fff; font-size: clamp(26px,2.8vw,36px); letter-spacing:.02em; }
.workshop__meta{ font-size: 14.5px; display:flex; flex-direction:column; gap:4px; color: rgba(255,255,255,.95); }
.workshop__note{ font-size: 13.5px; color: rgba(255,255,255,.85); max-width: 360px; }
.workshop__cta{ display:flex; align-items:center; gap: 18px; margin-top: 6px; flex-wrap: wrap;}
.workshop__price{ font-family: var(--font-display); font-weight:700; font-size:20px; }
.workshop__price small{ font-weight:500; font-size:12px; }
.photo--stretch{ background-image: url('https://flex-pro.online/wp-content/uploads/2026/08/Okladki-na-platforme-2.svg'); background-size: cover;  border-radius:0; aspect-ratio:auto; height:100%; min-height: 380px; }
.workshop__photo{ position:relative; }


/* ============ PROMO ============ */
.promo{
    margin: 0 auto;
  }

  @media (max-width: 720px){
    .promo{ grid-template-columns: 1fr; }
  }

  /* Left card */
  .promo__info{
    background: linear-gradient(135deg, #F4B36A 0%, var(--accent) 90%);
    border-radius: var(--radius-md);
    padding: 40px 40px 36px;
    display: flex;
    flex-direction: column;
    color: #fff;
    min-height: 360px;
  }

  .promo__title{
    font-size: 34px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 14px;
  }

  .promo__subtitle{
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
    margin: 0 0 28px;
    max-width: 320px;
  }

  .promo__meta{
    list-style: none;
    margin: 0 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .promo__meta li{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
  }

  .promo__meta .icon{
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.9;
  }

  .promo__form-note{
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255,255,255,0.9);
    margin: 32px 0 16px;
  }

  .promo__cta{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    color: #e8730a;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.03em;
    padding: 16px 20px;
    border-radius: 12px;
    text-transform: uppercase;
    transition: transform .15s ease, box-shadow .15s ease;
    width: fit-content;
  }

  .promo__cta:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  .promo__cta svg{
    width: 16px;
    height: 16px;
    margin-left: 12px;
  }

  /* Right card - image */
  .promo__media{
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 360px;
    background: #d8d8d8;
  }

  .promo__media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px){
  .hero__content{ grid-template-columns: 1fr; padding-top: 40px; }
  .hero__form{ max-width: 100%; }
  .how-grid{ grid-template-columns: 1fr 1fr; }
  .how-grid__heading{ grid-column: 1 / -1; }
  .package-grid{ grid-template-columns: 1fr; }
  .who-grid{ grid-template-columns: repeat(2,1fr); }
  .levels-grid{ grid-template-columns: 1fr; }
  .workshop{ grid-template-columns: 1fr; }
  .photo--stretch{ min-height: 171px; }
  .faq-grid{ grid-template-columns: 1fr; }
  .photo--faq{ min-height: 260px; }
  .footer__top{ grid-template-columns: 1fr 1fr; }
  .footer__cta{ grid-column: 1/-1; justify-self:start; }
}

@media (max-width: 640px){
  .section{ padding: 60px 20px; }
  .section--orange{ margin: 0 16px 60px; padding: 60px 22px; border-radius: 18px; }
  .topbar__inner{ padding: 14px 20px; flex-wrap:wrap; gap:14px; }
  .nav{ display:none; }
  .hero{ padding: 0 16px; }
  .hero__media{ inset: 0 16px 0 16px; }
  .hero__content{ padding: 30px 0 30px 0; min-height: auto; }
  .how-grid{ grid-template-columns: 1fr; }
  .who-grid{ grid-template-columns: 1fr; }
  .variants{ grid-template-columns: 1fr; }
  .footer__top{ grid-template-columns: 1fr; padding: 50px 20px; }
  .workshop__text {padding: 20px;}
}.modal{
    display: none;
}

.modal.open {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(16, 16, 45, 0.867);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal__body {
    background-color: var(--Block-Dark);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    margin: 0 15px;
}

.modal__content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.modal__close {
    background-color: var(--AccentLight);
    cursor: pointer;
    border: none;
    color: #fff;
    padding: 5px 15px;
    border-radius: 12px;
    margin-top: 28px;
    text-align: center;
    transition: .3s;
}

.modal__close:hover {
    background-color: var(--Hover);
    transition: .3s;
}

.myInfo {
    max-width: 320px;
    width: 100%;
    text-align: center;
}

.myInfo__social {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-top: 28px;
}

.myInfo__mail {
    display: block;
    margin-top: 28px;
}

@media screen and (max-width: 767px) {
    .modal__content > .avatar {
        max-width: 100px;
    }
}.swiper {
    width: 100%;
    height: 100%;
}

.mySwiper_teams {
    margin-top: 35px;
}

.swiper-slide_teams {
    text-align: center;
    font-size: 18px;
    background: var(--Block-Dark);
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    border-radius: 12px;
    overflow: hidden;
}

.slide-caption_teams {
    font-size: 12px;
    padding: 10px;
}

.slide-caption_teams > span {
    display: flex;
    gap: 12px;
    flex-direction: column;
    align-items: center;
}

.swiper-slide_teams img {
    border-radius: 12px 0 20px;
}

.mySwiper_index {
    margin-top: 83px;
}

.swiper_index {
    width: 100%;
    height: 100%;
    left: 2%;
    
}

.swiper-slide_index {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;

}

.swiper-slide_index > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider__card {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: flex-start;
    justify-content: end;
    flex-direction: column;
    background-size: cover;
    background-position: center;
    padding: 30px;
}

.slider__card-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: start;
}

.slider__card-title {
    font-size: 40px;
    color: #fff;
}
.slider__card-link {
    background-color: var(--accent);
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    width: fit-content;
}

.swiper-slide_index {
    width: 60%;
}


.video {
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto;
    margin-top: var(--margin-l);
}

.video__card {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: flex-start;
    justify-content: end;
    flex-direction: column;
    background-size: cover;
    background-position: center;
    padding: 30px;
}
.video__card-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: start;
}
.video__card-title {
    font-size: 40px;
    color: #fff;
}
.video__card-link {
    background-color: var(--accent);
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    width: fit-content;
}

@media screen and (max-width: 768px) {
  .offer-card {
    width: -webkit-fill-available !important;
  }
}

.btn {
	white-space: normal !important;
}

.variant__link {
  text-align: center !important;
}

.video-wrapper {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 100%;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  margin: 0 auto;
  margin-top: 70px;
}

@media (max-width: 600px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}