:root {

	--color-white: #FFFFFF;
	--color-black: #202020;
	--color-dark-grey: #595959;
	--color-grey: #7C7C7C;
	--color-light-grey: #BBBBBB;
	--color-green: #7E9F81;
	--color-red: #AF1C1C;
	--color-off-white: #FDFDFD;
}


@font-face {
	font-family: CormorantGaramond;
	src: url(../fonts/Cormorant_Garamond/CormorantGaramond-Light-webfont.woff);
	font-style: normal;
	font-weight: 100;
}

@font-face {
	font-family: CormorantGaramond;
	src: url(../fonts/Cormorant_Garamond/CormorantGaramond-Regular-webfont.woff);
	font-style: normal;
	font-weight: 200;
}

@font-face {
	font-family: CormorantGaramond;
	src: url(../fonts/Cormorant_Garamond/CormorantGaramond-Medium-webfont.woff);
	font-style: normal;
	font-weight: 300;
}

@font-face {
	font-family: CormorantGaramond;
	src: url(../fonts/Cormorant_Garamond/CormorantGaramond-SemiBold-webfont.woff);
	font-style: normal;
	font-weight: 400;
}

@font-face {
	font-family: CormorantGaramond;
	src: url(../fonts/Cormorant_Garamond/CormorantGaramond-Bold-webfont.woff);
	font-style: normal;
	font-weight: 500;
}


@font-face {
	font-family: CormorantGaramond;
	src: url(../fonts/Cormorant_Garamond/CormorantGaramond-LightItalic-webfont.woff);
	font-style: italic;
	font-weight: 100;
}

@font-face {
	font-family: CormorantGaramond;
	src: url(../fonts/Cormorant_Garamond/CormorantGaramond-Italic-webfont.woff);
	font-style: italic;
	font-weight: 200;
}

@font-face {
	font-family: CormorantGaramond;
	src: url(../fonts/Cormorant_Garamond/CormorantGaramond-MediumItalic-webfont.woff);
	font-style: italic;
	font-weight: 300;
}

@font-face {
	font-family: CormorantGaramond;
	src: url(../fonts/Cormorant_Garamond/CormorantGaramond-SemiBoldItalic-webfont.woff);
	font-style: italic;
	font-weight: 400;
}

@font-face {
	font-family: CormorantGaramond;
	src: url(../fonts/Cormorant_Garamond/CormorantGaramond-BoldItalic-webfont.woff);
	font-style: italic;
	font-weight: 500;
}

@font-face {
	font-family: Karla;
	src: url(../fonts/Karla/karla-webfont.woff);
	font-style: normal;
	font-weight: 300;
}

* {
	transition-duration: 0.2s;
}
	
textarea,
input[type="text"],
input[type="button"],
input[type="submit"] {
	-webkit-appearance: none;
	border-radius: 0;
}

body {
	width: 100%;
	margin: 0;
	padding: 0;

	background-color: var(--color-off-white);

	font-family: CormorantGaramond;
	font-weight: 200;
}

a {
	text-decoration: none;
	color: var(--color-black);
	font-weight: 300;
}

a:hover {
	color: var(--color-grey);
}

ul {
	padding: 0;
	margin: 0;
}

h1,h2,h3,h4,h5,h6 {
	margin: 0;
	padding: 0;
}

input, select, button, textarea {
	background-color: var(--color-white);
	border: 1px solid var(--color-black);
	color: var(--color-black);
	font-size: 15px;
	font-weight: 200;

	padding: 6px 10px;

	font-family: CormorantGaramond;
}


/*|| NAVIGATION START*/


.navigation_bar--desktop, .navigation_bar--mobile {
	
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;
	align-content: center;

	position: -webkit-sticky;
	position: -moz-sticky;
	position: -o-sticky;
	position: -ms-sticky;
	position: sticky;

	top: 0;

	height: 100px;
	max-width: 100%;

	background-color: var(--color-white);
	color: var(--color-black);

	font-size: 14px;
	font-weight: 300;

	z-index: 10000;

}

.navigation_bar--desktop {
	display: none;
	flex-direction: row;
}

.navigation_bar--mobile {
	flex-direction: column;
	height: 80px;
}

.navigation_bar__item {
	display: block;
	max-height: 100%;
	max-width: 100%;
	min-width: 120px;
	text-align: center;

	padding: 16px;

	background-color: var(--color-white);
}

.navigation_bar--mobile .navigation_bar__logo img {
	height: 44px;
}

.navigation_bar__logo {
	background-color: transparent;
}

