@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@200;300;600;800&display=swap');

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,
dl, dt, dd, ol, ul, li,		
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
input, textarea, select, button,
header, section, article, footer, aside, figure, figcaption {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	text-decoration:none;
	color:inherit;
	background-color:transparent;
	}
strong {
	font-weight: bold;
	}
em {
	font-style: italic;
}
:focus {
	outline:0;
	}
body{
	line-height: 1;
	}
ol, ul {
	list-style: none;
	}
table {
	border-collapse: separate;
	border-spacing: 0;
	}
caption, th, td {
	text-align: left;
	font-weight: normal;
	}
blockquote:before, blockquote:after, q:before, q:after {
	content: "";
	}
blockquote, q {
	quotes: "" "";
	}
del {
	text-decoration: none;
}
html {
	height: 100%;
	font-size: 100%;
	overflow-x:hidden;
	overflow-y:scroll;
}
body {
	font-family: 'Kanit', sans-serif;
	font-weight: 300;
	font-size:100%;
	line-height:1;
	color:#111;
	min-height:100%;
	background: #fff;
}
strong {
	font-weight: 600;
}
:focus {
	box-shadow: 0 0 1px 0 #e66428;
}
@media (min-width: 960px) {
	::-webkit-scrollbar {
	  width: 12px;
	}
	::-webkit-scrollbar-track {
	  background: #00000010;
	  border-radius: 0;
	}
	::-webkit-scrollbar-thumb {
	  background: #00000010; 
	  border-radius: 50px;
	  box-shadow:inset 0 0 0 2px #00000010;
	}
	::-webkit-scrollbar-thumb:hover {
	  background: #00000030; 
	}
}
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap; /* 1 */
}

@media (max-width: 960px) {
	.mobWrapper {
		position: relative;
		overflow-x: hidden;
		width: 100%;
	}
}

.section {
	padding: 5rem 0;
}
.page {
	font-size: 1rem;
	padding: 0 2rem;
	max-width: 1280px;
	margin: 0 auto;
	clear:both;
}
.row {
	margin: 0 -1.75rem;
	font-size: 0;
	clear: both;
}
.row.rtl {
	direction: rtl;
}
.row + .row {
}
.page:after,
.row:after {
	content:'';
	display:table;
	width:100%;
	clear:both;
}
.col,
.gap {
	font-size: 1rem;
	box-sizing: border-box;
	padding: 0 1.75rem;
	min-height: 1px;
	text-align: left;
	direction: ltr!important;
}
.col > *:last-child {
	margin-bottom: 0!important;
}
@media (min-width: 960px) {
	.col,
	.gap {
		display: inline-block;
		vertical-align: top;
	}
	.col1 {width: 8.333%;}
	.col2 {width: 16.666%;}
	.col3 {width: 25%;}
	.col4 {width: 33.333%;}
	.col5 {width: 41.666%;}
	.col6 {width: 50%;}
	.col7 {width: 58.333%;}
	.col8 {width: 66.666%;}
	.col9 {width: 75%;}
	.col10 {width: 83.333%;}
	.col11 {width: 91.666%;}
	.col12 {width: 100%;}
}
@media (max-width: 959px) {
	.col + .col {
		margin-top: 2rem;
	}
}

a i {
	line-height: inherit!important;
}
svg {
	width: auto;
	height: auto;
}
svg,
img {
	max-width: 100%;
}

.bt {
	display: inline-block;
	line-height: 3rem;
	padding: 0 1.5em;
	text-transform: uppercase;
	font-weight: 600;
	color: #2C6A67;
	border-radius: 2rem;
	cursor: pointer;
	transition: all 350ms cubic-bezier(.7,0,.3,1);
	background: #E0C936;
}
.bt i {
	margin-left: .5rem;
}

