
/* -------------------------------------------------------------- */
/* FONTS */
/* -------------------------------------------------------------- */

/* Cardinal Fruit - Regular */
@font-face {
	font-family: 'Cardinal Fruit';
	src: url('/fonts/CardinalFruit.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

/* Cardinal Fruit - Italic */
@font-face {
	font-family: 'Cardinal Fruit';
	src: url('/fonts/CardinalFruit-Italic.ttf') format('truetype');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

/* Cardinal Fruit - Bold */
@font-face {
	font-family: 'Cardinal Fruit';
	src: url('/fonts/CardinalFruit-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* Sukhumvit Set - Regular */
@font-face {
	font-family: 'Sukhumvit Set';
	src: url('/fonts/SukhumvitSet.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

/* -------------------------------------------------------------- */
/* VARIABLES */
/* -------------------------------------------------------------- */

:root {
	--main-bg: #faf8f6;
	--main-bg-rgb: 250, 248, 246;
	--main-darker: #f5f3f1;
	--max-width: 1300px;
}

/* -------------------------------------------------------------- */
/* RESET */
/* -------------------------------------------------------------- */

hr,img{border:0}a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font-size:100%;vertical-align:baseline}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}caption,td,th{font-weight:400;text-align:left}.group:after,h1,h2,h3,h4,h5,h6{clear:both}html{overflow-y:scroll;font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}a:focus{outline:dotted thin}article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none}del{color:#333}ins{background:#fff9c0;text-decoration:none}hr{background-color:#ccc;height:1px;margin:24px 24px 1.714285714rem}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}small{font-size:smaller}img{-ms-interpolation-mode:bicubic}.group:after,.group:before{content:"";display:table}

html, body { height: 100%; }

/* -------------------------------------------------------------- */
/* GENERAL */
/* -------------------------------------------------------------- */

body {
	font-family: 'Sukhumvit Set', monospace;
	font-size: 15px;
	color: #000;
	background: var(--main-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin: 0;
	padding: 0 30px;
}

p {
	line-height: 22px;
	margin: 0 0 25px;
}

p a { text-decoration: underline; }
p a:hover { background-color: var(--main-darker); }

a { text-decoration: none; color: #1d1d1d; }
a:hover { text-decoration: none; }
a, a:visited, a:hover, a:focus, a:active { outline: none; }

h1, h2 {
	font-family: 'Cardinal Fruit', serif;
	font-weight: 400;
	font-size: 36px;
	text-transform: uppercase;
	padding: 20px 0 50px;
	text-align: center;
	letter-spacing: 1px;
}

h1 {
	line-height: 46px;
}

.small-italic {
	text-transform: lowercase;
	font-style: italic;
	letter-spacing: 0;
}

.content-wrapper {
	margin: 100px auto 0;
	width: 100%;
	max-width: var(--max-width);
}

.content-wrapper--wide {
	max-width: 1500px;
}

#content-wrapper-no-margin {
	margin: 0 auto;
}

.see-more-link-line {
	margin: 20px;
	width: 100%;
	clear: both;
	text-align: center;
}

.see-more-link-line a {
	font-family: 'Cardinal Fruit', serif;
	font-weight: 400;
	font-size: 24px;
	text-transform: lowercase;
	font-style: italic;
	letter-spacing: 0;
	text-decoration: none;
	line-height: 36px;
}

/* -------------------------------------------------------------- */
/* BUTTONS */
/* -------------------------------------------------------------- */

a.button,
button,
input[type=submit] {
	font-family: 'Sukhumvit Set', monospace;
	font-weight: 600;
	font-size: 10px;
	font-style: normal;
	line-height: 47px;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 0 28px;
	margin: 5px 10px 5px 0;
	color: #fff;
	outline: 0;
	border: none;
	cursor: pointer;
	display: inline-block;
	text-decoration: none;
	background-color: #3a2e28;
}

a.button:hover,
button:hover,
input[type=submit]:hover {
	background-color: #55443b;
	text-decoration: none;
}

/* override underline from p a rule */
p a.button,
p a.button:hover {
	text-decoration: none;
}

a.button[disabled] {
	opacity: 0.35;
	cursor: not-allowed;
	pointer-events: none;
}

p.button-line {
	clear: both;
	padding-top: 30px;
}

/* -------------------------------------------------------------- */
/* HEADER */
/* -------------------------------------------------------------- */

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 70px;
	margin: 0;
	z-index: 1000;
	transition: background 0.15s linear;
	background: rgba(250, 248, 246, 0);
	padding: 0 30px;
	box-sizing: border-box;
}

#header-wrapper {
	margin: 0 auto;
	width: 100%;
	max-width: var(--max-width);
}

#nav-wrapper {
	width: 64%;
}

@media screen and (max-width: 950px) {
	#nav-wrapper {
		width: 100%;
	}
}

#desktop-nav ul,
#mobile-nav ul {
	float: right;
	list-style: none;
	margin: 0;
	padding: 0;
}

#mobile-nav {
	position: absolute;
	top: 70px;
	left: 0;
	width: 100%;
	background: var(--main-bg);
}