.navigation_bar__dropdown {
	padding: 0;
}

.navigation_bar__dropdown img {
	height: 5px;
	padding: 2px 4px;
}

.dropdown__item_after_first {
	display: none;
}

.navigation_bar__dropdown:hover .dropdown__item_after_first {
	display: block;

	position: absolute;
	width: 120px;
	z-index: 100;

}

.navigation_bar__links {
	display: none;
	padding-bottom: 16px;
}

.navigation_bar__menu_icon {
	position: absolute;
	right: 16px;
	top: 16px;

	padding: 16px;
}

.navigation_bar__menu_icon img {
	height: 13px;
}

.navigation_bar--mobile.responsive {
	height: auto;
}

.navigation_bar--mobile.responsive .navigation_bar__links {
	display: block;
	position: absolute;
	top: 80px;
	left: 0;
	right: 0;
	background-color: var(--color-white);
	box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.05);

	z-index: 1000;
}


/*NAVIGATION END*/

/*|| BANNER START*/

.banner {
	display: block;
	max-width: 100%;
	text-align: center;

	background-color: var(--color-green);
	color: var(--color-white);

	font-size: 14px;
}

.banner a {
	display: block;
	padding: 20px 0;
	color: var(--color-white);
}

.banner img {
	height: 7px;
	padding-left: 2px;
}

/*BANNER END*/


/*|| FOOTER START*/

.footer {
	display: block;
	max-width: 100%;
	text-align: center;
	background-color: var(--color-off-white);

	padding-top: 42px;
}

.footer__logo {
	margin: 10px 0;
}

.footer__socials {
	padding: 32px 0;
}

.footer__navigation {

}

.footer__copyright {
	padding-top: 32px;
	padding-bottom: 20px;

	font-size: 14px;
}

.footer__copyright a {
	font-weight: 400;
	text-decoration: underline;
}

.link_row, .link_row--white, .link_row--spaced {
	display: flex;
	flex-direction: row;
	justify-content: center;

}

.link_row--white a {
	color: var(--color-white);
}

.link_row--spaced .link_row__item {
	padding: 8px 32px;
}

.link_row__item {
	padding: 8px;
}


/*FOOTER END*/


/*|| HERO IMAGE START*/

.hero_image, .hero_image--responsive {
	display: flex;
	align-items: center;
	justify-content: center;
	align-content: center;
	position: relative;
	max-width: 100%;
	height: calc(100vh - 160px);

}

.hero_image--responsive {
	height: 500px;
	max-height: auto;
}

.hero_image__image {
	width: 100%;
	height: 100%;
	object-fit: cover;

	background-color: var(--color-light-grey);
}

.hero_image__text_overlay, .hero_image__text_overlay--left {
	position: absolute;
	color: var(--color-white);
	margin: 0;
	padding: 20px;
	z-index: 100;

	max-width: 100%;
	text-align: center;

}


.hero_image__title {
	font-size: 36px;
	font-weight: 500;
}

.hero_image__subtitle {
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 400;

	margin: 12px 0;
}

.hero_image__button {

	display: inline-block;
	padding: 6px 20px;
	margin: 30px 0;

	font-size: 16px;
	font-weight: 400;
	color: var(--color-white);

	border: 1px solid var(--color-white);
	border-radius: 2px;

	transition-duration: 0.4s;

	cursor: pointer;
}

.hero_image__button:hover {
	background-color: rgba(255,255,255,0.9);
	border-color: rgba(255,255,255,0.1);
	color: var(--color-black);
}

.hero_image__text {
	font-size: 18px;
	line-height: 26px;
	max-width: 600px;
	width: 100%;
	text-align: center;
	padding-top: 24px;
	padding-bottom: 42px;
}

.hero_image__link {
	font-size: 16px;
	font-weight: 400;

	padding: 16px 30px;

	color: var(--color-white);
}

.hero_image__link:hover {
	color: var(--color-off-white);
}

/*HERO IMAGE END*/

/*|| TEXT BLOCK START*/


.text_block, .text_block--top-padding, .text_block--white-font {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 30px 40px 30px 40px;
}

.text_block--white-font, .text_block--white-font .text_block__title {
	color: var(--color-white);
}

.text_block__title {
	font-size: 28px;
	font-weight: 500;

	color: var(--color-dark-grey);
	text-align: center;
}

.text_block__subtitle {
	text-transform: uppercase;
	font-size: 14px;
	color: var(--color-light-grey);
	font-family: Karla;
	white-space: nowrap;

	padding-bottom: 24px;
}

