@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Righteous&family=Raleway:wght@300;600&family=Raleway&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h1,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	cursor: url(""), auto;
	background-image: url("../img/bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: bottom;
	line-height: 1;
	max-width: 100%;
	min-width: 100%;
	width: 100%;
	overflow-x: hidden !important;
}

ul {
	list-style: none;
}

ol {
	list-style-type: none;
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

.container {
	max-width: 960px;
	width: 90%;
	margin: 0 auto;
	overflow-x: hidden;
}

.clearfix::after {
	content: "";
	clear: both;
	display: table;
}

.section-divider {
	border-top: 2px dotted #ccc;
	margin: 5% auto;
	width: 75%;
}

h3,
h4,
h5 {
	width: max-content;
	margin: 0 auto;
	font-family: "Righteous", sans-serif;
	font-size: 3.5rem;
	text-align: center;
	line-height: 50px;
	color: #2ca0fd;
	height: 3.25rem;
}

p {
	font-family: "Raleway", sans-serif;
	color: #222222;
	font-weight: bold;
	line-height: 18px;
	font-size: 1.15rem;
}

/*LOADING*/
.space {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	background-color: rgb(255, 255, 255);
	z-index: 9999;
}

.star,
.planet {
	position: absolute;
}

.star {
	width: 150px;
	height: 150px;
	background-image: url('./imgs/applinaut-circle.png');
	background-size: cover;
	border-radius: 50%;
	margin-bottom: 100px;
}

.planet {
	width: 20px;
	height: 20px;
	background-color: #2ca0fd;
	border-radius: 50%;
	animation: orbit 5s infinite linear;
}

.loading-text {
	font-size: 20px;
	margin-top: 100px;
	font-family: 'Raleway', sans-serif;
}


@keyframes orbit {
	0% {
		transform: rotate(0deg) translateX(150px);
	}

	100% {
		transform: rotate(360deg) translateX(150px);
	}
}


#nmls {
	font-family: "Raleway", sans-serif;
	font-size: 12px;
}

a:hover {
	cursor: crosshair;
}

strong {
	font-weight: bold;
}

::-webkit-scrollbar {
	width: 15px;
	height: 10px;
}

::-webkit-scrollbar-thumb {
	background: #ccc;
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: #2ca0fd;
}

::-webkit-scrollbar-track {
	background: #fff;
}

/*NAV BUTTON*/

.cta {
	margin: 0 auto;
	position: fixed;
	top: 30px;
	right: 5%;
	transform: translate(-50%, -50%);
	background-color: transparent;
	border: 2px solid #2ca0fd;
	text-align: center;
	text-decoration: none;
	width: 120px;
	height: 40px;
	border-radius: 6px;
	transition: 350ms ease-in-out 5ms;
	overflow-y: hidden;
	z-index: 9999 !important;
}

.cta:hover {
	transition: 0.5s ease-in-out 5ms;
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
	background-color: #2ca0fd;
	cursor: crosshair;
}

.cta a {
	color: #2ca0fd;
	font-family: "Righteous", sans-serif;
	font-size: 1rem;
	text-align: center;
	text-decoration: none;
	display: block;
	width: 100%;
	height: 40px;
	margin: 0 auto;
	padding-top: 11px;
	overflow-y: hidden;
}

.cta a:hover {
	color: #ffffff;
	cursor: crosshair;
	box-shadow: 0 7px 7px rgba(0, 0, 0, 0.1);
}

/* NAV */

.logo {
	position: fixed;
	top: 0;
	left: 0;
	margin: 10px 20px;
	z-index: 999;
	overflow: hidden;
	transition: 350ms all ease-in-out 5ms;
}

.logo:hover {
	transition: 350ms all ease-in-out 5ms;
	transform: scale(1.01);
	filter: grayscale(100%);
}

