@import url("https://fonts.googleapis.com/css2?family=Martel+Sans:wght@400,600&family=Poppins:wght@200,300,400,500,600,700&display=swap");

* {
	margin: 0;
	padding: 0;
	font-family: "Martel Sans", sans-serif;
}

body {
	background-color: black;
}

.main {
	background-image: url("assets/images/bg.jpg");
	background-position: center center;
	background-size: max(1200px, 100vw);
	background-repeat: no-repeat;
	height: 70vh;
	position: relative;
}

.main .box {
	height: 70vh;
	width: 100%;
	opacity: 0.69;
	position: absolute;
	top: 0;
	background-color: black;
}

nav {
	max-width: 80vw;
	justify-content: space-between;
	margin: auto;
	display: flex;
	align-items: center;
	height: 62px;
}

nav img {
	color: red;
	width: 140px;
	position: relative;
	z-index: 10;
}

nav button {
	position: relative;
	z-index: 10;
}

.hero {
	height: calc(100% - 64px);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: white;
	position: relative;
	font-family: "Martel Sans", sans-serif;
	gap: 23px;
	padding: 0 30px;
}

.hero > :nth-child(1) {
	font-family: "Poppins", sans-serif;
	font-weight: bolder;
	font-size: 48px;
	text-align: center;
}

.hero > :nth-child(2) {
	font-weight: 400;
	font-size: 24px;
	text-align: center;
}
.hero > :nth-child(3) {
	font-weight: 400;
	font-size: 20px;
	text-align: center;
}

.separation {
	height: 7px;
	background-color: rgb(46, 45, 45);
	position: relative;
	z-index: 20;
}

.btn {
	padding: 3px 8px;
	font-weight: 400;
	color: white;
	background-color: rgba(180, 170, 170, 0.114);
	border: 1px solid rgba(250, 243, 243, 0.568);
	border-radius: 4px;
	cursor: pointer;
}

.btn-red {
	background-color: red;
	color: white;
	padding: 3px 24px;
	font-size: 20px;
	border-radius: 4px;
	font-weight: 400;
}

.btn-red-sm {
	background-color: red;
	color: white;
}

.hero-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.main input {
	padding: 7px 102px 8px 14px;
	font-weight: 400;
	font-size: 12px;
	border-radius: 4px;
	background-color: rgba(23, 23, 23, 0.7);
	border: 1px solid rgba(246, 238, 238, 0.5);
	color: white;
}

.first {
	display: flex;
	justify-content: center;
	max-width: 70vw;
	margin: auto;
	color: white;
	align-items: center;
}

.secImg {
	position: relative;
}

.secImg img {
	width: 550px;
	position: relative;
	z-index: 10;
}

.secImg video {
	position: absolute;
	top: 51px;
	right: 0;
	width: 540px;
}

section.first > div {
	display: flex;
	flex-direction: column;
	padding: 34px 0;
}

section.first > div :first-child {
	font-size: 44px;
	font-weight: bolder;
}

section.first > div :nth-child(2) {
	font-size: 22px;
	font-weight: normal;
	padding: 13px 0px;
}

.faq h2 {
	text-align: center;
	font-size: 48px;
}

.faq {
	background-color: black;
	color: white;
	padding: 32px;
}

.box_FAQ:hover {
	background-color: #414141;
}
.box_FAQ {
	transition: all 1s ease-out;
	font-size: 20px;
	display: flex;
	background-color: #2d2d2d;
	padding: 24px;
	max-width: 60vw;
	margin: 9px auto;
	justify-content: space-between;
	cursor: pointer;
}

.faq svg {
	color: white;
}

footer{
	color: white;
	max-width: 60vw;
	margin: auto;
	padding: 14px;
}


footer .questions{
	padding: 34px;
}

.footer{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	color: white;
}

@media screen and (max-width: 1300px) {
	.footer{
		display: grid;
		grid-template-columns: 1fr 1fr;

	}
}
.footer a{
	color: white;
	cursor: pointer;
	font-size: 16px;
}

.footer-item{
	display: flex;
	flex-direction: column;
	gap: 23px;
}

@media screen and (max-width: 1300px) {
	.first{
		flex-wrap: wrap;
	}

	.secImg img {
		width: 305px;
	}

	.secImg video {
		width: 305px;
	}

	.faq h2 {
		font-size: 35px;
	}

	section.first > div :first-child {
		font-size: 41px;
	}

	section.first > div :nth-child(2) {
		font-size: 18px;
	}

	.hero > :nth-child(1) {
		font-size: 38px;
	}

	.hero > :nth-child(2) {
		font-size: 18px;
	}

	.hero > :nth-child(3) {
		font-size: 16px;
	}

	.main input {
		padding: 7px 80px 8px 15px;
	}

	.btn-red{
		padding: 3px 15px;
		font-size: 9px;
	}

	.footer-item {
		padding: 7px 0 10px 0;
	}
}