/* * HEADER */
header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	padding: 4rem 0px;
	z-index: 1;
}

header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .container nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 4.4rem;
}

header .container nav .links {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 3.2rem;
}

header .container nav .social {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 3.2rem;
}

header .container nav .social a img {
	transition: all 0.2s;
}

header .container nav .social a img:hover {
	filter: brightness(90%);
	transform: translateY(-5%);
}

/* * MAIN */

/* ! #HERO */
section.hero .background {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

section.hero .background #video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.hero .container {
	/* position: relative; */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2rem;

	height: 100vh;
}

section.hero .container .title {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	max-width: 59.2rem;
}

section.hero .container .title h1 {
	color: var(--white-color);

	font-family: "Inter", "Poppins";
	font-weight: 700;
	font-size: 6.4rem;
}

section.hero .container .title h1 span {
	color: var(--primary-color);
}

section.hero .container .title h2 {
	font-weight: 300;
	color: var(--white-color);
	font-size: 2.5rem;
	text-align: center;
}

section.hero .container .title p {
	font-weight: 400;
	font-size: 2rem;
	text-align: center;

	color: var(--second-color);
}

section.hero .container .shields {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

section.hero .container .arrow {
	transition: all 300ms;
	position: absolute;
	bottom: 0;
}

section.hero .container .arrow img {
	transition: all 300ms;
	transform: rotate(180deg);
}

section.hero .container .arrow:hover {
	transform: translateY(12%);
}

section.hero .container .arrow:hover img {
	transform: scale(1.08);
	transform: rotate(180deg);
}

/* ! #CARDS */
section.cards {
	padding: 14rem 0;
	margin: 0 auto;
}

section.cards .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 3rem;
}

section.cards .container .tilte h2 span {
	font-family: "Inter", sans-serif;
}

section.cards .container .cards {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
}

section.cards .container .cards .card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;

	width: 27.9rem;
	height: 30.4rem;
	background-color: var(--white-color);
	border-radius: 4px;
	cursor: pointer;
	filter: brightness(96%);
	transition: all 0.2s;
}

section.cards .container .cards .card:hover {
	filter: brightness(100%);
	transform: scale(1.05);
}

section.cards .container .cards .card.active {
	background-color: var(--primary-color);
}

section.cards .container .cards .title h3 {
	font-family: "Inter";
	font-weight: 300;
	font-size: 6.4rem;
}

section.cards .container .cards .info p {
	font-family: "Inter";
	font-weight: 300;
	font-size: 2.8rem;
	text-transform: capitalize;
	text-align: center;
}

/* ! #ABOUT */
section.about {
	padding: 20rem 0;
	background-color: var(--semi-black);
}

section.about .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--white-color);
}

section.about .container .left {
	max-width: 70rem;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 2rem;
}

section.about .container .left ul {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

section.about .container .left ul li p {
	font-weight: 300;
	font-size: 1.6rem;
}

section.about .container .left ul li p span {
	color: var(--primary-color);
}

section.about .container .left .social {
	display: flex;
	gap: 1.6rem;
}

section.about .container .left .social a img {
	transition: all 0.2s;
}

section.about .container .left .social a img:hover {
	transform: translateY(-12%);
	filter: brightness(80%);
}

section.about .container .right img {
	border-radius: 2.5rem;
	width: 35rem;
	height: 35rem;
	filter: brightness(95%);
}

/* ! #CASES */
section.cases {
	padding: 10rem 0;
}

section.cases .container {
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
}

section.cases .container .images {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	gap: 1.2rem;
}

section.cases .container .images .case img {
	border-radius: 0.7rem;

	width: 40%;

	filter: brightness(94%);

	cursor: pointer;
	transition: all 300ms;
}

/* ! #CONTACT */
section.contact {
	padding: 10rem 0;
}

section.contact .container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

section.contact .container .title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.4rem;
}

section.contact .container form {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	width: 100%;
	max-width: 48.6rem;
	gap: 1.5rem;
}

section.contact .container .inputs {
	display: flex;
	flex-direction: column;
	gap: 1.3rem;
	width: 100%;
}

section.contact .container form button[type="submit"] {
	border-radius: 2.4rem;
	background-color: var(--primary-color);
	padding: 1rem 2.4rem;
	border: none;
	font-weight: 700;
	font-size: 1.7rem;

	transition: all 0.4s;
}

section.contact .container form button[type="submit"]:hover {
	transform: scale(1.06);
}

/* * FOOTER */
footer {
	padding: 3.4rem 0;
	background-color: var(--semi-black);
}

footer .container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

footer .container .social {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.2rem;
}

footer .container .social a img {
	transition: all 0.2s;
}

footer .container .social a img:hover {
	transform: translateY(-12%);
	filter: brightness(80%);
}

footer .container p {
	line-height: 2.8rem;
	margin-top: 1.2rem;
	color: var(--white-color);
	font-size: 1.4rem;
	font-weight: 300;
	text-align: center;
}

footer .container p span {
	color: var(--primary-color);
}