nav {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 998;
	overflow: visible;
	margin: 0 auto;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

nav ul {
	list-style: none;
	background-color: rgba(22, 22, 22, 0.25);
	color: #fff;
	padding: 0;
	text-align: center;
	margin: 0 auto;
	transition: 350ms all ease-in-out 5ms;
}

nav.black ul {
	background-color: #fff;
	transition: 350ms ease-in-out 5ms;
	transform: scale(1.015);
	color: #222222;
	z-index: 997;
}

nav.black ul a {
	color: #222222;
}


nav ul li {
	display: inline-block;
	padding: 20px;
}

nav ul li a {
	text-decoration: none;
	color: #fff;
	font-family: "Raleway", sans-serif;
	font-size: 1.2rem;
	z-index: 999;
	transition: 350ms all ease-in-out 5ms;
}

nav ul li a:hover {
	text-decoration: none;
	position: relative;
	font-weight: bold;
	transition: 350ms all ease-in-out 5ms;
	cursor: crosshair;
}

nav ul li a:hover::before {
	text-decoration: none;
	content: "";
	position: absolute;
	width: 100%;
	height: 4px;
	background-color: #2ca0fd;
	bottom: -4px;
	left: 0;
	animation: underline 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@keyframes underline {
	from {
		left: 0;
		width: 0%;
	}

	to {
		left: 0;
		width: 100%;
	}
}

.happli {
	padding-top: 5px;
	padding-left: 15px;
	width: 25px;
	height: 25px;
	filter: grayscale(0%);
	transition: 350ms all ease-in-out 5ms;
}

.happli:hover {
	filter: grayscale(100%);
	transform: scale(1.05);
	transition: 350ms all ease-in-out 5ms;
}

/* Style for dropdown */
.dropdown .dropbtn {
	color: #fff;
	font-family: "Raleway", sans-serif;
	font-size: 1.2rem;
	text-decoration: none;
}

/* Dropdown Content */
.dropdown-content {
	display: none;
	position: absolute;
	background-color: rgba(22, 22, 22, 0.25);
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
	z-index: 9999;
	margin-top: .5%;
}

/* Links inside dropdown */
.dropdown-content a {
	color: #fff;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
	z-index: 1001;
	transition: background-color 350ms ease-in-out, color 350ms ease-in-out;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
	background-color: #2ca0fd;
	color: #fff;
	font-weight: bold;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
	display: block;
}

nav.black .dropdown .dropbtn {
	color: #222222;
}

nav.black .dropdown-content {
	background-color: #fff;
	z-index: 1001;
}


/*Menu Icon*/

.menu-icon {
	width: 100%;
	background-color: #fff;
	text-align: right;
	box-sizing: border-box;
	padding: 2%;
	display: none;
	overflow: hidden;
}

.clk i {
	overflow: hidden;
	color: #ccc;
	transition: 350ms ease-in-out 5ms;
}

.clk i:hover {
	color: #2ca0fd;
	transition: 350ms ease-in-out 5ms;
}


/* HERO */

.star,
.planet {
	border-radius: 100%;
	position: absolute;
	display: block;
}

.star {
	animation: twinkle 60s linear infinite normal;
	background: #f6f6f6;
	z-index: 0;
	left: 100%;
	top: 100%;
}

.planet {
	animation: twinkle 60s linear infinite normal;
	box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.5);
	border-radius: 100%;
	z-index: 1;
	left: 100%;
	top: 100%;
}

@keyframes twinkle {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(0);
		opacity: 0;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.line-1 {
	position: relative;
	top: 50%;
	width: 24em;
	margin: 0 auto;
	border-right: 2px solid rgba(255, 255, 255, 0.75);
	font-size: 180%;
	font-weight: bold;
	color: #fff;
	font-family: "Raleway", sans-serif;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	transform: translateY(-50%);
}

/* Animation */
.anim-typewriter {
	animation: typewriter 4s steps(44) 1s 1 normal both,
		blinkTextCursor 500ms steps(44) infinite normal;
}

@keyframes typewriter {
	from {
		width: 0;
	}

	to {
		width: 17.25em;
	}
}

@keyframes blinkTextCursor {
	from {
		border-right-color: rgba(255, 255, 255, 0.75);
	}

	to {
		border-right-color: transparent;
	}
}

.show {
	display: none;
}

.hero {
	background: linear-gradient(to bottom,
			rgb(0, 7, 24) 55%,
			rgba(255, 255, 255, 0) 100%);
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero h1 {
	color: #fff;
	font-family: "Righteous", sans-serif;
	font-size: 3.75rem;
	text-align: center;
	margin: 1.5% auto;
}

.hero h2 {
	font-size: 1.5rem;
	font-family: "Raleway", sans-serif;
	font-weight: 300;
	color: #ffffff;
	margin: 2.5% auto;
	text-align: center;
	line-height: 30px;
}

.center-content {
	width: 90%;
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: auto;
	overflow: hidden;
}

.center-content #first {
	color: transparent;
	background: linear-gradient(to bottom right, #2ca0fd, #fff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.center-content #first.gradient-animation {
	animation: gradient-loop 10s linear infinite alternate;
	background-size: 300% 150%;
	background-image: linear-gradient(to right,
			rgb(44, 159, 253),
			#fff,
			rgb(44, 159, 253));
	backdrop-filter: blur(10px);
}

/* Define the animation */
@keyframes gradient-loop {
	0% {
		background-position: 0% 50%;
	}

	100% {
		background-position: 300% 100%;
		animation-timing-function: ease-in-out;
	}
}

.center-content #period {
	color: #2ca0fd;
}

.center-content button {
	margin: 50px auto;
	background-color: #2ca0fd;
	border: 3px solid #ccc;
	text-align: center;
	text-decoration: none;
	width: 220px;
	height: 60px;
	border-radius: 10px;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
	animation: glow 3s infinite;
	z-index: 900;
}

.center-content button a {
	color: #fff;
	font-family: "Righteous", sans-serif;
	font-size: 1.25rem;
	text-align: center;
	text-decoration: none;
	height: 100%;
	padding-top: 12px;
	margin: 0 auto;
	display: block;
	transition: all 0.3s ease-in-out;
}

.center-content button:hover,
.center-content button a:hover {
	background-color: #fff;
	color: #2ca0fd;
	border-color: #2ca0fd;
	transition: all 0.3s ease-in-out;
	cursor: crosshair;
}

.arrow-container {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: 10%;
	width: 100%;
	transform: translateX(-50%);
	animation: bounce 2s infinite;
}

.arrow-container a {
	display: block;
	color: #2ca0fd;
	font-size: 5rem;
	text-align: center;
	transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
	transform: scale(1);
}

.arrow-container a:hover {
	color: transparent;
	background: linear-gradient(to bottom, #2ca0fd, #fff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transform: scale(1.1);
}

.arrow-container a.transition {
	transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

@keyframes bounce {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-20px);
	}
}

/* MISSION */

.hidden {
	opacity: 0;
}

.card-container {
	display: flex;
	justify-content: center;
}

.container1 {
	width: 1000px;
	max-width: 100%;
	height: 100%;
	margin: 0 auto;
	margin-top: 70px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.card {
	padding: 8px;
	border-radius: 12px;
	border: 3px solid #2ca0fd;
	-webkit-mask: linear-gradient(#2ca0fd 0 0) top / var(--d, 100%) 5px,
		linear-gradient(#2ca0fd 0 0) bottom/var(--d, 100%) 5px,
		linear-gradient(#2ca0fd 0 0) left / 5px var(--d, 100%),
		linear-gradient(#2ca0fd 0 0) right / 5px var(--d, 100%),
		linear-gradient(#2ca0fd 0 0) center / calc(100% - 12px) calc(100% - 12px);
	-webkit-mask-repeat: no-repeat;
	width: 280px;
	height: 320px;
	gap: 1rem;
	overflow: hidden;
	display: inline-block;
}

#card-1:hover,
#card-2:hover,
#card-3:hover {
	--d: 50%;
	position: relative;
	z-index: 989;
	transform: translate(0, -5px);
	transition: 0.3s all ease-in-out;
}

#card-1 {
	border-radius: 10px;
	overflow: hidden;
	transition: 0.5s all ease-in-out;
}

#card-2 {
	border-radius: 10px;
	overflow: hidden;
	transition: 0.7s all ease-in-out;
}

#card-3 {
	border-radius: 10px;
	overflow: hidden;
	transition: 0.8s all ease-in-out;
}

.card__img {
	width: 128px;
	margin: 0 auto;
	overflow: hidden;
}

.card__img i {
	font-size: 4rem;
	display: block;
	position: relative;
	color: #2ca0fd;
	margin: 0 auto;
	text-align: center;
	padding-bottom: 20%;
	padding-top: 15%;
}

.card__heading {
	font-family: "Righteous", sans-serif;
	font-size: 2rem;
	text-align: center;
	color: #2ca0fd;
	margin: 0 auto;
	overflow: hidden;
}

.card__description {
	font-family: "Raleway", sans-serif;
	font-size: 1.2rem;
	text-align: center;
	line-height: 26px;
	font-weight: bold;
	margin: 5% auto;
	padding: 5px;
	overflow: hidden;
}

.card__description a {
	color: #222;
}

.flex-container {
	margin: 50px 0px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	overflow: hidden;
}

/* ABOUT */

.about {
	overflow: visible;
}

a {
	color: #ccc;
	text-decoration: none;
}

.top-title {
	font-family: "Raleway", sans-serif;
	font-weight: lighter;
	color: #222;
	font-size: 3.75rem;
	padding-top: 10px;
}

.top-title span {
	color: #2ca0fd;
	font-family: "Righteous", sans-serif;
	padding-top: 10px;
	font-weight: normal;
}

.column {
	max-width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
}

.card-abt {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.card-abt ul li {
	font-family: "Raleway", sans-serif;
	margin: 7.5% auto;
	color: #222222;
	font-size: 1.15rem;
	display: flex;
	align-items: baseline;
	line-height: 27px;
}

.bullet {
	font-size: 33px;
	padding: 1px;
	color: #fff;
	background-color: #2ca0fd;
	border: 2px solid #2ca0fd;
	border-radius: 50%;
	display: inline-block;
	vertical-align: middle;
	margin: 0 2.5%;
	transform: translateY(50%);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-abt img {
	width: 420px;
	margin: auto auto;
	border-radius: 50%;
	border: 7px solid #2ca0fd;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
}

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

.apply button:hover {
	background-color: #2ca0fd;
	color: #fff;
	transition: all 0.5s ease-in-out;
	box-shadow: 0 7px 7px rgba(0, 0, 0, 0.3);
}

#apply {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 90%;
	background-color: transparent;
	color: #2ca0fd;
	border: 2px solid #2ca0fd;
	border-radius: 6px;
	font-family: "Righteous", sans-serif;
	font-size: 1.25rem;
	transition: all 0.5s ease-in-out;
	box-sizing: border-box;
	margin-bottom: 10px;
}

#apply:hover {
	background-color: #2ca0fd;
	color: #fff !important;
	transition: all 0.5s ease-in-out;
	box-shadow: 0 7px 7px rgba(0, 0, 0, 0.3);
}

#apply a {
	color: #2ca0fd;
	width: 100%;
	height: 100%;
	padding: 10px;
}

#apply a:hover {
	color: white;
}

/* AREAS */

.flex-section {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	width: 75%;
}

.text-box {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	box-sizing: border-box;
	margin: 0 auto;
	width: 100%;
}

p[data-aos="fade-in"] {
	border-image: linear-gradient(to right, #fff, #2ca0fd) 1 / 3px 3px 0;
	border-style: solid;
	border-top: 3px solid #2ca0fd;
	padding-top: 15px;
	padding-right: 5px;
	transition: all 0.7s ease-in-out;
}

.button-container {
	display: flex;
	flex: wrap;
	justify-content: space-around;
	width: 80%;
	margin: 0 auto;
	transition: all 0.7s ease-in-out;
}

.button-left {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48%;
	background-color: #2ca0fd;
	border: 2px solid #2ca0fd;
	color: #fff;
	border-radius: 6px;
	font-family: "Righteous", sans-serif;
	font-size: 1.25rem;
	padding: 10px;
	transition: all 0.7s ease-in-out;
	box-sizing: border-box;
}

.button-right {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48%;
	background-color: transparent;
	color: #2ca0fd;
	border: 2px solid #2ca0fd;
	border-radius: 6px;
	font-family: "Righteous", sans-serif;
	font-size: 1.25rem;
	padding: 10px;
	transition: all 0.7s ease-in-out;
	box-sizing: border-box;
}

.button-left:hover,
.button-left:hover>a {
	background-color: transparent;
	color: #2ca0fd;
	transition: all 0.7s ease-in-out;
}

.button-right:hover,
.button-right:hover>a {
	background-color: #2ca0fd;
	color: #fff;
	transition: all 0.7s ease-in-out;
}

.button-left>a,
.button-right>a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: inherit;
}

.button-left:hover,
.button-right:hover {
	box-shadow: 0 7px 7px rgba(0, 0, 0, 0.3);
	transition: all 0.7s ease-in-out;
}

.text-box h5 {
	text-align: center;
	width: 50%;
	box-sizing: border-box;
	font-family: "Raleway", sans-serif;
	color: #222;
	font-weight: normal;
}

.text-box p {
	text-align: left;
	width: 50%;
	box-sizing: border-box;
	font-weight: normal;
	line-height: 1.5rem;
}

.text-box p span {
	font-weight: bold;
	color: #2ca0fd;
	font-size: 1.5rem;
}

.image-gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin: 2.5% auto;
}

.image-gallery figure {
	margin: 0;
	flex-basis: calc(25% - 20px);
	margin-bottom: 20px;
}

.image-gallery img {
	display: block;
	width: 100%;
	transition: all 0.3s ease-in-out;
}

.swap-image1:hover img {
	content: url("../img/1-2.png");
	transition: all 0.3s ease-in-out;
}

.swap-image2:hover img {
	content: url("../img/2-2.png");
	transition: all 0.3s ease-in-out;
}

.swap-image3:hover img {
	content: url("../img/3-2.png");
	transition: all 0.3s ease-in-out;
}

.swap-image4:hover img {
	content: url("../img/4-2.png");
	transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 768px) {
	.logo {
		display: block;
	}

	nav.black ul {
		height: 700px;
	}

	.flex-section {
		flex-direction: column;
		width: 90%;
	}

	.text-box h5,
	.text-box p {
		width: 100%;
	}

	.text-box h5 {
		margin-right: 0px;
		margin-bottom: 10px;
	}

	.text-box p {
		margin-left: 0px;
	}

	.image-gallery,
	.text-section {
		width: 100%;
	}

	.image-gallery figure {
		flex-basis: calc(50% - 20px);
	}

	.button-container {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
		margin: 0 auto;
	}

	.button-left {
		width: 100%;
		margin-bottom: 10px;
	}

	.button-right {
		width: 100%;
	}
}

/* SOCIAL */

#contact {
	justify-content: center;
	align-items: center;
	--color-bright: #2ca0fd;
	background: transparent;
	margin: 0 auto;
	overflow: visible;
}

