:root {
    --page-height: 100dvh;
}
:root {
    /*
      Descriptive colors
      */
    --color-primary-white: #F0F6FF;
    --color-primary-black: #191919;
    --color-primary-blue: #0019FF;
    --color-secondary-white-blue: #DAE7FF;
    --color-secondary-light-black: #121725;
    --color-secondary-gray: #AAAFBA;
    --color-secondary-dark-gray: #7B818C;
    --color-secondary-light-gray: #D9DEE8;
    --color-secondary-skyblue: #55B8FF;
    --color-secondary-error: #FF0000;
    --color-secondary-blue-on-black: #606FFF;
    --color-secondary-dark-blue: #1000BF;
    --color-background: var(--color-primary-black);
    --color-text-main: #ffffff;
    --color-border: var(--color-secondary-dark-gray);
}

/*====
 BREAKPOINTS
 ====*/
:root {
    --mq-min: 360px;
    --mq-phone: 576px;
    --mq-phone-lg: 680px;
    --mq-tablet-small: 769px;
    --mq-tablet: 1025px;
    --mq-laptop: 1251px;
    --mq-laptop-large: 1536px;
    --mq-desktop: 1600px;
}

:root {
    --fs-base-value: 20px;
    --fs-base: 1rem;
    --lh-base: 150%;
}

:root {
    --scroll-width: 0px;
    --header-height: 84.86px;
    --container-width: 82.5rem;
    --container-indent-x: 2rem;
    --border-radius-base: 0.5rem;
    --border-radius--sm: 0.2rem;
    --border-base: 0.05rem solid var(--color-primary-gray);
    --content-indent: 5.9rem;
}
@media only screen and (max-width: 1535px) {
    :root {
        --container-width: 62.5rem;
    }
}
@media only screen and (max-width: 1250px) {
    :root {
        --container-width: 100%;
        --header-height: 86px;
    }
}
@media only screen and (max-width: 768px) {
    :root {
        --header-height: 76px;
    }
}
@media only screen and (max-width: 575px) {
    :root {
        --container-indent-x: 1.2rem;
    }
}
header.fixed .mnu-btn{
    margin-top: 0;
}

.mnu-btn a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    padding: 8px;
    color: #fff;
    background-color: #fff;
    border-radius: 100px;
    overflow: hidden;
    transition: padding-left 0.4s;
}
.mnu-btn__text {
    transition: all 0.4s;
    width: 0;
    color: #000;
    font-weight: 700;
    font-size: 19px;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
}
.mnu-btn a:hover{
    padding: 8px 24px;
    gap: 8px;
}
.mnu-btn:hover .mnu-btn__text {
    width: var(--mnu-text-width);
    opacity: 1;
}

.overflow {
    height: var(--page-height);
    overflow-y: hidden;
    margin-right: var(--scroll-width);
}

.icon {
    width: 1em;
    height: 1em;
    font-size: 1.2rem;
}

.header__contacts-link, .header-dropdown__list-back, .header-dropdown__heading, .header-dropdown__back, .heading--h5, .heading--h4, .heading--h3, .heading--h2, .heading--h1, .heading, .note {
    --h-w: 400;
    --h-fs: 7rem;
    --h-lh: 100%;
    --h-ls: normal;
    --h-mb: 0;
    --h-c: inherit;
    margin-bottom: var(--h-mb);
    color: var(--h-c);
    font-weight: var(--h-w);
    font-size: var(--h-fs);
    line-height: var(--h-lh);
    letter-spacing: var(--h-ls);
}

.header-dropdown__heading {
    font-size: 19px;
    font-weight: 700;
    line-height: 22px;
}

.header__contacts-link span, .header-dropdown__list-back span, .header-dropdown__heading span, .header-dropdown__back span, .heading--h5 span, .heading--h4 span, .heading--h3 span, .heading--h2 span, .heading--h1 span, .heading span, .note span {
    color: var(--color-product-light-blue);
}

