@font-face {
		font-family: PT-Sans;
		src: url('fonts/PT-Sans.ttf');
} 
@font-face {
		font-family: OpenSans-ExtraBold;
		src: url('fonts/OpenSans-ExtraBold.ttf');
}
@font-face {
		font-family: Poppins-Regular;
		src: url('fonts/Poppins-Regular.ttf');
}
/*Comienzan CUSTOM ScrollBars*/
	/*Inicia para Chrome, Safari y Edge*/ 
		.sB-t::-webkit-scrollbar {
	  		width: 0px;/*Ancho de la barra scroll*/
	  	}
		.sB-t::-webkit-scrollbar-track {
			background-color: transparent;/*Color del carril de fondo donde se desplaza el thumb*/
		}
		.sB-t::-webkit-scrollbar-thumb {
	  		background: transparent;/*Color de la Barra que se va a desplazar*/
		}   
		.sB-t::-webkit-scrollbar-thumb:hover {
	  		background: transparent;/*Color de la Barra que se va a desplazar al pasar el puntero*/
		}
	/*Termina para Chrome, Safari y Edge*/

	/*Comienza para Firefox*/	
		.sB-t {
	  		scrollbar-width: thin; /* "auto" or "thin" */
	  		scrollbar-color: transparent transparent; /* scroll thumb and track */
		} 
	/*Termina para Firefox*/
/*Terminan CUSTOM ScrollBars*/ 

h1, h2, h3, h4{
	font-family: OpenSans-ExtraBold;
}

*{
	width: 100%;
	margin: 0;
	padding: 0;
}

body{
	min-width: 330px;
 	display: flex;
 	justify-content: space-around;
 	align-items: center;
 	height: 100dvh;
 	background-color: #ece2e2;
	font-family: Poppins-Regular, Arial, sans-serif;
	font-size: 1em;
	line-height: 1.34;
	margin: 0;
	padding: 0; 
	overflow: hidden;
	color: #333;
}

body > div.container-all{
	height: 100%;
	width: 100%;
	max-width: 100%;
	overflow: auto;
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: center;
}

header, footer{ 
	background-repeat: no-repeat;
	background-origin: content-box;
	background-size: cover;
	background-position: center;
	max-width: 2050px;
}

header{
	max-height: 630px;
  position: relative;
}

footer{
	height: auto; 
	max-height: fit-content;
	background-image: url(../images/banner/footer.jpg);
	position: relative;
}

.littlePopUp {
  position: absolute;
  top: 100vh;
  z-index: 100;
  width: auto;
  max-width: 320px;
  border-radius: 30px;
  text-align: center;
  padding: 10px 20px;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 90%;
  transition: top 0.3s;
  background-color: #333;
  color: white;
  min-width: 200px;
  border: 2px solid #ffffff5e;
} 

header > .rrss {
  position: absolute;
  right: .5em;
  bottom: 0;
  width: fit-content;
	text-align: right;
}

header > .rrss > div {
  margin-bottom: 5px;
}

header > .rrss > div a{
	color: white;
}

header > .rrss > div i{
	font-size: 1.5em;
	min-width: 1.6em;
	height: 1.6em;
	text-align: center;
	background: #8bc03f;
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 1.6em;
	margin-left: 4px;
} 

nav{
	max-width: 2050px;
	height: 120px; 
	min-height: 120px;
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	z-index: 1;
}
nav.scrolled {
	position: fixed;
	background-color: #ece2e2db;
	/*border-bottom: 4px solid #783218;*/
	z-index: 10;
	transition: all .4s linear;
	top: -124px;
	left: auto;
	/*box-shadow: 0 -5px 25px #000;*/
	box-shadow: 0 9px 14px -11px #000;
	backdrop-filter: blur(5px);
}
/*nav.scrolled::before{
	content: '';
	width: 100%;
	height: 6px;
	background-color: #8cbf00;
	position: absolute;
	bottom: 0px;
}*/
nav.scrolled i.fa-bars{
	color: #783218;
	border-color: #783218;
	backdrop-filter: none;
	background: transparent;
}
nav > div.logotype{
	width: 45%;
	max-width: 345px;
	position: absolute;
	left: 0;
	top: 0;
}
nav.scrolled > div.logotype{
	max-width: 300px;
}
nav > div.logotype > img{ 
	padding: 20px;
	cursor: pointer;
}

nav > div.options{
	width: auto;
}
nav > div.options > a{
	border: 1px solid transparent;
	padding: 10px 20px;
	border-radius: 12px;
	margin: 0 10px;
	color: white;
	background-color: #0000003d;
	cursor: pointer;
	text-decoration: none;
	backdrop-filter: blur(10px);
	font-weight: bold;
}
nav > div.options > i.fa-times{
	display: none;
}
nav > div.options > a.active{
	background-color: #783218;
	border: 1px solid #783218;
}
nav > div.options > a:hover{
	border: 1px solid white;
}
nav > i.fa-bars{
	display: none;
	cursor: pointer;
	color: white;
	font-size: 35px;
	padding: 6px 10px;
	border-radius: 14px;
	border: 5px solid white;
	margin: 0 30px 10px 0;
	background-color: #0000005e;
	backdrop-filter: blur(8px);
	z-index: -1;
}

header > div.wellcome{
	height: calc(100dvh - 120px); 
	display: flex;
	min-width: 100%;
	justify-content: start;
	align-items: end;
	box-sizing: border-box;
	padding: 10px;
	position: relative;
	overflow: hidden;
	max-height: 510px;
}
header > div.wellcome.center{
	justify-content: center;
	align-items: center;
}
header > div.wellcome.center h1{
	font-size: 80px;
}
header > div.wellcome.center .center{
	text-align: center;
}
header .shape.center{
	display: none;
}
header > div.wellcome > div{
	max-width: 500px;
	/*background-color: #00000061;*/
	/*text-align: center;*/
	text-align: left;
	color: white; 
	/*padding: 2px;*/
	padding: 2px 2px 2px 15px;
	border-radius: 15px;
	/*backdrop-filter: blur(8px);*/
	text-shadow: 2px 2px 2px black; 
	font-size: 22px;
}

