/*** UNIVERSAL ***/
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-thumb {
    background: var(--purple);
    border-radius: 10px;
    border:solid 3px var(--dark);
}
::-webkit-scrollbar-track {
    background: var(--dark);
}

@font-face {
  font-family: 'Outfit';
  src: url('fonts/Outfit-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'Outfit';
  src: url('fonts/Outfit-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'Outfit';
  src: url('fonts/Outfit-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Outfit';
  src: url('fonts/Outfit-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Outfit';
  src: url('fonts/Outfit-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Outfit';
  src: url('fonts/Outfit-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Outfit';
  src: url('fonts/Outfit-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Outfit';
  src: url('fonts/Outfit-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Outfit';
  src: url('fonts/Outfit-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

* {
    box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
    margin: 0;     
    background:var(--dark);
    opacity: 0;
    overflow-x: hidden;
    font-family: 'Outfit';
}
img {
    display: block;
}
a:focus, button:focus, input:focus {
    outline:none;
}
:root {
    --black: #000000;
    --white: #ffffff;
    --light: #f9fafb;
    --grey: #5b5b5b;
    --dark: #080d26;
    --darker: #060a1e;
    --blue: #63bbf5;
    --purple: #742ff5;    
    --orange: #f37d12;
    --max-width:1440px;
}
p, li {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.4px;
}

p strong {
    color:var(--white);
}
table {
    border-collapse: collapse;
}
td {
    border: solid 1px rgb(255 255 255 / 35%);
    color: var(--white);
    padding: 10px;
    font-size: 18px;
}


p span {
    color:var(--orange);
    font-weight: 900;
}
h1 {
    font-size: clamp(64px, 5vw, 124px);
    line-height: 1;    
}
h2 {
    font-size: clamp(52px, 3vw, 84px);
    line-height: 1.2;
    margin-top:0;
    margin-bottom: 30px;
}
h3 {
    font-size:46px;
    line-height: 1.2;
}
h4 {
    font-size: 34px;
    line-height: 1.2;
}
h5 {
    font-size:20px;
    line-height: 1.2;
}
h6 {
    position: relative;
    font-weight: bold;
    color:var(--orange);
    font-size: 14px;
    letter-spacing: 1px;
    padding-left: 30px;
    display: inline-block;
    margin:0;
}

/*** HEADER ***/
#headercontainer {
    position: fixed;
    top: 30px;
    width:100%;
    max-width: 100%;
    z-index: 9999;
    transition: 0.2s all ease-in-out;
}
.site-header {
    position: relative;
    height: 80px;
    max-width: calc(var(--max-width) - 80px);
    margin: 0 auto;
    transition: 0.2s all ease-in-out;
    border-radius: 10px;
}
.hide-header {
    margin-top:-20px;
    opacity: 0;
    visibility: hidden;
}
.show-header {
    margin-top:0;
    opacity: 1;
    visibility: visible;
}
.show-header .site-header {
    background:rgb(8 13 38 / 60%);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.05);
}
.site-title {
    position: absolute;
    top: 50%;
    left:20px;
    transform: translateY(-50%);    
}
.site-title img {
    width:160px;
    height: auto;
    object-fit: contain;
}

.login-container {
    position: absolute;
    top:50%;
    right:18px;
    transform: translateY(-50%);
    margin:0 !important;
}
.login-container a.cta {
    margin-top:0;
}
.login-container a.cta:last-of-type {
    background:var(--orange);
    margin-right: 0;
}
.mobile-login-container.login-container {
    position: relative;
    top: unset;
    right: unset;
    transform: none;
    margin-top: 20px !important;
    border-top: solid 1px rgba(0, 0, 0, 0.1);
    padding-top: 40px;
}

/*** BANNER ***/
.banner-container {
    height:100vh;
    min-height: 800px;
    position: relative;
    overflow: hidden;
}
.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    padding:0 60px;
    max-width: var(--max-width);
    width:100%;
    transform: translate(-50%,-50%);
    z-index: 1;
}
.banner-content h1 {
    color:var(--white);
    max-width: 600px;
    margin-bottom: 0;
}
.banner-content p {
    color: var(--white);
    font-size: 1.4vw;
    font-size: clamp(20px, 1.3vw, 32px);
    line-height: 1.4;
    font-weight: 500;
    max-width: 600px;
}
.banner-image {
    position: relative;
}
.banner-image img, .banner-image video {
    height:100vh;
    min-height: 800px;
    width:100%; 
    object-fit: cover;
    object-position: center 50%;
}
.image-overlay {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: linear-gradient(to bottom, rgb(8 13 38 / 60%), rgb(8 13 38 / 100%));
}
a.cta, pre a {
    display: inline-block;
    margin: 20px 10px 0 0;
    padding: 14px 40px 14px 40px;
    font-size: 18px;
    background:var(--purple);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 400;
    letter-spacing: 0.4px;
    transition: 0.3s all ease-in-out;
}
a.cta:hover, pre a:hover {
    filter:brightness(1.15);
}
img.fenix {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20%;
    max-height: 75vh;
}

/*** MAIN MENU ***/
.main-navigation {
    position: absolute;
    left: 50%;
    top:50%;
    transform: translate(-50%,-50%);
}
.main-navigation ul {
    padding-left: 0;
}
.main-navigation ul li {
    list-style-type: none;
    display: inline-block;
    position: relative;
    margin: 0;
}
.main-navigation ul li a {
    position: relative;
    color: var(--white);
    padding: 20px 16px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 400;
    letter-spacing: 0.4px;
    z-index: 2;
    transition: 0.3s all ease-in-out;
}
.main-navigation ul li a:hover {
    color: var(--purple);
}

/*** MOBILE MENU ***/
.mobile-menu {  
    display: none;
    position: absolute;
    right: 40px;
    top: 50%;
    transform:translateY(-50%);
    z-index: 102;
    transition: all 300ms ease-in-out;
}
#nav-icon {
    width: 24px;
    height: 18px;
    position: relative;
    z-index: 100; 
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}
#nav-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 24px;
    background: var(--white);
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}
#nav-icon span:nth-child(1) {
    top: 0px;
}
#nav-icon span:nth-child(2),#nav-icon span:nth-child(3) {
    top: 8px;
}
#nav-icon span:nth-child(4) {
    top: 16px;
}
#nav-icon.open span:nth-child(1) {
    top: 14px;
    width: 0%;
    left: 50%;
}
#nav-icon.open span:nth-child(2) {
    transform: rotate(45deg);
}
#nav-icon.open span:nth-child(3) {
    transform: rotate(-45deg);
}
#nav-icon.open span:nth-child(4) {
    top: 14px;
    width: 0%;
    left: 50%;
}

