
.o-container {
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 1200px) {
    .o-container {
        padding: 0 40px;
        width: 100%;
    }
}

.o-container--xs {
    max-width: 960px;
}

.o-section {
    overflow: hidden;
    position: relative;
}

.o-section__content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    overflow: hidden;
}

@media (min-width: 1200px) {
    .o-section__content {
        gap: 40px;
    }
}

.o-section__content p {
    font-weight: 400;
    margin-top: 0;
    font-size: 16px;
    line-height: 24px;
    color: #231f20;
}

@media (min-width: 1200px) {
    .o-section__content p {
        font-size: 24px;
        line-height: 33px;
    }
}

.o-section__content p span {
    color: #ed1b24;
    font-weight: 600;
}

.o-section__content > :last-child {
    margin-bottom: 0;
}

.o-section__content--centered {
    text-align: center;
    align-items: center;
    justify-content: center;
}

.o-section__title {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 50px;
}

@media (min-width: 640px) {
    .o-section__title {
        font-size: 42px;
        line-height: 52px;
        font-weight: 600;
    }
}

@media (min-width: 1440px) {
    .o-section__title {
        font-size: 52px;
        line-height: 62px;
    }
}

@media (min-width: 1600px) {
    .o-section__title {
        font-size: 68px;
        line-height: 78px;
    }
}

.o-section--has-border {
    border-bottom: 9px solid #ed1b24;
}

.c-brands {
    display: flex;
    flex-direction: column;
    padding: 65px 0 80px 0;
    border-top: 2px solid rgba(91, 102, 112, .3);
    margin-top: 50px;
    gap: 60px;
}

@media (min-width: 1200px) {
    .c-brands {
        gap: 85px;
    }
}

@media (min-width: 1600px) {
    .c-brands {
        gap: 100px;
    }
}

.c-brands .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
    position: relative;
}

.c-brands__slider {
    width: 100%;
}

.c-brands__slider-item {
    width: 40%;
    height: 30px;
}

.c-brands__slider-item img {
    opacity: .4;
    object-fit: contain;
    width: 250px;
    height:100%;
    transition: all ease-in-out .3s;
}

.c-brands__slider-item:hover img {
    opacity: 1;
}

@media (min-width: 640px) {
    .c-brands__slider-item {
        width: 28.5714285714%;
    }
}

@media (min-width: 1200px) {
    .c-brands__slider-item {
        width: 22.2222222222%;
        height: 40px;
    }
}

@media (min-width: 1600px) {
    .c-brands__slider-item {
        width: 20%;
    }
}


/* PRODUCT GROUPS */

.o-section {
    overflow: hidden;
    position: relative;
}

.o-section__title {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 50px;
}

@media (min-width: 640px) {
    .o-section__title {
        font-size: 42px;
        line-height: 52px;
        font-weight: 600;
    }
}

@media (min-width: 1440px) {
    .o-section__title {
        font-size: 52px;
        line-height: 62px;
    }
}

@media (min-width: 1600px) {
    .o-section__title {
        font-size: 68px;
        line-height: 78px;
    }
}

.c-button {
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 0;
    cursor: pointer;
    transition: all ease-in-out .2s;
    border: 1px solid #ed1b24;
    background-color: #ed1b24;
    text-decoration: none;
    min-width: 200px;
    padding: 20px 0;
}

@media (min-width: 991px) {
    .c-button {
        min-width: 300px;
    }
}

.c-button span {
    font-weight: 700;
    line-height: 100%;
    font-size: 16px;
    color: #fff;
}

@media (min-width: 1366px) {
    .c-button span {
        font-size: 24px;
        color: #fff;
    }
}

.c-button:hover {
    border-color: rgba(91, 102, 112, .4);
    background-color: transparent;
}

.c-button:hover span {
    color: #5b6670;
}

.c-button-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 18px;
    flex-direction: column;
}

@media (min-width: 991px) {
    .c-button-wrapper {
        flex-direction: row;
    }
}

.c-button-wrapper .c-button {
    flex: 1;
}

@media (min-width: 640px) {
    .c-button-wrapper .c-button {
        flex: none;
    }
}

@media (min-width: 1200px) {
    .c-button-wrapper .c-button {
        flex: 1;
    }
}

