/* ================== BODY BASIS ================== */
body {
	font-family: 'Quicksand', Helvetica, Arial, sans-serif;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-weight:400;
}

h1,h2,h3,h4,h5,h6,p{
	margin: 0;
	padding: 0;
	color: #000000;
}

.no-p {padding: 0;}
.p-5-form{padding-left: 5px;padding-right: 5px;}
.mt30{margin-top: 30px;}
.mt10{margin-top: 10px;}
.bold{font-weight: 700;}

.cta {
	border-radius: 22px;
	padding: 10px 30px 12px 30px;
	font-size: 18px;
	width: 100%;
	max-width: 320px;
	display: inline-block;
	margin: auto;
	margin-top: 20px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
	text-align: center;
	color: #ffffff;
	cursor: pointer;
	font-weight: 700;
	background-color: #00d363;
	border: 0;
	outline : 0;
}
.cta:hover {
	color: #ffffff;
	text-decoration: none;
	background-position: right 20px top 18px;
	background-color: #4bb20d;
}
.cta:visited, .cta:link {
	color: #ffffff;
	text-decoration: none;
	border: 0;
	outline : 0;
}
.cta:active {
	transform: scale(0.9);
	border: 0;
	outline : 0;
}
.nudge {
	padding-top: 30px;
	padding-bottom: 15px;
	font-size: 14px;
	color: #000000;
}
.nudge a {
	text-decoration: underline;
	color: #000000;
}
@media(min-width: 767px){
	.cta{
		max-width: 290px;
	}
}

/* ================== FORMULIER CSS ================== */
::-webkit-input-placeholder, ::-moz-placeholder, :-ms-input-placeholder, :-moz-placeholder{ /* Chrome/Opera/Safari/Firefox 19+/IE 10/Firefox 18- */
 	color:#8B8B8B;
 	font-size: 14px;
}
.errormachtiging {
 	float:left;
 	padding-left:30px;
}
li.error {
 	color:#EB8283;
 	font-size:14px;
 	list-style-type:none;
}
li.valid {
 	height:0;
 	color:#EB8283;
 	font-size:11px;
 	list-style-type:none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px white inset !important; /* Verandert achtergrondkleur na autofill/prefill */
}

/* ================== START GESLACHTBUTTON ================== */
.form-geslacht{
	position: relative;
	padding-top: 15px;
	padding-left: 5px;
	padding-right: 5px;
}
.form-geslacht input[type=radio] {
 	visibility: hidden; /* gebruik geen display block */
 	width: 1px;
 	height: 1px;
 	cursor: pointer;
 	padding: 0px;
 	float:left;
 	margin-left:0px!important;
 	-moz-appearance: none; /* Remove default appearance styling for Firefox */
 	-webkit-appearance:none;
 	appearance:none;
 	position: absolute;
}
.form-geslacht input[type=radio] + label {
 	color:#999;
 	background-image: url(img/bullet_unchecked.png);
 	background-repeat:no-repeat;
 	background-size: 30px;
 	background-position: left -5px top 3px;
 	padding-top: 8px;
    padding-left: 25px;
 	width: 100%;
 	max-width: 64px;
 	cursor: pointer;
 	-webkit-transition: all 0.2s ease-in-out;
 	-moz-transition: all 0.2s ease-in-out;
 	-o-transition: all 0.2s ease-in-out;
 	transition: all 0.2s ease-in-out;
 	position: relative;
	-webkit-transform: none!important;
	transform: none!important;
    margin-bottom: 12px;
}
.form-geslacht input[type=radio]:hover + label {
 	background-image: url(img/bullet.png);
}
.form-geslacht input[type=radio]:checked + label {
 	background: url(img/bullet.png) no-repeat;
 	background-size: 30px;
 	background-position: left -5px top 3px;
}
/* ================== END GESLACHTBUTTON ================== */

