html {
	position: relative;
	width: 100%;
	height: 100%;
}

@font-face {
	font-family: 'AmaticSC';
	font-weight: 700;
	src: url('../fonts/AmaticSC-Bold.ttf');
}

@font-face {
	font-family: 'AmaticSC';
	font-weight: 400;
	src: url('../fonts/AmaticSC-Regular.ttf');
}

body {
	height: 100%;
	background-color: #fff;
	color: #000;
	box-sizing: content-box;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

#page-container {
	position: relative;
	padding: 0;
	min-height: 100%;
}

/********************************/
/*************Header*************/
/********************************/

header {
	min-height: 300px;
	padding: 15px;
	background-position: bottom left;
	background-size: cover;
	text-align: right;
}

#map-container {
	position: relative;
	width: 100%;
	height: 320px;
}

#map {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

#map-filter {
	display: flex;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	align-items: center;
	z-index: 2;
	pointer-events: none;
}

#map-filter form {
	pointer-events: all;
}

/********************************/
/************Content*************/
/********************************/

#content {
	padding: 30px 0 15px;
}

.step {
	margin: 0 auto;
	width: auto;
	max-width: 250px;
	padding: 15px 0;
	text-align: center;
}

.step img {
	margin-bottom: 10px;
	width: 100%;
}

.step p {
	margin: 0 auto;
	width: auto;
	max-width: 150px;
	line-height: 1.1rem;
}

.txt-block {
	padding: 25px;
	background-color: #ebe9e4;
}

.txt-sub-block {
	margin: 10px 0 0;
	padding: 5px 15px;
	background-color: #fff;
}

.txt-sub-block.alt {
	display: inline-block;
	margin-right: 10px;
	padding: 2px 5px;
	width: auto;
}

.txt-box {
	margin: 10px 0;
	padding: 0 15px 10px;
	border: solid 5px #b61d17;
}

.txt-box.color-1 {
	border-color: #ffe410;
}

.txt-box.color-2 {
	border-color: #5e5892;
}

.txt-box.color-3 {
	border-color: #cdd343;
}

/*
* Fine tuning
*/
p + .txt-sub-block {
	margin: 0;
}

.txt-sub-block + p {
	margin-top: 20px;
	margin-bottom: 10px;
}

.txt-box p:first-of-type {
	margin-bottom: 10px;
}

.txt-box + h4 {
	margin-top: 25px;
}

h4 + .txt-box {
	margin-top: 20px;
}

/********************************/
/*************Footer*************/
/********************************/

/********************************/
/*************Filters************/
/********************************/

.collapse-container {
	position: relative;
}

.collapse-container:nth-of-type(1) {
	z-index: 5;
}

.collapse-container:nth-of-type(2) {
	z-index: 4;
}

.collapse-container:nth-of-type(3) {
	z-index: 3;
}

.collapse-container:nth-of-type(4) {
	z-index: 2;
}

.collapse-header {
	display: flex;
	flex-direction: row;
	align-items: center;
	cursor: pointer;
}

.collapse-title {
	flex-grow: 1;
}

.collapse-arrow {
	font-size: 25px;
	transition-duration: 0.25s;
}

.collapse-content {
	position: absolute;
	left: 0;
	top: 100%;
	height: 0;
	width: 100%;
	overflow: hidden;
	transition-duration: 0.25s;
}

.collapse-container.open .collapse-content {
}

.collapse-container.open .collapse-arrow {
	transform: rotate(180deg);
}

.filter-container {
	position: relative;
	margin-bottom: 15px;
	padding: 10px 15px;
	background-color: #ebe9e4;
	font-size: 1.1rem;
}

.filter-icon {
	margin-right: 2px;
	height: 25px;
}

.filter-content {
	padding: 0 25px 10px;
	background-color: #ebe9e4;
}

.filter-label {
	display: block;
	padding: 5px 15px 5px 25px;
	background-color: #fff;
	cursor: pointer;
	transition-duration: 0.15s;
}

.filter-label:hover {
	background-color: rgba(237, 124, 47, 0.5);
}

.filter-label.active {
	background-color: #ed7c2f;
	color: #fff;
}

.filter-label input {
	display: none;
}

