/*** Import fonts ***/
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;500;600;700;800;900&display=swap');

:root {
	--c-azzurro: #1E92EA;
	--c-arancione: #F56200;
}

body {
	font-family: 'Red Hat Display', sans-serif;
	background: #000314;
}

a {
	color: var(--c-azzurro);
}

/* Header */

.navbar {
	padding: 5rem;
	background: rgba(0, 0, 0, 0);
	backdrop-filter: blur(0px);
	-webkit-backdrop-filter: blur(0px);
	transition: padding .3s, background .3s, backdrop-filter .3s, -webkit-backdrop-filter .3s;
}

@media (max-width: 767.98px) {
	.navbar {
		padding: .8rem .5rem;
	}
}

.scrolled.navbar {
	padding: 1rem;
	background: rgba(0, 0, 0, .8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.navbar-brand svg {
	width: 400px;
	height: auto;
	transition: width .3s;
}

@media (max-width: 767.98px) {
	.navbar-brand svg {
		width: 200px;
	}
}

.scrolled .navbar-brand svg {
	width: 200px;
}

.navbar-dark .navbar-toggler {
	background: var(--c-arancione);
	padding: .6rem .8rem;
	border-radius: 2px;
	border: none;
}

.navbar-dark .navbar-toggler svg {
	width: 26px;
	height: auto;
}

.navbar-dark .navbar-toggler svg * {
	fill: #FFF;
}

.nav-link {
	padding: .6rem 1.5rem !important;
	font-size: 1.5rem;
	font-weight: 500;
	transition: font-size .2s, padding .2s;
}

@media (max-width: 1199.98px) {
	.nav-link {
		padding: .5rem 0 0 !important;
		font-size: 1.2rem;
	}
}

.scrolled .nav-link {
	/* padding: .4rem 1rem !important; */
	font-size: 1.3rem;
}

.nav-button {
	color: #FFF !important;
	font-weight: 900;
	background: var(--c-arancione);
	text-decoration: none;
	border-radius: 100px;
	padding: .6rem 2rem !important;
	margin-left: 1rem;
	box-shadow: 0 0 0 rgba(255, 102, 0, 0);
	transition: transform .2s, box-shadow .2s;
}

@media (max-width: 1199.98px) {
	.nav-button {
		padding: .6rem .9rem !important;
		margin: .5rem -.9rem 0;
		border-radius: 3px;
	}
}

.nav-button:hover {
	box-shadow: 0 10px 30px rgba(255, 102, 0, .5);
	transform: scale(1.2);
}

/* Footer */

#footer {
	background: #000314;
	color: #FFF;
}

@media (max-width: 991.98px) {
	#footer .navbar-brand {
		padding: 0 1.5rem 1rem;
		display: block;
	}
}

#footer .footer-logo svg {
	max-width: 100%;
	height: auto;
	margin-top: .3rem;
}

#footer .nav-link {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, .75);
	padding: 0 1.5rem !important;
	transition: color .2s;
}

#footer .nav-link:hover {
	color: #FFF;
}

#footer .nav-link-download {
	color: var(--c-arancione);
}

@media (max-width: 991.98px) {
	#footer .download-links a {
		margin: 1rem 1.5rem .5rem;
		display: block;
	}
}

.download-links a {
	display: inline-block;
	transition: transform .2s;
}

.download-links a:hover {
	transform: scale(1.1);
}

.download-links img {
	/* width: 175px; */
	width: auto;
	height: 60px;
	margin: 0 .2rem .2rem 0;
}

.copyright {
	text-align: center;
	padding: 3rem 1rem 0;
}

@media (max-width: 767.98px) {
	.copyright {
		text-align: center;
		padding: 1rem 1rem 0;
	}
}

.copyright p {
	color: rgba(255, 255, 255, .6);
	margin: 0;
}

@media (max-width: 767.98px) {
	.copyright p {
		font-size: .8rem;
	}
}

.copyright a {
	color: rgba(255, 255, 255, .6);
	text-decoration: none;
	transition: color .2s;
}

@media (max-width: 767.98px) {
	.copyright a {
		font-size: .8rem;
	}
}

.copyright a:hover {
	color: rgba(255, 255, 255, 1);
}

/* Home */