.text_block__text, .text_block__text--wide, .text_block__text--medium-width {
	font-size: 18px;
	line-height: 26px;
	padding: 20px;
	max-width: 600px;
	width: 100%;
	text-align: center;
}

.text_block__text--medium-width {
	max-width: 800px;
}

.text_block__text--wide {
	max-width: 1000px;
}

.text_block__link {
	font-size: 16px;
	font-weight: 400;

	padding: 16px 30px;
}

.text_block__image {
	height: auto;
	width: calc(100% + 80px);
	max-width: 900px;
	object-fit: cover;

	padding: 30px 0 10px 0;
}


/*TEXT BLOCK END*/


/*|| IMAGE TEXT BLOCK START*/

.image_text_block, .image_text_block--reversed {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;

	justify-content: center;
	align-items: center;
	align-content: center;
	max-width: 100%;
	padding: 30px 0;
}

.image_text_block--reversed {
	flex-wrap: wrap-reverse;
}

.image_text_block__image {
	flex-grow: 2;
	height: auto;
	width: 100%;
	max-width: 560px;
	object-fit: cover;

	background-color: var(--color-light-grey);
}

.image_text_block__text_block {

	max-width: 100%;
	text-align: justify;
	padding: 24px 20px;
}

.image_text_block__title_bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.image_text_block__title {
	font-size: 28px;
	font-weight: 500;

	color: var(--color-dark-grey);
}

.image_text_block__subtitle {
	text-transform: uppercase;
	font-size: 14px;
	color: var(--color-light-grey);
	font-family: Karla;
	white-space: nowrap;
}

.image_text_block__text {
	font-size: 18px;
	line-height: 26px;
	max-width: 500px;
	width: 100%;
	padding: 20px 0;
}

.image_text_block__link {
	float: right;
	font-size: 16px;
	font-weight: 400;

	padding: 16px 0 16px 30px;
}

/*IMAGE TEXT BLOCK END*/


/*||CONTACT INFO START*/

.contact_info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	max-width: 100%;

	padding-top: 20px;
	padding-bottom: 42px;
}

.contact_info__item {
	width: 230px;

	padding: 30px 30px 40px 30px;

	text-align: left;
}

.contact_info__title {
	font-size: 24px;
	font-weight: 500;
	padding-bottom: 20px;
}

.contact_info__description {
	font-size: 18px;
	line-height: 26px;
	font-weight: 200;

	color: var(--color-white);
}

.contact_info__item a {
	color: var(--color-white);
}


/*CONTACT INFO END*/

/*|| CONTACT FORM START*/

.contact_form_container {
	display: flex;
	justify-content: center;
	max-width: calc(100% - 10px);
}

.contact_form, .form_section, .form_section__inputs {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 500px;
	max-width: 100%;
}

.contact_form {
	max-width: 90%;
}

.form_section {
	justify-content: space-between;
}

.form_section__inputs {

	height: 200px;
}

.form_section__navigation {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-content: space-around;
	width: 500px;
	max-width: 100%;
}

.contact_form__text_input {
	width: calc(100% - 20px);

	margin: 10px;
}

.contact_form__textarea_input {
	width: calc(100% - 20px);

	margin: 10px;

}

.contact_form__select_input {
	width: 100%;

	margin: 10px;

}

.contact_form__option_input {
	width: 100%;
}

.contact_form__checkbox_container {
	display: flex;
	align-content: center;
	margin: 10px;
}

.contact_form__checkbox {

}

.contact_form__checkbox_label {

}

.contact_form__button {
	display: inline-block;
	width: auto;
	background-color: var(--color-white);
	border: 1px solid var(--color-dark-grey);
	color: var(--color-dark-grey);
	font-size: 16px;
	font-weight: 400;
	border-radius: 2px;

	padding: 4px 24px;
	margin: 20px;

	cursor: pointer;
	user-select: none;

	transition-duration: 0.2s;
}

.contact_form__button:hover {
	background-color: var(--color-green);
	border-color: var(--color-green);
	color: var(--color-white);
}

.contact_form__error, .contact_form__success {
	max-width: 100%;
	text-align: center;
	font-size: 15px;
	font-weight: 400;
	line-height: 24px;
}

.contact_form__error {
	color: var(--color-red);
}

.contact_form__success {
	color: var(--color-green);
}

/*CONTACT FORM END*/

/*|| SMALL GALLERY START*/

.small_gallery {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;

	max-width: 100%;

	padding: 15px;

}

.small_gallery__image {
	width: 400px;
	max-height: 300px;
	max-width: 100%;

	padding: 15px;

	object-fit: cover;
}