#modalWrapper {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 9100;
	background: rgba(40,40,40,.5);
	opacity: 0;
	visibility: hidden;
	transition: all 150ms cubic-bezier(.7,0,.3,1);
}
#modalWrapper.visible {
	opacity: 1;
	visibility: visible;
}
#modalWrapper > .bt_modalClose {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
}
.modal {
	position: absolute;
	left: 50%;
	top: 50%;
	transition: transform 50ms ease;
	transform: scale(.5) translate(-50% , -55%);
	max-width: 60rem;
	z-index: 20;
	display: none;
}
.modal .bt_modalClose {
	position: absolute;
	top: -2rem;
	right: 0;
	line-height: 2rem;
	color: #fff;
	font-size: 1rem;
}
#modalWrapper.visible .modal {
	transform: scale(1) translate(-50% , -55%);
}
.modal {
	padding: 0;
	min-height: 50vh;
	max-height: 90vh;
	width: 90%;
	text-align: left;
	background: #fff;
	border-radius: .25rem;
}
.modalHeader {
	padding: 2rem 2.5rem;
	border-radius: .25rem .25rem 0 0;
	position: relative;
	border-bottom: solid 1px #00000010;
}
.modalContent {
	max-height: 50vh;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 2rem 2.25rem;
	box-sizing: border-box;
}
.modalFooter {
	text-align: right;
	padding: 2rem 2.25rem;
	position: relative;
	border-radius: 0 0 .25rem .25rem;
	border-top: solid 1px #00000010;
}

.form {
}
.form .field {
}
.form .field label {
}
.form .field input,
.form .field select,
.form .field textarea {
}
.form .field.error > div {
}




.header {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	z-index: 9999;
	background: #fff;
	padding: 1.5rem 0;
}
.branding {
	display: inline-block;
}
.branding img {
	height: 4rem;
	display: block;
}
.bt_menu {
	display: none;
}
.header nav {
	float: right;
}
.header nav li {
	line-height: 4rem;
	margin-left: 1rem;
	display: inline-block;
}
.header nav li a {
	display: block;
	font-weight: 600;
	color: #2C6A67;
}
.header nav li a:after {
	content: '.';
	color: #E0C936;
	font-weight: bold;

}
.featured {
	display: block;
	height: 100vh;
	background: url(../images/featured.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
}
.featured .page {
	height: 100vh;
	position: relative;
}
.featured .page div {
	position: absolute;
	top: 50%;
	transform: translateY(-45%);
	color: #fff;
	font-size: 1rem;
	max-width: 30rem;
}
.featured .page div h2 {
	font-size: 4.5rem;
	line-height: .75em;
	letter-spacing: -.02em;
	margin-bottom: 1.5rem;
	text-decoration: underline;
	text-decoration-color: #E0C936;
}
.featured .page div p {
	font-size: 1.4rem;
	line-height: 1.4em;
	margin-bottom: 2rem;
}
.featured .bt {
	color: #E0C936;
	background: #2C6A67;
}

.main {
	background: url(../images/bg.svg) no-repeat center center;
	background-size: cover;
}
.main h1 {
	font-size: 2rem;
	margin-bottom: .75rem;
}
.main h2 {
	font-size: 3.25rem;
	font-weight: 800;
	margin-bottom: 2.5rem;
	color: #2C6A67;
	line-height: .8em;
}
.main h2:after {
	content: '_';
	position: relative;
	bottom: .145em;
	color: #E0C936;
	left: .1em;
}
.main h3 {
	font-weight: 200;
	font-size: 1.375rem;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: #999;
	margin-bottom: 1rem;
}
.main p {
	font-size: 1.125rem;
	line-height: 1.5em;
	margin-bottom: 2.5rem;
}
.main p + p {
	margin-top: -1.75rem;
}

#intro {
	text-align: center;
}
#intro p {
	font-size: 1.375rem;
	max-width: 35em;
	margin-left: auto;
	margin-right: auto;
}

