/* Fonts */
@font-face{
	font-family: 'Lato';
	src: url('fonts/Lato-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: sans-serif;
}

@font-face{
	font-family: 'Lato';
	src: url('fonts/Lato-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: sans-serif;
}

@font-face{
	font-family: 'Lato';
	src: url('fonts/Lato-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: sans-serif;
}
@font-face{
	font-family: 'Poppins';
	src: url('fonts/Poppins-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: sans-serif;
}

@font-face{
	font-family: 'Poppins';
	src: url('fonts/Poppins-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: sans-serif;
}

@font-face{
	font-family: 'Poppins';
	src: url('fonts/Poppins-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: sans-serif;
}

/* Main Colors variables */
:root {
	--primary-color: #2657b9;
	--secondary-color: #0d0d0d;
	--third-color: #13112C;
	--four-color: #e96308;
	--five-color: #033d64;
	--max-width: 1200px;
	--back-color: black;
	--text-color: #403c3a;
}
/* Init CSS base */

a:link, a:visited, a:hover, a:focus, a:active
{
	color:none;
	text-decoration: none;
	display:block;
}

table
{
	border: none;
	border-top: none !important;
	border-left: none !important;
	border-collapse: collapse;
}

tr, td
{
	padding: 0px;
}

.site 
{
	margin: 0 auto;
}

body 
{
  overflow-x:hidden;
 	margin: 0px;
 	padding: 0px;
 	width: 100%;
}

body.no-scroll 
{      
  overflow-y: hidden;
}

html {
  overflow-x: hidden;
  height: 100%;
  width: 100%;
}

p, li, a, h1, h2, h3, div
{
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	color:var(--text-color);
}


h1, h2, h3, li
{
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
}

img	
{
	display: block;
}

/* GENERAL STYLES */
/*HEADER*/
.rightmenualign
{
	margin-left: auto;
}
.header_main_container
{
	width: calc(100% - 40px);
	background-color: white;
	min-height: 30px;
	padding: 20px;
	position: fixed;
	z-index: 3;
	box-shadow: -1px 10px 29px 1px rgba(0,0,0,0.42);
	-webkit-box-shadow: -1px 10px 29px 1px rgba(0,0,0,0.42);
	-moz-box-shadow: -1px 10px 29px 1px rgba(0,0,0,0.42);
}

.header_inner_container
{
	width: 100%;
	max-width: var(--max-width);
	display: flex;
	gap: 20px;
	margin: auto;
}

.header_logo
{
	width: 100%;
	max-width: 160px;
}

ul.menu-desktop
{
	list-style-type: none;
  display: inline-flex;
  padding: 0px;
  margin-top: 13px;
}

.menu-desktop li
{
	color: var(--back-color);
	padding: 5px 20px 0px 20px;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.8s ease;
}

.menu-desktop li a
{
	color: var(--five-color);
	font-weight: 400;
	cursor: pointer;
	transition: all 0.8s ease;
}

.menu-desktop li a:hover
{
	color: var(--primary-color);
	transition: all 0.8s ease;
}

.header_social_container
{
	margin-left: auto;
	display: flex;
	gap: 15px;
}

.header_contact
{
	color: white;
	margin-top: 16px;
}

.header_contact_divider
{
	color: var(--primary-color);
}

.header-social-icon
{
	width: 20px;
	height: 20px;
	margin-top: 16px;
}
/*FOOTER*/
.footer_main_container
{
	width: calc(100% - 40px);
	background-color: var(--secondary-color);
	min-height: 30px;
	padding: 60px 20px 40px 20px;
	margin-top: -2px;
}
.footer_inner_container
{
	width: calc(100% - 40px);
	max-width: var(--max-width);
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin: auto;
}

.footer_inner_container_last
{
	width: calc(100% - 40px);
	max-width: var(--max-width);
	margin: auto;
}

.footer_text
{
	color: white;
}

a.footer_text
{
	margin: 16px 0px;
}

.footer_title
{
	color: white;
	font-size: 18px;
	font-weight: 500;
}

.footer_social_container
{
	width: 37px;
  height: 30px;
  border-radius: 50px;
  padding-top: 9px;
	background-color: var(--primary-color);
}

.footer_social_icon
{
	width: 20px;
	height: 20px;
	margin-left: 9px;
}

.footer_contact_icon
{
	width: 20px;
	height: 20px;
	margin-top: 16px;
}

.whatsapp-container
{
	position: fixed;
	bottom: 35px;
	right: 35px;
}

.whatsapp-button
{
	width: 59px;
  height: 51px;
	background-color: #25D366;
	cursor: pointer;
	border-radius: 100px;
	padding-top: 9px;
	box-shadow: -1px 10px 29px 1px rgba(0, 0, 0, 0.42);
  -webkit-box-shadow: -1px 10px 29px 1px rgba(0, 0, 0, 0.42);
  -moz-box-shadow: -1px 10px 29px 1px rgba(0,0,0,0.42);
}

.whatsapp-button-icon
{
	display: block;
  margin-top: 0px;
  margin-left: 11px;
  width: 40px;
  height: 40px;
}
.footer_form_container
{
	width: calc(100% - 60px);
	margin: auto;
	max-width: 800px;
	background-color: white;
	border-radius: 25px;
	padding: 30px;
box-shadow: 10px 10px 22px 0px rgba(0,0,0,0.37);
-webkit-box-shadow: 10px 10px 22px 0px rgba(0,0,0,0.37);
-moz-box-shadow: 10px 10px 22px 0px rgba(0,0,0,0.37);
}

input, textarea {              
  border: 2px solid #eff3f9; 
  outline: none;             
  padding: 10px;            
  font-size: 18px;            
  width: calc(100% - 20px);              
  background: #eff3f9;
  font-family: 'Lato', sans-serif;
  color: black;
  border-radius: 10px;
}

textarea
{
	resize: none;
	min-height: 120px;
}

input:focus {
  
}

input::placeholder
{
	
}

.form_inner_none
{
	width: 100%;
}

.form_inner_double
{
	flex: 40%;
}

.footer_form_button
{
	background-color: var(--four-color);
	border-radius: 20px;
	padding: 20px 20px;
	font-family: 'Lato', sans-serif;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	color: white;
	max-width: 150px;
	cursor: pointer;
	transition: all 0.5s ease;
}

.form-general-text
{
	font-family: 'Lato', sans-serif;
	font-size: 18px;
	font-weight: 400;
	text-align: left;
	color: white;
}

.footer_form_button:hover
{
	transition: all 0.5s ease;
	scale: 1.1;
}

.divider_footer
{
	width: 100%;
	height: 2px;
	background-color: var(--primary-color);
}
/*CONTENT*/
.cover_main_container
{
	width: 100%;
  position: relative;
  overflow: clip;
  min-height: 600px;
  background-color: var(--back-color);
}

.cover_video
{
	position: absolute;
  top: 50%;
  left: 50%;
  min-height: 100%;
  object-fit: cover;
  z-index: 0;
  width: 100%;
  transform: translate(-50%, -50%);
}

.fill_main_container
{
	width: 100%;
	background-color: var(--primary-color);
}

.fill_newblue
{
	background-color: var(--five-color);
}

.back-color
{
	background: var(--back-color);
}

.back-secondary
{
	background: #f4f1f1;
}

.back-multy
{
	background: linear-gradient(180deg,rgba(225, 221, 221, 1) 0%, rgba(225, 221, 221, 1) 79%, rgba(3, 61, 100, 1) 79%, rgba(3, 61, 100, 1) 100%);
}

.general_title
{
	color: white;
	font-size: 45px;
	margin-bottom: 0px;
	margin-top: 0px;
	line-height: 58px;
	text-align: center;
	font-weight: 700;
	color: var(--primary-color);
}

.general_title_two
{
	color: white;
	font-size: 30px;
	margin-bottom: 40px;
	margin-top: 0px;
	line-height: normal;
	text-align: center;
	font-weight: 700;
	color: var(--primary-color);
}

.subtitle_text
{
	color: var(--primary-color);
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
}

.general_text
{
	color: white;
	font-size: 20px;
	line-height: 32px;
}

.logo-carousel
{
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  padding: 50px 0;
  background: transparent;
}

.logo-track
{
  display: flex;
  width: max-content;
  animation: scroll-left 15s linear infinite;
}

.logo-list
{
  display: flex;
  gap: 32px;
  align-items: center;
}

.logo
{
  display: block;
  width: 250px;
  height: auto;
  object-fit: contain;
  filter: saturate(1);
  scale: 0.8;
  opacity: 0.6;
  transition: all 0.8s ease;
}

.logo:hover
{
  scale: 1;
  opacity: 1;
  transition: all 0.8s ease;
}

.logo-track:hover{
  animation-play-state: paused;
}

@keyframes scroll-left
{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 600px)
{
  .logo { width: 200px; }
  .logo-list { gap: 16px; }
  .logo-track { animation-duration: 20s; }
}

.section_img
{
	width: 100%;
	margin: auto;
	display: block;
}

.block_services
{
	border: 4px solid white;
	border-radius: 50px;
	padding: 10px 20px;
	color: white;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	text-align: center;
}

.block-service
{
	padding: 20px;
	min-height: 340px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.block-service.one
{
	background: linear-gradient(90deg,rgba(252, 184, 48, 1) 0%, rgba(255, 203, 101, 1) 100%);
	border-top-left-radius: 15px;
}

.block-service.two
{
	background: linear-gradient(90deg,rgba(20, 137, 233, 1) 0%, rgba(20, 166, 233, 1) 100%);
}
.block-service.three
{
	background: linear-gradient(90deg,rgba(68, 179, 90, 1) 0%, rgba(102, 182, 91, 1) 100%);
}
.block-service.four
{
	background: linear-gradient(90deg,rgba(210, 167, 26, 1) 0%, rgba(210, 187, 26, 1) 100%);
	border-top-right-radius: 15px;
}
.block-service.five
{
	background: linear-gradient(90deg,rgba(147, 86, 222, 1) 0%, rgba(192, 86, 222, 1) 100%);
	border-bottom-left-radius: 15px;
}
.block-service.six
{
	background: linear-gradient(90deg,rgba(255, 138, 54, 1) 0%, rgba(251, 173, 111, 1) 100%);
}
.block-service.seven
{
	background: linear-gradient(90deg,rgba(176, 12, 89, 1) 0%, rgba(200, 24, 46, 1) 100%);
}
.block-service.eight
{
	background: linear-gradient(90deg,rgba(238, 34, 34, 1) 0%, rgba(238, 79, 34, 1) 100%);
	border-bottom-right-radius: 15px;
}

.service_number
{
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 60px;
	color: white;
	margin-top: 0px;
	margin-bottom: 0px;
	opacity: 0.4;

}

.service_text
{
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 30px;
	color: white;
	margin-top: 0px;
	margin-bottom: 0px;
	line-height: 33px;
}

.back-image-service
{
	position: absolute;
	bottom: -60px;
	right: -20px;
	width: 100%;
	z-index: 0;
	max-width: 450px;
}

.service_mask
{
	overflow: hidden;
	max-height: 50px;
	margin-bottom: 10px;
}

.black
{
	color: var(--back-color);
}

.gray
{
	color: #5d5858;
}

.white
{
	color: white;
}

.mobil-navmenu-container
{
  min-height: 100%;
  width: calc(100% - 40px);
  padding: 30px 20px;
  position: fixed;
  left: 0;
  top: 0;
  overflow-y: auto;
  z-index: 40000;
  background-color: rgba(120, 120, 120, 0.3);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  transform: translateX(-4000px);
  transition: 0.8s ease;
}

.mobil-navmenu-logo-container
{
  display: flex;
  width: 100%;
}

.mobil-navmenu-x-button
{
  width: 29px;
  height: 35px;
  border-radius: 10px;
  border: 4px solid var(--secondary-color);
  background-color: var(--secondary-color);
  font-size: 20px;
  padding: 8px 0px 0px 18px;
  color: #eef2ff;
  cursor: pointer;
  margin-left: auto;
}

.mobil-navmenu-x-button:hover
{
  border: 4px solid var(--primary-color);
  background-color: var(--primary-color);
}

.menu-mobil li
{
  margin-top: 10px;
  cursor: pointer;
  list-style-type: none;
}

.menu-mobil
{
	padding-left: 0px;
	margin-top: 40px;
}

.menu-mobil li a
{
  color: #f1f7f7;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid #f1f7f75e;
  border-radius: 10px;
  padding: 12px 10px;
  width: calc(100% - 25px);
  display: block;
  transition: color 0.3s ease;
}
.menu-mobil li a:hover
{
  border: 1px solid var(--primary-color);
  transition: color 0.3s ease;
}

.burguer-button
{
	cursor: pointer;
	margin-top: 10px;
}

.scaleme 
{
	scale: 1;
	transition: all 0.3s ease;
}

.scaleme:hover
{
	scale: 1.3;
	transition: all 0.3s ease;
}

.block-service .scalemein 
{
	scale: 1;
	transition: all 0.3s ease;
	transform: translate(0px,0px);
}

.block-service:hover .scalemein
{
	scale: 1.3;
	transition: all 0.3s ease;
	transform: translate(-30px,-30px);
}

.hiden
{
	opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.hiden.show
{
	opacity: 1;
  transform: translateY(0);
}

.hidenl
{
	opacity: 0;
  transform: translateX(-80px);
  transition: opacity 1s ease, transform 1s ease;
}

.hidenl.show
{
	opacity: 1;
  transform: translateX(0);
}

.entorno-container
{
	gap: 50px;
	width: 100%;
	margin: auto;
}

.entorno-element
{
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 25px;
	min-height: 500px;
	transition: all 0.5s ease;
	scale: 1;
}

.entorno-element:hover
{
	transition: all 0.5s ease;
	scale: 1.05;
}

.entorno-img
{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 110%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}

.entorno-title-contaier
{
	position: absolute;
	bottom: -20px;
	left: 0;
	background-color: var(--four-color);
	border-top-right-radius: 25px;
	padding: 0px 30px 20px 30px;
}

.entorno-title
{
	color: white;
	font-size: 25px;
	font-weight: 700;
}

.orange-text
{
	color: var(--four-color);
}

.orange-divider
{
	width: 100%;
	max-width: 130px;
	height: 3px;
	background-color: var(--four-color);
}

.nomarginmorepadding
{
	margin-top: 0px;
  padding-top: 26px;
}

.RT_benefit_container {
  user-select: none;
  position: relative;
  padding: 2em;
  background-color: white;
  border-radius: 25px;
  max-width: 240px;
}

.circle-pad
{
	position: absolute;
	width: 124px;
	height: 124px;
	background-color: white;
	top: 0px;
	left: calc(50% - 62px);
	transform: translate(0px, -50%);
	border-radius: 80px;
	border: 4px solid white;
}

.circle-profile-img
{
	border-radius: 60px;
	margin: auto;
	width: 100%;
	margin-top: 1px;
}

.title-name-person
{
	color: #686262;
	font-weight: 700;
	font-size: 20px;
	text-align: center;
	margin-top: 62px;
}

.title-title-person
{
	color: #999292;
	font-weight: 700;
	font-size: 18px;
	text-align: center;
}

.title-comment-person
{
	color: #686262;
	font-weight: 400;
	font-size: 18px;
	text-align: center;
}

.carousel-promotional {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-promotional-container
{
	margin: auto;
	position: relative;
	max-width: var(--max-width);
}

.conteiner_wrap_correction
{
	transform: translateX(0px);
	cursor: grab;
}

.carousel-button-block
{
	width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
 	justify-content: space-between;
}

.carousel-button-container
{
	width: 100%;
	margin: auto;
	position: relative;
}

.carousel-promotional-arrow-icon_container {
  width: 40px;
  margin-top: 4px;
}

.carousel-promotional-controls-left button, .carousel-promotional-controls-right button {
  background-color: rgba(0, 0, 0,0.3);
  border: none;
  font-family: "Montserrat", sans-serif;
  color: white;
  padding: 0px;
  cursor: pointer;
  font-size: 18px;
  width: 60px;
  height: 60px;
  border-radius: 43px;
  margin-left: 10px;
}

.carousel-promotional-controls-right button {
  margin-right: 10px;
}

.carousel-promotional-arrow-icon {
    fill: white;
}

.gallery-image
{
	width: 100%;
}



.exito-container
{
	width: 100%;
	min-height: 400px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center; 
  justify-content: center;
  background-color: rgba(0,0,0,0.5);
  background-blend-mode: multiply;
  transition: all 0.3s ease;
}

.exito-container:hover
{
	
  background-color: rgba(0,0,0,0);
  transition: all 0.3s ease;
}

.exito-text
{
	color: white;
	font-weight: 700;
	font-size: 35px;
	text-align: center;
}

.fill_black
{
	background-color: #000000;
}

.minigallery-element
{
	width: 100%;
	min-height: 500px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center; 
  justify-content: center;
}

.minigallery-section-element{
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.minigallery-section-element::before{
  content: "";
  position: absolute;
  inset: 0;

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  background-image: inherit;

  transform: scale(1);
  transition: transform 0.5s ease;
  z-index: 0;
}

.minigallery-section-element:hover::before{
  transform: scale(1.1);
}

.minigallery-section-element > *{
  position: relative;
  z-index: 1;
}

.minigallery-section-element:hover
{
	min-height: 600px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center; 
  justify-content: center;
}

.nosotros-icons
{
	width: 100%;
	display: block;
	margin: auto;
	max-width: 100px;
}

.bigtext
{
	font-size: 25px;
}

.video-btn
{
	position: absolute;
  bottom: 20px;
  right: 90px;
  width: 50px;
  height: 50px;
}

.sound-btn
{
	position: absolute;
  bottom: 20px;
  right: 30px;
  width: 50px;
  height: 50px;
}

.video-btn img, .sound-btn img
{
	width: 50px;
  height: 50px;
}

.garantia-logo-block
{
	width: 100%;
	display: flex;
	gap: 30px;
	margin: 40px 0px;

}

.garantia-logo-img
{
	width: 100%;
	scale: 1;
	transition: all 0.3s ease;
}

.garantia-logo-img:hover
{
	scale: 1.1;
	transition: all 0.3s ease;
}

/* FLEX BASE -------------------------------- */
.containerflexwrap 
{
	display: flex;
 	flex-wrap: wrap;
}

.containerflex, a.containerflex
{
	display: flex;
}

.centerflex
{
	align-items: center;
  justify-content: center;
}

.centerflex-horizontal
{
  justify-content: center;
}

.verticalcenter
{
	align-items: center;
  justify-content: center;
	display: block;
}

.flex-to-right
{
	margin-left: auto;
	order: 2;
	text-align: right;
}

.float-to-right
{
	float: right;
}

.block01,.block01a {flex: 8.333%;}
.block02 {flex: 16.666%;}
.block03 {flex: 25%;}
.block04 {flex: 33.333%;}
.block05 {flex: 41.666%;}
.block06 {flex: 50%;}
.block07 {flex: 58.333%;}
.block08 {flex: 66.666%;}
.block09, .block09a {flex: 75%;}
.block10 {flex: 83.333%;}
.block11 {flex: 91.666%;}
.block12 {flex: 100%;}
.blockauto {flex: 1 1 auto;}


@media (max-width: 767px)
{
  .block01, .block02, .block03, .block04, .block05, .block06, .block07, .block08, .block09, .block10, .block11, .block12, .blockauto
  {
  	flex: 100%;
  }
}

/* MEDIA FOR SPECIAL CASES */
@media only screen and (min-width: 0px)
{
  .visibledeskflex{display: none;}
  .visibledeviceflex{display: flex;}
  .visibledesk{display: none;}
  .visibledeskmenu{display: none;}
  .visibledevice{display: initial}
  .visibledevicemenu{display: initial}  

  .general_container
	{
		width: calc(100% - 50px);
		max-width: var(--max-width);
		margin: auto;
		padding: 100px 0px 80px 0px;
		align-items: center;
		margin-top: -2px;
	}	

	.block-service.one
	{
		border-top-left-radius: 0px;
	}
	.block-service.four
	{
		border-top-right-radius: 0px;
	}
	.block-service.five
	{
		border-bottom-left-radius: 0px;
	}
	.block-service.eight
	{
		border-bottom-right-radius: 0px;
	}

	.paddingtb0
	{
		width: 100%;
	}

	.entorno-img
	{
		width: 160%;
	}

 	.conteiner_wrap_correction {
    flex-wrap: nowrap;
    position: relative;
    padding: 2em 2em 1em 2em;
  }

  .RT_benefit_container 
  {
    min-width: 200px;
  }

  .header_main_container
	{
		box-shadow: unset;
		-webkit-box-shadow: unset;
		-moz-box-shadow: unset;
	}

	.cover_video
	{
	  object-fit: contain;
	  bottom: 0px;
	  top: unset;
	  left: 50%;
	  min-height: min-content;
	  transform: translate(-50%, 0);
	}

	.cover_main_container
	{
	  min-height: 300px;
	}
}
@media only screen and (min-width: 768px)
{
	.visibledesk{display: initial;}
	.visibledeskflex{display: flex;}
	.visibledeviceflex{display: none;}
  .visibledevice{display: none}

  .general_container
	{
		width: calc(100% - 90px);
		max-width: var(--max-width);
		margin: auto;
		padding: 100px 20px 80px 20px;
		align-items: center;
	}	

	.block-service.one
	{
		border-top-left-radius: 15px;
	}
	.block-service.four
	{
		border-top-right-radius: 15px;
	}
	.block-service.five
	{
		border-bottom-left-radius: 15px;
	}
	.block-service.eight
	{
		border-bottom-right-radius: 15px;
	}

	.paddingtb0
	{
		width: calc(100% - 50px);
	}

	.entorno-img
	{
		width: 165%;
	}

	.conteiner_wrap_correction 
	{
    flex-wrap: nowrap;
    position: initial;
    padding: 2em;
 	}

 	.RT_benefit_container
 	{
    min-width: 240px;
  }

  .header_main_container
	{
		box-shadow: -1px 10px 29px 1px rgba(0,0,0,0.42);
		-webkit-box-shadow: -1px 10px 29px 1px rgba(0,0,0,0.42);
		-moz-box-shadow: -1px 10px 29px 1px rgba(0,0,0,0.42);
	}

	.cover_video
	{
	  object-fit: cover;
	  bottom: unset;
	  top: 50%;
	  left: 50%;
	  min-height: 100%;
	  object-fit: cover;
	  transform: translate(-50%, -50%);
	}

	.cover_main_container
	{
	  min-height: 600px;
	}
}

@media only screen and (min-width: 1050px)
{
	.visibledeskflex{display: flex;}
	.visibledeskmenu{display: initial;}
	.visibledevicemenu{display: none}

	.entorno-img
	{
		width: 110%;
	}
}

.gap10
{
	gap: 0 10px;
}
.gap20
{
	gap: 0 20px;
}
.gap30
{
	gap: 0 30px;
}
.gap40
{
	gap: 0 40px;
}
.gap50
{
	gap: 0 50px;
}
.gap60
{
	gap: 0 60px;
}
.gap70
{
	gap: 0 70px;
}
.gap80
{
	gap: 0 80px;
}
.margintop0
{
	margin-top: 0px;
}
.margintop5
{
	margin-top: 5px;
}
.margintop10
{
	margin-top: 10px;
}
.margintop20
{
	margin-top: 20px;
}
.margintop30
{
	margin-top: 30px;
}
.margintop40
{
	margin-top: 40px;
}
.margintop50
{
	margin-top: 50px;
}
.margintop60
{
	margin-top: 60px;
}
.margintop70
{
	margin-top: 70px;
}
.margintop80
{
	margin-top: 80px;
}
.margintop90
{
	margin-top: 90px;
}
.margintop100
{
	margin-top: 100px;
}
.margintop110
{
	margin-top: 110px;
}
.margintop120
{
	margin-top: 120px;
}
.margintop130
{
	margin-top: 130px;
}
.margintop140
{
	margin-top: 140px;
}
.marginbottom0
{
	margin-bottom: 0px;
}
.marginbottom5
{
	margin-bottom: 5px;
}
.marginbottom10
{
	margin-bottom: 10px;
}
.marginbottom20
{
	margin-bottom: 20px;
}
.marginbottom30
{
	margin-bottom: 30px;
}
.marginbottom40
{
	margin-bottom: 40px;
}
.marginbottom50
{
	margin-bottom: 50px;
}
.marginbottom60
{
	margin-bottom: 60px;
}
.marginbottom70
{
	margin-bottom: 70px;
}
.marginbottom80
{
	margin-bottom: 80px;
}
.marginbottom90
{
	margin-bottom: 90px;
}
.marginbottom100
{
	margin-bottom: 100px;
}
.marginbottom110
{
	margin-bottom: 110px;
}
.marginbottom120
{
	margin-bottom: 120px;
}
.marginbottom130
{
	margin-bottom: 130px;
}
.marginbottom140
{
	margin-bottom: 140px;
}
.height100
{
	height: 100px;
}
.height200
{
	height: 200px;
}
.height250
{
	height: 250px;
}
.height300
{
	height: 300px;
}
.height350
{
	height: 350px;
}
.height400
{
	height: 400px;
}
.height500
{
	height: 500px;
}
.alwayscenter
{
	text-align: center;
}
.alwaysright
{
	text-align: right;
}
.paddingtop0
{
	padding-top:0px;
}

.paddingtop80
{
	padding-top:80px;
}
.padding0
{
	padding:0px;
}

.paddingtb0
{
	padding-top:0px;
	padding-bottom:0px;
}
.paddingbottom60
{
	padding-bottom:60px;
}

.paddingbottom40
{
	padding-bottom:40px;
}
.paddingtopbottom30
{
	padding: 30px 0px;
}
.opacity5
{
	opacity: 0.5;
}
.opacity6
{
	opacity: 0.6;
}
.opacity8
{
	opacity: 0.8;
}
.centertext
{
	text-align: center;
}

.lefttext
{
	text-align: left;
}