#desktop-nav ul li {
	float: left;
}

#desktop-nav ul li a,
#openNav {
	font-family: 'Sukhumvit Set', monospace;
	display: block;
	padding: 0 10px;
	text-align: right;
	font-size: 12px;
	line-height: 70px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

#mobile-nav ul li a {
	font-family: 'Sukhumvit Set', monospace;
	display: block;
	padding: 0 50px 0 30px;
	text-align: right;
	font-size: 12px;
	line-height: 50px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

#desktop-nav ul li a:hover,
#mobile-nav ul li a:hover {
	background-color: var(--main-darker);
}

#mobile-nav,
#openNav {
	display: none;
}

#moreMenu {
	position: relative;
}

#submenuItems {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 1000;
	background: var(--main-bg);
}

#submenuItems li a {
	line-height: 40px !important;
	padding: 0 20px !important;
}

#submenuItems li {
	width: 100% !important;
	float: right !important;
}

.instaMenu {
	white-space: nowrap;
}

.instaMenu img {
	padding-left: 5px;
	position: relative;
	top: 1px;
}

.down-arrow {
	display: inline-block;
	width: 10px;
	height: 6px;
	margin-left: 6px;
	transition: transform 0.15s ease;
	vertical-align: middle;
}

.down-arrow svg {
	display: block;
	width: 100%;
	height: 100%;
}

#moreMenu.open .down-arrow,
#openNav.open .down-arrow {
	transform: rotate(180deg);
}

@media screen and (max-width: 600px) {
	#desktop-nav {
		display: none;
	}

	#openNav {
		display: block;
	}

	#mobile-nav {
		display: none;
		overflow: hidden;
	}
}

#nav-logo {
	float: left;
	line-height: 60px;
	vertical-align: middle;
}

#nav-logo img {
	display: inline-block;
	margin: 0;
	padding-top: 15px;
}

.menu-arrow {
	font-family: 'Sukhumvit Set', monospace;
	font-size: 8px;
	display: inline-block;
	margin-bottom: 20px;
}

/* -------------------------------------------------------------- */
/* FOOTER */
/* -------------------------------------------------------------- */

footer {
	margin: 0;
	padding: 50px 10%;
	text-align: center;
	clear: both;
}

#footer-logo {
	display: inline-block;
	padding: 10px 0 20px;
	margin-bottom: 20px;
}

#footer-destinations {
	font-family: 'Sukhumvit Set', monospace;
	font-size: 12px;
	line-height: 20px;
	letter-spacing: 1px;
}

#footer-destinations a {
	text-decoration: none;
	color: #000;
}

#footer-copyright {
	text-transform: uppercase;
	display: block;
	font-size: 9px;
	padding: 0 30px;
	letter-spacing: 0.5px;
}

#footer-insta {
	display: inline-block;
	padding: 20px 0;
}

/* -------------------------------------------------------------- */
/* INTRO */
/* -------------------------------------------------------------- */

#preload-intro {
	display: none;
}

#section-intro {
	padding-bottom: 60px;
}

#section-intro.mobileMode {
	margin-top: 80px;
}