header > div.wellcome > div h1{
	font-size: 70px;
}
body.from-us header > div.wellcome > div h1 {
  font-size: 54px;
}
header > div.wellcome > div P{
	opacity: 0.9;
	font-size: 95%;
}

header > div.wellcome .changeWithBg{
	position: absolute;
	left: -600px;
	bottom: 600px;
}
header > div.wellcome .changeWithBg:first-child{
	left: 0;
	bottom: 0;
}
h1{
	font-size: 45px;
} 
p{
	margin-top: 15px;
}
button{
	max-width: 240px;
	padding: 15px 10px;
	border-radius: 8px;
	background-color: #8bc03f;
	color: #262626;
	margin: 15px 5px;
	border: none;
	font-weight: bold;
	cursor: pointer;
	white-space: nowrap;
	transition: background-color 0.3s ease;
	box-shadow: 1px 2px 2px 1px #8683807d;
}
button > i{
	width: auto;
	padding-right: 8px;
}

button > img.loadingButton{
	width: 30px;
	max-width: 30px;
}
header > div.wellcome > div button{
	margin: 45px auto 25px;
	max-width: 100%;
}

button:hover{
	color: white;
	background-color: #783218;
}

header .containerBannerBg{
	position: absolute;
	top: 0;
	z-index: -1;
	height: 100%;
}
header .containerBannerBg > .bannerBg{
	position: relative;
	height: 100%;
	overflow: hidden;
}
header .containerBannerBg > .bannerBg > img{
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
	opacity: 0;
	position: absolute;
	transition: opacity 1.5s ease-in-out;
}
header .containerBannerBg > .bannerBg > img:first-child{
	opacity: 1;
}

header .containerBannerBg > .bannerBg > .shape{
	width: calc(100% - 25em);
	height: 100%;
	z-index: 1;
	position: absolute;
	top: -180px;
	right: 0;
	border-bottom-left-radius: 87%;
	border-bottom: 1000px solid #00000059;
	border-left: 1000px solid #00000059;
}

header .containerBannerBg > .bannerBg > .shape::before{

}

section.tours,
section.us,
section.history,
section.video-presentation,
section.our-clients,
section.why-us{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 25px auto;
	padding: 25px 0;
}
section.video-presentation{
	flex-direction: column;
}
.container-section{
	max-width: 1200px;
	padding: 10px;
	box-sizing: border-box;
}
section.us{
	align-items: flex-start;
	justify-content: space-between;
	max-width: 1200px;
}

section.us.loc_us{
	margin-bottom: 80px;
	flex-wrap: wrap;
}

p.subtittle{
	font-size: 1.3em;
	color: #333333ba;
	margin-top: 18px;
}


/*Tours section*/

div.tours-container{
	display: flex;
	justify-content: start;
	align-items: flex-start;
	margin: 38px auto 10px;
	overflow: auto;
	padding: 12px 2px 30px;
	box-sizing: border-box;
} 
body.from-home section.tours > .container-section{
	position: relative;
	z-index: 0;	
} 

.container-slide-buttons {
	position: absolute;
	top: 340px;
	z-index: 2;
}

.container-slide-buttons > .slideButtons{
	position: relative;
	display: flex;
	justify-content: space-between;
}

.container-slide-buttons > .slideButtons > button{
	position: absolute;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	font-size: 42px; 
	transition: all .5 linear;
	margin: 0;
	background-color: #783218;
	color: #ece2e2;
}
.container-slide-buttons > .slideButtons > button:hover{
	background-color: #ece2e2;
	color: #333;
}
.container-slide-buttons > .slideButtons > button i{
	padding: 0;
}
.container-slide-buttons > .slideButtons > button:first-child{
	left: -20px;
}

.container-slide-buttons > .slideButtons > button:last-child{
	right: -10px;
}

section.tours.loc_tours > .container-section {
	width: 100%;
	max-width: 100%;
	display: flex;
	justify-content: center;
} 
div.tours-container > div.tour{
	min-width: 330px;
	width: calc(33.33% - 30px);
	margin: 0 15px;
	padding: 10px;
	box-sizing: border-box;
	border-radius: 16px;
	box-shadow: 0 2px 5px 1px #3333334f;
	position: relative;
} 
div.tours-container > div.tour:first-child{
	margin-left: 0;
}
div.tours-container > div.tour:last-child{
	margin-right: 0; 
}
div.tours-container > div.tour div.price{
	position: absolute;
	right: 10px;
	width: 90px;
	bottom: 66px;
	border: 1px solid #33333369;
	padding: 2px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
	font-size: 80%;
}
div.tours-container > div.tour div.price > *{
	width: fit-content;
}
div.tours-container > div.tour div.price > h3{
	position: relative;
	margin-right: 14px;
	font-weight: lighter;
}
div.tours-container > div.tour div.price > h3 > span{
	position: absolute;
	width: fit-content;
	font-size: .6em;
	border-bottom: 1px solid #333;
	line-height: 1; 
	right: -14px;
	top: 2px;
}
div.tours-container > div.tour div.price > h3 > span:after{
	content: '';
	width: 100%;
	height: 1px;
	background-color: #333;
	display: inline-block;
	position: absolute;
	bottom: -3px;
	left: 0;
	opacity: 0.8;	
}
div.tours-container > div.tour div.price > small{
	opacity: .7;
}
li.strong{
	padding-top: 10px; 
	font-weight: bold;
	box-sizing: border-box;
}
ul{
	width: fit-content;
	padding-left: 15px;
	list-style: none;
}
ul > ul {
	padding-left: 20px;
	box-sizing: border-box;
	opacity: .8;
	font-size: 92%;
} 
div.tours-container > div.tour > div.cover{ 
	overflow: hidden;
	min-height: 280px;
	display: flex;
	position: relative;
}
div.tours-container > div.tour > div.cover > img{
	min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}
