
.button {
    position: relative;
    border-radius: 6px;
    font-size: 0.88em;
    font-family: Inter Extra Bold;
    /* padding: 2vw; */
    transition: 0.11s;
    transition-timing-function: ease-out; 
    /* b0ff80, 97ff57, 54db00 */
    color: var(--text-1);
	padding: 14px;
	margin: 0 auto;
    --shade: 0.07;
}


@media (prefers-color-scheme: dark) {
    .button {
        background: rgba(255,255,255,var(--shade));
        background: rgba(240, 245, 255, 0.08); /* slight blue bias */
        background: rgba(240, 245, 255, 0.12); /* slight blue bias */
    }
}

@media (prefers-color-scheme: light) {
    .button {
        background: rgba(0,0,0,var(--shade));
    }
}





.submit.button {
    padding: 1.2vh 0;
}



.button span {
    position: relative;
    /* top: -1px; */
}

.button.background {
    color: #FFF;
}




.button.pressed {
    transform: scale(1.01);
}

.button::before,
.button::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    border-radius: inherit;
    position: absolute;
    top: 0;
    left: 0;
}

.button::before {
    z-index: 1;
}

.button::after {
    z-index: 2;
}

.button.background::before {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
}


.button.pressed::after {
    background: rgba(0,0,0,0.08);
}

.button.no-press::after {
    background: none !important;
}



/* .button i {
    margin: 0 1.5vw 0 0;
} */

.button span,
.button i {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.button i + a:not(:empty) {
    margin: 0 0 0 8px;
}

.button i.fa-undefined + a:not(:empty) {
    margin: 0;
}

.button.disabled {
    box-shadow: 0 6px 9px rgb(50, 93, 50, 0.06), 0 2px 5px rgba(0, 0, 0, 0.08), inset 0.07vh 0.09vh 0 #222, inset -0.07vh -0.07vh 0 #222;
}




.button.no-background {
    background: none;
}

.button.transparent,
.button.transparent::before,
.button.transparent::after {
    background: none !important;
}



.action-button {
    border-top: 1px solid #DDD; 
    width: 100%;
    /* height: 10.6%; */
    position: relative;
    padding: 18px;
    flex-shrink: 0;
    font-family: Inter Black;
    color: #FFF;
    font-size: 1.11em;
    background: var(--background-1);
}

.action-button .button {
    height: 100%;
    /* padding: 0; */
}

.action-button .button > div {
    border-radius: 6px;
}

























.animated-button-wrapper {
    /* background: #FFF; */
    width: fit-content;
    border-radius: 50px;
    padding: 0.4vw;
    transition: 0.16s;
    margin: 0 auto;
    position: relative;
}

.animated-button {
    position: relative;
	width: fit-content;
	max-width: 94vw;
	/* margin: 0 auto 7vh; */
	overflow: hidden;
	border-radius: 50px;
	font-family: Inter Black;
	font-size: 16px;
    /* background: var(--background2); */
    color: #FFF;

}

.animated-button::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
        to top, 
        rgba(255, 255, 255, 0.20), 
        rgba(255, 255, 255, 0), 
        rgba(255, 255, 255, 0)
    );
	border-radius: inherit;
	z-index: 2;
	pointer-events: none;
}

.animated-button-wrapper.pressed {
    transform: scale(1.05) !important; 
}













.animated-button .flex-row {
	border-radius: inherit;
}

.animated-button .flex1 {
	max-width: 0px;
	transition: 1s;
}













.animated-button .circle {
	border-radius: inherit;
	z-index: 2;
    width: var(--height);
    height: var(--height);
}


.animated-button .spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.animated-button .spinner * {
    width: 2.4vh;
    height: 2.4vh;
}

.animated-button .icon {
	font-size: 1.5em;
	border-radius: 100%;
	width: 100%;
	height: 100%;
	aspect-ratio: 1/1;
}



.animated-button .icon i {
	position: relative;
	top: 1px;
	left: 1px;
	font-size: 1.1em;
    color: #FFF !important;
}

.animated-button .text-row {
	/* width: 21.5vw; */
    /* width: 88vw; */
    width: var(--width);
	height: var(--height);
	z-index: 1;
	overflow: hidden;
    /* background: var(--background2); */
}

.animated-button .text-container {
    width: 100%;
    height: 100%;
	overflow: hidden;
}

