@charset "utf-8";

/* ------------------------- */
/* 1. Fonts
/* ------------------------- */

@font-face {
	font-family:'Roboto Bold';
	src:url('../fonts/roboto/Roboto-Bold.eot');
	src:url('../fonts/roboto/Roboto-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/roboto/Roboto-Bold.woff') format('woff'),
		url('../fonts/roboto/Roboto-Bold.ttf') format('truetype');
	font-weight:bold;
	font-style:normal;
}

@font-face {
	font-family:'Libre Baskerville';
	src:url('../fonts/libre-baskerville/LibreBaskerville-Regular.eot');
	src:url('../fonts/libre-baskerville/LibreBaskerville-Regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/libre-baskerville/LibreBaskerville-Regular.woff') format('woff'),
		url('../fonts/libre-baskerville/LibreBaskerville-Regular.ttf') format('truetype');
	font-weight:normal;
	font-style:normal;
}

@font-face {
	font-family:'Libre Baskerville Bold';
	src:url('../fonts/libre-baskerville/LibreBaskerville-Bold.eot');
	src:url('../fonts/libre-baskerville/LibreBaskerville-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/libre-baskerville/LibreBaskerville-Bold.woff') format('woff'),
		url('../fonts/libre-baskerville/LibreBaskerville-Bold.ttf') format('truetype');
	font-weight:bold;
	font-style:normal;
}

@font-face {
	font-family:'Libre Baskerville Italic';
	src:url('../fonts/libre-baskerville/LibreBaskerville-Italic.eot');
	src:url('../fonts/libre-baskerville/LibreBaskerville-Italic.eot?#iefix') format('embedded-opentype'),
		url('../fonts/libre-baskerville/LibreBaskerville-Italic.woff') format('woff'),
		url('../fonts/libre-baskerville/LibreBaskerville-Italic.ttf') format('truetype');
	font-weight: normal;
	font-style: italic;
}

@font-face {
	font-family:'Nunito Bold';
	src:url('../fonts/nunito/Nunito-Bold.eot');
	src:url('../fonts/nunito/Nunito-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/nunito/Nunito-Bold.woff') format('woff'),
		url('../fonts/nunito/Nunito-Bold.ttf') format('truetype');
	font-weight:bold;
	font-style:normal;
}

/* ------------------------- */
/* 2. Global
/* ------------------------- */
/* ------------------------- */
/* 2.1. Normalizer
/* ------------------------- */

* {
	-moz-box-sizing:border-box;
		 box-sizing:border-box;
}

*:focus {
	outline:none;
}

html {
	overflow-x:hidden;
	height:100%;
}

body {
	overflow-x:hidden;
	/*height:100%;*/
}

p,
figure {
	margin:0;
}

h1, h2, h3, h4, h5 {
	margin:0;
	font-weight:normal;
}

ul,
ol {
	margin:0;
	padding:0;
	list-style:none;
}

img {
	vertical-align:middle;
}

a {
	outline:0;
	text-decoration:none;
}

a:hover, a:active, a:focus {
	outline:0;
}

a:hover {
}

input[type="text"],
input[type="email"],
input[type="submit"] {
	border-radius:0;
	appearance:none;
}

/*
::-moz-selection {
}

::selection {
}
*/

/* ------------------------- */
/* 2.2. Grid
/* ------------------------- */

.row {
	width:100%;
}

.col {
  	float:left;
  	min-height:1px;
}

.col-right {
	float:right;
}

.col-1 { width:8.3333%; }
.col-2 { width:16.6666%; }
.col-3 { width:25%; }
.col-4 { width:33.3333%; }
.col-5 { width:41.6666%; }
.col-6 { width:50%; }
.col-7 { width:58.3333%; }
.col-8 { width:66.6666%; }
.col-9 { width:75%; }
.col-10 { width:83.3333%; }
.col-11 { width:91.6666%; }
.col-12 { width:100%; }