.header-nav-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}
@media only screen and (min-width: 1251px) {
    .header-nav-box {
        margin-right: 30px;
    }
}
@media only screen and (max-width: 1250px) {
    .header-nav-box {
        -webkit-transition: all 0.4s;
        transition: all 0.4s;
        position: fixed;
        top: var(--header-height);
        right: 0;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
        height: calc(100dvh - var(--header-height));
        padding: 2rem var(--container-indent-x) 2rem;
        background-color: var(--color-background);
        -webkit-transform: translateX(100vw);
        -ms-transform: translateX(100vw);
        transform: translateX(100vw);
        opacity: 0;
    }
}
@media only screen and (max-width: 575px) {
    .header-nav-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        padding-top: 0.8rem;
        padding-bottom: 1.6rem;
    }
}
@media only screen and (max-width: 1250px) {
    .header-nav-box--visible {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

.header-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media only screen and (max-width: 1250px) {
    .header-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        width: 50%;
    }
}
@media only screen and (max-width: 575px) {
    .header-nav {
        position: relative;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        width: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        margin-bottom: auto;
    }
}
.header-nav__link {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 16px;
    color: var(--color-text-main);
    background-color: transparent;
}
.header-nav__link:hover {
    color: #fff;
}
header.light-theme {
    background-color: #fff;
}
.light-theme .header-nav__link:hover {
    color: var(--color-text-main);
}
.light-theme .header-phone-button path {
    fill: #000;
}
@media only screen and (max-width: 1250px) {
    .header-nav__link {
        padding: 20px 0;
        font-weight: 600;
        font-size: 32px;
    }
}
@media only screen and (max-width: 575px) {
    .header-nav__link {
        width: 100%;
        padding-top: 16px;
        padding-bottom: 16px;
        font-size: 28px;
    }
}
@media (hover: hover) {
    .header-nav__link:hover {
        background-color: var(--color-background);
    }
}
@media (hover: none) {
    .header-nav__link:active {
        background-color: var(--color-background);
    }
}

.header-dropdown {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: default;
}
@media only screen and (max-width: 1250px) {
    .header-dropdown {
        position: static;
        width: 100%;
    }
}
@media (hover: hover) {
    .header-dropdown:hover .header-dropdown__icon {
        color: var(--color-product-light-blue);
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
    }
    .header-dropdown:hover .header-dropdown__container {
        -webkit-transform-origin: top center;
        -ms-transform-origin: top center;
        transform-origin: top center;
        opacity: 1;
        pointer-events: auto;
    }
    .header-dropdown:hover .header-dropdown__backdrop {
        opacity: 1;
    }
}
.header-dropdown--active .header-dropdown__container {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    opacity: 1;
    pointer-events: auto;
}
@media only screen and (max-width: 1250px) {
    .header-dropdown--active .header-dropdown__container {
        right: 0;
        -webkit-animation: none;
        animation: none;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}
.header-dropdown--child-active .header-dropdown__container > *:not(.header-dropdown__grid), .header-dropdown--child-active .header-dropdown__container > :not(.header-dropdown__grid):before, .header-dropdown--child-active .header-dropdown__container > :not(.header-dropdown__grid):after, .header-dropdown--child-active .header-dropdown__grid > *:not(.header-dropdown__col--active), .header-dropdown--child-active .header-dropdown__grid > :not(.header-dropdown__col--active):before, .header-dropdown--child-active .header-dropdown__grid > :not(.header-dropdown__col--active):after, .header-dropdown--child-active .header-dropdown__heading {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    opacity: 0;
    pointer-events: none;
}
.header-dropdown--child-active .header-dropdown__grid {
    overflow-y: hidden;
}
.header-dropdown__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--color-text-main);
}
.header-dropdown__text:hover{
    color: var(--color-text-main);
}
@media only screen and (min-width: 1251px) {
    .header-dropdown__text {
        font-weight: 700;
        font-size: 19px;
    }
}
@media only screen and (max-width: 1250px) {
    .header-dropdown__text {
        -webkit-transition: opacity 0.4s;
        transition: opacity 0.4s;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: auto;
    }
}
.header-dropdown__icon {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    margin-left: 0.2rem;
    color: var(--color-text-main);
    font-size: 0.8rem;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
@media only screen and (max-width: 1250px) {
    .header-dropdown__icon {
        margin-right: 0;
        font-size: 1.6rem;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        margin-left: auto;
    }
}
.header-dropdown__container {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    z-index: 1;
    top: calc(var(--dropdown-position-y, 0) - 20px);
	top:44px;
    left: var(--dropdown-position-x, 0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-height: calc(100vh - var(--header-height) - 1.5rem);
    max-height: calc(100dvh - var(--header-height) - 1.5rem);
    padding: 24px 24px 48px;
    background-color: var(--color-secondary-light-black);
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}
@media only screen and (max-width: 1250px) {
    .header-dropdown__container {
        top: 0;
        left: unset;
        right: -100vw;
        width: 50%;
        padding-top: 2rem;
        background: none;
        -webkit-transform: translateX(100vw);
        -ms-transform: translateX(100vw);
        transform: translateX(100vw);
    }
}
@media only screen and (max-width: 575px) {
    .header-dropdown__container {
        width: 100%;
        height: 100%;
        max-height: none;
        padding: 0.8rem 0 0.8rem;
    }
}
.header-dropdown__container--right {
    left: unset;
    right: -7.65rem;
}
.header-dropdown__back {
    display: none;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 1.6rem;
    color: var(--color-text-main);
}
@media only screen and (max-width: 1250px) {
    .header-dropdown__back {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 0;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}
@media only screen and (max-width: 575px) {
    .header-dropdown__back {
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }
}
.header-dropdown__back-icon {
    flex-shrink: 0;
    margin-right: 0.4rem;
    font-size: 2rem;
}
.header-dropdown__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3.2rem;
}

@media only screen and (max-width: 1250px) {
    .header-dropdown__container-mobile .header-dropdown__grid {
        height: 100%;
    }

    .header-dropdown__container-mobile .header-dropdown__list {
        position: static;
        padding: 0;
        opacity: 1;
        transform: none;
    }

    .header-dropdown__container-mobile .header-dropdown__list-content {
        overflow: hidden;
    }
}
@media only screen and (max-width: 1250px) {
    .header-dropdown__grid {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0;
        overflow-y: auto;
    }
}
.header-dropdown__heading {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}
@media only screen and (max-width: 1250px) {
    .header-dropdown__heading {
        --h-fs: 1.2rem;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 0;
        padding-top: 2rem;
        padding-bottom: 0.2rem;
    }
}
@media only screen and (max-width: 575px) {
    .header-dropdown__heading {
        padding-top: 1.6rem;
    }
}
.header-dropdown__heading-icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 0.4rem;
    font-size: 16px;
}
@media only screen and (max-width: 1250px) {
    .header-dropdown__heading-icon {
        display: none;
    }
}
.header-dropdown__list-back {
    display: none;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0.4rem;
    color: var(--color-text-main);
}
@media only screen and (max-width: 1250px) {
    .header-dropdown__list-back {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 0;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}
@media only screen and (max-width: 575px) {
    .header-dropdown__list-back {
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }
}
@media only screen and (max-width: 1250px) {
    .header-dropdown__list {
        -webkit-transition: all 0.4s;
        transition: all 0.4s;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 2rem var(--container-indent-x);
        opacity: 0;
        -webkit-transform: translateX(100vw);
        -ms-transform: translateX(100vw);
        transform: translateX(100vw);
    }
}
@media only screen and (max-width: 575px) {
    .header-dropdown__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: 100%;
        padding: 0.8rem 0 0.8rem;
    }
}
@media only screen and (max-width: 1250px) and (min-width: 576px) {
    .header-dropdown--active .header-dropdown__container,
    .header-dropdown__list,
    .header-dropdown__list-content {
        height: 100%;
    }
}
.header-dropdown__list--active {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
.header-dropdown__list-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
}
@media only screen and (max-width: 1250px) {
    .header-dropdown__list-content {
        gap: 0;
        flex: 1;
        overflow-y: auto;
    }
}
.header-dropdown__link {
    position: relative;
    width: fit-content;
    color: var(--color-text-main);
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
}
.light-theme .header-dropdown__link:hover {
    color: inherit;
}
.header-dropdown__link::after {
    transition: background-color 0.4s;
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: transparent;
}
.header-dropdown__link:hover::after {
    background-color: var(--color-text-main);
}
@media only screen and (max-width: 1250px) {
    .header-dropdown__link {
        font-size: 24px;
        font-weight: 500;
        padding: 16px 0;
    }
}
@media only screen and (max-width: 575px) {
    .header-dropdown__link {
        padding-top: 12px;
        padding-bottom: 12px;
    }
}

@media only screen and (max-width: 575px) {
    .dropdown-active {
        overflow-y: hidden;
    }
}
@media only screen and (max-width: 1250px) {
    .dropdown-active > *:not(.header-dropdown--active), .dropdown-active > :not(.header-dropdown--active):before, .dropdown-active > :not(.header-dropdown--active):after,
    .dropdown-active .header-dropdown__text {
        opacity: 0;
        pointer-events: none;
    }
}

:root {
    --header-mobile-address-height: 1.95rem;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: background-color 0.4s;
}

.active-menu .header {
    border-color: transparent;
}

.active-menu header {
    background-color: var(--color-background);
}

.active-menu .header-phone-button-box {
    opacity: 0;
    pointer-events: none;
}

@media screen and (max-width: 1250px) {
    .active-menu img.def-logo {
        display: none !important;
    }

    .active-menu img.white-logo {
        display: block !important;
    }

    .active-menu .subtitle-text{
        color: #fff !important;
    }
}

.header__nav-box {
    margin-left: auto;
}
.header__contacts {
    display: none;
    width: 50%;
}
@media only screen and (max-width: 1250px) {
    .header__contacts {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1.6rem;
        padding-top: 20px;
    }
}
@media only screen and (max-width: 575px) {
    .header__contacts {
        width: 100%;
        gap: 1.2rem;
    }
}
.header__contacts-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.header__contacts-heading {
    color: var(--color-secondary-gray);
}
.header__contacts-link {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    color: #fff;
}
.header__contacts-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.2rem;
}
.header__burger {
    display: none;
}
@media only screen and (max-width: 1250px) {
    .header__burger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-left: 0.8rem;
    }
}
.header__logo-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media only screen and (max-width: 1535px) {
    .header__logo-box {
        max-width: 9.9rem;
    }
}
.header__contact {
    margin-left: 1.2rem;
}
@media only screen and (max-width: 575px) {
    .header__contact {
        display: none;
    }
}
.header__contact--mobile {
    display: none;
}
@media only screen and (max-width: 1250px) {
    .header__contact--mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: calc(100% - var(--container-indent-x) * 2);
        margin-top: 0.8rem;
        margin-left: var(--container-indent-x);
    }
}
@media only screen and (max-width: 1250px) {
    .header__lang {
        margin-left: auto;
    }
}
.header__contacts-link, .header-dropdown__heading, .heading--h5, .note {
    --h-fs: 1.2rem;
    --h-lh: 140%;
    --h-w: 500;
}
@media only screen and (max-width: 1535px) {
    .header__contacts-link, .header-dropdown__heading, .heading--h5, .note {
        --h-fs: 1rem;
        --h-lh: 150%;
    }
}