.animated-button .text-line {
	line-height: 3vh;
}

.animated-button .text-block {
	width: 100%;
}


.animated-button .text-line {
	line-height: 3vh;
}

.animated-button .text-line.name {
	font-size: 1.1em;
}

.animated-button .name-block {
	top: 0vh;
}


.animated-button .description-block {
	top: 16vh;
	width: 60vw;
	line-height: 2.5vh;
}

.animated-button[success='true'] .icon {
    color: var(--litGreen);
}

.animated-button[success='false'] .icon {
    color: red;
}


.animated-button .spinner div {
    box-shadow: 0 5px 0 0 #FFF;
}
select {
    appearance: none;
    -webkit-appearance: none;
    text-align: -webkit-center;
    /*display: none;*/
}
  
.select-menu {
    position: relative;
    width: auto;
    height: min-content;
    padding: 1vh 0;
    margin: 0;
    padding: 0;
    border-radius: 6px;
    border: 1px solid;
    font-family: Inter Bold;
    font-size: 1.1em;
}
  
.select-menu select {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    opacity: 0;
    font-family: Inter Bold;
}
  
/* INPUT */

.text-input {
  --height: 6.5vh;

  --height: 58px;

  --alpha: 0.1;
  width: auto !important;
  height: var(--height);
  margin: 0 3vh 2vh;
  padding: 0;
  border-radius: 6px;
  /* border: 1px solid; */
  white-space: pre;
  background: var(--background-4);
}

.text-input .flex-row {
    height: 100%;
}

.text-input input {
  background: none;
  border: none;
  width: 100%;
  height: var(--height);
  font-family: Inter;
  font-size: 15px;
  margin: 0 calc(var(--height) / 2.7);
}

.text-input .icon + input {
  margin-left: -4px;
}


/* INPUT ICONS  */

.text-input .icon {
  aspect-ratio: 1/1;
  height: var(--height);
  padding: 0;
}

.text-input .icon.clear {
	font-size: 0.85em;
}

.text-input .password {
  font-size: 0.88em;
}

.text-input .password + .icon {
  margin: 0 0 0 -4.5vw;
}


/* PASSWORD */

.text-input[type="password"] a {
  font-size: 0;
}

.text-input[type="password"] a::before {
    content: '*';
    font-size: 24px;
    position: relative;
    top: 0.4vh;
}

.text-input {
	/* --shadow: 0px 4px 12px 0px var(--shadow-color,var(--shadow-color-1,#0000001a)),inset 0px 0px 1px 0px var(--shadow-color,var(--shadow-color-2,#fff3)); */
    /* box-shadow: var(--inset-shadow),var(--inset-ring-shadow),var(--ring-offset-shadow),var(--ring-shadow),var(--shadow) !important; */
    
    /* background: #303030 !important; */
    box-shadow: 0 0 #000, 0 0 #000, 0 0 #000, 0 0 #000 , 0px 4px 12px 0px #0000001a, inset 0px 0px 1px 0px #fff3 !important;

}






@media (prefers-color-scheme: light) {

    .text-input {
      background: rgba(0,0,0,var(--alpha));
    }

}

@media (prefers-color-scheme: dark) {
    
    .text-input {
      background: rgba(255,255,255,var(--alpha));
    }

}

















/* STATES */

.text-input .read-only {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}

.input-focused {
  border: 1px solid;
  border-color: var(--litGreen) !important;
}

