/* @group Site nav
------------------------------------ */
.site-nav {
    position: relative;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-index-super-modal);
    padding: 2.7rem 0 2.8rem;
}
[data-fixed-menu="show"].show-promobar .site-nav {
    transform: translateY(0) !important;
}
[data-fixed-menu="show"].scrolled .site-nav {
    background-color: transparent;
    backdrop-filter: unset;
}
.site-nav .row {
    padding: 2px 0;
}
.site-nav .col-logo,
.site-nav .col-actions {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}
.site-nav .col-logo {
    height: 3.5rem;
}
.site-nav .col-logo .logo,
.site-nav .col-logo .logo svg {
    height: 100%;
    width: auto;
}
.site-nav .col-actions {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    column-gap: 3rem
}
.site-nav .bttn-icon,
.site-nav .bttn-text {
    height: 3.5rem;
    margin: 0;
    padding: 0;
}
.site-nav .bttn-icon {
    width: 3.5rem;
    border-radius: 50%;
    border-width: 1px;
    border-style: solid;
    border-color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}
.site-nav .bttn-icon .icon-search {
    font-size: 1.5rem;
    pointer-events: none;
}
.site-nav .bttn-icon .icon-menu {
    font-size: .8rem;
}
.site-nav .bttn-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 3rem;
    border: 1px solid var(--white, #FFF);
    backdrop-filter: blur(27.5px);
    font-family: var(--termina-font);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: .03em;
    text-transform: uppercase;
}
.site-nav .bttn-icon--yellow {
    border-color: var(--yellow);
}
body::before {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: var(--z-index-bg-modal);
    opacity: 0;
    pointer-events: none;
}
[data-fixed-menu="show"]::before { opacity: 1; }
[data-fixed-menu="show"] .site-nav .bttn-icon .icon-menu {
    font-size: 1.4rem;
}
[data-fixed-menu="show"] .site-nav .bttn-icon .icon-menu::before {
    content: "\e904";
}

/* DARK */
[data-fixed-menu="hide"] .site-nav--dark .bttn-icon,
[data-fixed-menu="hide"] .site-nav--dark .bttn-text {
    border: 1px solid var(--black);
}
[data-fixed-menu="hide"] .site-nav--dark .bttn-icon,
[data-fixed-menu="hide"] .site-nav--dark .bttn-text,
[data-fixed-menu="hide"] .site-nav--dark .bttn-icon .icon-search:before {
    color: var(--black);
}
[data-fixed-menu="hide"] .site-nav--dark .bttn-icon .icon-menu:before {
    color: var(--blue);
}
[data-fixed-menu="hide"] .site-nav--dark .logo path {
    fill: var(--black);
}
.scrolled .site-nav {
    background: rgba(0, 0, 0, 0.40);
    backdrop-filter: blur(27.5px);
}
.page-template-contact.scrolled .site-nav {
    background: rgba(255, 255, 255, 0.40);
}
@media only screen
and (min-width : 0)
and (max-width : 960px) {
    
    [data-fixed-menu="hide"] .site-nav--dark {
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(10px);
    }
}
@media only screen
and (min-width : 961px) {
    .site-nav {
        padding: 0;
        padding: 3rem 0;       
    }
    .site-nav .col-logo,
    .site-nav .col-actions {
        padding: 0 2.6vh;
    }
    .site-nav .col-logo,
    .site-nav .bttn-text,
    .site-nav .bttn-icon {
        height: 5rem;
    }
    .site-nav .bttn-text {
        padding: 0 1.5rem;
    }
    .site-nav .bttn-icon {
        width: 5rem;
    }
    .site-nav .bttn-icon .icon-search {
        font-size: 2rem;
    }
    .site-nav .bttn-icon .icon-menu {
        font-size: 1rem;
    }
    /* HOVERS */
    .site-nav [data-bttn-sidebar]:hover {
        background-color: var(--white);
        color: var(--black);
    }
    .site-nav [data-bttn-sidebar]:hover i:before {
        color: var(--black);
    }
    .site-nav [data-bttn="toggle-fixed-menu"]:hover {
        border-color: var(--white);
        background-color: var(--black);
    }
    .site-nav [data-bttn="toggle-fixed-menu"]:hover i:before {
        color: var(--white);
    }
    .site-nav--dark [data-bttn-sidebar]:hover {
        background-color: var(--black);
        color: var(--white);
    }
    .site-nav--dark [data-bttn-sidebar]:hover i:before {
        color: var(--white);
    }
    .site-nav--dark [data-bttn="toggle-fixed-menu"]:hover {
        border-color: var(--white);
        background-color: var(--black);
    }
    .site-nav--dark [data-bttn="toggle-fixed-menu"]:hover i:before {
        color: var(--white);
    }
}
@media only screen
and (min-width : 961px)
and (max-width : 1440px) {
}
@media only screen
and (min-width : 0)
and (max-width : 960px) {
    .site-nav .bttn-text {
        display: none;
    }

    [data-fixed-menu="show"] .site-nav .col-logo {
        opacity: 0;
        pointer-events: none;
    }

    .scrolled[data-fixed-menu="hide"] .site-nav .bttn-icon,
    .scrolled[data-fixed-menu="hide"] .site-nav .bttn-text {
        border: 1px solid var(--black);
    }
    .scrolled[data-fixed-menu="hide"] .site-nav .bttn-icon,
    .scrolled[data-fixed-menu="hide"] .site-nav .bttn-text,
    .scrolled[data-fixed-menu="hide"] .site-nav .bttn-icon .icon-search:before {
        color: var(--black);
    }
    .scrolled[data-fixed-menu="hide"] .site-nav .bttn-icon .icon-menu:before {
        color: var(--blue);
    }
    .scrolled[data-fixed-menu="hide"] .site-nav .logo path {
        fill: var(--black);
    }
    .scrolled[data-fixed-menu="hide"] .site-nav {
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(10px);
    }
}

