html {
	
	scroll-behavior: smooth;
	
}

:root {
	
	--brand-color: #f68b1f;
	--background-color: #1f1f1f;
	--highlight-color: #fff;
	
}

body {
	font-family: Lato, sans-serif;
	margin: 0;
	background: var(--background-color);
}

:not(.touch-device) body::-webkit-scrollbar {
	
	width: 9px;
	padding: 0 1px;
	
}

:not(.touch-device) body::-webkit-scrollbar-thumb {
	
	border-radius: 10px;
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(.44, #b4b4b4));
	
}

:not(.touch-device) body::-webkit-scrollbar-track {
	
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	background-color: #f5f5f5;
	border-radius: 0;
	
}

* {
	margin: 0;
	padding: 0
}

/* *** */

.container {
	
	height: 100%;
	max-width: 1200px;
	position: relative;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	
}

main {
	
	background: var(--background-color);
	
}

/* *** */

a.btn-call-to-action{
	
	max-width: 14rem;
	position: relative;
	display: block;
	background: var(--highlight-color);
	color: #111 !important;
	text-decoration: none;
	padding: 0.7rem 0;
	font-weight: 700;
	border-radius: 2px;
	margin-top: 1rem;
	text-align: center;
	
}

a.shimmer{
	
	background: linear-gradient(135deg, var(--highlight-color) 0%, var(--highlight-color) 40%, #ffffff 50%, var(--highlight-color) 60%, var(--highlight-color) 100%);
	background-repeat: no-repeat;  
	background-position: 0px;
	background-size: 300%;
	animation: shimmer 3s infinite;
	
}

a.btn-call-to-action.shimmer:hover{
	
	background: #fff;
	
}

@keyframes shimmer {
	
	0% {
		
		background-position: -24rem; 
	}
	
	100% { 
		
		background-position: 0; 
		
	}
	
}

@keyframes shimmer-mini {
	
	0% {
		
		background-position: -14rem; 
	}
	
	100% { 
		
		background-position: 0; 
		
	}
	
}

/* */

@keyframes slide-text {
	
	0% {
		
		transform: translateY(0);
		
	}

	100% {
		
		transform: translateY(-2rem);
		opacity: 1;
		
	}
	
}

/* */

@keyframes slide-cover {
	
	0% {
		
		transform: translateX(0);
		
	}

	100% {
		
		transform: translateX(-2rem);
		opacity: 1;
		
	}
	
}

/* *** */

header {
	
	width: 100%;
	height: 4rem;
	overflow: visible;
	position: relative;
	z-index: 999;
	background: #fff;
}

header h1 a {
	
	display: block;
	width: 240px;
	height: 80px;
	background-repeat: no-repeat;
	background-image: url("https://www.vincitu.it/external_css/VINCITU/img/logonew.svg");
	background-position: left center;
	text-indent: -3000px;
	background-size: contain;
}

header nav{
	
	display: flex;
	float: right;
	margin-top: -1rem;
	
}

header nav a.btn-call-to-action{
	
	width: 8rem;
	display: inline-block;
	
}

header nav a.shimmer{
	
	animation: shimmer-mini 3s infinite;
	margin-left: 1rem;
	
}

/* *** */

article#banner {
	
	width: 100%;
	background-image: url("https://www.fivebet.it/bonus/supersaldi/images/bg.jpg");
	background-position: bottom;
	background-size:cover;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	height: 750px;
	
}

article#banner .content {
	
	position: relative;
	z-index: 2;
	
}

article#banner h2 {
	
	font-size: 2rem;
    letter-spacing: 5px;
	text-transform: uppercase;
	color: var(--brand-color);
	opacity: 0;
	animation: slide-text ease 0.5s forwards 0.5s;
	
}

article#banner h2 small {
	
	display: block;
	font-size: 60px;
    letter-spacing: normal;
	text-transform: none;
	color: #fff;
	margin-top: 2rem;
	font-weight: 500;
	
}

article#banner p {
	
	color: #fff;
	font-size: 1.4rem;
	line-height: 1.8rem;
	max-width: 30rem;
	margin-top: 2rem;
	margin-bottom: 2rem;
	opacity: 0;
	animation: slide-text ease 0.9s forwards 0.9s;
	
}

article#banner a.shimmer {
	
	opacity: 0;
	animation: slide-text ease 2s forwards 2s, shimmer 3s infinite;
	
}

article#banner a[href="#terms"] {
	
	display: block;
	margin-top: 2rem;
	color: #fff !important;
	text-decoration: none;
	font-size: 1.2rem;
	opacity: 0;
	animation: slide-text ease 1.5s forwards 1.5s;
	
}