.header-dropdown__container {
    background-color: var(--color-background);
}

.header-nav-box a:hover {
    text-decoration: none;
}

.header-nav-box .header-dropdown__list a:hover {
    color: inherit;
}

.header-contacts {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.header-contacts__container {
    display: flex;
    flex: 1;
    max-width: 1110px;
    width: 100%;
    padding-top: 120px;
}

@media only screen and (max-width: 1535px) {
    .header-contacts__container {
        padding-top: 80px;
    }
}

.header-contacts__content {
    display: flex;
    gap: 30px;
    width: 100%;
}

.header-contacts__col {
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 64px;
}

.header-contacts__group {
    display: flex;
    flex-direction: column;
}

.header-contacts__heading {
    margin-bottom: 24px;
    color: #828282;
    font-size: 24px;
    line-height: 22px;
}

.header-contacts__item {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 24px;
}

.header-contacts__item:last-child {
    margin-bottom: 0;
}

.header-contacts__messenger-list {
    display: flex;
    gap: 24px;
}

.header-contacts__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 24px;
}

.header-contacts__socials .header-contacts__item {
    margin-bottom: 0;
}

.header-contacts .container {
    display: flex;
    justify-content: space-between;
}

.header-contacts__container a:hover {
    color: #fff;
}

.col-header {
    justify-content: space-between;
}