#contact:hover {
	overflow: visible;
}

#contact .links {
	display: flex;
	flex-wrap: wrap;
	max-width: 800px;
	min-height: 250px;
	align-items: center;
	justify-content: center;
	align-items: center;
	justify-content: space-evenly;
	margin: 0 auto;
	overflow: hidden;
}

#contact a {
	text-decoration: none;
	color: var(--color-bright);
	font-size: 3rem;
	overflow: visible;
}

#contact .links a {
	display: block;
	position: relative;
	overflow: visible;
}

#contact .links a::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 2px solid transparent;
	transition: all 0.3s;
	overflow: visible;
}

#contact .links a:hover::after {
	transform: rotate(35deg) skew(-20deg);
	--transformed-box-diagonal-length: 164%;
	width: var(--transformed-box-diagonal-length);
	left: calc((100% - var(--transformed-box-diagonal-length)) / 2);
	overflow: visible;
	cursor: crosshair;
}

#contact .links a div {
	position: relative;
	display: block;
	width: 75px;
	height: 75px;
	transition: ease-in-out 0.3s;
	overflow: visible;
}

#contact .links a:hover div {
	transform: rotate(-35deg) skew(20deg);
	overflow: visible;
}

#contact p,
.main p {
	margin: 1.5% auto;
	padding: 20px;
	text-align: center;
	max-width: 670px;
	font-family: "Raleway", sans-serif;
	font-weight: normal;
	font-size: 1.5rem;
	line-height: 2rem;
}