/*SMALL GALLERY END*/


/*|| LOCATION GALLERY START*/

.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(auto, 400px));
	grid-gap: 20px;

	max-width: 100%;

	padding: 30px;

	justify-content: center;
}

.gallery__item {
	position: relative;
	width: 100%;
	max-width: 400px;
	padding-bottom: 20px;
}

.gallery__image {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.gallery__info {
	padding: 16px;
}

.gallery__title {
	font-size: 26px;
	font-weight: 500;
	color: var(--color-dark-grey);
}

.gallery__description {
	font-size: 16px;
	line-height: 20px;
	padding: 16px 0;

	text-align: justify;
}

.gallery__link {
	position: absolute;
	bottom: 0;
	right: 16px;
	padding: 16px 0;

	font-size: 16px;
	font-weight: 400;

	float: right;
}

/*LOCATION GALLERY END*/

/*|| LOCATION FILTER START*/

.filter_container {
	display: flex;
	justify-content: center;
	max-width: 100%;
}

.filter {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;

	max-width: min(1000px, 100%);

	padding: 16px 30px;
}

.filter__title {
	font-size: 20px;
	font-weight: 400;

	padding-right: 16px;

	color: var(--color-dark-grey);

	white-space: nowrap;
}

.filter__item {
	font-size: 16px;
	padding: 6px 20px;
	margin: 8px;

	color: var(--color-grey);
	border: 1px solid var(--color-grey);

	cursor: pointer;

}

.filter__selected, .filter__item:hover {

	color: var(--color-black);
	border: 1px solid var(--color-black);

	font-weight: 300;
}

/*LOCATION FILTER END*/




.two_column_flexbox {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-content: flex-start;
	align-items: center;

	max-width: 100%;

	padding-top: 16px;
	padding-bottom: 60px;
}

.two_column_flexbox__item {
	padding: 0 30px;
	font-size: 18px;
	line-height: 26px;
	font-family: CormorantGaramond;

	max-width: 500px;
}

.page_marker {
	position: absolute;
	margin-top: -100px;
}

.hide {
	display: none;
}

.fullscreen_container, .fullscreen_container--green {
	max-width: 100%;
	padding: 30px;
}

.fullscreen_container--green {
	background-color: var(--color-green);
	color: var(--color-white);
}

.link_icon {
	height: 8px;
	padding-left: 2px;
}

.spacer-10 {
	display: block;
	max-width: 100%;
	height: 10px;
}

.spacer-30 {
	display: block;
	max-width: 100%;
	height: 30px;
}

.spacer-60 {
	display: block;
	max-width: 100%;
	height: 60px;
}

.spacer-90 {
	display: block;
	max-width: 100%;
	height: 90px;
}


.image_overlay, .image_overlay--1 {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;

	background-color: rgba(0,0,0, 0.2);

	z-index: 100;
}

.image_overlay--1 {
	background-color: rgba(0,0,0,0.1);
}

/*Extra small devices (portrait phones, less than 576px)*/
/*No media query for `xs` since this is the default in Bootstrap*/

/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) { 

}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {

	.border_container {
		padding: 30px;
	}

	.hero_image__text_overlay--left {
		top: 25%;
		left: 20%;
		text-align: left;
	}

	.small_gallery__image {
		width: 300px;
		flex-grow: 2;
	}

	.text_block__subtitle {
		margin-top: -20px;
	}

	.image_text_block__title, .text_block__title {
		font-size: 36px;
	}

	.hero_image__title {

		font-size: 48px;
	}

	.hero_image__subtitle {
		font-size: 16px;
	}

	.text_block__image {
		width: 100%;
	}
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {

	.navigation_bar--mobile {
		display: none;
	}
	.navigation_bar--desktop {
		display: flex;
	}


	.contact_info {
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-around;
		padding-left: 10%;
		padding-right: 10%;
	}

	.contact_info__item {
		width: auto;
		padding: 30px;
	}

	.small_gallery__image {
		width: 300px;
	}
}

/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
	
	.image_text_block, .image_text_block--reversed {
		padding: 30px 60px;
		flex-wrap: nowrap;
	}
	.image_text_block__text_block {

		padding: 48px;

		padding-right: 90px;
	}

	.image_text_block--reversed .image_text_block__text_block {
		padding-right:48px;
		padding-left: 90px;
	}

	.image_text_block__image {
		max-width: 50%;
	}
	
}

/* Extra Extra Large Devices */
@media (min-width: 1600px) {

	.small_gallery__image {
		width: 400px;
	}

}