article#banner figure {
	
	position: absolute;
	left: 10rem;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	margin-top: 0;
	margin-bottom: 0;
	background-image: url("https://www.fivebet.it/bonus/supersaldi/images/logo.png");
	background-position: 250px;
	background-size: auto 100%;
	background-repeat: no-repeat;
	z-index: 1;
	opacity: 0;
	animation: slide-cover ease 1.3s forwards 1.3s;
	
}

/* *** */

article#offer {
	
	background: #032e4c;
	padding: 3rem 2rem;
	width: 100%;
	position: relative;
	margin: 0 auto;
	text-align: center;
	box-sizing: border-box;
	
}

article#offer .container {
	
	text-align: left;
	padding-left: 4rem;
	
}

article#offer a.btn-call-to-action{
	
	margin: 1rem auto 0;
	
}

article#offer h2{
	
	font-size: 3rem;
    margin-bottom: 3rem;
	color: #fff;
	font-weight: 500;
	
}

article#offer dl {
	
	display: block;
	position: relative;
	width: 30%;
	padding: 0;
	min-height: 8rem;
	margin: 0 4rem;
	
}

article#offer dl::before {
	
	display: block;
	position: absolute;
	left: -4.8rem;
	top: 0;
	font-family: simple-line-icons;
	font-size: 4rem;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
	color: #f68b1f;
	content: "\e003";
	
}

article#offer dl:first-of-type::before {
	
	content: "\e060";
	
}

article#offer dl:last-of-type::before {
	
	content: "\e080";
	
}

article#offer dl::after {
	
	display: block;
	position: absolute;
	right: -2.4rem;
	top: 2rem;
	font-family: simple-line-icons;
	font-size: 2rem;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
	content: "\e606";
	color: var(--highlight-color);
	
}

article#offer dl:last-of-type::after {
	
	content: "";
	
}

article#offer dt {
	
	color: #f0f0f0;
	font-size: 1.4rem;
	margin-bottom: 0.6rem;
	font-weight: 600;
	text-transform: uppercase;
	
}

article#offer dd {
	
	color: #fff;
	font-size: 1.2rem;
	
}

/* *** */

article#terms {
	
	height: auto;
	margin: 3rem auto 0;
	max-width: 1200px;
	
}

article#terms h3 {
	
	color: #bbb;
	font-size: 2rem;
	text-align: center;
	margin-bottom: 2rem;
	
}

article#terms h4 {
	
	color: #bbb;
	font-size: 1.4rem;
	margin-bottom: 1rem;
	
}






article#terms ol {
	
	color: #888;
	padding: 0;
	margin: 0;
	
}

article#terms ol ol {
	
	margin-top: 1rem;
	padding-left: 2rem;
	margin-left: 2rem;
	list-style: lower-latin;
	
}

article#terms ol li {
	
	left: 0;
	list-style-position: inside;
	margin-bottom: 1rem;
	font-size: 1.2rem;
	line-height: 1.5rem;
	
	
}

article#terms a.btn-call-to-action{
	
	margin: 3rem auto 0;
	
}

/* *** */

footer {
	
	width: 100%;
	height: auto;
	padding-top: 2rem;
	padding-bottom: 1rem;
	border-top: 1px #303030 solid;
	font-size: 1rem;
	line-height: 1.5rem;
	color: #b5b5b5;
	
}

footer p{
	
	margin-bottom: 0.8rem;
	
}

footer .container {
	
	max-width: 800px;
	
}

footer figure.aams {
	
	text-align: center;
	margin-bottom: 2rem;
	
}

footer figure.logo {
	
	width: 100%;
	height: 100%;
	max-width: 800px;
	margin: 0 auto 2rem;
	
}

footer figure.logo img{
	
	width: 160px;
	height: auto
	
}

footer div.text{
	
	min-height: 10rem;
	
}

footer div.links{
	
	width: 40%;
	min-height: 10rem;
	text-align: right;
	
}

footer div.links a{
	
	color: var(--highlight-color);
	margin-left: 2rem;
	text-decoration: none;
	transition: color 1s ease;
	font-size: 1.1rem;
	
}

footer div.links a:hover{
	
	color: #fff;
	
}


a.login {
  background: transparent !important;
  color: #f68b1f !important;
  text-transform: uppercase;
  font-weight: bold;
  border: 1px solid #f68b1f;
}

a.registrati {
border: 1px solid #228f22;
  color: #fff !important;
  text-transform: uppercase;
  background: #228f22 !important;
  font-weight: bold;
}