.links a span {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: 0.5s;
	transition-duration: 0.5s;
	border: 2px solid var(--color-bright);
	border-color: var(--color-bright);
	border-radius: 6px;
	overflow: visible;
}

.links a span:nth-child(5) {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	border-color: var(--color-bright);
	overflow: visible;
}

.links a:hover span:nth-child(5) {
	transform: translate(20px, -20px);
	overflow: visible;
	opacity: 1;
}

.links a:hover span:nth-child(4) {
	transform: translate(15px, -15px);
	overflow: visible;
	opacity: 0.8;
}

.links a:hover span:nth-child(3) {
	transform: translate(10px, -10px);
	overflow: visible;
	opacity: 0.6;
}

.links a:hover span:nth-child(2) {
	transform: translate(5px, -5px);
	overflow: visible;
	opacity: 0.4;
}

.links a:hover span:nth-child(1) {
	overflow: visible;
	opacity: 0.2;
}

/*TEAM*/

/* Hide the modal by default */
.modal {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9999;
	width: 80%;
	height: 80%;
	background-color: #222;
	border: 1px solid #ccc;
	border-radius: 10px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
	padding: 5px;
	overflow: auto;
}

.overlay {
	display: none;
	position: fixed;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9998;
}

.close-button {
	top: 10;
	right: 1.5%;
	font-size: 60px;
	font-family: "Raleway", sans-serif;
	color: white;
	background: transparent;
	border: none;
	cursor: crosshair;
	position: absolute;
	z-index: 9999;
	margin: 5px;
	transition: all 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.close-button:hover {
	color: #2ca0fd;
	transition: all 0.3s ease-in-out, filter 0.3s ease-in-out;
	transform: scale(1.25);
}

/* FOOTER */

h6 {
	margin: 20px auto 10px auto;
	text-decoration: underline;
	font-family: "Righteous", sans-serif;
	font-size: 1.25rem;
	color: #2ca0fd;
	overflow: hidden;
}

.footer {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-around;
	color: #222;
	background-color: transparent;
	border-top: 2px dotted #ccc;
	width: 75%;
	margin: 0 auto;
}

.footer>* {
	flex: 1 100%;
	padding-left: 50px;
}

.footer__addr {
	margin-right: 1.25em;
	margin-bottom: 1em;
}

.footer__logo {
	font-family: "Righteous", sans-serif;
	text-transform: lowercase;
	overflow: hidden;
	margin-top: 20px;
	filter: contrast(50%);
	transition: all 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.footer__addr a {
	margin-top: 1.3em;
	font-size: 15px;
	transition: 350ms ease-in-out 5ms;
	border-bottom: 2px solid transparent;
	padding: 0px;
}

.footer__logo a img:hover {
	filter: contrast(0%);
	transition: all 0.3s ease-in-out;
}

.footer__addr a:hover {
	color: #2ca0fd;
	cursor: crosshair;
	/* cursor: url(""), auto; */
}

.nav__title {
	font-family: "Righteous", sans-serif;
	color: #2ca0fd;
	font-size: 1.25rem;
	text-align: left;
}

.footer address {
	font-family: "Raleway", sans-serif;
	font-style: normal;
	color: #222;
	overflow: hidden;
	padding-top: 20px;
}

.footer__btn {
	font-family: "Righteous", sans-serif;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	max-width: max-content;
	background-color: rgb(22, 22, 22);
	border-radius: 6px;
	color: transparent;
	line-height: 0;
	margin: 0.6em 0;
	font-size: 1rem;
	padding: 0 1.3em;
}

.footer ul {
	list-style: none;
	padding-left: 0;
}

.footer li {
	line-height: 2em;
}

.footer a {
	text-decoration: none;
	color: #222;
	font-family: "Raleway", sans-serif;
}

.footer__nav {
	display: flex;
	flex-flow: row wrap;
}

.footer__nav>* {
	flex: 1 50%;
	margin-right: 1.25em;
	padding-left: 20px;
}

.nav__ul a {
	font-family: "Raleway", sans-serif;
	color: #222;
	transition: 350ms ease-in-out 5ms;
	border-bottom: 1px solid transparent;
	padding: 0px;
}

.nav__ul li {
	overflow: hidden;
}

.nav__ul li a:hover {
	color: #2ca0fd;
	cursor: crosshair;
	text-decoration: underline;
}

.nav__ul--extra {
	column-count: 1;
	column-gap: 1.25em;
}

.legal {
	display: flex;
	flex-wrap: wrap;
	background-color: #2ca0fd;
	border-radius: 11px 11px 0 0;
	height: max-content;
	margin: 0 auto;
	padding: 1%;
	overflow: hidden;
}

.legal p {
	font-size: 12px;
	color: #fff;
	font-weight: normal;
	margin: auto auto;
	text-align: center;
}

.legal__links {
	display: flex;
	align-items: center;
	color: #ccc;
	font-size: 11px;
}

svg {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
}

#info {
	display: block;
	text-align: center;
	font-size: 15px;
	font-family: "Raleway", sans-serif;
	font-weight: 600;
	text-decoration: none;
	margin: 0 auto;
	z-index: 900;
	color: #be9fdd;
}

a:active {
	color: #2ca0fd;
	text-decoration: none;
}

#italic {
	font-style: italic;
}

