/*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-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: 900;
	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: #fff;
	transition: opacity .3s ease;
}

b,
strong {
	font-weight: 700;
}

img {
	width: 100%;
}

.container {
	position: relative;
	max-width: 1160px;
	width: 100%;
	padding: 0 20px;
	margin: auto;
}

/*Header CSS*/
.header {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	padding: 40px 0;
	z-index: 999;
	transition: all .3s ease;
}

.header__fixed {
	position: fixed;
	background: rgba(25, 31, 36, .85);
	-webkit-backdrop-filter: saturate(200%) blur(20px);
	backdrop-filter: saturate(200%) blur(20px);
	padding: 15px 0;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, .15);
}

.no-home .header {
	background: rgba(25, 31, 36, .85);
	-webkit-backdrop-filter: saturate(200%) blur(20px);
	backdrop-filter: saturate(200%) blur(20px);
	padding: 15px 0;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, .15);
}

.header__grid {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 15px;
	align-items: center;
}

.logo {
	justify-self: start;
}

.logo__link {
	text-decoration: none;
	display: grid;
	grid-template-columns: 45px 1fr;
	align-items: center;
	gap: 8px;
	transition: opacity .3s ease;
}

.logo__link:hover {
	opacity: 0.6;
}

.logo__link svg {
	width: 45px;
	fill: #2979ff;
}

.logo__link-text {
	font-size: 20px;
	color: #fff;
}

.menu__humburger {
	display: none;
}

.mobile__menu {
	height: 0;
	overflow: hidden;
}

.menu {
	justify-self: center;
}

.menu__link {
	text-decoration: none;
	display: inline-block;
	color: #fff;
	margin: 0 15px;
	letter-spacing: .5px;
	transition: color .3s ease;
}

.menu__link:hover,
.menu__link--active {
	color: #2979ff;
}

.header__info {
	justify-self: end;
}

.btn {
	text-decoration: none;
	color: #fff;
	font-weight: 600;
	padding: 10px 35px;
	background: #2979ff;
	display: inline-block;
	cursor: pointer;
	border: 0;
	border-radius: 10em;
	transition: background .3s ease;
}

.btn:hover {
	background: #0056e6;
}

.btn:active {
	transform: translateY(2px);
}

.btn__call-menu {
	display: none;
}

.intro {
	background: #191f24;
	position: relative;
	display: grid;
	align-items: center;
	overflow: hidden;
	min-height: 100vh;
	padding: 0;
	margin: 0;
	border: none;
	z-index: 8;
}

.intro__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(.4);
}

.intro__grid {
	text-align: center;
	margin-top: 40px;
	padding: 100px 0;
}

.intro__title {
	margin: 0;
	font-size: 48px;
	color: #fff;
	line-height: 1.3;
}

.intro__text-wrap {
	position: relative;
	margin: 54px 0 70px;
	padding: 18px 25px;
	display: inline-block;
	z-index: 1;
	animation-delay: .4s;
}

.intro__text {
	font-size: 18px;
	color: #fff;
	margin: 0;
	letter-spacing: .5px;
}

.intro__line--top,
.intro__line--bottom {
	display: block;
	position: absolute;
	width: calc(100% + 50px);
	height: 1px;
	background: #2979ff;
	z-index: -1;
}

.intro__line--top {
	left: -25px;
	top: 0;
}

.intro__line--bottom {
	right: -25px;
	bottom: 0;
}

.intro__line--left,
.intro__line--right {
	display: block;
	position: absolute;
	width: 1px;
	height: calc(100% + 50px);
	background: #2979ff;
	z-index: -1;
}

.intro__line--left {
	left: 0;
	bottom: -25px;
}

.intro__line--right {
	right: 0;
	top: -25px;
}

.intro__line--top,
.intro__line--bottom {
	animation: lines 1.5s ease;
	animation-delay: 1.8s;
}

.intro__line--left,
.intro__line--right {
	animation: lines2 1s ease;
	animation-delay: 2.7s;
}

@keyframes lines {
	0% {
		width: 0;
	}

	100% {
		width: calc(100% + 50px);
	}
}

@keyframes lines2 {
	0% {
		height: 0;
	}

	100% {
		height: calc(100% + 50px);
	}
}

.intro__btn {
	display: table;
	margin: auto;
	font-size: 22px;
	padding: 16px 50px;
	letter-spacing: .5px;
	animation-delay: .8s;
}

.intro__btn svg {
	width: 24px;
	fill: #fff;
	transform: translateY(5px);
	margin-right: 4px;
	animation: call 1.2s ease;
	animation-iteration-count: 6;
}

.intro__btn:hover svg {
	animation: call 1.2s ease infinite;
}

@keyframes call {
	0% {
		transform: translateY(5px) rotate(0);
	}

	10% {
		transform: translateY(5px) rotate(30deg);
	}

	20% {
		transform: translateY(5px) rotate(-20deg);
	}

	30% {
		transform: translateY(5px) rotate(10deg);
	}

	40% {
		transform: translateY(5px) rotate(-5deg);
	}

	50% {
		transform: translateY(5px) rotate(0);
	}
}