
@media screen and (max-width: 767px) {
    body.overflow-toggle{
        overflow: hidden;
    }
    .header-navigation-wrapper{
        position: fixed;
        top: 0;
        left: 100%;
        background-color: rgb(255, 255, 255);
        opacity:0.3;
        width: 100vw;
        height: calc(var(--vh, 1vh) * 100);
        transition: all 0.5s ease-in-out;
        z-index: 3;
        justify-content: center;
        flex-direction: column;
        overflow-y:auto;
        display: flex;
    }
    
    .header-navigation-wrapper.visible-toggle{
        left: 0;
        top: 0px;
        position: fixed;
        width: 100%;
        opacity: 1;
        height: 100vh;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .header-navigation-wrapper .button {
        margin: 0 auto 50px;
        display: flex;
    }
       

    nav.primary-menu-wrapper{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #menu-primary {
        display: inline-flex;
        flex-direction: column;
        margin: 0 auto 1em;
        padding-top: 50px;
    }

    #menu-primary li,
    .backbutton{
        padding: 20px 0;
        text-transform: uppercase;
        font-size: 15px;
        text-align: center;
        margin: 0 auto !important;
    }

    ul#menu-primary li a{
        text-decoration: none;
        color: #525252;
    }

    ul#menu-primary li a[aria-current]{
        background: -webkit-linear-gradient(90deg, #E72F75 0%, #E9454B 99.95%, #E9454B 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .mobile-toggle {
        width: 48px;
        height: 48px;
        padding: 7px;
        -webkit-appearance: none;
        border: none;
        z-index: 5;
        cursor: pointer;
    }
      
    .icon-span {
        display: block;
        width: 100%;
        border-radius: 3px;
        height: 4px;
        background: #FFFFFF;
        transition: all .3s;
        position: relative;
    }
    .active .icon-span{
        background:  #E9454B;
    }
      
    .icon-span + .icon-span {
        margin-top: 9px;
    }
      
    .active i:nth-of-type(1) {
        animation: ease .7s top forwards;
    }
      
    .not-active i:nth-of-type(1) {
        animation: ease .7s top-2 forwards;
    }
      
    .active i:nth-of-type(2) {
        animation: ease .7s scaled forwards;
    }
      
    .not-active i:nth-of-type(2) {
        animation: ease .7s scaled-2 forwards;
    }
      
    .active i:nth-of-type(3) {
        animation: ease .7s bottom forwards;
    }
      
    .not-active i:nth-of-type(3) {
        animation: ease .7s bottom-2 forwards;
    }
      
    @keyframes top {
        0% {
            top: 0;
            transform: rotate(0);
        }
        50% {
            top: 13px;
            transform: rotate(0);
        }
        100% {
            top: 13px;
            transform: rotate(45deg);
        }
        }
        
        @keyframes top-2 {
        0% {
            top: 13px;
            transform: rotate(45deg);
        }
        50% {
            top: 13px;
            transform: rotate(0deg);
        }
        100% {
            top: 0;
            transform: rotate(0deg);
        }
    }
      
    @keyframes bottom {
        0% {
            bottom: 0;
            transform: rotate(0);
        }
        50% {
            bottom: 13px;
            transform: rotate(0);
        }
        100% {
            bottom: 13px;
            transform: rotate(135deg);
        }
    }
      
    @keyframes bottom-2 {
        0% {
            bottom: 13px;
            transform: rotate(135deg);
        }
        50% {
            bottom: 13px;
            transform: rotate(0);
        }
        100% {
            bottom: 0;
            transform: rotate(0);
        }
    }
      
    @keyframes scaled {
        100% {
            transform: scale(0);
        }
    }
      
    @keyframes scaled-2 {
        0% {
            transform: scale(0);
        }
        50% {
            transform: scale(0);
        }
        100% {
            transform: scale(1);
        }
    }
}

.nav-toggle-label{
    height: 0;
    width: 0;
    display: none;
    visibility: hidden;
    opacity: 0;
}

.header-inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 40px 20px;
}
.section-inner {
    max-width: 1400px;
    width: 100%;
}

.primary-menu-wrapper {
    display: none;
}