/* ADJUST */

#abt,
#feat,
#soc {
	padding-top: 150px;
	overflow: hidden;
}

@keyframes glow {
	0% {
		box-shadow: 0 0 0 rgba(255, 255, 255, 0.7), 0 0 0 rgba(255, 255, 255, 0.7);
	}

	25% {
		box-shadow: 0 0 1px rgba(255, 255, 255, 0.7),
			0 0 20px rgba(255, 255, 255, 0.7);
	}

	50% {
		box-shadow: 0 0 2px rgba(255, 255, 255, 0.7),
			0 0 30px rgba(255, 255, 255, 0.7);
	}

	75% {
		box-shadow: 0 0 1px rgba(255, 255, 255, 0.7),
			0 0 20px rgba(255, 255, 255, 0.7);
	}

	100% {
		box-shadow: 0 0 0 rgba(255, 255, 255, 0.7), 0 0 0 rgba(255, 255, 255, 0.7);
	}
}

/* WIDGETS */
.cCxrAJ {
	font-family: 'Raleway', sans-serif !important;
}

.jfWkxL {
	font-family: "Raleway", sans-serif;
}

.dFwLrb,
.gBQoNy {
	background-color: transparent !important;
}

.dMqihn {
	font-family: "Raleway", sans-serif !important;
}

