@font-face {
	font-family: 'Gilroy';
	src: local('Gilroy Regular'), local('Gilroy-Regular'),
		url('../assets/fonts/gilroy/Gilroy-Regular.woff2') format('woff2'),
		url('../assets/fonts/gilroy/Gilroy-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Gilroy';
	src: local('Gilroy Bold'), local('Gilroy-Bold'),
		url('../assets/fonts/gilroy/Gilroy-bold.woff2') format('woff2'),
		url('../assets/fonts/gilroy/Gilroy-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
}

:root {
	--Accent: #fbd784;
	--Main: #0b1d26;
	--Slate-100: hsl(202, 86%, 94%);
	--Slate-300: hsl(203, 41%, 72%);
	--Slate-500: hsl(200, 26%, 54%);
	--Slate-700: hsl(200, 24%, 40%);
	--Slate-900: hsl(202, 55%, 16%);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	list-style: none;
	font-family: 'Gilroy';
}

p {
	font-size: 18px;
	color: #fff;
	letter-spacing: 1.5px;
	line-height: 1.4;
}

body {
	height: 100%;
	line-height: 1;
}

.wrapper {
	min-height: 100%;
}

._container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px 20px;
}

.parallax {
	min-height: 100vh;
}

header {
	width: 100%;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	margin-top: 5px;
	z-index: 2;
}

.logo {
	z-index: 2;
}

.logo a {
	color: var(--Slate-500);
}

.logo:hover a {
	color: var(--Slate-900);
	transition: color 0.5s ease;
}

nav {
	width: 50%;
	display: flex;
	z-index: 2;
}

.header__menu {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
}

.header__menu a {
	color: var(--Slate-500);
}

.header__menu:hover a {
	color: var(--Slate-900);
	transition: color 0.5s ease;
}

.account__box {
	width: 100px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	z-index: 2;
}
.account__box > a {
	color: var(--Slate-100);
}

.account__box:hover a {
	color: var(--Slate-900);
}

.parallax__body {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.parallax__container {
	position: relative;
	width: 65%;
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: center;
	gap: 20px;
	top: 30%;
	left: 150px;
	z-index: 2;
}

.parallax__container::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(to right, white, transparent);
	transition: width 0.3s ease;
}
.parallax__container:hover::after {
	width: 100%;
}

.parallax__container > p {
	position: relative;
	color: #fff;
	letter-spacing: 3px;
}

.arrow {
	position: absolute;
	top: 0;
	left: 110%;
	width: 2px;
	height: 15px;
	background-color: #fff;
}

.arrow::after {
	content: '';
	position: absolute;
	top: 6px;
	left: -4px;
	width: 8px;
	height: 8px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
}

.label {
	color: var(--Accent);
	width: 100%;
	display: flex;
	font-size: 18px;
	letter-spacing: 6px;
	margin-right: 30;
	align-items: center;
	text-transform: uppercase;
}

.label::before {
	flex: 0 0 70px;
	content: '';
	margin-right: 30px;
	background-color: var(--Accent);
	height: 1px;
}

.parallax__title {
	font-size: 68px;
	letter-spacing: 4px;
	color: var(--Slate-900);
}

.parallax__images {
	position: absolute;
	top: -10%;
	left: -10%;
	width: 120%;
	height: 120%;
	z-index: 1;
}

.images-parallax__item {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.images-parallax__clouds,
.images-parallax__mountains,
.images-parallax__human {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
}

.images-parallax__clouds {
	background: url(../assets/img/cloud.png) top / cover no-repeat;
	top: 0;
}

.images-parallax__mountains {
	background: url(../assets/img/mountain.png) top / cover no-repeat;
	top: 10%;
	z-index: 2;
}

.images-parallax__human {
	background: url(../assets/img/human.png) top / cover no-repeat;
	top: 45%;
	z-index: 3;
}

.content {
	background-color: var(--Main);
	position: relative;
	z-index: 2;
}

.content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 300px;
	pointer-events: none;
	transform: translate(0, -100%);
	background: linear-gradient(180deg, rgba(11, 29, 38, 0) 5%, var(--Main) 100%);
}

.content__container {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 200px;
}

.wrapper__block {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 100px;
}

.block__description {
	width: 632px;
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: center;
	gap: 20px;
}

.wrapper__block:nth-child(1)::before {
	content: '01';
	font-size: 180px;
	font-weight: bold;
	color: rgba(255, 255, 255, 0.4);
	position: absolute;
	top: 30px;
	left: -95px;
}

.wrapper__block:nth-child(2)::before {
	content: '02';
	font-size: 180px;
	font-weight: bold;
	color: rgba(255, 255, 255, 0.4);
	position: absolute;
	top: 40px;
	right: 430px;
}

.wrapper__block:nth-child(3)::before {
	content: '03';
	font-size: 180px;
	font-weight: bold;
	color: rgba(255, 255, 255, 0.4);
	position: absolute;
	top: 50px;
	left: -95px;
}

.block__title {
	font-size: 48px;
	font-weight: bold;
	color: #fff;
	margin-bottom: 10px;
	padding-right: 20px;
}

.read__more {
	position: relative;
	color: var(--Accent);
	font-weight: bold;
}

.read__more::before {
	content: '';
	position: absolute;
	top: 14px;
	right: -40px;
	width: 30px;
	height: 1px;
	background-color: var(--Accent);
}

.read__more::after {
	content: '';
	position: absolute;
	top: 8px;
	right: -39px;
	width: 11px;
	height: 11px;
	border-right: 1px solid var(--Accent);
	border-bottom: 1px solid var(--Accent);
	transform: rotate(-45deg);
}

.block__img {
	width: 566px;
	height: 100%;
}

.block__img img {
	width: 100%;
}

footer {
	width: 100%;
	height: 280px;
	display: flex;
	align-items: start;
	justify-content: space-between;
}

.footer__description {
	width: 30%;
	height: 100%;
	font-weight: bold;
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: space-between;
	gap: 30px;
}

.footer__description p {
	margin-bottom: 30px;
}

.copyright {
	color: #fff;
	opacity: 0.5;
}

.copyright:hover {
	opacity: 1;
	transition: all 0.5s ease;
}

.footer__label {
	color: var(--Accent);
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 16px;
}

.footer__menu {
	position: relative;
	width: 15%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: flex-start;
}

.footer__menu::after {
	content: '';
	position: absolute;
	top: 25px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(to right, var(--Accent), transparent);
	transition: width 0.3s ease;
}
.footer__menu:hover::after {
	width: 100%;
}

.footer__menu__item {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

._item a {
	color: var(--Slate-300);
}

._item:hover a {
	color: var(--Slate-100);
	transition: color 0.5s ease;
}

@media (max-aspect-ratio: 3/2) {
	.images-parallax__human {
		background-position: 20% top;
	}
}

@media (max-width: 767px) {
	.parallax__title {
		font-size: 50px;
	}

	.label {
		font-size: 16px;
	}
}

@media (max-width: 479px) {
	.parallax__title {
		font-size: 36px;
	}

	.label {
		font-size: 14px;
	}

	.label::before {
		flex: 0 0 50px;
	}
}