.c-info-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    padding: 25px 20px 55px 20px;
    background-color: #eee;
    height: auto !important;
    z-index: 2;
    position: relative;
}

.c-info-box p {
    color: #231f20 !important;
}

.c-info-box__head {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.c-info-box__head::after {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(91, 102, 112, .3);
}

.c-info-box__content p {
    font-size: 14px;
    line-height: 16px;
    color: #5b6670 !important;
}

.c-info-box .o-section__title {
    color: #231f20 !important;
    line-height: 46px;
}

@media (min-width: 1600px) {
    .c-info-box .o-section__title {
        line-height: 65px;
    }
}

.c-info-box .c-button-wrapper {
    flex-direction: column;
    gap: 0;
}

.c-info-box .c-button-wrapper .c-button {
    border-width: 1px 1px 1px 1px;
}

@media (min-width: 640px) {
    .c-info-box {
        gap: 30px;
    }

    .c-info-box .c-button-wrapper:not(:hover) {
        background-color: transparent;
    }

    .c-info-box .c-button-wrapper:last-child {
        border-width: 1px;
    }

    .c-info-box__content p {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (min-width: 1200px) {
    .c-info-box {
        width: 400px;
        gap: 0;
        padding: 40px 40px 55px 40px;
        background-color: #eee;
    }
}

@media (min-width: 1440px) {
    .c-info-box {
        width: 430px;
        gap: 0;
        padding: 40px 40px 55px 40px;
    }
}

.c-with-split-cards {
    display: flex;
    border-bottom: 1px solid rgba(91, 102, 112, .3);
}

.c-with-split-cards .c-button:not(:hover) {
    background-color: #ed1b24 !important;
}

.c-with-split-cards .c-info-box {
    height: auto !important;
}

.c-with-split-cards__cards {
    flex: 3;
}

.c-with-split-cards__cards--flex {
    display: flex;
}

.c-with-split-cards__card {
    display: flex;
    position: relative;
    overflow: hidden;
}

.c-with-split-cards__card img {
    display: flex;
    width: 100%;
    object-fit: cover;
    transition: all ease-in-out .2s;
}

.c-with-split-cards__card:hover img {
    transform: scale(1.02);
}

.c-with-split-cards__card:hover .c-with-split-cards__card-title:before {
    height: 80px;
    background: #ed1b24;
}

.c-with-split-cards__card-title {
    display: flex;
    align-items: flex-end;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    color: #eee;
    font-size: 38px;
    font-weight: 400;
    line-height: 33.44px;
}

.c-with-split-cards__card-title:before {
    content: "";
    width: 7px;
    height: 70px;
    margin-right: 30px;
    background: transparent;
    position: relative;
    transition: all ease-in-out .2s;
}

@media (min-width: 1950px) {
    .c-with-split-cards {
        background: #f00;
    }

    .c-with-split-cards__wrapper--xl {
        flex: 1;
    }

    .c-with-split-cards__wrapper--multiple {
        flex: .7;
    }

    .c-with-split-cards__wrapper--multiple a {
        height: 50%;
    }
}

@media screen and (max-width: 1280px) and (min-width: 1200px), screen and (max-height: 640px) {
    .c-with-split-cards__card-title {
        font-size: 24px;
    }

    .c-with-split-cards__card-title:before {
        height: 55px;
    }

    .c-with-split-cards__wrapper--xl a {
        display: flex;
        height: 100%;
    }

    .c-with-split-cards__wrapper--multiple a {
        height: 50%;
    }
}

@media screen and (max-width: 1200px) and (min-width: 1025px) {
    .c-with-split-cards .c-info-box {
        width: 30%;
    }

    .c-with-split-cards__wrapper--xl a {
        display: flex;
        height: 100%;
    }

    .c-with-split-cards__wrapper--multiple a {
        height: 50%;
    }
}

@media (max-width: 1200px) {
    .c-with-split-cards__card-title {
        font-size: 24px;
    }

    .c-with-split-cards__card-title:before {
        margin-right: 10px;
    }

    .c-with-split-cards__cards {
        flex: auto;
    }
}

@media (max-width: 1024px) {
    .c-with-split-cards {
        flex-wrap: wrap;
    }

    .c-with-split-cards:before {
        display: block;
        content: "";
        width: 100%;
        height: 9px;
        background: #ed1b24;
    }
}

@media (max-width: 991px) {
    .c-with-split-cards {
        flex-direction: column;
    }

    .c-with-split-cards__cards--flex {
        flex-direction: column;
    }

    .c-with-split-cards__card img {
        height: 400px;
    }

    .c-with-split-cards__card-title {
        font-size: 24px;
    }

    .c-with-split-cards__card-title:before {
        margin-right: 10px;
    }
}

/* COUNTS */
.c-numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 150px;
    border-bottom: 1px solid rgba(91, 102, 112, .4);
}

.c-numbers__item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    border-right: 1px solid rgba(91, 102, 112, .4);
    overflow: hidden;
    padding-left: 30px;
}

.c-numbers__item:last-child {
    border: 0;
}

.c-numbers__icon {
    margin-right: 57px;
    font-size: 50px;
    color: var(--fire-sol-color);
}

.c-numbers__content h3 {
    margin: 0;
    color: #000000;
    font-size: 30px;
    font-weight: 600;
}

.c-numbers__content h3 small {
    font-size: 24px;
}

.c-numbers__content p {
    margin: 0;
    color: #5b6670;
    font-size: 20px;
}

@media (max-width: 1600px) {
    .c-numbers__icon {
        margin-right: 30px;
    }

    .c-numbers__content h3 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .c-numbers__content p {
        font-size: 20px;
    }
}

@media (max-width: 1170px) {
    .c-numbers {
        grid-template-columns:repeat(2, 1fr);
        height: auto;
    }

    .c-numbers__item {
        padding: 15px 0;
        height: auto;
        border-bottom: 1px solid rgba(91, 102, 112, .4);
    }

    .c-numbers__item:nth-child(3), .c-numbers__item:nth-child(4) {
        border-bottom: 0;
    }
}

@media (max-width: 991px) {
    .c-numbers__icon img {
        width: 45px;
    }

    .c-numbers__content h3 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .c-numbers {
        grid-template-columns:repeat(1, 1fr);
        border-bottom: 0;
        padding: 0 18px;
    }

    .c-numbers__item {
        justify-content: flex-start;
        align-items: flex-start;
        padding: 50px 0 30px 0;
        border-right: 0;
    }

    .c-numbers__item:nth-child(3), .c-numbers__item:nth-child(4) {
        border-bottom: 1px solid rgba(91, 102, 112, .4);
    }

    .c-numbers__item:last-child {
        border-bottom: 0;
    }

    .c-numbers__content h3 {
        font-size: 44px;
    }

    .c-numbers__content p {
        font-size: 24px;
    }
}


.o-header {
    height: 80px;
    display: flex;
    align-items: center;
    width: 100%;
    position: fixed;
    inset: 0;
    background-color: transparent;
    z-index: 999;
    transition: all .3s;
}

.o-header--subpage {
    border-bottom: 4px solid #ed1b24;
}

.o-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.o-header__logo {
    width: 145px;
}

.o-header__logo svg {
    width: 100%;
    height: auto;
    fill: #fff;
}

@media (min-width: 640px) {
    .o-header__logo {
        width: 165px;
    }
}

.o-header__list {
    display: flex;
    margin: 0;
    padding: 0;
    gap: 25px;
}

@media (min-width: 640px) {
    .o-header__list {
        gap: 35px;
    }
}

.o-header__list-item {
    align-items: center;
    gap: 10px;
    display: none;
}

.o-header__list-item--language {
    display: flex;
}

.o-header__list-item svg {
    fill: #fff;
}

.o-header__list-item:not(.o-header__list-item--smart-search) svg {
    width: 25px;
    height: 25px;
}

@media (min-width: 640px) {
    .o-header__list-item:not(.o-header__list-item--smart-search) svg {
        width: 36px;
        height: 36px;
    }
}


@media (min-width: 640px) {
    .o-header__list-item::after {
        margin-left: 25px;
    }
}

.o-header__list-item--mega-menu::after, .o-header__list-item:nth-last-child(2)::after {
    content: none;
}

.o-header__list-item--smart-search {
    display: flex !important;
}

.o-header__list-item--smart-search i {
    color: white;
    font-size: 25px;
}


.o-header__list-item--mega-menu {
    display: flex;
}

.o-header__list-item--mega-menu::after {
    content: none;
}

@media (min-width: 1200px) {
    .o-header__list-item {
        display: flex;
    }
}

.o-header__list a {
    font-weight: 400;
    line-height: normal;
    color: #fff;
    letter-spacing: .01em;
    text-decoration: none;
    font-size: 14px;
    transition: all .3s;
}

.o-header__list a:hover {
    color: #ed1b24;
}

@media (min-width: 640px) {
    .o-header__list a {
        font-size: 20px;
    }
}

.o-header--sticky, .o-header--subpage {
    background-color: #fff;
}

.o-header--sticky .o-header__logo svg, .o-header--subpage .o-header__logo svg {
    fill: #ed1b24;
}

.o-header--sticky .o-header__list-item a, .o-header--subpage .o-header__list-item a {
    color: #000;
}

.o-header--sticky .o-header__list-item a:hover, .o-header--subpage .o-header__list-item a:hover {
    color: #ed1b24;
}

.o-header--sticky .o-header__list-item svg, .o-header--subpage .o-header__list-item svg {
    fill: #ed1b24;
}

.o-header--sticky .o-header__list-item::after, .o-header--subpage .o-header__list-item::after {
    background-color: #000;
}

.o-header--sticky .c-language-select__list-item a:hover, .o-header--subpage .c-language-select__list-item a:hover {
    color: inherit !important;
}

.o-header--sticky .c-language-select__head, .o-header--subpage .c-language-select__head {
    border-color: #000;
}

.o-header--sticky .c-language-select__head span, .o-header--subpage .c-language-select__head span {
    color: #000;
}

.o-header--sticky .c-language-select__head svg, .o-header--subpage .c-language-select__head svg {
    fill: #ed1b24 !important;
}

.o-header--sticky .c-language-select__head svg path, .o-header--subpage .c-language-select__head svg path {
    fill: #ed1b24 !important;
}

.o-header--sticky .o-header__list-item--smart-search i {
    color: #000000;
}

.o-mega-menu {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: -200%;
    left: 0;
    display: flex;
    flex-direction: column;
    transition: all ease-in-out .5s;
}

.o-mega-menu.active {
    top: 0;
}

.o-mega-menu::before {
    content: "";
    display: block;
    width: 100%;
    height: 6px;
    background-color: #ed1b24;
}

.o-mega-menu__head {
    width: 100%;
    height: 95px;
    display: flex;
    border-bottom: 1px solid rgba(91, 102, 112, .3);
    background-color: #e9e9e9;
}

.o-mega-menu__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.o-mega-menu__logo svg {
    fill: #ed1b24;
}

.o-mega-menu__actions {
    display: flex;
    height: 100%;
    gap: 25px;
}

@media (min-width: 1200px) {
    .o-mega-menu__actions {
        gap: 60px;
    }
}

.o-mega-menu__close {
    background: #ed1b24;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 75%;
}

@media (min-width: 1200px) {
    .o-mega-menu__close {
        height: 100%;
    }
}

.o-mega-menu__close svg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.o-mega-menu__close span {
    position: relative;
    width: 36px;
    height: 36px;
}

.o-mega-menu__close span::before, .o-mega-menu__close span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 4px;
    background-color: #f5f5f5;
}