.mobileTwoPhotos div {
	width: 50% !important;
	float: left;
	display: block;
	box-sizing: border-box;
}

.mobileTwoPhotos div:nth-child(1) {
	padding-right: 8px;
	padding-top: 30px;
}

.mobileTwoPhotos div:nth-child(2) {
	padding-left: 8px;
}

#element-1-h2 h2 {
	font-size: 42px;
	line-height: 46px;
	text-align: left !important;
	padding-top: 30px;
}

#section-intro.mobileMode #element-1-h2 h2 {
	font-size: 48px;
	padding-left: 20px;
	padding-bottom: 15px;
}

#element-2-subtext {
	text-transform: uppercase;
	margin: 40px 0 70px;
	padding-right: 20px;
	clear: left;
}

#section-intro.mobileMode #element-2-subtext {
	margin: 0;
}

#section-intro.mobileMode #element-2-subtext p {
	font-size: 18px;
	line-height: 28px;
	padding-top: 30px;
	letter-spacing: 1px;
}

.photo-element img {
	width: 100%;
	height: auto;
	margin-bottom: 12px;
	display: block;
}

.introColumn-3 img {
	margin-bottom: 20px;
}

.introColumn-2 {
	width: 50%;
	float: left;
	box-sizing: border-box;
}

.introColumn-2.columnNumber-0 { padding-right: 6px; margin-top: 80px; }
.introColumn-2.columnNumber-1 { padding-left: 6px; margin-top: 80px; }

#section-intro.mobileMode .introColumn-2.columnNumber-0 { margin-top: 20px; }
#section-intro.mobileMode .introColumn-2.columnNumber-1 { margin-top: 40px; }

.introColumn-3 {
	width: 33%;
	float: left;
	box-sizing: border-box;
}

.introColumn-3.columnNumber-0 { padding-right: 10px; margin-top: 80px; }
.introColumn-3.columnNumber-1 { padding-right: 10px; padding-left: 10px; margin-top: 80px; }
.introColumn-3.columnNumber-2 { padding-left: 10px; }

/* -------------------------------------------------------------- */
/* COOKIES */
/* -------------------------------------------------------------- */

#cookies-info {
	position: fixed;
	bottom: 0;
	width: 100%;
	border-top: 1px solid #d4d4d1;
	background-color: white;
}

#cookies-info p {
	margin: 0;
	padding: 10px;
	text-align: center;
}

#cookies-info a.button {
	margin: 0 20px;
	padding: 0 15px;
	line-height: 28px;
}

/* -------------------------------------------------------------- */
/* SECTIONS */
/* -------------------------------------------------------------- */

.general-text-wrapper {
	text-align: center;
	box-sizing: border-box;
	padding: 50px;
	max-width: 850px;
	margin: 0 auto;
}

/* -------------------------------------------------------------- */
/* BLOG THUMBNAILS */
/* -------------------------------------------------------------- */

.blog-posts-grid {
	display: flex;
	flex-wrap: wrap;
}

.post-thumbnail-link {
	flex: 0 0 33.333%;
}

@media (max-width: 800px) {
	.post-thumbnail-link {
		flex: 0 0 50%;
	}
}

@media (max-width: 500px) {
	.post-thumbnail-link {
		flex: 0 0 100%;
	}
}

#section-blog-single {
	margin: 0 auto;
}

a.post-thumbnail-link {
	box-sizing: border-box;
	padding: 20px 3%;
	margin: 0;
	color: black;
	float: left;
	text-align: left;
	overflow: hidden;
}