/* @end */


/* @group Fixed menu
------------------------------------ */
.fixed-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    z-index: var(--z-index-modal);
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: all .7s;
}
[data-fixed-menu="show"] .fixed-menu {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
}
.fixed-menu__content {
    width: 100%;
    position: relative;
    padding: 14.6rem 3.3rem 2.6rem;
}
.fixed-menu .outer-curve {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: right top;
    z-index: var(--z-index-under);
    background-image: url('../../img/globals/bg-main-menu-mobile.png');
}
.fixed-menu .links {
    margin-bottom: 5rem;
}
.fixed-menu .main-menu li,
.fixed-menu .links li {
    text-align: right;
}
.fixed-menu .main-menu li:not(:last-child) {
    margin-bottom: 5rem;
}
.fixed-menu .main-menu {
    margin-bottom: 5rem;
}
.fixed-menu .main-menu a,
.fixed-menu .links a {
    color: var(--white, #FFF);
    font-family: var(--didot-font);
    font-style: italic;
    font-weight: 400;
    font-size: 3.5rem;
    line-height: 110%;
    letter-spacing: .03em;
    text-transform: uppercase;
}
.fixed-menu .links li:not(:last-child) {
    margin-bottom: 3rem;
}
.fixed-menu .links a {
    font-size: 2.7rem;
}
.fixed-menu .social-icon {
    display: flex;
    justify-content: flex-end;
    column-gap: 3.5vh;
}
.fixed-menu .social-icon a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border: 1px solid var(--white);
    border-radius: 50%;
}
.fixed-menu .social-icon i::before {
    color: var(--white);
    font-size: 2rem;
}
.fixed-menu .sign-me-up {
    display: flex;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    border-radius: 3rem;
    border: 1px solid #FFF;
    background: rgba(0, 0, 0, 0.15);
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    height: 4.8rem;
    width: 18.1rem;
    font-family: var(--termina-font);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.4rem;
    letter-spacing: .03em;
    margin-top: 8.2rem;
}


