/********************************
Developed by AXA Studios
The Creative Engine
http://www.axastudios.com
*********************************/


:root {

    --main-color: #1D1E2C;
/*    --light-main-color: #2C2D3A;*/
    --light-main-color: #2B2D42;
    --bg-main-color: #23222D;
    --bg-light-color: #F0F0F0;

    --sub-color: #00C147;
    --light-sub-color: #50FF90;	
    --sub-color-rgb: 0, 193, 71;

    --text-color: #B3B3B7;
    --light-text-color: #FCFCFC;
    --grey-color: #A4A4A4;

    --dark-gradient: linear-gradient(90deg, #1D1E2C 0%, #23222D 100%);
    --light-gradient: linear-gradient(90deg, #50FF90 0%, #00C147 100%);    
    --line-gradient: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.24) 50%, rgba(255, 255, 255, 0) 100%);

    --black-color: #000000;
    --white-color: #FFFFFF;
    --white-color-rgb: 255, 255, 255;

    --main-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
    --circle-shadow: 0px 2px 8px rgba(0, 0, 0, 0.32);

    --main-radius: 7px;
    --lg-radius: 15px;

    --xxs-pad: 4px;
    --xs-pad: 8px;
    --sm-pad: 12px;
    --mid-pad: 16px;
    --main-pad: 24px;
    --med-pad: 32px;
    --lg-pad: 48px;
    --xl-pad: 72px;
    --xxl-pad: 96px;
    --lg-neg: -48px;
    --main-neg: -24px;
    --sm-neg: -12px;
    --main-font: 16px;
    --sm-font: 14px;
    --input-font: 16px;
    --button-font: 14px;
    --sm-icon: 18px;
    --main-icon: 32px;
    --large-icon: 96px;
}

/* MAIN STYLES *****************************/

html {
    overflow-y: scroll;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

body {
    padding: 0px;
    margin: 0px;
    background: var(--main-color);
    font-family: 'scandia-web', Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}

/* TEXT & LINK STYLES *****************************/

h1, h2, h3, h4, h5, h6 {
    font-family: 'scandia-web', Arial, Helvetica, sans-serif;
    margin-top: 0px;
    color: inherit;
}

h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--main-pad);
}

h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--mid-pad);
}

h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--xs-pad);
    line-height: 1.4;
}

h4 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: var(--xs-pad);
    line-height: 1;
}

h1 span, 
h2 span, 
h3 span {
    color: var(--sub-color);
}

.sub-title {
    display: block;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;  
    margin-bottom: 0;
    color: var(--white-color);
}

.italic {
    font-style: italic;
}

p {
    margin-bottom: var(--main-pad);
}

.lead{
    font-weight: 400;
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: var(--main-pad);
}
p.bold{
    font-weight: 700;
}

:focus {
    -moz-outline-style: none;
}

::selection {
    background-color: #333333;
    color: #fff;
}

::-moz-selection {
    background-color: #333333;
    color: #fff;
}

img {
    max-width: 100%;
}

input:focus, button:focus {
    outline: none;
}

a, a:visited {
    text-decoration: none;
    border: none;
    outline: 0;
    -moz-outline-style: none;
    /*	transition: color 0.2s ease;*/
}
/*

a:hover, a:focus, a:active {
text-decoration: none;
color: var(--grey-color);
transition: color 0.4s ease-out;
}
*/

a img {
    border: none;
    outline: 0;
    -moz-outline-style: none;
}

.page p a {
    font-weight: 700;
    text-decoration: underline;
}

a.button, .button, .button:visited{
    position: relative;
    display: flex;
    justify-content: center;
    position: relative;
    cursor: pointer;
    color: var(--main-color);
    font-size: var(--button-font);
    line-height: 24px;
    min-width: 176px;
    height: 40px;
    border: none;
    padding: 8px 40px 8px 36px;
    border-radius: 20px;
    outline: none;
    background: transparent;
    text-align: center;
    text-decoration: none;
    opacity: 1;
    transition: all 0.2s ease;
}
.button:after {
    content: '';
    position: absolute;
    display: block;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: var(--light-gradient);
    z-index: -1;
    transition: all 0.2s ease;
}
a.button span, .button span{
    line-height: 24px;
    font-weight: 700;
}
.button:hover, .button:active, .button:focus {
    /*
    color: var(--white-color);
    background: var(--grey-color);
    */
    /*	box-shadow: none;*/
    opacity: 0.72;
    transition: all 0.4s ease;
}
.button i, .txt-btn i, .txt-link i {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 24px;
    line-height: 24px;
    width: 24px;
    font-size: 16px;
    text-align: center;
    font-weight: 300;
    margin-right: 4px;
}

.l-btn, .l-btn:visited,
a.l-btn, a.l-btn:visited{
    background: rgba(255, 255, 255, 0.16);
    color: var(--white-color);
}
.l-btn:hover, .l-btn:active, .l-btn:focus {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white-color);
    transition: all 0.4s ease;
}
.l-btn:after{
    display: none;
}

.d-btn, .d-btn:visited,
a.d-btn, a.d-btn:visited{
    background: var(--main-color);
    color: var(--white-color);
}
.d-btn:hover, .d-btn:active, .d-btn:focus {
    background: var(--main-color);
    color: var(--white-color);
    transition: all 0.4s ease;
}
.d-btn:after{
    display: none;
}

/*
.w-btn, .w-btn:visited{
display: inline-block;
text-decoration: none;
padding: 11px 24px 11px 24px;
color: var(--text-color);
background: transparent;
box-shadow: none;
border: 1px solid var(--text-color);
transition: all 0.2s ease;
}
.w-btn:hover, .w-btn:active, .w-btn:focus{
color: var(--black-color);
background:var(--white-color); 
border: 1px solid var(--white-color);
transition: all 0.4s ease;
}
*/

/*
.clear-btn{
display: inline-flex;
height: 48px;
padding: 12px 0px;
line-height: 24px;
opacity: 1;
transition: all 0.2s ease;
}
.clear-btn:hover,
.clear-btn:active,
.clear-btn:focus{
opacity: 0.64;
transition: all 0.4s ease;
}
.clear-btn span{
padding: 0px;
padding-right: 12px;
font-weight: 300;
}
.clear-btn i{
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
align-items: center;
width: 24px;
height: 24px;
font-size: 18px;
}

.txt-btn{
display: inline-flex;
text-decoration: none;
padding: 0px;
font-weight: 600;
color: var(--main-color);
transition: all 0.2s ease;
}
.txt-btn:hover,
.txt-btn:active,
.txt-btn:focus{
color: var(--grey-color);
transition: all 0.4s ease;
}
*/

/* WRAPPER STYLES *****************************/

#outer-wrapper {
    position: relative;
    /*	overflow: hidden;*/
}

#bg-wrapper {
    position: fixed;
    content: '';
    display: none;
    opacity: 0;
    width: 100%;
    height: 150%;
    z-index: 10;
    background:rgba(29, 30, 44, 0.88);
}

.menu-open #bg-wrapper {
    display: block;
    opacity: 1;
    animation: opac-in-animate 0.4s ease-out forwards;
}

.menu-ani #bg-wrapper {
    display: block;
    opacity: 1;
    animation: opac-out-animate 0.3s ease-in forwards;
}

#main-wrapper {
    position: relative;
}

#content-wrapper {
    position: relative;
    display: block;
    /*	padding: 96px 0px;*/
    overflow: hidden;
    padding: 0;
    margin: 0px;
    z-index: 2;
}

.home-wrap #content-wrapper {
    padding: 0;
}

.bg-banner-wrap{
    position: relative;
    background: var(--bg-main-color);
}
.white-banner-wrap{
    position: relative;
    background: var(--white-color);
}

/* HEADER *****************************/

#navbar {
    position: absolute;
    display: block;
    width: 100%;
    padding: 0px 0px;
    top: 0px;
    background: transparent;
    transition: background 0.2s ease;
    z-index: 99;
}
#navbar:after{
    content: '';
    position: absolute;
    display: block;
    bottom:0;
    left:0px;
    width: 100%;
    height: 1px;
    background: var(--line-gradient);  
}

#navbar.sticky {
    position: fixed;
    background: var(--bg-main-color);
    transition: background 0.4s ease-out;
}