.col-1-5 { width:20%; }
.col-2-5 { width:40%; }
.col-3-5 { width:60%; }
.col-4-5 { width:80%; }
.col-5-5 { width:100%; }

.hide { display:none; }
.show { display:block; }

@media all and (max-width: 1279px) {
	.col-xl-1 { width:8.3333%; }
	.col-xl-2 { width:16.6666%; }
	.col-xl-3 { width:25%; }
	.col-xl-4 { width:33.3333%; }
	.col-xl-5 { width:41.6666%; }
	.col-xl-6 { width:50%; }
	.col-xl-7 { width:58.3333%; }
	.col-xl-8 { width:66.6666%; }
	.col-xl-9 { width:75%; }
	.col-xl-10 { width:83.3333%; }
	.col-xl-11 { width:91.6666%; }
	.col-xl-12 { width:100%; }

	.col-xl-1-5 { width:20%; }
	.col-xl-2-5 { width:40%; }
	.col-xl-3-5 { width:60%; }
	.col-xl-4-5 { width:80%; }
	.col-xl-5-5 { width:100%; }

	.hide-xl { display:none; }
	.show-xl { display:block; }
}

@media all and (max-width: 1023px) {
	.col-lg-1 { width:8.3333%; }
	.col-lg-2 { width:16.6666%; }
	.col-lg-3 { width:25%; }
	.col-lg-4 { width:33.3333%; }
	.col-lg-5 { width:41.6666%; }
	.col-lg-6 { width:50%; }
	.col-lg-7 { width:58.3333%; }
	.col-lg-8 { width:66.6666%; }
	.col-lg-9 { width:75%; }
	.col-lg-10 { width:83.3333%; }
	.col-lg-11 { width:91.6666%; }
	.col-lg-12 { width:100%; }

	.col-lg-1-5 { width:20%; }
	.col-lg-2-5 { width:40%; }
	.col-lg-3-5 { width:60%; }
	.col-lg-4-5 { width:80%; }
	.col-lg-5-5 { width:100%; }

	.hide-lg { display:none; }
	.show-lg { display:block; }
}

@media all and (max-width: 767px) {
	.col-md-1 { width:8.3333%; }
	.col-md-2 { width:16.6666%; }
	.col-md-3 { width:25%; }
	.col-md-4 { width:33.3333%; }
	.col-md-5 { width:41.6666%; }
	.col-md-6 { width:50%; }
	.col-md-7 { width:58.3333%; }
	.col-md-8 { width:66.6666%; }
	.col-md-9 { width:75%; }
	.col-md-10 { width:83.3333%; }
	.col-md-11 { width:91.6666%; }
	.col-md-12 { width:100%; }

	.col-md-1-5 { width:20%; }
	.col-md-2-5 { width:40%; }
	.col-md-3-5 { width:60%; }
	.col-md-4-5 { width:80%; }
	.col-md-5-5 { width:100%; }

	.hide-md { display:none; }
	.show-md { display:block; }
}

@media all and (max-width: 567px) {
	.col-sm-1 { width:8.3333%; }
	.col-sm-2 { width:16.6666%; }
	.col-sm-3 { width:25%; }
	.col-sm-4 { width:33.3333%; }
	.col-sm-5 { width:41.6666%; }
	.col-sm-6 { width:50%; }
	.col-sm-7 { width:58.3333%; }
	.col-sm-8 { width:66.6666%; }
	.col-sm-9 { width:75%; }
	.col-sm-10 { width:83.3333%; }
	.col-sm-11 { width:91.6666%; }
	.col-sm-12 { width:100%; }

	.col-sm-1-5 { width:20%; }
	.col-sm-2-5 { width:40%; }
	.col-sm-3-5 { width:60%; }
	.col-sm-4-5 { width:80%; }
	.col-sm-5-5 { width:100%; }

	.hide-sm { display:none; }
	.show-sm { display:block; }
}

