@charset "UTF-8";

/* == tmp === */
/*header.at-site-header .background-substrate {*/
/*    background-color: #000314;*/
/*    width: 100vw;*/
/*    min-height: 100vh;*/
/*}*/

/* =====  */

body.is-light-theme.site-nav-open {
    overflow: hidden;
    padding-inline-end: 8px;
}

header.at-site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

header.at-site-header.sticky-header {
    position: fixed;
    background: rgb(0 0 0 / 90%);
    box-shadow: rgb(229 96 204 / 25%) 0px 12px 24px;
    animation-name: sticky-header;
    animation-fill-mode: both;
    animation-duration: .5s;
    transform: translateY(-110%);
    -webkit-transform: translateY(-110%);
    -moz-transform: translateY(-110%);
    -ms-transform: translateY(-110%);
    -o-transform: translateY(-110%);
}

@keyframes sticky-header {
    0% {
        transform: translateY(-110%);
        -webkit-transform: translateY(-110%);
        -moz-transform: translateY(-110%);
        -ms-transform: translateY(-110%);
        -o-transform: translateY(-110%);
    }

    100% {
        transform: translate(0);
        -webkit-transform: translate(0);
        -moz-transform: translate(0);
        -ms-transform: translate(0);
        -o-transform: translate(0);
    }

}

/*header.at-site-header {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    z-index: 99;*/
/*}*/

div.header-wrap {
	overflow: hidden;
    width: 100vw;
    padding: 3vw 5vw;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border: 1px dotted; */
}

div.header-wrap.site-nav-open {
    position: fixed;
}

/* === tmp ===  */
header.at-site-header .border {
    border: none;
}

/* ===  */

@media (max-width:512px) {
    /* div.header-wrap {
        padding: 1em;
    } */

    div.header-wrap div.talk-to-expert {
        margin-inline-end: 16px;
    }

}

/* HEADER LOGO  */
div.site-logo {
/* 	height: calc(38px + 11 * (100vw - 1024px) / (1920 - 1024)); */
    display: flex;
    flex-basis: 100%;
    z-index: 2;
}

div.site-logo a {
    /* width: calc(83px + 35 * (100vw - 1024px) / (1920 - 1024)); */
    width: fit-content;
    /*height: calc(38px + 16 * (100vw - 1024px) / (1920 - 1024));*/
    display: flex;
    align-items: center;

}

/* .logo-picture {
    height: calc(38px + 16 * (100vw - 1024px) / (1920 - 1024));
    margin-inline-end: .5em;
} */

.logo-picture {
    height: calc(38px + 11 * (100vw - 1024px) / (1920 - 1024));
    margin-right: .5em;
    display: flex;
    align-items: center;
}

/* .logo-picture svg {
    height: 100%;
    width: auto;
} */

.logo-picture svg {
	z-index:100;
	transition-duration: 5s;
    height: 275%;
    width: auto;
}