div.tours-container > div.tour > div.cover > label{
	position: absolute;
	background-color: #ece2e2;
	color: #1c1a1a;
	width: auto;
	padding: 10px 22px;
	border-top-left-radius: 15px;
	bottom: 0;
	right: 0;
	cursor: pointer;
	white-space: nowrap;
	font-size: 80%;
}
i{
	width: auto;
}
div.tours-container > div.tour > div.cover > label:hover{
	color: white;
	background-color: #783218;
}

div.tours-container > div.tour > p{
	width: calc(100% - 100px);
}

div.tours-container > div.tour > p.subtittle{
	font-size: .8em;
	height: 35px;
	overflow: hidden;
}

div.tours-container > div.tour > button{
	max-width: 100%;
	margin: 10px 0 0;
}

section.tours > .container-section > button{
	max-width: 100%;
	margin: 0 auto;
	background-color: transparent;
	border: 2px solid #ccc;
}
section.tours > .container-section > button:hover{
	color: #783218;
}


section.tours.loc_tours div.container-filter{
	position: relative;
	max-width: 320px;
	margin-right: 70px;
	min-width: 320px;
	height: fit-content;
}
section.tours.loc_tours div.container-filter button{
	display: none;
}
section.tours.loc_tours form.container-filter{
	max-width: 320px;
	padding: 15px 30px;
	box-sizing: border-box;
	background-color: whitesmoke;
	border-radius: 17px;
	height: fit-content;
}
section.tours.loc_tours form.container-filter.scrolled{
	position: fixed;
  top: 20px;
  bottom: auto;
  z-index: 2;
  bottom: auto;
}
section.tours.loc_tours div.container-filter.end{
	height: auto;	
}
section.tours.loc_tours div.container-filter.end > form.container-filter.scrolled.end{
	position: absolute;
	bottom: 60px;
	top: auto;
}
section.tours.loc_tours div.container-filter * {
	width: fit-content;
}
section.tours.loc_tours div.container-filter form{
	width: 100%;
}
section.tours.loc_tours div.container-filter div.option{
	font-size: 1.22em;
	width: 100%;
}
section.tours.loc_tours div.container-filter div.option > label{
	display: flex;
	width: 100%;
	box-sizing: border-box;
	padding: 20px 30px;
	border-bottom: 1px solid #3333332e;
	cursor: pointer;
}
section.tours.loc_tours div.container-filter div.option > label > input{
	margin-right: 10px;
}

section.tours.loc_tours div.tours-container{
	overflow: hidden;
	flex-wrap: wrap; 
	padding: 5px 15px;
	margin: 0;
	width: min-content;
	min-width: 770px;
	height: fit-content;
}
section.tours.loc_tours div.tours-container > div.tour{
	width: calc(100% - 30px);
	max-width: 340px;
	margin-bottom: 60px;
}
section.tours.loc_tours div.tours-container > div.tour:first-child {
  	margin-left: 15px;
}

/*Nosotros*/

section.us.loc_home > div.container-section{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
} 
section.us.loc_home div.info,
section.us.loc_home div.img{
	width: calc(50% - 20px);
	min-width: 470px;
	margin-top: 45px;
	display: flex;
	flex-direction: column;
}

/*section.us.loc_home div.info > p{
	font-family: ARCENA;
	font-size: 1.4em;
	opacity: .8;
}*/

section.history h1{
	text-align: center;
}
section.us.loc_us > div.container-card{
	width: 33.33%;
	min-width: 330px;
	display: flex;
	justify-content: center;
	align-items: center;
} 
section.us.loc_us > div.container-card > div.card{
	width: calc(100% - 20px);
	min-height: 400px;
	max-width: 270px;
	border-radius: 20px;
	background: linear-gradient(100deg, rgba(2,0,36,0.1) 0%, rgb(236, 226, 226) 100%);
	box-shadow: 5px 5px 10px -4px #333;
}
section.us.loc_us > div.container-card > div.card > .header{
	position: relative;
	margin: 50px auto auto -15px;
	width: calc(100% + 30px);
	height: 60px;
	background-color: #8bc03f;
	border-top-left-radius: 12px;
	border-bottom-right-radius: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
}
section.us.loc_us > div.container-card > div.card > .header:after{
	content: '';
	width: 15px;
	height: 15px;
	position: absolute;
	bottom: -15px;
	left: 0;
	background-color: #8bc03f;
	border-bottom-left-radius: 20px;
}
section.us.loc_us > div.container-card > div.card > .header:before{
	content: '';
	width: 15px;
	height: 15px;
	position: absolute;
	top: -15px;
	right: 0;
	background-color: #8bc03f;
	border-top-right-radius: 20px;	
}
section.us.loc_us > div.container-card > div.card p{
	padding: 0 15px;
	box-sizing: border-box;
	min-height: 116px;
	font-size: 90%;
}
section.us.loc_us > div.container-card > div.card h1 {
  text-align: center;
  margin: 15px auto 0;
  color: #783218;
}
section.us.loc_us > div.container-card > div.card p > strong{
	color: #783218;
}

section.us.loc_us > div.container-card > div.card > div > i{
  text-align: center;
  margin: 25px auto 50px;
  width: 100%;
  color: #8bc03f;
  font-size: 20px;
}

section.us div.img{
	border-radius: 15px;
	overflow: hidden;
}
section.us button{
	margin: 40px 0 0;
	min-width: 100%;
}