@media all and (max-width: 479px) {
	.col-xs-1 { width:8.3333%; }
	.col-xs-2 { width:16.6666%; }
	.col-xs-3 { width:25%; }
	.col-xs-4 { width:33.3333%; }
	.col-xs-5 { width:41.6666%; }
	.col-xs-6 { width:50%; }
	.col-xs-7 { width:58.3333%; }
	.col-xs-8 { width:66.6666%; }
	.col-xs-9 { width:75%; }
	.col-xs-10 { width:83.3333%; }
	.col-xs-11 { width:91.6666%; }
	.col-xs-12 { width:100%; }

	.col-xs-1-5 { width:20%; }
	.col-xs-2-5 { width:40%; }
	.col-xs-3-5 { width:60%; }
	.col-xs-4-5 { width:80%; }
	.col-xs-5-5 { width:100%; }

	.hide-xs { display:none; }
	.show-xs { display:block; }
}

/* ------------------------- */
/* 2.3. Helpers
/* ------------------------- */

.clearfix::after {
	content:"";
	display:table;
	clear:both;
}

.wrapper {
	position:relative;
	margin:0 auto;
	width:100%;
	padding:0 100px;
}

.table {
	display:table;
	width:100%;
	height:100%;
}

.table-cell {
	display:table-cell;
	vertical-align:middle;
}

.video-wrapper {
	position:relative;
	padding-bottom:56.25%;
	height:0;
}

.video-wrapper iframe {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	border:none;
}

.responsive {
	width:100%;
}

.list-inline > li {
	display:inline-block;
}

.list-float > li {
	float:left;
}

/* ------------------------- */
/* 2.4. Other
/* ------------------------- */

.website {
	position:relative;
}

.editor-content {
}

.editor-content a {
	color:#000;
	border-bottom:1px solid;
	transition:border-bottom 0.3s ease;
}

.editor-content a:hover {
	border-bottom-color:transparent;
}

.editor-content b,
.editor-content strong {
	font-family:'Libre Baskerville Bold', serif;
	font-weight:normal;
	color:#000;
}

.editor-content em {
	font-family:'Libre Baskerville Italic', serif;
	font-style:normal;
	font-size:1.0625em;
}

.editor-content b em,
.editor-content strong em,
.editor-content em b,
.editor-content em strong {
}

.editor-content img {
	display:block;
	margin:0 auto;
	width:100%;
	max-width:760px;
	border-radius:4px;
}

/* ------------------------- */
/* 3. Header
/* ------------------------- */

.main-header {
	position:fixed;
	top:0;
	left:0;
	right:0;
	/*padding:20px 0;*/
	font-size:1rem;
	background-color:#fff;
	border-bottom:1px #eee solid;
	z-index:100;
}

.main-header .header-logo {
	padding:20px 0;
}

.main-header .header-logo img {
	max-height:25px;
}

.main-header .header-menu {
	text-align:right;
}

.main-header .header-menu > ul > li + li {
	margin:0 0 0 35px;
}

.main-header .header-menu > ul > li {
	position:relative;
	padding:20px 0;
}

.main-header .header-menu ul li a {
	font-family:'Nunito Bold', sans-serif;
	font-size:1.0625em;
	text-transform:uppercase;
	letter-spacing:1px;
	/*text-shadow: 1px 1px 0 rgba(0, 0, 0, .25);*/
	color:#000;
	border-bottom:2px transparent solid;
	transition:border-bottom 0.3s ease;
}

.main-header .header-menu ul li a:hover,
.main-header .header-menu ul li a.is-current {
	border-bottom-color:#000;
}

.main-header .header-menu ul li:hover ul {
	display:block;
}

.main-header .header-menu ul li ul {
	display:none;
	position:absolute;
	top:calc(100% + -10px);
	left:50%;
	width:200px;
	padding:20px;
	text-align:center;
	transform:translate(-50%, 0);
	border:1px #eee solid;
	background-color:#fff;
	z-index:10;
}

.main-header .header-menu ul li ul li + li {
	margin:8px 0 0;
}

/* ------------------------- */
/* 4. Content
/* ------------------------- */

.main {
	padding:65px 0 0;
	min-height:666px;
	font-size:1rem;
}