.joSrve {
	font-family: "Raleway", sans-serif !important;
}

.WidgetTitle__Header-sc-ruy1gu-2,
.liuSaH {
	font-family: "Righteous", sans-serif;
}

.ijBgqA {
	color: #fff !important;
}

.BadgeContainer__Inner-sc-pa6z2-0 {
	background: #2ca0fd !important;
	opacity: 0.75 !important;
}

.RatingValue__Container-sc-1eexc2w-0,
.BadgeTotalReviews__Content-sc-1sj93r3-0 {
	color: #fff !important;
	font-family: "Raleway", sans-serif !important;
}

.elfsight-app-150281e7-1109-46bb-a456-671d1c334901 {
	float: left;
	overflow-x: visible;
}

.ButtonBase__Ellipsis-sc-p43e7i-5 {
	font-family: "Righteous", sans-serif;
	text-transform: uppercase;
}

.jTtkLi,
.VDkXA {
	color: #2ca0fd !important;
	font-family: "Righteous", sans-serif;
	font-size: 1rem;
}

.Header__AnswerTime-sc-5nh99s-3,
.FacebookChat__Message-sc-ftsbah-6 {
	font-family: "Raleway", sans-serif !important;
}

.BadgeContainer__Inner-sc-pa6z2-0:hover {
	cursor: crosshair;
}

