.wrapper {
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.s-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5em;
    box-sizing: content-box;
}


.ibg {
    position: relative;
}

.ibg img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
} 

.swiper {
    position: relative;
    width: 100vw;
    height: 80vh;
    overflow: hidden;
    margin-bottom: 100px;
}

@media (max-width: 768px) {
    .swiper {
        margin-bottom: 70px;
    }
}

.swiper__container {
    position: relative;
    width: 100%;
    height: 100%;
}

.swiper__slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.swiper__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.swiper__image.active {
    opacity: 1;
}

.swiper__slides::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(106deg, #000000e0, #0000 53%);
    z-index: 2;
    pointer-events: none;
}

.swiper__content {
    position: absolute;
    top: 200px;
    left: 0;
    color: white;
    z-index: 2;
    width: 90%;
}

.swiper__title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: bold;
    line-height: 100%;
    margin-bottom: 20px;
}

.swiper__subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 30px;
}

.swiper__buttons {
    display: flex;
    gap: 20px;
}

.swiper__button {
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    padding: 0.6em 1.25em;
    background-color: #fff;
    border-radius: 10px;
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
}

.swiper__pagination {
    display: flex;
    gap: 20px;
    margin-top: 20vh;
    justify-content: flex-start;
}

.pagination__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pagination__dot.active {
    background-color: #fff;
}

.pagination__dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

/* ----------------------------------------------------------------------------------------------------------------- */

.partner {
    margin-bottom: 100px;
}

@media (max-width: 768px) {
    .partner {
        margin-bottom: 70px;
    }
}

.partner__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.partner__content {
    flex: 0 1 67%;
}

.partner__title {
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-weight: bold;
    line-height: 120%;
    color: #000;
    margin-bottom: 20px;
}

.partner__text {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 120%;
    margin-bottom: 20px;
    max-width: 800px;
}

.partner__text p {
    margin-top: 20px;
}

.partner__buttons {
    display: flex;
    gap: 20px;
}

.partner__button-black {    
    font-size: clamp(0.7rem, 1.2vw, 1rem);
    padding: 0.6em 1.25em;
    background-color: #1e1e1e;
    border-radius: 10px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
}

.partner__button {
    font-size: clamp(0.7rem, 1.2vw, 1rem);
    padding: 0.6em 1.25em;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #1e1e1e;
    color: #1e1e1e;
    text-transform: uppercase;
    text-decoration: none;
}

.partner__image {
    flex: 0 1 33%;
}

@media (max-width: 768px) {
    .partner__image {
        display: none;
    }

    .partner__content {
        flex: 0 1 100%;
    }
}

.partner__image img {
    border-radius: 10px;
}

/* ----------------------------------------------------------------------------------------------------------------- */

.cards {
    background-color: #1e1e1e;
    padding: 100px 0 350px 0;
}

@media (max-width: 480px) {
    .cards {
        padding: 100px 0 200px 0;
    }
}

@media (max-width: 375px) {
    .cards {
        padding: 100px 0 100px 0;
    }
}

.cards__container {}

.cards__title {
    margin-bottom: 1.5em;
    color: #fff;
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-weight: bold;
    line-height: 120%;
}

.cards__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cards__item {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    max-width: 400px;
}

.cards__item-image {
}

.cards__item-title {
    color: #000;
    font-size: clamp(1rem, 1.8vw, 1.13rem);
    font-weight: bold;
    line-height: 120%;
    margin: 20px 0;
}

.cards__item-text {
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    line-height: 120%;
    color: #1e1e1e;
}