.module-images.is-two_vert-x-one .col-6,
.module-images.is-one-x-one .col {
	padding:0 20px 0 0;
}

.module-images.is-two_vert-x-one .col-6 + .col-6,
.module-images.is-one-x-one .col + .col {
	padding:0 0 0 20px;
}

.module-images.is-one-x-one-x-one {
	margin:0 -20px;
}

.module-images.is-one-x-one-x-one .col {
	padding:0 20px;
}

.module-images.padding-bottom {
	padding-bottom:120px;
}

.module-images.padding-top {
	padding-top:120px;
}

.module-images .image-wrapper {
	position:relative;
}

.module-images .image-wrapper.is-full-height {
	height:calc(100vh - 65px);
}

.module-images .image-wrapper.is-semifull-height {
	height:80vh;
}

.module-images .image-wrapper.is-semihalf-height {
	height:40vh;
}

.module-images .image-wrapper.is-semihalf-height.margin-top {
	height:calc(40vh - 20px);
	margin-top:20px;
}

.module-images .image-wrapper.is-semihalf-height.margin-bottom {
	height:calc(40vh - 20px);
	margin-bottom:20px;
}

.module-images .image-wrapper.is-thumbnail {
	height:calc(35vh - 40px);
	margin-bottom:40px;
}

.module-images .image {
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	border-radius:4px;
	background-position:center;
	background-size:cover;
	z-index:1;
}

.module-images .image.no-border-radius {
	border-radius:0;
}

.module-images .image.is-fixed {
	background-attachment:fixed;
}

.module-images .image::after {
	content:"";
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	/*background-color:rgba(0, 0, 0, .2);*/
	background-color:rgba(241, 206, 0, .05);
	z-index:2;
}

.module-images .image-caption {
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	text-align:center;
	color:#fff;
	z-index:10;
	text-shadow:1px 1px 0 rgba(0, 0, 0, .25);
}

.module-images .image-caption .caption-header {
	margin:50px 0 0;
}

.module-images .image-caption .caption-lead {
	font-family:'Roboto Bold', sans-serif;
	font-size:0.9375em;
	letter-spacing:2px;
	text-transform:uppercase;
}

.module-images .image-caption .caption-title {
	margin:10px 0 0;
	font-family:'Libre Baskerville', serif;
	font-size:4em;
}

.module-images .image-caption .caption-quote {
	font-family:'Libre Baskerville Italic', serif;
	font-size:3em;
}

.module-images .google-maps {
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
}

.margin-bottom-30 {
	margin-bottom:30px;
}

.module-content {
	padding:120px 0;
}

.module-content.no-padding-bottom {
	padding:120px 0 0;
}

.module-content.no-padding-top {
	padding:0 0 120px;
}

.module-content.is-grid:nth-child(even) {
	padding-right:20px;
	clear:both;
}

.module-content.is-grid:nth-child(odd) {
	padding-left:20px;
}

.module-content > .col {
	padding:0 20px 0 0;
}

.module-content > .col + .col {
	padding:0 0 0 20px;
}

.module-content .content-lead {
	margin:0 0 10px;
	font-family:'Roboto Bold', sans-serif;
	font-size:0.9375em;
	letter-spacing:2px;
	text-transform:uppercase;
}

.module-content .content-title {
	font-family:'Libre Baskerville', serif;
	font-size:2.25em;
}

.module-content .content-title-2 {
	margin:0 0 5px;
	font-family:'Libre Baskerville Bold', serif;
	font-size:1.125em;
	text-transform:uppercase;
}

.module-content .content-title a {
	color:inherit;
}

.module-content .content-text,
.module-content .section-text {
	max-width:1000px;
	font-family:'Libre Baskerville', serif;
	font-size:1.125em;
	line-height:1.65em;
	color:#545454;
}

.module-content .content-text {
	margin:40px 0 0;
}

.module-content .content-text.is-full {
	max-width:100%;
}

.module-content .content-text.is-single {
	margin:0;
}

