/* --- Seccion de ubicaciones */
#tabsWrapper * {
    box-sizing: border-box;
}
  
#tabsWrapper {
	/*background: #ffffff38;*/
	color: #000;
	box-sizing: border-box;
	max-width: 1000px;
	width: 100%;
	/*font-family: arial;*/
	line-height: 1.8em;
	letter-spacing: 0.1em;
	height: 600px;
}
 /*
 #tabsWrapper:before,
 #tabsWrapper:after {
   box-sizing: border-box;
 }*/
  
.sectionTab {
	zoom: 1;
	position: relative;
	height: auto;
}
/*
.sectionTab:after,
.sectionTab:before {
	box-sizing: border-box;
	content: "";
	display: table;
}
.sectionTab:after {
	clear: both;
 }*/
 
 .sectionTab .tabTitle {
	box-sizing: border-box;
	border-right: 2px solid #CCC;
	border-top: none;
	cursor: pointer;
	padding: 15px 20px;
	color: #387c41;
 }
 /*
 .sectionTab h4:before, section p:before,
 .sectionTab h4:after, section p:after {
 box-sizing: border-box;
 }*/
.sectionTab .tabTitle:hover {
	box-sizing: border-box;
	box-shadow: 0px 0px 5px 1px #a6a9ad94;
	border-top: none;
	cursor: pointer;
	padding: 15px 20px;
	color: #203363;
	/*background-color:#a6a9ad94; ;*/
 }
 
  section .tabContent {
    zoom: 1;
    position: relative;
    height: auto;
    min-height: 100%;
    border-left: none;
    display: none;
    background-color: #ffffff38;
  }
 /*.sectionTab .tabContent:after,
 .sectionTab .tabContent:before {
   box-sizing: border-box;
   content: "";
   display: table;
 }
 .sectionTab .tabContent:after {
   clear: both;
 }
 */
.sectionTab .activetab {
	cursor: default;
    border-right: 2px solid #2c4364;
    background-color: #387c41;
    color: #fff;
}

.sectionTab .activetab + .tabContent {
	display: block;
}

/* --- Seccion para formulario de contacto */
.cntBox {
	/*position: absolute;
	top: 50%;
	left: 50%;*/
	width: 550px;
	padding: 40px;
	/*transform: translate(-50%, -50%);*/
	/*background: rgba(19,107,10,.55);*/
	background: #fff;
	box-sizing: border-box;
	box-shadow: 00px 0px 10px 0px rgba(0, 0, 0, .6);
	border-radius: 10px;
	border: 1px solid #0e7a02f4;
}

.cntBox h2 {
	margin: 0 0 30px;
	padding: 0;
	color: #fff;
	text-align: center;
}

.cntBox .frmBox {
	position: relative;
}

.cntBox .frmBox input{
	width: 100%;
	padding: 12px 8px;
	font-size: 16px;
	/*color: #fff;*/
	margin-bottom: 30px;
	border-radius: 5px;
	border: 1px solid #0e7a02f4;
	outline: none;
	background: #bfbfbf54;
	left: 5px;
}
.cntBox .frmBox label {
	position: absolute;
	top:0;
	left: 5px;
	padding: 10px 0;
	font-size: 16px;
	/*color: #fff;*/
	pointer-events: none;
	transition: .5s;
}

.cntBox .frmBox textarea{
	width: 100%;
	padding: 10px 5px;
	font-size: 16px;
	/*color: #fff;*/
	margin-bottom: 30px;
	border: 1px solid #0e7a02f4;
	border-radius: 5px;
	outline: none;
	background: #bfbfbf54;
	resize: none;
}

.cntBox .frmBox .validate:invalid ~ label{
	top: -27px;
	left: 4;
	color: #851414;
	font-size: 13px;
}

.cntBox .frmBox .validate:invalid ~ label::after{
	content: "*";
}

.cntBox .frmBox input:focus ~ label,
.cntBox .frmBox input:valid ~ label {
	top: -27px;
	left: 4;
	color: #2c4364;
	font-size: 13px;
}

.cntBox .frmBox textarea .validate:invalid ~ label {
	top: -27px;
	left: 4;
	color: #851414;
	font-size: 13px;
}

.cntBox .frmBox textarea:focus ~ label,
.cntBox .frmBox textarea:valid ~ label {
	top: -27px;
	left: 4;
	color: #2c4364;
	font-size: 13px;
}

.cntBox button {
	color: #fff;
	background-color: #0e7a02f4;;
	/*width: 80px;
	height: 30px;*/
	border: none;
	/*left: 46%;*/
	/* align-content: center; */
	/* align-items: center; */
	/*position: absolute;*/
	padding: 10px 40px;
	border-radius: 5px;
	font-size: 16px;
}

.cntBox button:hover {
	background-color: #5dcf50;;
}

.cntBox form a {
	position: relative;
	display: inline-block;
	padding: 10px 20px;
	color: #2c4364;
	font-size: 16px;
	text-decoration: none;
	text-transform: uppercase;
	overflow: hidden;
	transition: .5s;
	margin-top: 40px;
	letter-spacing: 4px;
}

.cntMensaje {
	padding: 60px 0px 75px 0px;
	text-align: center;
}

.cntMensaje button{
	margin-top: 30px;
}

.msgmailsuccess{
	color: #fff;
	background: #0dcaf0;
    border-radius: 6px;
}

.msgmailerror{
	color: #fff;
	background: #dc3545;
    border-radius: 6px;
}
  
@media screen and (min-width: 768px) {
  
	.sectionTab .tabTitle {
		position: relative;
		width: 30%;
		height: 20%;
		display: block;
	}
	
    .sectionTab .tabContent {
		position: absolute;
		width: 69%;
		right: 0;
		top: 0;
		padding: 1em;
    }
	
	.sectionTab .activetab {
		background-color: #387c41;
	}    	
}
  
@media screen and (max-width: 768px) {
    .cntBox {
		width: 95%;
	}
}


