html {
	background-color: #fff;
}

body {
	font-family: "Montserrat", sans-serif;
	background-color:#fff;
}

body.frozen {
	overflow: hidden;
}

.wrap{
	overflow-x:hidden;
}

a,
button {
	-webkit-transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
	transition: all .1s ease-in-out;
}

.animo {
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.wow {
	visibility: hidden;
}

.bg-center {
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
}

.bg-left {
	background-position: left center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
}

.bg-top {
	background-position: top center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
}

.bg-bottom {
	background-position: bottom center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
}

.bg-contain {
	background-position: center center;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	background-size: contain;
	-o-background-size: contain;
	background-repeat: no-repeat;
}

.anchor{
	display:block;
	float:left;
	width:100%;
	padding-top:90px;
	margin-top:-90px;
  }

ul li{
	margin:0 0 1rem 0;
}

/*

	PLACEHOLDER

--------------- */

/* Chrome, Safari, newer versions of Opera and Edge */
::-webkit-input-placeholder {
	color: #ccc;
	font-size: 1rem;
}

/* Firefox 19+ */
::-moz-placeholder {
	color: #ccc;
	font-size: 1rem;
	opacity: 1;
	/* Firefox lowers the opacity of the placeholder by default */
}

/* Internet Explorer 10+ */
:-ms-input-placeholder {
	color: #ccc;
	font-size: 1rem;
}

/* Standard syntax for most modern browsers */
::placeholder {
	color: #ccc;
	font-size: 1rem;
}

::selection {
	background-color: #222a19;
	/* Yellow background */
	color: #fff;
	/* Black text */
}


/*

	NO SCROLLBAR

----------------- */
.hidden-scrollbar {
	overflow: scroll;
	/* Enable scrolling */
	-ms-overflow-style: none;
	/* Internet Explorer 10+ */
	scrollbar-width: none;
	/* Firefox */
}

/* Hide scrollbar for WebKit-based browsers (Chrome, Safari) */
.hidden-scrollbar::-webkit-scrollbar {
	display: none;
}

/* For Edge and IE */
@supports (-ms-overflow-style: none) {
	.hidden-scrollbar {
		-ms-overflow-style: none;
		/* Internet Explorer 10+ */
	}
}

/* For Firefox */
@supports (scrollbar-width: none) {
	.hidden-scrollbar {
		scrollbar-width: none;
		/* Firefox */
	}
}

.darken {
	position: fixed;
	z-index: 90;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
}

.container-fluid {
	max-width: 1400px;
}

/*

	COOKIES

------------ */
.cookies{
	position:fixed;
	bottom:0;
	left:0;
	right:0;
	padding:30px;
	background-color:rgba(255,255,255,0.9);
	backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
	z-index:999999;
	text-align:center;
	font-size:14px;
	line-height:22px;
	display:none;
	border-top:solid 1px #eee;
}
.cookies-content{
	margin:0 0 15px 0;
}
.cookies a.btn-cookies{
	display:inline-block;
	border:solid 1px #3f86c8;
	color: #3f86c8;
	padding:10px 15px;
	text-decoration:none;
	margin:0 2px;
	border-radius:5px;
}
.cookies a.btn-cookies:hover{
	border-color:#000;
	color:#000;
}
.cookies a.btn-cookies.highlight{
	border-color:#3f86c8;
	background-color:#3f86c8;
	color:#fff;
}
.cookies a.btn-cookies.highlight:hover{
	color:#fff;
	background-color:#000;
	border-color:#000;
}
@media(min-width:1200px){
	.cookies{
		padding:60px;
	}
}

/*

	MESSAGE

------------ */
.message-container{
	position:fixed;
	top:0;
	right:0;
	bottom:0;
	left:0;
	background-color:rgba(0,0,0,0.3);
	backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index:998;
}
.message{
	position:absolute;
	top:30px;
	left:15px;
	right:15px;
	background-color:#fff;
	color:#000;
	padding:30px;
	text-align:center;
	border-radius:15px;
	-webkit-box-shadow: 0px 4px 10px -6px rgba(37,55,134,0.7);
	-moz-box-shadow: 0px 4px 10px -6px rgba(37,55,134,0.7);
	box-shadow: 0px 4px 10px -6px rgba(37,55,134,0.7);
}
.message p{
	margin:0;
}
.message .btn-close-message{
	width:32px;
	height:32px;
	line-height:32px;
	color:#fff;
	background-color:#3f86c8;
	border-radius:50%;
	text-align:center;
	position:absolute;
	top:-5px;
	right:-5px;
}
.message .btn-close-message:hover{
	transform: rotate(90deg);
  	-webkit-transform: rotate(90deg);
  	-moz-transform: rotate(90deg);
  	-ms-transform: rotate(90deg);
 	 -o-transform: rotate(90deg);
}
@media(min-width:768px){
	.message{
		left:50%;
		top:60px;
		width:500px;
		margin-left:-250px;
		right:auto;
		padding:60px;
	}
	.message .btn-close-message{
		width:40px;
		height:40px;
		line-height:40px;
		right:-10px;
		top:-10px;
	}
}

p{
	font-size:1rem;
	color:#151515;
}

/*

	FORM

-------- */
label {
	color: #777;
}

.form-row {
	margin: 0 0 15px 0;
}

.form-group {
	margin: 0 0 1rem 0;
}

.form-control:focus,
.form-check-input:focus,
.form-select:focus {
	border-color: #ccc;
	box-shadow: 0 0 0 .25rem rgba(0, 0, 0, 0.25);
}

.form-check-input:checked {
	background-color: #3f86c8;
	border-color: #3f86c8;
}
.form-check-input:checked[type=checkbox] {
	background-color: #3f86c8;
	border-color: #3f86c8;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3 6-6'/%3E%3C/svg%3E");
}

.form-floating>label {
	color: #555;
}

.form-label {
	margin-bottom: .2rem;
	font-weight: bold;
}

textarea::placeholder {
	color: #aaa !important;
	/* Change the placeholder color */
	opacity: 1;
	/* Ensures the placeholder is fully opaque */
	font-size: 1rem;
}

textarea:-ms-input-placeholder {
	/* Internet Explorer 10+ */
	color: #aaa !important;
}

textarea::-ms-input-placeholder {
	/* Microsoft Edge */
	color: #aaa !important;
}

input:focus-visible {
	outline-offset: 0px;
	outline-color: #9bdc41;
	/* Change this to your desired color */
	outline-width: 2px;
	/* Adjust the outline width if needed */
	outline-style: solid;
	/* Ensure the outline has a visible style */
}

.form-check-label a {
	color: #777;
	line-height: 1.2;
}

.form-floating>.form-control, .form-floating>.form-control-plaintext{
	border:solid 1px #ccc;
	border-radius:5px;
}

.btn-default{
	display:inline-block;
	background-color:#d86720;
	color:#fff;
	padding:1.5rem 2rem;
	line-height:1;
	border-radius:10px;
	font-size:1rem;
	text-decoration:none;
	font-weight:bold;
	border:none;
}
.btn-default:hover{
	opacity: 0.9;
}

.title-block{
	padding:2rem 1rem;
	text-align:center;
}
h1{
	font-weight:bold;
	color:#d86720;
	font-size:2rem;
	line-height:1.2;
	margin:0 0 1rem 0;
}
h1 span{
	display:block;
	font-size:1rem;
	color:#888;
	font-weight:normal;
	margin-top:1rem;
	line-height:1.4;
}
p{
	font-size:1rem;
	line-height:1.6;
}
@media(min-width:768px){
	.title-block{
		padding:3rem 1rem;
	}
	h1{
		font-size:2.5rem;
	}
}
@media(min-width:1200px){
	h1{
		font-size:3rem;
	}
}

@media(min-width:992px){
	.mask{
		height:100vh;
		position:fixed;
		top:0;
		left:0;
		right:0;
		bottom:0;
		z-index: 99;
	}
}

.topbar{
	height:10px;
	background-color:#9c9722;
}

.logos{
	padding:0 1rem;
}
.logo{
	display:inline-block;
	padding:0 1rem;
}
.logo img{
	height:100px;
}
@media(min-width:768px){
	.logos{
		padding:0 1rem 3rem 1rem;
	}
}
@media(min-width:1200px){
	.logos{
		padding-bottom:6rem;
	}
	.logo img{
		height:150px;
	}
}

.vertriest{
	padding:3rem 1rem;
	background-color:#fff;
}
h2{
	font-weight:bold;
	color:#d86720;
	font-size:1.5rem;
	line-height:1.2;
	margin:0 0 1rem 0;
}
.vertriest .pic{
	margin:0 0 1rem 0;
}
@media(min-width:768px){
	.vertriest{
		padding:6rem 1rem;
	}
	.vertriest .pic{
		margin-bottom:2rem;
	}
	h2{
		font-size:2rem;
	}
}

.bo{
	padding:1rem;
	background-color:#9c9722;
	color:#fff;
}

.divider{
	padding:6rem 1rem 1rem 1rem;
	position:relative;
	min-height:300px;
}
.divider::after{
	content:'';
	position: absolute;
    bottom:0;
    left:0;
    right:0;
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(237, 221, 83, 0) 100%);
    height:80%;
}
.divider .title{
	color:#fff;
	font-size:2rem;
	font-weight:bold;
	z-index: 1;
	line-height:1.3;
	position:relative;
}
@media(min-width:768px){
	.divider{
		padding-top:9rem;
		background-attachment: fixed;
		background-position:center center;
	}
	.divider .title{
		padding:1rem 3rem;
		width:80%;
	}
}
@media(min-width:1200px){
	.divider{
		padding-top:12rem;
	}
	.divider .title{
		padding:1rem 3rem 2rem 1rem;
		width:80%;
		font-size:2.5rem;
	}
}
@media(min-width:1400px){
	.divider{
		padding-top:15rem;
	}
	.divider .title{
		padding:1rem 3rem 3rem 1rem;
		width:75%;
		font-size:3rem;
	}
}