.burger {
    --burger-width: 2.4rem;
    --burger-height: 2rem;
    --burger-padding: 16px 13px;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: var(--burger-width);
    height: var(--burger-height);
    padding: var(--burger-padding);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: 0;
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
    outline: none !important;
}
header.light-theme .burger{
    background-color: #2900ff;
}
.burger--active .burger__line:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(5px, 5px);
    -ms-transform: rotate(45deg) translate(5px, 4px);
    transform: rotate(45deg) translate(5px, 4px);
}
.burger--active .burger__line:nth-child(2) {
    opacity: 0;
}
.burger--active .burger__line:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(4px, -4px);
    -ms-transform: rotate(-45deg) translate(4px, -4px);
    transform: rotate(-45deg) translate(4px, -4px);
}
.burger__line {
    position: relative;
    width: 100%;
    height: 0.1rem;
    background-color: #000;
    border-radius: 0.4rem;
    opacity: 1;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    will-change: transform, opacity;
    pointer-events: none;
}
header.light-theme .burger__line{
    background-color: #FFFFFF;
}
.burger:hover {
    cursor: pointer;
}

@media only screen and (max-width: 1250px) {
    .mnu-btn {
        display: none;
    }

    .burger {
        width: 46px;
        height: 46px;
        background-color: #fff;
        border-radius: 50%;
        overflow: hidden;
    }
}