.Bubble__BubbleComponent-sc-13azvyr-3:hover {
	cursor: crosshair;
}

.elfsight-app-eb5a8b35-6d81-4b0e-b42c-e059c4fbab59 {
	margin: 0 auto;
}

.cMdLqA,
.jFrjyt {
	font-family: sans-serif;
}

.Content__Font-sc-3sh3bs-0,
.qhlWn {
	font-family: "Raleway", sans-serif;
}

.cuyqfn {
	font-family: "Righteous", sans-serif;
	text-transform: uppercase;
}

.bkpWYk {
	font-family: "Righteous", sans-serif;
}

.iAIudy {
	font-family: "Raleway", sans-serif;
}

/* MEDIA QUERIES */

@media screen and (min-width: 24.375em) {
	.legal .legal__links {
		margin-left: auto;
	}
}

@media screen and (min-width: 50em) {
	.footer__nav>* {
		flex: 1;
	}

	.nav__item--extra {
		flex-grow: 2;
	}

	.footer__addr {
		flex: 1 0px;
	}

	.footer__nav {
		flex: 2 0px;
	}
}

/*typewriter disabled here*/
@media only screen and (max-width: 10000px) {
	.line-1 {
		display: none;
	}

	.show {
		display: block;
		font-size: 1.5rem;
		font-family: "Raleway", sans-serif;
		font-weight: bold;
		color: #fff;
	}
}

@media only screen and (max-width: 1111px) {
	.logo {
		position: fixed;
		top: 15px;
		left: -75px;
	}

	.top-title {
		font-size: 3.5rem;
	}

	.container {
		width: 100%;
	}

	.line-1 {
		display: none;
	}

	.show {
		display: block;
		font-size: 1.5rem;
		font-family: "Raleway", sans-serif;
		font-weight: bold;
		color: #fff;
	}
}

@media only screen and (max-width: 1250px) {
	.logo {
		top: 1.75%;
		left: 0;
		margin: 10px 0 0 -40px;
	}

	.cta {
		display: none;
	}

	nav ul {
		max-height: 0px;
		background: rgba(22, 22, 22, 0.95);
		overflow: hidden;
	}

	nav.black ul {
		background: rgba(255, 255, 255, 0.95);

	}

	.showing {
		max-height: 40em;
		border-top: solid 1px #ccc;
		border-bottom: solid 1px #ccc;
	}

	nav ul li {
		box-sizing: border-box;
		width: 100%;
		padding: 24px 0px;
		text-align: center;
	}

	.menu-icon {
		display: block;
		font-size: 30px;
		padding-top: 20px;
	}

	.clk {
		overflow: hidden;
	}

	.dropdown-content {
		margin: 0 auto;
		border: solid 1px #2ca0fd;
		background-color: #ccc;
		width: 100%;
		position: static;
	}

	.dropdown-content a {
		margin: 0 auto;
		display: block;
		text-align: center;
		z-index: 9999;
	}

	.hero .center-content h1 {
		line-height: 3rem;
		overflow: hidden;
		height: 120px;
	}

	.happli {
		margin: 0 auto;
		padding: 0;
		padding-bottom: 20px;
	}

	.top-title {
		font-size: 3rem;
	}
}