.module-content .content-video {
	margin:40px auto 0;
}

.module-content-2 {
	padding:90px 0 0;
}

.module-content .content-section {
	line-height:1.65em;
}

.module-content .content-section + .content-section {
	margin:45px 0 0;
}

.module-content .content-button,
.module-slideshow .slideshow-button {
	display:inline-block;
	padding:12px 30px;
	font-family:'Nunito Bold', sans-serif;
	font-size:0.875em;
	letter-spacing:2px;
	text-transform:uppercase;
	color:#fff;
	background-color:#849829;
	transition:background-color 0.3s ease;
}

.module-content .content-button.margin-top,
.module-slideshow .slideshow-button.margin-top {
	margin-top:20px;
}

.module-content .content-button:hover,
.module-slideshow .slideshow-button:hover {
	background-color:#000;
}

.module-content .content-col {
	padding:0 50px 0 0;
}

.module-content .content-col + .content-col {
	padding:0 0 0 50px;
}

.module-slideshow {}

.module-slideshow .slideshow-item {
	display:flex;
	position:relative;
	padding:120px 100px;
	min-height:60vh;
}

.module-slideshow .slideshow-image,
.module-slideshow .slideshow-image:after {
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
}

.module-slideshow .slideshow-image {
	background-position:center;
	background-size:cover;
	z-index:1;
}

.module-slideshow .slideshow-image:after {
	content:"";
	background-color:rgba(0, 0, 0, .25);
	z-index:2;
}

.module-slideshow .slideshow-caption {
	display:flex;
	flex-direction:column;
	align-self:flex-end;
	position:relative;
	z-index:10;
}

.module-slideshow .slideshow-title {
	font-family:'Libre Baskerville', serif;
	font-size:2.75em;
	text-shadow:1px 1px 1px rgba(0, 0, 0, .5);
	color:#fff;
}

.module-slideshow .slideshow-title a {
	color:inherit;
}

.module-slideshow .slideshow-button {
	align-self:flex-start;
}

.module-slideshow .slick-dots {
	position:absolute;
	bottom:50px;
	left:0;
	right:0;
	text-align:center;
}

.module-slideshow .slick-dots li {
	display:inline-block;
	padding:0 5px;
}

.module-slideshow .slick-dots li button {
	display:block;
	width:15px;
	height:15px;
	font-size:0;
	line-height:0;
	cursor:pointer;
	color:transparent;
	background-color:#fff;
	border:0;
	outline:none;
	transition:background-color .3s ease;
}

.module-slideshow .slick-dots li.slick-active button,
.module-slideshow .slick-dots li button:hover {
	background-color:#849829;
}

.module-list-wrapper {
	margin:0 -20px;
}

.module-list {
	margin:100px 0;
}

.module-list + .module-list {
	margin:0 0 100px;
}

.module-list .list-title,
.module-list .list-item {
	padding:0 20px;
}

.module-list .list-title {
	margin-bottom:40px;
	font-family:'Libre Baskerville', serif;
	font-size:2.25em;
}

.module-list .list-item img {
	border-radius:4px;
}

.module-list.is-full .list-item:nth-child(3n + 4) {
	clear:both;
}

.module-list.is-full .list-item:nth-child(n + 4) {
	margin:60px 0 0;
}

.module-list.is-in-column .list-item:nth-child(2n + 3) {
	clear:both;
}

.module-list.is-in-column .list-item:nth-child(n + 3) {
	margin:60px 0 0;
}

.module-list .list-item .item-border {
	border:1px #eee solid;
	transition:border 0.3s ease;
}

.module-list .list-item a:hover .item-border {
	border:1px #000 solid;
}

.module-list .list-item .item-content {
	margin:20px 0 0;
	font-family:'Libre Baskerville', serif;
}

.module-list .list-item .item-title {
	font-size:1.375em;
}

.module-list .list-item .item-lead {
	color:#545454;
	font-size:1em;
	line-height:1.65em;
}

