*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Gilroy";
	color: #ffffff;
	background-color: #0b1d26;
	background-image: url("./../img/bg/bg.jpg");
	background-repeat: no-repeat;
	background-size: 100% auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}

img {
	display: block;
	max-width: 100%;
}

/* Base */

.no-scroll {
	overflow-y: hidden;
}

.container-wide {
	margin: 0 auto;
	max-width: 1790px;
	padding: 0 15px;
}

.container {
	max-width: 1460px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}

.row {
	display: flex;
}

.space-between {
	justify-content: space-between;
}

.align-center {
	align-items: center;
}

/* Header */

.header {
	padding-top: 65px;
	padding-bottom: 840px;
}

.nav-wrapper {
	margin-bottom: 200px;
}

.logo {
	font-family: Chronicle Display;
	font-size: 32px;
	letter-spacing: 0.01em;
}

.nav {
	font-weight: bold;
	font-size: 18px;
}

.nav ul {
	margin: 0%;
	padding: 0;
	list-style-type: none;
	display: flex;
}

.nav li + li {
	margin-left: 40px;
}

.nav a {
	position: relative;
	text-decoration: none;
	color: #ffffff;
	transition: color 0.2s ease-in;
	padding-bottom: 5px;
}

.nav a::after {
	position: absolute;
	left: 0;
	bottom: -10px;
	display: block;
	content: "";
	width: 100%;
	height: 2px;
	background-color: #fbd784;
	opacity: 0;
	transition: all 0.2s ease-in;
}

.nav a:hover::after {
	bottom: 0;
	opacity: 1;
}

.account {
	display: inline-block;
	position: relative;
	font-size: 17px;
	font-weight: bold;
	text-decoration: none;
	color: #ffffff;
	transition: color 0.2s ease-in;
	padding-left: 30px;
}

.account:hover {
	color: #fbd784;
}

.account::before {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background-image: url("./../img/icons/account.svg");
	background-size: contain;
}

.nav-button {
	position: relative;
	z-index: 9;
	display: none;
	background: none;
	height: 25px;
	border: none;
	padding: 0;
	cursor: pointer;
}

.nav-button-icon {
	position: relative;
	display: block;
	border: none;
	background-color: #ffffff;
	width: 40px;
	height: 5px;
}

.nav-button:focus .nav-button:active {
	outline: none;
}

.nav-button-icon::before {
	position: absolute;
	left: 0;
	top: -10px;
	content: "";
	display: block;
	width: 40px;
	height: 5px;
	background-color: #ffffff;
}

.nav-button-icon::after {
	position: absolute;
	left: 0;
	bottom: -10px;
	content: "";
	display: block;
	width: 40px;
	height: 5px;
	background-color: #ffffff;
}

.nav-button-close .nav-button-icon {
	background-color: transparent;
}

.nav-button-close .nav-button-icon::before {
	transform: rotate(45deg);
	top: 0;
}

.nav-button-close .nav-button-icon::after {
	transform: rotate(-45deg);
	top: 0;
}

.mobile-nav {
	position: fixed;
	z-index: 8;
	top: 0;
	right: 0;

	/* display: flex; */
	display: none;
	flex-direction: column;
	justify-content: space-between;

	width: 320px;
	height: 100%;
	padding: 70px 70px 50px 30px;
	background-color: rgba(10, 30, 40, 0.8);
}

.mobile-nav .nav,
.mobile-nav .account {
	display: block;
}

.mobile-nav .nav ul {
	flex-direction: column;
}

.mobile-nav .nav ul li {
	margin: 0;
	margin-bottom: 25px;
}

/* Hero */

.hero {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 950px;
	padding-left: 15px;
	padding-right: 15px;
	text-decoration: none;
	transition: transform 0.8s cubic-bezier(0.66, 0.215, 0.3, 1.65);
}

.hero:hover {
	transform: translateY(-5%);
}

.hero-category {
	margin-bottom: 32px;
	position: relative;
	padding-left: 104px;
	color: #fbd784;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.222;
	letter-spacing: 6px;
	text-transform: uppercase;
}

.hero-category::before {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	content: "";
	width: 72px;
	height: 2px;
	background-color: #fbd784;
}