h2{
	width: auto;
}
section.video-presentation > iframe{
	width: calc(100% - 20px);
	height: auto;
	max-width: 800px;
	min-height: 480px;
	margin-top: 20px;
	border-radius: 15px;
	border-left: 8px solid #8bc03f;
	border-right: 8px solid #783218;
	padding: 8px 0;
	background-image: linear-gradient(-48deg, #783218 35%, #8bc03f 60%);
}
section.video-presentation video{
	width: 100%;
	height: auto;	 
	border-radius: 15px;	
}

section.video-presentation video.square{ 
	width: 50%;
	height: fit-content;
	max-width: 570px;
	border-left: 8px solid #8bc03f;
	border-right: 8px solid #783218;
	padding: 8px 0;
	background-image: linear-gradient(-48deg, #783218 35%, #8bc03f 60%);
	box-sizing: border-box;
	min-width: 445px;
}

section.video-presentation > .container-section{
	display: flex;
	flex-wrap: wrap;
	margin-top: 100px;
}

section.video-presentation > .container-section > div{
	width: calc(50% - 20px);
	min-width: 425px;
}

section.our-clients > .container-section > .container-section{
	max-width: 1200px;
	margin: 0 auto;
}

div.container-testimonial{
	width: 100%;
	display: flex;
	justify-content: start;
	align-items: center;
	margin: 0 auto;
	overflow: hidden;
}
div.container-testimonial > div.testimonial{
	width: 100%;
	min-width: 100%;
	padding: 30px 50px;
	box-sizing: border-box;
}
div.testimonial > div.border{
	width: calc(100% - 50px);
	max-width: 800px;
	border-radius: 21px;
	background: #e0e0e0;
	box-shadow: 0px 2px 8px -2px #333333a1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 50px;
	box-sizing: border-box;
	min-width: calc(100% - 50px);
	margin: 0 100px 0 25px;
	position: relative;
	overflow: hidden;
	user-select: none;
}

div.testimonial > div.border > div{
	width: calc(50% - 20px);
}
div.testimonial > div.border > div.text{
	height: auto;
	border-radius: 15px; 
	padding: 15px 20px; 
	display: flex;
	justify-content: center;
	align-items: center;
}
div.testimonial > div.border > div.text > p{
	text-align: left;
	margin: 0;
	font-size: 22px;
	opacity: .9;
}

div.testimonial > div.border > div.img{
	display: flex;
	justify-content: center;
	align-items: center;
}

div.testimonial > div.border > div.img > div.photo{
	width: 90px;
	height: 90px;
	min-width: 90px;
    min-height: 90px;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
div.testimonial > div.border > div.img > div.photo > img{
	min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center
}

div.testimonial > div.border > div.img > div.label{
	width: auto;
	padding-left: 15px;
}

div.testimonial > div.border > div.bar{
	height: 10px;
	background-color: #00000014;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

div.pointer{
	display: flex;
	width: auto;
	justify-content: center;
	align-items: center;
	height: 20px;
	margin-bottom: 140px;
}

div.pointer > div{
	width: 12px;
	height: 12px;
	cursor: pointer;
	border-radius: 50%;
	background-color: red;
	transition: all .1s ease-out;
	margin: 0 10px;
	background-color: #783218;
}
div.pointer > div.focused{
	width: 20px;
	height: 20px;
	background-color: #8cbf00;
}

section.why-us{

}
section.why-us > .container-section{
	text-align: center;
} 
section.why-us > .container-section > div{
	border-radius: 10px; 
	padding: 16px;
	box-sizing: border-box;
	margin: 25px auto 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: left;
}
section.why-us > .container-section > div.call{
	box-shadow: 0 2px 8px -3px #333;
	max-width: 890px;
	padding: 16px 48px;
}
section.why-us > .container-section > div.stats{
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
	border: none;
	padding-top: 0;
	margin-top: 10px;
}

section.why-us > .container-section > div.stats > div{
	width: calc(33.33% - 60px);
	min-width: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
}

section.why-us > .container-section > div.stats > div > div{
	max-width: calc(100% - 10px);;
	text-align: center;
	margin: 20px auto;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0px -10px 10px -8px #3333335e;
	background: linear-gradient(180deg, #8bc03f, #ece2e2 100%);
	font-weight: bold;
	color: #ece2e2;
	position: relative;
	box-sizing: border-box;
}
section.why-us > .container-section > div.stats > div > div > h1{
	text-shadow: 2px 2px 8px #8bc03f, -2px -2px 8px #8bc03f, -1px -1px 0px #8bc03f, 1px 1px 0px #8bc03f;
	font-size: 4.5em;
}
section.why-us > .container-section > div.stats > div > div > span {
  color: #783218;
	margin-top: 5px;
	display: inline-block;
	font-size: 1.1em;
	font-weight: lighter;
}
section.why-us > .container-section > p.subtittle.boxed{
	max-width: 890px;
	margin: 30px auto 0px;
	text-align: left; 
	box-shadow: 2px 2px 8px 3px #ccc;
	padding: 15px 20px;
	box-sizing: border-box;
	border-radius: 14px;
} 


section.why-us > .container-section > .video-presentation{
	margin-top: 4em;
	max-width: 1200px;
}
section.why-us > .container-section > .video-presentation > .container-section{
	padding: 0;
	justify-content: space-between;
}
section.why-us > .container-section > .video-presentation > .container-section > div > h2,
section.why-us > .container-section > .video-presentation > .container-section > div > p{
	text-align: left;
}
section.why-us > .container-section > .video-presentation > .container-section > div > p{
	margin-top: 15px;
}
section.why-us > .container-section > .video-presentation > .container-section > div > button{
  margin: 20px auto 0;
  max-width: 100%;
}
.uta-logo_why-us.stat{
	max-width: 70px;
	position: absolute;
	right: 5px;
	top: 5px;
}

.uta-logo_why-us{
	max-width: 200px;
	margin-right: 15px;
	margin-top: 10px;
	border-top-left-radius: 8px;
}

.pay-logo_why-us{
	max-width: 200px;	
	margin: 6px 15px 6px 0;
}



.container_logosAll{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	border: none;
	margin-top: 40px;
	margin-bottom: 0;
	padding: 0;
}

.container_logosAll > div{
	width: calc(33.33% - 60px);
}

.container_logosAll > div img{
	width: 100%;
	max-width: 100%;
}

.container_logosAll.center{
	justify-content: center;
}

.container_logosAll.center > div:first-child{
		margin-right: 15px;
}
.container_logosAll.center > div:last-child{
		margin-left: 15px;
}

section.why-us > .container-section > div > a{
	margin: 0;
	width: 240px;
} 

footer > div.bye{ 
	background-color: #000000a3;
	display: flex;
	min-width: 100%;
	justify-content: space-around;
	align-items: center; 
	flex-wrap: wrap;
	padding-top: 35px;
}
footer > div.bye > div{
	width: 50%;
	min-width: 660px;
	padding: 0 10px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}
footer > div.bye div.contact-us{
	max-width: 600px;
	text-align: center;
	color: white;
	background-color: #0000006b;
	padding: 20px;
	border-radius: 15px;
	box-sizing: border-box;
}
footer > div.bye div.contact-us > div{
	display: flex;
	justify-content: space-between;
}
footer > div.bye div.contact-us a{
	color: #ffffff94;
	margin-top: 5px;
}
footer > div.bye div.social{
	max-width: 600px;
	text-align: center;
	color: white;
	background-color: #0000006b;
	padding: 20px;
	border-radius: 15px;
	display: flex; 
	margin: 60px auto 0;	
	position: relative;
	justify-content: space-between;
	max-width: 512px;
	box-sizing: border-box;
}
footer > div.bye div.social:before{
	content: 'Visita nuestras redes:';
	position: absolute;
	top: -33px;
	left: calc(50% - 100px);
	width: 200px;
	background-color: #0000006b;
	padding: 9px 5px 4px;
	box-sizing: border-box;
	border-radius: 12px 10px 0 0;
	color: #ffffffa3;
	font-size: 90%;
}
footer > div.bye div.social a{
	max-width: 60px;
	text-decoration: none;
	color: #fff;
}
footer > div.bye div.social a:hover{
	color: #783218;
	font-weight: bold;
}
footer > div.bye div.social i{
	font-size: 35px;
	background-color: #8bc03f;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

footer > div.bye > div:first-child > img{
	max-width: 170px;
}

footer > div.bye > div:first-child > div {
	display: flex;
	color: #ffffffe3;
	justify-content: space-around;
	background-color: #0000006b;
	border-radius: 15px;
	padding: 10px;
	box-sizing: border-box;
	margin-top: 40px;
	max-width: 650px;
	font-size: 80%;
	line-height: 1.8;
}
footer > div.bye > div:first-child > div.dir-our-tours{
	position: relative;
	padding-top: 40px;
}
footer > div.bye > div:first-child > div.dir-our-tours > b{
	position: absolute;
	top: 12px;
	left: auto;
	width: auto;
}

footer > div.bye > div:first-child > div ul > li.strong{
	list-style: none; 
	margin-bottom: 6px;
	padding-top: 2px;
}
footer > div.bye > div:first-child > div ul{ 
	min-width: 100px;
}

footer > div.bye > div:first-child > div ul a{
	color: white;
	opacity: 0.7;
	text-decoration: none;
}
footer > div.bye > div:first-child > div ul a:hover{
	opacity: 1;
	text-decoration: underline;
}
form > div{
	display: flex;
	justify-content: space-between;
}

input, textarea{
	border-radius: 15px;
	padding: 20px 25px;
	box-sizing: border-box;
	border: none;
}
textarea{
	min-height: 300px;
}

input[type=text], input[type=tel]{
	width: calc(50% - 10px);
	margin: 20px 0 0;
	background-color: #ece2e2;
}
input[type=mail]{
	margin: 20px auto;
	background-color: #ece2e2;
} 


footer > div.dev{
	background-color: #000000a3;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 50px 0 0;
}
footer > div.dev p{
	margin: auto;
	text-align: center;
	color: #978e8e;
	background-color: #0000006b;
	padding: 20px 0;
	box-sizing: border-box;
}

/*Comienza pantalla modelo de tour one by one*/
	section.tour-description {
		display: flex;
		justify-content: center;
		margin-top: 70px;
		flex-direction: column;
		align-items: center;
	}
	section.tour-description > .container-section{
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		flex-wrap: wrap;
	}
	section.tour-description > .container-section.details{
	  margin-top: 50px;
	  font-size: 1.3em;
	}
	section.tour-description div.container-block{
		width: calc(50% - 20px);
		min-width: 470px;
	}
	section.tour-description h3{
		margin-top: 2px;
		color: #333333e3;
	}
	section.tour-description p.subtittle{
	  font-size: 1.2em;
	  margin-top: 5px;
	}

	section.tour-description div.container-block.img{
		border-radius: 20px;
		display: flex;
		justify-content: flex-start;
		align-items: center; 
		height: 405px;
		overflow: hidden;
		position: relative;
	}

	section.tour-description div.container-block.img > div.container-buttons{
		width: calc(100% - 20px);
		position: absolute;
		top: auto;
		left: 10px;
		display: flex;
		justify-content: space-between;
	}

	section.tour-description div.container-block.img > div.container-buttons > button{
		width: auto;
		font-size: 2.5em;
		color: #ccc;
		padding: 0;
		border-radius: 0;
		margin: 0;
		line-height: 1em;
		background: transparent;
	}

	section.tour-description div.container-block.img > div.container-buttons > button i,
	div.container-section.places > div.container-buttons > button > i{
		margin: 0;
		padding: 0;
	}

	section.tour-description div.container-block.img > div.container-img{
		width: 100%;
		min-width: 100%;
		height: 100%;
		overflow: hidden;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	section.tour-description div.container-block.img > div.container-img:first-child{
		margin-left: -100%;
	}

	section.tour-description div.container-block.img > div > img{
		width: 100%;
		height: 100%;
		min-width: 100%;
		min-height: 100%;
		object-fit: cover;
		object-position: center center;
	}

	section.tour-description div.container-block.presentation > h1{
		font-size: 2.5em;
	}
	section.tour-description div.container-block.presentation > div.hashes{
	  margin: 20px auto 15px;
	  overflow: hidden;
		display: flex;
		flex-wrap: wrap;
	}
	section.tour-description div.container-block.presentation > div.hashes > label{
		  padding: 6px 20px;
		  border-radius: 6px;
		  box-shadow: 0 1px 3px -3px #333;
		  border: 1px solid #3333;
		  width: fit-content;
		  margin: 5px 15px 5px 0;
		  font-weight: bold;
		  color: #333333d9;
	}
	section.tour-description div.container-block.presentation > button {
	  width: 100%;
	  min-width: 100%;
	  margin: 20px auto 0;
	}
	section.tour-description div.container-block.presentation > div.prices{
		display: flex;
		justify-content: flex-start;
	}
	section.tour-description div.container-block.presentation > div.prices > div.price{
		width: fit-content;
		min-width: 130px;
		padding: 0;
		box-shadow: 0 1px 3px -3px #333;
		border: 1px solid #3333;
		border-radius: 9px;
		display: flex;
		justify-content: space-between;
		position: relative;
		margin-right: 40px;
		cursor: pointer;
	}
	section.tour-description div.container-block.presentation > div.prices > div.price > div.data{
		
	}
	section.tour-description div.container-block.presentation > div.prices > div.price > div.data > .header{
		height: 25px;
		display: flex;
		justify-content: space-between;
	}
	section.tour-description div.container-block.presentation > div.prices > div.price > div.data > .header > div{
		text-align: center;
	}
	section.tour-description div.container-block.presentation > div.prices > div.price > div.data > .header > .days{
		padding: 2px 3px 2px 6px;
	}
	section.tour-description div.container-block.presentation > div.prices > div.price > div.data > .header > .nights{
		padding: 2px 6px 2px 3px;	
	}
	section.tour-description div.container-block.presentation > div.prices > div.price > div.data > .body{
		padding: 4px 0;
		box-sizing: border-box;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	section.tour-description div.container-block.presentation > div.prices > div.price > div.data > .body > h2{
		position: relative;
		margin-left: -12px;
	}
	section.tour-description div.container-block.presentation > div.prices > div.price > div.data > .body > h2 > span{
		position: absolute;
		font-size: .6em;
		font-weight: lighter;
		border-bottom: 2px solid #333;
		width: fit-content;
		line-height: 13px;
		top: 4px;
		right: -20px;
	}
	section.tour-description div.container-block.presentation > div.prices > div.price > div.data > .footer{
		position: absolute;
		background-color: #ece2e2;
		width: 20px;
		height: 20px;
		border-radius: 50%;
		bottom: -4px;
		right: -10px;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 0.8em;
		box-shadow: 0 1px 3px -3px #333;
		border: 1px solid #3333;
	}
	section.tour-description div.container-block.presentation > div.prices > div.price > div.data > .footer.selected{
		background-color: #8bc03f;
	}


	section.tour-description .container-section.places{
		margin-top: 30px;
	}
	section.tour-description .container-section.places > h2{
		margin: 14px;
	}
	section.tour-description div.container-places {
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: 230px;
		overflow: auto;
		position: relative;
	}
	section.tour-description div.container-places > .container-img{
		width: calc(40% - 20px);
		min-width: 370px;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0 10px;
	}
	section.tour-description div.container-places > .container-img:first-child{
		margin-left: 0;
	}
	section.tour-description div.container-places > .container-img:last-child{
		margin-right: 0;
	}
	section.tour-description div.container-places > .container-img > img{
		height: 100%;
		object-fit: cover;
		border-radius: 18px;
	}

	div.container-section.places > div.container-buttons{
		display: flex;
		justify-content: space-between;
		margin-top: -135px;
		z-index: 2;
	}
	div.container-section.places > div.container-buttons > button{
		width: auto;
		font-size: 2.5em;
		color: #333;
		padding: 2px 4px;
		border-radius: 8px;
		margin: 0;
		line-height: 1em;
		background: #ece2e2;
		box-shadow: none;
	}
	div.container-section.places > div.container-buttons > button.left{
		margin-left: -10px;
	}
	div.container-section.places > div.container-buttons > button.right{
		margin-right: -10px;
	}
/*Termina pantalla modelo de tour one by one*/

/*Empieza el popUp RESERVAS*/
	.container-reserveWindow{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100dvh;
		background-color: #333333ab;
		backdrop-filter: blur(3px);
		display: flex;
		justify-content: center;
		align-items: center;
		z-index: 11;
	}
	.container-reserveWindow > .reserve-window{
		width: calc(100% - 10px);
		max-width: 450px;
		height: calc(100dvh - 80px);
		background-color: #eae5e5;
		overflow: hidden;
		display: flex;
		flex-direction: column;
		align-items: center;
		position: relative;
	}
	.container-reserveWindow > .reserve-window > i{
		position: absolute;
		right: 0;
		top: 0;
		padding: 10px;
		background: #3333334f;
		font-size: 19px;
		color: #ffffffa6;
		backdrop-filter: blur(5px);
		cursor: pointer;
	}
	.container-reserveWindow > .reserve-window > i:hover{
		color: white;
	}
	.container-reserveWindow > .reserve-window > h1{
		background-color: #8bc03f;
		text-align: center;
		font-size: 40px;
		padding: 10px;
		box-sizing: border-box;
	}
	.container-reserveWindow > .reserve-window > form{
		padding: 10px 70px;
		box-sizing: border-box;
		max-height: calc(100dvh - 154px);
		overflow: auto;
	}

	.container-reserveWindow > .reserve-window > form > h2{
		text-align: left;
		margin-top: 20px;
	}
	.container-reserveWindow > .reserve-window > form fieldset{
		border: none;
		margin-bottom: 10px;
	}
	.container-reserveWindow > .reserve-window > form fieldset > label{
		font-size: 90%;
	}
	.container-reserveWindow > .reserve-window > form fieldset > select{
	  padding: 20px 15px;
	  background: white;
	  border-radius: 14px;
	  border: none;
	  font-size: 100%;
	}
	.container-reserveWindow > .reserve-window > form input{
		width: 100%;
		margin: 0;
		background-color: #fff;
		font-size: 100%;
	}
	.container-reserveWindow > .reserve-window > form input[type='date']{
		font-size: 120%;	
	}
	.container-reserveWindow > .reserve-window > form button{
		min-width: 100%;
		margin: 30px 0 10px;
	}
/*Termina el popUp RESERVAS*/

/*Empieza la sección seminario*/
	section.from-seminary h1{
		font-size: 7em;
	}
/*Termina la sección seminario*/

@media screen and (max-width: 1050px){
	nav div.options{
		display: none;
		width: 100%;
		min-width: 100%;
		position: fixed;
		top: 0;
		left: 0;
		background-color: #333;
		height: 100dvh;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		transition: all .5s ease-out;
	}
	nav > div.options > a {
	  	width: auto;
	  	margin: 15px auto;
	}
	nav > div.options > i.fa-times{
		display: block;
		color: white;
		position: fixed;
		top: 25px;
		right: 25px;
		padding: 10px;
		border: 2px solid white;
		border-radius: 7px;
		z-index: 2;
		cursor: pointer;
	}
	nav i.fa-bars{
		display: block;
	}

	header .containerBannerBg > .bannerBg > .shape {
	  height: calc(100vh - 200px);
	  transform: translate(10px, 0) rotate(20deg);
	  width: 100%;
	  right: -45px;
	}

	.container-slide-buttons > .slideButtons > button:first-child{
		left: 0;
	}

	.container-slide-buttons > .slideButtons > button:last-child{
		right: 20px;
	}

	section.us.loc_us {
	  justify-content: space-evenly;
	}
	section.us.loc_us > div.container-card:last-child {
	  margin-top: 80px;
	}
}

@media screen and (max-width: 1300px){
	footer > div.bye {
		flex-direction: column-reverse;
	}
	footer > div.bye > div{
		margin-top: 30px;
	}

	footer > div.bye > div:last-child{
		margin-top: 80px;
	}
	section.tours.loc_tours div.container-filter {
	  margin-right: 10px;
	}
}

@media screen and (max-width: 1100px){
	section.tours.loc_tours div.tours-container {
	  min-width: unset;
	}
}

@media screen and (max-width: 900px){ 
	header {
	  max-height: 630px;
	}
	header .containerBannerBg > .bannerBg > .shape {
	  transform: translate(0, 0) rotate(35deg);
	  border: none;
	  width: 100%;
	  background-color: #00000059;
	  border-radius: 209px 222px 0 0;
	  right: auto;
	  bottom: -107px;
	  top: auto;
	  left: -130px;
	}

	header > .rrss {
	  right: 120px;
		bottom: unset;
		top: 37px;
		display: flex;
		z-index: 2;
	}

	/*Us*/ 
		section.us.loc_home > div.container-section {
		  flex-direction: column-reverse;
		}
		section.us.loc_home div.info,
		section.us.loc_home div.img{
			width: calc(100% - 20px);
		}
	/*Us*/
	section.video-presentation > iframe{
		min-height: 410px;
	}

	/*Why Us*/
		section.why-us > .container-section > .video-presentation > .container-section{

		}
		section.why-us > .container-section > .video-presentation > .container-section:first-child {
		  flex-direction: column-reverse;
		}
		section.video-presentation video.square {
		  width: calc(100% - 20px);
		  max-width: calc(100% - 20px);
		  margin-bottom: 10px;
		  min-width: unset;
		}
		section.video-presentation > .container-section > div{
			width: calc(100% - 20px);
		  max-width: calc(100% - 20px);
		  min-width: unset;
		}
	/*Why Us*/

	.container_logosAll.center > div {
	  width: calc(50% - 60px);
	} 

	footer > div.bye > div {
	  width: 100%;
	  min-width: auto;
	  max-width: 100%;
	  margin: 30px auto;
	  padding: 0;
	} 

	footer > div.bye > div:first-child > div {
		width: calc(100% - 10px);
		max-width: calc(100% - 10px);
		flex-wrap: wrap;
	}

	footer > div.bye > div:first-child > div ul {
	  padding-left: 20px;
	  width: 50%;
	  box-sizing: border-box;
	}

	/*Model Section*/
		section.tour-description div.container-block {
		  width: calc(100% - 40px);
		  min-width: calc(100% - 40px);
		  margin: auto;
		}
} 

@media screen and (max-width: 700px){
	/*Tours location tours*/
		section.tours.loc_tours > .container-section {
		  flex-direction: column;
		  align-items: center;
		}
		section.tours.loc_tours div.container-filter{
			width: 100%;
		  max-width: 100%;
		}
		section.tours.loc_tours div.container-filter form {
		  width: 100%;
		  max-width: 100%;
		  display: none;
		}
		section.tours.loc_tours div.container-filter button{
			display: block;
			width: 100%;
			max-width: 100%;
		}
	/*Tours location tours*/

	section.us.loc_us{
		flex-direction: column;
		align-items: center;
	}
	section.us.loc_us > div.container-card:nth-child(2) {
	  margin-top: 80px;
	}

	p.subtittle,
	div.testimonial > div.border > div.text > p,
	section.tour-description p.subtittle {
		font-size: 1.1em;
	}

	p.subtittle{
		margin-top: 18px;
	}
} 

@media screen and (max-width: 500px){
	body > div.container-all{
		height: calc(100% - 1px);
	}
	header, header > div.wellcome{
		max-height: unset;
	}
	nav div.options{
		display: none;
	}		
	nav i.fa-bars{
		font-size: 25px;
		padding: 6px 10px;
		border-radius: 10px;
		border: 3px solid white;
		margin: 0 24px 42px 0;
	}
	nav.scrolled {
		height: 100px;
	}
	nav.scrolled i.fa-bars{
		margin: 0 24px 0 0;
	}
	nav > div.logotype{
		width: 55%;
		max-width: 245px;
		position: absolute;
		left: 0;
		top: 0;
	}

	nav > div.logotype > img{
		padding: 15px;
	}

	header > div.wellcome > div {
		background-color: #00000061; 
		backdrop-filter: blur(.8px);
		padding: 6px;
		box-sizing: border-box;
		border-radius: 0;
		left: 0;
		position: absolute;
		bottom: 0;
		font-size: 100%;
	}

	header > div.wellcome > div h1{
		font-size: 30px;
	}

	header .containerBannerBg > .bannerBg > .shape {
		display: none;
	}

	header > .rrss {
	  top: 110px;
	  right: unset;
	  left: 10px;
	}

	fieldset {
		width: 100%;
	}
	  
	section.tours.loc_tours div.tours-container {
		width: 100%;
	  min-width: 100%;
	  max-width: 100%;
	  padding: 0;
	}
	section.tours.loc_tours div.tours-container > div.tour {
	  width: calc(100% - 2px);
		max-width: calc(100% - 2px);
		margin: 0 auto 40px;
	}
	div.tours-container > div.tour{ 
		min-width: 270px;
	  position: relative;
	  overflow: hidden;
	}
	section.tours.loc_tours div.tours-container > div.tour:first-child {
	  margin-left: auto;
	}
	section.tours.loc_tours div.tours-container > div.tour > div.cover{
		min-height: 270px;
	}

	section.tour-description {
	  margin-top: 0;
	}
	section.tour-description div.container-block.img {
	  max-height: 300px;
	}
	section.tour-description div.container-block {
	  width: 100%;
	  min-width: 100%;
	}
	section.tour-description > .container-section.details {
	  font-size: 1em;
	}

	div.tours-container > div.tour > div.cover {
	  min-height: 200px;
	}
	.container-slide-buttons,
	div.container-section.places > div.container-buttons {
		display: none;
	}

	section.video-presentation > iframe{
		min-height: 300px;
	}

	section.us.loc_home > div.container-section {
		flex-direction: column-reverse;
		justify-content: center;
		align-items: center;
	}
	section.us.loc_home div.info, section.us.loc_home div.img {
	  width: calc(100% - 20px);
	  min-width: calc(100% - 20px);
	  margin-top: 10px;
	} 

	h1{
		font-size: 38px;
	}

	section.video-presentation{
		padding: 0;
		margin-top: 80px;
	}
	section.video-presentation video.square {
	  width: 100%;
	  height: fit-content;
	  max-width: 100%;
	  margin-bottom: 20px;
	}

	section.video-presentation > .container-section > div {
	  width: 100%;
	  max-width: 100%;
	  padding: 0;
	}

	section.our-clients > .container-section{
		padding: 0px;
	}

	div.container-testimonial > div.testimonial{
		padding: 20px 0;
		box-sizing: border-box;
	}

	div.testimonial > div.border {
	  flex-direction: column-reverse;
	  padding: 20px 5px 5px;
	  width: calc(100% - 20px);
		margin: 0 auto;
		border-radius: 16px;
	}
	div.pointer {
	  margin-bottom: 40px;
	}
	.container_logosAll > div{
		width: calc(33.33% - 20px);
	}
	div.testimonial > div.border > div.img > div.photo {
	  	width: 75px;
	  	height: 75px;
	  	min-width: 75px;
	  	min-height: 75px;
	}
	div.testimonial > div.border > div {
	  width: 100%;
	}
	div.testimonial > div.border > div.text {
	  border: none;
	  box-sizing: border-box;
	}


	section.why-us {
	  padding: 25px 10px 0;
	  margin-bottom: 0;
	  box-sizing: border-box;
	}
	section.why-us > .container-section > div.call {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
	}

	section.why-us > .container-section > div.stats{
		padding: 0;
		justify-content: space-around;
	}

	section.why-us > .container-section > div.stats > div{
		width: calc(100% - 50px);
		max-width: 260px;
	}

	input[type="text"], input[type="tel"] {
	  width: calc(50% - 5px);
	}

	footer > div.bye div.contact-us,
	footer > div.bye div.social {
	  	width: calc(100% - 10px);
			max-width: calc(100% - 10px);
			box-sizing: border-box;
	}
	footer > div.bye div.contact-us{
		padding: 20px 10px;
	}

	footer > div.bye div.social {
		padding: 10px 5px;
		display: flex;
		justify-content: space-around;
		align-items: center;
	}

	.container-reserveWindow > .reserve-window > form {
  	padding: 10px;
  }
} 