body {
	color: #fff;
	font-family: sans-serif;
	font-size: 16px;
	background-color: #020002;
	margin: 0;
}

img {
	width: 100%;
	height: auto;
}

header {
	position: fixed;
	z-index: 9;
	width: 100%;
	top: 0;
	left: 0;
}
.header__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	max-width: 1400px;
	margin: auto;
}
.header__logo img {
	width: 100px;
}
.header__menu {
	display: none;
	font-family: sans-serif;
}
.header__menu ul {
	display: flex;
	grid-gap: 30px;
	list-style: none;
}
.header__menu a {
	position: relative;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
	padding: 5px 0;
}
.header__menu a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: #fff;
	transition: width 0.3s ease;
}
.header__menu a.active::after {
	width: 100%;
}
.header__rrss {
	display: none;
	grid-gap: 10px;
}
.header__rrss__icon {
	display: block;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid #fff;
	position: relative;
}
.header__rrss__icon i {
	color: #fff;
	font-size: 20px;
	position: absolute;
	left: 50%; 
	top: 50%; 
	transform: translate(-50%, -50%);
}
.header__rrss__icon:hover {
	background-color: #00BFB5;
}
.header__icon img {
	width: 26px;
}

.menu__mobile {
	display: none;
	position: fixed;
	top: 0;
	width: 100%;
	height: 100vh;
	background-color: #000;
	z-index: 10;
	padding: 20px;
}
.header__mobile {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
	padding-top: 0;
	width: 90%;
}
.header__mobile__logo img {
	width: 100px;
}
.header__mobile__close {
	display: flex;
	grid-gap: 10px;
	align-items: center;
	color: #A09BAF;
	cursor: pointer;
}
.header__mobile__close img {
	width: 26px;
}
.mobile__menu {
	display: flex;
	flex-direction: column;
	grid-gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
	margin-top: 20px;
	margin-bottom: 40px;
}
.mobile__menu a {
	color: #fff;
	font-size: 20px;
	text-decoration: none;
}
.mobile__rrss {
	width: 90%;
	padding: 10px 0;
	border-top: 1px solid #ccc;
}
.mobile__rrss i {
	color: #fff;
}

.scrolled {
	background-color: #000;
}

.marquee {
	padding: 40px 0;
	font-size: 80px;
	font-family: roc-grotesk;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-width: 2px;
	display: flex ;
	width: 100%;
  	overflow: hidden;
  	white-space: nowrap;
  	box-sizing: border-box;
}

.marquee__item {
	animation-duration: 26s ;
	animation-iteration-count: infinite ;
	animation-name: marquee-content ;
	animation-timing-function: linear ;
	padding: 5px 15px 5px 15px ;
}

@keyframes marquee-content {
	from {
		transform: translateX( 0% );
	}
	to {
		transform: translateX( -100% );
	}
}

footer {
	position: relative;
	background-size: cover;
	background-position: bottom center;
	background-image: url('../img/footer.jpg');
}
.footer__content {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 60px 0;
	padding-bottom: 20px;
}
.footer__logo {
	width: 60px;
	margin: auto;
	margin-bottom: 20px;
}
.footer__menu {
	display: flex;
	justify-content: center;
	grid-gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
	margin-bottom: 40px;
}
.footer__menu a {
	position: relative;
	color: #A09BAF;
	text-decoration: none;
	padding: 5px 0;
}
.footer__menu a.active {
	color: #fff;
}
.footer__menu a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: #fff;
	transition: width 0.3s ease;
}
.footer__menu a.active::after {
	width: 100%;
}
.footer__rrss {
	display: flex;
	justify-content: center;
	grid-gap: 30px;
}
.footer__rrss__icon {
	display: block;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid #fff;
	position: relative;
	background-color: #00BFB5;
}
.footer__rrss__icon i {
	color: #fff;
	font-size: 20px;
	position: absolute;
	left: 50%; 
	top: 50%; 
	transform: translate(-50%, -50%);
}
.footer__copyright {
	font-size: 14px;
	color: #A09BAF;
	border-top: 1px solid #ccc;
	padding: 20px 0;
	text-align: center;
}
.footer__overlay {
	position: absolute;
	top: 0;
	left: 0;
	inset: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
    background-image: linear-gradient(180deg, #020002 0%, #02000200 100%);
    opacity: 1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

@media screen and (min-width: 768px) {

	.header__menu {
		display: block;
	}
	.header__rrss {
		display: flex;
	}
	.header__icon {
		display: none;
	}
	.marquee {
		padding: 60px 0;
		font-size: 100px;
	}
	.footer__content {
		padding-bottom: 60px;
	}
	.footer__menu a {
		font-size: 18px;
	}
	.footer__rrss__icon {
		width: 46px;
		height: 46px;
	}
	.footer__copyright {
		font-size: 16px;
	}

}

@media screen and (min-width: 1200px) {

	.marquee {
		padding: 80px 0;
		font-size: 160px;
	}

}