#servicios {
	background: #00000010;
	box-shadow: inset 0 0 2rem 0 rgba(0,0,0,.1);
}
#servicios .col {
	vertical-align: middle;
}
#servicios .col6 {
	text-align: center;
}
#servicios .col svg {
	display: inline-block;
	max-height: 80vh;
}
#servicios h2 + p {
	font-size: 1.25rem;
}
#servicios h3 + p {
	display: none;
	font-size: 1rem;
	line-height: 1.2em;
}
#servicios h3 {
	font-weight: 600;
	position: relative;
	transition: all 350ms cubic-bezier(.7,0,.3,1);
}
#servicios h3:hover {
	color: #2C6A67;
	cursor: pointer;
	text-decoration: underline;
}
#servicios h3.active {
	color: #2C6A67;
}
#servicios h3.active i {
	transform: rotate(180deg);
}
#servicios h3 i {
	position: relative;
	font-size: .75em;
	color: #2C6A67;
}
#servicios p + h3 {
	margin-top: 2rem;
}
#servicios svg,
#servicios svg path {
	transition: all 350ms cubic-bezier(.7,0,.3,1);
}
#servicios svg path:nth-child(1):hover,
#servicios svg path:nth-child(2):hover,
#servicios svg path:nth-child(3):hover,
#servicios svg path:nth-child(4):hover,
#servicios svg path:nth-child(5):hover {
	fill: #22817d;
}

#porque {
	background: url(../images/section-bg.jpg);
	background-size: cover;
	background-position: center center;
}
#porque h2 {
	color: #fff;
}
#porque p {
	position: relative;
	background: #fff;
	padding: 1.75rem 2rem;
	border-radius: .5rem;
	color: #2C6A67;
	min-height: 10em;
}
#porque p span {
	display: block;
	position: absolute;
	left: 1rem;
	top: -.5rem;
	line-height: 1em;
	font-size: 10rem;
	color: #E0C93650;
}

#about .col6 p {
	font-size: 1rem;
}
#about img {
	display: inline-block;
	max-height: 80vh;
}
#about .col5 {
	text-align: center;
}

#partners {
	background: #ffffff77;
	text-align: center;
}
#partners img {
	display: inline-block;
	vertical-align: middle;
	margin: 1.5rem 1.5rem .5rem;
}

#contacto {
	background: #2C6A67;
	color: #fff;
}
#contacto h3 {
	color: #ffffff80;
}
#contacto h2 {
	color: #E0C936;
}
#contacto h2:after {
	color: #fff;
}
#contacto p + p {
	padding-top: 1rem;
	position: relative;
}
#contacto p + p:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 1rem;
	border-top: solid 1px #E0C936;
}
#contacto p strong {
	display: block;
	font-size: 1.2em;
}

.field {
	margin-bottom: 1.5rem;
}
.field label {
	font-size: .75rem;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: .75rem;
}
.field input,
.field textarea {
	padding: .75rem 0;
	width: 100%;
	box-sizing: border-box;
	border-bottom: solid 1px #fff;
}
.status {
	padding: 1rem;
    margin-bottom: 1rem;
    background: #fff;
    color: #2C6A67;
    font-weight: bold;
}
.form .field.error > div {
	padding: .75rem 1rem;
	background: #ffffff22;
}

.footer {
	background: #16514e url(../images/bg.svg) no-repeat center center;
	background-size: 250% auto;
	padding: 3rem 0;
	color: #E0C936;
}

@media (max-width: 960px) {
	html {
		font-size: 87.5%;
	}
	.bt_menu {
		position: absolute;
		display: block;
		right: 2rem;
		top: 50%;
		transform: translateY(-50%);
		font-size: 1.5rem;
		color: #2C6A67;
	}
	.bt_menu span {
		font-size: 0;
	}
	.header nav ul {
		position: absolute;
		left: 0;
		top:100%;
		width: 100%;
		z-index: 9999;
		background: #fff;
		padding-bottom: 1rem;
		opacity: 0;
		visibility: hidden;
		transition: all 350ms cubic-bezier(.7,0,.3,1);
	}
	.header nav ul.visible {
		opacity: 1;
		visibility: visible;
	}
	.header nav li {
		display: block;
		text-align: center;
		margin: 0;
	}
	.featured {
		height: 90vh;
		background-position: 50% 50%;
	}
	.featured .page {
		height: 90vh;
	}
	.featured .page div h2 {
		font-size: 3.125rem;
	}
	.main h2 {
		font-size: 2.5rem;
		line-height: 1em;
	}
	#porque p {
		min-height: 0;
	}
	#porque p span {
		top: .5rem;
		font-size: 6rem;
	}
}