.post-thumbnail-img {
	max-width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.post-thumbnail img {
	max-width: 100%;
	height: auto;
}

.post-thumbnail-text {
	display: block;
	width: 100%;
	text-align: center;
}

.post-thumbnail .post-names {
	font-size: 14px;
	text-transform: none;
	font-style: italic;
	font-weight: normal;
}

.post-thumbnail h3 {
	font-family: 'Sukhumvit Set', monospace;
	font-weight: 400;
	padding: 5px 0 15px;
	font-size: 14px;
	line-height: 20px;
	text-transform: uppercase;
	box-sizing: border-box;
}

.post-thumbnail p {
	font-size: 14px;
	line-height: 20px;
}

/* -------------------------------------------------------------- */
/* WEDDINGS LISTING */
/* -------------------------------------------------------------- */

.weddings-listing-page {
	padding-top: 40px;
	padding-bottom: 70px;
}

.weddings-listing-title {
	margin: 0 0 36px;
	text-align: center;
}

.weddings-grid {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -22px;
}

.wedding-card-link {
	width: 33.333%;
	padding: 0 22px 60px;
	box-sizing: border-box;
	color: black;
	text-decoration: none;
	display: block;
}

.wedding-card {
	display: block;
}

.wedding-card-number {
	font-family: 'Cardinal Fruit', serif;
	font-size: 22px;
	line-height: 26px;
	letter-spacing: 0;
	word-spacing: 8px;
	margin-bottom: 12px;
	text-align: right;
}

.wedding-card-image-wrap {
	overflow: hidden;
	background-color: #f4f1eb;
}

.wedding-card-image {
	display: block;
	width: 100%;
	height: auto;
}

.wedding-card-caption {
	margin: 14px 0 0;
}

.wedding-card-title,
.wedding-card-separator,
.wedding-card-subtitle {
	font-family: 'Cardinal Fruit', serif;
	font-size: 22px;
	line-height: 1.12;
	font-weight: 400;
}

.wedding-card-title {
	font-style: italic;
	text-transform: none;
}

.wedding-card-separator {
	margin: 0 8px;
}

.wedding-card-subtitle {
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}

.wedding-card-link:hover .wedding-card-image {
	transform: scale(1.015);
	transition: transform 0.5s ease;
}

@media screen and (min-width: 951px) {
	.wedding-card-link--desktop-hidden {
		display: none;
	}
}

@media screen and (max-width: 950px) {
	.wedding-card-link {
		width: 50%;
		padding-bottom: 44px;
	}
}

@media screen and (max-width: 600px) {
	.weddings-listing-page {
		padding-top: 20px;
	}

	.weddings-grid {
		margin: 0 -12px;
	}

	.wedding-card-link {
		padding: 0 12px 34px;
	}

	.wedding-card-number {
		margin-bottom: 10px;
		font-size: 18px;
		line-height: 22px;
	}

	.wedding-card-caption {
		margin-top: 10px;
	}

	.wedding-card-title,
	.wedding-card-separator,
	.wedding-card-subtitle {
		font-size: 18px;
		line-height: 1.1;
	}
}

/* -------------------------------------------------------------- */
/* WEDDING SINGLE */
/* -------------------------------------------------------------- */

.wedding-single-page {
	padding-top: 36px;
	padding-bottom: 70px;
}

.wedding-back-link {
	margin-bottom: 28px;
}

.wedding-single-intro {
	display: grid;
	grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr) minmax(0, 1.1fr);
	grid-template-areas: "credits content image";
	column-gap: 36px;
	align-items: start;
	margin-bottom: 54px;
}

.wedding-single-image-column {
	order: 3;
	grid-area: image;
}

.wedding-single-content-column {
	grid-area: content;
}

.wedding-single-credits-column {
	order: 1;
	grid-area: credits;
	padding-top: 0;
	text-align: right;
	margin-top: 0;
}

.wedding-single-cover {
	display: block;
	width: 100%;
	height: auto;
}

.wedding-single-heading {
	display: block;
	width: 100%;
	min-width: 0;
	margin-bottom: 10px;
	margin-top: 0;
	line-height: 1.22;
	text-align: left;
	text-transform: none;
}

.wedding-single-title,
.wedding-single-separator,
.wedding-single-subtitle {
	display: inline;
}

.wedding-single-title {
	margin-right: 6px;
	font-style: italic;
}

.wedding-single-separator {
	margin-right: 8px;
	font-weight: 400;
	opacity: 0.65;
}

.wedding-single-subtitle {
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	letter-spacing: 0.8px;
	text-transform: uppercase;
}

.wedding-single-text p {
	margin-top: 0;
	margin-bottom: 16px;
}