.header-phone-button-box {
    transition: opacity 0.4s;
    margin-left: auto;
    margin-right: 10px;
    opacity: 1;
}

@media only screen and (min-width: 1251px) {
    .header-phone-button-box {
        display: none;
    }
}

@media (min-width: 576px) {
    header .container {
        max-width: 100%;
        padding-right: var(--container-indent-x);
        padding-left: var(--container-indent-x);
    }
}

.header-dropdown__list-back, .header-dropdown__back, .heading--h3 {
    --h-fs: 2.4rem;
    --h-lh: 120%;
    --h-w: 600;
}
@media only screen and (max-width: 1535px) {
    .header-dropdown__list-back, .header-dropdown__back, .heading--h3 {
        --h-fs: 1.8rem;
    }
}
@media only screen and (max-width: 1024px) {
    .header-dropdown__list-back, .header-dropdown__back, .heading--h3 {
        --h-fs: 1.6rem;
        --h-lh: 130%;
    }
}
@media only screen and (max-width: 575px) {
    .header-dropdown__list-back, .header-dropdown__back, .heading--h3 {
        --h-fs: 1.4rem;
    }
}

button {
    padding: 0;
    background: none;
    border: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    outline: none;
}

button:focus {
    outline: none;
}

@media screen and (min-width: 1251px)  {
    .light-theme {
        --color-background: #F2F4FF;
        --color-text-main: #111;
        --color-border: #828282;
    }

    .light-theme .header-dropdown__heading-icon circle,
    .light-theme .header-dropdown__heading-icon path{
        fill: #3300FF;
    }

    .light-theme .mnu-btn a {
        background-color: #3300FF;
    }

    .light-theme .mnu-btn path {
        fill: #fff;
    }
}

.light-theme .mnu-btn__text {
    color: #fff;
}

@media only screen and (min-width: 1251px) {
    .header-nav > .header-nav__link {
        font-weight: 700;
        font-size: 19px;
    }
}

.header-contacts .container {
    display: flex;
    align-items: center;
    height: 91px;
}

.header-contacts .w-logo-link {
    display: flex;
}

@media only screen and (min-width: 1251px) {
    .header-dropdown__icon {
        display: none;
    }
}

header.fixed {
    z-index: 401;
    padding: 20px 0;
}

.active-menu header {
    top: 0 !important;
}
header .row,
header .col-header {
    position: static;
}

header .container {
    position: relative;
}

@media only screen and (min-width: 1251px) {
    .header-dropdown__heading-arrow {
        display: none;
    }
}

.header-dropdown-contacts {
    transition: opacity 0.4s;
    position: fixed;
    top: var(--header-height);
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
}

.header-dropdown-contacts--active {
    opacity: 1;
    pointer-events: auto;
}

.header-dropdown-contacts__link {
    padding-top: 8px;
    padding-bottom: 8px;
    font-weight: 500;
    color: #000;
    font-size: 20px;
    text-align: center;
    line-height: 150%;
}

.header-dropdown-contacts__link:hover {
    color: #000;
    text-decoration: none;
}