.o-mega-menu__close span::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.o-mega-menu__close span::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.o-mega-menu__search {
    display: flex;
    align-items: center;
    gap: 10px;
}

.o-mega-menu__search svg {
    fill: #ed1b24;
}

.o-mega-menu__search a {
    text-decoration: none;
    line-height: 100%;
    letter-spacing: .03em;
    color: #5b6670;
    font-weight: 500;
    font-size: 14px;
}

@media (min-width: 640px) {
    .o-mega-menu__search a {
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    .o-mega-menu__search a {
        font-size: 20px;
    }
}

.o-mega-menu__content {
    height: calc(100% - 180px);
    flex: 1;
    display: none;
}

@media (min-width: 1200px) {
    .o-mega-menu__content {
        display: flex;
    }
}

.o-mega-menu__content--mobile {
    display: none !important;
}

@media (max-width: 1199px) {
    .o-mega-menu__content--mobile {
        display: flex !important;
        height: calc(100% - 180px);
        flex: 1;
        background-color: #e4e4e4;
    }
}

.o-mega-menu__column {
    flex: 1;
    padding: 30px 20px;
}

@media (max-width: 1199px) {
    .o-mega-menu__column {
        display: flex;
        position: relative;
    }
}

@media (min-width: 1200px) {
    .o-mega-menu__column {
        border-right: 1px solid rgba(91, 102, 112, .3);
    }
}

@media (min-width: 1440px) {
    .o-mega-menu__column {
        padding: 50px 25px;
    }
}

@media (min-width: 1600px) {
    .o-mega-menu__column {
        padding: 30px 33px;
    }
}

.o-mega-menu__column:nth-child(1) {
    background-color: #e4e4e4;
}

.o-mega-menu__column:nth-child(1) ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 1440px) {
    .o-mega-menu__column:nth-child(1) ul {
        gap: 30px;
    }
}