.wedding-single-credits-column h2 {
	margin: 0 0 14px;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.wedding-credits-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.wedding-credits-list li {
	margin-bottom: 12px;
	line-height: 20px;
}

.wedding-credits-list a {
	font-family: 'Cardinal Fruit', serif;
	font-style: italic;
	font-size: 20px;
	line-height: 1.1;
}

.wedding-credit-type {
	display: block;
	font-size: 11px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #7a7a73;
}

.wedding-single-gallery {
	padding-top: 10px;
}

.wedding-single-pagination {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	padding-top: 34px;
	margin-top: 24px;
	border-top: 1px solid #d4d4d1;
}

.wedding-pagination-link {
	display: block;
	width: 50%;
	color: black;
	text-decoration: none;
}

.wedding-pagination-next {
	text-align: right;
}

.wedding-pagination-label {
	display: block;
	font-size: 11px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #7a7a73;
	margin-bottom: 6px;
}

.wedding-pagination-title {
	display: block;
	font-size: 16px;
	line-height: 22px;
	text-transform: uppercase;
	letter-spacing: 0.8px;
}

@media screen and (max-width: 950px) {
	.wedding-single-intro {
		grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
		grid-template-areas:
			"content image"
			"credits image";
		column-gap: 26px;
	}

	.wedding-single-content-column {
		grid-area: content;
	}

	.wedding-single-image-column {
		order: 2;
		grid-area: image;
	}

	.wedding-single-credits-column {
		order: 1;
		grid-area: credits;
		padding-top: 0;
		text-align: left;
		margin-top: 20px;
	}
}

@media screen and (max-width: 600px) {
	.wedding-single-page {
		padding-top: 20px;
	}

	.wedding-single-intro {
		display: block;
		margin-bottom: 34px;
	}

	.wedding-single-image-column,
	.wedding-single-content-column,
	.wedding-single-credits-column {
		order: initial;
	}

	.wedding-single-image-column {
		margin-bottom: 24px;
	}

	.wedding-single-heading {
		margin-bottom: 18px;
		font-size: 28px;
		line-height: 1.18;
	}

	.wedding-single-separator {
		display: inline;
	}

	.wedding-single-subtitle {
		display: inline;
		margin-top: 0;
	}

	.wedding-single-credits-column {
		margin-top: 24px;
	}

	.wedding-single-pagination {
		display: block;
	}

	.wedding-pagination-link {
		display: block;
		width: 100%;
	}

	.wedding-pagination-next {
		text-align: left;
		margin-top: 20px;
	}
}

/* -------------------------------------------------------------- */
/* PORTFOLIO GALLERY — JS MASONRY COLUMNS */
/* -------------------------------------------------------------- */

#section-portfolio.photoColumns {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

[class^="photoColumn-"] {
	flex: 1;
	min-width: 0;
}

[class^="photoColumn-"] a {
	display: block;
	margin-bottom: 10px;
}

[class^="photoColumn-"] img {
	display: block;
	width: 100%;
	height: auto;
}

/* -------------------------------------------------------------- */
/* GALLERY OVERLAY */
/* -------------------------------------------------------------- */

#gallery-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1100;
	background: rgba(0, 0, 0, 0.95);
}

#gallery-overlay-photo-viewport {
	width: 100%;
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.gallery-overlay-button {
	position: absolute;
	z-index: 1000;
	color: white;
	text-decoration: none;
	font-size: 22px;
	padding: 20px;
	opacity: 0.6;
	transition: opacity 0.2s;
}

.gallery-overlay-button:hover {
	opacity: 1;
}

#gallery-button-x {
	top: 10px;
	right: 10px;
}

#gallery-button-next {
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}

#gallery-button-prev {
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
}

/* -------------------------------------------------------------- */
/* PORTFOLIO LANDING */
/* -------------------------------------------------------------- */

.portfolio-page {
	padding: 28px 8% 60px;
}

.portfolio-page-title {
	margin: 0 0 24px;
	text-align: center;
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 80px 70px;
}

.portfolio-card {
	display: block;
	color: black;
	text-decoration: none;
}