/*** SIDENAV ***/
.overlay {
    background: var(--white);
    width: calc(100% - 80px);    
    position: fixed;
    z-index: 100;    
    top: 100px;
    left:40px;
    border-radius: 20px;
    box-shadow: 0px 4px 20px 10px rgb(0 0 0 / 10%);
    padding: 40px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s all ease-in-out;
    transform: scale(0.8);
}
.overlay ul {
    padding:0;
    margin:0;
}
.overlay ul li {
    padding:8px 0;
    margin:0;
    cursor:pointer;
    list-style-type: none;
}
.overlay ul li a {
    display: inline-block;
    position: relative;
    text-decoration: none;
    color:var(--black);
    font-size: 24px;
    font-weight: 600;
    transition: 0.2s all ease-in-out;
}
.overlay ul li a:hover {
    color:var(--orange) !important;
}
.overlay ul ul {
    margin-top: 14px;
}
.overlay ul ul li a {
    font-size: 20px;
}
.overlay ul ul li {
    padding: 0px 14px;
}
.open-menu {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

/*** CONTENT ***/
.dark-container {
    position: relative;
    background:var(--dark);
}
.darker-container {
    background:var(--darker);
}
.dark-container h1, .dark-container h2, .dark-container h3, .dark-container h4, .dark-container h5, .dark-container h6 {    
    color:var(--white);
}
.dark-container p, .dark-container li {    
    color:var(--white);
}
.dark-container a {     
    color:var(--white);
}
.dark-container.glow-container {
    z-index: 1;
}
.dark-container.glow-container:before {
    content: '';
    width: 1000px;
    height: 800px;
    background: var(--purple);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(200px);
    opacity: 0.4;
}
.site-content {
    width:100%;
    max-width: var(--max-width);
    margin:0 auto;
    padding:120px 60px;
    position: relative;
}
.no-top {
    padding-top:0 !important;
}
.no-bottom {
    padding-bottom:0 !important;
}
.no-left {
    padding-left: 0;
}
.no-right {
    padding-right: 0;
}
.full-width-container .site-content {
    max-width: 100%;
}
.site-content ul {
    padding-left: 22px;
    list-style-type: none;
}
.site-content ul li {
    position: relative;
}
.site-content ul li::before {
    content:'';
    background:url('images/checkmark-orange.svg') no-repeat;
    background-size: contain;
    width: 14px;
    height: 14px;
    position: absolute;
    left:-22px;
    top:6px;    
}
.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.flex-container img {
    width:100%;
}
.flex-start {
    justify-content: start;
}
.flex-center {
    justify-content: center;
}
.flex-end {
    justify-content: end;
}
.align-center {
    align-items: center;
}
.flex-100 {
    width:100%;
}
.flex-66 {
    width:calc(66.66% - 40px);
    position: relative;
}
.flex-60 {
    width:calc(60% - 40px);
    position: relative;
}
.flex-50 {
    width:calc(50% - 40px);
    position: relative;
}
.flex-40 {
    width:calc(40% - 40px);
    position: relative;
}
.flex-33 {
    width:calc(33.33% - 40px);
    position: relative;
}
.flex-25 {
    width:calc(25% - 20px);
    position: relative;
}
.flex-image img, .flex-image video {
    border-radius: 10px;
    min-height: 450px;
    max-height: 50vh;
    width:100%;
    object-fit: cover;
    position: relative;
}
.center {
    max-width: 991px;
    text-align: center;
    margin:0 auto;
}
.center p {
    font-size: 24px;
}

/*** GRID CONTAINER ***/
.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);    
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}
.single-grid {
    background: rgb(255 255 255 / 3%);
    padding: 40px;
    border-radius: 20px;
}
.single-grid p {
    margin:0;
}
.singel-grid ul {
    margin-bottom: 0;
}
.single-grid p:first-of-type {
    color: var(--orange);
    opacity: 1;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.2px;
}
.single-grid h4 {
    margin-bottom: 10px;
    margin-top:60px;
}