div.logo-wrap {
/*     height: calc(38px + 16 * (100vw - 1024px) / (1920 - 1024)); */
/*     position: relative;
    width: max-content; */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* div.logo-wrap svg {
    display: block;
} */

/* div.logo-wrap> :nth-child(1) {
    margin-bottom: 2px;
    width: calc(83px + 19 * (100vw - 1024px) / (1920 - 1024));
}

div.logo-wrap> :nth-child(2) {
    width: calc(83px + 19 * (100vw - 1024px) / (1920 - 1024));
} */

/* talk-to-expert button */
div.talk-to-expert {
    /* display: flex; */
    margin-inline-end: 70px;
    display: none;
}

div.talk-to-expert div button {
    width: calc(180px + 70 * (100vw - 1024px)/ (1920 - 1024));
    /* max-width: 20vw; */
    /* height: calc(36px + 24 * (100vw - 1024px) / (1920 - 1024)); */
    /* height: calc(38px + 16 * (100vw - 1024px) / (1920 - 1024)); */
    height: calc(30px + 24* (100vw - 320px) / (1920 - 320));
    background: linear-gradient(100.2deg, #FF00CF -12.96%, #0FB5FE 113.22%);
    font-family: 'Zilla Slab', serif;
    font-style: normal;
    font-weight: 500;
    /* font-size: calc(14px + 12 * (100vw - 1024px)/ (1920 - 1024)); */
    font-size: calc(14px + 12 * (100vw - 320px)/ (1920 - 320));
    line-height: 1.2;
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
    border-radius: 90px;
    -webkit-border-radius: 90px;
    -moz-border-radius: 90px;
    -ms-border-radius: 90px;
    -o-border-radius: 90px;
}

div.talk-to-expert div {
    width: fit-content;
    transition-duration: .5s;
}

div.main-page-wrapper div.talk-to-expert div:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transition-duration: .5s;
}

div.main-page-wrapper div.talk-to-expert div button {
    animation-name: talk-to-expert;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-duration: 1s;
}

div.talk-to-expert div button {
    background-size: 100%;
    transition-duration: .5s;
}

div.talk-to-expert div button:hover {
    animation-play-state: paused;
    background-size: 200%;
    transition-duration: .5s;
}

@keyframes talk-to-expert {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    50% {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
}

/* NAV  */
div.site-logo.site-nav-open {
    position: absolute;
    top: 0;
    left: 0;
    margin: 3vw 5vw;
}

div.talk-to-expert.site-nav-open {
    display: none;
}

/* nav button  */
span.site-nav-title {
    display: none;
    margin-block-end: .8em;
    font-family: 'Zilla Slab', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    font-size: calc(16px + 20 * (100vw - 320px) / (1920 - 320));
    line-height: 1em;
}

.nav-button {
    /* width: 70px; */
    width: calc(54px + 16 * (100vw - 1024px) / (1920 - 1024));
    /* height: 49px; */
    height: calc(38px + 11 * (100vw - 1024px) / (1920 - 1024));
    display: flex;
    position: relative;
    align-items: center;
    cursor: pointer;
    z-index: 100;
}

.nav-button-open {
    position: absolute;
    right: 0;
    top: 0;
    margin: 3vw 5vw;
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transition: transform 1s;
    -webkit-transition: transform 1s;
    -moz-transition: transform 1s;
    -ms-transition: transform 1s;
    -o-transition: transform 1s;
}

.nav-button span,
.nav-button span::before,
.nav-button span::after {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    opacity: .85;
    flex-basis: 100%;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.nav-button span::before {
    content: "";
    position: absolute;
    top: 0;
}

.nav-button span::after {
    content: "";
    position: absolute;
    bottom: 0;
}

.nav-button-open span {
    width: 0;
    height: 0;
    transition-duration: 0s;
}

.nav-button-open span::before {
    top: 50%;
    transform: rotateZ(45deg);
    -webkit-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
    -o-transform: rotateZ(45deg);
}

.nav-button-open span::after {
    bottom: auto;
    top: 50%;
    transform: rotateZ(-45deg);
    -webkit-transform: rotateZ(-45deg);
    -moz-transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
    -o-transform: rotateZ(-45deg);
}


/* nav menu */
body.site-nav-open {
    overflow-y: hidden;
    padding-right: 8px;
}

div.header-wrap nav {
/* 	background: #000000; */
	z-index: 3;
}

div.header-wrap nav.site-nav-open {
	background: #000000;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    opacity: 1;
    transition-duration: 1s;
}

header.at-site-header nav.site-nav-open span,
header.at-site-header nav.site-nav-open ul {
    display: block;
}

nav.site-nav ul {
    width: 100%;
    display: none;
}

nav.site-nav ul li {
    display: block;
    width: 100%;
    text-align: center;
}

span.site-nav-title::after {
    content: "";
    display: block;
    margin-block-start: 2px;
    width: 100%;
    height: 3px;
    background: linear-gradient(89.78deg, #0076AA 2.09%, #009099 83.18%);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

nav.site-nav-open ul li,
nav.site-nav-open span.site-nav-title {
    animation-name: nav-opacity;
    animation-fill-mode: both;
    animation-duration: 1s;
}

@keyframes nav-opacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

nav.site-nav ul> :not(:last-child) :nth-child(n)::after {
    content: "";
    display: block;
    margin: auto;
    margin-block-start: .25em;
    margin-block-end: .25em;
    width: 1em;
    height: 1px;
    background-color: #ffffff80;
}

nav.site-nav ul li a {
    display: block;
    font-family: 'Coldiac Free Regular', serif;
    font-size: 100px;
    font-size: calc(32px + 68 * (100vw - 320px) / (1920 - 320));
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0;
    text-transform: capitalize;
    background: linear-gradient(0deg, rgba(255, 0, 207, 0.7) 13.85%, rgba(0, 177, 255, 0.7) 87%), rgba(187, 51, 220, 0.8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* BACKGROUND */
header.at-site-header .ellipse {
    position: absolute;
    height: auto;
    aspect-ratio: 1/1;
    display: none;
    z-index: -1;
}

nav.site-nav-open div.ellipse {
    display: block;
}

header.at-site-header div.ellipse-1 {
    width: 90vw;
    left: calc(464px + 456 * (100vw - 1024px) / (1920 - 1024));
    top: -407px;
    background: radial-gradient(61.7% 93.16% at 75.24% -7.08%, rgba(36, 0, 255, 0.3) 0%, rgba(255, 0, 207, 0.3) 0.01%, rgba(255, 0, 207, 0) 100%);
}

header.at-site-header div.ellipse-3 {
    width: 1735px;
    left: calc(464px + 456 * (100vw - 1024px) / (1920 - 1024));
    top: 560px;
    background: radial-gradient(30.67% 31.11% at 32.96% 44.52%, rgba(0, 255, 194, 0.2) 0%, rgba(0, 255, 194, 0) 100%);
}

header.at-site-header div.ellipse-4 {
    width: 2322px;
    left: calc(-569px + 456 * (100vw - 1024px) / (1920 - 1024));
    top: -751px;
    background: radial-gradient(48.68% 48.68% at 36.17% 42.21%, rgba(4, 240, 255, 0.25) 0%, rgba(67, 4, 105, 0) 79.09%);
}

header.at-site-header div.ellipse-5 {
    width: 1986px;
    left: calc(-755px + 456 * (100vw - 1024px) / (1920 - 1024));
    top: -558px;
    background: radial-gradient(24.32% 24.32% at 26.75% 75.68%, rgba(18, 17, 92, 0.5) 0%, rgba(18, 17, 85, 0) 100%);
}