#drivest-intro {
	width: 100%;
	min-height: 100vh;
	background-size: cover;
	padding: 15rem 5rem 5rem;
	position: relative;
	display: flex;
	align-items: flex-start;
	/* flex-wrap: wrap; */
	align-content: flex-start;
	flex-direction: column;
	justify-content: flex-end;
}

.webp #drivest-intro {
	background-image: url(../images/ncc-transfer.webp);
}

.no-webp #drivest-intro {
	background-image: url(../images/ncc-transfer.png);
}

@media (max-width: 575.98px) {
	.webp #drivest-intro {
		background-image: url(../images/ncc-transfer-m.webp);
	}

	.no-webp #drivest-intro {
		background-image: url(../images/ncc-transfer-m.png);
	}
}

@media (max-width: 767.98px) {
	#drivest-intro {
		padding: 2rem;
		background-position: center;
	}
}

#drivest-intro::before {
	width: 100%;
	height: 338px;
	background: repeat-x top;
	display: block;
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
}

.webp #drivest-intro::before {
	background-image: url(../images/gradient.webp);
}

.no-webp #drivest-intro::before {
	background-image: url(../images/gradient.png);
}

@media (max-width: 767.98px) {
	#drivest-intro::before {
		height: 180px;
		background-size: auto 100%;
	}
}

#drivest-intro h1 {
	color: #FFF;
	font-weight: 900;
	font-size: 6rem;
	line-height: 5.5rem;
	position: relative;
	z-index: 1;
	margin-bottom: 1.5rem;
	width: 700px;
	max-width: 100%;
	animation: intro-in 1s;
	animation-fill-mode: both;
}

@media (max-width: 767.98px) {
	#drivest-intro h1 {
		font-size: 2rem;
		line-height: 2rem;
		width: 700px;
		margin-bottom: .5rem;
	}
}

#drivest-intro p {
	color: rgba(255, 255, 255, .75);
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 140%;
	position: relative;
	z-index: 1;
	margin-bottom: 1.8rem;
	width: 700px;
	max-width: 100%;
	animation: intro-in 1s;
	animation-delay: .2s;
	animation-fill-mode: both;
}

@media (max-width: 767.98px) {
	#drivest-intro p {
		font-size: 1rem;
		line-height: 120%;
		margin-bottom: .8rem;
		font-weight: 400;
	}
}

#drivest-intro span {
	animation: intro-in 1s;
	animation-delay: .4s;
	animation-fill-mode: both;
}

#drivest-intro span a {
	color: #FFF;
	font-weight: 900;
	background: var(--c-arancione);
	text-decoration: none;
	display: inline-block;
	padding: 1rem 3rem 1.1rem;
	border-radius: 8px;
	font-size: 1.8rem;
	position: relative;
	z-index: 1;
	box-shadow: 0 0 0 rgba(255, 102, 0, 0);
	transition: transform .2s, box-shadow .2s;
}

@media (max-width: 767.98px) {
	#drivest-intro span a {
		padding: .7rem 2rem .8rem;
		font-size: 1.2rem;
	}
}

#drivest-intro span a:hover {
	box-shadow: 0 10px 40px rgba(255, 102, 0, .5);
	transform: scale(1.1);
}

@keyframes intro-in {
	0% {
		transform: translateX(-1000px);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

.goto {
	position: absolute;
	background: var(--c-arancione);
	border-radius: 50px;
	border: none;
	bottom: -60px;
	left: calc(50% - 30px);
	width: 60px;
	height: 120px;
	display: flex;
	justify-content: center;
	box-shadow: 0 0 0 rgba(255, 102, 0, 0);
	transition: transform .2s, box-shadow .2s;
	z-index: 1;
}

@media (max-width: 767.98px) {
	.goto {
		left: auto;
		right: 10px;
		bottom: -40px;
		width: 40px;
		height: 80px;
		display: none;
	}
}

.goto:hover {
	box-shadow: 0 10px 30px rgba(255, 102, 0, .5);
	transform: scale(1.2);
}

.goto svg {
	margin-top: 10px;
	animation: goto 3s infinite;
	animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
	/* animation-direction: alternate; */
}

@media (max-width: 767.98px) {
	.goto svg {
		width: 20px;
		height: 24px;
	}
}

@keyframes goto {
	0% {
		transform: translateY(0);
	}

	10% {
		transform: translateY(60px);
	}

	20%,
	100% {
		transform: translateY(0);
	}
}

#cos-e-drivest {
	background: #000B41 center top;
	background-size: cover;
	color: #FFF;
	text-align: center;
	padding: 5rem;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}

.webp #cos-e-drivest {
	background-image: url(../images/driver-bg.webp);
}

