.header__button .btn.btn-white-border {
    border-radius: 0;
    border-color: #fff;
    color: #fff
}

.page-header-white .header {
    background-color: var(--white);
    -webkit-box-shadow: 50px 5px 50px rgba(0, 0, 0, .1);
    box-shadow: 50px 5px 50px rgba(0, 0, 0, .1)
}

.page-header-white .header .logo .logo-white {
    opacity: 0
}

.page-header-white .header .logo .logo-red {
    opacity: 1
}

.page-header-white .header .nav>ul>li>a {
    color: var(--accent-color)
}

.page-header-white .header .header__button .btn {
    background-color: var(--red-color);
    border-color: var(--red-color)
}

.page-header-white .header .header__button .btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white)
}

.page-header-white .header .burger span {
    background: #d52839
}

.header {
    -webkit-transition: background-color .3s ease-in-out, -webkit-transform .3s ease-in-out;
    transition: background-color .3s ease-in-out, -webkit-transform .3s ease-in-out;
    transition: background-color .3s ease-in-out, transform .3s ease-in-out;
    transition: background-color .3s ease-in-out, transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
    z-index: 222222;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0
}

.header.header-white,
.header.white {
    background-color: #f8fff4;
    -webkit-box-shadow: 0 4px 27.1px 5px rgba(34, 51, 59, .1019607843);
    box-shadow: 0 4px 27.1px 5px rgba(34, 51, 59, .1019607843);
    height: auto
}

.header.header-white .logo .logo-white,
.header.white .logo .logo-white {
    opacity: 0
}

.header.header-white .logo .logo-red,
.header.white .logo .logo-red {
    opacity: 1
}

.header.header-white .nav>ul>li>a,
.header.white .nav>ul>li>a {
    color: #22333b;
    max-width: 310px;
}

.header.header-white .header__button .btn,
.header.white .header__button .btn {
    background-color: #d52839;
    border-color: #d52839;
    min-width: 125px;
    min-height: 42px;
    font-size: 14px;
    font-weight: 700;
    font-family: Epilogue;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    text-decoration: none;
    border: 0;
    line-height: 1;
}

.header.header-white .burger span,
.header.white .burger span {
    background: #d52839
}

.header.header-white .header__button .btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white)
}

.header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    max-width: 1200px;
    padding: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.header .logo {
    width: 92px;
    display: block;
    position: relative;
    height: auto;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 11px
}

.header .logo .logo-white {
    opacity: 1
}

.header .logo .logo-red {
    opacity: 0;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0
}

.header .logo img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out
}

.header .container {
    position: relative
}

.header .nav {
    width: 100%;
    margin-left: auto;
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.header .nav>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    gap: 52px;
    align-items: center;
    margin: 0;
}

.header .nav>ul>li.parent {
    position: relative
}

.header .nav>ul>li::before {
    position: fixed;
    content: "";
    width: 225vw;
    height: calc(100vh - 4.05vw);
    left: -75vw;
    background-color: rgba(0, 0, 0, .5);
    z-index: -1;
    bottom: 0;
    opacity: 0;
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
    pointer-events: none
}

.header .nav>ul>li>a {
    color: #fff;
    font-family: Epilogue;
    font-size: 14px;
    font-weight: 700;
    line-height: 2;
    -webkit-transition: color .3s ease-in-out, border-color .3s ease-in-out;
    transition: color .3s ease-in-out, border-color .3s ease-in-out;
    padding: 38px 0;
    display: block;
    border-bottom: .15625vw solid rgba(50, 162, 136, 0)
}

@media (any-hover: hover) {
    .header .nav>ul>li:hover::before {
        opacity: 0
    }

    .header .nav>ul>li:hover>a {
        color: #d52839 !important;
        border-bottom: .15625vw solid #d52839
    }
}

.header .header__button {
    margin-left: 45px;
    position: relative;
    z-index: 2
}

.header .header__button .btn:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--red-color)
}

.header .header__button-mobile {
    display: none
}

.header.header-hide {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%)
}

.header .nav>ul>li:hover .sub-menu {
    opacity: 1;
    pointer-events: all
}