.navbar-header {
    position: relative;
    display: flex;
}
.navbar-header-logo{
    position: relative;
    display: flex;
    width: 15%;
}
.logo-main {
    display: inline-flex;
    margin: 24px 0px;
    padding: 0px;
    opacity: 1;
    transition: all 0.2s ease;
}
.logo-main:hover {
    opacity: 0.64;
    transition: all 0.4s ease-out;
}
.logo-main img {
    height: 24px;
    width: auto;
    vertical-align: top;
}

.logo-main span {
    position: relative;
    display: block;
    vertical-align: top;
}

/*
#navbar .logo-main-dark {
display: none;
}

#navbar.sticky .logo-main-dark{
display: block;
}
#navbar.sticky .logo-main-light{
display: none;
}
*/

.logo-mob, .nav-back-btn, .nav-share-btn {
    display: none;
}

.nav-toggle {
    position: relative;
    float: right;
    cursor: pointer;
    display: none;
    width: 24px;
    height: 24px;
    padding: 0px;
    margin: 16px 0px 16px 16px;
    background: none;
    border: none;
    overflow: hidden;
}

.nav-icon span, .menu-ani .nav-icon span {
    display: block;
    position: absolute;
    top: 11px;
    left: 4px;
    right: 4px;
    height: 1px;
    background: var(--white-color);
    transition: background 0s 0.2s;
}
.nav-icon span::before, .nav-icon span::after, .menu-ani .nav-icon span::before, .menu-ani .nav-icon span::after {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--white-color);
    content: "";
    transition-duration: 0.2s, 0.2s;
    transition-delay: 0.2s, 0s;
}

.nav-icon span::before, .menu-ani .nav-icon span::before {
    top: -5px;
    transition-property: top, transform;
}

.nav-icon span::after, .menu-ani .nav-icon span::after {
    /*    width: 70%;*/
    bottom: -5px;
    transition-property: bottom, transform;
}

.menu-open .nav-icon span {
    background: none;
}

.menu-open .nav-icon span::before {
    top: 0;
    width: 100%;
    transform: rotate(45deg);
}

.menu-open .nav-icon span::after {
    bottom: 0;
    width: 100%;
    transform: rotate(-45deg);
}

.menu-open .nav-icon span::before, .menu-open .nav-icon span::after {
    transition-delay: 0s, 0.2s;
}

/* NAV MAIN *****************************/

.nav-wrap {
    display: flex;
    justify-content: center;
    width: 70%;
}

#nav-main {
    position: relative;
    display: flex;
}

#nav-main ul {
    position: relative;
    margin: 8px 0px;
    padding: 0px;
    list-style: none;
    text-align: left;
}

#nav-main ul li{
    position: relative;
    display: inline-block;
    float: left;
    padding: 0px 24px;
    padding: 12px 0px;
    margin: 0px 24px;
    text-align: center;
}

#nav-main ul li a{
    display: block;
    line-height: 20px;
    padding: 10px 0px;
    color: var(--white-color);
    font-weight: 400;
    font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
}

#nav-main ul li a:hover, 
#navbar.sticky #nav-main ul li a:hover {
    color: var(--light-sub-color);
    transition: all 0.4s ease;
}

#nav-main .show-mob {
    display: none!important;
}

#navbar.sticky, .menu-open #navbar {
    position: fixed;
}

.nav-copyright{
    display: none;
}
.nav-socials{
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 15%;   
    padding: var(--mid-pad) 0px; 
}
.social-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: var(--lg-pad);
    height: var(--lg-pad);
    line-height: var(--lg-pad);
    font-size: 20px;
    text-align: center;
    background:var(--main-color); 
    color: var(--white-color);
    box-shadow: var(--circle-shadow);
    border-radius: 50%;
    transition: all 0.2s ease;
}
.social-btn:before,
.social-btn:after{
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(344deg, rgba(var(--white-color-rgb), 0) 10%, rgba(0, 193, 71, 0.32) 88%);
}
.social-btn:after{
    box-sizing: border-box;
    border: 1px solid transparent;
    background: linear-gradient(155deg, rgba(var(--white-color-rgb), 0.16) 0%, rgba(var(--white-color-rgb), 0) 50%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.nav-socials .social-btn {
    margin-left: var(--mid-pad);
}

/* MAIN BANNER STYLES *****************************/

#banner-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    background: none;
    background: url(../images/cryptovers3-mainbanner-bg.jpg) center bottom no-repeat;
    background-size: cover;
}

#banner-main {
    position: relative;
    display: flex;
    min-height: 100dvh;
    padding-top: 80px;
    z-index: 2;
}
#banner-main:after{
  content: '';
  position: absolute;
  display: block;
  bottom: 0;
  left: 0px;
  width: 100%;
  height: 1px;
  background: var(--line-gradient);
}

#banner-wrapper .container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    z-index: 2;
}

.banner-text {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0px;
    width: 60%;
    color: var(--text-color);
/*
    z-index: 3;
    opacity: 0;
    animation: btm-fade-animate 1.0s ease-out forwards;
    animation-delay: 0.4s;
*/
}
.banner-text-block {
    position: relative;
    display: flex;
    flex-direction: column;
}
.banner-main-title h1 {
    position: relative;
    display: block;
    margin: 0;
    margin-bottom: var(--mid-pad);
    color: var(--light-text-color);
}
.banner-main-title h1 span{
    display: block;
    font-size: 56px;
}
.banner-main-title div {
    color: var(--text-color);
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
}
.banner-main-text{
    position: relative;
    display: flex;
    flex-direction: column; 
    margin-bottom: var(--lg-pad);
}
.banner-main-text p {
    position: relative;
    line-height: 1.6;
    font-size: 24px;
    font-weight: 300;
    color: var(--white-color);
    margin-bottom: 0;
}
.banner-header-buttons {
    position: relative;
    display: flex;
}
.banner-header-buttons .button {
    margin-right: 8px;
}
.banner-main-img{
    position: absolute;
    display: flex;
    width: 46%;
    overflow: hidden;
    right: 0;
    bottom: 0;
    z-index: 0;   
}

.banner-text .banner-main-title h1,
.banner-text .banner-main-title div,
.banner-main-text,
.banner-header-buttons{
    opacity: 0;
}

.banner-text .banner-main-title h1{
    animation: btm-fade-animate 1.0s ease-out forwards;
    animation-delay: 0.2s;
}

.banner-text .banner-main-title div{
    animation: opac-in-animate 0.8s ease-in forwards;
    animation-delay: 0.3s;
}

.banner-main-text{
    animation: btm-fade-animate 0.8s ease-in forwards;
    animation-delay: 0.6s;
}
.banner-header-buttons{
    animation: btm-fade-animate 0.8s ease-out forwards;
    animation-delay: 0.8s;
}


#banner-animation{
    position: absolute;
    display: flex;
    height: 100%;
    width: 100%;
    overflow: hidden;
    z-index: 0;    
}
.spot-animate-left {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    width: 15%;
    height: 100%;
    animation-name: circle-animation;
    animation-duration: 50s;
    animation-iteration-count: infinite;
}
.spot-animate-center {
    position: absolute;
    top: 40%;
    left: 15%;
    bottom: 0;
    width: 70%;
    height: 60%;
    animation-name: circle-sm-animation;
    animation-duration: 55s;
    animation-iteration-count: infinite;
}
.spot-animate-right {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    width: 15%;
    height: 100%;
    animation-name: circle-animation;
    animation-duration: 60s;
    animation-iteration-count: infinite;
}
.spot-animate-top {
    position: absolute;
    top: 0%;
    left: 20%;
    bottom: 0;
    width: 60%;
    height: 50%;
    animation-name: circle-top-animation;
    animation-duration: 58s;
    animation-iteration-count: infinite;
}
.circle-spot{ 
    position: fixed;
    position: absolute;
    height: 75%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    opacity: 1;
    filter: blur(120px);
}
.circle-spot-sm{ 
    position: fixed;
    position: absolute;
    height: 75%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    opacity: 1;
    filter: blur(120px);
}
.blue-circle{
    top:0;
    right:-10%;
    background: rgba(67, 127, 236, 0.48);
    animation-name: blue-animation; 
    animation-duration: 22s;
    animation-iteration-count: infinite;
}
.green-circle{
    top:0;
    left:-10%;
    background: rgba(0, 193, 71, 0.32);
    animation-name: green-animation;
    animation-duration: 18s;
    animation-iteration-count: infinite;
}
.blue-circle-sm{
    top:50%;
    right:-10%;
    background: rgba(67, 127, 236, 0.32);
    animation-name: blue-animation; 
    animation-duration: 25s;
    animation-iteration-count: infinite;
}
.green-circle-sm{
    top:40%;
    left:-10%;
    background: rgba(0, 193, 71, 0.4);
    animation-name: green-animation;
    animation-duration: 35s;
    animation-iteration-count: infinite;
}


