html {
	background-color: #fff;
}
body {
	background-color: #fff;
}

body.frozen {
	overflow: 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{
	margin:0.5rem 0 1rem 0;
}
ul li{
	margin:0 0 0.5rem 0;
}
p{
	color:#555;
	line-height:1.6;
}
.home-intro,
.page-container {
  min-height: 100vh;
}

/*

	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 #ccc;
	color: #555;
	padding:10px 15px;
	text-decoration:none;
	margin:0 2px;
	border-radius:5px;
}
.cookies a.btn-cookies:hover{
	border-color:#80bb2f;
	color:#80bb2f;
}
.cookies a.btn-cookies.highlight{
	border-color:#80bb2f;
	background-color:#fff;
	color:#000;
}
.cookies a.btn-cookies.highlight:hover{
	color:#000;
	background-color:#fafafa;
	border-color:#80bb2f;
}
@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:#000;
	background-color:#d2b75f;
	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;
	}
}