ul.primary-menu {
    display: flex;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: -0.0277em;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: -0.8rem 0 0 -1.6rem;
}
.reset-list-style, .reset-list-style ul, .reset-list-style ol {
    list-style: none;
    margin: 0;
}
ul, body {
    padding: 0;
    margin: 0;
}

@media (min-width: 1000px){
    .header-inner {
        align-items: center;
        display: flex;
        justify-content: space-between;
        padding: 2.8rem 0;
    }
}

@media screen and (max-height: 450px) and (max-width: 767px){
    .header-navigation-wrapper.visible-toggle{
        justify-content: flex-start !important;
    }
}

@media (min-width: 700px){
    .header-inner {
        padding: 3.8rem 0;
    }
}

@media (min-width: 700px){
    .section-inner {
        width: calc(100% - 8rem);
    }
}

@media (min-width: 767px){
    .header-navigation-wrapper {
        align-items: center;
        display: flex;
    }
    .primary-menu-wrapper {
        display: block;
        width: 100%;
    }
    .primary-menu > li {
        margin: 0.8rem 1.2rem 0 0 !important;
    }
}

@media (min-width: 100px){
    .primary-menu-wrapper {
        display: block;
    }
}

@media screen and (max-width: 1080px) {
    .primary-menu a {
        font-size: 16px !important;
    }
    .header-navigation-wrapper .button{
        font-size: 16px !important;
    }
}

@media (min-width: 1220px){
    ul.primary-menu {
        margin: -0.8rem 0 0 -2.5rem;
    }
}

@media (min-width: 500px){
    .primary-menu > li {
        margin: 0.8rem 0 0 5rem;
    }
}

.primary-menu > li {
    margin: 0.8rem 0 0 2.5rem;
}

@media (min-width: 1220px){
    .primary-menu > li {
        margin: 0.8rem 0 0 2.5rem;
    }
}

.primary-menu > li {
    margin: 0.8rem 0 0 1.6rem;
}
.primary-menu li {
    font-size: inherit;
    line-height: 1.25;
    position: relative;
}

.header-inner {
    max-width: 168rem;
    padding: 3.15rem 0;
    z-index: 100;
}
.section-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 120rem;
    width: calc(100% - 4rem);
}

@media (min-width: 100px){
    .primary-menu-wrapper {
        display: block;
    }
}

 
#site-header{
    background: rgba(255, 255, 255, 0);
    position: absolute;
    width: 100%;
    z-index: 3;
}

.section-inner {
    max-width: 1400px;
    width: 100%;
}

.header-inner {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    padding: 40px 20px;
}

.site-description{
    display: none;
}

.toggle.nav-toggle.mobile-nav-toggle{
    display: none;
}

.primary-menu a,
.primary-menu span{
    font-family: 'Exo 2', sans-serif !important;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
    text-decoration: none !important;
    display: block;
    line-height: 1.2;
}
@media (max-width: 450px){
    .primary-menu a,
    .primary-menu span{
        font-size: 17px !important;
    }
    .custom-logo{
        max-width: 115px !important;
    }
}

.header-navigation-wrapper .button{
    display: none;
}

@media (min-width: 200px){
    .header-navigation-wrapper .button{
        display: flex;
    }
}

.menu-modal.cover-modal.header-footer-group{
    display: none !important;
}

.current-menu-item.minor-link:after{
    transform: scaleX(1) !important;
}
    





























