@media only screen
and (min-width : 961px) {
    .fixed-menu {
        width: 84.7vh;
    }
    .fixed-menu__content {
        flex: 0 1 75.1vh;
        padding: 16.6vh 2.6vh 3.2vh;
    }     
    .fixed-menu .main-menu li:not(:last-child) {
        margin-bottom: clamp(1rem, 6.7vh, 7.5rem);
    }
    .fixed-menu .main-menu {
        margin-bottom: clamp(1rem, 6.13vh, 6.9rem);
    }
    .fixed-menu .main-menu a {
        position: relative;
        white-space: nowrap;
        font-size: clamp(1rem, 5.3vh, 6rem);
        font-weight: 700;
        transition: all .7s;
    }
    .fixed-menu .links {
        margin-bottom: 4.47vh;
    }
    .fixed-menu .links li:not(:last-child) {
        margin-bottom: clamp(1rem, 2.6vh, 3rem);    
    }
    .fixed-menu .links a {
        font-size: clamp(1rem, 2.6vh, 3rem);
        font-weight: 700;
    }
    .fixed-menu .outer-curve {
        background-size: contain;
        background-image: url('../../img/globals/bg-main-menu.png');
    }
    .fixed-menu .social-icon a {
        width: 4.47vh;
        height: 4.47vh;
    }
    .fixed-menu .social-icon i::before {
        font-size: 1.7vh;
    }
    /* Hovers */
    .fixed-menu .main-menu a:hover{
        font-family: var(--termina-font);
        font-style: normal;
    }
}
@media only screen
and (min-width : 961px)
and (max-width : 1440px) {
}
@media only screen
and (min-width : 0)
and (max-width : 960px) {
    .fixed-menu__content {
        height: 100%;
        overflow-y: auto;
    }
}

/* @end */