/*** SMALL BANNER ***/
.small-banner {
    position: relative;
}
.small-banner video, .small-banner img {
    display: block;
    height: 600px;
    width: 100%;
    object-fit: cover;
    border-radius: 40px;
}
.small-banner-content {
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    width: calc(100% - 240px);
}
.small-banner-content h3 {
    margin-top: 0;
}

/*** DOTS ***/
.dots img {
    margin: 0 auto;
    width: 120px;
}

/*** FULL BRAND ***/
img.full-brand-logo {
    width: 100%;
    max-width: 300px;
    margin-bottom: 40px;
}

/*** BRAND SLIDER ***/
.brand-slider {
    border-radius: 20px;
    margin-top:60px;
    margin-bottom: 60px;
}
.brand-cell {
    width: 420px;
    height: 550px;
    margin-right: 30px;
    border-radius: 20px;
    background:rgba(255,255,2555,0.03);
}
.brand-background img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    display: none;
}
.brand-content {
    position: absolute;
    bottom: 0;
    padding: 40px;
}
.brand-cell .image-overlay {
    background: linear-gradient(to bottom, rgb(8 13 38 / 20%), rgb(8 13 38 / 100%));
    border-radius: 20px;
}
.brand-content h3 {
    margin-bottom: 0;
}
.brand-content ul li {
    font-size: 16px;
}

/*** BRAND LISTING ***/
.brand-image img {
    height: 600px;
    object-fit: contain;
}
.brand-logo {
    width:100%;
    max-width: 200px;
    margin-bottom: 40px;
}
.apply-container h4 {
    margin-top: 26px;
    margin-bottom: 30px;
}