@media (min-width: 1600px) {
    .o-mega-menu__column:nth-child(1) ul {
        gap: 10px;
    }
}

.o-mega-menu__column:nth-child(2) {
    background-color: #e8e8e8;
}

.o-mega-menu__column:nth-child(3) {
    background-color: #eaeaea;
}

.o-mega-menu__column:nth-child(4) {
    background-color: #ededed;
    border-right: 0;
}

.o-mega-menu__column:nth-child(2), .o-mega-menu__column:nth-child(3), .o-mega-menu__column:nth-child(4) {
    display: none;
}

@media (min-width: 1200px) {
    .o-mega-menu__column:nth-child(2), .o-mega-menu__column:nth-child(3), .o-mega-menu__column:nth-child(4) {
        display: block;
    }
}

.o-mega-menu__column:nth-child(2) ul, .o-mega-menu__column:nth-child(3) ul, .o-mega-menu__column:nth-child(4) ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.o-mega-menu__column:nth-child(2) ul li a, .o-mega-menu__column:nth-child(3) ul li a, .o-mega-menu__column:nth-child(4) ul li a {
    color: #5b6670;
    font-weight: 500;
    font-size: 32px;
    line-height: 36px;
    text-decoration: none;
}

.o-mega-menu__column ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.o-mega-menu__list {
    position: relative;
    height: 100%;
    width: 100%;
}