/* ================== START CHECKBOX ================== */
.form-checkbox{
	margin-top: 20px;
}
.form-checkbox input[type=checkbox] {
    visibility: hidden;
    width: 1px;
    position: absolute;
}
.form-checkbox .check-box {
 	width: 100%;
 	padding-left: 30px;
 	padding-bottom: 5px;
 	margin-bottom: 0;
 	background-color: transparent;
 	position: relative;
 	display: inline-block;
 	background:url(img/checkbox.png) no-repeat left top;
 	background-size:17px 17px;
 	font-size:14px;
 	line-height:22px;
 	color: #000000;
}
.form-checkbox .check-box::before, .check-box::after {
 	position: absolute;
 	height: 0;
 	width: 3px;
 	border-radius: 1px;
 	background-color: #000062;
 	display: inline-block;
 	-moz-transform-origin: left top;
 	-ms-transform-origin: left top;
 	-o-transform-origin: left top;
 	-webkit-transform-origin: left top;
 	transform-origin: left top; 	
 	content: ' ';
 	-webkit-transition: opacity ease .5;
 	-moz-transition: opacity ease .5;
 	transition: opacity ease .5;
}
.form-checkbox .check-box::before {
 	top: 15px;
 	left: 9px;
 	box-shadow: 0 0 0 0px #ffffff;
 	-moz-transform: rotate(-135deg);
 	-ms-transform: rotate(-135deg);
 	-o-transform: rotate(-135deg);
 	-webkit-transform: rotate(-135deg);
 	transform: rotate(-135deg);
}
.form-checkbox .check-box::after {
 	top: 8px;
 	left: 0px;
 	-moz-transform: rotate(-45deg);
 	-ms-transform: rotate(-45deg);
 	-o-transform: rotate(-45deg);
 	-webkit-transform: rotate(-45deg);
 	transform: rotate(-45deg);
}
.form-checkbox input[type=checkbox]:checked + .check-box, .check-box.checked {
	border-color: #000062;
}
.form-checkbox input[type=checkbox]:checked + .check-box::after, .check-box.checked::after {
 	height: 12px;
 	-moz-animation: dothabottomcheck 0.2s ease 0s forwards;
 	-o-animation: dothabottomcheck 0.2s ease 0s forwards;
 	-webkit-animation: dothabottomcheck 0.2s ease 0s forwards;
 	animation: dothabottomcheck 0.2s ease 0s forwards;
}
.form-checkbox input[type=checkbox]:checked + .check-box::before, .check-box.checked::before {
 	height: 30px;
 	-moz-animation: dothatopcheck 0.4s ease 0s forwards;
 	-o-animation: dothatopcheck 0.4s ease 0s forwards;
 	-webkit-animation: dothatopcheck 0.4s ease 0s forwards;
 	animation: dothatopcheck 0.4s ease 0s forwards;
}
/*Keyframes Checkbox*/
@-moz-keyframes dothabottomcheck {
	0% {height: 0;}
 	100% {height: 11px;}
}
@-webkit-keyframes dothabottomcheck {
	0% {height: 0;}
 	100% {height: 11px;}
}
@keyframes dothabottomcheck {
	0% {height: 0;}
 	100% {height: 11px;}
}
@keyframes dothatopcheck {
	0% {height: 0;}
 	50% {height: 0;}
 	100% {height: 24px;}
}
@-webkit-keyframes dothatopcheck {
	0% {height: 0;}
 	50% {height: 0;}
 	100% {height: 24px;}
}
@-moz-keyframes dothatopcheck {
	0% {height: 0;}
 	50% {height: 0;}
 	100% {height: 24px;}
}
/* ================== END CHECKBOX ================== */