/*** FLICKITY SETTINGS ***/
.flickity-viewport {
    border-radius: 20px;
}
.flickity-button {
    width: 80px !important;
    height: 48px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    transform: none !important;
    transition: 0.2s all ease-in-out !important;
    border-radius: 6px !important;
}
.flickity-button:hover {
    background:var(--purple) !important;
}
.brand-slider .flickity-button.flickity-prev-next-button.previous {
    right: 100px;
    left: unset;
    z-index: 10;
    top: unset;
    bottom:-70px;
}
.brand-slider .previous svg.flickity-button-icon {
    background: url(images/arrow-left-long-white.svg) no-repeat !important;
}
.flickity-prev-next-button .flickity-button-icon path {
    display: none !important;
}
.brand-slider .flickity-button.flickity-prev-next-button.next {
    left: unset;
    right: 0;    
    z-index: 10;
    top: unset;
    bottom:-70px;
}
.brand-slider .next svg.flickity-button-icon {
    background: url(images/arrow-right-long-white.svg) no-repeat !important;
}
.flickity-prev-next-button .flickity-button-icon path {
    display: none !important;
}
.flickity-button svg.flickity-button-icon {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.flickity-page-dots {
    left: 50%;
    transform: translateX(-50%) !important;
    bottom:-60px !important;
    z-index: 2 !important;
    text-align: center !important;
    width: 100% !important;
    padding: 0 !important;
}
.flickity-page-dots .dot {    
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.4) !important;
    transition: 0.3s ease-in-out !important;
}
.flickity-page-dots .dot.is-selected {
    background:var(--purple) !important;
    width:40px !important;
    border-radius: 6px !important;
}

/*** SIDE GRAHPICS ***/
img.right-graphic {
    width: 300px;
    position: absolute;
    right: -4%;
    transform: rotate(-15deg);
}
img.left-graphic {
    width: 300px;
    position: absolute;
    left: -4%;
    top: -15%;
    transform: rotate(15deg);
}

/*** TERMS AND CONDITIONS ***/
.terms-container {
    border: solid 1px rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.02);
    margin-top: 20px;
}
.terms-container h1 {
    font-size: 56px;
}
.terms-container h2 {
    font-size: 36px;
    margin-top:40px;
}


/*** FOOTERCONTAINER ***/
#footercontainer img {
    max-width: 160px;
}
#footercontainer h4 {
    margin-top:8px;
}
#footercontainer ul {
    padding:0;
    margin:0 0 20px 0;
}
#footercontainer ul li {
    list-style-type: none;
}
#footercontainer ul li::before {
    display: none;
}
#footercontainer ul li a {
    text-decoration: none;
    transition: 0.3s all ease-in-out;
}
#footercontainer ul li a:hover {
    color:var(--orange);
}
.smallprint {
    margin-top: 40px;
    padding-top: 40px;
    border-top: solid 1px rgba(255, 255, 255, 0.1);
}

/*** MEDIA QUERIES ***/
@media(max-width:1650px){
    img.fenix {     
        right: 10%;
    }    
    img.right-graphic {
        width: 220px;
        position: absolute;
        right: -5%;
        transform: rotate(-10deg);
    }
    img.left-graphic {
        width: 220px;
        position: absolute;
        left: -5%;
        transform: rotate(10deg);
    }
}

@media(max-width:1367px){
    #headercontainer {
        top:0;
    }
    .site-header {
        height: 100px;
        border-radius: 0;
    }
    img.fenix {     
        right: 0%;
    }
}

@media(max-width:1200px){
    .main-navigation ul li a {
        font-size: 16px;
    }
    h1 {
        font-size: 76px;
        line-height: 1.1;
    }
    .banner-content p {     
        font-size: 32px;
        line-height: 1.2;
    }
    h2 {
        font-size: 64px;
    }
    h3 {
        font-size: 36px;
    }
    p, li {
        font-size: 16px;
    }
    td {
        font-size: 16px;
    }
    .center p {
        font-size: 20px;
    }
    a.cta, pre a {
        font-size: 16px;        
    }
    .grid-container {     
        grid-template-columns: repeat(2, 1fr);
    }
    .dark-container.glow-container:before {
        width:100%;
    }
    img.left-graphic {
        display: none;
    }
}