/* NO ANIMATION FOR MOBILE */

@media (min-width: 768px) {

    @keyframes blue-animation {
        0%, 100% {
            top: 0; 
            right: 0;
        }
        50%{
            top: 60%; 
            right: 40%;
        }  
    }
    @keyframes green-animation {
        0%, 100%{ 
            top: 0; 
            left: 0%
        }  
        50%{
            top: 32%; 
            left: 40%;
        }
    }
    @keyframes green-animation {
        0%, 100%{ 
            top: 0; 
            left: 0%
        }  
        50%{
            top: 32%; 
            left: 40%;
        }
    }

    @keyframes circle-animation {
        0% {transform: rotate(0deg); width: (10%)}
        50%  {width: 20%}
        100% {transform: rotate(360deg); width: (10%)}
    }

    @keyframes circle-sm-animation {
        0% {transform: rotate(0deg); width: (70%)}
        50%  {width: 80%}
        100% {transform: rotate(360deg); width: (70%)}
    }
    @keyframes circle-top-animation {
        0% {transform: rotate(0deg); width: (60%)}
        50%  {width: 70%}
        100% {transform: rotate(-360deg); width: (60%)}
    }
}

/* CONTENT BANNER STYLES *****************************/

.content-banner-wrap {
	position: relative;
	display: block;
	padding: 160px 0px;
}
.banner-wrap-no-top-pad {
    padding-top: 0;
}
.content-offset{
    overflow: hidden;
}
.no-pad-bottom{
    padding-bottom: 0px;
}

.content-banner-wrap-top {
	position: relative;
	display: block;
	padding: 0px 0px 144px 0px;
}
.banner-wrap-small{
    padding: 80px 0px;
}
.banner-wrap-lg {
	padding: 240px 0px;
}
.content-banner.content-banner-margin{
    margin-bottom: var(--xl-pad);
}
.content-banner.content-banner-margin .banner-blk-txt{
    padding: 0 var(--xl-pad) ;
}
.content-banner {
	position: relative;
	display: flex;
	flex-direction: row;
	margin: 0 var(--main-neg);
}

.content-banner-title {
	position: relative;
	display: block;
    color: var(--light-text-color);
	margin-bottom: var(--sm-pad);
}
.content-banner-title.extra-margin{
	margin-bottom: var(--main-pad);    
}
.content-banner-title.solo-title{
    margin-bottom: 0;
}
.content-banner-title h2,
.content-banner-title h3{
    margin: 0;
    
}
.banner-blk-txt,
.banner-blk-img {
	position: relative;
	display: flex;
	width: 50%;
	padding: 0px var(--main-pad);
	align-content: flex-start;
/*	align-self: center;*/
	flex-direction: column;
}

.banner-blk-center-full{
	position: relative;
	display: flex;
    justify-content: center;
	width: 100%;
	padding: 0px var(--main-pad);
}
.banner-blk-center-full .button{
    position: relative;
	align-self: center;
    z-index: 1;
}

.banner-txt-left .banner-blk-txt {
	padding-right: 144px;
}
.banner-txt-right .banner-blk-txt {
	padding-left: 144px;
}

.banner-blk-txt .button,
.banner-blk-txt .txt-btn{
    position: relative;
	align-self: flex-start;
    z-index: 1;
}
.banner-blk-txt .button{
    margin-top: var(--main-pad); 
    margin-top: auto; 
}
.banner-blk-txt.banner-btn-end{
    justify-content: flex-end;
}
.banner-blk-txt.banner-btn-end .button{
    align-self: flex-end;
    margin-left: auto;
}

.content-banner-text {
	position: relative;
	color: var(--text-color);
	margin-bottom: var(--lg-pad);
}
.banner-blk-txt .content-banner-text:last-of-type:not(:only-of-type) {
	margin: 0;
}
.content-banner-text.no-margin {
	margin-bottom: 0px;
}

.content-banner-text p:last-child {
	margin-bottom: 0px;
}
.content-banner-text .button {
    display: inline-flex;
    align-self: flex-start;
}
.content-banner-buttons {
	display: flex;
}
.content-banner-buttons .button {
	margin-right: var(--mid-pad);
}
.content-banner-title + .content-banner-buttons {
	margin-top: var(--lg-pad);
}

.banner-title-full{
    position: relative;
	flex-direction: column;
	color: var(--text-color);
    margin-bottom: var(--lg-pad);
}
.banner-title-full h2{
    margin: 0;
}

.banner-blk-img {
	width: 50%;
}
.banner-img-full {
    display: flex;
    height: 100%;
	width: 100%;
}

.content-banner-center {
	justify-content: center;
}
.content-banner-center .banner-blk-txt {
	text-align: center;
	width: 50%;
	margin-bottom: var(--lg-pad);
}
.content-banner-center > .content-banner-title {
	text-align: center;
	margin-bottom: var(--mid-pad);
}
.content-banner-center .banner-blk-txt .btn,
.content-banner-center .banner-blk-txt .button{
	align-self: center;
	margin-top: var(--main-pad);
}

.content-banner-center .blk-txt-left{
    text-align: left;
}
.content-banner-center .blk-txt-left .txt-btn{
	align-self: flex-start;
	margin-top: var(--main-pad);
}

.banner-blk-video{
    position: relative;
	display: flex;
	flex-direction: column;
	width: 50%;
    z-index: 0;
}
.video-placeholder{
    position: relative;
	display: flex; 
    z-index: 1;
    opacity: 0;
}
.video-placeholder img{
    width: 100%;
    height: auto;
}
.main-banner-video {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 3;
/*    mix-blend-mode: lighten;*/
    
/*
    background: url(../images/boks-mainbanner-poster.jpg) center center no-repeat var(--main-color);
    background-size: cover;
	opacity: 0;
	animation: opac-in-animate 0.4s ease-in forwards;
*/
}
.banner-video {
    position: absolute;
/*
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
*/
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    overflow: hidden;
    opacity: 1;
    transition: all 0.2s ease;
    z-index: 3;
}


/* ICON BLOCKS STYLES *****************************/

.icon-blocks{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -4px;
    margin-bottom:var(--lg-pad);  
}

.icon-block-wrap{
    display: flex;
    flex-direction: column;
    padding: 0 4px;
    width: 33.3333%;
    margin-bottom:var(--xs-pad); 
}
.icon-block{
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: var(--main-pad);
    background: linear-gradient(96deg, rgba(var(--white-color-rgb), 0.04) 0%, rgba(var(--white-color-rgb), 0.02) 100%);
    box-shadow: 0px 0px 24px 0px rgba(var(--white-color-rgb), 0.04) inset; 
    flex-grow: 1;
}

