@font-face {
	font-family: nb;
	src: url(./assets/fonts/NBInternationalProBook.woff2);
}

@font-face {
	font-family: formulaCondensed;
	src: url(./assets/fonts/FormulaCondensed-Bold.woff);
}

@font-face {
	font-family: molitor;
	src: url(./assets/fonts/molitor-displaybold-webfont.woff);
}

@font-face {
	font-family: Pp;
	src: url(assets/fonts/ppneuemontrealMedium.woff2);
}

@font-face {
	font-family: Pp2;
	src: url(assets/fonts/ppneuemontrealBook.woff2);
}

@font-face {
	font-family: grotesk;
	src: url(assets/fonts/PPRightGrotesk-CompactDark.woff2);
}

@font-face {
	font-family: Neue;
	src: url(assets/fonts/NeueHaasDisplayBold.woff2);
}

@font-face {
	font-family: nuckle;
	src: url(assets/fonts/Nuckle-Medium.woff2);
}

@font-face {
	font-family: grotesk2;
	src: url(assets/fonts/RightGrotesk-Medium.otf);
}

@font-face {
	font-family: aeonik;
	src: url(assets/fonts/Aeonik-Regular.e07e9c8f.woff2);
}

@font-face {
	font-family: NeueRoman;
	src: url(assets/fonts/NeueHaasDisplayRoman.woff2);
}
@font-face {
	font-family: big;
	src: url(assets/fonts/BigShouldersDisplayVariableFont.ttf);
}
::-webkit-scrollbar {
	width: 5px;
	border-radius: 10px;
	display: none;
}
.show-scrollbar::-webkit-scrollbar {
	display: block;
}
::-webkit-scrollbar-track {
	background-color: #0e0e0c;
}
::-webkit-scrollbar-thumb {
	background-color: rgb(54, 54, 54);
	border-radius: 10px;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

::selection {
	color: orangered;
	background-color: transparent;
}

html,
body {
	width: 100%;
	position: relative;
	cursor: none;
	/* scroll-behavior: smooth; */
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeSpeed;
}

.cursor-dot {
	width: 5px;
	height: 5px;
	background-color: white;
}

.cursor-outline {
	width: 45px;
	height: 45px;
	border: 2px solid hsla(0, 0%, 100%, 0.5);
}

.cursor-dot,
.cursor-outline {
	position: fixed;
	top: 0;
	left: 0;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	z-index: 999999;
	opacity: 0;
	pointer-events: none;
}

/* .hidden {
	display: none;
}

.visible {
	display: flex;
} */

a {
	text-decoration: none;
}

main {
	width: 100%;
	position: relative;
	background-color: #0e0e0c;
	z-index: 895;
}

.progressBar {
	top: 0;
	left: 0;
	z-index: 99999;
	position: fixed;
	width: 100%;
	height: 0.2vw;
}

.filled {
	width: 0%;
	height: 100%;
	background-color: orangered;
}

.loader {
	position: fixed;
	top: 0%;
	height: 100vh;
	width: 100%;
	display: flex;
	z-index: 999;
	font-family: nb;
}

.loader .box {
	height: 100%;
	width: 20%;
	border: none;
	background-color: rgb(23, 24, 26);
}

.dark1 {
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.dark1 p {
	transform: translateY(-1vw);
	font-size: 20px;
	color: #e4e1d9;
	font-family: nb;
}

.dark3 {
	display: flex;
	justify-content: center;
	align-items: center;
}
.dark3 img {
	object-fit: cover;
}

.dark5 {
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.dark5 p {
	font-size: 7vw;
	color: #e4e1d9;
	font-family: nb;
}

.heroSection {
	position: relative;
	width: 100%;
	/* background-color: rgb(34, 33, 33); */
	/* min-height: 100vh; */
	display: flex;
	flex-direction: column;
	align-items: center;
}
/* 
.heroSection .seperatorLine {
	margin-top: 7vw;
} */

.videoDiv {
	top: 0;
	left: 0;
	/* z-index: -1; */
	z-index: 2;
	width: 100%;
	height: 100%;
	position: absolute;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(
		0,
		0,
		0,
		0.65
	); /* Adjust the alpha value to change the opacity */
}

video {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
}

/* nav {
	width: 100%;
	height: fit-content;
	padding: 3% 2%;
	display: flex;
	position: relative;
	align-items: center;
	flex-grow: 0;
	justify-content: space-between;
} */
.nav-responsive {
	display: none;
}
nav {
	width: 97%;
	margin: auto;
	height: fit-content;
	padding: 0 1%;
	display: flex;
	position: fixed;
	margin-left: 1vw;
	z-index: 999;
	align-items: center;
	flex-grow: 0;
	justify-content: space-between;
	background-color: rgba(218, 218, 218, 0.748);
	height: 4vw;
	margin-top: 0.2vw;
	border-radius: 0.6vw;
	backdrop-filter: blur(5px);
}

.active {
	display: block;
}

.nav-columns {
	display: flex;
	gap: 50px;
	align-items: center;
}

.logo {
	width: 80px;
	height: 80px;
	top: 50%;
	left: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
	display: flex;
	justify-content: center;
	align-items: center;
}
.logo img {
	height: 3.9vw;
	object-fit: cover;
}

.mob-logo {
	width: 60px;
	height: 70px;
	display: none;
}
.mob-logo img {
	width: 100%;
	height: 100%;
	object-position: center;
	object-fit: cover;
}

.nav-links {
	display: flex;
	gap: 5vw;
	height: 2vw;
}

.link {
	color: #222222;
	font-family: formulaCondensed;
	letter-spacing: 1.5px;
	font-size: 1.6vw;
	text-decoration: none;
	text-transform: uppercase;
	overflow: hidden;
	font-weight: 100;
}

.nav-links .text-rolling .block:nth-child(2) {
	color: #222222;
}

/* #menuBtn {
	width: 110px;
	height: 40px;
	background-color: #dadada;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 2px;
	cursor: pointer;
	z-index: 99;
	display: flex;
	justify-content: space-between;
} */

#menuBtn {
	width: 110px;
	height: 40px;
	background-color: #dadada;
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 2px;
	cursor: pointer;
	z-index: 9999;
	display: flex;
	justify-content: space-between;
}

.left {
	width: 43%;
	height: 100%;
	background-color: #001514;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 2px;
	border-radius: 1px;
	border: 1px solid #dadada;
}

.left .line {
	height: 2px;
	width: 38%;
	background-color: #ffff00;
	transition: cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
}

.right {
	width: 57%;
	height: 100%;
	padding: 8px;
	padding-left: 12px;
}
.right h4 {
	height: 20px;
	text-transform: uppercase;
	font-family: formulaCondensed;
	font-size: 20px;
	font-weight: 100;
	letter-spacing: 1px;
	color: #001514;
}

.fa-magnifying-glass {
	color: white;
	font-size: 22px;
}
/* Hamburger Menu */

.menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	/* background-color: rgb(199, 244, 151); */
	background-color: #001514;
	clip-path: polygon(
		49.75% 49.75%,
		50.25% 49.75%,
		50.25% 49.75%,
		49.75% 50.25%
	);
	pointer-events: none;
	opacity: 0;
	display: flex;
	padding: 1vw 0;
	flex-direction: column;
	justify-content: space-between;
	z-index: 9999;
}

/* Hamburger Menu */

.nav-head {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 94.5%;
	gap: 0.5vw;
	margin: 0 auto;
}

/* Navigation Head */
.navigation-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.navigation-head p {
	font-size: 1.3vw;
	color: #c0cac9;
	font-family: grotesk;
}

.closeBtn {
	display: flex;
	display: flex;
	justify-content: end;
	height: 5vw;
	width: 5vw;
}
.closeBtn img {
	width: 60%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.seperator-line {
	width: 100%;
	height: 1px;
	background-color: #e1e0e0;
}

/* Navigation-Content */

.navigation-content {
	display: flex;
	gap: 18%;
	height: fit-content;
	width: 100%;
	padding-top: 2vw;
	padding-left: 4vw;
}

.nav-text {
	opacity: 0;
	/* background-color: red; */
}

.nav-text a {
	color: #c0cac9;
	font-size: 3vw;
	font-family: Pp;
	line-height: 3.3vw;
}

.column1 {
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	margin-top: 1vw;
	height: 18vw;
	color: white;
}

.column2 {
	display: flex;
	justify-content: center;
	flex-direction: column;
	margin-top: 3.6vw;
	height: 18vw;
}

.column3 {
	display: flex;
	justify-content: flex-end;
	flex-direction: column;
	margin-top: 6.1vw;
	height: 18vw;
}

.mobileNav-content {
	display: none;
}

/* End-menu */
.video-socials {
	height: fit-content;
	width: 94.5%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 15vw;
	justify-content: space-between;
}

/* Socials */

.socials {
	display: flex;
	flex-direction: column;
	gap: 2vw;
}

.socials p {
	font-size: 1.2vw;
	color: #c0cac9;
	font-family: grotesk;
}

.links-division {
	display: flex;
	justify-content: space-between;
	gap: 4vw;
}

.links-left-right {
	display: flex;
	flex-direction: column;
}

.links-division img {
	height: 0.7vw;
}

.links-division a span {
	display: inline-block;
	transition: all 0.3s ease-in-out;
}

/* Hover effect to rotate the image by 45 degrees */
.links-division a:hover span {
	transform: rotate(45deg);
}

.links-left-right a {
	font-size: 1.3vw;
	/* color: #222222; */
	color: #c0cac9;
	font-family: Pp2;
}

/* nav Logo */

.logo-img {
	height: 12vw;
	width: 11vw;
}

.logo-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Hero section  */
.hero-tagline {
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: flex-end;
	padding-right: 3vw;
	padding-top: 7vw;
	color: #dadada;
	text-align: center;
	/* border: 1px solid blue; */
	font-family: nuckle;
}

.hero-tagline p {
	font-family: nuckle;
}
.hero-tagline p:nth-child(2) {
	margin-right: 28px;
}
.hero-tagline p:nth-child(3) {
	margin-right: 12px;
}

.cover-heroText {
	transition: all 4s ease-in-out;
}

/* .hero-text{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-grow: 1;
} */

.hero-text-responsive {
	display: none;
}
.hero-text {
	display: flex;
	flex-direction: column;
	margin-top: 2vw;
	/* background-color: red; */
	height: 22vw;
	position: relative;
	/* border: 1px solid yellow; */
}

.bounding {
	width: fit-content;
	background-color: transparent;
	overflow: hidden;
}

.boundingelem {
	transform: translateY(100%);
}

/* .hero-text h1{
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: linear-gradient(#878787,#1b1b1b );
	transform: translateY(100px);
  font-size: 120px;  
	text-transform: uppercase;
	font-family: molitor;
  letter-spacing: 15px;
	line-height: 1.1;
  font-weight: 900;  
	-webkit-text-fill-color:transparent ;
	-webkit-background-clip:text ;
}  */

.hero-text h1 {
	display: flex;
	flex-direction: column;
	color: #e4e1d9;
	/* transform: translateY(100px); */
	font-size: 120px;
	text-transform: uppercase;
	font-family: molitor;
	line-height: 165px;
	font-weight: 900;
	margin-right: 16vw;
}

.hero-text h1:nth-child(1) {
	font-family: grotesk;
	font-size: 11vw;
	position: absolute;
	z-index: 4;
}

.hero-text h1:nth-child(2) {
	font-family: Neue;
	font-size: 12.1vw;
	z-index: 4;
	margin-top: 10.5vw;
	/* position: absolute; */
}

.hero-video {
	position: absolute;
	height: 17vw;
	width: 100%;
	z-index: 2;
	margin-top: -17.5vw;
}
.hero-video video {
	height: 90%;
	width: 33%;
	border-radius: 10px;
	position: absolute;
	right: 2%;
	z-index: 2;
}

/* #circle {
  top: -7%;
  left: -3%;
  position: relative;
  width: 52vw;
  z-index: 99;
  background-color: #ff7f7f;
	 
}

#circle text {
  font-family: formulaCondensed , Arial;
  font-size: 17px;

}

#circle svg {
  position: absolute;
  top: 0%;
  width: 100%;
  height: 18vw;
  text-transform: uppercase;
	opacity: .5;
	word-spacing: 5px;
	letter-spacing: 1.2px;

  animation-name: rotate;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes rotate {
  from {
    transform: rotate(-360deg);
  }
  to {
    transform: rotate(0);
  }
} */

.circle-text {
	position: relative;
	z-index: 999;
	/* top: -4%;
	left: -1%; */
	width: 12vw;
	height: 12vw;
}

.circle-text svg {
	position: absolute;
	top: 0;
	left: 0;
	scale: 1.3;
	width: 100%;
	height: 100%;
}

.circle-text text {
	fill: white;
	font-family: formulaCondensed;
	font-size: 15.8px;
	text-transform: uppercase;
	opacity: 0.5;
	word-spacing: 5px;
	letter-spacing: 1.2px;
}

.circle-text i {
	color: white;
	opacity: 0.5;
	font-size: 30px;
}

.rotating-text {
	animation: rotate 10s linear infinite;
	transform-origin: center;
}

.arrow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: bounce 3s infinite;
}

@keyframes bounce {
	0% {
		transform: translate(-50%, -50%) translateY(0);
		animation-timing-function: ease-out;
	}
	20% {
		transform: translate(-50%, -50%) translateY(-2vw);
		animation-timing-function: ease-in;
	}
	40% {
		transform: translate(-50%, -50%) translateY(0);
		animation-timing-function: ease-out;
	}
	60% {
		transform: translate(-50%, -50%) translateY(-1.5vw);
		animation-timing-function: ease-in;
	}
	80% {
		transform: translate(-50%, -50%) translateY(0);
		animation-timing-function: ease-out;
	}
	90% {
		transform: translate(-50%, -50%) translateY(-0.4vw);
		animation-timing-function: ease-in;
	}
	100% {
		transform: translate(-50%, -50%) translateY(0);
	}
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

/* Rolling Text Effect */

.text-rolling {
	display: inline-block;
	overflow: hidden;
}

.text-rolling:hover .letter,
.text-rolling.play .letter {
	transform: translateY(-125%);
	overflow: hidden;
}

#menuBtn:hover .letter,
.text-rolling.play .letter {
	transform: translateY(-125%);
	overflow: hidden;
}

/* .nav-links a .block:nth-child(2) .letter {
	color: white;
	text-decoration: underline;
	text-underline-offset: 5px;
} */
.nav-links a .block:nth-child(2) .letter {
	color: #222222;
	text-decoration: underline;
	text-underline-offset: 0.2vw;
}

.text-rolling .letter {
	display: inline-block;
	transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
	overflow: hidden;
}
.text-rolling:hover {
	text-decoration: underline;
}

.letter:nth-child(1) {
	transition-delay: 0s;
}
.letter:nth-child(2) {
	transition-delay: 0.015s;
}
.letter:nth-child(3) {
	transition-delay: 0.03s;
}
.letter:nth-child(4) {
	transition-delay: 0.045s;
}
.letter:nth-child(5) {
	transition-delay: 0.06s;
}
.letter:nth-child(6) {
	transition-delay: 0.075s;
}
.letter:nth-child(7) {
	transition-delay: 0.09s;
}
.letter:nth-child(8) {
	transition-delay: 0.105s;
}
.letter:nth-child(9) {
	transition-delay: 0.12s;
}
.letter:nth-child(10) {
	transition-delay: 0.135s;
}
.letter:nth-child(11) {
	transition-delay: 0.15s;
}
.letter:nth-child(12) {
	transition-delay: 0.165s;
}
.letter:nth-child(13) {
	transition-delay: 0.18s;
}

.letter:nth-child(14) {
	transition-delay: 0.195s;
}

.letter:nth-child(15) {
	transition-delay: 0.21s;
}

.letter:nth-child(16) {
	transition-delay: 0.225s;
}

.letter:nth-child(17) {
	transition-delay: 0.25s;
}

.letter:nth-child(18) {
	transition-delay: 0.255s;
}

/* Column 1 Width Adjustment */

.column1 a:nth-child(1).text-rolling {
	width: 75%;
}

.column1 a:nth-child(2).text-rolling {
	width: 67%;
}

.column1 a:nth-child(3).text-rolling {
	width: 95%;
}

.column1 a:nth-child(4).text-rolling {
	width: 100%;
}

.column1 a:nth-child(5).text-rolling {
	width: 58%;
}

/* Column 2 Width Adjustment */

.column2 a:nth-child(1).text-rolling {
	width: 57%;
}

.column2 a:nth-child(2).text-rolling {
	width: 58%;
}

.column2 a:nth-child(3).text-rolling {
	width: 100%;
}

.column2 a:nth-child(4).text-rolling {
	width: 59%;
}

.column2 a:nth-child(5).text-rolling {
	width: 67%;
}

/* Column 3 Width Adjustment */

.column3 a:nth-child(1).text-rolling {
	width: 60%;
}

.column3 a:nth-child(2).text-rolling {
	width: 70%;
}

.column3 a:nth-child(3).text-rolling {
	width: 90%;
}

.column3 a:nth-child(4).text-rolling {
	width: 100%;
}

.column3 a:nth-child(5).text-rolling {
	width: 100%;
}

/* model slider */
.modelSlider {
	width: 100vw;
	height: 100vh;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 4vw;
	font-family: "Big Shoulders Text";
}

.modelSlider img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sectionTitle h1 {
	padding-left: 35px;
	color: white;
	font-family: "Space Mono";
	text-transform: uppercase;
	font-size: 35px;
	opacity: 0.9;
}

.slide-titles {
	position: absolute;
	top: 0;
	left: 0;
	width: 380vw;
	height: 100vh;
	display: flex;
	pointer-events: none;
	z-index: 10;
}

.title {
	flex: 1;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.title h1 {
	text-align: center;
	font-size: 28px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.2);
	transition: color 0.25s ease, opacity 0.25s ease;
}

.active h1 {
	color: white;
	opacity: 1;
}

.mobileSlideImages {
	display: none;
}

.slide-images {
	width: 850px;
	height: 500px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: all;
	opacity: 0.5;
}

.img-top {
	position: absolute;
	width: 100%;
	height: 100%;
	clip-path: polygon(0% 0%, 85% 0%, 85% 50%, 0% 50%);
	transition: clip-path 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.img-bottom {
	position: absolute;
	width: 100%;
	height: 100%;
	clip-path: polygon(100% 50%, 15% 50%, 15% 100%, 100% 100%);
	transition: clip-path 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.slide-images:hover .img-top {
	clip-path: polygon(10% 0%, 90% 0%, 90% 50%, 10% 50%);
}

.slide-images:hover .img-bottom {
	clip-path: polygon(90% 50%, 10% 50%, 10% 100%, 90% 100%);
}

#s-line1 {
	width: 0;
	opacity: 0;
}

.seperatorLine {
	width: 97%;
	margin: 0 auto;
	height: 1px;
	background-color: #b8b7b7;
}

.seperatorLineHero {
	display: none;
}

.secondSection {
	background-color: rgb(92, 34, 12);
	width: 100%;
	min-height: 100vh;
	justify-content: center;
	align-items: end;
	position: relative;
}

.overlay2 {
	width: 100%;
	height: 300px;
	background: linear-gradient(#000, rgb(92, 34, 12));
	position: absolute;
	top: 0;
	z-index: 50;
}

.carTitle {
	width: 100%;
	height: fit-content;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 80;
	top: -7%;
}

.carTitle h1 {
	font-size: 380px;
	color: #fff;
}

.carSlider {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 250;
	position: relative;
	--position: 50%;
	overflow: hidden;
}

.image-container {
	width: 100%;
}

.slider-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left;
}

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

.image-before {
	position: absolute;
	inset: 0;
	width: var(--position);
}

.slider {
	position: absolute;
	inset: 0;
	cursor: pointer;
	opacity: 0;
	width: 100%;
	height: 100%;
}

.slider:focus-visible ~ .slider-button {
	outline: 5px solid black;
	outline-offset: 3px;
}

.slider-line {
	position: absolute;
	inset: 0;
	width: 0.1rem;
	height: 100%;
	background-color: transparent;
	z-index: 10;
	left: var(--position);
	transform: translateX(-50%);
	pointer-events: none;
}

.slider-button {
	position: absolute;
	background-color: #fff;
	color: black;
	padding: 0.2rem;
	border-radius: 100vw;
	display: grid;
	place-items: center;
	top: 55%;
	left: var(--position);
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 100;
	box-shadow: 1px 1px 1px hsl(0, 50%, 2%, 0.5);
}

.thirdSection {
	width: 97%;
	margin: auto;
	height: fit-content;
}

.mobileThirdSection {
	display: none;
}

.thirdSection .seperatorLine {
	width: 100%;
	height: 0.2px;
	margin-bottom: 6vw;
	background-color: #b8b7b7;
}

.thirdSection .about {
	width: 100%;
	height: fit-content;
	padding-bottom: 5vw;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: auto;
	border-radius: 10px;
	overflow: hidden;
}
.center {
	width: 55%;
	height: 100%;
	padding-left: 50px;
	display: flex;
	align-items: center;
	/* display: grid;
    place-items: center; */
}

.information {
	width: 80%;
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.infoTitle {
	display: flex;
	gap: 30px;
	/* justify-content: space-around; */
	align-items: center;
}

.verticleBar1 {
	width: 2px;
	height: 4.5vw;
	background-color: orangered;
}
.verticleBar2,
.verticleBar3 {
	width: 2px;
	height: 4.5vw;
	background-color: rgb(80, 74, 69);
}

.information h1 {
	text-transform: capitalize;
	font-family: "Big Shoulders Text";
	line-height: 1;
	font-size: 4.6vw;
	color: rgb(80, 74, 69);
}

.information h1:hover {
	cursor: pointer;
}

.information p {
	font-size: 17.5px;
	letter-spacing: 1px;
	font-family: "Big Shoulders Text";
	color: white;
}

.banner {
	width: 55%;
	height: 90vh;
	position: relative;
	border-radius: 10px;
	text-align: right;
	overflow: hidden;
}

.mobileBanner {
	display: none;
}

#mobilePower,
#mobileSpeed,
#mobileTime {
	opacity: 1;
}

.overlay3 {
	left: 0;
	bottom: 0;
	width: 100%;
	height: 30%;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0.726) 50%,
		rgba(0, 0, 0, 1) 100%
	);
	position: absolute;
	padding: 10px 20px 0 20px;
	display: flex;
	justify-content: space-between;
	padding-top: 10%;
	align-items: start;
}

.overlay3 .t {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.overlay3 .topic {
	text-align: left;
	color: white;
}
.overlay3 .topic h1 {
	letter-spacing: 1px;
	font-family: "Big Shoulders Text";
	font-size: 1.4vw;
}
.overlay3 .topic p {
	font-family: nb;
	font-size: 13px;
	margin-top: 3px;
	opacity: 0.9;
}

.banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.banner video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.fourthSection {
	width: 97%;
	margin: 6vw auto;
	height: 100vh;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

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

.info h1 {
	text-align: center;
	font-size: 4em;
	position: relative;
	z-index: 5;
	font-family: "Syne", sans-serif;
	color: white;
}

.info button {
	padding: 16px 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	border: 1px solid black;
	color: black;
	background-color: #ffcc00;
	border-radius: 14px;
	font-size: 18px;
	font-family: "Syne", sans-serif;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.2px;
	cursor: pointer;
	position: relative;
	z-index: 80;
	overflow: hidden;
	transition: color 5.8s ease;
	transition: background-color 0.8s ease;
}

.info button::after {
	content: "";
	width: 100%;
	z-index: -20;
	height: 100%;
	border: 1px solid black;
	background-color: black;
	font-weight: 700;
	position: absolute;
	left: -110%;
	bottom: 0;
	transition: all 0.5s ease;
}
.info button:hover {
	color: white;
	background-color: white;
}
.info button:hover::after {
	left: 0;
}

.fifthSection {
	width: 100%;
	height: fit-content;
	overflow: hidden;
	padding: 60px 0;
}

.scroll-section-inner {
	height: 110vh;
	padding-right: 30px;
	width: fit-content;
	display: flex;
	gap: 5vw;
	flex-direction: row;
	align-items: center;
	position: relative;
}

.fifthSection .title {
	display: flex;
	gap: 20px;
	padding-left: 50px;
	padding-right: 100px;
	flex-direction: column;
	align-items: start;
}

.fifthSection .title h4 {
	font-size: 22px;
	font-family: "Syne";
	color: rgb(161, 156, 156);
}

.fifthSection .title h1 {
	text-align: left;
	color: white;
	font-size: 7vw;
	font-weight: 900;
	line-height: 100%;
	font-family: "Space Mono";
}

.newsCard {
	position: relative;
	width: 517px;
	height: 700px;
	padding-left: 10px;
	padding: 10px;
	margin-bottom: 60px;
	display: flex;
	flex-direction: column;
	gap: 50px;
	justify-content: space-between;
	overflow: hidden;
}

.colorDiv {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	transform: translateY(100%);
	background-color: rgb(240, 98, 42);
	transition: all 0.5s cubic-bezier(0.5, 1, 0.75, 1);
}
/* 
.newsCard .description h1,
.newsCard .description .no,
.newsCard .description p,
.newsCard #date {
    transition: color 0.5s ease 0.3s;
} */

.newsCard:hover .description h1,
.newsCard:hover .description .no,
.newsCard:hover .description p,
.newsCard:hover #date {
	color: #0e0e0c;
}

.newsCard:hover .colorDiv {
	transform: translateY(0%);
}

.description {
	display: flex;
	gap: 15px;
	flex-direction: column;
	justify-content: space-between;
}

.description .no {
	color: white;
	font-family: "Syne";
	font-size: 15px;
}

.description h1 {
	font-size: 2.75vw;
	font-family: "Big Shoulders Text";
	font-weight: 900;
	color: white;
	letter-spacing: 1.4px;
	line-height: 110%;
}

.description p {
	color: white;
	font-weight: 200;
	font-size: 18px;
	letter-spacing: 0.5px;
	font-family: "grotesk2";
}

#date {
	font-size: 18px;
	text-align: end;
	font-family: "Big Shoulders Text";
	font-weight: 700;
	color: rgb(194, 190, 190);
}

.reverse {
	flex-direction: column-reverse;
}

.image {
	width: 100%;
	height: 240px;
	overflow: hidden;
}

.image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.scroll-section {
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.mobileFifthSection {
	display: none;
}

.sixthSectionDesktop {
	width: 97%;
	margin: auto;
	height: fit-content;
	padding-bottom: 4vw;
	/* background-color: red; */
}

.sixthSectionDesktop .sectionTitle h1 {
	padding-left: 2vw;
	padding-bottom: 4vw;
}

.elements {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	/* margin-left: 40px; */
	border-top: 1px solid rgb(169, 169, 169);
	padding: 4vw 2vw;
	padding-right: 0;
}

/* .elements h1:hover{
    transform: translateX(7%);
    opacity: 0.4;
} */

.elem-content {
	display: flex;
	flex-direction: column;
	gap: 2vw;
}

.elem-content p {
	font-family: "Syne";
	font-size: 18px;
	color: rgb(168, 166, 166);
}

.elements h1 {
	font-size: 2.5vw;
	width: 80%;
	font-weight: 400;
	color: rgb(243, 240, 240);
	font-family: "Big Shoulders Text";
	transition: 0.5s ease;
}

.elements h5 {
	font-size: 15px;
	color: rgb(169, 169, 169);
	display: flex;
	text-transform: uppercase;
	text-align: right;
	justify-content: end;
	opacity: 0.5;
	font-family: nuckle;
}

.elemlast {
	border-bottom: 1px solid rgb(169, 169, 169);
}

.elements img {
	/* display: none; */
	opacity: 0;
	width: 500px;
	height: 140%;
	position: absolute;
	z-index: 999;
	top: -70%;
	left: -20%;
	transform: translate(50%, 50%);
	object-fit: cover;
	pointer-events: none;
}

.sixthSection {
	display: none;
	overflow: hidden;
	color: white;
	padding-bottom: 4vw;
}
.container {
	padding-top: 5vw;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 97%;
	gap: 70px;
	margin: auto;
}

.content {
	padding-right: 20px;
}

.sixthSection .title {
	font-size: 15px;
	margin-bottom: 40px;
	display: flex;
	justify-content: end;
	opacity: 0.5;
	font-family: nuckle;
}

.text {
	/* font-size: 18px; */
	line-height: 1.5;
	margin-bottom: 20px;
	margin-top: 71px;
	font-family: "aeonik";
	color: white;
	/* width: 80%; */
}

.text h1 {
	padding-left: 2vw;
	font-family: "Big Shoulders Text";
	/* font-family: "Radio Canada Big"; */
	font-size: 45px;
}

.text .num {
	font-size: 18px;
	color: rgb(168, 166, 166);
	margin-bottom: 20px;
	margin-left: 2vw;
}
.image-container {
	width: 75%;
	height: 450px;
	overflow: hidden;
	border-radius: 10px;
	float: right;

	/* display: flex;
	justify-content:  flex-end; */
	/* margin-top: 20px; */
}
.image-container img {
	/* max-width: 75%;
 */
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* footer {
	background-color: #e45959;
}

footer h1 {
	color: white;
	font-size: 45px;
} */

/* footer section */

footer {
	width: 100%;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 120px;
	position: fixed;
	z-index: 890;
	overflow: hidden;
	bottom: 0;
	background-color: #000;
	padding: 0 1.7vw;
}
.footer-wrapper {
	height: 100vh;
	width: 100%;
	background-color: #000;
}

.header-top {
	display: flex;
	flex-direction: column;
	gap: 0.7vw;
	/* flex: 1; */
}

.images {
	display: flex;
	justify-content: center;
	gap: 25px;
	margin-top: 30px;
}

.header-top .main-heading {
	position: absolute;
	z-index: 9999;
	font-size: 14.9vw;
	left: 0.69%;
	top: -1%;
	font-weight: 400;
	color: #e3e9e8;
	font-family: NeueRoman;
}

.header-top p {
	font-size: 2.3vw;
	margin-top: 15px;
	margin-bottom: 2px;
}

.images {
	overflow: hidden;
	white-space: nowrap;
}

.images img {
	display: inline-block;
	height: 220px;
	margin: 0;
	animation: scroll 10s linear infinite;
	background-size: cover;
}
@keyframes scroll {
	0% {
		transform: translateX(0%);
	}
	100% {
		transform: translateX(-100%);
	}
}
.images img {
	width: 30%;
	height: auto;
	border-radius: 4px;
}

.header-top .bottom {
	font-size: 7vw;
	letter-spacing: 8px;
	margin-top: 0;
	padding: 0;
}
.header-top a {
	/* text-decoration: underline; */
	font-size: 1.87vw;
	padding-bottom: 0.4vw;
	border-bottom: 1px solid white;
	color: white;
	font-family: aeonik;
	width: fit-content;
}
.mail-footer {
	position: relative;
	text-decoration: none;
	color: #000;
}
/* .mail-footer::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 87.7%;
	height: 2px;
	background-color: white;
	margin-left: 0.5vh;
} */

.header-top a span svg {
	width: 26px;
	text-align: center;
}

#middle-footer {
	margin-top: 4vw;
	display: flex;
	justify-content: space-between;
}

#middle-footer .section1 {
	display: flex;
	flex-direction: column;
	gap: 30px;
	font-family: grotesk2;
}

.section1 p {
	margin: 0;
}

.section1 .navtag {
	color: #a9b0af;
	font-size: 18px;
	text-transform: uppercase;
}

.section1 .parent-nav {
	color: #e1e3e3;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 35px;
}

.parent-nav .navi {
	display: flex;
	flex-direction: column;
	gap: 21px;
}

.section1 .navi p {
	text-transform: capitalize;
	font-size: 20px;
	font-weight: 400;
}

#middle-footer .section2 {
	font-size: 1.2vw;
	width: 32%;
	display: flex;
	justify-content: space-between;
}