@media (max-width: 768px) {
    .cards__items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .cards__items {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .cards__item {
        max-width: 100%;
    }
}

/* ----------------------------------------------------------------------------------------------------------------- */

.video {
    background-image: linear-gradient(#062215ed, #062215ed), url(https://cdn.prod.website-files.com/656cea1aa795ed37cb8a0775/656dc17e89cdb0135c0ddb03_390-930.jpg);
    background-position: 0 0, 50%;
    background-size: auto, cover;
}

.video__container {
}

.video__wrapper {
    text-align: center;
    max-width: 1280px;
    margin: 0 auto;
    margin-top: -250px;
    margin-bottom: 130px;
    border-radius: 1.25em;
    overflow: hidden;
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/youtube-placeholder.2b05e7d68d.svg');
    background-position: 50%;
    background-size: cover;
}

.video__wrapper video {
    object-fit: cover;
}

@media (max-width: 480px) {
    .video__wrapper {
        margin-top: -100px;
        margin-bottom: 100px;
        border-radius: 6vw;
    }
}

@media (max-width: 375px) {
    .video__wrapper {
        margin-top: -50px;
        margin-bottom: 50px;
        border-radius: 6vw;
    }
}

.video__title {
    color: #fff;
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-weight: bold;
    line-height: 120%;
    margin-bottom: 30px;
}

.video__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

.video__item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 400px;
    width: 100%;
}

.video__item-image {
    width: 50%;
    height: 50%;
    flex: 0 1 20%;
}

@media (max-width: 720px) {
    .video__item-image {
        width: 70%;
        height: 70%;
    }
}

@media (max-width: 650px) {
    .video__item-image {
        width: 30%;
        height: 30%;
    }
}

@media (max-width: 425px) {
    .video__item-image {
        width: 50%;
        height: 50%;
    }
}

.video__item-content {
    color: #fff;
    flex: 0 1 80%;
}

.video__item-title {
    font-size: clamp(1rem, 1.8vw, 1.13rem);
    font-weight: bold;
    line-height: 120%;
    margin-bottom: 10px;
}

.video__item-text {
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    line-height: 120%;
}

/* Адаптивность для video__items */
@media (max-width: 992px) {
    .video__items {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .video__item {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .video__items {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

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

    .video__item {
        max-width: 100%;
    }
}

.video__blocks {
    display: flex;
    gap: 40px;
    padding-bottom: 30px;
}

@media (max-width: 650px) {
    .video__blocks {
        flex-direction: column;
    }
}

.video__block {
    display: flex;
    gap: 20px;
    color: #000;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    height: 200px;
    flex: 0 1 50%;
}

@media (max-width: 650px) {
    .video__block {
        padding: 10px;
    }
}

.video__block-image {
    width: 100%;
    height: auto;
    flex: 0 1 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video__block-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.video__block-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 0 1 70%;
}

.video__block-title {
    font-size: clamp(1rem, 1.8vw, 1.13rem);
    font-weight: bold;
    line-height: 120%;
    margin-bottom: 10px;
}

.video__block-text {
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    line-height: 120%;
}

.video__buttons {
    display: flex;
    gap: 20px;
    padding-bottom: 100px;
}

@media (max-width: 390px) {
    .video__buttons {
        flex-direction: column;
        text-align: center;
    }
}


.video__button-white {
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    padding: 0.6em 1.25em;
    background-color: #fff;
    border-radius: 10px;
    color: #1e1e1e;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 100%;
}

.video__button {
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    padding: 0.6em 1.25em;
    border: 1px solid #fff;
    border-radius: 10px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 100%;
}

/* ----------------------------------------------------------------------------------------------------------------- */

.shop {
    margin: 120px 0;
}

@media (max-width: 768px) {
    .shop {
        margin: 70px 0;
    }
}

.shop__container {}

.shop__title {
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-weight: bold;
    line-height: 120%;
    color: #000;
    margin-bottom: 20px;
}

.shop__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .shop__items {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 768px) {
    .shop__items {
        grid-template-columns: repeat(2, 1fr);
    }
}


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

.shop__item {}

.shop__item-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 10px;
}

.shop__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop__item-title {
    font-size: clamp(1rem, 1.8vw, 1.13rem);
    font-weight: bold;
    line-height: 120%;
    color: #000;
    margin-bottom: 10px;
}

.shop__item-button {
    display: inline-block;
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    padding: 0.4em 1.25em;
    background-color: #fff;
    border-radius: 10px;
    color: #1e1e1e;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 100%;
    border: 1px solid #1e1e1e;
}

/* ----------------------------------------------------------------------------------------------------------------- */

.tool {
    margin-bottom: 120px;
}

@media (max-width: 768px) {
    .tool {
        margin-bottom: 70px;
    }
}

.tool__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

@media (max-width: 768px) {
    .tool__container {
        flex-direction: column;
    }
}

.tool__content {
    flex: 0 1 70%;
}

@media (max-width: 768px) {
    .tool__content {
        flex: 0 1 100%;
    }
}

.tool__title {
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-weight: bold;
    line-height: 120%;
    color: #000;
    margin-bottom: 20px;
}

.tool__text {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 120%;
    color: #000;
}

.tool__text p {
    margin-bottom: 20px;
}

.tool__button {
    display: inline-block;
    font-size: clamp(0.7rem, 1.2vw, 1rem);
    padding: 0.6em 1.25em;
    background-color: #1e1e1e;
    border-radius: 10px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 100%;
}

.tool__image {
    flex: 0 1 30%;
}

.tool__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .tool__image {
        flex: 0 1 100%;
    }
}

/* ----------------------------------------------------------------------------------------------------------------- */

.team {
    margin-bottom: 120px;
}

@media (max-width: 768px) {
    .team {
        margin-bottom: 70px;
    }
}

.team__container {
    display: flex;
    gap: 70px;
}

@media (max-width: 768px) {
    .team__container {
        flex-direction: column;
    }
}

.team__left {
    flex: 0 1 65%;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .team__left {
        flex: 0 1 100%;
    }
}

.team__left-title {
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-weight: bold;
    line-height: 120%;
    color: #000;
    margin-bottom: 20px;
}

.team__left-text {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 120%;
    color: #000;
    margin-bottom: 30px;
}

.team__left-text p:not(:last-child) {
    margin-bottom: 20px;
}

.team__left-button {
    display: inline-block;
    font-size: clamp(0.7rem, 1.2vw, 1rem);
    padding: 0.6em 1.25em;
    background-color: #1e1e1e;
    border-radius: 10px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 100%;
}

.team__right {
    flex: 0 1 35%;
    max-width: 190px;
}

@media (max-width: 768px) {
    .team__right {
        flex: 0 1 100%;
    }
}

.team__right-image img {
    width: 85%;
    height: 85%;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.team__right-title {
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    line-height: 120%;
    color: #000;
    font-weight: bold;
    margin-bottom: 10px;
}

.team__right-subtitle {
    color: #7f7f7f;
    font-size: clamp(0.69rem, 1.2vw, 0.69rem);
    line-height: 100%;
    margin-bottom: 10px;
}

.team__right-contacts {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.team__right-email {
    color: #000;
    font-size: clamp(0.69rem, 1.2vw, 0.69rem);
    line-height: 100%;
}

.team__right-phone {
    color: #000;
    font-size: clamp(0.69rem, 1.2vw, 0.69rem);
    line-height: 100%;
}


/* Fix slider dots outline/focus styles */
.w-slider-dot:focus {
    box-shadow: none !important;
    outline: none !important;
}

.w-slider-dot:focus.w-active {
    box-shadow: none !important;
}

/* ----------------------------------------------------------------------------------------------------------------- */

.footer {
    color: #fff;
    background-image: linear-gradient(#000c, #000c), url(https://cdn.prod.website-files.com/656cea1aa795ed37cb8a0775/656dd01013d72021dd8be957_490323.png);
    background-position: 0 0, 50%;
    background-size: auto, cover;
}

.footer__container {
    height: 17.5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin: 10px 0;
}

.footer__title {
    font-size: clamp(1rem, 2.5vw, 3rem);
    font-weight: 700;
    line-height: 120%;
}

.footer__text {
    font-size: clamp(0.8rem, 1.8vw, 1.5rem);
    line-height: 120%;
}

/* ----------------------------------------------------------------------------------------------------------------- */