.filter-submit {
	display: block;
	width: 100%;
	padding: 10px 15px;
	background-color: #ed7c2f;
	color: #fff;
	border: none;
	text-align: left;
	transition-duration: 0.25s;
}

.filter-submit:hover {
	background-color: #cdd343;
}

#map-container .filter-container,
#map-container .filter-content {
	background-color: #fff;
}

#map-container .filter-label {
	background-color: #ebe9e4;
}

#map-container .filter-label:hover {
	background-color: rgba(237, 124, 47, 0.5);
}

#map-container .filter-label.active {
	background-color: #ed7c2f;
	color: #fff;
}

/********************************/
/*************Cards**************/
/********************************/

.card {
	position: relative;
	width: 100%;
}

.card-img {
	width: 100%;
	padding-bottom: 56.25%;
	background-position: center;
	background-size: cover;
}

.card-txt {
	padding: 15px 15px 10px 15px;
	background-color: #ebe9e4;
}

.card-link {
	display: block;
	width: 100%;
	padding: 10px 15px;
	background-color: #ed7c2f;
	color: #fff;
	border: none;
	text-align: left;
	transition-duration: 0.25s;
}

.card-link:hover {
	background-color: #cdd343;
	color: #fff;
}

.card-link img {
	margin-right: 2px;
	height: 25px;
}

.interest-yes,
.interest-no {
	width: 24px;
	height: 24px;
	background-color: #fff;
	padding: 0;
	border: none;
	font-size: 16px;
	transition-duration: 0.15s;
}

.interest-yes {
	margin-left: 5px;
}

.interest-yes:hover {
	background-color: rgba(205, 211, 67, 0.5);
}

.interest-yes.active {
	background-color: #cdd343;
}

.interest-no {
	color: #7f7f7f;
}

.interest-no:hover {
	background-color: rgba(182, 29, 23, 0.25);
}

.interest-no.active {
	background-color: #b61d17;
	color: #fff;
}

/********************************/
/**********Apply Form***********/
/********************************/

#apply-form-dependent {
	display: none;
}

#apply-form-dependent.open {
	display: block;
}

#apply-form {
	position: relative;
	padding: 30px 30px 80px;
	background-color: #cdd343;
}

#apply-form input[type='text'],
#apply-form input[type='email'],
#apply-form input[type='date'],
#apply-form textarea {
	display: block;
	margin: 8px 0 0;
	width: 100%;
	padding: 5px 8px;
	border: none !important;
	outline: none !important;
}

#apply-form textarea {
	height: 100px;
	resize: none;
}

#apply-form label {
	margin: 0 15px 0 0;
	cursor: pointer;
	vertical-align: middle;
}

#apply-form input[type='checkbox'],
#apply-form input[type='radio'] {
	display: none;
}

.checkbox-replacer,
.radio-replacer {
	display: inline-block;
	position: relative;
	margin-right: 5px;
	width: 18px;
	height: 18px;
	background-color: #fff;
	vertical-align: middle;
	outline: transparent solid 3px;
	transition-duration: 0.15s;
}

.radio-replacer {
	width: 14px;
	height: 14px;
	border-radius: 7px;
}

label:hover .checkbox-replacer {
	outline-color: #96bce0;
}

label:hover .radio-replacer {
	transform: scale(1.25);
	transition-duration: 0.1s;
}

input:checked ~ .checkbox-replacer,
input:checked ~ .radio-replacer {
	background-color: #96bce0;
}

input:checked ~ .checkbox-replacer::after,
.checkbox-replacer.active::after {
	content: '\2713';
	display: flex;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	font-size: 14px;
	justify-content: center;
	align-items: center;
	color: #fff;
}

.checkbox-replacer.active::after {
	color: #000;
}

#apply-form strong {
	display: block;
	margin-top: 15px;
}

.child-apply-submit {
	display: block;
	position: absolute;
	margin: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 10px 15px;
	background-color: #ed7c2f;
	color: #fff;
	border: none;
	text-align: left;
	transition-duration: 0.25s;
}

.child-apply-submit:hover {
	background-color: #cdd343;
}

#apply-form .alt-input {
	display: none !important;
}

#apply-form .alt-input.shown {
	display: inline-block !important;
	margin: 0 0 0 15px;
	width: auto;
}