.sub-menu {
    display: block;
    position: absolute;
    background: #f8fff4;
    -webkit-box-shadow: 0 .52083vw 1.30208vw 0 rgba(0, 0, 0, .1);
    box-shadow: 0 .52083vw 1.30208vw 0 rgba(0, 0, 0, .1);
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
    width: 100%;
    left: 0;
    top: 100%;
    border-radius: 0;
    opacity: 0;
    pointer-events: none;
    z-index: 22222
}

.sub-menu.vertical-list {
    padding: 70px 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    /* max-width: 100%; */
}

.sub-menu.vertical-list>a {
    font-weight: 600
}

.sub-menu.vertical-list>a span {
    font-weight: 600
}

.sub-menu.sub-menu-type-list-ofer {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.sub-menu.sub-menu-type-list-ofer .sub-menu-list {
    width: 40%;
    padding: 40px 100px;
    max-width: none
}

.sub-menu.sub-menu-type-list-ofer .sub-menu-ofer {
    width: 60%;
    max-width: none;
    background: rgba(255, 255, 255, 0) !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 0;
    border-left: 1px solid #26333a;
    padding: 0
}

.sub-menu.sub-menu-type-list-ofer .sub-menu-ofer>div:nth-child(1) {
    width: 46%;
    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;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 49px 5px 40px 27px;
    max-width: none;
    margin: 0
}

.sub-menu.sub-menu-type-list-ofer .sub-menu-ofer>div:nth-child(1) span {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    color: rgba(34, 51, 59, .75);
    display: inline-block;
    margin-bottom: 16px
}

.sub-menu.sub-menu-type-list-ofer .sub-menu-ofer>div:nth-child(1) p {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    color: rgba(34, 51, 59, .75);
    display: inline-block;
    margin-bottom: 27px
}

.sub-menu.sub-menu-type-list-ofer .sub-menu-ofer>div:nth-child(1) a {
    margin-top: auto;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    color: #d52839;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.sub-menu.sub-menu-type-list-ofer .sub-menu-ofer>div:nth-child(1) a:hover {
    color: #22333b
}

.sub-menu.sub-menu-type-list-ofer .sub-menu-ofer>div:nth-child(1) a::after {
    content: ">";
    margin-left: 5px
}

.sub-menu.sub-menu-type-list-ofer .sub-menu-ofer>div:nth-child(2) {
    width: 54%;
    -webkit-mask-image: url(https://resources.gloat.com/wp-content/uploads/mskmen.png);
    mask-image: url(https://resources.gloat.com/wp-content/uploads/mskmen.png);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top right;
    mask-position: top right;
    max-width: none;
    margin: 0
}

.sub-menu.sub-menu-type-list-ofer .sub-menu-ofer>div:nth-child(2) img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.sub-menu * {
    color: #22333b
}

.sub-menu a {
    color: currentColor
}

.sub-menu-col-item {
    width: 100%;
    padding: 0
}

.sub-menu-list a {
    color: #22333b;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    color: #22333b !important;
}

.sub-menu-list a:hover {
    text-decoration: underline
}

.nav__mob-top {
    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
}

.header-mini {
    margin: 0 auto;
    padding: 1.04167vw 0;
    position: absolute;
    width: 100%;
    z-index: 200
}

.header-mini-container {
    max-width: 58.333vw;
    margin: 0 auto;
    padding: 0 20px
}

.header-mini__logo {
    width: 3.48958vw;
    display: block
}

.header-mini__logo img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.burger {
    width: 24px;
    height: 16px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 350;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
    display: none;
    position: relative;
    margin: 0
}

.burger span {
    position: absolute;
    background: #fff;
    height: 2px;
    width: 100%;
    display: block;
    -webkit-transition: all .3s;
    transition: all .3s;
    border-radius: 0
}

.burger span:nth-child(1) {
    top: 0
}

.burger span:nth-child(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.burger span:nth-child(3) {
    bottom: 0
}

.sub-menu-type-col-dot {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px
}

.vertical-list .sub-menu-col-item span {
    font-size: 16px;
    font-weight: 400;
    font-family: Epilogue
}

.vertical-list .sub-menu-col-item {
    padding: 0
}

.vertical-list .sub-menu-col-item>p {
    border-bottom: 1px solid #efefef;
    padding-bottom: 5px;
    font-size: .729vw;
    line-height: .957vw;
    color: #757575;
    margin: 2px 0 0 0
}

.vertical-list .sub-menu-col-item span a {
    text-decoration: none;
    font-family: Epilogue;
    font-weight: 600;
    font-size: 16px;
    color: #22333b;
}

.vertical-list ul {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 20px 0 0 0 !important;
}

.vertical-list ul a {
    padding-bottom: 12px;
    max-width: 100%;
    font-family: Epilogue;
    font-weight: 400 !important;
    font-size: 16px;
    line-height: 120%;
    color: #22333b;
    padding: 0;
    margin: 0
}

.vertical-list .sub-menu-col-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.vertical-list .subchildren p {
    font-size: 14px;
    font-weight: 400;
    line-height: 18.37px;
    font-family: "Source Sans Pro";
    color: #757575;
    margin: 2px 0 0 0
}

.subchildren:last-child {
    border-bottom: none
}

.vertical-list .sub-menu-col-item {
    padding-top: 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
}

.vertical-list .sub-menu-col-item:last-child {
    border: none;
    max-width: 100%
}

.vertical-list .sub-menu-col-item:last-child {
    border-bottom: none
}

.vertical-list .sub-menu-col-item>p:last-child {
    border-bottom: none
}

.subchildren>span {
    position: relative
}

.subchildren .circle {
    display: block;
    background-color: #32a287;
    position: absolute !important;
    top: .4729vw;
    left: -.89583vw;
    border-radius: 50%;
    width: .41667vw;
    height: .41667vw;
    padding: 0;
    display: none
}

.sub-menu-type-list-ofer ul li:not(:first-child) {
    margin-top: 40px
}

.vertical-list .sub-menu-col-item span a>span {
    font-weight: 600;
    color: #d52839;
    text-decoration: none
}

.vertical-list .sub-menu-col-item span a:hover {
    text-decoration: none
}

.sub-menu {
    max-width: 100%
}

@media screen and (max-width: 1200px) {
    .header .container {
        padding: 0 20px
    }

    .sub-menu.vertical-list {
        padding: 40px
    }

    .sub-menu.sub-menu-type-list-ofer .sub-menu-list {
        padding: 40px
    }

    .sub-menu-type-list-ofer ul li:not(:first-child) {
        margin-top: 25px
    }
}

.vertical-list .sub-menu-col-item {
    width: 100%
}

@media screen and (max-width: 960px) {
    .header .nav>ul {
        gap: 25px
    }

    .sub-menu.vertical-list {
        gap: 25px
    }

    .sub-menu.sub-menu-type-list-ofer .sub-menu-ofer>div:nth-child(1) span {
        font-size: 18px
    }

    .sub-menu.sub-menu-type-list-ofer .sub-menu-ofer>div:nth-child(1) {
        padding: 30px 5px 30px 20px
    }

    .header .logo {
        width: 59px
    }

    .header .header__button {
        margin-left: 25px
    }

    .vertical-list ul {
        gap: 14px;
        margin-top: 14px
    }
}

@media screen and (max-width: 850px) {
    .header .nav>ul {
        gap: 16px
    }
}

@media screen and (max-width: 768px) {
    .vertical-list ul a {
        max-width: 100%
    }

    .vertical-list .sub-menu-col-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .vertical-list .sub-menu-col-item:last-child {
        border: none;
        max-width: 100%
    }

    .subchildren .circle {
        display: none
    }

    .vertical-list .sub-menu-col-item span {
        font-size: 14px
    }

    .vertical-list .sub-menu-col-item>p {
        border-bottom: none;
        padding-bottom: 13px;
        font-size: 14px;
        line-height: 20px;
        color: #757575;
        margin: 2px 0 0 0
    }

    .vertical-list ul {
        padding: 20px 0 0;
        border-top: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
        margin: 0
    }

    .vertical-list ul a {
        font-size: 14px
    }

    .vertical-list ul a.subchildren p {
        margin: 0
    }

    .vertical-list .sub-menu-col-item .subchildren span {
        font-size: 14px
    }

    .vertical-list .sub-menu-col-item .subchildren span {
        font-size: 14px
    }
}

@media screen and (max-width: 768px) {
    .vertical-list .sub-menu-col-item span a {
        font-size: 14px
    }

    .header {
        padding: 11px 0 11px;
        -webkit-transition: background-color .3s ease-in-out, padding .3s ease-in-out, -webkit-transform .3s ease-in-out;
        transition: background-color .3s ease-in-out, padding .3s ease-in-out, -webkit-transform .3s ease-in-out;
        transition: background-color .3s ease-in-out, transform .3s ease-in-out, padding .3s ease-in-out;
        transition: background-color .3s ease-in-out, transform .3s ease-in-out, padding .3s ease-in-out, -webkit-transform .3s ease-in-out
    }

    .header.header-white {
        padding: 11px 0 11px
    }

    .header .logo {
        width: 59px;
        height: auto;
        margin-top: 9px
    }

    .header .nav {
        background-color: #fff;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 302222220;
        margin-left: 0;
        padding: 0;
        height: 100vh;
        overflow-y: auto;
        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: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-transition: -webkit-transform .3s ease-in-out;
        transition: -webkit-transform .3s ease-in-out;
        transition: transform .3s ease-in-out;
        transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
        overflow-x: hidden;
        -webkit-transform: translateX(-110%);
        -ms-transform: translateX(-110%);
        transform: translateX(-110%);
    }

    .header .nav.active {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    .header .nav .logo .logo-red {
        opacity: 1 !important
    }

    .header .nav {
        background: #f8fff4;
        padding-bottom: 60px
    }

    .header .nav>ul {
        -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;
        margin-top: 0;
        margin-bottom: 0;
        padding: 35px 20px 40px;
        background: rgba(255, 255, 255, 0);
        width: 100%
    }

    .header .btn {
        width: auto;
        min-width: 0;
        min-height: 0;
        height: auto;
        font-size: 18px;
        padding: 11px 46px;
        border-radius: 0;
        background-color: #d52839;
        border-color: #d52839;
        color: #fff;
    }

    .header .nav>ul>li {
        margin: 0;
        width: 100%;
        position: relative
    }

    .header .nav>ul>li:not(:first-child) {
        border-top: 1px solid rgba(213, 40, 57, .1490196078)
    }

    .header .nav>ul>li.active {
        border-top: none
    }

    .header .nav>ul>li:last-child {
        border-bottom: 1px solid rgba(213, 40, 57, .1490196078)
    }

    .header .nav>ul>li::before {
        display: none
    }

    .header .nav>ul>.nochild::after {
        display: none
    }

    .header .nav>ul>li::after {
        content: "";
        position: absolute;
        -webkit-mask-image: url(https://resources.gloat.com/wp-content/uploads/close-red.svg);
        mask-image: url(https://resources.gloat.com/wp-content/uploads/close-red.svg);
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-size: cover;
        mask-size: cover;
        -webkit-mask-position: center center;
        mask-position: center center;
        background: #22333b;
        width: 16px;
        height: 16px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        right: 0;
        top: 31px;
        -ms-flex-negative: 0;
        flex-shrink: 0
    }

    .header .nav>ul>li>a {
        position: relative;
        font-size: 14px;
        color: #22333b;
        padding: 25px 25px 25px 0
    }

    .header .nav>ul {
        gap: 0
    }

    .header .nav>ul>li.not-sub:after {
        display: none
    }

    .header .nav>ul>li.active>a::before {
        content: none;
        position: absolute;
        z-index: -1;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #f5f6f8;
        -webkit-box-shadow: -8.3333vw 0 0 #f5f6f8, 8.3333vw 0 0 #f5f6f8;
        box-shadow: -8.3333vw 0 0 #f5f6f8, 8.3333vw 0 0 #f5f6f8
    }

    .header .nav>ul>li.active::after {
        width: 16px;
        height: 16px;
        background-color: #d52839;
        background-image: none;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        top: 31px
    }

    .header .nav__mob-top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .header .burger {
        display: block;
        margin-left: auto
    }

    .header .close {
        position: relative;
        width: 24px;
        height: 16px
    }

    .header .close::after,
    .header .close::before {
        width: 100%;
        height: 2px;
        display: inline-block;
        position: absolute;
        top: 50%;
        left: 50%;
        content: "";
        background: #d52839;
        -webkit-transform: translate(-50%, -50%) rotate(45deg);
        -ms-transform: translate(-50%, -50%) rotate(45deg);
        transform: translate(-50%, -50%) rotate(45deg)
    }

    .header .close::after {
        -webkit-transform: translate(-50%, -50%) rotate(-45deg);
        -ms-transform: translate(-50%, -50%) rotate(-45deg);
        transform: translate(-50%, -50%) rotate(-45deg)
    }

    .header .close img {
        display: none
    }

    .header .sub-menu {
        position: static;
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        width: 100%;
        max-width: 100%;
        opacity: 1;
        pointer-events: all;
        padding: 0;
        background-color: rgba(0, 0, 0, 0);
        display: none;
        margin: 0;
        padding: 40px 0;
        border-top: 1px solid rgba(213, 40, 57, .1490196078)
    }

    .header .sub-menu-list,
    .header .sub-menu.right-position {
        width: 100%;
        max-width: 100%
    }

    .header .sub-menu-type-col {
        grid-template-columns: 1fr
    }

    .header .sub-menu-col-item:not(:first-child) {
        margin-top: 25px
    }

    .header .sub-menu-col-item {
        width: 100%;
        padding: 0;
        display: block
    }

    .header .nav>ul>li>a {
        border-bottom: none
    }

    .header .sub-menu-col-item span {
        font-size: 14px;
        line-height: 130%
    }

    .header .sub-menu-col-item p {
        font-size: 14px;
        line-height: 1.3;
        font-family: "Source Sans Pro", sans-serif;
        margin-top: 16px;
        color: #757575
    }

    .header .nav__mob-top {
        position: sticky;
        width: 100%;
        top: 0;
        left: 0;
        background-color: #f8fff4;
        z-index: 3022222270;
        padding: 11px 11px;
        -webkit-box-shadow: 0 4px 27.1px 5px rgba(34, 51, 59, .1019607843);
        box-shadow: 0 4px 27.1px 5px rgba(34, 51, 59, .1019607843)
    }

    .header .nav__mob-top .logo {
        width: 59px;
        margin-top: 9px;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .header .nav__mob-top .logo a,
    .header .nav__mob-top .logo img {
        width: 100%;
        height: 100%;
        position: static
    }

    .header .sub-menu-list {
        padding: 0
    }

    .header .sub-menu-type-list-ofer ul li:not(:first-child),
    .header .sub-menu.right-position ul li:not(:first-child) {
        margin-top: 25px
    }

    .sub-menu.sub-menu-type-list-ofer .sub-menu-list {
        width: 100%;
        padding: 0
    }

    .sub-menu.sub-menu-type-list-ofer .sub-menu-ofer {
        display: none
    }

    .header .sub-menu-list a {
        font-size: 14px;
        line-height: 130%;
        display: block
    }

    .header .header__button {
        display: none
    }

    .header .header__button-mobile {
        display: block;
        padding: 0 8.3333vw
    }

    .header .logo .logo-white {
        opacity: 1 !important
    }

    .header .header:hover .logo-red {
        opacity: 0
    }

    .header .header.header-white {
        background-color: #fff !important
    }

    .header .header.header-white .burger span {
        background-color: #22333b
    }

    .header-mini-container {
        max-width: 100%;
        padding: 0 20px
    }
}



.sub-menu::before {
    content: '';
    width: 100%;
    height: 38px;
    position: absolute;
    bottom: 100%;
    left: 0;
    display: inline-block;
}