/*Fonts include*/

@font-face {
	font-family: 'gilroy';
	src: url('../fonts/Gilroy/Gilroy-Light.woff2');
	font-weight: 300;
	font-display: swap;
}

@font-face {
	font-family: 'gilroy';
	src: url('../fonts/Gilroy/Gilroy-Regular.woff2');
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: 'gilroy';
	src: url('../fonts/Gilroy/Gilroy-Medium.woff2');
	font-weight: 500;
	font-display: swap;
}

@font-face {
	font-family: 'gilroy';
	src: url('../fonts/Gilroy/Gilroy-Semibold.woff2');
	font-weight: 600;
	font-display: swap;
}

@font-face {
	font-family: 'gilroy';
	src: url('../fonts/Gilroy/Gilroy-Bold.woff2');
	font-weight: 700;
	font-display: swap;
}

@font-face {
	font-family: 'gilroy';
	src: url('../fonts/Gilroy/Gilroy-Extrabold.woff2');
	font-weight: 800;
	font-display: swap;
}

/*Base CSS*/

* {
	font-family: gilroy, sans-serif;
	box-sizing: border-box;
	outline: none;
}

body {
	font-size: 16px;
	min-width: 320px;
	font-weight: 400;
	position: relative;
	margin: 0;
	line-height: 1.5;
	overflow-x: hidden;
	opacity: 1;
	color: #000;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: #0c1c33;
}

body.ovhid {
	overflow: hidden;
}

b,
strong {
	font-weight: 700;
}

img {
	width: 100%;
	display: inline-block;
}

a {
	text-decoration: none;
}

.container {
	position: relative;
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

/*Header CSS*/

.top__screen {
	position: relative;
	background: #0c1c33;
	overflow: hidden;
	z-index: 1;
}

.header {
	width: 100%;
	padding-bottom: 80px;
	z-index: 1;
}

.particles {
	position: absolute;
	width: 100%;
	height: 100vh;
	z-index: -1;
}

.grid__deco {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	z-index: -3;
}

.grid__deco span {
	display: block;
	width: 2px;
	height: 100%;
	background-color: #0e203b;
	justify-self: center;
}

.circle__deco {
	position: absolute;
	left: -18%;
	top: 22%;
	width: 110vw;
	height: 110vw;
	border-radius: 100%;
	background: linear-gradient(35deg, #0c1c33, #081228);
	opacity: 0.6;
	z-index: -1;
}

.top__line {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transition: background 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease, box-shadow 0.3s ease,
		padding-top 0.3s ease, padding-bottom 0.3s ease;
	padding-top: 54px;
	padding-bottom: 20px;
	z-index: 100000;
}

.top__line--fixed {
	position: fixed;
	background: rgba(0, 0, 0, 0.55);
	-webkit-backdrop-filter: saturate(200%) blur(20px);
	backdrop-filter: saturate(200%) blur(20px);
	padding-top: 8px !important;
	padding-bottom: 9px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.top__line--fixed-mm {
	background: rgba(0, 0, 0, 0.55);
	-webkit-backdrop-filter: saturate(200%) blur(20px);
	backdrop-filter: saturate(200%) blur(20px);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.top__line .container {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 20px;
	align-items: center;
}

.logo {
	color: #fff;
	font-size: 26px;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.menu {
	justify-self: center;
}

.menu a {
	position: relative;
	display: inline-block;
	color: rgba(255, 255, 255, 0.8);
	margin: 0 25px;
	letter-spacing: 1px;
	transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.menu a:before {
	content: '';
	position: absolute;
	right: 0;
	bottom: -4px;
	width: 0;
	height: 2px;
	border-radius: 2px;
	background: linear-gradient(90deg, #006df4, #00c8dd);
	transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.menu a:hover,
.menu .menu__link--active {
	color: #fff;
	text-shadow: 0 0 3px #fff;
}

.menu a:hover:before,
.menu .menu__link--active:before {
	left: 0;
	width: 100%;
}

.btn {
	position: relative;
	border: none;
	border-radius: 10em;
	color: #fff;
	z-index: 2;
	cursor: pointer;
	font-weight: 500;
}

.btn:active {
	transform: scale(0.98);
}

.phone__number {
	background: linear-gradient(90deg, #006df4, #00c8dd);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 900;
	font-size: 22px;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 7px;
}

.phone__number:hover {
	filter: brightness(1.2);
}

.phone__number svg {
	fill: #0080ef;
	width: 30px;
}

.phone__number:hover svg {
	animation: call 1.2s ease infinite;
}

@keyframes call {
	0% {
		transform: rotate(0);
	}
	10% {
		transform: rotate(30deg);
	}
	20% {
		transform: rotate(-20deg);
	}
	30% {
		transform: rotate(10deg);
	}
	40% {
		transform: rotate(-5deg);
	}
	50% {
		transform: rotate(0);
	}
}

.mouse-icon {
	border: 1px solid #78b4ff;
	border-radius: 16px;
	height: 40px;
	width: 26px;
	display: table;
	opacity: 0.7 !important;
	margin: 100px auto 0;
	animation-delay: 0.8s;
	box-shadow: 0 0 10px #78b4ff;
}

.mouse-icon .wheel {
	position: relative;
	background: #78b4ff;
	width: 1px;
	height: 6px;
	top: 4px;
	margin: 0 auto;
	animation: wheel 1.2s linear infinite;
}

@keyframes wheel {
	0% {
		top: 5px;
		opacity: 0;
	}
	30% {
		top: 10px;
		opacity: 1;
	}
	100% {
		top: 25px;
		opacity: 0;
	}
}

.btn {
	background: linear-gradient(90deg, #006df4, #00c8dd);
	font-size: 20px;
	font-weight: 600;
	padding: 16px 45px;
	letter-spacing: 0.5px;
	box-shadow: 0 0 10px #0185b8;
	border: none;
	border-radius: 13px;
	margin: auto;
	display: table;
	color: #fff;
	cursor: pointer;
	margin-top: 30px;
}

.header__intro--info {
	margin-top: 250px;
	max-width: 790px;
	width: 100%;
}

h1 {
	margin: 0;
	font-size: 60px;
	color: #4390f0;
	line-height: 1.15;
}

h1 b {
	color: #fff;
	text-shadow: 0 0 20px rgba(0, 220, 255, 0.5);
}

.header__intro span {
	color: #fff;
	font-size: 20px;
	display: block;
	max-width: 560px;
	width: 100%;
	margin: 30px 0 90px;
	letter-spacing: 1px;
	animation-delay: 0.5s;
}

.intro__face {
	position: absolute;
	width: 580px;
	top: -50%;
	right: -10%;
	z-index: -1;
	animation-delay: 1.1s;
}
