@font-face {
    font-family: 'Gilroy';
    src: url('../font/Gilroy-ExtraBold.woff2') format('woff2'),
        url('../font/Gilroy-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy light';
    src: url('../font/Gilroy-Light.woff2') format('woff2'),
        url('../font/Gilroy-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
.wrap{
	width: 90%;
	max-width: 1150px;
	margin: auto;
}

.main{
	height: 950px;
	background: #ECE9E6;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #FFFFFF, #ECE9E6);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #FFFFFF, #ECE9E6); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

header{
	position: fixed;
	width: 100%;
	z-index: 10;
}

header .wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0px;
}

header .btn-menu{
	font-size: 30px;
	cursor: pointer;
	z-index:10;
}

.seccion1,
.seccion1 .wrap{
	height: 100%;
}

.seccion1 .wrap{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.caption-main h1{
	font-size: 95px;
	font-weight: 800;
	color: #000;
}

.caption-main .btn-view{
	display: block;
	margin: 50px auto 0px;

	width: 350px;
	padding: 20px 0px;
	border: 2px solid #000;
	border-radius: 15px;

	font-size: 20px;
	color: #000;
	text-decoration: none;
}

.caption-main .btn-view:hover{
	color:#fff;
  background-color:#000;
  -webkit-transition-duration: 1s; /* Safari */
  transition-duration: 1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out
}

/* FULL MENU ===================*/

.full-relleno{
	position: fixed;
	bottom: 0;
	bottom: -100%;
	right: 0px;

	width: 50%;
	height: 100vh;
	background: #fff;

	-webkit-transition: .6s;
	-o-transition: .66s;
	transition: .6s;
	z-index:2;
}

.full-menu{
	position: fixed;
	top: 0;
	top: -150%;

	width: 100%;
	height: 100vh;
	background: #91c73f;

	-webkit-transition: .6s;
	-o-transition: .66s;
	transition: .6s;
}

.full-menu .wrap{
	display: flex;
	height: 100%;
	justify-content: center;
	align-items: center;
}

.full-menu .wrap .navegacion{
	flex-basis: 0;
	flex-grow: 1;
	display: flex;
}

.menu-principal{
	margin-left: 0px;
    position: absolute;
    top: 40px;
    bottom: 0px;
    MARGIN-TOP: auto;
    MARGIN-BOTTOM: auto;
    height: max-content;
	margin-left:-120%;
  text-align:left;
  -webkit-transition: .6s ease-out;
	-o-transition: .66s ease-out;
	transition: .6s ease-out;	
}
.full-menu .navegacion ul{
	list-style: none;
}

.full-menu .navegacion ul li{
	margin: 20px 0px;
	width: fit-content;
}

.full-menu .navegacion ul li a{
	font-family: 'Gilroy';
	font-size:40px;
	font-weight:600;
	text-decoration: none;
	color: #fff;
}

.full-menu .navegacion .social-items a{
	text-decoration: none;
	font-size: 20px;
	color: #fff;
	margin: 50px 20px 0px 0px;
}

.full-menu .navegacion ul li a:hover,
.full-menu .navegacion .social-items a:hover{
	 color: #151e45;
	 margin-left:20px;
}

.itemBtnCheckMain{
	font-family: 'Gilroy';
	font-size:40px;
	font-weight:600;
	text-decoration: none;
	color: #151e45 !important;
	pointer-events: none;
}

#selectIdioma{
	margin-top: 4%;
    position: absolute;
    height: 80px;
    border-radius: 5px;
    z-index: 5;
    right: 7.2%;
    opacity: 0;
    display: flex;
    flex-wrap: nowrap;
    background-color: white;
    width: fit-content;
    padding-left: 10px;
    padding-right: 10px;
    flex-direction: column;
	transform: scale(0.8);
}
#indicadorMenu {
    top: 15PX;
    right: 26%;
    height: 30px;
    width: 30px;
    background: #fff0;
    border: 1px solid #fff;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    position: absolute;
    animation: mymove 1s infinite;
}

@keyframes mymove {
  from {
  transd
        transform: scale(0,2);
        opacity: 1;
  }

  to {
       transform: scale(3.2);
       opacity: 0;
  }
.close{

}
.open{

}


/* RESPONSIVE*/

@media screen and (max-width: 750px){
	.main{
		height: 680px;
	}

	.caption-main h1{
		font-size: 60px;
	}

	/*Full menu*/
	.full-menu .navegacion ul li a{
		font-size: 30px;
	}

}

@media screen and (max-width: 520px){

}

@media screen and (max-width: 450px){
	.main{
		height: 600px;
	}

	.caption-main h1{
		font-size: 50px;
	}

	.caption-main .btn-view{
		width: 180px;
		padding: 10px 0px;
		margin: 20px auto;

		font-size: 18px;
	}
}

@media screen and (max-width: 340px){
	.main{
		height: 550px;
	}

	.caption-main h1{
		font-size: 40px;
	}

}