@media(max-width:991px){
    #headercontainer {
        top:0;
    }
    .login-container {
        right:100px;
    }
    h1 {
        font-size: 64px;
    }
    .banner-content {
        padding:0 40px;
    }
    .banner-content p {     
        font-size: 28px;
    }
    h2 {
        font-size: 56px;
        margin-bottom: 30px;
    }
    h3 {
        font-size: 32px;
    }
    h4 {
        font-size: 28px;
    }
    .main-navigation {
        display: none;
    }
    .mobile-menu {
        display: block;
    }
    .site-content {     
        padding: 80px 40px;        
    }
    .brand-cell {
        width: 350px;
        height: 500px;
        margin-right: 20px;        
    }
    .brand-background img {     
        height: 500px;
    }
    .brand-content {     
        padding: 40px;
    }
    .small-banner-content {
        width:calc(100% - 120px);
    }
    .small-banner video, .small-banner img {
        height: 500px;
        border-radius: 20px;
    }
    .terms-container {
        padding: 40px;
        margin-top: 40px;
    }
    .terms-container h1 {
        font-size: 46px;
    }
    .terms-container h2 {
        font-size: 32px;
        margin-top:40px;
    }
}

@media(max-width:768px){
    .desktop-login-container {
        display: none;
    }
    .site-content {     
        padding: 60px 40px;        
    }
    .banner-container {     
        min-height: 600px;
    }
    .banner-content {     
        text-align: center;
    }
    .banner-content h1, .banner-content p {
        text-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    }
    img.fenix {
        right: unset;
        left:50%;
        transform: translate(-50%,-50%);
        width:calc(100% - 80px);
        height: auto;
        opacity: 0.5;
    }
    .grid-container {     
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: auto;
    }
    .small-banner-content {
        width: calc(100% - 80px);
    }
    .flex-50 {
        width:100%;
    }
    .flex-50.brand-text {
        order:1;
    }
    .flex-50.brand-image {
        margin-top: 40px;
        order:2;
    }
    .flex-50.brand-image img {
        max-height: 400px;
    }
    .flex-33 {
        width:calc(50% - 20px);
    }
    .flex-33.footer-image {
        width:100%;
        margin-bottom: 40px;
    }    
    .brand-logo {
        max-width: 140px;
    }
}

@media(max-width:520px){
    h1 {
        font-size: 54px;
    }
    .banner-content {
        padding:0 30px;
    }
    .banner-content p {     
        font-size: 20px;
    }
    h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    h3 {
        font-size: 24px;
    }
    h4 {
        font-size: 22px;
    }
    p, li {
        font-size: 14px;
        line-height: 1.4;
    }
    td {
        font-size: 14px;
    }
    .site-content ul li::before {
        top:3px;
    }
    .center p {
        font-size: 16px;
    }
    a.cta, pre a {
        font-size: 14px;  
        padding: 12px 30px 12px 30px;      
    }
    .overlay {
        padding:30px;
    }
    .overlay ul li a {
        line-height: 32px;
    }
    .overlay ul ul li a {
        font-size: 15px;
    }   
    .site-content {     
        padding: 60px 30px;        
    }
    .single-grid {     
        padding: 30px;
    }
    .small-banner-content {
        width: calc(100% - 60px);
    }
    .flex-50.brand-image img {
        max-height: 250px;
    }
    .brand-cell {
        width: 100%;  
        height: 400px;  
    }
    .brand-background img {     
        height: 400px;
    }
    .brand-content {
        padding: 30px;
    }
    .flickity-button {
        width: 70px;
        height: 40px;
    }
    .brand-slider {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .brand-slider .flickity-button.flickity-prev-next-button.previous {
        display: none;
    }
    .brand-slider .flickity-button.flickity-prev-next-button.next {  
        display: none;
    }
    .flickity-page-dots {     
        bottom: -40px;
    }
    .single-grid h4 {     
        margin-top: 40px;
    }
    img.full-brand-logo {      
        max-width: 160px;
        margin-bottom: 30px;
    }

    .terms-container {
        padding: 30px;
    }
    .terms-container h1 {
        font-size: 36px;
    }
    .terms-container h2 {
        font-size: 24px;
        margin-top:30px;
    }
}