@media screen and (max-width: 767px){
    #menu-item-1091{
        position: fixed;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: scroll;
        padding: 0 0 3em 0 !important;
        width: 100%;
        height:100%;
        left: 100%;
        top: 0;
        background: #FFF;
        z-index: 10;
        overflow-y: scroll;
        overflow-x: hidden;
        -webkit-transition: all 0.5s cubic-bezier(0.02, 0.01, 0.47, 1);
        -o-transition: all 0.5s cubic-bezier(0.02, 0.01, 0.47, 1);
        transition: all 0.5s cubic-bezier(0.02, 0.01, 0.47, 1);
    }

    #menu-item-1091.visible-submenu-toggle{
        transform: translateX(-100%);
    }
    #menu-item-1091 .sub-menu{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .sub-menu li:nth-child(1){
        padding-top:40px !important;
    }
    li#menu-item-556 {
        order: 3;
    }
    li.minor-link.mobile-submenu-button {
        order: 2;
    }
    .overflow-toggle .visible-submenu-toggle .toggle-text{
        pointer-events: none;
        display: none;
    }
    .mobile-submenu-button a{
        position: relative;
    }
    .mobile-submenu-button a:before{
        content: '';
        width: 18px;
        height: 13px;
        position: absolute;
        right: -30px;
        top: calc(50% - 6px);
        background: url('/wp-content/uploads/2021/01/list-arrow.svg');
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
    .backbutton{
        font-family: 'Exo 2', sans-serif !important;
        background: linear-gradient(90deg, #E72F75 0%, #E9454B 100%);
        color:#FFFFFF;
        width: 100%;
        text-align: center;
        font-style: normal !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        display: block !important;
        line-height: 1.2 !important;
        font-size: 16px !important;
    }
    .mobile-toggle.sub-menu-top{
        z-index: -1;
    }
}




@media (min-width: 767px){
    .mobile-submenu-button,
    .backbutton,
    .sub-menu-toggle.button{
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        z-index: -1 !important;
        transform: scale(0) !important;
    }

    .sub-menu{
        position: absolute;
        min-width: max-content;
        border-radius: 5px;
        padding-top:20px;
        overflow: hidden !important;
        opacity: 0 !important;
        z-index: -1;
        -webkit-transform: scaleY(0.7);
        -ms-transform: scaleY(0.7);
        transform: scaleY(0.7);
        -webkit-transform-origin: top;
        -ms-transform-origin: top;
        transform-origin: top;
        -webkit-transition: all 0.5s cubic-bezier(0.02, 0.01, 0.47, 1);
        -o-transition: all 0.5s cubic-bezier(0.02, 0.01, 0.47, 1);
        transition: all 0.5s cubic-bezier(0.02, 0.01, 0.47, 1);
        pointer-events: none;
    }

    #menu-item-1091.dropdown-active .sub-menu{
        opacity: 1 !important;
        z-index: 3;
        visibility: visible !important;
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: top;
        -ms-transform-origin: top;
        transform-origin: top;
        pointer-events: all;
    }

    #menu-item-1091 .sub-menu:before{
        content: '';
        width: 0; 
        height: 0; 
        position:absolute;
        top: 10px;
        left: 36px;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #FFF;
    }

    .sub-menu li{
        background-color:rgba(255, 255, 255, 1);
        display: block;
        width: 100%;
    }

    .sub-menu li:first-child{
        border-radius: 5px 5px 0 0;
    }

    .sub-menu .menu-link{
        font-family: 'Exo 2', sans-serif !important;
        color: #525252;
        opacity: 0.7;
        padding: 12px 0.7em;
        position: relative;
        display: block;
        padding-right: 60px;
        -webkit-transition: all 0.5s cubic-bezier(0.02, 0.01, 0.47, 1);
        -o-transition: all 0.5s cubic-bezier(0.02, 0.01, 0.47, 1);
        transition: all 0.5s cubic-bezier(0.02, 0.01, 0.47, 1);
    }

    .sub-menu .menu-link[aria-current="page"]{
        color: rgba(231, 47, 117, 1);
    }

    .sub-menu li:first-child a{
        padding-top:0.8em;
    }

    .sub-menu li:last-child a{
        padding-bottom:0.8em;
    }

    .sub-menu li a:hover{
        cursor: pointer;
        color: rgba(231, 47, 117, 1);
        opacity: 1;
    }
    .sub-menu li a:after{
        content: '';
        width:18px;
        height:13px;
        position: absolute;
        right: 20px;
        top: calc(50% - 5px);
        background: url('/wp-content/uploads/2021/01/list-arrow.svg');
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        -webkit-transition: all 0.5s cubic-bezier(0.02, 0.01, 0.47, 1);
        -o-transition: all 0.5s cubic-bezier(0.02, 0.01, 0.47, 1);
        transition: all 0.5s cubic-bezier(0.02, 0.01, 0.47, 1);
    }
    .sub-menu li a:hover:after{
        transform: translateX(10px);
    }
}