@media (max-width: 1199px) {
    .o-mega-menu__list {
        position: absolute;
        top: 30px;
        left: 20px;
    }
}

.o-mega-menu__item-anchor {
    color: #5b6670;
    font-weight: 600;
    text-decoration: none;
    font-size: 26px;
    line-height: 100%;
}

@media (min-width: 1560px) {
    .o-mega-menu__item-anchor {
        font-size: 36px;
        line-height: 42px;
    }
}

@media (min-width: 1600px) {
    .o-mega-menu__item-anchor {
        font-size: 46px;
        line-height: 52px;
    }
}

.o-mega-menu__item.active-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (min-width: 1600px) {
    .o-mega-menu__item.active-list-item {
        gap: 20px;
    }
}

.o-mega-menu__item.active-list-item .o-mega-menu__item-anchor {
    color: #ed1b24 !important;
}

.o-mega-menu__item.active-list-item::before {
    content: url("../svg/mega-menu-list-arrow.svg");
    display: block;
}

.o-mega-menu__sublist {
    position: absolute;
    top: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all ease-in .3s;
}

.o-mega-menu__sublist.active-sublist {
    visibility: visible !important;
    opacity: 1 !important;
}

@media (min-width: 1200px) {
    .o-mega-menu__sublist {
        left: calc(100% + 40px);
    }
}

@media (min-width: 1440px) {
    .o-mega-menu__sublist {
        left: calc(100% + 50px);
    }
}

@media (min-width: 1600px) {
    .o-mega-menu__sublist {
        left: calc(100% + 66px);
    }
}

.o-mega-menu__subitem-anchor {
    font-size: 20px;
    line-height: normal;
    font-weight: 500;
    color: #5b6670;
    text-decoration: none;
}