.header-dropdown-contacts-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.header-dropdown-contacts-overlay--active {
    display: block;
}

@media only screen and (max-width: 1250px) {
    .header-dropdown__back,
    .header-dropdown__list-back {
        font-size: 32px;
    }

    .header-dropdown__heading {
        font-weight: 500;
        font-size: 24px;
    }

    .header-dropdown__heading-arrow {
        font-size: 24px;
    }
}

@media only screen and (max-width: 575px) {
    .header-dropdown__back,
    .header-dropdown__list-back {
        font-size: 28px;
    }

    .header-dropdown__heading {
        padding-bottom: 8px;
    }
}

.site > header {
    z-index: 10;
    transition: all 0.4s;
}

.lang-wrap a {
    color: #909090;
}
.lang-wrap a:hover{
    color: #fff;
}
@media (min-width: 990px) {
    .page-template-page-blog header:not(.fixed) .lang-wrap a:hover{
        color: white;
    }
}
header.fixed a:hover,
body:not(.active-menu) header.light-theme a:hover{
    color: black;
}
header:not(.fixed) .lang-wrap .current-lang a,
.page-template-page-blog header:not(.fixed).light-theme .lang-wrap .current-lang a{
    color: white;
}
body:not(.active-menu) header.light-theme .lang-wrap .current-lang a{
    color: black;
}
@media (max-width: 990px) {
    body:not(.active-menu).page-template-page-blog header:not(.fixed).light-theme .lang-wrap .current-lang a{
        color: black;
    }
}
body:not(.active-menu).page-template-page-blog header:not(.fixed).light-theme {
    background-color: unset;
}

.blog-post-wrap{
    margin-top: 86px;
}

@media only screen and (min-width: 1251px) {
    .header-nav__link.header-dropdown.small-dropdown {
        position: relative;
    }

    .small-dropdown .header-dropdown__container {
        left: 0;
        top: calc(var(--dropdown-position-y, 0) - 26px);
		top:38px;
    }
}
.page-template-page-blog .search:not(.search-results),
.blog .search:not(.search-results),
.page-template-page-blog_draft .search:not(.search-results){
    z-index: 9;
}
.cky-consent-container,
.cky-revisit-bottom-left{
    z-index: 9 !important;
}

header .logo .logo-left{
    width: 125px;
}

@media (max-width: 1450px) and (min-width: 1251px) {
    .header-dropdown__text,
    .header-nav>.header-nav__link,
    .header-dropdown__heading,
    .mnu-btn__text,
    .header-dropdown__link,
    .lang-wrap a{
        font-size: 15px;
    }
    .mnu-btn a:hover{
        padding: 8px 16px;
    }
    .header-dropdown__grid{
        gap: 48px;
    }
}
@media (max-width: 1283px) and (min-width: 1251px) {
    .header-nav__link{
        padding: 8px 13px;
    }
}

.single-fw-portfolio header:not(.fixed) .def-logo{
    display: none;
}
.single-fw-portfolio header:not(.fixed) .white-logo{
    display: block;
}
.single-fw-portfolio .single-portfolio-dark-header:not(.fixed) .def-logo{
    display: block;
}
.single-fw-portfolio .single-portfolio-dark-header:not(.fixed) .white-logo{
    display: none;
}
@media only screen and (min-width: 1251px) {
    .single-portfolio-dark-header:not(.fixed) .subtitle-text,
    .single-portfolio-dark-header:not(.fixed) .lang-wrap .current-lang a,
    .page-template-page-blog .single-portfolio-dark-header:not(.fixed).light-theme .lang-wrap .current-lang a,
    .single-portfolio-dark-header:not(.fixed) .header-dropdown__text,
    .single-portfolio-dark-header:not(.fixed) .header-nav__link {
        color: #000;
    }

    .single-portfolio-dark-header:not(.fixed) .header-nav__link:hover .header-dropdown__text,
    .single-portfolio-dark-header:not(.fixed) .header-nav__link:hover {
        color: white;
    }
}

.header-dropdown__arrow {
    fill: white;
    width: 10px;
    margin-left: 5px;
    margin-top: 2px;
}
.light-theme .header-dropdown__arrow {
    fill: black;
}
@media only screen and (max-width: 1250px) {
    .header-dropdown__arrow{
        display: none;
    }
}