/* @group SIDEBAR
------------------------------------ */
.fixed-sidebar {
    box-shadow: 0px 14px 10px 0px rgba(0, 0, 0, 0.15);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-index-super-modal);
    overflow: hidden;
    padding: 0 3rem;
    transform: translateY(-2rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .7s;
}
.fixed-sidebar.sing-me-up {
    background: #FFD747;
}
.fixed-sidebar.search {
    background: #C66BF1;
}
.fixed-sidebar.thanks {
    background: #D4FC79;
}
.fixed-sidebar.search.loading .results {
    display: none;
}
.fixed-sidebar.search.loading .loader {
    display: block;
    margin: 0 auto;
}
.fixed-sidebar.search .loader {
    display: none;
}
.fixed-sidebar.search.show-results .popular-searches {
    display: none;
}
.fixed-sidebar.search.has-input .popular-searches {
    display: none;
}
.fixed-sidebar.search:not(.has-input) .results {
    display: none;
}
.fixed-sidebar.search .message-no-results {
    display: none;
}
.fixed-sidebar.search.no-results .message-no-results {
    display: block;
}
[data-sidebar-type="sign-me-up"] .fixed-sidebar.sing-me-up,
[data-sidebar-type="search"] .fixed-sidebar.search,
[data-sidebar-type="thanks"] .fixed-sidebar.thanks {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.fixed-sidebar:not(.thanks) .fixed-sidebar__header {
    position: relative;
}
.fixed-sidebar:not(.thanks) .fixed-sidebar__header::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -50vw;
    width: 200vw;
    height: 1px;
    background-color: var(--white);
    display: block;
}
/* HEADER */
.fixed-sidebar__header {
    padding: 3rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fixed-sidebar__header .icon-close,
.fixed-sidebar__header .icon-check {
    color: var(--black);
    font-size: 1.8rem;
    pointer-events: none;
}
.fixed-sidebar__box {
    flex: 1;
}
.fixed-sidebar__box input {
    width: 100%;
    max-width: 70rem;
    height: auto;
    color: var(--black, #000);
    font-family: var(--termina-font);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    padding: 0;
}
.fixed-sidebar__header .bttn[type="submit"] {
    font-family: var(--termina-font);
    font-weight: 500;
}
/* INFO */
.fixed-sidebar__info {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    padding: 3rem 0;
}
/* TEXTS */
.fixed-sidebar__info h4,
.fixed-sidebar__info h5 {
    color: var(--black, #000);
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    line-height: 110%;
}
.fixed-sidebar__info :is(h4, h5) a {
    text-decoration: underline;
    font-weight: 600;
}
.fixed-sidebar__info h4 {
    font-size: 2rem;
}
.fixed-sidebar__info h5 {
    font-size: 1.55rem;
}
/* POPULAR SEARCHES */
.fixed-sidebar__info .popular-searches h4 {
    margin: 0 0 4rem;
}
.fixed-sidebar__info .popular-searches ul {
    display: flex;
    column-gap: 4rem;
}
.fixed-sidebar__info .popular-searches a {
    white-space: nowrap;
}
/* RESULTS */
.fixed-sidebar__info .results {
    max-width: 102rem;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(100vh - 11rem);
}
.fixed-sidebar__info .result {
    position: relative;
    padding: 2.5rem 0;
}
.fixed-sidebar__info .result::before{
    content: "";
    width: 200vw;
    left: -50vw;
    height: 1px;
    background-color: var(--black);
    display: inline-block;
    position: absolute;
    bottom: 0;
}
.fixed-sidebar__info .result__name,
.fixed-sidebar__info .result__time,
.fixed-sidebar__info .result__bttn {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: var(--black);
}
.fixed-sidebar__info .result__name {
    margin: 0 0 2.5rem;
}
.fixed-sidebar__info .result__time {
    margin: 0 0 2.5rem;
}
.fixed-sidebar__info .result__name h4 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fixed-sidebar__info .result__time span {
    display: inline-block;
    color: var(--black, #000);
    font-family: var(--termina-font);
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}
.fixed-sidebar__info .result__time span:not(:last-child) {
    margin-right: 1rem;
}
.fixed-sidebar.search .hide {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: -99vw;
}
/* OUTPUTS */
.fixed-sidebar .wpcf7-response-output {
    display: none;
}
@media only screen
and (min-width : 961px) {
    .fixed-sidebar {
        padding: 0 11.8rem 0 14.3rem;
    }
    .fixed-sidebar__info {
        padding: 4rem 0;
        column-gap: 4rem;
    }
    .fixed-sidebar__header {
        padding: 3.8rem 0;
    }
    /* HEADER */
    .fixed-sidebar__header .wpcf7-form {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-right: 3rem;
    }
    .fixed-sidebar__box input::placeholder {
        opacity: .45;
    }
    /* TEXTS */
    .fixed-sidebar__info h4 {
        font-size: 2.5rem;
    }
    .fixed-sidebar__info h5 {
        font-size: 1.6rem;
    }
    /* RESULTS */
    .fixed-sidebar__info .results {
        height: auto;
    }
    .fixed-sidebar__info .result {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .fixed-sidebar__info .result {
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        column-gap: 2.5rem;
    }
    .fixed-sidebar__info .result::before {
        content: none;
    }
    .fixed-sidebar__info .result:not(:last-child) {
        margin-bottom: 2.4rem;
    }
    .fixed-sidebar__info .result__name {
        margin: 0;
        flex: 0 1 37rem;
        max-width: 37rem;
    }
    .fixed-sidebar__info .result__time {
        margin: 0;
        flex: 0 1 37rem;
        max-width: 37rem;
    }
    .fixed-sidebar__info .result__bttn {
        flex: 1;
        min-width: 22rem;
        text-align: right;
    }
}
@media only screen
and (min-width : 961px)
and (max-width : 1440px) {
}
@media only screen
and (min-width : 0)
and (max-width : 960px) {
    .fixed-sidebar {
        top: auto;
        bottom: 0;
        transform: translateY(2rem);
    }
    .fixed-sidebar.sing-me-up .fixed-sidebar__header {
        align-items: flex-start;
    }
    .fixed-sidebar__header .bttn[type="submit"] {
        width: 26.5rem;
        font-size: 1.5rem;
        padding: 1.2rem 0;
        margin: 2.1rem 0 0;
    }
    .fixed-sidebar__info .popular-searches ul {
        overflow-x: auto;
        padding-bottom: 2rem;
    }
    .fixed-sidebar.search .fixed-sidebar__info {
        padding-bottom: 1rem;
    }
    .fixed-sidebar.search .fixed-sidebar__info .result:only-child:before {
        content: none;
    }
}

/* @end */