.icon-block.glass-border:before {
    content: "";
    position: absolute;
    box-sizing: border-box;
    display: block;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    border: 1px solid transparent;
    background: linear-gradient(155deg, rgba(var(--white-color-rgb), 0.16) 0%, rgba(var(--white-color-rgb), 0) 40%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.icon-blocks-grid .icon-block-wrap:nth-child(1) .icon-block,
.icon-blocks-grid .icon-block-wrap:nth-child(1) .icon-block:before{
    border-radius: var(--lg-radius) 0 0 0;    
}
.icon-blocks-grid .icon-block-wrap:nth-child(3) .icon-block{
    border-radius: 0 var(--lg-radius) 0 0 ;    
}
.icon-blocks-grid .icon-block-wrap:nth-child(4) .icon-block{
    border-radius: 0 0 0 var(--lg-radius);    
}
.icon-blocks-grid .icon-block-wrap:nth-child(6) .icon-block,
.icon-blocks-grid .icon-block-wrap:nth-child(6) .icon-block:before{
    border-radius: 0 0 var(--lg-radius) 0;    
}
.icon-blocks-grid .icon-block-wrap:nth-child(6) .icon-block.glass-border:before{
    background: linear-gradient(335deg, rgba(var(--white-color-rgb), 0.16) 0%, rgba(var(--white-color-rgb), 0) 40%) border-box;
}

.icon-block-icon{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: var(--lg-pad);
    height: var(--lg-pad);
    line-height: var(--lg-pad);
    font-size: 20px;
    text-align: center;
    background:var(--main-color); 
    color: var(--white-color);
    background: var(--light-main-color);
    box-shadow: var(--circle-shadow);
    border-radius: 50%;
    margin-bottom: var(--main-pad);
}
.icon-block-icon:before, 
.icon-block-icon:after {
    content: '';
    position: absolute;
    display: block;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.icon-block-icon:after {
    box-sizing: border-box;
    border: 1px solid transparent;
    background: linear-gradient(155deg, rgba(var(--white-color-rgb), 0.16) 0%, rgba(var(--white-color-rgb), 0) 50%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}
.icon-block-icon:before{
    background: linear-gradient(344deg, rgba(var(--white-color-rgb), 0) 10%, rgba(var(--white-color-rgb), 0.16) 88%);
}
.icon-color-1.icon-block-icon:before{
    background: linear-gradient(344deg, rgba(var(--white-color-rgb), 0) 10%, rgba(0, 193, 71, 0.16) 88%);
}
.icon-color-2.icon-block-icon:before{
    background: linear-gradient(344deg, rgba(var(--white-color-rgb), 0) 10%, rgba(67, 127, 236, 0.16) 88%);
}
.icon-color-3.icon-block-icon:before{
    background: linear-gradient(344deg, rgba(var(--white-color-rgb), 0) 10%, rgba(255, 98, 0, 0.16) 88%);
}
.icon-color-4.icon-block-icon:before{
    background: linear-gradient(344deg, rgba(var(--white-color-rgb), 0) 10%, rgba(255, 16, 20, 0.16) 88%);
}
.icon-color-5.icon-block-icon:before{
    background: linear-gradient(344deg, rgba(var(--white-color-rgb), 0) 10%, rgba(255, 166, 0, 0.16) 88%);
}
.icon-color-6.icon-block-icon:before{
    background: linear-gradient(344deg, rgba(var(--white-color-rgb), 0) 10%, rgba(255, 39, 233, 0.16) 88%);
}
.icon-block-icon span{
    position: relative;
    display: flex;
    padding: var(--xs-pad);
    border-radius: 50%;
}
.icon-block-icon span img{
    width: 100%;
    height: auto;
}
.icon-block-content{
    display: flex;
    flex-direction: column;    
}
.icon-block-content h3{
	color: var(--light-text-color);    
}

.icon-blocks-inline .icon-block{
    flex-direction: row;
    height: 100%;
}
.icon-blocks-inline .icon-block-content{
    width: calc(100% -  var(--lg-pad));
    padding-left: var(--mid-pad);
}
.icon-blocks-inline .icon-block-wrap:nth-child(1) .icon-block,
.icon-blocks-inline .icon-block-wrap:nth-child(1) .icon-block:before{
    border-radius: var(--lg-radius) 0 0 var(--lg-radius);    
}
.icon-blocks-inline .icon-block-wrap:nth-child(3) .icon-block,
.icon-blocks-inline .icon-block-wrap:nth-child(3) .icon-block:before{
    border-radius: 0 var(--lg-radius) var(--lg-radius) 0;    
}
.icon-blocks-inline .icon-block-wrap:nth-child(3) .icon-block.glass-border:before{
    background: linear-gradient(335deg, rgba(var(--white-color-rgb), 0.16) 0%, rgba(var(--white-color-rgb), 0) 40%) border-box;
}

.icon-blocks-detailed{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin: var(--lg-pad) -12px;    
}

.detail-block-wrap{
    display: flex;
    flex-direction: column;
    padding: 0 12px;
    width: 33.3333%;
}
.detail-block-wrap .icon-block{
    padding: 0;
}
.detail-block-wrap .icon-block,
.detail-block-wrap .icon-block.glass-border:before{
    border-radius: var(--lg-radius);
}
.detail-block-header{
    position: relative;
    display: flex;   
    padding: var(--med-pad);
}
.detail-block-header .icon-block-icon{
    margin: 0;
}
.detail-block-header .icon-block-title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80%;
    padding: 0 var(--mid-pad);
}
.detail-block-header .icon-block-title h3{
    margin: 0;
    line-height: var(--main-pad);
    color: var(--light-text-color); 
}
.detail-block-header .icon-block-title span,
.detail-block-content span{
    font-size: 12px;
    line-height: var(--mid-pad);
    margin-bottom: var(--xxs-pad);
}
.detail-block-content{
    position: relative;
    display: flex;
    flex-direction: column;
    padding: var(--med-pad);    
}
.detail-block-content:after,
.detail-block-bottom:after{
    content: '';
    position: absolute;
    display: block;
    bottom:0;
    left:32px;
    width: calc(100% - 64px);
    height: 1px;
    background: var(--line-gradient);  
}

.detail-block-text{
    font-size: 24px;
    line-height: var(--med-pad);
    margin-bottom: var(--mid-pad);
    font-weight: 700;
    color: var(--light-text-color); 
}
.detail-block-percentage{
    position: relative;
    display: flex;    
}
.detail-block-percentage span{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: var(--main-pad);
    height: var(--main-pad);
    line-height: var(--main-pad);
    font-size: 12px;
    color: var(--sub-color); 
    border-radius: 50%;
    background: rgba(var(--sub-color-rgb), 0.16);
}
.detail-block-percentage div{
    position: relative;
    display: flex; 
    line-height: var(--main-pad);
    padding-left: var(--xs-pad);
    color: var(--sub-color); 
}

.icon-blocks-image{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin: 0 var(--sm-neg);
    margin-top:var(--lg-pad);      
}
.icon-image-block-wrap{
    display: flex;
    flex-direction: column;
    padding: 0 var(--sm-pad);
    width: 50%;
}
.icon-image-block-wrap .icon-block{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding:var(--med-pad); 
    padding-right: 45%;
}
.icon-blocks-image .icon-image-block-wrap .icon-block,
.icon-blocks-image .icon-image-block-wrap .icon-block:before{
    border-radius: var(--lg-radius);    
}
.icon-image-block-wrap .icon-image-block-content{
    margin-top:var(--med-pad);  
}
.imgb-1 .icon-block:after{
    content: '';
    position: absolute;
    width: 50%;
    height: 140%;
    bottom: -40%;
    right: -10%;
    transform: rotate(-15deg);
    background: url(../images/cryptovers3-pie-chart.png) center bottom no-repeat;
    background-size: contain;
}
.imgb-2 .icon-block:after{
    content: '';
    position: absolute;
    width: 65%;
    height: 150%;
    bottom: -10%;
    right: -26%;
    transform: rotate(-15deg);
    background: url(../images/cryptovers3-candles.png) center bottom no-repeat;
    background-size: contain;
}
.icon-image-block-wrap .icon-block-title{
    color: var(--light-text-color); 
}

.image-blocks{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.image-block-wrap{
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 var(--main-pad); 
    width: 25%;
    min-width: 240px;
}
.image-block-content{
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: var(--main-color); 
}
.image-block-img{
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: var(--main-radius);  
    overflow: hidden;
    margin-bottom: var(--mid-pad);
}
.image-block-img img{
    width: 100%;
    height: auto;
}


/* OTHER CONTENT STYLES *****************************/

.inline-text-blocks{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    grid-row-gap: var(--lg-pad);
}
.inline-text-block{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 33.3333%;
    padding: 0 var(--main-pad) 0 var(--med-pad);
}
.inline-text-block-title{
    position: relative;
    display: flex;
    flex-direction: column;
    color: var(--light-text-color); 
}
.inline-text-block-title h3{
    margin-bottom: var(--sm-pad);
}
.inline-text-block-title:before {
    content: "\f111";
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    top: 0;
    left: -32px;
    width: var(--main-pad);
    height: var(--main-pad);
    line-height: var(--main-pad);
    font-weight: 700;
    font-size: 8px;
    font-family: "Font Awesome 6 Pro";
}

/* QUOTES SLIDER STYLES *****************************/


#content-banner-6{
    
}

#quotes-slider{
    position: relative;
    margin: 0 var(--main-neg);
    padding: 0 var(--sm-pad);
    margin-top: var(--main-pad);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 24px, rgba(0, 0, 0, 1) calc(100% - 24px), rgba(0, 0, 0, 0) 100%);
	mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 24px, rgba(0, 0, 0, 1) calc(100% - 24px), rgba(0, 0, 0, 0) 100%);  
}
#quotes-slider .swiper-slide{
    padding: 0 var(--sm-pad);
    height: auto;
}

