/* Reset dei margini e dei padding */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	overflow-x: hidden;
}

html,
body {
	width: 100%;
	font-family: "Syne", sans-serif;
}

ul {
	margin: 0;
	padding: 0;
}

header ul,
header li {
	list-style: none;
	display: inline-block;
	padding: 5px 10px;
}

a,
span,
h1,
h2,
h3,
h4,
h5,
h6,
li,
p {
	font-family: "Syne", sans-serif;
}

@font-face {
	font-family: "TTFirsNeueTrialDemiBold";
	src: url("./fonts/DemiBold.ttf") format("truetype");
	font-weight: 600;
	/* DemiBold è solitamente considerato semi-grassetto, che corrisponde a un font-weight di circa 600 */
	font-style: normal;
}

@font-face {
	font-family: "TTFirsNeueTrialMedium";
	src: url("./fonts/Medium.ttf") format("truetype");
	font-weight: 600;
	/* DemiBold è solitamente considerato semi-grassetto, che corrisponde a un font-weight di circa 600 */
	font-style: normal;
}

body {
	font-family: Arial, sans-serif;

	background-color: #000000;
}

header {
	width: 100%;
	padding: 5px 5px;
	background-color: #030303d4;
	background-position: top, center;
	color: white;
	position: fixed;
	top: 0;
	border-bottom: 1px solid #dbe5113b;
	z-index: 999;
}

h3.withGradient,
h2.withGradient {
	position: relative;
	background: #64b7ea;
	background: linear-gradient(to right, #64b7ea 0%, #b5dc3a 50%, #f3e901 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-family: "Syne", sans-serif;
	font-weight: bold;
}

h3.withGradient.withUnderline {
	display: inline-block;
}

.withUnderline::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: inline-block;
	height: 2px;
	/* Altezza della "sottolineatura" */
	background: linear-gradient(to right, #64b7ea 0%, #b5dc3a 50%, #f3e901 100%);
}

.btlLink {
	transition: all 0.5s ease;
	scale: 1;
}

.btlLink:hover {
	opacity: 0.5;
	scale: 0.8;
}

a {
	font-family: "TTFirsNeueTrialMedium";
	text-decoration: none;
	color: white;
}

.white {
	color: white;
}

strong {
	color: #dfe60e;
}

#listItem li {
	display: block;
	text-align: left;
	color: #979797;
	font-weight: 600;
	padding: 5px 0;
	max-width: 500px;
}

p {
	color: white;
}

.nav-link.active {
	color: #e2e610 !important;
	text-decoration: underline;
}

a.nav-link {
	color: white !important;
	transition: all 0.5s ease;
}

a.nav-link:hover {
	opacity: 0.7;
	transform: scale(1.15);
}

.navbar-toggler:focus {
	text-decoration: none;
	outline: 0;
	box-shadow: none;
}

/*SECTION HOME*/

#Home {
	background-image: url("../img/bgHome.jpg");
	background-size: cover;
	width: 100%;
	height: 100vh;
	background-position: bottom, center;
}

/*SECTION HOME*/

#About {
	background-image: url(../img/circle.png);
	background-size: contain;
	width: 100%;
	height: 100%;
	background-position: top, center;
	background-repeat: no-repeat;
}

#About .individuals img,
#About .community img,
#About .security img {
	max-width: 500px;
}

#Scrolling {
	overflow: hidden;
}

.scrolling_item.top {
	display: flex;
	width: calc(100%);
	/* Regola questa larghezza se necessario */
	animation: scrollSx 120s linear infinite;
}

.scrolling_item.bottom {
	display: flex;
	width: calc(100%);
	/* Regola questa larghezza se necessario */
	animation: scrollDx 120s linear infinite;
}

@keyframes scrollSx {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-80%);
		/* Ajusta questo valore in base alla lunghezza totale dei tuoi elementi */
	}
}

@keyframes scrollDx {
	0% {
		transform: translateX(-80%);
	}

	100% {
		transform: translateX(0%);
		/* Ajusta questo valore in base alla lunghezza totale dei tuoi elementi */
	}
}

#Comparison {
	position: relative;
	overflow: hidden;
	padding: 180px 0;
}