.module-form {
	font-family:'Libre Baskerville', serif;
	/*color:#545454;*/
}

.module-form.margin-top {
	margin-top:90px;
}

.module-form .form-row + .form-row {
	margin:30px 0 0;
}

.module-form .form-row .form-col {
	padding:0 15px 0 0;
}

.module-form .form-row .form-col + .form-col {
	padding:0 0 0 15px;
}

.module-form .form-label {
	display:block;
	margin:0 0 10px;
}

.module-form .form-input {
	padding:0 10px;
	width:100%;
	height:35px;
	line-height:35px;
	font-size:0.875em;
	border:1px #ccc solid;
	color:#545454;
	transition:border 0.3s ease;
}

.module-form .form-input.error {
	border-color:#f00;
}

.module-form .form-submit {
	margin:45px 0 0;
}

.module-form .form-submit input {
	padding:15px 30px;
	font-family:'Nunito Bold', sans-serif;
	font-size:0.875em;
	letter-spacing:2px;
	text-transform:uppercase;
	color:#fff;
	background-color:#849829;
	border:none;
	cursor:pointer;
	transition:background-color 0.3s ease;
}

.module-form .form-submit input:hover {
	background-color:#000;
}

.notification {
	position:fixed;
	bottom:0;
	left:0;
	right:0;
	padding:25px 0;
	font-family:'Libre Baskerville', serif;
	font-size:1.125em;
	text-align:center;
	color:#fff;
	z-index:100;
	transform:translate(0, 100%);
	transition:transform 0.8s ease;
}

.notification.success {
	background-color:#849829;
}

.notification.is-active {
	transform:translate(0, 0);
}

/* ------------------------- */
/* 5. Footer
/* ------------------------- */

.main-footer {
	padding:100px 0 30px;
	font-family:'Libre Baskerville', serif;
	font-size:1rem;
	color:#545454;
}

.main-footer .footer-logo {
	text-align:center;
}

.main-footer .footer-logo img {
	max-width:100px;
}

.main-footer .footer-bar {
	margin:60px 0 0;
	text-align:center;
}

.main-footer .footer-social li {
	margin:0 5px;
}

.main-footer .footer-social li a {
	color:#545454;
	border-bottom:1px transparent solid;
	transition:color 0.3s ease, border-bottom 0.3s ease;
}

.main-footer .footer-social li a:hover {
	color:#000;
	border-bottom-color:#000;
}

.main-footer .footer-copyrights {
	margin:60px 0 0;
	font-size:0.875em;
}

/* ------------------------- */
/* 6. Overwrites 
/* ------------------------- */

/* ------------------------- */
/* 7. Mobile only 
/* ------------------------- */

.mobile .module-images .image.is-fixed {
	background-attachment:scroll;
}

/* ------------------------- */
/* 8. Make responsive 
/* ------------------------- */

@media all and (max-width: 1279px) {
	.wrapper {
		padding:0 60px;
	}

	.main-header .header-menu ul li + li {
		margin:0 0 0 30px;
	}

	.module-images.padding-bottom {
		padding-bottom:80px;
	}

	.module-images.padding-top {
		padding-top:80px;
	}

	.module-images.is-two_vert-x-one .col-6,
	.module-images.is-one-x-one .col {
		padding:0 15px 0 0;
	}

	.module-images.is-two_vert-x-one .col-6 + .col-6,
	.module-images.is-one-x-one .col + .col {
		padding:0 0 0 15px;
	}

	.module-images.is-one-x-one-x-one {
		margin:0 -15px;
	}

	.module-images.is-one-x-one-x-one .col {
		padding:0 15px;
	}

	.module-images .image-wrapper.is-semihalf-height.margin-top {
		height:calc(40vh - 15px);
		margin-top:15px;
	}

	.module-images .image-wrapper.is-semihalf-height.margin-bottom {
		height:calc(40vh - 15px);
		margin-bottom:15px;
	}

	.module-content {
		padding:80px 0;
	}

	.module-content.no-padding-bottom {
		padding:80px 0 0;
	}

	.module-content.is-grid:nth-child(even) {
		padding-right:0;
	}

	.module-content.is-grid:nth-child(odd) {
		padding-left:0;
	}

	.module-content .content-col {
		padding:0 30px 0 0;
	}

	.module-content .content-col + .content-col {
		padding:0 0 0 30px;
	}

	.module-slideshow .slideshow-item {
		padding:120px 60px;
	}

	/*.module-list-wrapper {
		margin:0 -15px;
	}*/

	.module-list {
		margin:80px 0;
	}

	.module-list + .module-list {
		margin:0 0 80px;
	}

	/*.module-list .list-title,
	.module-list .list-item {
		padding:0 15px;
	}*/

	.module-list .list-item .item-content {
		margin:15px 0 0;
	}

	.main-footer {
		padding:60px 0 30px;
	}
}

