@font-face {
  font-family: 'fontello';
  src: url('./fontello/font/fontello.eot?96190517');
  src: url('./fontello/font/fontello.eot?96190517#iefix') format('embedded-opentype'),
       url('./fontello/font/fontello.woff2?96190517') format('woff2'),
       url('./fontello/font/fontello.woff?96190517') format('woff'),
       url('./fontello/font/fontello.ttf?96190517') format('truetype'),
       url('./fontello/font/fontello.svg?96190517#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
    font-family: 'montserratthin'; /*font-weight:200;*/
    src: url('./montserrat/montserrat-thin-webfont.woff2') format('woff2'),
         url('./montserrat/montserrat-thin-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'montserratlight';/*font-weight:300;*/
    src: url('./montserrat/montserrat-light-webfont.woff2') format('woff2'),
         url('./montserrat/montserrat-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'montserratmedium';/*font-weight:500;*/
    src: url('./montserrat/montserrat-medium-webfont.woff2') format('woff2'),
         url('./montserrat/montserrat-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
/*++++++++++++++++++++++++++++++++++++++++++++++GENERICS++++++++++++++++++++++++++++++++++++++++++++++++++++*/
html, body{
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background: #fff;
	font-family: 'montserratlight', arial, helvetica, sans-serif;
	line-height:1;
	color:#222;
}
*, *:before, *:after{
	box-sizing:inherit;
}
html{
	font-size:62.5%; /*Reset para REMS : 62.5% =10px */
}
body{
	font-size:1.6rem /*=16px*/;
}
h1, h2, h3, h4, h5, h6, p{
	margin:0px;
	padding:0px;
	line-height:1;
}
img{
	width:100%;
	max-width:100%;
}
a{ text-decoration: none; }
::selection, iframe body::selection {
  background: #cacaca !important; /* WebKit/Blink Browsers */
}
::-webkit-scrollbar, iframe body::-webkit-scrollbar{
width: 8px !important;
height: 8px !important;
}
::-webkit-scrollbar-thumb, iframe body::-webkit-scrollbar-thumb{
background: #737373 !important;
border-radius: 0px !important;
}
::-webkit-scrollbar-thumb:hover, iframe body::-webkit-scrollbar-thumb:hover{
background: #636363 !important;
}
::-webkit-scrollbar-track, iframe body::-webkit-scrollbar-track{
background: #F0F0F0 !important;
border-radius: 0px !important;
box-shadow: inset 0px 0px 0px 0px #F0F0F0 !important;
}
/*++++++++++++++++++++++++++++++++++++++++++++++/GENERICS++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/*++++++++++++++++++++++++++++++++++++++++++++++LOADER++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.loader {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(60, 60, 60, 0.9);
	text-align: center;
	font-size: 2em;
	color: #cacaca;
	padding-top: 18%;
}

.loader-icon {
	-webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 4s linear infinite;
}

@-moz-keyframes spin { 100% { -moz-transform: translateZ(100px) rotateY(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: translateZ(100px) rotateY(360deg); } }
@keyframes spin { 100% { -webkit-transform: translateZ(100px) rotateY(360deg); transform:rotateY(360deg); } }


.loader-message {

}
/*++++++++++++++++++++++++++++++++++++++++++++++/LOADER++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/*++++++++++++++++++++++++++++++++++++++++++++++CANVAS++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.editor-3d, 
.editor-3d-canvas {
	margin: 0;
	padding: 0;
}
/*++++++++++++++++++++++++++++++++++++++++++++++/CANVAS++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/*++++++++++++++++++++++++++++++++++++++++++++++MENU++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.menu {
	box-sizing: border-box;
	position: absolute;
    right: 0%; 
    bottom: 0%;
	width: auto;
	height: auto;
	background: rgba(0, 0, 0, .7);
	text-align: center;
	transition: all .1s linear;
	-moz-transition: all .1s linear;
	-webkit-transition: all .1s linear;
	-o-transition: all .1s linear;
	z-index: 10;
}
.dropdown {
  position: relative;
  display: block;
}
@media (orientation: portrait) and (max-width : 767px) {
	.menu {
		width: 100%;
		height: auto;
		text-align: center;
	}	
}
@media (max-width : 767px) {
	.dropdown {
	  width:100%;
	  z-index: 2;
	}
}
.bt-menu{
	background:#eaeaea;    
	padding: 1rem .5rem 0 .5rem;
	cursor:pointer;
	position:relative;
	z-index: 2;
}
	.bt-menu .swash{
	    position: absolute;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	}
	.bt-menu .swash i{
		position: absolute;
		line-height: 1;
		top: 5.5rem;
	    left: -3rem;
	    transform: translate(-25%, 0%) rotate(359deg);
	    font-size: 46rem;
	    color: rgb(107 195 200);
	}
	@media (orientation: portrait) and (max-width : 767px) {
		.bt-menu .swash i{
			left: 40%;
			transform: translate(-50%, 0%);
		}
	}

.bt-menu-inner{	
	display: flex;
	justify-content: center;
	align-items: flex-start;
	text-decoration:none;
	color:#222;
	cursor:pointer;
}
.menu-logo{	
	font-size: 7.5rem;
    color: #000000;
    padding:0rem 1.5rem 0 1.5rem;
}
	.menu-logo img{
		display: inline-block;
		width: 8.5rem;
		height: auto;
	}
	.menu-logo i{
		display:inline-block;
		-moz-transform:    scaleX(-1); /* Gecko */
		-o-transform:      scaleX(-1); /* Opera */
		-webkit-transform: scaleX(-1); /* Webkit */
		transform:         scaleX(-1); /* Standard */
		filter: FlipH; 
	}
.menu-logo-container{
	text-transform:uppercase;    
	margin: .8rem 1rem 0 0;
	color: #000000 !important;
	z-index: 2;
}
	.menu-logo-txt1{	
		text-align: center;
	    font-size: 3rem;
	    letter-spacing: .6rem;
	    line-height: 1;
	    font-family: 'montserratlight';
	    -webkit-text-stroke: .02em currentColor;
	}
	.menu-logo-txt2{
		margin-top:.6rem;
		text-align: center;
	    font-size: 1.1rem;
	    line-height: 1;
	    letter-spacing: .6rem;
	    font-family: 'montserratlight';
	}
		.menu-logo-txt2 span{
		}

.dropdown-content {
  width:100%;
  transition: all .6s ease;
}
.dropdown-content {
	position: absolute;
	opacity:0;
	bottom:-3rem;
	z-index: -1;
	width:100%;
	background: rgba(0,0,0,1);
}
.show {
	opacity:1;
	z-index:-1;
	bottom:10.9rem;
}

a.principal {
	box-sizing: border-box;
	display:block;
    background: #333;
    color: #fff;
    padding: 1.2rem .9rem;
    text-decoration: none;
    font-size: 1.3rem;
	font-family: 'montserratlight';
    text-transform: uppercase;
    letter-spacing: .5rem;
    text-align: left;
    border-bottom: .1rem solid rgba(0,0,0,1);
    transition: all .3s ease;
}
@media (orientation: portrait)  and (max-width : 767px){
	a.principal {
        text-align:center;
	}
}
a.principal:hover { 
	background:  #222;
	color:rgb(107 195 200);
}
/*++++++++++++++++++++++++++++++++++++++++++++++/MENU++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/*++++++++++++++++++++++++++++++++++++++++++++++MODALES++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*BOTONES PARA PROBAR MODAL*/
.botones-borrar{
	z-index: 5;
	position:absolute;
	right:0;
	top:0;
}
.botones-borrar a{
	display: block;
    color: #000;
    background: rgba(0,0,0,.2);
    font-size: 2rem;
    padding: .5rem;
    margin: .5rem;
    text-decoration: none;
}
/*BOTONES PARA PROBAR MODAL*/

.blocker {
    background-color:rgb(0 0 0 / 55%) !important;
    z-index: 10 !important;
    backdrop-filter: blur(.1rem);
    padding:2rem 2rem 5rem 2rem !important;
}
@media (max-width: 767px) {
	.blocker {
	    padding:1rem 1rem 5rem 1rem !important;
	}
}
.modal.modal-stand{
	position:relative;
    box-sizing: border-box;
    width: 100%;
    height:auto !important;
    padding: 3rem 3rem 5rem 3rem;
    background:#fff;
    -webkit-border-radius: 0rem;
	-moz-border-radius: 0rem;
	border-radius: 0rem;
    -webkit-box-shadow: 1px 18px 9px -11px rgb(0 0 0 / 62%);
    -moz-box-shadow: 1px 18px 9px -11px rgb(0 0 0 / 62%);
    -o-box-shadow: 1px 18px 9px -11px rgb(0 0 0 / 62%);
    -ms-box-shadow: 1px 18px 9px -11px rgb(0 0 0 / 62%);
    box-shadow: 1px 18px 9px -11px rgb(0 0 0 / 62%);
}
@media (max-width: 767px) {
	.modal.modal-stand {
	    padding:2rem 2rem 4rem 2rem;
	}
}

.modal.modal-stand a.close-modal {
	position:absolute;
    top: auto;
    bottom: -2.5rem !important;
    right: auto !important;
    left: 50% !important;
    transform: translate(-50%, 0%);
    width: 5rem !important;
    height: 5rem !important;    
    -webkit-border-radius: 50rem;
	-moz-border-radius: 50rem;
	border-radius: 50rem;
    background-image: none;
    background-color:  rgb(107 195 200);
    text-indent: 0 !important;
    color: rgba(0,0,0,0);
}
.modal.modal-stand a.close-modal:after {
    position: absolute;    
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	font-family: "fontello";
    content: "\e818";
    font-size: 2rem;
    color: #fff;
}
.modal.modal-stand .modal-header{
	display: block !important;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0;
    margin-bottom: 0;
    background: none !important;
}
	 .modal .modal-header h1{
		margin: 0 0 1.5rem 0;
		padding: 0px;
		line-height: 1;
		font-size: 2.2rem;
		font-family: 'montserratthin';
		letter-spacing: .6rem;
		color: #000;
	}
.modal.modal-stand .modal-content{
	font-family: 'montserratthin';
    line-height: 1.8;
}

.modal.modal-pasarela{
	max-width: calc(100rem - 0rem);
}
@media (max-width: 410px) {
	.modal.modal-pasarela{
		width:100%;
	    max-width:calc(100% - 0rem);
	}
}
.modal iframe{
	position:relative;
	width:100%;
	height:600px;
	border:none;
	overflow-x: hidden; overflow-y: auto;
}
@media (max-height: 920px) {
	.modal iframe{
		height:500px;
	}
}
@media (max-height: 767px) {
	.modal iframe{
		height:450px;
	}
}
@media (max-height: 600px) {
	.modal iframe{
		height:400px;
	}
}
@media (max-height: 480px) {
	.modal iframe{
		height:230px;
	}
}
@media (max-height: 360px) {
	.modal iframe{
		height:200px;
	}
}
@media (max-height: 320px) {
	.modal iframe{
		height:195px;
	}
}

.illustration-button{
	position:relative;
	display:inline-block;
	width: 9em;
    height: 9em;
    border-radius: 50%;
	background:#6bc3c8;
	transition: all .3s ease;
}
	.illustration-button:hover{
		background:#36898e;
	}
.illustration-button i{
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
	font-size:5em;
	color:#fff;
}
.illustration-text{
	display:block;
	text-align:center;
    margin: 2em 0 0 0;
	text-transform: uppercase;
    letter-spacing: .3em;
    font-size: 1.1em;
	color:#6bc3c8; 
	-webkit-text-stroke:.02em currentColor;   
}
/*++++++++++++++++++++++++++++++++++++++++++++++/MODALES++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/*++++++++++++++++++++++++++++++++++++++++++++++UTILIDADES++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.fw-200{
	/*font-weight: 200;*/
	font-family: 'montserratthin';
}
.fw-300{
	/*font-weight: 300;*/
	font-family: 'montserratlight';
}
.fw-500{
	/*font-weight: 500;*/
	font-family: 'montserratmedium';
}
.text-center{
	text-align: center;
}
.text-right{
	text-align: right;
}
.display-block{ 
	display:block !important; 
}
.p-15{	
	padding:1.5rem;
}
.upper{
	text-transform:uppercase;
}
/*++++++++++++++++++++++++++++++++++++++++++++++/UTILIDADES++++++++++++++++++++++++++++++++++++++++++++++++++++*/