.input-invalid {
  border: 1px solid;
  /* border-color: red !important; */
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus
input:-webkit-autofill {
  border:none !important;
  color: var(--text1);
  -webkit-text-fill-color: inherit !important;
  -webkit-box-shadow: 0 0 0px 1000px var(--background7) inset;
  transition: background-color 5000s ease-in-out 0s;
}








.text-input .icon {
  transition: 0.33s ease-out;
}


.text-input[center="true"] .icon {
	margin: 0 0 0 33vw;
}

.text-input[center="false"] .icon {
	margin: 0;
}
input[type="file"] {
    width: 0px !important;
    height: 0px !important;
}

input[type="file"] {
    display: none;
}

input[type=range] {
    width: 10rem;
    appearance: none;
    -moz-appearance: none;
  }
  input[type=range]:active::-webkit-slider-thumb {
    appearance: none;
    -moz-appearance: none;
    transform: scale(1.1);
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
  }
  input[type=range]:active::-moz-range-thumb {
    border: 0;
    transform: scale(1.1);
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
  }
  input[type=range]:active::-ms-thumb {
    transform: scale(1.1);
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
  }
  input[type=range]:focus {
    outline: none;
  }
  input[type=range]::-webkit-slider-thumb {
    appearance: none;
    -moz-appearance: none;
    display: block;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #5990DD;
    transform-origin: 50% 50%;
    transform: scale(1);
    transition: transform ease-out 100ms;
    cursor: -webkit-grab;
    cursor: -moz-grab;
  }
  input[type=range]::-moz-range-thumb {
    border: 0;
    display: block;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #5990DD;
    transform-origin: 50% 50%;
    transform: scale(1);
    transition: transform ease-out 100ms;
    cursor: -webkit-grab;
    cursor: -moz-grab;
  }
  input[type=range]::-ms-thumb {
    display: block;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #5990DD;
    transform-origin: 50% 50%;
    transform: scale(1);
    transition: transform ease-out 100ms;
    cursor: -webkit-grab;
    cursor: -moz-grab;
  }
  input[type=range]::-webkit-slider-runnable-track {
    height: 1rem;
    padding: .25rem;
    box-sizing: content-box;
    border-radius: 1rem;
    background-color: #DDE0E3;
  }
  input[type=range]::-moz-range-track {
    height: 1rem;
    padding: .25rem;
    box-sizing: content-box;
    border-radius: 1rem;
    background-color: #DDE0E3;
  }
  input[type=range]::-moz-focus-outer {
    border: 0;
  }
  input[type=range]::-ms-track {
    border: 0;
    height: 1rem;
    padding: .25rem;
    box-sizing: content-box;
    border-radius: 1rem;
    background-color: #DDE0E3;
    color: transparent;
  }
  input[type=range]::-ms-fill-lower, input[type=range]::-ms-fill-upper {
    background-color: transparent;
  }
  input[type=range]::-ms-tooltip {
    display: none;
  }






input[type=range] {
    appearance: none;
    -webkit-appearance: none;
    margin: 18px 6%;
    width: 88%;
    height: 0.24vh;
  }
  input[type=range]:focus {
    outline: none;
  }
  input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 0.24vh;
    cursor: pointer;
    /*box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;*/
    background: #3071a9;
    border-radius: 4px;
    /*border: 0.2px solid #010101;*/
  }
  input[type=range]::-webkit-slider-thumb {
    /*box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;*/
    border: 1px solid #BBB;
    height: 2.4vh;
    width: 2.4vw;
    border-radius: 3px;
    background: #ffffff;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -14px;
  }
  input[type=range]:focus::-webkit-slider-runnable-track {
    background: #367ebd;
  }



  input[type=range]::-moz-range-track {
    width: 100%;
    height: 0.24vh;
    cursor: pointer;
    /*box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;*/
    background: #3071a9;
    border-radius: 4px;
    /*border: 0.2px solid #010101;*/
  }
  input[type=range]::-moz-range-thumb {
    /*box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;*/
    border: 1px solid #BBB;
    height: 2.4vh;
    width: 2.4vw;
    border-radius: 3px;
    background: #ffffff;
    cursor: pointer;
  }


  input[type=range]::-ms-track {
    width: 100%;
    height: 0.24vh;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    border-width: 16px 0;
    color: transparent;
  }
  input[type=range]::-ms-fill-lower {
    background: #2a6495;
    /*border: 0.2px solid #010101;*/
    border-radius: 4px;
    /*box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;*/
  }
  input[type=range]::-ms-fill-upper {
    background: #3071a9;
    /*border: 0.2px solid #010101;*/
    border-radius: 4px;
    /*box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;*/
  }
  input[type=range]::-ms-thumb {
    /*box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;*/
    border: 1px solid #BBB;
    height: 2.4vh;
    width: 2.4vw;
    border-radius: 3px;
    background: #ffffff;
    cursor: pointer;
  }
  input[type=range]:focus::-ms-fill-lower {
    background: #3071a9;
  }
  input[type=range]:focus::-ms-fill-upper {
    background: #367ebd;
  }


.search-bar {
    --height: 5.5vh;
    --height: 5vh;
    margin: 0 16px 16px;
    border: none;
	border-radius: 35px;
    background: var(--background-3);
}

