html,
body {
	height: 100%;
	padding: 0;
	margin: 0;
}

body {
	background-color: #231f20;
	font-family: "Montserrat";
	color: white;
}

/** 
*   Globals
*/
a {
	color: white;
	text-decoration: none;
}
.text-bold {
	font-weight: 700;
}
.mb-1 {
	margin-bottom: 1vmax;
}
.mb-2 {
	margin-bottom: 2vmax;
}
.mb-4 {
	margin-bottom: 4vmax;
}
.ml-1 {
	margin-left: 1vmax;
}
.ml-2 {
	margin-left: 2vmax;
}
.ml-4 {
	margin-left: 4vmax;
}
.mt-1 {
	margin-top: 1vmax;
}
.mt-2 {
	margin-top: 2vmax;
}
.mt-4 {
	margin-top: 4vmax;
}

/**
*   Button
*/
.btn {
	padding: 1vmax 2vmax;
	border-radius: 10px;
	border: 1px solid #fff;
	text-transform: uppercase;
	display: inline-block;
	box-sizing: border-box;
	font-size: 14px;
}
.btn img {
	margin-left: 10px;
}
.btn:hover {
	background-color: rgb(255 255 255 / 10%);
}
.btn.adex-media:hover {
	background-color: rgb(61 173 222 / 35%);
}
.btn.adex-tech:hover {
	background: rgb(0 48 153 / 35%);
}

/**
*   Menu
*/
.menu ul {
	display: flex;
	gap: 4vmax;
	list-style: none;
}
.menu-item {
	display: inline-block;
	text-transform: uppercase;
	position: relative;
}
.menu-item:after {
	transition: 0.5s;
	width: 0;
	content: "";
	position: absolute;
	bottom: 0;
}
.menu-item:hover:after {
	content: "";
	width: 100%;
	background: #fff;
	display: block;
	height: 1px;
}
.menu-item a {
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
}

/**
*   Page
*/
#page {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
}

header {
	padding: 0 4vmax;
	background-color: transparent;
}
header .inner {
	border-bottom: 1px solid #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1vmax 3vmax;
}
.left-side {
	line-height: 0;
}
main {
	flex: 1 1 auto;
	padding: 2vmax 4vmax;
	display: flex;
	align-items: center;
}
main .inner {
	padding: 4vmax 3vmax;
}
main h1 {
	margin-top: 0;
	font-weight: 700;
	font-size: 78px;
	line-height: 90px;
}
main h2 {
	margin-top: 0;
	font-weight: 400;
	font-size: 20px;
	line-height: 25x;

	text-transform: uppercase;
}
main p {
	font-weight: 400;
	font-size: 14px;
	line-height: 26px;
}

footer {
	padding: 0 4vmax;
	background-color: transparent;
}
footer .inner {
	border-top: 1px solid #fff;
	padding: 1vmax 3vmax;
	text-align: center;
}
.footer-bottom {
	display: none;
}

/**
*   Gradient
*/
#hoverGradient {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
}
.gradientColor {
	background-color: #ffffff;
	height: 34vmax;
	aspect-ratio: 1;
	position: absolute;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
	border-radius: 50%;

	background: -moz-linear-gradient(
		to right,
		rgba(0, 48, 153, 0.4) 50%,
		rgba(88, 215, 255, 1)
	);
	background: -webkit-linear-gradient(
		to right,
		rgba(0, 48, 153, 0.4) 50%,
		rgba(88, 215, 255, 1)
	);
	background: -o-linear-gradient(
		to right,
		rgba(0, 48, 153, 0.4) 50%,
		rgba(88, 215, 255, 1)
	);
	background: -ms-linear-gradient(
		to right,
		rgba(0, 48, 153, 0.4) 50%,
		rgba(88, 215, 255, 1)
	);
	background: linear-gradient(
		to right,
		rgba(0, 48, 153, 0.4) 50%,
		rgba(88, 215, 255, 1)
	);

	/*
	animation: rotate 20s infinite;
	opacity: 0.8;
	transform-origin: center center;
	*/
	z-index: 1;
}
.gradientBlur {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	-webkit-backdrop-filter: blur(7vmax);
	backdrop-filter: blur(7vmax);
}

@keyframes rotate {
	from {
		rotate: 0deg;
	}
	to {
		rotate: 360deg;
	}
}

@media screen and (max-width: 1024px) {
	body {
		font-size: 13px;
	}
	.btn {
		font-size: 13px;
	}
	main h1 {
		font-size: 60px;
		line-height: 72px;
	}
	main h2 {
		font-size: 16px;
		line-height: 18px;
	}
	main p {
		font-size: 13px;
		line-height: 25px;
	}
	.right-side {
		display: none;
	}
	.footer-bottom {
		display: block;
	}
}
@media screen and (max-width: 600px) {
	.btn {
		width: 100%;
		margin-left: 0;
		text-align: center;
	}
	header {
		padding: 4vmax 0 0 0;
	}
	main {
		padding: 0;
	}
	main h1 {
		font-size: 45px;
		line-height: 50px;
	}
	footer {
		padding: 0 0 4vmax 0;
	}
}