.quote-block{
	position: relative;
	display: flex;
    flex-direction: row;
    padding: var(--main-pad);
    background:var(--bg-light-color);
    border-radius: var(--lg-radius); 
    height: 100%;
    transition: all 0.4s ease;
}
.quote-initials{
    position: relative;
	display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    overflow: hidden;
    font-size: 14px;
    font-weight: 700;
    color: var(--white-color);
    background:var(--main-color); 
}
.quote-initials:before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(344deg, rgba(var(--white-color-rgb), 0) 10%, rgba(0, 193, 71, 0.32) 88%);
}
.quote-main-wrap{
	position: relative;
	display: flex; 
	flex-direction: column;
    width: calc(100% - 40px);
    padding-left:var(--mid-pad); 
}
.quote-name{
    position: relative;
	display: flex;
	flex-direction: column; 
    color:var(--main-color); 
    line-height: 40px;
}
.quote-name div{
    font-size: 14px;
    font-weight: 700; 
    color: var(--main-color);
}
.quote-block-text{
    font-size: 14px;
    font-weight: 400;
    margin-bottom: var(--main-pad);
    color: var(--grey-color);
}
.quote-block-link{
	position: relative;
	display: flex; 
    margin-top: auto;
}
.quote-btn{
	position: relative;
	display: flex;
	flex-direction: column; 
    justify-content: center;
    font-size: 18px;
    color: var(--sub-color);    
}
.quote-block-score{
	position: relative;
	display: flex; 
    margin-top: auto;
}
.quote-block-score span{
	position: relative;
	display: flex;
	flex-direction: column; 
    justify-content: center;
    font-size: 16px;
    margin-right: var(--xxs-pad);
    color: var(--dark-bg-color);   
}
.quote-block-score span.quote-score-filled{
    color: var(--sub-color);   
}
.swiper-bar{
    position: relative;
    display: flex;
    
}
.swiper-buttons{
    position: relative;
    display: flex;
/*    align-self: flex-end;*/
    margin-left: auto;
    z-index: 2;
}
.swiper-i-btn{
    position: relative;    
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: var(--med-pad);
    height: var(--med-pad);
    line-height: var(--med-pad);
    padding: 0px;
    text-align: center;
    font-size: 14px;
    border: none;
    background: var(--main-color);
    color: var(--light-text-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;    
}
.swiper-buttons .swiper-i-btn{
    margin-left:var(--xs-pad); 
}
.swiper-button-prev,
.swiper-button-next{
    top:initial;
    left:initial;
    right:initial;
    margin: 0;
}
.swiper-button-next.swiper-button-disabled, 
.swiper-button-prev.swiper-button-disabled {
    opacity: 0.24;
}

.swiper-button-prev:after,
.swiper-button-next:after{ 
    display: none;
}


/* CONTENT OVERRIDES *****************************/


#content-banner-4 .banner-blk-txt{
    justify-content: center;
    z-index: 2;
}

#content-banner-5 {
    background: rgba(0, 0, 0, 0.16);
}
#content-banner-5:after,
#content-banner-5:before{
    content: '';
    position: absolute;
    display: block;
    bottom:0;
    left:0px;
    width: 100%;
    height: 1px;
    background: var(--line-gradient);  
}
#content-banner-5:before{
    bottom: initial;
    top: 0;
}

.white-banner-wrap .banner-blk-txt .content-banner-title,
.white-banner-wrap .banner-blk-txt .content-banner-text{
    color: var(--main-color);  
}


#content-banner-7:before{
    content: '';
    position: absolute;
    display: block;
    top:0;
    left:0px;
    height:50%;
    width: 100%;
    background: var(--bg-main-color);  
}
#content-banner-7 .banner-blk-txt{
    justify-content: center;
}
#content-banner-7 .banner-blk-img{
    padding-bottom:var(--lg-pad); 
}
#content-banner-7 .banner-blk-img img{
    margin-top: -32%;
}
.content-banner-bg{
    position: absolute;
    display: block;
    top:0;
    right:var(--main-pad); 
    height:100%;
    width: 200%;
    background: var(--light-gradient);
    border-radius: 0 var(--lg-radius) var(--lg-radius) 0; 
}


.content-circle-spot{ 
    position: absolute;
    width: 30%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    opacity: 1;
    filter: blur(120px);
}
.content-green-circle{
    top:3%;
    right:0%;
    background: rgba(0, 193, 71, 0.20);
    
    
    animation: up-down-animate 3.0s ease-in-out infinite;
}
.content-blue-circle{
    top:20%;
    left:-10%;
    width: 40%;
    background: rgba(67, 127, 236, 0.16);
    
    animation: up-down-animate 4.0s ease-in-out infinite;
}


/* CONTENT ANIMATIONS *****************************/


#content-banner-1 .banner-blk-txt,
#content-banner-1 .banner-blk-center-full,
#content-banner-1 .icon-block-wrap,
#content-banner-2 .banner-blk-txt:not(.banner-btn-end),
#content-banner-2 .icon-block,
#content-banner-3 .banner-blk-txt,
#content-banner-3 .banner-blk-center-full,
#content-banner-3 .icon-block-wrap,
#content-banner-4 .banner-blk-txt,
#content-banner-4 .banner-blk-video,
#content-banner-5 .inline-text-block,
#content-banner-6 .banner-blk-txt,
#content-banner-6 .icon-image-block-wrap,
#content-banner-7 .content-banner-bg,
#content-banner-7 .banner-blk-txt,
#content-banner-7 .banner-blk-img,
#content-banner-8,
#content-banner-9 .banner-blk-txt,
#content-banner-9 .image-block-wrap
{
    opacity: 0;
}

#content-banner-1.animate .banner-blk-txt,
/*#content-banner-2.animate .content-banner,*/
#content-banner-2.animate .banner-blk-txt:not(.banner-btn-end),
#content-banner-3.animate .banner-blk-txt,
#content-banner-6.animate .banner-blk-txt,
#content-banner-8.animate,
#content-banner-9.animate .banner-blk-txt
{
    animation: btm-fade-animate 0.6s ease-out forwards;
}
#content-banner-2.animate .banner-blk-txt:not(.banner-btn-end){
    opacity: 1;
}
#content-banner-1.animate .banner-blk-center-full{
    animation: opac-in-animate 0.6s ease-out forwards;
    animation-delay: 1s;
}
#content-banner-3.animate .banner-blk-center-full
{
    animation: opac-in-animate 0.6s ease-out forwards;
    animation-delay: 0.6s;
}

#content-banner-4.animate .banner-blk-txt{
    animation: left-in-animate 0.6s ease-out forwards;
}
#content-banner-4.animate .banner-blk-video{
    animation: opac-in-animate 0.6s ease-out forwards;
}
#content-banner-7.animate .content-banner-bg{
    animation: left-in-animate 0.4s ease-out forwards;
}
#content-banner-7.animate .banner-blk-txt{
    animation: btm-fade-animate 0.6s ease-out forwards;
    animation-delay: 0.6s;
}
#content-banner-7.animate .banner-blk-img{
    animation: btm-fade-animate 0.6s ease-out forwards;
    animation-delay: 0.8s;
}



#content-banner-1.animate .icon-block-wrap, 
#content-banner-2.animate .icon-block,
#content-banner-3.animate .icon-block-wrap,
#content-banner-5.animate  .inline-text-block,
#content-banner-6.animate .icon-image-block-wrap,
#content-banner-9.animate .image-block-wrap
{
    animation: btm-fade-animate 0.4s ease-out forwards;
}
#content-banner-1 .icon-blocks .icon-block-wrap:nth-child(2),
#content-banner-2 .icon-blocks-detailed .detail-block-wrap:nth-child(2) .icon-block,
#content-banner-3 .icon-blocks .icon-block-wrap:nth-child(2)
#content-banner-5 .inline-text-blocks .inline-text-block:nth-child(2),
#content-banner-6 .icon-image-block-wrap:nth-child(2),
#content-banner-9 .image-blocks .image-block-wrap:nth-child(1)
{
    animation-delay: 0.2s;
}
#content-banner-1 .icon-blocks .icon-block-wrap:nth-child(3),
#content-banner-2 .icon-blocks-detailed .detail-block-wrap:nth-child(3) .icon-block,
#content-banner-3 .icon-blocks .icon-block-wrap:nth-child(3),
#content-banner-5 .inline-text-blocks .inline-text-block:nth-child(3),
#content-banner-9 .image-blocks .image-block-wrap:nth-child(2)
{
    animation-delay: 0.4s;
}
#content-banner-1 .icon-blocks .icon-block-wrap:nth-child(4),
#content-banner-5 .inline-text-blocks .inline-text-block:nth-child(4){
    animation-delay: 0.6s;
}
#content-banner-1 .icon-blocks .icon-block-wrap:nth-child(5),
#content-banner-5 .inline-text-blocks .inline-text-block:nth-child(5){
    animation-delay: 0.8s;
}
#content-banner-1 .icon-blocks .icon-block-wrap:nth-child(6),
#content-banner-5 .inline-text-blocks .inline-text-block:nth-child(6){
    animation-delay: 1.0s;
}