.no-webp #cos-e-drivest {
	background-image: url(../images/driver-bg.png);
}

@media (max-width: 767.98px) {
	#cos-e-drivest {
		padding: 2rem;
	}
}

#cos-e-drivest>strong {
	color: var(--c-azzurro);
	text-transform: uppercase;
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: .5rem;
	display: block;
}

@media (max-width: 767.98px) {
	#cos-e-drivest>strong {
		font-size: 1.2rem;
	}
}

#cos-e-drivest h2 {
	color: #FFF;
	font-size: 5rem;
	line-height: 90%;
	font-weight: 900;
	width: 900px;
	max-width: 100%;
	margin: 0 auto 1rem;
}

@media (max-width: 767.98px) {
	#cos-e-drivest h2 {
		font-size: 2rem;
		line-height: 100%;
	}
}

#cos-e-drivest img {
	width: 720px;
	height: auto;
	max-width: 100%;
	margin: 2rem auto 3rem;
}

@media (max-width: 767.98px) {
	#cos-e-drivest img {
		margin: 0 auto 1rem;
	}
}

#cos-e-drivest p {
	color: rgba(255, 255, 255, .75);
	font-size: 1.4rem;
	width: 900px;
	max-width: 100%;
	margin: 0 auto 1rem;
}

@media (max-width: 767.98px) {
	#cos-e-drivest p {
		font-size: 1.1rem;
		line-height: 120%;
	}

}

#quanto-costa-drivest {
	background: #FFF;
	text-align: center;
	padding: 5rem;
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}

@media (max-width: 767.98px) {
	#quanto-costa-drivest {
		padding: 2rem;
	}
}

#quanto-costa-drivest>strong {
	color: var(--c-azzurro);
	text-transform: uppercase;
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: .5rem;
	display: block;
}

@media (max-width: 767.98px) {
	#quanto-costa-drivest>strong {
		font-size: 1.2rem;
	}
}

#quanto-costa-drivest h3 {
	color: #2C2C2C;
	font-size: 5rem;
	line-height: 90%;
	font-weight: 900;
	width: 900px;
	max-width: 100%;
	margin: 0 auto 1rem;
}

@media (max-width: 767.98px) {
	#quanto-costa-drivest h3 {
		font-size: 2rem;
	}
}

#quanto-costa-drivest p {
	color: rgba(0, 0, 0, .75);
	font-size: 1.4rem;
	width: 900px;
	max-width: 100%;
	margin: 0 auto 1rem;
}

@media (max-width: 767.98px) {
	#quanto-costa-drivest p {
		font-size: 1.1rem;
		line-height: 120%;
	}
}

.costi-richiedente {
	text-align: center;
}

.costi-vettore {
	text-align: center;
}

.icon-costi {
	display: flex;
	height: 125px;
	padding: 10px;
	justify-content: center;
	align-items: flex-end;
}

.listino {
	background: #007EDE;
	border-radius: 26px;
	padding: 5px;
}

.costi-vettore .listino {
	background: var(--c-arancione);
}

.listino>strong {
	color: #FFF;
	font-size: 2rem;
	display: block;
	padding: .1rem .5rem .3rem;
}

.listino-dettaglio {
	background: #FFF;
	border-radius: 22px;
	padding: 5px;
}

#quanto-costa-drivest .listino-dettaglio p {
	margin: 0;
	font-size: .9rem;
	padding: .2rem .5rem .7rem;
	display: block;
}

.listino-dettaglio div {
	background: #F2F2F2;
	border-radius: 18px;
	padding: 1rem;
}

.listino-dettaglio>strong {
	font-size: 1.5rem;
	text-align: center;
	padding: .5rem;
	display: block;
}

.listino-dettaglio .table {
	margin: 0;
}

.listino-dettaglio table {
	width: 100%;
}

.listino-dettaglio tr {
	border: none;
}

.listino-dettaglio th,
.listino-dettaglio tr td:first-of-type {
	font-size: .9rem;
	padding: .2rem .5rem;
	text-align: left;
}

