/* === GENERAL === */

html, body {
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;  
}

body {
	background-color: #5F6061;
	font-family: 'Lato', sans-serif;
	-webkit-font-smoothing: antialiased;
}

a {
	color: inherit;
}

.backstretch:after {
	content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;

	z-index: 100;
}

.mbYTP_wrapper:after {
	content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
	background-color: rgba(95,96,97,0.6);
	z-index: 100;
}

.videoMuteButton {
	display: none;
	width: 30px;
	height: 30px;
	overflow: hidden;
	position: absolute;
	right: 15px;
	bottom: 15px;
	background-color: rgba(236,240,241,0.1);
	border-radius: 3px;
}

.videoMuteButton:hover i.fa {
	color: rgba(236,240,241,1);
}

.videoButton {
	width: 30px;
	height: 30px;
	display: inline-block;
	text-align: center;
	line-height: 30px;
	font-size: 18px;
	color: rgba(236,240,241,0.6);
	cursor: pointer;
}

.videoButton i.fa {
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}

.videoButton.notmuted.mute {
	display: none;
}

h2.section-title {
	margin: 0px;
	font-weight: 900;
	text-transform: uppercase;
	margin-bottom: 80px;
	text-align: center;
}

.noscript-error {
	position: relative;
	padding: 20px;
	background-color: rgba(233,233,233,0.2);
	margin:0 auto;
	text-align: center;
	color: rgba(233,233,233,0.8);
}

.page-loading {
	width: 100%;
	height: 100%;
	background-color: #FFFFFF;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 5000;
	overlflow: hidden;
}

.loading {
	margin: auto;
  	position: absolute;
  	top: 0;
  	left: 0;
  	bottom: 0;
  	right: 0;
	border-bottom: 6px solid rgba(233,233,233,1);
	border-left: 6px solid rgba(233,233,233,1);
	border-right: 6px solid rgba(233,233,233,0.5);
	border-top: 6px solid rgba(233,233,233,0.5);
	border-radius: 100%;
	height: 60px;
	width: 60px;
	-webkit-animation: loading-spin 1s infinite linear;
	-moz-animation: loading-spin 1s infinite linear;
	-ms-animation: loading-spin 1s infinite linear;
	-o-animation: loading-spin 1s infinite linear;
	animation: loading-spin 1s infinite linear;
}

