.section-wrap {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 0 8px 64px;
}

.section-wrap section {
    display: flex;
    flex-direction: column;
    gap: 32px 0;
}

.section-wrap .wrapper {
    gap: 22px;
}

.section-wrap .wrapper:first-child {
    padding-top: 64px;
}

section video {
    width: 100%;
}

section .row {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

section .row.mobile-hide {
    display: none;
}

section .row .col {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
}

section .row .col+.col {
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

section .row .col.col--tab {
    flex-direction: row;
}

section p,
section h2,
section h3 {
    margin: 0 !important;
}

section p {
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.01em;
    text-align: left;
}

section h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: -0.03em;
    text-align: left;
}

h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: -0.03em;
    text-align: left;
}

.title {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.title p br {
    display: none;
}

.title.title--row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.title.title--row .swipper-arrows {
    margin-left: auto;
}

.section-wrap .awards .awards__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}

.section-wrap .awards .awards__img img {
    width: 100%;
    width: auto;
    height: 50px;
    filter: grayscale(1);
    transition: 1s;
}

.section-wrap .awards .awards__img:hover img {
    filter: grayscale(0);
}

.video-carousel {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
}

.video-carousel .video-carousel__card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 15px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: -0.01em;
}

.video-carousel.video-carousel--grid .video-carousel__card {
    gap: 8px;
}

.video-carousel .swiper-slide {
    width: 100%;
    max-width: 245px;
    object-fit: cover;
}

.video-carousel.video-carousel--grid {
    height: 498px;
}

.video-carousel.video-carousel--grid .video-carousel__card video {
    width: 100%;
    height: 245px;
}


.video-carousel-grid .swiper-slide {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.video-carousel--bottom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.video-carousel--bottom a.show-all {
    display: inline-flex;
    color: #B9B9B9;
    transition: 0.3s ease-in-out;
    text-decoration: none;
}

.video-carousel--bottom a.show-all:hover {
    color: #000;
}

.video-carousel__pagination {
    display: flex;
    justify-content: flex-end;
    flex: 1;
}

.swipper-arrows {
    display: none;
    gap: 12px;
    align-items: center;
}

.swipper-arrow {
    display: flex;
    align-items: center;
    border: none;
    background-color: transparent;
    transition: 0.3s ease-in-out;
}

.swipper-arrow:hover {
    opacity: 0.5;
}

.tab-titles {
    display: flex;
    gap: 8px;
}

.tab-titles .swiper-slide {
    width: auto;
}

.tab-titles .swiper-wrapper {
    gap: 8px;
}

.tab-titles button {
    display: inline-flex;
    align-items: center;
    width: 100%;
    padding: 12px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    text-align: left;
    border-bottom: 1px solid transparent;
    transition: 0.2s ease-in-out;
    text-wrap: nowrap;
    color: #B9B9B9;
}

.tab-titles button.active {
    color: #000;
}

.tab-titles button.active::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #000;
    margin-right: 6px;
}

.category-wrapper {
    display: grid;
    gap: 32px 8px;
}

.category-wrapper.category-wrapper--3-column {
    grid-template-columns: 1fr;
}

.category-wrapper.category-wrapper--2-column {
    grid-template-columns: 1fr 1fr;
}

.category__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.01em;
    text-align: left;
    text-decoration: none;
    width: 100%;
}

.category__img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

.category-wrapper.category-wrapper--2-column .category__img {
    height: 358px;
}

.category-wrapper.category-wrapper--3-column .category__img {
    height: 260px;
}

.category__img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.8);
    transition: 0.5s ease-in-out;
    transform: scale(1.2);
}

.category__img span {
    color: #fff;
    z-index: 2;
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.03em;
    text-align: center;
    transition: 0.5s ease-in-out;
}

.category__item:hover img {
    filter: brightness(0.5);
    transform: scale(1);
}

.category__item:hover span {
    transform: scale(1.2);
}

@media screen and (min-width: 769px) {
    .section-wrap {
        padding: 0 8px 80px;
    }

    .section-wrap .wrapper {
        gap: 32px;
    }

    .section-wrap .wrapper:first-child {
        padding-top: 80px;
    }

    section .row {
        flex-direction: row;
    }

    section .row.mobile-hide {
        display: flex;
    }

    section .row .col {
        min-width: 245px;
        width: 245px;
        align-items: center;
    }

    section .row .col+.col {
        flex: 1;
    }

    section .row .col.col--tab {
        flex-direction: column;
        justify-content: flex-start;
    }

    .section-wrap section {
        gap: 32px 0;
    }

    section h2 {
        font-size: 38px;
        line-height: 38px;
    }

    section h3 {
        font-size: 24px;
        line-height: 24px;
    }

    .title {
        gap: 18px;
    }

    .title p br {
        display: block;
    }

    .video-carousel .video-carousel__card {
        font-size: 16px;
    }

    .video-carousel .swiper-slide {
        width: 100%;
        max-width: none;
    }

    .video-carousel.video-carousel--grid .swiper-slide {
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .swipper-arrows {
        display: flex;
    }

    .tab-titles {
        flex-direction: column;
    }

    .tab-titles button {
        font-size: 24px;
        text-wrap: wrap;
        border-color: #000;
        color: #000;
    }

    .tab-titles .swiper-wrapper {
        gap: 8px;
        flex-direction: column;
    }

    .tab-titles .swiper-slide {
        height: auto;
    }

    .category-wrapper.category-wrapper--2-column,
    .category-wrapper.category-wrapper--3-column {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (min-width: 1200px) {
    section h2 {
        font-size: 64px;
        line-height: 64px;
        letter-spacing: -0.04em;
    }

    section h3 {
        font-size: 32px;
        line-height: 32px;
    }

    .section-wrap {
        padding: 0 8px 110px;
    }

    .section-wrap .wrapper {
        gap: 32px;
    }

    .section-wrap .wrapper:first-child {
        padding-top: 110px;
    }

    section .row .col {
        min-width: 469px;
        width: 469px;
        padding-right: 100px;
    }

    section .row .col.col--tab {
        justify-content: flex-start;
        padding-right: 42px;
    }

    section .row .col+.col {
        width: 100%;
        padding-right: 0;
    }

    .section-wrap .awards .awards__img img {
        height: 86px;
    }

    .video-carousel .video-carousel__card {
        font-size: 18px;
    }

    .tab-titles button {
        font-size: 32px;
        padding: 18px 0;
    }

    .tab-titles button.active::before {
        width: 16px;
        height: 16px;
        margin-right: 8px;
    }

    .category-wrapper.category-wrapper--3-column {
        grid-template-columns: 1fr 1fr 1fr;
    }
}