@media (max-width: 767.98px) {

	.listino-dettaglio th,
	.listino-dettaglio tr td:first-of-type {
		padding: .2rem 0;
	}
	.listino-dettaglio tr td:last-of-type {
		white-space: no-wrap;
	}
}

.listino-dettaglio td {
	font-size: .9rem;
	padding: .2rem .5rem;
	font-weight: bold;
	text-align: left;
}

.listino-dettaglio svg {
	width: 28px;
	height: auto;
	margin-right: .2rem;
}

.drivest-icon {
	width: 160px;
	height: auto;
	margin: 0 auto 1rem;
	/* top: -80px;
	left: calc(50% - 80px);
	position: absolute; */
}

#scarica-app-drivest {
	text-align: center;
	padding: 8rem 5rem 0;
	position: relative;
	background: #000B41 center top;
	background-size: cover;
	color: #FFF;
	/* min-height: 100vh; */
	display: flex;
	flex-direction: column;
	position: relative;
	box-shadow: 0 0 60px rgba(0, 0, 0, .8) inset;
}

.webp #scarica-app-drivest {
	background-image: url(../images/download-bg.webp);
}

.no-webp #scarica-app-drivest {
	background-image: url(../images/download-bg.png);
}

@media (max-width: 767.98px) {
	#scarica-app-drivest {
		padding: 2rem 2rem 0;
	}
}

#scarica-app-drivest>strong {
	color: var(--c-arancione);
	text-transform: uppercase;
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: .5rem;
	display: block;
}

@media (max-width: 767.98px) {
	#scarica-app-drivest>strong {
		font-size: 1.2rem;
	}
}

#scarica-app-drivest h4 {
	color: #FFF;
	font-size: 5rem;
	line-height: 90%;
	font-weight: 900;
	width: 900px;
	max-width: 100%;
	margin: 0 auto 1rem;
}

@media (max-width: 767.98px) {
	#scarica-app-drivest h4 {
		font-size: 2rem;
	}
}

#scarica-app-drivest p {
	color: rgba(255, 255, 255, .75);
	font-size: 1.2rem;
	width: 900px;
	max-width: 100%;
	margin: 0 auto;
}

@media (max-width: 767.98px) {
	#scarica-app-drivest p {
		font-size: 1.1rem;
		line-height: 120%;
		margin-bottom: 2.5rem;
	}
}

#scarica-app-drivest img.screenshot {
	width: 646px;
	height: auto;
	max-width: 100%;
	margin: 2rem auto 0;
}

@media (max-width: 767.98px) {
	#scarica-app-drivest img.screenshot {
		margin: 0 auto;
	}
}

@media (min-width: 768px) {
	.download-buttons {
		display: flex;
		padding-top: 2rem;
		justify-content: center;
	}
}

@media (max-width: 991.98px) {
	.download-buttons a {
		width: 50%;
		padding: 0;
	}
}

.disponibile-su-google-play {
	position: absolute;
	bottom: 400px;
	right: calc(50% + 230px);
}

@media (max-width: 1199.98px) {
	.disponibile-su-google-play {
		position: relative;
		bottom: auto;
		right: auto;
		width: 40%;
	}
}

@media (max-width: 991.98px) {
	.disponibile-su-google-play {
		position: relative;
		bottom: auto;
		right: auto;
		width: auto;
	}
}

.scarica-su-appstore {
	position: absolute;
	bottom: 400px;
	left: calc(50% + 230px);
}

@media (max-width: 1199.98px) {
	.scarica-su-appstore {
		position: relative;
		bottom: auto;
		left: auto;
		width: 40%;
	}
}

@media (max-width: 991.98px) {
	.scarica-su-appstore {
		position: relative;
		bottom: auto;
		left: auto;
	}
}

.disponibile-su-google-play,
.scarica-su-appstore {
	text-decoration: none;
	text-align: center;
}

.disponibile-su-google-play strong,
.scarica-su-appstore strong {
	color: #FFF !important;
	font-weight: 900;
	font-size: 1.2rem;
	background: var(--c-arancione);
	text-decoration: none;
	border-radius: 100px;
	padding: 0.6rem 2rem !important;
	margin: 1rem auto;
	box-shadow: 0 0 0 rgba(255, 102, 0, 0);
	transition: transform .2s, box-shadow .2s;
	display: inline-block;
}