.call1 {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.gap {
	gap: 30px;
}
.call1 p:nth-child(1) {
	text-transform: uppercase;
	font-size: 21px;
	opacity: 0.8;
	font-weight: 500;
}

.call1 p:nth-child(2) {
	font-size: 18px;
	font-weight: 300;
	opacity: 1;
}

.social {
	display: flex;
}

ul {
	display: flex;
	flex-direction: column;
	gap: 0.6vw;
}

ul li {
	text-align: center;
	display: inline-block;
	list-style: none;
	padding: 0.4vw 0.9vw;
	color: white;
	border: solid 1px rgb(181, 179, 179);
	border-radius: 50px;
	position: relative;
	width: fit-content;
	overflow: hidden;
}
ul li::after {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	font-weight: 100;
	position: absolute;
	left: 0;
	bottom: -100%;
	border-radius: 50px;
	transition: all 0.2s ease;
}
ul li:hover::after {
	bottom: 0;
}
ul li:hover {
	cursor: pointer;
}

ul li a {
	position: relative;
	color: #bbc5c4;
	text-decoration: none;
	font-family: NeueRoman;
	z-index: 9;
	font-size: 1vw;
	font-weight: 600;
}
ul li:hover a {
	color: black;
}

.middle-footer2 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 3vw;
}