@keyframes loading-spin {
	from {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(359deg);
		-moz-transform: rotate(359deg);
		-o-transform: rotate(359deg);
		-ms-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

@-moz-keyframes loading-spin {
	from {
		-moz-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-moz-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

@-webkit-keyframes loading-spin {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

@-ms-keyframes loading-spin {
	from {
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-ms-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

@-o-keyframes loading-spin {
	from {
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-o-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

.mini-container {
	width: 80%;
	max-width: 1000px;
	margin:0 auto;
	padding: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;  
}


/* === WELCOME === */

.section-main {
	width: 100%;
	height: 100%;
	max-height: 100%;
	background-color: transparent;
	display: block;
	position: relative;
	z-index: 2000;
	text-align: center;
}

.section-main .title {
	width: 100%;
	height: auto;
	position: absolute;
	top: 50%;
	color: rgba(236,240,241,0.9);
}

.section-main .title a.title-img {
	display: block;
	margin-bottom: 30px;
}

.section-main .title a.title-img img {
	outline: none;
	border: none;
}

.section-main .title h1 {
	display: inline-block;
	color: #ecf0f1;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 52px;
	margin: 0px;
}

.section-main h1.text-logo {
	font-family: 'Grand Hotel', cursive;
	text-transform: none;
	font-weight: 400;
	font-size: 36px;
	color: rgba(236,240,241,0.8);
}

.section-main .title p {
	line-height: 24px;
	padding: 20px;
	margin: 0px;
}

.section-main .arrow-down {
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 40px;
	animation: wobbleArrow 1s ease-in-out 0s infinite alternate;
	-webkit-animation: wobbleArrow 1s ease-in-out 0s infinite alternate;
	-moz-animation: wobbleArrow 1s ease-in-out 0s infinite alternate;
	-o-animation: wobbleArrow 1s ease-in-out 0s infinite alternate;
}

.section-main .arrow-down i.fa {
	font-size: 36px;
	color: rgba(236,240,241,0.8);
	cursor: pointer;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}

.section-main i.fa:hover {
	color: rgba(236,240,241,1);
}

@-webkit-keyframes wobbleArrow
{
from   { bottom: 40px; }
to { bottom: 50px; }
}


/* === COUNTDOWN === */

.section-countdown {
	width: 100%;
	height: auto;
	background-color: #FFFFFF;
	position: relative;
	z-index: 2000;
	color: #5F6061;
	padding-top: 80px;
	padding-bottom: 80px;
}

#countdown {
	width: 100%;
	height: auto;
	text-align: center;
	z-index: 200;
	margin:0 auto;
}

#countdown .countdown-elem {
	display: inline-block;
	position: relative;
	background-color: rgba(95,96,97,0.08);
	height: 180px;
	width: 22%;
	overflow: hidden;
	vertical-align: top;
}

#countdown .countdown-elem h2 {
	margin: 0px;
	padding: 0px;
	font-size: 48px;
	font-weight: 300;
	font-family: 'Lato', sans-serif;
	color: #5F6061;
	display: inline-block;
	position: relative;
}

#countdown .countdown-elem span {
	color: rgba(95,96,97,0.7);
	display: block;
	margin-top: 0px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	line-height: 24px;
	margin-top: -30px;
}

#countdown .countdown-spacer {
	display: inline-block;
	width: 4%;
}


/* === EMAIL-SUBSCRIBE === */

.section-subscribe {
	width: 100%;
	height: auto;
	background-color: transparent;
	display: block;
	position: relative;
	z-index: 2000;
	color: #ecf0f1;
	padding-top: 80px;
	padding-bottom: 80px;
	text-align: center;
}

.section-subscribe:after {
	content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
	background-color: rgba(95,96,97,0.6);
	z-index: 100;
}

.mini-container.overlay-container {
	position: relative;
	z-index: 2000;
}

.subscribe {
	width: 100%;
	height: 50px;
	background-color: transparent;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	color: rgba(255,255,255,0.6);
	font-weight: 300;
	line-height: 22px;
	margin:0 auto;
	transition: color 0.5s ease, background-color 0.5s ease;
	-webkit-transition: color 0.5s ease, background-color 0.5s ease;
	-moz-transition: color 0.5s ease, background-color 0.5s ease;
	-o-transition: color 0.5s ease, background-color 0.5s ease;
}

.signup {
	width: 100%;
	height: 50px;
	float: right;
	border-radius: 0px;
	display: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
	line-height: 50px;
	font-weight: 400;
	transition: width 2s ease;
	-webkit-transition: width 2s ease;
	-moz-transition: width 2s ease;
	-o-transition: width 2s ease;
	-webkit-background-clip: padding-box;
}

.signup-waiting {
	width: 100%;
	height: auto;
}

.signup-error {
	color: #ecf0f1;
}

.signup-success {
	width: 100%;
	background-color: rgba(26,188,156,1.0);
	border: none;
	margin-top: -50px;
	border-radius: 0px;
	color: #ecf0f1;
	position: relative;
	z-index: 2000;
}

#signup-response .loading {
	width: 18px;
	height: 18px;
	position: relative;
	margin-top: 15px;
  	border-bottom: 3px solid rgba(233,233,233,1);
	border-left: 3px solid rgba(233,233,233,1);
	border-right: 3px solid rgba(233,233,233,0.5);
	border-top: 3px solid rgba(233,233,233,0.5);
}

.enteremail {
	height: 50px;
	padding-left: 20px;
	padding-right: 20px;
	width: 89%;
	font-family: 'Lato', sans-serif;
	outline: none;
	border-radius: 0px;
	border: none;
	background-color: rgba(236,240,241,0.8);
	color: rgba(95,96,97,0.8);
	font-size: 16px;
	font-weight: 400;
	float: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-background-clip: padding-box;
	transition: color 0.5s ease, background-color 0.5s ease;
	-webkit-transition: color 0.5s ease, background-color 0.5s ease;
	-moz-transition: color 0.5s ease, background-color 0.5s ease;
	-o-transition: color 0.5s ease, background-color 0.5s ease;
}

.enteremail:focus {
	color: rgba(95,96,97,1);
	background-color: rgba(236,240,241,1);
}
	

::-webkit-input-placeholder {
    color: rgba(95,96,97,0.8);
}
:-moz-placeholder {
    color: rgba(95,96,97,0.8);
}
::-moz-placeholder {
    color: rgba(95,96,97,0.8);
}
:-ms-input-placeholder {
     color: rgba(95,96,97,0.8);
}

.subscribe .signup-button {
	width: 11%;
	height: 50px;
	background-color: rgba(236,240,241,0.7);
	border: none;
	outline: none;
	position: relative;
	float: left;
	font-family: 'Lato', sans-serif;
	font-size: 18px;
	border-radius: 0px;
	font-weight: 400;
	color: rgba(95,96,97,0.8);
	border: none;
	cursor: pointer;
	z-index: 100;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: none;
	-webkit-background-clip: padding-box;
	transition: color 0.5s ease, background-color 0.5s ease;
	-webkit-transition: color 0.5s ease, background-color 0.5s ease;
	-moz-transition: color 0.5s ease, background-color 0.5s ease;
	-o-transition: color 0.5s ease, background-color 0.5s ease;
}

.subscribe .signup-button:hover {
	background-color: rgba(52,152,219,0.6);
	color: #ecf0f1;
}

.signup-button.signup-button-error {
	background-color: rgba(231, 76, 60,0.6);
	color: #ecf0f1;
}

.signup-button.signup-button-error:hover {
	background-color: rgba(231, 76, 60,0.6);
	color: #ecf0f1;
}

.signup-button.signup-button-success {
	background-color: rgba(26,188,156,0.8);
	color: transparent;
}


/* === ABOUT === */

.section-about {
	width: 100%;
	height: auto;
	background-color: #FFFFFF;
	display: block;
	position: relative;
	color: #5F6061;
	padding-top: 80px;
	padding-bottom: 80px;
	text-align: justify;
	line-height: 24px;
}

.about-container {
	width: 100%;
	margin-top: 40px;
	display: table;
}

.osorio-container {
	width: 100%;
	margin-top: 40px;
	display: table;
}

.section-about a {
	color: rgba(0,0,0,0.8);
	text-decoration: none;
	border-bottom: 1px solid rgba(0,0,0,0);
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
}

.section-about a:hover {
	border-bottom: 1px solid rgba(0,0,0,0.8);
}

.section-about .about-container .about-box {
	display: table-cell;
	padding: 20px;
	background-color: rgba(95,96,97,0.08);
	width: 50%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: justify;
}

.osorio-container .osorio-box {
	display: table-cell;
	vertical-align: top;
	padding: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: justify;
}

.osorio-container .osorio-box p {
	margin-bottom: 0px;
	padding-top: 0px;
}

.section-about .about-container .about-box-spacer {
	display: table-cell;
	width: 5%;
}

.osorio-container .osorio-box-spacer {
	display: table-cell;
	width: 5%;
}

.section-about .about-container .about-box span {
	display: block;
	width: 100%;
	text-align: center;
	height: 50px;
	font-size: 64px;
	margin-top: 50px;
	margin-bottom: 70px;
	color: rgba(0,0,0,0.6);
}

.section-about .about-container .about-box h3 {
	margin: 0px;
	margin-bottom: 20px;
	font-weight: 400;
	text-align: center;
}

.section-about .about-container .about-box p {
	margin-bottom: 0px;
	margin-top: 20px;
	color: rgba(95,96,97,0.7);
}


/* === CONTACT === */

.contact-box-container {
	max-width: 650px;
	margin: 0 auto;
}

.section-contact {
	width: 100%;
	height: auto;
	background-color: transparent;
	display: block;
	position: relative;
	z-index: 2000;
	color: #ecf0f1;
	padding-top: 80px;
	padding-bottom: 80px;
	text-align: center;
	line-height: 24px;
}

.section-contact:after {
	content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
	background-color: rgba(95,96,97,0.8);
	z-index: 100;
}

.contact-box {
	display: table-cell;
	width: 47.5%;
	overflow: hidden;
}

.contact-box-spacer {
	display: table-cell;
	width: 5%;
}

.contact-box.right {
	position: relative;
	margin-bottom: 0px;
}

.contact-box.left ul {
	list-style: none;
	font-size: 22px;
	line-height: 32px;
	margin-top: 40px;
	padding: 0px;
	text-align: left;
	position: relative;
}

.contact-box.left ul li {
	margin-bottom: 20px;
	padding-left: 48px;
	margin-top: 0px;
}

.contact-box.left ul li i.fa {
	margin-left: -48px;
	margin-right: 25px;
	color: rgba(236, 240, 241,0.5)
}

.contact-box.left ul a {
	position: absolute;
	max-width: 100%;
}

.antispam {
	display: none !important;
}

.contact-box.right input[type='text'], .contact-box.right input[type='email'] {
	height: 50px;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
	font-family: 'Lato', sans-serif;
	outline: none;
	border-radius: 0px;
	border: none;
	background-color: rgba(236,240,241,0.8);
	color: rgba(95,96,97,0.8);
	font-size: 16px;
	font-weight: 400;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-background-clip: padding-box;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	margin-bottom: 20px;
}

.contact-box.right input[type='text']:focus, .contact-box.right input[type='email']:focus {
	color: rgba(95,96,97,1);
	background-color: rgba(236,240,241,1);
}

.contact-box.right .message-box {
	width: 100%;
	max-width: 100%;
	min-height: 200px;
	padding: 20px;
	font-family: 'Lato', sans-serif;
	outline: none;
	border-radius: 0px;
	border: none;
	background-color: rgba(236,240,241,0.8);
	color: rgba(95,96,97,0.8);
	font-size: 16px;
	font-weight: 400;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-background-clip: padding-box;
	transition: background-color 0.5s ease, border 0.5s ease, color 0.5s ease;
	-webkit-transition: background-color 0.5s ease, border 0.5s ease, color 0.5s ease;
	-moz-transition: background-color 0.5s ease, border 0.5s ease, color 0.5s ease;
	-o-transition: background-color 0.5s ease, border 0.5s ease, color 0.5s ease;
	margin-bottom: 20px;
	resize: vertical;
}

.contact-box.right .message-box:focus {
	color: rgba(95,96,97,1);
	background-color: rgba(236,240,241,1);
}

.contact-box.right input[type='submit'] {
	width: auto;
	height: 50px;
	background-color: rgba(236,240,241,0.8);
	border: none;
	outline: none;
	display: inline-block;
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	border-radius: 0px;
	padding-left: 30px;
	padding-right: 30px;
	font-weight: 400;
	color: rgba(95,96,97,0.8);
	border: none;
	cursor: pointer;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: none;
	-webkit-background-clip: padding-box;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}

.contact-box.right input[type='submit']:hover {
	background-color: rgba(52,152,219,0.6);
	color: #ecf0f1;
}

.contact-box a {
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0);
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}

.contact-box a:hover {
	color: white;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}


.contact-button-error {
	background-color: rgba(231, 76, 60,0.8) !important;
	color: #ecf0f1 !important;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}

.contact-response {
	display: inline-block;
	opacity: 0;
	float: right;
	height: 50px;
	padding-left: 20px;
	padding-right: 20px;
	line-height: 50px;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}

.contact-response.contact-error {
	opacity: 1;
	color: #ecf0f1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.contact-form-input {
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	border: 2px solid rgba(231, 76, 60, 0) !important;
}

.contact-form-input.contact-form-error {
	border: 2px solid rgba(231, 76, 60, 1.0) !important;
	background-color: rgba(236,240,241,1) !important;
}

#contact-success {
	display: none;
	width: 100%;
	height: 50px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background-color: rgba(26,188,156,0.8);
	color: #ecf0f1;
	padding-left: 20px;
	padding-right: 20px;
	line-height: 50px;
	text-align: left;
}

#contact-success i.fa {
	margin-right: 20px;
}

.contact-loading {
	display: none;
	width: 100%;
	height: 50px;
	position: relative;
	z-index: 500;
	margin-top: -50px;
}

.contact-loading .loading {
	width: 18px;
	height: 18px;
	position: relative;
	float: right;
	margin-top: 13px;
  	border-bottom: 3px solid rgba(233,233,233,1);
	border-left: 3px solid rgba(233,233,233,1);
	border-right: 3px solid rgba(233,233,233,0.5);
	border-top: 3px solid rgba(233,233,233,0.5);
}


/* === FOOTER === */

.section-footer {
	width: 100%;
	height: auto;
	background-color: rgba(38,38,38,0.9);
	display: block;
	position: relative;
	z-index: 2000;
	color: rgba(236,240,241,0.4);
	padding-top: 60px;
	padding-bottom: 60px;
	line-height: 24px;
	font-weight: 300;
}

.footer-container {
	width: 100%;
	display: table;
}

.footer-block {
	display: table-cell;
	width: 40%;
	vertical-align: middle;
}

.footer-block:last-child {
	text-align: right;
}

.footer-block-middle a.footer-img {
	display: block;
	padding: 0px;
	line-height: normal;
}

.footer-block-middle a.footer-img img {
	max-height: 40px;
	outline: none;
	border: none;
}

.footer-block-middle {
	display: table-cell;
	width: 10%;
	text-align: center;
}

.footer-spacer {
	display: table-cell;
	width: 2.5%;
}

.section-footer a {
	color: rgba(236,240,241,0.4);
	text-decoration: none;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}

.section-footer a:hover {
	color: rgba(236,240,241,1);
}

.section-footer i.fa {
	color: rgba(236,240,241,0.4);
	cursor: pointer;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;

}

.section-footer a.footer-social {
	display: inline-block;
	margin-right: 15px;
}

.section-footer a.footer-social:hover i.fa {
	color: rgba(236,240,241,1);
}


/* === RESPONSIVE CSS === */

@media all and (max-width: 1109px) {
	.contact-box-container {
		display: block;
		width: 100%;
	}
	
	.contact-box {
		width: 100%;
		display: block;
		margin-bottom: 10%;
	}
	
	.contact-box-spacer {
		width: 0%;
		height: 0%;
	}
	
	.footer-container {
		display: block;
		width: 100%;
	}
	
	.footer-block, .footer-block-middle {
		width: 100%;
		display: block;
		margin-bottom: 40px;
		text-align: center !important;
	}
	
	.footer-block:last-child {
		margin-bottom: 0px;
	}
	
	.footer-spacer {
		width: 0%;
		height: 0%;
	}
}

@media all and (max-width: 989px) {
	#countdown .countdown-elem h2 {
		font-size: 32px;
	}
	
	#countdown .countdown-elem span {
		margin-top: -20px;
	}
	
		
	.section-about .osorio-container .osorio-box img{
		max-width: 350px;
	}
}