.search-bar i {
	font-size: 1.1em;
	opacity: 0.88;
    position: relative;
    top: 1px;
}

.search-bar input {
	font-size: 16px;
}

.text-input.text-area {
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: pre-wrap;
}

.text-input.text-area {
    width: fill-available;
    width: -webkit-fill-available;
    width: -moz-available;
    margin: 0 3vh 2vh;
    padding: 2vh;
    border: 1px solid;
    border-radius: 6px;
    font-family: Inter SemiBold;
    font-size: 0.85em;
    min-height: 6vh;
/*	resize: none;*/
}

.text-input.text-area .placeholder {
    padding: 2vh 0;
}

.fas.fa-undefined {
	display: none;
}

.circle {
    border-radius: 100%;
}

html, body, #main { height: 100%; overflow: hidden; -webkit-overflow-scrolling: auto; }

html, body, #app { 
	-webkit-overflow-scrolling: auto; 
}

body { 
	font-family: Inter;
	width: 100%;
    height: 100%;
	position: fixed; 
	margin:0; 
	overflow: hidden; 
	-webkit-font-smoothing: subpixel-antialiased;
}

#app {
	display: flex;
	flex-direction: column;
	/* position: relative; */
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
    height: 100%;
	overflow: hidden;
	-webkit-overflow-scrolling: auto;
}

* { 
	font-weight: 1;
	margin:0; padding:0;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important; 
	-webkit-focus-ring-color: rgba(255, 255, 255, 0) !important; 
	outline: none !important;
	box-sizing: border-box;
}

	 
* { 
	-webkit-touch-callout: none;
	-webkit-user-select: none; 
	-khtml-user-select: none;
	-moz-user-select: none; 
	-ms-user-select: none;
	user-select: none;
}

input, textarea { 
	-webkit-touch-callout: auto;
	-webkit-user-select: auto; 
	-khtml-user-select: auto;
	-moz-user-select: auto; 
	-ms-user-select: auto;
	user-select: auto;
}

a {
	text-decoration: none;
}

a:link, a:visited {
	color: inherit;
}

a.pointer {
	pointer-events: none;
}

iframe {
	width: 100%;
	height: 100%;
	border: none;
}

.opaque {
	opacity: 0;
}

.no-border {
	border:  none !important;
	border-top:  none !important;
	border-bottom:  none !important;
}