.middle-footer2 p {
	color: #bbc5c4;
	font-weight: 600;
}
.middle-footer2 .img1 {
	height: 72px;
	width: 72px;
	overflow: hidden;
}
.middle-footer2 .img1 img {
	width: 80%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.middle-footer2 .middle-text {
	font-weight: 400;
	color: #bbc5c4;
	font-size: 1.6vw;
	font-family: aeonik;
	padding-top: 2vw;
}

.middle-footer2 p {
	margin-top: 20px;
	font-family: NeueRoman;
}

.scrolling-text-container-footer {
	margin-top: 1vw;
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
	border-top: 1px solid white;
	padding: 10px 6px 6px 6px;
	box-sizing: border-box;
	color: white;
}

.scrolling-text-footer {
	display: inline-block;
	white-space: nowrap;
	animation: scroll 40s linear infinite;
	font-family: aeonik;
}

@keyframes scroll {
	0% {
		transform: translateX(0%);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* //responsive code */

@media (max-width: 3024px) {
	footer {
		height: auto;
	}
	.scrolling-text-container-footer {
		margin-top: 1vw;
		width: 100%;
		overflow: hidden;
		white-space: nowrap;
		border-top: 1px solid white;
		padding: 10px 6px 6px 6px;
		box-sizing: border-box;
	}

	.scrolling-text-footer {
		display: inline-block;
		white-space: nowrap;
		animation: scroll 40s linear infinite;
	}

	@keyframes scroll {
		0% {
			transform: translateX(0%);
		}
		100% {
			transform: translateX(-50%);
		}
	}
}

@media (max-width: 1024px) {
	.header-top .main-heading {
		font-size: 9vw;
		position: absolute;
		top: -3.89%;
		left: 17%;
		scale: 1.5;
	}
	footer {
		cursor: pointer;
		width: 97%;
		margin: auto;
		display: flex;
		flex-direction: column;
		height: auto;
	}

	#middle-footer {
		margin-top: 0vw;
		display: flex;
		flex-direction: column;
	}

	#middle-footer .section1 {
		display: flex;
		flex-direction: column;
		gap: 30px;
	}

	.section1 p {
		margin: 0;
	}

	.section1 .navtag {
		font-size: 30px;
		text-transform: uppercase;
		display: none;
	}
	.section1 .tags {
		display: block;
	}
	.section1 .parent-nav {
		justify-content: left;
		display: flex;
		align-items: center;
		gap: 35px;
	}

	.parent-nav .navi {
		display: flex;
		flex-direction: column;
		display: none;
	}

	.parent-nav .gap {
		display: block;
	}

	.section1 .navi p {
		text-transform: capitalize;
		font-size: 24px;
		font-weight: 400;
	}

	#middle-footer .section2 {
		font-size: 1.2vw;
		width: 32%;
		display: flex;
		justify-content: space-between;
	}

	.call1 {
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	.call1 p:nth-child(1) {
		text-transform: uppercase;
		font-size: 24px;
		margin-top: 13px;
	}

	.call1 p:nth-child(2) {
		font-size: 24px;
	}

	.social {
		display: flex;
		justify-content: right;
		margin-top: 15px;
	}

	ul {
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 1vw;
	}

	.header-top p {
		font-size: 4vw;
	}
	.header-top a {
		font-size: 3.5vw;
	}
	.images img {
		height: 150px;
	}
	ul li a {
		font-size: 22px;
		font-family: NeueRoman;
	}
	.middle-footer2 p {
		font-size: 24px;
	}
	.middle-footer2 .middle-text {
		font-weight: 600;
		color: #bbc5c4;
		font-size: 24px;
	}
}

@media (max-width: 768px) {
	.header-top .main-heading {
		font-size: 9vw;
		position: absolute;
		top: -2%;
		left: 18%;
		scale: 1.56;
	}
	footer {
		cursor: pointer;
		width: 97%;
		margin: auto;
		display: flex;
		flex-direction: column;
		height: 100vh;
	}

	#middle-footer {
		margin-top: 0vw;
		display: flex;
		flex-direction: column;
	}

	#middle-footer .section1 {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.section1 p {
		margin: 0;
	}

	.section1 .navtag {
		font-size: 18px;
		text-transform: uppercase;
		display: none;
	}
	.section1 .tags {
		display: block;
	}
	.section1 .parent-nav {
		justify-content: left;
		display: flex;
		align-items: center;
		gap: 3px;
	}

	.parent-nav .navi {
		display: flex;
		flex-direction: column;
		gap: 20px;
		display: none;
	}

	.parent-nav .gap {
		display: block;
	}

	.section1 .navi p {
		text-transform: capitalize;
		font-size: 24px;
		font-weight: 600;
	}

	#middle-footer .section2 {
		font-size: 1vw;
		width: 32%;
		display: flex;
		justify-content: space-between;
	}

	.images img {
		display: inline-block;
		height: 220px;
		margin: 0;
		animation: scroll 12s linear infinite;
		background-size: cover;
	}
	@keyframes scroll {
		0% {
			transform: translateX(0%);
		}
		100% {
			transform: translateX(-100%);
		}
	}

	.call1 {
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	.call1 p:nth-child(1) {
		text-transform: uppercase;
		font-size: 17px;
		margin-top: 13px;
	}

	.call1 p:nth-child(2) {
		font-size: 14px;
	}

	.social {
		display: flex;
		justify-content: left;
		margin-top: 10px;
	}

	ul {
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 2vw;
	}

	.header-top p {
		font-size: 4vw;
	}
	.header-top a {
		font-size: 3.5vw;
	}
	.images img {
		height: 150px;
	}
	ul li a {
		font-size: 18px;
	}
	.middle-footer2 p {
		font-size: 13px;
		/* margin: 0; */
	}
	.middle-footer2 .middle-text {
		font-weight: 600;
		padding: 0;
		color: #bbc5c4;
		font-size: 15px;
	}

	.middle-footer2 p {
		margin-top: 0px;
	}

	.scrolling-text-container-footer {
		margin-top: 0.1vw;
		width: 100%;
		overflow: hidden;
		white-space: nowrap;
		border-top: 1px solid white;
		padding: 10px 6px 6px 6px;
		box-sizing: border-box;
		background-color: #111; /* Adjust as needed */
	}

	.scrolling-text-footer {
		display: inline-block;
		white-space: nowrap;
		animation: scroll 40s linear infinite;
	}

	@keyframes scroll {
		0% {
			transform: translateX(0%);
		}
		100% {
			transform: translateX(-50%);
		}
	}
}