@media (min-width: 1440px) {
    .o-mega-menu__subitem-anchor {
        font-size: 26px;
    }
}

@media (min-width: 1600px) {
    .o-mega-menu__subitem-anchor {
        font-size: 32px;
    }
}

.o-mega-menu__subitem.active-list-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.o-mega-menu__subitem.active-list-item > .o-mega-menu__subitem-anchor {
    color: #ed1b24 !important;
}

.o-mega-menu__subitem.active-list-item::before {
    content: url("../svg/mega-menu-list-arrow.svg");
    display: block;
}

.o-mega-menu__footer {
    height: 80px;
    border-top: 1px solid rgba(91, 102, 112, .3);
    background-color: #e9e9e9;
    width: 100%;
}

.o-mega-menu__footer .o-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: auto;
}

.o-mega-menu__footer a {
    text-decoration: none;
}

@media (min-width: 1560px) {
    .o-mega-menu__footer {
        height: 60px;
    }
}

.o-mega-menu__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

@media (min-width: 1200px) {
    .o-mega-menu__social {
        gap: 60px;
        width: auto;
    }
}

.o-mega-menu__social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 40px;
}

@media (min-width: 1200px) {
    .o-mega-menu__social-link {
        gap: 50px;
    }
}

.o-mega-menu__social-link:not(:last-child)::after {
    content: "";
    width: 1px;
    background: #231f20;
    display: block;
    height: 15px;
}

@media (min-width: 1200px) {
    .o-mega-menu__social-link:not(:last-child)::after {
        height: 25px;
    }
}

.o-mega-menu__smlogo {
    display: none;
}

@media (min-width: 1200px) {
    .o-mega-menu__smlogo {
        display: block;
    }
}

.o-menu {
    background-color: #e4e4e4;
    height: 100vh;
    width: 100%;
    display: flex;
    padding: 50px 0 40px 0;
    position: relative;
}

@media (min-width: 1200px) {
    .o-menu {
        display: none;
    }
}

.o-menu__container {
    width: 100%;
    height: 100%;
}

.o-menu__list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
}

.o-menu__list-item > a {
    text-decoration: none;
    font-size: 32px;
    line-height: 100%;
    font-weight: 600;
    color: #5b6670;
}

.o-menu__list-item.hidden-list {
    display: none;
}

.o-menu__list-item.active-list {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(91, 102, 112, .5);
}

.o-menu__list-item.active-list::before {
    content: url(../svg/mega-menu-list-arrow.svg);
    display: block;
}

.o-menu__list-item.active-list > a {
    color: #ed1b24;
}

.o-menu__list-item--mobile-lang {
    display: none;
}

@media (max-width: 1200px) {
    .o-menu__list-item--mobile-lang {
        display: block;
    }

    .o-menu__list-item--mobile-lang a {
        color: #ed1b24;
    }
}

.o-menu__sublist {
    padding: 0;
    margin: 0;
    list-style: none;
    display: none;
    height: 0;
    position: absolute;
    top: 100px;
    left: 0;
    flex-direction: column;
    gap: 15px 0;
    width: 100%;
}

.o-menu__sublist.invisible-sublist {
    display: flex;
    height: 0;
    top: 0;
}

.o-menu__sublist.invisible-sublist > .o-menu__sublist-item > a {
    display: none;
}

.o-menu__sublist.active-sublist {
    display: flex;
    height: auto;
}

.o-menu__sublist-item > a {
    text-decoration: none;
    font-size: 24px;
    line-height: 100%;
    font-weight: 500;
    color: #5b6670;
}

.o-menu__back {
    display: none;
    align-items: center;
    position: absolute;
    top: 20px;
    left: 10px;
}

.o-menu__back span {
    font-size: 24px;
    font-weight: 600;
    color: #ed1b24;
}

.o-menu__back.active {
    display: flex;
}

.o-smart-search {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(223, 34, 40, .8);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out .3s;
}

.o-smart-search.active {
    opacity: 1;
    visibility: visible;
}

.c-smart-search {
    display: flex;
    flex-direction: column;
}