.truncate, .truncate span {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

ul { list-style: none; }

img { 
	width: 100%; 
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: inherit;
	font-size: 0;
}

img:not([src]) {
	visibility: hidden;
}

img[src=""] {
	display: none;
}

.grid {
	display: grid;
}

.height-auto {
	height: auto !important;
}



.center {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
	
.center-vertical {
	display: flex;
	align-items: center;
}
	
.center-horizontal {
	text-align: center;
}
	






/* .border {
	border: 1px solid;	
} */

.border-bottom {
	border-bottom: 1px solid;
}

.border-none {
	border: none;
}

.overflowX, .overflow-x { 
	overflow-x: scroll; 
	overflow-y: hidden; 
	overflow: -moz-scrollbars-none; 
}

.overflow-x {
	white-space: nowrap;
}

.overflowX {
	overflow-x: scroll;
	overflow-y: hidden;
	overflow: -moz-scrollbars-none;
	-ms-overflow-style: none;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch; /* enables “momentum” (smooth) scrolling */
}

.overflowX::-webkit-scrollbar {
	background: transparent;  /* Optional: just make scrollbar invisible */
}

.overflowX > *,
.overflowX > * > * {
	display: inline-block;
}
	
.overflowX > * {
	margin: 0 4vw;
}

.overflowX > * > * {
	margin: 0 4vw 0 0;
}
	
.overflowX > * > *:last-child {
	margin: 0;
}

.overflowX img {
	display: block;
}

.overflowY, .overflow-y {
	overflow-y: scroll;
	height: 100%;
	/*height: inherit;*/
}

.overflowHidden {
	overflow-y: hidden;
}

.no-scroll-bounce {
	overscroll-behavior: none;
}

* {
	overscroll-behavior-y: revert;
}

.overflowRevert {
	overflow-y: revert;
}

.overflow-auto, .overflowAuto {
	overflow-y: auto;
}

.overflowY::-webkit-scrollbar {
	/* Optional: just make scrollbar invisible */
	background: transparent; 
}

.hidden { opacity:0; }

.flex { 
	display: flex;
}

.flex-col { 
	display: flex;
	flex-direction: column; 
	height: 100%; 
} 

.flex-row { 
	flex-direction: row;
	width:100%;
}

.flex1 {
flex: 1;
min-width: 0;
min-height: 0;
}

.flexShrink, .flex-shrink { flex-shrink: 0; }

.relative { position:relative; } 
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.hide { display: none; }


input { outline:none; cursor:default; }
input[type="button"]:disabled { background: #B0B0B0; }
input.touch { background:none; border:none; }

.text { display: table; width: 100%; height: 100%; border-radius: inherit; }
.text.center { display: table; text-align:center; }
.text > span { width:100%; display: table-cell; vertical-align: middle; }

.clear { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }

::-webkit-scrollbar {
	width: 0px;  /* Remove scrollbar space */
	background: transparent;  /* Optional: just make scrollbar invisible */
	-ms-overflow-style: none;  /* Internet Explorer 10+ */
	scrollbar-width: none;  /* Firefox */
	display: none; 
}

/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
	background: #FF0000;
}

/* 
@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Space+Grotesk:wght@700&display=swap');
*/

* {
  overscroll-behavior-y: none;
}

:root {
  --bg1: #0A2647;
  --bg2: #144272;
  --bg3: #205295;
  --bg4: #2C74B3;
  --text1: #FFF;
  --text2: #EEE;
  --text3: #E0E0E0;
  --text4: #BDBDBD;
  --white: #FFF;
  --blue: #084b82;
  --green: #25ae7a;
  --aqua: #8ff2d6;
  --cyan: #8CC8D2;
  --mint: #cdf2e0;
}

body {
  margin: 0;
  background-color: var(--white);
  font-family: 'Libre Franklin', sans-serif;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}

#bubbles {
  width: 100vw;
  height: 100vh;
  opacity: 0.16;
}

.waves-container {
  width: 100%;
  bottom: 0;
}

.waves {
  position:relative;
  width: 100%;
  height:15vh;
  margin-bottom:-7px; /*Fix for safari gap*/
  min-height:100px;
  max-height:150px;
}

 /* parallax */

 .parallax.wrapper {
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    perspective: 300px;
}

.align.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.parallax .section {
	width: auto;
    height: 100vh;
    position: relative;
    transform-style: preserve-3d;
}

.parallax .layer {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
















.typed {
    /* overflow: hidden; */
    /* white-space: nowrap; */
    border-right: 3px solid;
    /* width: 0; */
    animation: blinking 1s infinite;
  }
  
  @keyframes blinking {
    0% {border-color: transparent}
    50% {border-color: var(--aqua)}
    100% {border-color: transparent}
  }
  






.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
  }
  .parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
  }
  .parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
  }
  .parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
  }
  .parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
  }
  @keyframes move-forever {
    0% {
     transform: translate3d(-90px,0,0);
    }
    100% { 
      transform: translate3d(85px,0,0);
    }
  }
  /*Shrinking for mobile*/
  /* @media (max-width: 768px) {
    .waves {
      height:40px;
      min-height:40px;
    }
    .content {
      height:30vh;
    }

  } */
.nav {
	width: -moz-available;
	/* padding: 2vh; */
	font-size: 2em;
	font-weight: 700;
	color: var(--tx1);
    z-index: 2;
}

.nav .item {
	margin: 1vh;
	padding: 1vh;
	font-size: 20px;
    color: var(--white);
}

.nav .item:hover {
    color: var(--aqua);
    background-color: rgba(255,255,255,0.16);
    border-radius: 10px;
}

.nav .logo {
	font-size: 1.2em;
	letter-spacing: 6px;
}














.nav svg{
    /* position: fixed; */
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    cursor: pointer;
    width: 10vh;
  }
  
  .nav  svg path{
    stroke-width: 18;
    stroke-linecap: round;
    stroke: #fff;
    fill: none;
    transition: all .5s ease-in-out;
  }
  
  /* In menu form */
  
  .nav .top_bar,
  .nav  .bottom_bar{
    stroke-dasharray: 240px 910px;
  }
  
  .nav   .middle_bar{
    stroke-dasharray: 240px 240px;
  }
  
  /* In cross form */
  
  .nav .open .top_bar,
  .nav .open .bottom_bar{
    stroke-dashoffset: -650px;
  }
  
  .nav .open .middle_bar{
    stroke-dasharray: 0px 220px;
    stroke-dashoffset: -120px;
  }