/* FOOTER *****************************/

#footer {
    position: relative;
    display: block;
    background: var(--black-color);  
    color: var(--white-color);  
    padding: var(--main-pad) 0px;
    font-size: 14px;
    z-index: 2;
    background: radial-gradient(192.06% 342.23% at 0% 0%, #1D1E2C 0%, #000 100%);
    overflow: hidden;
}
/*
#footer:before {
    content: '';
    position: absolute;
    display: block;
    width: 50%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    left: 0%;
    bottom: 0;
    background: radial-gradient(192.06% 342.23% at 0% 0%, #1D1E2C 0%, #000 100%);
}
*/
.footer-content {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: var(--main-pad) 0px;
}
.footer-left{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 50%;	
    padding-right: 5%;
}
.footer-logo-main {
    position: relative;
    display: block;
    text-align: left;
}

.footer-logo {
    position: relative;
    display: inline-block;
    text-align: left;
    margin-bottom: var(--mid-pad);
    opacity: 1;
    transition: all 0.2s ease;
}
.footer-logo:hover {
    opacity: 0.64;
    transition: all 0.4s ease-out;
}
.footer-left p{
    font-size: 12px;
    color: var(--light-text-color);
    color: rgba(var(--white-color-rgb), 0.48);
    margin: 0;
}

.footer-logo img {
    height: 24px;
    width: auto;
    display: inline-block;
    vertical-align: top;
}

.footer-socials{
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 50%;   
}
.footer-socials .social-btn {
    margin-left: var(--mid-pad);
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: var(--main-pad) 0px;
}