.portfolio-card-image-wrap {
	overflow: hidden;
	background-color: #f4f1eb;
}

.portfolio-card-image {
	display: block;
	width: 100%;
	height: auto;
}

.portfolio-card-title {
	margin: 10px 0 0;
	font-family: 'Cardinal Fruit', serif;
	font-size: 22px;
	line-height: 1.08;
	font-style: italic;
	text-align: left;
}

.portfolio-card:hover .portfolio-card-image {
	transform: scale(1.015);
	transition: transform 0.5s ease;
}

@media screen and (max-width: 700px) {
	.portfolio-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 26px;
	}

	.portfolio-card-title {
		font-size: 24px;
	}
}

/* -------------------------------------------------------------- */
/* LEARNING */
/* -------------------------------------------------------------- */

#section-learning {
	display: flex;
	align-items: flex-start;
	gap: 40px;
}

.learning-item {
	flex: 1;
	box-sizing: border-box;
	background-color: #edeae5;
	padding: 56px;
}

.learning-item h2 {
	font-size: 22px;
	margin: 0 0 24px;
	padding: 0 0 20px;
	text-align: left;
	border-bottom: 1px solid #c8c4be;
}

.learning-item h2 img {
	float: right;
	width: 25%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	margin: 10px 0 10px 20px;
}

.learning-item::after {
	content: '';
	display: block;
	clear: both;
}

.learning-text-english,
.learning-text-spanish {
	margin-bottom: 1em;
}

.learning-text-spanish {
	color: #777;
	font-style: italic;
}

@media (max-width: 850px) {
	#section-learning {
		flex-direction: column;
	}

	.learning-item {
		width: 100%;
	}
}

/* -------------------------------------------------------------- */
/* SEPARATOR LINE */
/* -------------------------------------------------------------- */

.separator-line {
	width: 100%;
	height: 1px;
	background: #e8e5e0;
	margin: 40px 0;
	clear: both;
	box-sizing: border-box;
}

/* -------------------------------------------------------------- */
/* PAGE SECTIONS */
/* -------------------------------------------------------------- */

.page-section {
	box-sizing: border-box;
	padding: 30px 10% 0;
	clear: both;
	width: 100%;
	overflow: hidden;
}

@media screen and (max-width: 900px) {
	.page-section { padding: 5%; }
}

.max-width-wider {
	max-width: 1500px;
	margin: 0 auto;
}

.background-color {
	background-color: var(--main-darker);
}

/* -------------------------------------------------------------- */
/* FAQ */
/* -------------------------------------------------------------- */

#section-destination-faq .left-column {
	width: 45%;
	float: left;
	padding-left: 5%;
}

#section-destination-faq .right-column {
	width: 40%;
	float: right;
	padding-right: 5%;
}

.faq-question {
	display: block;
	font-style: italic;
	padding-bottom: 20px;
	font-size: 24px;
	line-height: 30px;
}

@media screen and (max-width: 1200px) {
	#section-destination-faq .left-column,
	#section-destination-faq .right-column {
		width: 45%;
		padding: 0;
	}
}

@media screen and (max-width: 900px) {
	#section-destination-faq .left-column,
	#section-destination-faq .right-column {
		width: 80%;
		padding: 0 10%;
	}
}

/* -------------------------------------------------------------- */
/* ABOUT PAGE */
/* -------------------------------------------------------------- */

#section-about-us .text-box {
	float: left;
	width: 45%;
	padding-right: 5%;
}

#section-about-us .text-box h1 {
	text-align: left;
}

#section-about-us .image-box {
	float: right;
	width: 45%;
	margin-left: 5%;
}

#section-about-us .image-box img {
	width: 100%;
	padding: 20px 0;
}

#section-about-us .image-box p {
	width: 98%;
	padding: 0;
	box-sizing: border-box;
}

#section-about-us .yps-box {
	width: 100%;
	padding: 50px 0;
	clear: both;
}

#section-about-us .yps-box img {
	width: 48%;
	box-sizing: border-box;
}