@media (max-width: 480px) {
	.header-top .main-heading {
		font-size: 9.5vw;
		position: absolute;
		top: 2%;
		left: 18%;
		scale: 1.56;
	}
	footer {
		cursor: pointer;
		width: 100%;
		margin: auto;
		display: flex;
		flex-direction: column;
		height: 100vh;
		padding-left: 2vw;
	}

	#middle-footer {
		gap: 14vw;
		margin-top: -9vw;
		display: flex;
		flex-direction: column;
	}

	#middle-footer .section1 {
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	.section1 p {
		margin: 0;
	}

	.section1 .navtag {
		font-size: 18px;
		text-transform: uppercase;
		display: none;
	}
	.section1 .tags {
		display: block;
		font-weight: 100;
		font-size: 3vw;
	}
	.section1 .parent-nav {
		justify-content: left;
		display: flex;
		align-items: center;
		gap: 47px;
	}

	.parent-nav .navi {
		display: flex;
		flex-direction: column;
		gap: 20px;
		display: none;
	}

	.parent-nav .gap {
		display: block;
	}

	.section1 .navi p {
		text-transform: capitalize;
		font-size: 24px;
		font-weight: 600;
	}

	#middle-footer .section2 {
		font-size: 1vw;
		width: 32%;
		display: flex;
		justify-content: space-between;
	}

	.images img {
		display: inline-block;
		height: 220px;
		margin: 0;
		animation: scroll1 12s linear infinite;
		background-size: cover;
	}
	@keyframes scroll1 {
		0% {
			transform: translateX(0%);
		}
		100% {
			transform: translateX(-100%);
		}
	}

	.call1 {
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	.call1 p:nth-child(1) {
		text-transform: uppercase;
		font-size: 17px;
		margin-top: 15px;
		font-weight: 300;
		font-weight: 300;
	}

	.call1 p:nth-child(2) {
		font-size: 14px;
		font-weight: 300;
	}

	.social {
		display: flex;
		justify-content: flex-start;
		margin-top: 10px;
		gap: 6vw;
	}

	ul {
		display: flex;
		align-items: flex-start;
		flex-direction: column;
		justify-content: flex-start;
		gap: 3vw;
	}

	.header-top p {
		font-size: 4vw;
	}
	.header-top a {
		font-size: 3.5vw;
	}
	.images img {
		height: 150px;
	}
	ul li a {
		font-size: 14px;
		padding: 9vw 2vw;
	}
	.middle-footer2 p {
		font-size: 13px;
	}
	.middle-footer2 .middle-text {
		font-weight: 400;
		padding: 0;
		color: #bbc5c4;
		font-size: 4vw;
	}

	.middle-footer2 p {
		font-size: 3vw;
	}

	.scrolling-text-container-footer {
		margin-top: 0.1vw;
		width: 100%;
		overflow: hidden;
		white-space: nowrap;
		border-top: 1px solid white;
		color: white;
		padding: 10px 6px 6px 6px;
		box-sizing: border-box;
		/* background-color: #111; Adjust as needed */
	}

	.scrolling-text-footer {
		display: inline-block;
		color: white;
		white-space: nowrap;
		animation: scroll 40s linear infinite;
	}

	@keyframes scroll {
		0% {
			transform: translateX(0%);
		}
		100% {
			transform: translateX(-50%);
		}
	}
}