@media only screen and (max-width: 960px) {
	.cta {
		position: fixed;
		top: 3.7%;
		right: 5%;
		transform: translate(-50%, -50%);
	}

	.box {
		margin: 10px;
		width: 30%;
	}

	.card {
		width: 28%;
		margin: 0.5%;
	}

	.container1 {
		justify-content: space-between;
		align-items: center;
	}

	.top-title {
		font-size: 2.75rem;
	}
}

@media only screen and (max-width: 860px) {
	.hero h1 {
		font-size: 3rem;
	}

	.container1 {
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
	}

	.box {
		width: 50%;
	}

	.card {
		width: 60%;
		margin: 1.5%;
	}

	.column {
		display: block;
		margin: 10% auto;
	}

	.card-abt {
		width: 90%;
	}

	.card-abt img {
		width: 90%;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-left: 9%;
	}

	.top-title {
		font-size: 5.75rem;
		text-align: center !important;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 2.5%;
	}
}

@media only screen and (max-width: 800px) {

	.main-container,
	.heading-container,
	.flex-container {
		margin: 50px auto;
	}

	.main-container {
		width: 90%;
	}

	.heading-container,
	.flex-container,
	.card-container {
		width: 100%;
	}

	.footer__nav {
		margin-left: 30px;
	}

	.footer {
		display: flex;
		margin-bottom: 10px;
	}
}

@media only screen and (max-width: 768px) {
	.hero h1 {
		width: 100%;
		margin: 0 auto;
		text-align: center;
		font-size: 3rem;
	}

	h3,
	h4,
	h5 {
		font-size: 2.5rem;
		width: 95%;
		margin: 0 auto;
	}

	.column {
		margin-top: 50px;
	}

	.box {
		width: 50%;
	}

	.top-title {
		font-size: 4.75rem;
		text-align: center !important;
	}

	.footer {
		width: 90%;
	}
}

@media only screen and (max-width: 640px) {
	nav {
		float: right;
		padding: 0;
		margin: 0 auto;
		font-size: 2rem;
		width: 100%;
	}

	.logo {
		display: block;
	}

	.center-content h1 {
		margin: 0 auto;
		font-size: 3rem;
	}

	.hero h2 {
		font-size: 1.5rem;
		line-height: 1.55rem;
	}

	.menu-icon {
		font-size: 1.7rem;
	}

	.box {
		width: 80%;
	}

	.box .content p {
		margin-top: 45px;
		font-size: 0.85rem;
	}

	.card {
		width: 80%;
	}

	.top-title {
		font-size: 4.25rem;
		text-align: center;
	}

	.main p {
		font-size: 1.3rem;
		line-height: 1.35rem;
		text-align: left;
	}
}

@media only screen and (max-width: 550px) {

	#contact p,
	.main p {
		font-size: 1.1rem;
		text-align: left;
	}

	.hero h1 {
		font-size: 3rem;
	}

	.hero h2 {
		font-size: 1.35rem;
		line-height: 1.4rem;
	}

	.line-1 {
		display: none;
	}

	.show {
		display: block;
		font-size: 1.5rem;
		font-family: "Raleway", sans-serif;
		font-weight: bold;
		color: #fff;
	}

	.top-title {
		font-size: 3.65rem;
		text-align: center;
	}

	.modal {
		width: 90%;
	}
}

@media only screen and (max-width: 480px) {
	nav {
		width: 100%;
	}

	.hero h1 {
		font-size: 2.65rem;
		margin: 0 auto;
		text-align: center;
	}

	.hero h2 {
		font-size: 1.2rem;
		line-height: 1.25rem;
	}

	.show {
		font-size: 1.15rem;
	}

	.top-title {
		font-size: 2.85rem;
		text-align: center;
	}
}

@media only screen and (max-width: 420px) {
	.hero h1 {
		font-size: 3.25rem;
	}

	.hero h2 {
		font-size: 1.15rem;
		line-height: 1.2rem;
	}
}

@media only screen and (max-width: 375px) {
	.vcenter {
		margin: 0 auto;
		padding: 0;
	}

	.hero h1 {
		font-size: 3.2rem;
		line-height: 3rem;
	}

	.hero h2 {
		font-size: 1rem;
		line-height: 1.05rem;
	}

	.show {
		font-size: 1rem;
	}

	.top-title {
		font-size: 2.45rem;
		text-align: center;
	}
}

@media only screen and (max-width: 320px) {
	.top-title {
		font-size: 2.25rem;
		text-align: center;
	}
}