@media all and (max-width: 1023px) {
	.wrapper {
		padding:0 45px;
	}

	.main-header .header-logo {
		padding:20px 0 0;
		text-align:center;
	}

	.main-header .header-menu {
		margin:30px 0 0;
		text-align:center;
	}

	.main {
		padding:139px 0 0;
		font-size:0.9375rem;
	}

	.module-images.padding-bottom {
		padding-bottom:60px;
	}

	.module-images.padding-top {
		padding-top:60px;
	}

	.module-images.is-two_vert-x-one .col-6,
	.module-images.is-one-x-one .col {
		padding:0;
	}

	.module-images.is-two_vert-x-one .col-6 + .col-6,
	.module-images.is-one-x-one .col + .col {
		padding:30px 0 0;
	}

	.module-images.is-one-x-one-x-one .col:nth-child(3) {
		padding:30px 15px 0;
	}

	.module-images .image-wrapper.is-full-height {
		height:calc(100vh - 120px);
	}

	.module-images .image-wrapper.is-semifull-height {
		height:60vh;
	}

	.module-images .image-caption .caption-title {
		font-size:3.625em;
	}

	.module-content {
		padding:60px 0;
	}

	.module-content.no-padding-bottom {
		padding:60px 0 0;
	}

	.module-content > .col,
	.module-content > .col + .col {
		padding:0;
	}

	.module-content .content-text.is-single {
		margin:40px 0 0;
	}

	.module-content .content-col {
		padding:0;
	}

	.module-content .content-col + .content-col {
		padding:90px 0 0;
	}

	.module-content-2 {
		padding:60px 0 0;
	}

	.module-slideshow .slideshow-item {
		padding:120px 45px 100px;
	}

	.module-slideshow .slick-dots {
		bottom:45px;
	}

	.module-list.is-full .list-item:nth-child(3n + 4) {
		clear:none;
	}

	.module-list.is-full .list-item:nth-child(2n + 3) {
		clear:both;
	}

	.module-list.is-full .list-item:nth-child(n + 3),
	.module-list.is-full .list-item:nth-child(n + 4) {
		margin:45px 0 0;
	}

	.module-form .form-submit {
		margin:30px 0 0;
	}
}