#section-about-us .yps-box p {
	width: 98%;
	padding: 20px 0;
	box-sizing: border-box;
}

@media screen and (max-width: 750px) {
	#section-about-us .text-box,
	#section-about-us .image-box {
		box-sizing: border-box;
		width: 100%;
		padding: 0 10%;
	}

	#section-about-us .yps-box img,
	#section-about-us .yps-box p {
		width: 100%;
		padding: 5%;
	}
}

@media screen and (max-width: 500px) {
	#section-about-us .text-box,
	#section-about-us .image-box {
		box-sizing: border-box;
		padding: 0;
	}
}

/* -------------------------------------------------------------- */
/* CONTACT PAGE */
/* -------------------------------------------------------------- */

#section-contact .text-box {
	float: left;
	width: 35%;
	padding-right: 5%;
}

#section-contact .form-box {
	width: 60%;
	float: right;
}

@media screen and (max-width: 875px) {
	#section-contact .text-box,
	#section-contact .form-box {
		width: 100%;
		padding: 0;
	}
}

.contact-social img {
	display: inline-block;
	padding: 0 10px 0 0;
	width: 16px;
	height: 16px;
	vertical-align: baseline;
	position: relative;
	bottom: -2px;
}

.contact-social a {
	text-decoration: none;
	font-style: italic;
}

#form-error-copy-text {
	font-size: 12px;
	line-height: 19px;
	padding: 5px;
	margin: 10px 0;
	font-family: 'Sukhumvit Set', monospace;
	border: 1px solid #555;
	border-radius: 3px;
}

.form-message-button {
	font-family: 'Sukhumvit Set', monospace;
	font-weight: 500;
	font-size: 9px;
	font-style: normal;
	line-height: 20px;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 0 10px;
	color: #000;
	outline: 0;
	border: 1px solid #555;
	border-radius: 3px;
	cursor: pointer;
	display: inline-block;
	text-decoration: none;
	background-color: #e1dfdf;
}

fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

label,
#im-planner {
	font-family: 'Sukhumvit Set', monospace;
	font-style: italic;
	font-size: 12px;
	line-height: 20px;
	display: block;
	padding: 5px 0 0 3px;
}

input[type=password],
input[type=text],
input[type=date],
select,
textarea {
	font-family: 'Sukhumvit Set', monospace;
	font-size: 14px;
	line-height: 22px;
	padding: 0 1%;
	margin: 0;
	width: 97%;
	height: 40px;
	border: 1px solid #ddd;
	border-radius: 0;
	outline-color: #39f;
}

select {
	width: 48%;
	background-color: white;
}

@media screen and (max-width: 700px) {
	select { width: 99%; }
}

#greenlight {
	border: 0;
	position: absolute;
	left: -9999px;
	height: 0;
	overflow: hidden;
}

textarea {
	padding: 10px 1%;
	width: 97%;
	height: 5em;
}

.submit {
	margin: 20px 0;
	text-align: center;
	clear: both;
}

.contact-form-no-column {
	float: left;
	width: 99%;
	margin: 0 0 20px;
}

.contact-form-columns {
	float: left;
	width: 48%;
	margin: 0 2% 20px 0;
}

@media screen and (max-width: 700px) {
	.contact-form-columns {
		width: 99%;
		margin: 0 0 20px;
	}
}

form.desactivated {
	opacity: .5;
	cursor: wait;
}

form.desactivated input[type=submit] {
	cursor: wait;
}

fieldset.disabled {
	opacity: .5;
}

.info-text {
	display: none;
	font-family: 'Sukhumvit Set', monospace;
	font-weight: bold;
	font-size: 13px;
	line-height: 20px;
}

#form-message {
	display: none;
}

.errorMsg,
.okMsg {
	width: 91%;
	padding: 20px 4%;
	margin: 20px 0;
	font-size: 13px;
	line-height: 20px;
	font-style: italic;
	clear: both;
}

.errorMsg {
	color: #a44141;
	background: #f5cece;
	border: 1px solid #e2b1b1;
}

.okMsg {
	color: #587544;
	background: #ddeadd;
	border: 1px solid #a9bfa9;
}