.c-smart-search__form {
    background-color: #fff;
    border: 1px solid rgba(91, 102, 112, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

@media (min-width: 640px) {
    .c-smart-search__form {
        width: 500px;
    }
}

@media (min-width: 1200px) {
    .c-smart-search__form {
        width: 800px;
        height: 60px;
    }
}

.c-smart-search__form--w100 {
    width: 100%;
}

.c-smart-search__form-input {
    border: 0;
    outline: 0;
    height: 100%;
    flex: 1;
    font-size: 18px;
    font-weight: 400;
    color: #5b6670;
    padding: 0 20px;
    background: none;
}

@media (min-width: 1200px) {
    .c-smart-search__form-input {
        padding: 0 40px;
        font-size: 28px;
    }
}

.c-smart-search__form-input::placeholder {
    font-weight: 400;
    color: rgba(91, 102, 112, .5);
    font-size: 18px;
}

@media (min-width: 1200px) {
    .c-smart-search__form-input::placeholder {
        font-size: 28px;
    }
}

.c-smart-search__form-button {
    width: 60px;
    height: 100%;
    background-color: transparent;
    background: transparent;
    border-left: 1px solid rgba(91, 102, 112, .6);
    border-width: 0 0 0 1px;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.c-smart-search__form-button:hover {
    box-shadow: inset 0 0 5px rgba(0, 0, 0, .25);
    cursor: pointer;
}

.c-smart-search__form-button:hover svg {
    transform: scale(.95);
}

.c-smart-search__list {
    list-style: none;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 10px 0 0 0;
    padding: 0 20px;
}

@media (min-width: 1200px) {
    .c-smart-search__list {
        padding: 0 20px 0 40px;
        max-height: 625px;
    }
}

.c-smart-search__list::-webkit-scrollbar {
    width: 7px;
    border-radius: 10px;
}

.c-smart-search__list::-webkit-scrollbar-thumb {
    background-color: #ed1b24;
    border-radius: 50px;
    border: 2px solid #ed1b24;
    background-clip: content-box;
}

.c-smart-search__list::-webkit-scrollbar-track {
    background-color: #ededed;
    border-radius: 50px;
}

.c-smart-search__list-item {
    border-bottom: 1px solid rgba(91, 102, 112, .4);
    padding: 30px 0 30px 0;
}

@media (min-width: 1200px) {
    .c-smart-search__list-item {
        padding: 30px 0 40px 0;
    }
}

.c-smart-search__list-item a {
    font-size: 20px;
    font-weight: 400;
    color: #5b6670;
    text-decoration: none;
}

.c-smart-search__list-item:first-child {
    padding-top: 30px;
}

@media (min-width: 1200px) {
    .c-smart-search__list-item:first-child {
        padding-top: 50px;
    }
}

.c-language-select {
    position: relative;
}

.c-language-select:hover .c-language-select__head svg {
    transform: rotate(180deg);
}

.c-language-select:hover .c-language-select__list {
    opacity: 1;
    visibility: visible;
}

.c-language-select__head {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px;
    cursor: pointer;
}

.c-language-select__head svg {
    width: 16px !important;
    height: 16px !important;
    transition: all ease-in-out .3s;
}

.c-language-select__head span {
    font-weight: 900;
    font-size: 16px;
    letter-spacing: .3px;
    color: #fff;
}

.c-language-select__list {
    margin: 0;
    list-style: none;
    position: absolute;
    left: 0;
    top: 100%;
    border: 1px solid rgba(255, 255, 255, .4);
    border-width: 0 1px 1px 1px;
    padding: 0;
    width: calc(100% - 2px);
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out .3s;
}

.c-language-select__list-item {
    width: calc(100% - 12px);
    padding: 10px 6px;
}

.c-language-select__list-item a {
    display: block;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .3px;
    color: #fff;
}

.c-language-select__list-item a:hover {
    cursor: pointer;
    background: #ed1b24;
    color: initial !important;
}

.c-language-select__list-item:hover {
    cursor: pointer;
    background: #ed1b24;
    color: initial !important;
}

#megaMenuButton i {
    font-size: 33px;
}

.mega-menu-active {
    top: 0px !important;
}



.o-header__list .dropdown-menu a {
    color: #000000;
    margin: 10px 0;
}

.breadcrumb {
    background: unset;
}