@media (max-width: 767.98px) {
	.disponibile-su-google-play strong,
	.scarica-su-appstore strong {
		font-size: 1.2rem;
		padding: 0.6rem 1rem !important;
		margin: .5rem 0 3rem;
	}
}

.disponibile-su-google-play strong:hover,
.scarica-su-appstore strong:hover {
	box-shadow: 0 10px 30px rgba(255, 102, 0, .5);
	transform: scale(1.1);
}

.disponibile-su-google-play img,
.scarica-su-appstore img {
	transition: transform .2s, box-shadow .2s;
	max-width: 100%;
	height: auto;
	display: block;
	margin: auto;
}

@media (max-width: 767.98px) {

	.disponibile-su-google-play img,
	.scarica-su-appstore img {
		width: 260px;
		height: auto;
		margin: auto;
	}
}

.disponibile-su-google-play img:hover,
.scarica-su-appstore img:hover {
	transform: scale(1.1);
}

#datisocietari .modal-content {
	background: rgba(0, 0, 0, .8);
	color: rgba(255, 255, 255, .75);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, .8);
}

#datisocietari .modal-header {
	border: none;
}

#datisocietari .modal-header h5 {
	font-size: .9rem;
	text-transform: uppercase;
}

.modal-body {
	padding-top: 0;
	padding-bottom: 0;
}

#datisocietari .modal-footer {
	border: none;
	justify-content: center;
}

/* Supporto */

#supporto {
	background: #000B41 center top;
	background-size: cover;
	color: #FFF;
	text-align: center;
	padding: 15rem 5rem 5rem;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}

.webp #supporto {
	background-image: url(../images/driver-bg.webp);
}

.no-webp #supporto {
	background-image: url(../images/driver-bg.png);
}

@media (max-width: 767.98px) {
	#supporto {
		padding: 5rem 2rem 0;
	}
}

#supporto>strong {
	color: var(--c-azzurro);
	text-transform: uppercase;
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: .5rem;
	display: block;
}

@media (max-width: 767.98px) {
	#supporto>strong {
		font-size: 1.2rem;
	}
}

#supporto h1 {
	color: #FFF;
	font-size: 5rem;
	line-height: 90%;
	font-weight: 900;
	width: 900px;
	max-width: 100%;
	margin: 0 auto .5rem;
}

@media (max-width: 767.98px) {
	#supporto h1 {
		font-size: 2rem;
	}
}

#supporto img {
	width: 720px;
	max-width: 100%;
	margin: 2rem auto 3rem;
}

#supporto p {
	color: rgba(255, 255, 255, .75);
	font-size: 1.4rem;
	width: 900px;
	max-width: 100%;
	margin: 0 auto 1rem;
}

@media (max-width: 767.98px) {
	#supporto p {
		font-size: 1.1rem;
		line-height: 120%;
		margin-bottom: 2.5rem;
	}
}

.contattaci {
	text-align: left !important;
}

.contattaci .row .row {
	background: #FFF;
	border-radius: 26px;
	padding: 1.3rem 1rem 1rem;
}

.contattaci .row div {
	margin-bottom: .6rem;
}

.contattaci label {
	color: #666;
	margin: 0;
	font-weight: 500;
	font-size: .8rem;
	text-transform: uppercase;
}

.form-control {
	border-radius: 2px;
}

.contattaci .btn {
	background: var(--c-arancione);
	border: none;
	border-radius: 2px 2px 2px 10px;
	font-weight: 900;
	font-size: 1.1rem;
}

/* Console */

.console {
	position: fixed;
	bottom: 0;
	right: 0;
	background: #000;
	color: #FFF;
	display: inline-block;
	padding: .3rem;
	font-size: .8rem;
	display: none;
}

.privacy-policy {
	background: #FFF;
    margin: 15rem 5rem 5rem;
    min-height: 100vh;
	border-radius: 26px;
}

@media (max-width: 767.98px) {
	.privacy-policy {
		margin: 5rem 1rem 2rem;
	}
}

.condizioni-generali-di-utilizzo {
	background: #FFF;
    margin: 15rem 5rem 5rem;
    min-height: 100vh;
	border-radius: 26px;
	padding: 1.3rem 2rem 1rem;
}