.nav .toggle {
  --size: 76px;
  width: var(--size);
  height: var(--size);
}

.nav .toggle svg {
  width: var(--size);
  height: var(--size); 
}
.nav-menu {
  width: 100vw;
  height: 100vh;
  background: var(--aqua);
  z-index: 1;
  display: none;
  /* background:linear-gradient(90deg,#c22085,#2d9687,#e9b171); */
  /* background:linear-gradient(90deg,var(--aqua),#c22085,var(--green),var(--cyan)); */
  background: linear-gradient(to left, #ee7752, #e73c7e, #23a6d5, #23d5ab );
  transition:all 1s ease-in-out;
  background-size: 400% 400%;
}

.nav-menu.animate {
  animation-name: intro-gradient;
  animation-duration: 1.3s;
  animation-timing-function: ease;
}

.nav-menu ul {
  margin: 10vh 0 0;
  padding: 0 5vw;
}

.nav-menu li {
  margin: 1vh;
  padding: 10px 14px;
  list-style: none;
  font-family: Inter Bold;
  font-size: 2em;
  color: var(--white);
  text-transform: uppercase;
}


.nav-menu li {
  background-size: 200% 100%;
  background-image: linear-gradient(to right, transparent 50%, var(--mint) 50%);
  -webkit-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
      -moz-user-select: none; /* Old versions of Firefox */
      -ms-user-select: none; /* Internet Explorer/Edge */
          user-select: none; /
}

.nav-menu li:hover {
  background-position: -100% 0;
  color: var(--green);
}






@keyframes changeBackground{
      0%{
        background-position-x: 0vw
    }
      33%{
        background-position-x: -100vw
    }
      66%{
        background-position-x: -200vw
    }
      100%{
        background-position-x: -300vw
    }
}



@keyframes changeFill{
    0%{
      fill:#c22085;
    }
    25%{
      fill:#2d9687;
    }
    50%{
      fill:#e9b171;
    }
    75%{
      fill:white;
    }
    100%{
      fill:#e2b8aa;
    }
}

@keyframes changeBackgroundColor{
  
  0%{
      background-color:#c22085
  }
  
  25%{
      background-color:#2d9687
  }
  
  50%{
      background-color:#e9b171
  }
  
  75%{
      background-color:#fff
  }
  
  100%{
      background-color:#e2b8aa
  }

}

@keyframes changeStroke{

  0%{
      stroke:#c22085
  }
  
  25%{
      stroke:#2d9687
  }

  50%{
      stroke:#e9b171
  }

  75%{
      stroke:#fff
  }
  
  100%{
      stroke:#e2b8aa
  }

}

.nav-menu:hover, .nav-menu:focus {
  -webkit-transform:translateX(0);
  -moz-transform:translateX(0);
  transform:translateX(0)
}


.intro {
    font-size: 16px;
    color: var(--white);
}

.intro .content {
    margin: 0 16vw;
    top: 44%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: -moz-available;
}

.intro .content > div {
    margin: 0 0 1vh;
}

.intro .heading {
    opacity: 0;
    /* min-height: 75px !important; */
    margin: 0;
    color: var(--white);
    font-family: Inter Black;
    font-size: 4.4em;
    /* font-weight: 900; */
    letter-spacing: -3px;
    line-height: 1em;
}

.intro .sub-heading {
    width: -moz-fit-content;
    /* min-height: 60px; */
    color: var(--text-2);
    font-family: Inter Light;
    font-size: 2.5em;
    /* font-weight: 501; */
}

.intro .sub-text {
  width: -moz-fit-content;
  color: var(--text-3);
  font-size: 1.6em;
  font-family: Inter Thin;
/* font-weight: 300; */
}

.intro .sub-heading span,
.intro .sub-text span {
  display: block;
  /* width: 0; */
}



/* @media (max-width: 1000px) { */
@media (orientation: portrait) {
    .intro {
        font-size: 14px;
    }
}









.intro {
    overflow: hidden;
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: intro-gradient 32s ease infinite;    
}

@keyframes intro-gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