/* ================== START FORM BASIS ================== */
.form-field input {
 	font-size:16px;
 	display:block;
 	width:100%;
 	border:1px solid #cbd617;
 	border-radius:10px;
 	height:45px;
 	margin:0;
 	padding:10px;
 	transition:0.4s ease all;
 	-moz-transition:0.4s ease all;
 	-webkit-transition:0.4s ease all;
 	-webkit-appearance:none;
 	padding-top: 10px;
}
.form-field input:focus, input.birthdate-valid{
	outline:none;
	border:1px solid #999999;
}
.form-field input:focus ~ label{
	-webkit-transform: translateY(4px) scale(.85);
	transform: translateY(4px) scale(.85);
}
.nostyle{transform: none!important;color:#000000!important;} /*Zorgt ervoor dat radio buttons niet scalen*/
.form-field input.valid, input.birthdate-valid.valid {
	border:1px solid #58c143;
}
.form-field input.error, input.birthdate-valid.error {
	border:1px solid #EB8283;
}
.form-field input.error ~ label {
	color: #EB8283;
}
.form-field label {
	transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s,-webkit-transform .2s;
    pointer-events: none;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    font-weight: 400;
    text-align: left;
    position: absolute;
    top: 10px;
    left: 15px;
    z-index: 1;
    color: #b3b3b3;
    font-size: 14px;
    line-height: 22.4px;
    -webkit-transform: translateY(11.8px);
    transform: translateY(11.8px);
}
.adressconfirm {
 	font-size: 14px;
 	color: #6B6B6B;
}
.adressconfirm.adresvink {    
	background-color: #efefef;
    border-radius: 2px;
    color: #000000;
    float: left;
    padding: 10px 20px;
    margin-bottom: 5px;
    margin-top: 10px;
    left: 0;
    padding-left: 40px;
    margin-left: 0;
}
.adressconfirm.adresvink:before {
    content: '';
    position: absolute;
    background-image: url(img/adres_vink.png);
    background-position: 0;
    background-size: 20px;
    width: 20px;
    background-repeat: no-repeat;
    left: 25px;
    top: 9px;
    height: 40px;
}
.formcontainer {
	border-radius: 8px;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}
.formcontainer p{
	color: #000000; 
	font-size: 18px;
	font-weight: 700;
}
.formcontainer p.gegevens-title{
	margin-bottom: 10px;	
}
.formcontainer p.title-between{
	margin-top: 30px;
}
.formcontainer .form-field {
	padding-left: 0px;
	padding-right: 0px;
}
.formcontainer textarea{
	font-size: 16px;
    display: block;
    width: 100%;
    border: 1px solid #000062;
    border-radius: 10px;
    margin: 0;
    padding: 10px;
    transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -webkit-appearance: none;
    padding-top: 10px;
    resize: none;
}
.form-field input.is-active ~ label, .filled-in label, .filled-in-error label, .form-field label.activelabel {
	-webkit-transform: translateY(4px) scale(.85);
	transform: translateY(4px) scale(.85);
	color: #009fe6;
}
.form-field label.activelabel, .valid ~ label{
	color: #58c143;
}
.filled-in-error label {
	color: #EB8283;
}
.errorbox, #postcodeError {
		width:100%;
}
@media screen and (max-width: 768px) {
	label[for=payment_ibannumber] {
		top: 0px!important;
	}
	.errorbox, #postcodeError {
 		float: left;
	}
	.formcontainer{
		padding: 20px;
		margin-bottom: 0px;
	}
}

/* ================== END FORM BASIS ================== */

/* ================== START BIRTHDATE ================== */
.form-geboorte label {
 	font-size:14px;
 	color:#999;
 	left:20px;
 	position:absolute;
 	top: 10px;
}
.zsm{
	display: inline-block;
	margin-right: 15px;
}
.date-style{
	width:110px;
 	display: inline-block;
 	margin-right:5px;
	font-size:16px;
 	border:none;
 	border:1px solid #8d8d8d;
 	border-radius:2px;
 	height:45px;
 	margin:0 0 5px 0;
 	padding:10px;
 	transition:0.4s ease all;
 	-moz-transition:0.4s ease all;
 	-webkit-transition:0.4s ease all;
 	-webkit-appearance:none;
}
.date-style.mm {
 	margin-left: 10px;
}
.date-style.yy {
 	margin-right: 0px;
 	margin-left: 10px;
}
.date-style:focus{
	outline:none;
	border:1px solid #3399FF;
}
@media screen and (max-width: 576px) {
	.date-style {width: 30%; margin-left: 0;}
	.date-style.mm {margin-left: 4px;}
	.date-style.yy {margin-left: 4px;}
}
/* ================== END BIRTHDATE ================== */

/* ================== START VOORWAARDEN ================== */
#fillVoorw li {
 	list-style-type: square;
 	padding: 0 16px 0 0;
}
#fillVoorw {
 	list-style-type: square;
 	padding: 0 0px 0 16px;
}
.voorwaardenoverlay {
 	position: fixed;
 	background-color: rgba(0, 0, 0, 0.8);
 	z-index: 99999;
 	width: 100%;
 	height: 100%;
 	display: none;
}
.popuptitle {
 	font-weight:900;
 	font-size:30px;
 	margin-bottom:20px;
}
.form-open {
 	width: 90%;
 	animation: open 1s;
 	transition:1s ease all;
 	-moz-transition:1s ease all;
 	-webkit-transition:1s ease all;
 	opacity:1;
}
.lightbox {
 	background-color: #ffffff;
 	height: 50vh;
 	color:#181818;
 	overflow-y: auto;
 	padding:50px 50px 50px 50px;
 	font-family: Source Sans Pro, Helvetica, Arial, sans-serif;
 	font-size:14px;
 	line-height:1.6em;
 	-webkit-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.25);
 	-moz-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.25);
 	box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.25);
 	margin: auto;
 	position: absolute;
 	width:100%;
	left: 0;
	right: 0;
}
#popup {
 	width: 60%;
 	margin:auto;
 	position:absolute;
 	height:50vh;
 	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