#apply-form.parent {
	background-color: #ebe9e4;
}

/********************************/
/************Reviews*************/
/********************************/

#reviews-container {
	padding: 30px 30px;
	background-color: #ebe9e4;
	text-align: center;
}

#reviews-container h2 {
	margin-bottom: 25px;
}

.review {
	padding: 15px 0;
}

.review strong {
	display: block;
}

.review-stars {
	padding: 15px 0 0;
}

.review-star {
	color: #ed7c2f;
	font-size: 16px;
}

/********************************/
/*************Footer*************/
/********************************/

footer {
	padding: 30px 60px;
	background-color: #96bce0;
	text-align: center;
}

footer .social {
	margin: 5px;
	text-decoration: none !important;
	font-size: 30px;
	transition-duration: 0.15s;
}

footer .social:hover {
	color: #ebe9e4;
}

/********************************/
/*********Header Carousel********/
/********************************/

#header-carousel {
	margin: 0 auto;
	width: 100%;
	max-width: 900px;
}

#header-carousel-main {
	width: 100%;
}

#header-carousel-main .slick-slide {
	width: 100%;
	height: 450px;
	background-position: center;
	background-size: cover;
}

#header-carousel-thumbs {
	display: flex;
	position: relative;
	width: 100%;
	padding: 15px 0;
	justify-content: center;
}

.header-carousel-thumb {
	margin: 15px 15px;
	width: 100px;
	height: 100px;
	background-position: center;
	background-size: cover;
	outline: transparent solid 5px;
	transition-duration: 0.25s;
	cursor: pointer;
}

.header-carousel-thumb:hover {
	outline-color: #cdd343;
}

/********************************/
/**********Other Pages***********/
/********************************/

/********************************/
/**************Menu**************/
/********************************/

#nav-button {
	padding: 0;
	background: none;
	border: none;
	outline: none !important;
}

#nav-button img {
	height: 25px;
}

#nav-close-button {
	position: absolute;
	right: 15px;
	top: 15px;
	background: none;
	border: none;
	color: #fff;
	font-size: 40px;
	outline: none !important;
	transition-duration: 0.15s;
}

#nav-close-button:hover {
	color: #cdd343;
}

#nav {
	display: flex;
	position: fixed;
	right: -400px;
	top: 0;
	width: 400px;
	max-width: 100vw;
	min-height: 100vh;
	background-color: #ed7c2f;
	color: #fff;
	transition-duration: 0.5s;
	justify-content: center;
	align-items: center;
	z-index: 99;
}

#nav.open {
	right: 0;
}

#nav > ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#nav > ul > li {
	position: relative;
}

#nav > ul > li > a {
	line-height: 2.8rem;
	font-size: 1.4rem;
	text-decoration: none !important;
}

#nav > ul > li::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0.2em;
	width: 100%;
	height: 1px;
	background-color: #fff;
	opacity: 1;
	transform: scaleX(0);
	transform-origin: left;
	transition-duration: 0.35s;
}

#nav > ul > li:hover::after {
	opacity: 1;
	transform: scaleX(1);
}

/********************************/
/**************Heads*************/
/********************************/

h1,
h2 {
	font-family: 'AmaticSC';
	font-size: 40px;
	font-weight: 700;
}

h3 {
	font-family: 'AmaticSC';
	font-size: 28px;
	font-weight: 700;
}

h4 {
	display: block;
	margin: 15px 0 0;
	font-size: 1rem;
	font-weight: 700;
}

/********************************/
/************Paragraphs**********/
/********************************/

/********************************/
/**************Buttons***********/
/********************************/

a,
a:hover {
	color: inherit;
	cursor: pointer;
}

/********************************/
/**************Sliders***********/
/********************************/

/********************************/
/**************Colors************/
/********************************/

/********************************/
/********************************/
/********************************/

.underlined {
	text-decoration: underline !important;
}

@media only screen and (max-width: 1399px) {
}

@media only screen and (max-width: 1199px) {
}

@media only screen and (max-width: 991px) {
}

@media only screen and (max-width: 767px) {
	header {
		min-height: 200px;
		background-size: 900px;
	}
}

@media only screen and (max-width: 575px) {
	header {
		min-height: 150px;
	}
}

@media only screen and (max-width: 400px) {
}