.hero-heading {
	margin-bottom: 32px;
	font-family: Chronicle Display;
	font-weight: 500;
	font-size: 88px;
	line-height: 1.136;
	text-transform: capitalize;
	color: #ffffff;
}

.hero-scroll {
	display: inline-block;
	position: relative;
	padding-right: 32px;
	color: #ffffff;
	font-weight: bold;
	font-size: 18px;
	line-height: 1.222;
}

.hero-scroll::after {
	display: block;
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 24px;
	background-image: url("./../img/icons/arrow-down.svg");
}

/* Main */

.container {
	max-width: 1460px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}

.article {
	margin-bottom: 200px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: transform 0.8s cubic-bezier(0.66, 0.215, 0.3, 1.65);
}

.article:hover {
	transform: translateY(-5%);
}

.article:nth-child(even) {
	flex-direction: row-reverse;
}

.article-text {
	position: relative;
	padding-top: 140px;
	max-width: 780px;
	margin-right: 20px;
}

.article-text::before {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	content: attr(data-number);
	width: 240px;
	height: 240px;
	font-weight: bold;
	font-size: 240px;
	line-height: 1;
	color: rgba(255, 255, 255, 0.1);
}

.article-subtitle {
	margin-bottom: 32px;
	position: relative;
	padding-left: 96px;
	color: #fbd784;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.222;
	letter-spacing: 6px;
	text-transform: uppercase;
}

.article-subtitle::before {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	content: "";
	width: 72px;
	height: 2px;
	background-color: #fbd784;
}

.article-title {
	margin-bottom: 27px;
	max-width: 555px;
	margin-bottom: 32px;
	font-family: Chronicle Display;
	font-weight: 500;
	font-size: 64px;
	line-height: 1.2;
	color: #ffffff;
}

.article p {
	margin-bottom: 27px;
	max-width: 780px;
	font-weight: bold;
	font-size: 18px;
	line-height: 32px;
}

.article-read-more {
	display: inline-block;
	position: relative;
	padding-right: 40px;
	font-weight: bold;
	font-size: 18px;
	line-height: 1.222;
	color: #fbd784;
	text-decoration: none;
}

.article-read-more::after {
	display: block;
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 16px;
	background-image: url("./../img/icons/arrow-right.svg");
}

.article-img img {
	display: block;
}

/* Footer */

.footer {
	padding-bottom: 120px;
}

.footer-row {
	display: flex;
	justify-content: space-between;
}

.footer-copyright {
	display: flex;
	flex-direction: column;
}

.footer-copyright-logo {
	margin-bottom: 24px;
}

.footer-copyright-desc {
	max-width: 305px;
	font-weight: bold;
	font-size: 18px;
	line-height: 1.78;
}

.footer-copyright-terms {
	margin-top: auto;
	font-weight: 500;
	font-size: 18px;
	line-height: 1.78;
	color: rgba(255, 255, 255, 0.5);
}

.footer-nav-wrapper {
	display: flex;
}

.footer-nav-title {
	font-weight: bold;
	font-size: 24px;
	line-height: 1.33;
	color: #fbd784;
	margin-bottom: 24px;
}

.footer-nav + .footer-nav {
	margin-left: 110px;
}

.footer-nav {
	max-width: 200px;
	font-weight: 500;
	font-size: 18px;
	line-height: 1.78;
}

.footer-nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
	margin-bottom: -16px;
}

.footer-nav li {
	padding: 0;
	margin: 0;
	margin-bottom: 11px;
}

.footer-nav li:last-child {
	margin-bottom: 0;
}

.footer-nav a {
	position: relative;
	text-decoration: none;
	color: #ffffff;
	padding-bottom: 5px;
}

.footer-nav a::after {
	position: absolute;
	left: 0;
	bottom: -10px;
	display: block;
	content: "";
	width: 100%;
	height: 2px;
	background-color: #fbd784;
	opacity: 0;
	transition: all 0.2s ease-in;
}

.footer-nav a:hover::after {
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	content: "";
	width: 100%;
	height: 2px;
	background-color: #fbd784;
	opacity: 1;
}