@media all and (max-width: 767px) {
	.wrapper {
		padding:0 25px;
	}

	.main-header {
		position:static;
		font-size:0.9375rem;
	}

	.main-header .header-menu ul li + li {
		margin:0 10px;
	}

	.main {
		padding:0;
		font-size:0.8125rem;
	}

	.module-images.is-two_vert-x-one .col-6 + .col-6,
	.module-images.is-one-x-one .col + .col {
		padding:20px 0 0;
	}

	.module-images.is-one-x-one-x-one .col {
		padding:0 10px;
	}

	.module-images.is-one-x-one-x-one .col:nth-child(3) {
		padding:20px 10px 0;
	}

	.module-images.padding-bottom {
		padding-bottom:30px;
	}

	.module-images.padding-top {
		padding-top:30px;
	}

	.module-images .image-wrapper.is-full-header {
		height:100%;
	}

	.module-images .image-wrapper.is-full-header .image-caption {
		position:relative;
		padding:60px 0;
	}

	.module-images .image-wrapper.is-semi-header {
		height:150px;
	}

	.module-images .image-wrapper.is-semihalf-height {
		height:50vh;
	}

	.module-images .image-wrapper.is-semihalf-height.margin-top {
		height:calc(50vh - 10px);
		margin-top:10px;
	}

	.module-images .image-wrapper.is-semihalf-height.margin-bottom {
		height:calc(50vh - 10px);
		margin-bottom:10px;
	}

	.module-images .image-caption .caption-quote {
		font-size:2.25em;
	}

	.module-images .image-caption .caption-title {
		font-size:3.25em;
	}

	.module-images .image-caption img {
		max-width:70px;
	}

	.module-content {
		padding:30px 0;
	}

	.module-content.no-padding-bottom {
		padding:30px 0 0;
	}

	.module-content .content-text,
	.module-content .content-text.is-single {
		margin:20px 0 0;
	}

	.module-content .content-video {
		margin:30px auto 0;
	}

	.module-slideshow .slideshow-title,
	.module-content .content-title {
		font-size:2em;
	}

	.module-slideshow .slideshow-item {
		padding:120px 20px 40px;
	}

	.module-slideshow .slick-dots {
		display:none;
		/*bottom:30px;*/
	}

	.module-list {
		margin:30px 0;
	}

	.module-list + .module-list {
		margin:0 0 30px;
	}

	.module-list .list-title {
		margin-bottom:20px;
	}

	.module-list .list-item .item-content {
		margin:10px 0 0;
	}

	.main-footer {
		padding:45px 0 30px;
		font-size:0.9375rem;
	}

	.main-footer .footer-bar,
	.main-footer .footer-copyrights {
		margin:30px 0 0;
	}
}

@media all and (max-width: 567px) {
	.wrapper {
		padding:0 20px;
	}

	.main-header .header-menu {
		margin:20px 0;
	}

	.main-header .header-menu ul li {
		padding:5px 0 0;
	}

	.main-header .header-menu ul li + li {
		margin:0 6px;
	}

	.main-header .header-menu ul li ul {
		padding:15px 20px;
		top:100%;
	}

	.module-images.padding-bottom {
		padding-bottom:25px;
	}

	.module-images.padding-top {
		padding-top:25px;
	}

	.module-images.is-one-x-one-x-one .col {
		padding:0 15px;
	}

	.module-images.is-one-x-one-x-one .col + .col {
		padding:20px 15px 0;
	}

	.module-images .image-wrapper.is-full-header .image-caption {
		position:relative;
		padding:40px 0;
	}

	.module-images .image-caption .caption-title {
		font-size:3em;
	}

	/*.module-content {
		padding:25px 0;
	}

	.module-content.no-padding-bottom {
		padding:25px 0 0;
	}

	.module-content .content-video {
		margin:25px auto 0;
	}

	.module-content-2 {
		padding:25px 0 0;
	}*/

	.module-form .form-row .form-col {
		padding:0 10px 0 0;
	}

	.module-form .form-row .form-col + .form-col {
		padding:0 0 0 10px;
	}

	/*.module-list-wrapper {
		margin:0 -10px;
	}*/

	.module-list.is-full .list-item:nth-child(n + 3),
	.module-list.is-full .list-item:nth-child(n + 4) {
		margin:30px 0 0;
	}
}

@media all and (max-width: 479px) {
	.main-header .header-menu ul li + li {
		margin:0 5px;
	}

	.module-images .image-caption .caption-quote {
		font-size:1.75em;
	}

	.module-list.is-full .list-item:nth-child(n + 2),
	.module-list.is-in-column .list-item:nth-child(n + 2),
	.module-list.is-in-column .list-item:nth-child(n + 3) {
		margin:30px 0 0;
	}

	.main-footer .footer-social li {
		width:100%;
		margin:0;
	}

	.main-footer .footer-social li + li {
		margin:10px 0 0;
	}
}