* {
	font-family: "Chronicle Display", sans-serif;
	font-family: "Gilroy";
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

/* BG COLOR */
body {
	background-color: #0b1d26;
}

/* MAIN */
.main {
	background-image: url("./../img/mainBg.png");
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100vh;
}

/* NAV */
.nav {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	align-items: center;
	height: 80px;
	padding: 0 40px;
}

/* logo */
#logo {
	width: 108px;
	height: 24px;
}

/* LINKS */
.main__links {
	display: flex;
	align-items: center;
	gap: 40px;
}

.main__links a {
	color: white;
	font-family: "Gilroy";
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
}

/* ACCOUNT */
.main__account {
	display: flex;
	align-items: center;
	gap: 8px;
	color: white;
	cursor: pointer;
	font-family: "Gilroy";
	font-size: 17px;
	font-weight: 500;
}

/* TEXT CENTER MAIN */
.main__text {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	height: 80%;
}

.main__text__upper {
	position: relative;
	font-size: 18px;
	color: #fbd784;
	font-weight: 500;
	font-family: "Gilroy";
	padding-left: 100px;
	letter-spacing: 6px;
}

.main__text__upper::after {
	content: "";
	position: absolute;
	top: 48%;
	left: 0px;
	width: 72px;
	height: 2px;
	background-color: #fbd784;
}

.main__text h1 {
	font-size: 72px;
	font-family: "Chronicle Display", sans-serif;
	color: white;
	margin: 32px 0;
}

.main__text__container {
	display: flex;
	align-items: center;
	gap: 16px;

	font-size: 18px;
	font-weight: bold;
	color: white;
}

@media (max-width: 1080px) {
	.main__text {
		height: 60%;
	}

	.main__text h1 {
		font-size: 52px;
	}
}

@media (max-width: 720px) {
	.main {
		height: 60vh;
	}

	.main__text__upper {
		font-size: 14px;
	}

	.main__text {
		padding: 0 40px;
	}

	.main__text h1 {
		font-size: 42px;
		margin: 20px 0;
	}

	.main__text__container {
		font-size: 14px;
	}
}

/* MULTI SECTION */
.multi__section {
	max-width: 1350px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	/* gap: 40px; */
	justify-content: space-between;
	align-items: center;
	margin-bottom: 200px;
}

.multi__section__left {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: relative;
}

.one::after {
	position: absolute;
	content: "";
	background-image: url("./../svg/numberOne.svg");
	background-repeat: no-repeat;
	width: 240px;
	height: 240px;
	top: -20%;
	left: -24%;
}

.multi__section__left__caption {
	position: relative;
	font-size: 18px;
	color: #fbd784;
	font-weight: 500;
	font-family: "Gilroy";
	padding-left: 90px;
	letter-spacing: 6px;
}

.multi__section__left__caption::after {
	content: "";
	position: absolute;
	top: 48%;
	left: 0px;
	width: 62px;
	height: 2px;
	background-color: #fbd784;
}

.multi__section__left h2 {
	font-size: 64px;
	font-family: "Chronicle Display", sans-serif;
	color: white;
	margin: 27px 0;
}

.multi__section__left p {
	font-size: 18px;
	font-family: "Gilroy";
	color: white;
	line-height: 32px;
	margin-bottom: 27px;
}

.multi__section__left a {
	display: flex;
	gap: 16px;
	font-size: 18px;
	font-family: "Gilroy";
	color: #fbd784;
	text-decoration: none;
}

.multi__section__right img {
	border-radius: 20px;
}

/* reverse multi section */
.reverse {
	max-width: 1350px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row-reverse;
	margin-bottom: 200px;
}

.reverse img {
	margin-right: 264px;
}

.two::after {
	position: absolute;
	content: "";
	background-image: url("./../svg/numberTwo.svg");
	background-repeat: no-repeat;
	width: 275px;
	height: 240px;
	top: -13%;
	left: -28%;
}

.three::after {
	position: absolute;
	content: "";
	background-image: url("./../svg/numberThree.svg");
	background-repeat: no-repeat;
	width: 276px;
	height: 240px;
	top: -15%;
	left: -22%;
}

@media (max-width: 1440px) {
	.multi__section__right img {
		width: 500px;
		height: 660px;
	}

	.multi__section__left h2 {
		font-size: 58px;
	}

	.multi__section__left p {
		font-size: 18px;
		line-height: 32px;
		margin-bottom: 27px;
	}

	.multi__section__left a {
		gap: 16px;
		font-size: 18px;
	}
}

@media (max-width: 1280px) {
	.multi__section {
		flex-direction: column-reverse;
		align-items: center;
		gap: 50px;
		margin-bottom: 100px;
	}

	.multi__section__right img {
		width: 500px;
		height: 600px;
	}

	.reverse img {
		margin-right: 0px;
	}

	.multi__section__left h2 {
		font-size: 50px;
	}

	.multi__section__left p {
		font-size: 16px;
		line-height: 32px;
		margin-bottom: 27px;
	}

	.multi__section__left a {
		gap: 16px;
		font-size: 16px;
	}

	.one::after {
		left: -15%;
	}

	.two::after {
		left: -15%;
	}

	.three::after {
		left: -10%;
	}
}

@media (max-width: 620px) {
	.multi__section {
		flex-direction: column-reverse;
		align-items: center;
		gap: 50px;
		margin-bottom: 100px;
	}

	.multi__section__right img {
		width: 350px;
		height: 500px;
	}

	.reverse img {
		margin-right: 0px;
	}

	.multi__section__left h2 {
		font-size: 42px;
	}

	.multi__section__left p {
		font-size: 14px;
		line-height: 28px;
		margin-bottom: 27px;
	}

	.multi__section__left a {
		gap: 16px;
		font-size: 14px;
	}
}

/* FOOTER */
.footer {
	color: #fbd784;
	padding: 40px 20px;
	font-family: "Gilroy", sans-serif;
}

.footer__container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.footer__logo h2 {
	font-size: 24px;
	margin: 0 0 10px;
	color: #fff;
}

.footer__logo p {
	font-size: 14px;
	color: #a1a1a1;
	margin: 5px 0;
}

.footer__links {
	display: flex;
	gap: 40px;
}

.footer__section h3 {
	font-size: 16px;
	color: #fbd784;
	margin-bottom: 10px;
}

.footer__section ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer__section ul li {
	margin-bottom: 8px;
}

.footer__section ul li a {
	color: #a1a1a1;
	text-decoration: none;
	font-size: 14px;
}

.footer__section ul li a:hover {
	color: #fbd784;
}

@media (max-width: 780px) {
	.footer__container {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.footer__links {
		flex-direction: column;
		align-items: center;
		gap: 20px;
		margin-top: 20px;
	}

	.footer__section {
		width: 100%;
	}

	.footer__logo p {
		font-size: 13px;
	}
}