.footer-nav{
    position: relative;
    display: flex;
    width: 60%;	
}
.footer-nav ul {
    position: relative;
    display: flex;
    margin: 0px -16px;
    padding: 0px;
    list-style: none;
    text-align: left;
}
.footer-nav ul li{
    position: relative;
    display: flex;
    padding: 0px 16px;
    text-align: center;
}
.footer-nav ul li a{
    display: block;
    line-height: 24px;
    color: var(--white-color);
    font-weight: 400;
    font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.footer-nav ul li a:hover {
    color: var(--sub-color);
    transition: all 0.4s ease;
}
.footer-copyright{
    position: relative;
    display: block;
    text-align: right;
    width: 40%;
    line-height: var(--main-pad);
}

.footer-mob {
    display: none;
}


/* OTHER STYLES *****************************/

.clear {
    display: block;
    clear: both;
}

.no_border {
    border: none!important;
}

.mob-break {
    display: none;
}

.web-break {
    display: inline;
}

.show-mob {
    display: none
}


/* ANIMATIONS *****************************/

@keyframes opac-in-animate {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes opac-out-animate {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes opac-pulse-animate {
    0%, 25%, 75%, 100% { opacity: 1;}
    50% { opacity: 0;}
}

@keyframes btn-animate {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes nav-animate {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}

@keyframes left-in-animate {
    0% {
        transform: translateX(-50%);
        opacity: 0;
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}
@keyframes right-in-animate {
    0% {
        transform: translateX(50%);
        opacity: 0;
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}

@keyframes right-double-in-animate {
    0% {
        transform: translateX(200%);
        opacity: 0;
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}

@keyframes top-in-animate {
    0% {
        transform: translateY(-50%);
        opacity: 0;
    }
    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

@keyframes btm-in-animate {
    0% {
        transform: translateY(50%);
        opacity: 0;
    }
    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}
@keyframes up-down-animate {
    0%, 100% {
        transform: translateY(0%);
        opacity: 1;
    }
    50% {
        transform: translateY(-8%);
        opacity: 1;
    }
}

@-webkit-keyframes zoom-in-animate {
    0% {
        -webkit-transform: scale(0.5);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
}

@keyframes zoom-in-animate {
    0% {
        transform: scale(0.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes zoom-pop-animate {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    90% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes top-fade-animate {
    0% {
        transform: translateY(-20%);
        opacity: 0;
    }
    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

@keyframes btm-fade-animate {
    0% {
        transform: translateY(15%);
        opacity: 0;
    }
    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}



/* RESPONSIVE STYLES *****************************/

.container {
    padding-right: 48px;
    padding-left: 48px;
}

.row {
    margin-right: -24px;
    margin-left: -24px;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    padding-right: 24px;
    padding-left: 24px;
}

@media (min-width: 1921px) {

    .container{
        max-width: 1696px;
        padding-right: 48px;
        padding-left: 48px;
    }

}

@media (min-width: 1600px) and (max-width: 1920px) {

    .container{
        max-width: 1376px;
        padding-right: 48px;
        padding-left: 48px;
    }
}

@media (min-width: 1200px) and (max-width: 1599px) {
    body {}
    .container {
        max-width: 100%;
        padding-right: 48px;
        padding-left: 48px;
    }
    /*
    h1 {
    font-size: 40px;
}
    h2 {
    font-size: 32px;
}
    h3 {
    font-size: 24px;
}
    a.button, .button {}
    */
    
    .banner-main-title h1  {
        font-size: 64px;
    }
    .banner-main-title h1 span{
        font-size: 48px;
    }

}

@media (min-width: 1200px) and (max-width: 1399px) {

    #banner-main{
        padding: 0;
        min-height: 100dvh;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    body {
        font-size: 14px;
    }
    .container {
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }
    #navbar .container {
        padding-left: 0px;
        padding-right: 0px;
    }
    /*
    h1 {
    font-size: 40px;
}
    h2 {
    font-size: 28px;
}
    h3 {
    font-size: 18px;
}
    */

    #banner-main{
        padding: 0;
        min-height: 100dvh;
    }
    .banner-text{
        min-width: initial;
        width: 100%;
    }
    
    .banner-main-title h1  {
        font-size: 56px;
    }
    .banner-main-title h1 span{
        font-size: 40px;
    }

}

@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }
    body {
        font-size: 14px;
    }
    /*
    h1 {
    font-size: 40px;
}
    h2 {
    font-size: 24px;
}
    h3 {
    font-size: 18px;
}
    #navbar {
    padding: 0px;
}
    #navbar .container {
    padding-left: 0px;
    padding-right: 0px;
}
    */
    #banner-main{
        padding: 0;
        min-height: 100dvh;
    }
    .banner-text{
        min-width: initial;
        width: 100%;
    }
    .banner-main-title h1  {
        font-size: 48px;
    }
    .banner-main-title h1 span{
        font-size: 36px;
    }

}

@media (max-width: 767px) {
    :root {
        --xs-pad: 8px;
        --sm-pad: 12px;
        --mid-pad: 16px;
        --main-pad: 24px;
        --lg-pad: 48px;
        --xl-pad: 72px;
        --xxl-pad: 96px;
        --lg-neg: -48px;
        --main-neg: -24px;
        --main-font: 16px;
        --sm-font: 14px;
        --input-font: 14px;
        --button-font: 16px;
        --sm-icon: 18px;
        --main-icon: 32px;
        --large-icon: 96px;
    }
    .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
        padding-right: 16px;
        padding-left: 16px;
    }
    body {
        font-size: 14px;
    }
    .container {
        padding-right: 16px;
        padding-left: 16px;
    }
    .row {
        margin-right: -16px;
        margin-left: -16px;
    }
    h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 22px;
    }
    h3 {
        font-size: 14px;
        margin-bottom: 8px;
        line-height: 1.2;
    }
    h4 {
        font-size: 14px;
    }
    h2 br, h3 br {
        display: none;
    }
    p {
        margin-bottom: 1.6rem;
        margin-bottom: 16px;
    }
    .lead {
        font-size: 16px;
        margin-bottom: 16px;
        margin-bottom: 1.6rem;
    }
    h3+.lead {
        margin-top: 16px;
        margin-top: 1.6rem;
    }
    .sub-title {
        font-size: 11px;
    }
    a.button, .button, .button:visited{
        min-width: 144px;
        font-size: 14px;
        padding: 8px 24px 8px 20px;
    }
    a.button span, .button span{
        white-space: nowrap;
    }
    .l-btn, .l-btn:visited {
    }
    .btn-clean {
        font-size: 14px;
        padding: 10px 16px;
    }
    #top-btn.clear-btn span{
        font-size: 12px;
    }
    .btn-clean i {
        height: 20px;
        line-height: 20px;
        width: 20px;
    }
    .mob-break {
        display: inline;
    }
    .web-break {
        display: none;
    }
    .hide-mob {
        display: none;
    }
    .show-mob {
        display: flex;
    }
    #main-wrapper {
        overflow: hidden;
    }
    #navbar {
        padding: 0px;
    }
    #navbar .container {
        padding-left: 0px;
        padding-right: 0px;
    }
    .logo-main {
        display: block;
    }

    #banner-main{
        padding: 0;
        min-height: 100dvh;
    }
    #banner-wrapper .container{
        padding-bottom: 50%;
    }
    .banner-text{
        min-width: initial;
        width: 100%;
        padding: 0px;
    }
    .banner-main-title{
        margin-bottom: 24px;
    }
    .banner-main-title h1{
        font-size: 32px;
        margin-bottom: 0;
    }
    .banner-main-title h1 span{
        font-size: 28px;
    }
    .banner-main-title div {
        font-size: 14px;
    }
    .banner-main-text{
        display: none;
    }
    .banner-main-text p {
        font-size: 14px;  
        margin-bottom: 8px;
    }
    .banner-header-buttons{
        justify-content: space-between;
    }
    .banner-header-buttons .button{
        width: calc(50% - 4px);
        margin: 0;
    }
    .circle-spot{ 
        height: 50%;
    }
    .circle-spot-sm{ 
        height: 60%;
    }
    .banner-main-img {
        width: 100%;
    }

    .content-banner-wrap{
        padding: 96px 0;
    }
    .content-banner-wrap.banner-wrap-no-top-pad {
        padding-top: 0;
    }
    
    .content-banner{
        flex-direction: column;
    }
    .banner-blk-txt, .banner-blk-img {
        width: 100%;
    }    
    .content-banner-center .banner-blk-txt {
        width: 100%;
        margin-bottom: var(--lg-pad);
    }
    #content-banner-9 .content-banner-center .banner-blk-txt {
        margin-bottom: var(--main-pad);
    }
    
    #content-banner-2{
        padding-top: 0px;
    }
    #content-banner-2 .content-banner,
    #content-banner-2 .banner-blk-txt:not(.banner-btn-end),
    #content-banner-6 .content-banner,
    #content-banner-6 .banner-blk-txt:not(.banner-btn-end){
        position: initial;
    }
    #content-banner-2 .container,
    #content-banner-6 .container{
        position: relative;
        padding-bottom: 48px;
    }
    .banner-btn-end.mob-bottom{
        position: absolute;
        flex-direction: row;
        justify-content: center;
        bottom: 0;
        right: 0;
        width: 100%;
    }
    .banner-blk-txt.banner-btn-end.mob-bottom .button {
        align-self: center;
        margin-left: initial;
    }
    
    .icon-blocks{
        margin: 0 -2px;
        margin-bottom: var(--lg-pad);
    }
    .icon-block-wrap{
        width: 50%;
        padding: 0 2px;
        margin-bottom: var(--xxs-pad);
    }
    .icon-block{
        padding: var(--mid-pad);
    }
    .icon-block .icon-block-icon {
        width: var(--med-pad);
        height: var(--med-pad);
        line-height: var(--med-pad);
        font-size: 14px;
        margin-bottom: var(--main-pad);
    }
    
    .icon-blocks-grid .icon-block-wrap:nth-child(2) .icon-block {
        border-radius: 0 var(--lg-radius) 0 0;
    }
    .icon-blocks-grid .icon-block-wrap:nth-child(3) .icon-block,
    .icon-blocks-grid .icon-block-wrap:nth-child(4) .icon-block {
        border-radius: 0;
    }
    .icon-blocks-grid .icon-block-wrap:nth-child(5) .icon-block {
        border-radius: 0 0 0 var(--lg-radius);
    }
    
    .icon-blocks-grid .icon-block-text{
        display: none;
    }
    
    .icon-blocks-inline{
        flex-direction: column;
    }
    .icon-blocks-inline .icon-block-wrap,
    .icon-image-block-wrap{
        width: 100%;
    }
    .icon-blocks-inline .icon-block-wrap:nth-child(1) .icon-block, 
    .icon-blocks-inline .icon-block-wrap:nth-child(1) .icon-block:before{
        border-radius: var(--lg-radius) var(--lg-radius) 0 0;
    }
    .icon-blocks-inline .icon-block-wrap:nth-child(3) .icon-block, 
    .icon-blocks-inline .icon-block-wrap:nth-child(3) .icon-block:before{
        border-radius: 0 0 var(--lg-radius) var(--lg-radius);
    }
    
    #detail-slider{
        overflow: initial;
        -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 16px, rgba(0, 0, 0, 1) calc(100% - 48px), rgba(0, 0, 0, 0) 100%);
        mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 16px, rgba(0, 0, 0, 1) calc(100% - 48px), rgba(0, 0, 0, 0) 100%); 
        margin: 32px -16px 32px -16px;
        padding: 0 4px;
    }
    .icon-blocks-detailed.swiper-wrapper{
        flex-wrap: nowrap;
        width: initial;
        margin: 0;
    }
    .detail-block-wrap{
        width: initial;
    }    
    .detail-block-header{
        padding: 16px;
    }
    .detail-block-wrap .icon-block-icon {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
    .detail-block-content{
        padding: 16px;
    }
    .detail-block-text{
        font-size: 18px;
    }
    
    .icon-blocks-image {
        flex-direction: column;
        margin:var(--main-pad) 0 var(--main-pad) 0;
    }
    .icon-image-block-wrap{
        padding: 0;
        margin-bottom: 16px;
    }
    .icon-image-block-wrap .icon-image-block-content {
        margin-top: 48px;
    }
    .icon-image-block-wrap .icon-block {
        padding: var(--mid-pad);
        padding-right: 48px;
    }
    
    .imgb-1 .icon-block:after {
        width: 50%;
        height: 100%;
        bottom: initial;
        top: -45%;
        right: -10%;        
        transform: rotate(-95deg);
    }
    .imgb-2 .icon-block:after {
        width: 65%;
        height: 100%;
        bottom: initial;
        top: -40%;
        right: -25%;
        transform: rotate(12deg);
    }
    
    
    #content-banner-5{
        padding: 96px 0;
    }
    
    .inline-text-blocks{
        flex-direction: column;
        grid-row-gap: 24px;
    }
    .inline-text-block {
        width: 100%;
        padding: 0 var(--main-pad) 0 var(--med-pad);
    }
    .inline-text-block-title{
        margin-bottom: 4px;
    }
    .inline-text-block-title h3{
        line-height: 24px;
        margin: 0;
    }
    
    .banner-blk-video{
        width: 100%;
        margin-top: 96px;
    }
    
    #content-banner-7{
        padding: 0 0 144px 0;
    }
    
    #content-banner-7 .content-banner{
        margin: 0px;
        padding: 48px 0 0 0;
        background: var(--light-gradient);
        border-radius: var(--lg-radius);
    }    
    .content-banner-bg{
        display: none;
    }
    #content-banner-7 .banner-blk-txt {
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-bottom: 24px;
    }
    #content-banner-7 .banner-blk-img img {
        max-width: initial;
        width: 120%;
        margin: 0 -10%;
        margin-bottom: -75%;
        aspect-ratio: 1/1;
    }
    
    #content-banner-9{
        padding-top: 0;    
    }    
    .image-blocks{
        margin: 0 -8px;
    }

    .image-block-wrap {
        padding: 0 var(--xs-pad);
        width: 50%;
        min-width: initial; 
    }
    .image-block-text{
        display: none;
    }
    
    #content-banner-8 .content-banner,
    #content-banner-8 .banner-blk-txt{
        position: initial;
    }
    #content-banner-8 .content-banner-title{
        margin-bottom: 0;
    }
    #content-banner-8.content-banner-wrap{
        padding-bottom: 144px;
    }
    .swiper-bar{
        position: absolute;
        width: 100%;  
        bottom: 80px;
        padding: 0 16px;
        right: 0;
    }
    .swiper-buttons{
        position: relative;
        display: flex;
        justify-content: flex-end;
        margin-left: 0;
        width: 96px;
        z-index: 2;
    }
    .swiper-bar .swiper-scrollbar{
        position: relative;
        display: flex;
        width: 70%;
        width: calc(100% - 96px);
        top: 14px;
    }
    .swiper-bar .swiper-scrollbar .swiper-scrollbar-drag {
        height: 100%;
        width: 100%;
        position: relative;
        background: var(--main-color) ;
        border-radius: 3px;
        left: 0;
        top: 0;
    }
    .quote-block-text{
        font-size: 12px;
        margin-bottom: 16px;
    }

    .footer-content{
        flex-direction: column;
        padding: 0;
    }
    
    .footer-logo{
        margin-top: 4px;
        margin-bottom: 24px;
    }
    .footer-logo img{
        height: 20px;
    }
    .footer-left {
        width: 100%;
        padding-right: 0%;
    }
    .footer-left p{
        
    }
    .footer-socials {
        position: absolute;
        width: 50%;
        top: 0;
        right: 0;
    }
    
    .social-btn{
        width: var(--med-pad);
        height: var(--med-pad);
        line-height: var(--med-pad);
        font-size: 14px;
    }
    
    .footer-socials .social-btn {
        margin-left: var(--xs-pad);
    }
    
    .footer-bottom{
        flex-wrap: wrap;
        padding-bottom: 64px;
    }
    .footer-nav {
        width: 100%;
    }
    .footer-nav ul{
        flex-wrap: wrap;
    }
    .footer-nav ul li a{
        font-size: 12px;
    }
    
    .footer-copyright {
        position: absolute;
        text-align: left;
        width: 100%;
        bottom: 0;
        left: 0;
        padding: 16px;
        font-size: 12px;
        background: rgba(255, 255, 255, 0.04);
        line-height: var(--main-pad);
        color: var(--light-text-color);
        color: rgba(var(--white-color-rgb), 0.48);
    }
    
}

