
/***************************************************************************************************************************************************/
/*																																		 CSS RESET */
/***************************************************************************************************************************************************/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
	content: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/***************************************************************************************************************************************************/
/*																																	 		SHARED */
/***************************************************************************************************************************************************/

::selection {
	background-color: transparent;
}
::-moz-selection {
	background-color: transparent;
}
input,
textarea {
	border: 0px;
	background-color: transparent;
	resize: none;
}
* {
	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: none;

	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;

	-webkit-appearance: none;
	-moz-appearance: none;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

	margin: 0px;	/* FIX IE INITIAL NaN VALUE */
	padding: 0px;	/* FIX IE INITIAL NaN VALUE */
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}
img {
	vertical-align: middle;
	display: block;
}

/* ----------------------------------------------------------> BASE LAYOUT */

body {
	color: #555;
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	line-height: 20px;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	overflow-x: hidden;
}
body.bg {
	background-color: #79853c;
}
html.touchevents body.bg {
	background-color: #fff;
}
#main-wrapper  {
	min-width: 320px;	/* GLOBAL SITE MIN WIDTH */
	max-width: 1920px;	/* GLOBAL SITE MAX WIDTH */
}
#site-overlay {
	background-color: #fff;
	position: fixed;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	z-index: 16000;
}
#site-overlay .spinner {
	width: 160px;
	height: 16px; /* set as body line-height */
	color: #79853c;
	text-align: center;
	margin: auto;
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}
html.cssanimations #site-overlay .spinner {
	width: 30px;
	height: 30px;
	font-size: 0px;
	line-height: 0px;
	border: 3px solid #fff;
	border-bottom-color: #79853c;
	border-radius: 100%;
	-webkit-animation: rotate 1s linear 0s infinite;
	animation: rotate 1s linear 0s infinite;
}
@-webkit-keyframes rotate {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes rotate {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
.row-wrapper {
	width: 100%;
	display: table;
}
.column-wrapper {
	display: table-cell;
	vertical-align: top;
}

/* ----------------------------------------------------------> RESPONSIVE RULES */

@media screen and (max-width: 480px) {
	html.inited body {
		
	}
}

/* ----------------------------------------------------------> BASE LINKS */

a {
	text-decoration: none;
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(121,133,60,0.5);
}
a:active {
	position: relative;
}
a.txt-link {
	color: #555;
}
a.txt-link.dark {
	color: #fff;
}
a.icon {
	border-width: 0px;
}
a.icon,
span.icon,
a.icon span,
span.icon span {
	display: block;
}
a.icon,
span.icon {
	position: relative;
}
a.icon span,
span.icon span {
	width: 100%;
	height: 100%;
	position: absolute;
}

/* ----------------------------------------------------------> UTILITIES */

.busy {
	cursor: progress !important;
}
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.float-left {
	float: left !important;
}
.float-center {
	margin-left: auto !important;
	margin-right: auto !important;
}
.float-right {
	float: right !important;
}
.align-left {
	text-align: left !important;
}
.align-center {
	text-align: center !important;
}
.align-right {
	text-align: right !important;
}
.display-block {
	display: block !important;
}
.display-inline-block {
	display: inline-block !important;
}
.hidden {
	display: none !important;
}
.invisible {
	visibility: hidden !important;
}
.rounded {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.tl-rounded {
	-webkit-border-top-left-radius: 5px;
	-moz-border-radius-topleft: 5px;
	border-top-left-radius: 5px;
}
.tr-rounded {
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topright: 5px;
	border-top-right-radius: 5px;
}
.bl-rounded {
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-left-radius: 5px;
}
.br-rounded {
	-webkit-border-bottom-right-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	border-bottom-right-radius: 5px;
}
.selectable,
.selectable * {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
}
.selectable::selection,
.selectable *::selection {
	color: #fff;
	background-color: #000;
}
.selectable::-moz-selection,
.selectable *::-moz-selection {
	color: #fff;
	background-color: #000;
}
.breakable {
	word-break: break-all;
	display: inline-block;
}
.img-responsive {
	width: 100%;
	height: auto;
}

/***************************************************************************************************************************************************/
/*																																	   		  PAGE */
/***************************************************************************************************************************************************/

#page {
	background-color: #fff;
	overflow: hidden;
	position: relative;
	z-index: 14000;
}
#page-wrapper {
	padding-left: 30px;
	padding-right: 30px;
}
#page-content {
	/*padding-top: 30px;
	padding-bottom: 30px;*/
}

/***************************************************************************************************************************************************/
/*																																	  PAGE CONTENT */
/***************************************************************************************************************************************************/

#logo-header {
	padding: min(8vw, 60px) 0px;
}
#logo-header img {
	max-width: 750px;
}
#inner-wrapper .img-grid {
	padding-bottom: 30px;
}
#inner-wrapper .img-grid .column-wrapper.left {
	padding-right: 15px;
}
#inner-wrapper .img-grid .column-wrapper.right {
	padding-left: 15px;
}
#inner-wrapper h1 {
	color: #79853c;
	font-family: 'Dancing Script';
	font-size: min(8vw, 134px);
	line-height: min(8vw, 134px);
	padding: min(8vw, 60px) 0px;
}
#inner-wrapper h2 {
	font-size: 20px;
	line-height: 26px;
	font-weight: bold;
}
#inner-wrapper footer {
	max-width: 960px;
	margin-top: 60px;
	margin-bottom: 60px;
}

/* ----------------------------------------------------------> RESPONSIVE RULES */

@media screen and (max-width: 767px) {
	#inner-wrapper .img-grid .column-wrapper {
		display: block;
	}
	#inner-wrapper .img-grid .column-wrapper.left {
		padding-right: 0px;
		padding-bottom: 30px;
	}
	#inner-wrapper .img-grid .column-wrapper.right {
		padding-left: 0px;
	}
}
@media screen and (max-width: 480px) {
	#page-wrapper {
		padding-left: 15px;
		padding-right: 15px;
	}
	#inner-wrapper .img-grid .column-wrapper.left {
		padding-bottom: 15px;
	}
}