.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    display: none;
}

.menu__wrap {
    position: absolute;
    top: 78px;
    bottom: 0;
    overflow: hidden;
    width: 100%;
    background-color: #F5F9FC;
}

.menu__level {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    overflow: hidden;
    overflow-y: scroll;
    width: calc(100% + 50px);
    height: 100%;
    margin: 0;
    padding: 0;
    list-style-type: none;
    background-color: transparent;
}

.menu__level:first-child {
    background-color: #fff;
    padding-bottom: 85px;
}

.menu__level:first-child .menu__item:last-child {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(-197deg, #1A56D7 0%, #447CF4 98%);
}

.menu__level:first-child .menu__item:last-child .menu__link {
    display: inline-block;
    color: #fff;
    line-height: 18px;
    padding: 14px 0;
    width: 122px;
    background-color: rgba(255, 255, 255, 0.15);
    text-align: center;
    border-radius: 2px;
    outline: none;
    border: none;
    transition: background-color 200ms ease;
}

.menu__level:first-child .menu__item:last-child .menu__link:hover {
    padding: 13px 0;
    background: none;
    -webkit-text-fill-color: currentColor;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.menu__level:first-child .menu__item:last-child .menu__link:hover:first-child {
    padding: 14px 0;
    border: none;
    background: none;
    background-color: rgba(255, 255, 255, 0.15);
    -webkit-text-fill-color: currentColor;
}

.menu__level:first-child .menu__item:last-child .menu__link:first-child {
    padding: 13px 0;
    background-color: transparent;
    margin-right: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.menu__level:focus {
    outline: none;
}

.menu__level--current {
    visibility: visible;
}

.menu .menu__item {
    display: block;
    width: calc(100% - 50px);
}

.menu__link {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 18px;
    position: relative;
    display: block;
    padding: 30px 35px 30px 30px;
    color: #383648;
    -webkit-transition: color 0.1s;
    transition: color 0.1s;
    border-bottom: 1px solid rgba(200, 215, 223, 0.27);
}

.menu__link[data-submenu]::after {
    content: "";
    position: absolute;
    right: 30px;
    width: 6px;
    height: 11px;
    top: 50%;
    transform: translate(0, -50%);
    background-image: url("icons/button-forward.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 6px 11px;
}

.menu__link:hover, .menu__link:focus {
    background: linear-gradient(270deg, #08cbd3 0%, #8d85fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    background-color: transparent;
    -webkit-text-fill-color: transparent;
}

.menu__link__image {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    width: 35px;
}

.lable.pallete-gradient-1 {
    background: linear-gradient(270deg, #08cbd3 0%, #8d85fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    background-color: transparent;
    -webkit-text-fill-color: transparent;
}

.lable.pallete-gradient-3 {
    background: -webkit-gradient(linear,right top,left top,from(#9080fe),to(#67ceff));
    background: -webkit-linear-gradient(right,#9080fe 0,#67ceff 100%);
    background: -o-linear-gradient(right,#9080fe 0,#67ceff 100%);
    background: linear-gradient(270deg,#9080fe 0,#67ceff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    background-color: transparent;
    -webkit-text-fill-color: transparent
}


#submenu-2 .menu__item:last-child span {
    background: -webkit-gradient(linear, right top, left top, from(#08cbd3), to(#8d85fe));
    background: -webkit-linear-gradient(right, #08cbd3 0, #8d85fe 100%);
    background: -o-linear-gradient(right, #08cbd3 0, #8d85fe 100%);
    background: linear-gradient(270deg, #08cbd3 0, #8d85fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    background-color: transparent;
    -webkit-text-fill-color: transparent;
}

[class^='animate-'], [class*=' animate-'] {
    visibility: visible;
}

.animate-outToRight .menu__item {
    -webkit-animation: outToRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
    animation: outToRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes outToRight {
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes outToRight {
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.animate-outToLeft .menu__item {
    -webkit-animation: outToLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
    animation: outToLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes outToLeft {
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes outToLeft {
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.animate-inFromLeft .menu__item {
    -webkit-animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
    animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes inFromLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes inFromLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.animate-inFromRight .menu__item {
    -webkit-animation: inFromRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
    animation: inFromRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes inFromRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes inFromRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.menu__breadcrumbs {
    font-size: 13px;
    line-height: 1;
    position: relative;
    padding: 0 60px 0 60px;
    height: 78px;
    border-bottom: 1px solid rgba(200, 215, 223, 0.27);
    display: flex;
    align-items: center;
}

.menu__breadcrumbs a {
    font-weight: bold;
    display: none;
    cursor: pointer;
    vertical-align: middle;
    text-transform: uppercase;
    font-family: "OpenSans", sans-serif;
    font-size: 13px;
    line-height: 18px;
    color: #383648;
    letter-spacing: 0.56px;
}

.menu__breadcrumbs a:last-child {
    display: inline-block;
}

.menu__breadcrumbs a:hover, .menu__breadcrumbs a:focus {
    background: linear-gradient(270deg, #08cbd3 0%, #8d85fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    background-color: transparent;
    -webkit-text-fill-color: transparent;
}

.menu__breadcrumbs a:not(:last-child)::after {
    display: inline-block;
}

.menu__back {
    position: absolute;
    z-index: 100;
    top: 24px;
    left: 30px;
    margin: 0;
    cursor: pointer;
    border: none;
    background: none;
    width: 50%;
    height: 30px;
    outline: none;
    display: flex;
    align-items: center;
}

.menu__back--hidden {
    pointer-events: none;
    opacity: 0;
}

.menu__back:hover, .menu__back:focus {
    color: #fff;
    outline: none;
}

.action--close {
    top: 34px;
    right: 30px;
}

.action--close {
    display: block;
    outline: none;
}

.menu {
    z-index: 1000;
    top: 0;
    width: 100%;
    height: 100vh;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    display: block;
}

.menu--open {
    /* -webkit-transform: translate3d(0, 0, 0); */
    transform: translate3d(0, 0, 0);
    transform: translateZ(1000px);
}

.h1.lable.pallete-gradient-2,.h2.lable.pallete-gradient-2,.h3.lable.pallete-gradient-2,.h4.lable.pallete-gradient-2,.h5.lable.pallete-gradient-2,.h6.lable.pallete-gradient-2,a.lable.pallete-gradient-2,blockquote.lable.pallete-gradient-2,h1.lable.pallete-gradient-2,h2.lable.pallete-gradient-2,h3.lable.pallete-gradient-2,h4.lable.pallete-gradient-2,h5.lable.pallete-gradient-2,h6.lable.pallete-gradient-2,input.lable.pallete-gradient-2,label.lable.pallete-gradient-2,li.lable.pallete-gradient-2,p.lable.pallete-gradient-2,span.lable.pallete-gradient-2,strong.lable.pallete-gradient-2 {
    background: -webkit-gradient(linear,right top,left top,from(#ce6ebe),to(#fd8194));
    background: -webkit-linear-gradient(right,#ce6ebe 0,#fd8194 100%);
    background: -o-linear-gradient(right,#ce6ebe 0,#fd8194 100%);
    background: linear-gradient(270deg,#ce6ebe 0,#fd8194 100%);
    -webkit-background-clip: text;
    background-clip: text;
    background-color: transparent;
    -webkit-text-fill-color: transparent
}