@media (min-width: 400px) and (max-width: 767px) {}

@media (min-width: 320px) and (max-width: 361px) {


}

@media (max-width: 1199px) {
    
    html.menu-open {
        overflow: hidden;
    }
    
/*
    body.menu-open {
        overflow: hidden;
        width: 100%;
    }
*/
    #navbar.sticky-ani {
        position: fixed;
        top: -56px;
    }
    #navbar.sticky {
        position: fixed;
        top: 0;
        -webkit-transition: 0.5s ease-out top;
        transition: 0.5s ease-out top;
    }
    .menu-open #navbar {
        box-shadow: none;
        top: 0!important;
    }
    .menu-open.menu-ani .navbar-header {
        background: none;
        transition: background 0.01s ease-out;
        transition-delay: 0s;
    }
    /*
    .navbar-header {
    justify-content: flex-end;
}
    */
    #bg-wrapper{
        z-index: 999998;
    }
    #navbar {
        position: fixed;
        padding: 0px 16px;
        z-index: 999999;
    }
    .navbar-header-logo {
        width: 100%;
    }
    .nav-toggle {
        display: block;
        margin: 16px 16px 16px 0px;
        z-index: 3;
    }
    .nav-socials{
        display: none;
    }
    .logo-main {
        margin: 0;
        margin: 16px 0px;
        z-index: 2;
    }
    .logo-main span{
        height: 20px;
    }
    .logo-main img {
        height: 20px;
        width: auto;
        vertical-align: top;
    }
    .nav-wrap {
        position: absolute;
        position: fixed;
        display: block;
        float: none;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 400px;
        height: 100dvh;
        margin: 0;
        padding: 56px 24px 48px 24px;
        z-index: 1;
        opacity: 0;
        background: var(--light-main-color);
        overflow: hidden;
        overflow-y: auto;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }
    .menu-open .nav-wrap {
        display: flex;
        flex-direction: column;
        left: 0px;
        top: 0;
        opacity: 1;
        -webkit-transition: all 0.4s ease-out;
        transition: all 0.4s ease-out;
    }
    #nav-main {
        width: 100%;
        opacity: 0;
    }
    .menu-open #nav-main {
        animation: opac-in-animate 0.6s ease-in forwards;
        animation-delay: 0.3s;
    }
    .menu-ani #nav-main {
        /*		right: -110%;*/
        opacity: 0;
    }
    .menu-open #navbar.sticky, .menu-open.sub-page #navbar {
/*
        background: #000000;
        box-shadow: none;
*/
    }
    .menu-open #navbar.sticky .logo-main-dark, .menu-open #navbar .logo-main-dark {
        display: none;
    }
    .menu-open #navbar.sticky .logo-main-light, .menu-open #navbar .logo-main-light {
        display: block;
    }
    .home-wrap .nav-icon span, .home-wrap .nav-icon span::before, .home-wrap .nav-icon span::after {
        background: var(--white-color);
    }
    .home-wrap .sticky .nav-icon span, .home-wrap .sticky .nav-icon span::before, .home-wrap .sticky .nav-icon span::after {
        background: var(--white-color);
    }
    .menu-open .nav-icon span, .home-wrap.menu-open .nav-icon span {
        background: none !important;
    }
    .menu-open .nav-icon span, .menu-open .nav-icon span::before, .menu-open .nav-icon span::after, .menu-open .home-wrap .sticky .nav-icon span::before, .menu-open .home-wrap .sticky .nav-icon span::after {
        background: var(--white-color);
    }
    #nav-main .show-mob {
        display: block!important;
        text-align: center;
    }

    #nav-main ul {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-self: center;
        margin: 24px 24px 24px 24px;
        padding: 0px;
    }
    #nav-main ul li {
        display: block;
        text-align: left;
        padding: 0px 8px;
        margin: 0 0px;
    }
    #nav-main ul li a {
        position: relative;
        display: block;
        text-align: left;
        width: 100%;
        padding: 0;
        font-size: 16px;
        line-height: 48px;
        font-weight: 400;		
        color: #FFFFFF!important;
    }
    #navbar.sticky #nav-main ul li a{
        color: var(--white-color);
    }

/*
    .nav-copyright{
        display: block;
        position: absolute;
        width: calc(100% - 32px);
        font-size: 12px;
        left: 16px;
        bottom: 64px;
        color: var(--grey-color);
        text-align: center;
        opacity: 0;
    }
    .menu-open .nav-copyright{
        animation: opac-in-animate 0.6s ease-in forwards;
        animation-delay: 0.3s;
    }
*/

}

@-webkit-keyframes dropdown-animate {
    0% {
        height: 0;
        opacity: 1;
    }
    100% {
        height: 200px;
        opacity: 1;
    }
}

@keyframes dropdown-animate {
    0% {
        height: 0;
        opacity: 1;
    }
    100% {
        height: 200px;
        opacity: 1;
    }
}

@-webkit-keyframes mob-dropdown-animate {
    0% {
        height: 0;
        opacity: 1;
    }
    100% {
        height: 96px;
        opacity: 1;
    }
}

@keyframes mob-dropdown-animate {
    0% {
        height: 0;
        opacity: 1;
    }
    100% {
        height: 96px;
        opacity: 1;
    }
}

@media (max-width: 767px) {
    /*
    #navbar-header {}
    .logo-main {
    width: calc(100% - 72px);
    text-align: center;
}
    */
}

/*@media only screen (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {*/

@media only screen and (min-height: 600px) and (min-width: 768px) and (orientation: portrait) {}

/******** iPhone Fixes ********/

/* iPhone 8 with notch */

@media only screen and (device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) {}

/* iPhone X with notch */

@media only screen and (width: 375px) and (-webkit-device-pixel-ratio: 3) {}

/* iPhone XR with notch */

@media only screen and (width: 414px) and (-webkit-device-pixel-ratio: 2) {}

/* iPhone XS Max with notch */

@media only screen and (width: 414px) and (-webkit-device-pixel-ratio: 3) {}