.blur {
	position: absolute;
	width: 50%;
}

#Bone {
	animation: spinOne 60s linear infinite;
}

#Btwo {
	animation: spinTwo 60s linear infinite;
}

@keyframes spinOne {
	from {
		transform: rotate(0deg) translateX(2%) translateY(-20%) rotate(360deg);
	}

	to {
		transform: rotate(360deg) translateX(2%) translateY(-25%) rotate(-360deg);
	}
}

@keyframes spinTwo {
	from {
		transform: rotate(-360deg) translateX(60%) translateY(-40%) rotate(360deg);
	}

	to {
		transform: rotate(1deg) translateX(60%) translateY(-45%) rotate(0deg);
	}
}

#Features {
	background-image: url("../img/bg_hiveBot.png");
	background-size: cover;
	width: 100%;

	background-position: top, center;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 999;
}
.iconFeatures {
	max-width: 30px;
}
#Roadmap {
	position: relative;
	width: 100%;
	background-size: cover;
	background-position: bottom center;
	z-index: 1;
}

#Roadmap::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url("../img/roadmap-bg.jpg");
	background-size: cover;
	background-position: bottom center;
	filter: blur(10px);
	/* Adjust the blur level as needed */
	z-index: -1;
}

/* .bg_item {
	background-image: url("../img/bg_item.png");
	background-size: cover;
	width: 392px;
	height: 400px;
	background-position: top, center;
	background-repeat: no-repeat;
} */

.bg_item p {
	font-size: 1rem;
	line-height: 1.8rem;
}

.bg_item img {
	max-width: 30px;
}

/* Dispositivi large (desktop, 992px e oltre) */

#accordionCustom .accordion-button {
	background-color: black;
	color: white;
	font-size: 28px;
}

.accordion-button:not(.collapsed) {
	box-shadow: none;
}

.accordion-collapse {
	background-color: black;
	padding-left: 35px;
	color: grey;
	font-size: 20px;
}

.accordion-item,
.accordion-item:first-of-type > .accordion-header .accordion-button {
	border: none;
	box-shadow: none;
	border-top-left-radius: initial;
	border-top-right-radius: initial;
}

.accordion-item:last-of-type {
	border-bottom-right-radius: initial;
	border-bottom-left-radius: initial;
	background-color: black;
}

.wrapper_bottom_home {
	position: absolute;
	bottom: 15%;
}

[class^="typewrite"] {
	min-height: 200px;
}

[class^="wrap"]:after {
	content: "";
	display: inline-block;
	position: relative;
	width: 4px;
	height: 30px;
	background: yellow;
	top: 2px;
	left: 3px;
}
.animationWrapper {
	padding-top: 100px;
}
.animatedText {
	font-size: 36px;
}

@media (max-width: 992px) {
	#Features {
		height: initial;
	}

	.animatedText {
		font-size: 32px;
	}

	/* Stili per schermi large */
}

/* Dispositivi medium (tablet, 768px e oltre) */
@media (max-width: 768px) {
	.wrapper_bottom_home {
		position: absolute;
		bottom: 10%;

		.animatedText {
			font-size: 30px;
		}
		.animationWrapper {
			padding-top: 100px;
		}
	}

	/* Stili per schermi medium */
}

@media (max-width: 576px) {
	.wrapper_bottom_home {
		position: absolute;
		bottom: 0;
	}

	.animatedText {
		font-size: 24px;
	}

	[class^="wrap"]:after {
		content: "";
		display: inline-block;
		position: relative;
		width: 4px;
		height: 20px;
		background: yellow;
		top: 2px;
		left: 3px;
	}

	/* .bg_item {
		background-image: url(../img/bg_item.png);
		background-size: contain;
		width: 350px;
		height: 430px;
		background-position: top, center;
		background-repeat: no-repeat;
	} */

	#Features {
		overflow-x: hidden;
		background-size: auto;
	}

	#Features h3 {
		font-size: 1.2rem !important;
	}

	.bg_item p {
		font-size: 0.8rem;
		line-height: 1.8rem;
	}

	#About .security img {
		max-width: 100%;
	}

	.scrolling_item img {
		max-height: 35px;
	}
	.animationWrapper {
		padding-top: 55px;
	}
}
