@charset "utf-8";

#header a{
	color: var(--dark-blue);
}
.banner h3{
	margin-bottom: 8px;
}

/*form request*/
.demo-request{
	transform: translateY(-160px);
}
form{
	width: 80%;
	margin: 0 auto;
	padding: 40px;
	background-color: white;
	box-shadow: var(--shadow);
	border-radius: 16px;
	text-align: center;
}
input{
	width: 100%;
	padding: 16px 24px;
	border: none;
	border-bottom: 1px solid var(--yellow);
		margin-bottom: 16px;
}
.row input{
	width: 48%;
}
input::placeholder{
	color: var(--dark-blue);
}
button{
	border: none;
}
textarea{
	width: 100%;
	height: 160px;
	margin: 24px 0 40px;
	border: 1px solid var(--yellow);
	border-radius: 8px;
	padding: 16px 24px;
}
textarea::placeholder{
	color: var(--dark-blue);
	font-family: 'Roboto', sans-serif;
}
.check.row{
	justify-content: center;
	flex-wrap: nowrap;
	column-gap: 16px;
	margin-bottom: 16px;
}
.check div{
	position: relative;
	width: 16px;
	height: 16px;
}
.check input{
	width: 16px;
	height: 16px;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	border: none;
	opacity: 0;
	z-index: 1;
}
.check .checkmark{
	position: absolute;
	width: 16px;
	height: 16px;
	border: 1px solid var(--yellow);
	border-radius: 2px;
	pointer-events: none;
	display: block;
}
.check .checkmark:after{
	content: "";
	display: block;
	background: url("../img/svg/checked.svg");
	background-size: 80%;
	background-position: center;
	background-repeat: no-repeat;
	width: 16px;
	height: 16px;
	position: absolute;
	opacity: 0;
	top: -1px;
	left: -1px;
	transition: all.2s ease-in-out;
	pointer-events: none;
}
input:checked ~ .checkmark:after{
	opacity: 1;
}
label{
	font-family: 'Roboto', sans-serif;
	text-align: left;
}
label a{
	text-decoration: underline;
}

/*responsive*/
@media screen and (max-width: 768px){
	form{
		width: 100%;
	}
	form .row{
		flex-wrap: wrap;
	}
	form .row input{
		width: 100%;
	}
}