@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
html { scroll-behavior: smooth; }
body {
	font-family: "Nunito Sans", sans-serif;
	margin: 0;
	padding: 0;
	font-size: 16px;
}
a { text-decoration: none; }
img { max-width: 100%; }
.container { width: 1200px; max-width: 98%; margin: 0 auto; }
.loader {
	display: none;
	width: 150px;
	text-align: center;
	position: fixed;
	top: 47%;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 10002;
}
.link{
	color: #fff;
}
.loader h1 { text-align: center; color: #ffffff; margin: 15px 0; }
.loader > div {
	width: 18px;
	height: 18px;
	background-color: #2b4e89;
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.loader > div.bounce1 { background-color: #14c0ea; }
.loader > div.bounce3 { background-color: #588dd6; }
.loader .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}
.loader .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
	0%, 80%, 100% { -webkit-transform: scale(0) }
	40% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bouncedelay {
	0%, 80%, 100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	} 40% {
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
	}
}
@media (min-width: 725px) {
    .tab-content{
        max-height: 90%;
        overflow-y: auto;
    }
}
.capaNegra {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10001;
	background-color: #000;
	opacity: 0.7;
	display: none;
}
.preHeader { box-sizing: border-box; padding: 20px 0; color: #5B5B5F; }
.preHeader .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.preHeader .container a { color: #5B5B5F; }
.preHeader .phone a { display: inline-block; margin: 0 5px; padding: 0 5px; }
.preHeader .phone a:last-child { border-left: 1px solid #000; padding-left: 15px; }
.dFlex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-flow: row wrap;
}
.whatsButton {
	color: #19CA3F;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-flow: row wrap;
}
.whatsButton a {
	display: block;
	border-radius: 20px;
	box-sizing: border-box;
	padding: 8px 15px;
	color: #fff !important;
	background: linear-gradient(45deg, #19CA3F, #19CA3F);
	margin-left: 15px;
}
.preHeader .container .icons {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.preHeader .container .icons a { margin-left: 8px; }
header {
	box-sizing: border-box;
	padding: 15px 0;
	background: linear-gradient(45deg, #234986, #0097A7);
}
header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
header .container a {
	display: block;
	border-radius: 20px;
	box-sizing: border-box;
	padding: 8px 15px;
	color: #fff;
	background-color: #234986;
	text-transform: uppercase;
}
h1 {
	overflow: hidden;
	width: 1px;
	height: 1px;
	position: absolute;
	top: -100px;
	left: -100px;
}
#home {
	position: relative;
	width: 100%;
}
#home .banner {
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url( '../images/banner.png' );
	background-position: bottom left;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-height: 55vh;
	color: #fff;
}
#home .banner .container { display: flex; justify-content: flex-end; }
#home .banner .content {
	text-align: center;
	width: 430px;
	max-width: 100%;
	background-color: rgba( 0, 0, 0, 0.3 );
	margin-top: -50px;
}
#home .banner h2 { margin: 0; font-size: 50px; }
#home .banner h3 { margin: 0; font-size: 30px; }
#home .filtros {
	position: absolute;
	margin: 0 auto;
	left: 0;
	right: 0;
	width: 1000px;
	max-width: 98%;
	background-color: rgba( 255, 255, 255, 0.7 );
	border-radius: 20px;
	border: 1px solid #000;
	box-sizing: border-box;
	padding: 20px;
	margin-top: -50px;
}
#home .filtros ul {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	margin: 0 0 15px;
	list-style: none;
}
#home .filtros ul li { width: 50%; }
#home .filtros ul li a {
	width: 99%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background-color: #5B5B5F;
	font-size: 20px;
	border-radius: 30px;
	height: 50px;
	transition: 0.4s all;
}
#home .filtros ul li a:hover, #home .filtros ul li a.active { background-color: #00185C; }
#home .filtros .inputDiv { width: 23%; margin: 1%; }
#home .filtros .inputDiv label {
	display: block;
	width: 100%;
	color: #00185C;
	font-weight: bold;
}
#home .filtros .inputDiv input, #home .filtros .inputDiv select {
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	border: none;
	outline: none;
}
#home .filtros .inputDiv input[type="text"], #home .filtros .inputDiv input[type="email"] { border-bottom: 1px solid #000; }
#home .filtros button, #contacto #contactoForm button {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background-color: #234986;
	font-size: 15px;
	font-weight: bold;
	border-radius: 25px;
	height: 40px;
	box-sizing: border-box;
	padding: 0 20px;
	border: none;
	outline: none;
	cursor: pointer;
}
#home .space { width: 100%; height: 250px; }
#nosotros h2 {
	color: #5B5B5F;
	text-align: center;
	font-size: 25px;
	font-weight: normal;
}
#nosotros h2 b { color: #234986; font-weight: bold; }
.iconosNosotros, .vehiculosLista {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: row wrap;
}
.iconosNosotros .icono {
	width: 25%;
	padding: 20px 50px;
	box-sizing: border-box;
	text-align: center;
	margin: 50px 0;
	border-right: 1px solid #234986;
}
.iconosNosotros .icono:last-child { border-right: 0; }
.iconosNosotros .icono img { width: 80px; height: auto; }
.iconosNosotros .icono h3 { color: #8A929A; font-weight: 900; text-align: center; }
.iconosNosotros .icono b { display: block; color: #234986; font-weight: 700; }
#vehiculos {
	width: 100%;
	background: linear-gradient(45deg, #234986, #0097A7);
	background-size: 100% 300px;
	background-repeat: no-repeat;
	box-sizing: border-box;
	padding: 50px 0;
}
#vehiculos h2 {
	color: #fff;
	text-align: center;
	font-weight: normal;
	font-size: 25px;
	margin: 0 0 50px;
}
#vehiculos h2 b { font-weight: bold; }
.vehiculosLista .vehiculo {
	width: 23%;
	margin: 1%;
	background-color: #fff;
	border-radius: 30px;
	text-align: center;
	box-sizing: border-box;
	padding: 10px;
}
.vehiculosLista .vehiculo h3 {
	text-transform: uppercase;
	font-weight: 900;
	color: #5B5B5F;
	font-size: 25px;
	margin: 0;
}
.vehiculosLista .vehiculo span {
	color: #5B5B5F;
	display: block;
	font-size: 12px;
}
.vehiculosLista .vehiculo a, #tours a.button {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background-color: #234986;
	font-size: 15px;
	font-weight: bold;
	border-radius: 25px;
	width: 100%;
	height: 40px;
	box-sizing: border-box;
	padding: 0 20px;
	margin: 40px 0;
}
#tours {
	background-color: #F2F2F2;
	box-sizing: border-box;
	padding: 50px 0;
}
#tours h2 {
	color: #5B5B5F;
	text-align: center;
	font-weight: normal;
	font-size: 25px;
	margin: 0 0 50px;
}
#tours h2 b { font-weight: bold; color: #274A83; }
#tours h3 { font-weight: 900; margin-bottom: 0; color: #5B5B5F; }
.swiper-container { overflow: hidden; position: relative; }
.swiper-wrapper { height: auto !important; }
#tours a.button { width: 200px; margin: 50px auto; }
#tours .swiper-slide .imagen {
	position: relative;
	overflow: hidden;
	border-radius: 30px;
}
#tours .swiper-slide .imagen .content {
	position: absolute;
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
	background-color: rgba( 0, 0, 0, 0.4 );
	color: #fff;
	z-index: 1;
	transition: 0.4s all;
	bottom: -500px;
	max-height: 100%;
	overflow-y: auto;
	font-size: 14px;
}
#tours .swiper-slide { border-bottom: 2px solid #274A83; padding-bottom: 20px; }
#tours .swiper-slide .imagen:hover > .content{ bottom: 0; }
#tours .swiper-slide .imagen .content ul { margin: 0; padding: 0; list-style: none; }
#tours .swiper-slide .imagen .content ul li i { color: #4BD37B; }
#tours .swiper-slide .imagen .content ul.red li i { color: #fc7b7b; }
#testimonial {
	padding: 50px 0;
	text-align: center;
	background-image: url( '../images/testimonial-fondo.png' );
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
#testimonial h2 {
	color: #274A83;
	text-align: center;
	font-size: 25px;
	margin: 0 0 50px;
}
#testimonial .testimonio {
	position: relative;
	width: 500px;
	max-width: 98%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#testimonial .testimonio img {
	min-width: 200px;
	height: 200px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 10px;
}
#testimonial .testimonio .info { text-align: left; }
#testimonial .testimonio .info h3 {
	color: #274A83;
	margin: 0;
	font-weight: 900;
}
#testimonial .testimonio .info span { font-style: italic; }
.buttonsSlide {
	width: 350px;
	max-width: 100%;
	margin: 0 auto;
	position: relative;
	margin-top: 20px;
}
.swiper-pagination-bullet { width: 15px; height: 15px; }
.swiper-pagination-bullet-active { background-color: #274A83; }
.swiper-button-next:after, .swiper-button-prev:after { display: none; }
.swiper-button-next, .swiper-button-prev { color: #274A83; font-size: 30px; box-sizing: border-box; }
#tours .swiper-button-next, #tours .swiper-button-prev { top: initial; bottom: -5px; }
.tRight { text-align: right; }
.tCenter { text-align: center; }
#contacto {
	box-sizing: border-box;
	padding: 50px 0;
	background: linear-gradient(45deg, #234986, #0097A7);
	color: #fff;
}
#contacto #contactoForm {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-flow: row wrap;
}
#contacto #contactoForm input, #contacto #contactoForm textarea {
	background-color: rgba( 255, 255, 255, 0.7 );
	color: #274A83;
	padding: 10px;
	box-sizing: border-box;
	border-radius: 10px;
	font-family: "Nunito Sans", sans-serif;
	border: none;
	outline: none;
	margin-right: 1%;
	margin-bottom: 15px;
	font-size: 17px;
}
#contacto #contactoForm input[type="text"] { width: 49%; }
#contacto #contactoForm input[type="email"], #contacto #contactoForm textarea { width: 99%; }
#contacto #contactoForm textarea { height: 100px; }
#contacto #contactoForm .tRight { width: 100%; }
.buttonRight {
	width: 99%;
	margin-top: 20px;
	display: flex;
	justify-content: flex-end;
}
footer { padding: 50px 0; }
footer a { color: #5B5B5F; }
.contactData p, .contactData a {
	margin: 15px 0;
	display: block;
}
.contactData .phone a { display: inline-block; margin: 0 5px; padding: 0 5px; }
.contactData .phone a:last-child { border-left: 1px solid #000; padding-left: 15px; }
.bTop {
	border-top: 1px solid #000;
	margin-top: 20px;
	padding-top: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-flow: row wrap;
}
.sociales {
	list-style: none;
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
}
.sociales li a {
	display: block;
	padding: 10px;
	margin-right: 10px;
}
.sociales li a span { visibility: hidden; width: 1px; height: 1px; overflow: hidden; display: block; }
.legales {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.legales li { margin-left: 10px; padding-left: 10px; text-align: center; }
.legales li:last-child { border-left: 1px solid #ccc; }
.filter-2 { display: none; }