#close {
 	position:absolute;
 	color:#ffffff;
 	top:-20px;
 	right:-20px;
 	padding-top: 10px;
 	font-size:20px;
 	font-weight:700;
 	cursor:pointer;
 	width: 50px;
 	height: 50px;
 	background-color:#3399FF;
 	border-radius: 30px;
 	text-align: center;
 	z-index:9999;
}
@media(max-width: 767px){
	.lightbox{
		padding: 20px 20px 20px 20px;
	}
	#popup {
		width: 80%;
	}
	.popuptitle {
		font-size: 26px;
	}
}
/*Keyframes lightbox open*/
@keyframes open {
 	0% {display: none;}
 	1% {width: 0;display: block;color:white;opacity: 0;}
 	80% {color:white;}
 	100% {display: block;width: 90%;color:#181818;opacity: 1;}
}

@keyframes open {
 	0% {display: none;}
 	1% {width: 0;display: block;color:white;opacity: 0;}
 	80% {color:white;}
 	100% {width: 100%;}
}
/* ================== END VOORWAARDEN ================== */


/* ================== OVERIGE STYLES ================== */
.reasoning {
    display: block;
    width: 100%;
    color: #a8a8a8;
    margin-bottom: 10px;
}
@media(max-width: 767px){
	.reasoning{
		margin-top: 10px;
		margin-left: 0;
	}
}

input[type=radio] {
	margin-right: 5px;
}

/*Start groene balk boven formulier*/
.green-bar{
	background-color: #dffdcd;
	border: 1px solid #7cc94b;
	border-radius: 8px;
	position: relative;
	padding: 15px 0;
	margin: 30px 0 0;
}
.green-bar ul{
	padding-left: 30px;
	margin: 0;
}
.green-bar ul li{
	color: #71c63e;
	font-weight: 900;
	position: relative;
	font-size: 18px;
	list-style: none;
	padding-left: 30px;
	padding-right: 15px;
	background-image: url('img/check_circle.png');
	background-position: left top 3px;
	background-repeat: no-repeat;
	background-size: 18px 18px;
}
.green-bar a{
	position: absolute;
	right: 40px;
	top: 15px;
	font-size: 18px;
	color: #71c63e;
	text-decoration: underline;
	font-weight: 900;
}
@media(max-width: 450px){
	.green-bar a{
	    right: 0px;
	    top: 59px;
	    font-size: 14px;
	    color: #000000;
	}
}
/*End groene balk boven formulier*/


/*Start Fade-in en Fade-uit animaties*/
.fade-out{
    -webkit-animation: fadeOut 1s;
    animation: fadeOut 1s;
}
.fade-in{
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}
@keyframes fadeOut {
    0% {opacity: 1;left:0;}
    100% {opacity: 0;left:180px;}
}
@keyframes fadeIn {
    0% {opacity: 0;left:-180px;}
    100% {opacity: 1;left: 0;}
}
/*Eind Fade-in en Fade-uit animaties*/

footer {
    padding: 70px 0;
    padding-bottom: 100px;
    float: left;
    width: 100%;
    background-color: #202020;
    background-image: url('img/shape-footer.png');
    background-repeat: no-repeat;
    background-position: bottom right;
}
footer img.topheader_logo{
	width: 230px;
	height: auto;
}
footer a{
	color: #ffffff;
	text-decoration: none;
}
footer a:hover{
	text-decoration: none;
	color: #ffffff;
}

@media screen and (max-width: 1200px) {
	.form-geslacht input[type=radio] + label {width: 48%;}
}

@media screen and (max-width: 992px) {
	.col-lg-offset-15 {margin-left: 0;}
	.p-l-5 {padding-left:15px;}
}
@media screen and (max-width: 767px) {
	.form-field label {top: 10px;}
	footer img.topheader_logo{
		width: 160px;
		margin-bottom: 30px;
	}
	footer{
		padding:40px 0;
	}
}

@media screen and (max-width: 1200px) {
	.form-geslacht input[type=radio] + label {width: 48%;}
}

@media screen and (max-width: 992px) {
	.col-lg-offset-15 {margin-left: 0;}
	.p-l-5 {padding-left:15px;}
}
@media screen and (max-width: 767px) {
	.form-field label {top: 10px;}
}







.topheader{
	background-color: #ffffff;
	box-shadow: 0px 1px 4px #ebeaea;
	margin-bottom: 2px;
}
.topheader img.topheader_logo{
	display: block;
	width:185px;
	height: auto;
	padding-top:27px;
	padding-bottom:27px;
}
.topheader .aright{
	text-align: right;
}
.topheader .aright a.itemtxt{
	color:#000000;
	font-size:16px;
	text-decoration: none;
	display: inline-block;
	padding-top:25px;
}
.topheader .aright a.pright{
	padding-right:30px;
}
.topheader .hamburger {
    display: inline-block;
    float: right;
    font-size: 19px;
    border-radius: 9px;
    margin-top: 18px;
    margin-right: 15px;
    width: 30px; 
    z-index: 9999;
    position: relative;
}
.topheader ul.main-navigation {
    float: none;
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-top: 0px;
    margin-bottom: 0px;
    font-weight: 600;
    overflow-y: scroll;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    position: fixed;
    width: 100%;
    left: 100%; 
}
.topheader ul.main-navigation.open {
	opacity: 1;
	visibility: visible;
	left: 0;
	background-color: #ffffff;
	height: 100%; 
	z-index: 999;
	padding: 30px;
}
.topheader ul.main-navigation.open li a {
    color: #000; 
}
 

.incentiveblock{
    background-image: url(img/directdoen_backmob.png);
    background-position: top right;
    background-repeat: no-repeat;
    height: auto;
    background-color: #f8f7f7;
}
.incentiveblock p.koptxt{
	color:#000000;
	font-size:22px;
	line-height: 28px;
	text-align: left;
	font-weight:700;
	padding-top:30px;
}
.incentiveblock ul{
	padding-left: 0px;
	margin: 0;
	padding-top:20px;
	padding-bottom: 30px;
}
.incentiveblock ul li{
	color: #000000;
	position: relative;
	font-size: 16px;
	list-style: none;
	padding-left: 30px;
	background-image: url('img/check.png');
	background-position: left top 3px;
	background-repeat: no-repeat;
	background-size: 18px 17px;
}
.incentiveblock p.bodytxt{
	color:#000000;
	font-size:16px;
	line-height: 22px;
	text-align: left;
}
.incentiveblock .bottom-bodytxt{
	padding:0;
	padding-top: 40px;
}
.incentiveblock .bottom-bodytxt p.bodytxt{
	padding-left: 20px;
	padding-right: 20px;
}
.incentiveblock .bottom-bodytxt img{
	width: 100%;
	height: auto;
	max-width: 480px;
}
.incentiveblock .signinblock{
	background-color: #f0ff00;
	padding-left:15px;
	padding-right: 15px;
	padding-top:25px;
	padding-bottom:5px;
	margin-left:-15px;
	margin-right:-15px;
	-webkit-box-shadow: 0px 0px 25px -19px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 25px -19px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 25px -19px rgba(0,0,0,0.75);
	position: relative;
}
.incentiveblock .signinblock img.gaze-down-form{
    width: 28px;
    height: auto;
    position: absolute;
    right: 15px;
    top: -28px;
}
.incentiveblock .signinblock p.koptxt_signin{
	color:#000000;
	font-size:18px;
	font-weight: 800;
	text-align: left;
}
@media (min-width: 576px) {
	.topheader .aright a.itemtxt{
		font-size:14px;
		padding-top:25px;
	}
	.incentiveblock .signinblock{
		padding-left:25px;
		padding-right: 25px;
		padding-top:30px;
		padding-bottom:30px;
		border-radius: 10px;
		margin-left:unset;
		margin-right:unset;
	}
}
@media (min-width: 768px) {
	.topheader img.topheader_logo{
		width:240px;
		padding-top:20px;
		padding-bottom:20px;
	}
	.topheader .aright a.itemtxt{
		font-size:16px;
		padding-top:36px;
	}
	.topheader .aright a.pright{
		padding-right:55px;
	}
	.incentiveblock p.koptxt{
		font-size:25px;
		line-height: 25px;
		padding-top:40px;
	}
	.incentiveblock p.bodytxt{
		padding-top:15px;	
		padding-bottom: 15px;
	}
	.incentiveblock .bottom-bodytxt{
		padding:40px 0;
	}
	.incentiveblock .signinblock{
		margin-bottom: 50px;
	}
	.incentiveblock .signinblock img.gaze-down-form{
	    width: 45px;
	    height: auto;
	    position: absolute;
	    left: -20px;
	    bottom: 100px;
	    top: unset;
	    right: unset;
	}
	.incentiveblock ul{
		padding-bottom: 0;
	}
}
@media (min-width: 992px) {
	.topheader .hamburger {
        display: none; 
    }
	.incentiveblock p.koptxt{
		font-size:32px;
		line-height: 32px;
		padding-top:47px;
	}
	.incentiveblock ul{
		padding-top:30px;
		padding-bottom: 30px;
	}
	.incentiveblock ul li{
		font-size: 20px;
		padding-left: 40px;
		background-position: left top 5px;
	}
	.incentiveblock p.bodytxt{
		padding-top:0px;	
		padding-bottom: 0;
		font-size:20px;
		line-height: 32px;
	}
	.incentiveblock .signinblock{
		padding-left:30px;
		padding-right: 30px;
		padding-top:35px;
		padding-bottom:35px;
		margin-top:30px;
		margin-bottom: 0;
	}
	.incentiveblock .signinblock p.koptxt_signin{
		font-size:22px;
		padding-bottom: 15px;
	}
	.incentiveblock{
	    background-image: url(img/directdoen_backdesk.png);
	    background-position: top 0px right -210px;
	    background-size: 1210px auto;
	    height: 713px;
	    background-repeat: no-repeat;
	}
}
@media (min-width: 1200px) {
	.incentiveblock p.koptxt{
		font-size:40px;
		line-height: 40px;
		padding-top:55px;
	}
	.incentiveblock{
		background-image: url(img/directdoen_backdesk.png);
    	background-position: top 0px right -60px;
		background-size: 1400px 665px;
		height: 665px;
	}
}

@media (min-width: 1500px) {
	.incentiveblock{
		background-image: url(img/directdoen_backdesk.png);
		background-position: right;
		background-size: cover;
		height: 810px;
	}
}

.bottom-usp-container{
	padding-top:35px;
	padding-bottom:35px;
	background-color: #ffffff;
}
.bottom-usp-container ul{
	margin:0;
	padding:0;
}
.bottom-usp-container ul li{
	padding-left: 95px;
	width: 33%;
	height: 55px;
	display: inline-block;
	background-image: url('img/ico_mail.png');
	background-repeat: no-repeat;
	background-size:73px auto;
	background-position: top 3px left;
}
.bottom-usp-container ul li:nth-child(2){
	background-image: url('img/ico_perc.png');
	background-size:43px auto;
	padding-left: 80px;
}
.bottom-usp-container ul li:nth-child(3){
	background-image: url('img/ico_heart.png');
	background-size:53px auto;
	padding-left: 80px;
}
.footermob{
	display: none;
}
@media(max-width:1200px){
	.bottom-usp-container ul li:nth-child(2){
		background-image: url('img/ico_perc.png');
		background-size:43px auto;
		padding-left: 60px;
		width: 30%;
	}
	.bottom-usp-container ul li:nth-child(3){
		width: 36%;
	}
	.footermob{
		display: block;
	}
}
@media(max-width:992px){
	.bottom-usp-container{
		background-color: #f8f7f7;
		padding-top: 10px;
		padding-bottom: 0;
	}
	.bottom-usp-container ul li:nth-child(1), .bottom-usp-container ul li:nth-child(2), .bottom-usp-container ul li:nth-child(3){
		width: 100%;
		display: block;
		margin-bottom: 15px;
		padding-left: 80px;
	}
	.bottom-usp-container ul li:nth-child(1){
		background-size:65px auto;
	}
}
@media(max-width:767px){
	.bottom-usp-container ul li:nth-child(1), .bottom-usp-container ul li:nth-child(2), .bottom-usp-container ul li:nth-child(3){
		background-size:35px auto;
		background-position: left 17px center;
		padding-left: 80px;
		height: 40px;
	}
	.footermob{
		width: 100%;
		height: auto;
		margin: 0 auto;
	}
	.no-p-mob{
		padding:0;
	}
}