@media all and (max-width: 599px) {

.mini-container {
	width: 90%;
	max-width: 1000px;
	margin:0 auto;
	padding: 5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;  
}


	.subscribe {
		height: 130px;
	}
	
	.subscribe .signup-button {
		width: 100%;
		margin-top: 20px;
		margin-bottom: 10px;
	}
		
	.enteremail {
		width: 100%;
	}
	
	#signup-response {
		height: auto;
		min-height: 50px;
	}
	
	.signup-button.signup-button-success {
		display: none;
	}
	
	#countdown .countdown-elem {
		width: 46%;
	}
	
	#countdown .countdown-elem.elem-days, #countdown .countdown-elem.elem-hours {
		margin-bottom: 8%;
	}
	
	#countdown .countdown-spacer {
		width: 8%;
	}
	
	#countdown .countdown-spacer.central-spacer {
		display: none;
	}
	
	#countdown .countdown-elem h2 {
		font-size: 30px;
	}
	
	.section-about .about-container {
		display: block;
    text-align: center;
	}

	.section-about .osorio-container {
		display: block;
    text-align: center;
	}
	
	.section-about .about-container .about-box {
		width: 100%;
		display: block;
		margin-bottom: 10%;
	}
	
	.section-about .about-container .about-box:last-child {
		margin-bottom: 0px;
	}
	
	.section-about .about-container .about-box-spacer {
		width: 0%;
	}
	
	.section-about .osorio-container .osorio-box {
		width: 100%;
		display: block;
		margin-bottom: 10%;
	}
	
	.section-about .osorio-container .osorio-box  img{	
		text-align: center;
		max-width: 260px;
	}
	
	.section-about .osorio-container .osorio-box:last-child {
		margin-bottom: 0px;
	}
	
	.section-about .osorio-container .osorio-box-spacer {
		width: 0%;
	}
	
	.contact-box.left ul {
		font-size: 16px;
		max-width: 100%;
	}
	
	.contact-box.right input[type='submit'] {
		width: 100%;
	}
	
	.contact-response {
		width: 100%;
		float: none;
		height: auto;
		text-align: center;
		margin-left: 0px;
		margin-right: 0px;
		margin-top: 10px;
		padding: 0px;
		line-height: 24px;
	}
	
	.contact-loading {
		margin-top: 0px;
	}
	
	.contact-loading .loading {
		position: absolute;
		float: none;
		margin-top: 30px;
	}
	
	.section-contact {
		padding-bottom: 40px;
	}
	
	#contact-success {
		height: auto;
		line-height: 24px;
		padding: 20px;
	}
	
	.section-main .title a.title-img img {
		outline: none;
		border: none;
		max-width: 280px;
	}
}