*{
	padding: 0;
	margin:0; 
	font-family: 'Open Sans', sans-serif;

}

a:link, a:visited, a:hover, a:active  {
    color: white;
    text-decoration: none;
}


.menu_desplegable{
	width: auto; 
	height: 55px; 
	position: fixed; 
	z-index: 1100; 
}
#boton_hamburgesa{
	width: 55px; 
	height: 55px;
	display: flex;
	justify-content: center;
	align-items: center;
}
/* Header izquierda */
.header_izquierda{
	width: 225px;
	height: 100%;
	position: fixed;
	background: white;
	border-right: 1px solid #f2f3f7;
	z-index: 1000;
}
.contenedor_header_izquierda{
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
}
.contenedor_principal_menu{
	position: relative;
	top: 45px;
	display: none;
}
.nombre_empresa_pagina{
	/*width: 185px;*/
	margin-left: 5px;
	padding: 12px 0px 0px 12px;
	/*border: 1px solid grey;*/
}
.nombre_empresa_pagina p{
	font-family: 'Merriweather', serif;
	font-size: 27px;
	font-weight: bolder;
	line-height: 1.1;
}
.nombre_empresa_pagina span{
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
	position: relative;
	top: -16px;
	text-align: right;
	/*font-weight: lighter;*/
}
.contenedor_listado_menu_empresa {
	width: 100%;
	margin-top: 60px;
}
/* Menu izquierda */
.menu_izquierda li {
	width: 100%;
	padding: 0px 7px 0px 7px;
	list-style: none;
	text-transform: uppercase;
	font-family: 'Open Sans', sans-serif;
}
.menu_izquierda li a {
	color: black;
	display: block;
	margin: auto;
	width: 90%;
	height: 100%;
	padding: 7px;
	font-size: 12px;
}
.menu_izquierda li a:hover{
	background: #35b5ac;
	color: white;
	transition: 0.5s;
}
/* Boton acceder apply */
#acceder_apply {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 85%;
	height: 42px;
	background: #d0d1d2;
	margin: auto;
	font-size: 12px;
	box-sizing: border-box;
	color: black;
	text-transform: uppercase;
}

#acceder_apply:hover{
	background: #2d2e47;
	transition: all .4s ease-in-out;
	color: white;
}

/*Botones acceder APPLY */
.botonesAccederApply{
	width: 190px; 
	position: relative;
	left: 30px;
}
.botonesAccederApply a{
	display: flex;
	align-items: center;
	background: #2d2e47;
	width: 176px;
	height: auto;
	font-size: 13px;
	padding: 7px;
}
.botonesAccederApply a:hover{
	background: rgb(53, 181, 172);
}

/* Contenedor logo footer */

.contenedor_logo_footer{
/*	background: #c2c2c2;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 100px;
	margin: auto;*/
	position: relative;
	top: -25px;
	width: 100%;
	height: 30px;
}
.contenedor_iconos_sociales{
	width: 85%;
	height: 100%;
	margin: auto; 
	display: flex;
	justify-content: center;
	align-items: center;
}
.contenedor_iconos_sociales a{
	width: 27px;
	height: 27px;
	margin: 0px 5px 0px 5px;
	display: flex;
	background: #35b5ac;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}
.contenedor_iconos_sociales a img{
	width: 12px;
	height: 12px;
}
.contenedor_iconos_sociales a:hover{
	background: #2d2e47;
	transition: 1s;
}


/*----- Contenedor parte derecha -----*/
.contenedor_pagina_derecha {
	position: absolute;
	left: 225px;
	width: calc( 100% - 225px );
	z-index: 7;

}
/* Contenedor banner */
.contenedor_banner {
	width: 100%;
	height: 100vh;
	background: #2d2e47;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.contenedor_banner img {
	width: 450px;
	height: 450px;
	position: relative;
	top: 15px;
	left: 15px;
}
/* Lineas*/
.contenedor_linea_arriba{
	position: absolute; 
	z-index: 3; 
	left: -2px;
}
.contenedor_linea_arriba img{
	width:800px;
	height: auto;
}
.contenedor_linea_abajo{
	position: absolute;
	z-index: 3; 
	bottom: 0px; 
	right: 0px; 
	width: 100%; 
	display: flex; 
	justify-content: flex-end;
}
.contenedor_linea_abajo img{
	width:800px;
	height: auto;
}

/*-------- SECCIONES -------- */
.contenedor_secciones{
	width: 100%;
	position: absolute;
	top: 100%;
	z-index: 4;
	background: white;
}
/* Seccion quienes somos */
#seccion_quienes_somos{
	height: 650px;
	display: flex;
	align-items: center;
}
.cont_general_quienes_somos{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.contenido_texto_quienes_somos{
	color: black;
	padding: 20px;
}
.contenido_texto_quienes_somos h3 {
	font-family: 'Merriweather', serif;
	font-size: 40px;
	font-weight: bolder;
}
.contenido_texto_quienes_somos h4 {
	font-family: 'Merriweather', serif;
	font-size: 16px;
	font-weight: bolder;
	margin-top: 30px;
}
.contenido_texto_quienes_somos p {
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
	margin-top: 20px;
	text-align: justify;
}

.contenedor_imagen_quienes_somos {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px;
}

/* sección apply */
.seccion_apply{
	width: 100%;
	height: 550px;
	background-image: url(../img/fondo_apply.svg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	align-items: center;
}
.container_seccion_apply{
	display: flex;
	justify-content: space-between;
}
.seccion_apply h3 {
	font-size: 40px;
	font-family: 'Merriweather', serif;
	letter-spacing: -1px;
	line-height: 1;
	color: white;
}
.descripcion_apply {
	color: white;
	width: 100%;
	margin: auto;
	margin-top: 25px;
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
}
.enlace_apply img {
	width: 120px;
	height: auto;
	margin-top: 10px;
	border: 2px solid white;
	border-radius: 12px;
}
.informacion_apply{
	display: flex;
	align-items: center;
}


/* Comprar apply */
.contenedor_comprar_apply {
	margin: auto;
	width: 340px;
	height: 380px;
	background: white;
	padding: 20px 15px 10px 15px;
}
.contenedor_comprar_apply img {
	display: block;
	width: 80px;
	height: 80px;
	margin: auto;
}
.adquiere_apply {
	font-size: 28px;
	color: grey;
	text-align: center;
	font-weight: lighter;
}
#comprar_apply {
	font-size: 15px;
	font-size: 1.07142857rem;
	line-height: 1.5;
	padding-bottom: 12px;
	padding-top: 10px;
	padding-left: 20px;
	padding-right: 20px;
	background: #1784a3;
	display: block;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	border: none;
	color: white;
	margin: auto;
}
.beneficios_apply {
	width: 90%;
	margin: auto;
	margin-top: 10px;
	font-size: 14px;
}
.beneficios_apply li{
	margin-bottom: 8px;
}

/* seccion servicios*/ 
.seccion_servicios {
	width: 100%;
	height: 620px;
}

.contenedor_principal_seccion_servicios{
	display: flex;
	align-items: center;
	height: 100%; 
}
.titulo_bloque {
	font-size: 40px;
	color: black;
	font-family: 'Merriweather', serif;
	text-align: center;
}
.linea_debajo_titulo {
	border-bottom: 2px solid #2d2e47;
	width: 100px;
	margin: auto;
	margin-top: 20px;
	margin-bottom: 20px;
	display: block;
}
.texto_debajo_titulo{
	width: 380px;
	margin: auto;
	text-align: center;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
}

/* Menu galería */
.contenedor_menu_galeria {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.contenedor_abuelo_menu {
	width: 100%;
	height: 290px;
	overflow: hidden;
	margin-top: 30px;
}
.contenedor_menu_padre {
	width: 100%;
	height: 320px;
	overflow-x: auto;
	overflow-y: hidden;
}
.contenedor_hijo_menu {
	width: 3190px;
	display: flex;
	flex-wrap: wrap;
	border-radius: 12px;
}
.elementos_menu_padre {
	width: 240px;
	height: 250px;
	margin-right: 25px;
	margin-bottom: 10px;
	margin-top: 15px;
	cursor: pointer;
	position: relative;
	-webkit-box-shadow: 10px 10px 15px -17px rgba(0,0,0,0.75);
	-moz-box-shadow: 10px 10px 15px -17px rgba(0,0,0,0.75);
	box-shadow: 10px 10px 15px -17px rgba(0,0,0,0.75);
	/*border:1px solid #f2f2f2;*/
}
.elementos_menu_padre p{
	margin: auto;
}
.contenedor_elemento_hover {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 5;
	padding: 15px;
}
.icono_elemento {
	width: 100%;
	height: 120px;
	margin: auto;
	background:#35b5ac;
	padding-top: 20px;
}
.icono_elemento img {
	display: block;
	width: 70px;
	height: 70px;
	margin: auto;
	position: relative;
	object-fit: cover;
}
.elementos_menu_padre h3 {
	width: 85%;
	margin: auto;
	font-size: 14px;
	text-align: center;
	font-family: 'Open Sans', sans-serif;
	color: black;
	position: relative;
	top: 15px;
	line-height: 1.3;
}
.linea_elemento_titulo {
	display: none;
	width: 80px;
	height: 2px;
	background: white;
	margin: auto;
	position: relative;
}
.elementos_menu_padre p {
	width: 80%;
	font-size: 13px;
	text-align: center;
	font-family: 'Open Sans', sans-serif;
	position: relative;
	color: white;
	display: none;
}
.elementos_menu_padre:hover{
   /* background: #1784a3;
    transition: 1s;
    color: white;*/
}
.contenedor_botones_cambio {
	width: 70px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}
.contenedor_botones_cambio button {
	width: 25px;
	height: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	/* border-radius: 3px; */
	border: 1px solid #2d2e47;
	background: white;
	cursor: pointer;
}
.contenedor_botones_cambio button img {
	width: 20px;
	height: 20px;
}

/* Sección cotización */
.seccion_cotizacion{
	width: 100%;
	height: 210px;
	display: flex;
	align-items: center;
	background: #35b5ac;
}

.flechas_cotizacion{
	width: 55px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.flechas_cotizacion img{
	width: 50px;
	height: 50px;
	display: none;
	cursor: pointer;
}
.contenedor_cotizacion{	
	height: 220px; 
	padding: 20px; 
	width:100%; 
	box-sizing: border-box;
	
}
.seccion_cotizacion h2{
	color: white; 
	font-size: 30px; 
	font-family: 'Merriweather', serif;
	text-align: center;
	width: 100%;
}
.boton_cotizacion{
	color: white; 
	font-size: 16px; 
	
	font-family: 'Open Sans', sans-serif;
	border: none;
	background: #2d2e47;
	margin: auto;
	box-sizing: content-box;
	display: block;
	cursor: pointer;
	margin-top: 20px;
	padding: 10px 25px 10px 25px;
}
.contenedor_animacion_formulario{
	display: flex; 
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

/* Formulario */
.formulario_cotizacion{
	width: calc( 100% - 170px );
}
.group_form_cotizacion{
	display: none;
}
.label_formulario_cotizacion{
	font-size: 22px; 
	color: white; 
	text-align: center;
	font-family: 'Merriweather', serif;
}

.input_cotizacion{
	width: 100%;
	margin: auto;
	/*height: 42px;*/
	border: 2px solid white;
	padding: 5px;
	padding-left: 10px;
	box-sizing: border-box;
	background: white;
	color: #2d2e47;
	/*text-align: center;*/
	font-size: 16px;
	display: block;
}
#cual_sector_cotizacion{
	display: none;
	margin-top: 15px;
}
.textarea_cotizacion{
	width: 100%; 
	height: 60px;
	background: white; 
	border: 2px solid white; 
	resize: none; 
	color: #2d2e47; 
	padding: 5px 10px 5px 10px;
}

.cont_p{
	height: 20px; 
	margin-top: 0px;
}
#informacion_input{
	color: orange;  
	margin-left: 5px; 
	display: none; 
	font-size: 14px;
}

#nombre_apellidos_cotizacion{
	display: block;
}


/* select */
#sector_cotizacion {
   -webkit-appearance: button;
   -webkit-border-radius: 2px;
   -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
   -webkit-padding-end: 20px;
   -webkit-padding-start: 2px;
   -webkit-user-select: none;
   background-image: url(http://i62.tinypic.com/15xvbd5.png);
   background-position: 97% center;
   background-repeat: no-repeat;
   border: 2px solid white;
   color: #555;
   font-size: inherit;
   overflow: hidden;
   padding: 5px 10px;
   text-overflow: ellipsis;
   white-space: nowrap;
   width: 100%;
}

#sector_cotizacion {
   color: white;
   background-image: url(http://i62.tinypic.com/15xvbd5.png);
   padding-left: 10px;
   box-sizing: border-box;
   background: transparent;
   position: relative;
   left: 0px;
       color: #2d2e47;
    background-image: url(http://i62.tinypic.com/15xvbd5.png);
    padding-left: 10px;
    box-sizing: border-box;
    background: white;
    position: relative;
    left: 0px;
        font-size: 13px
}



/* Lineas de carga */
.linea_carga{
	background: white;
	width: calc( 100% - 170px ); 
	margin: auto; 
	height: 1px; 
	margin-top: 0px; 
	display: none;
	position: relative;
	top: 0px;
}
.linea_gruesa_carga{
	background: #2d2e47; 
	height: 3px; 
	width: 0; 
}
.bolita_carga{
	background: #2d2e47; 
	width: 10px; 
	height: 10px; 
	position: relative;
	top:-7px; 
	border-radius: 50%; 
}

/* Quitar botones input number */

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance:textfield;
}

/* Loading enviar formulario */
#group_enviado img{
	display: block;
	margin: auto; 
	width: 100px; 
	height: 100px;
}


      /* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */
 .checkmark__circle { 		
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;

    stroke: /*#7ac142*/ white ;
    fill: none;
    animation: stroke 0.6s  cubic-bezier(0.65, 0, 0.45, 1) forwards;
	fill: #2d2e47;
}

.checkmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: auto;
  box-shadow: inset 0px 0px 0px /*#7ac142*/ white;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #7ac142;
  }
}

/* Grupo enviado */

#group_enviado{
	padding-top: 50px; 
}
.texto_cotizacion_recibida{
	font-size: 32px;
	font-weight: bolder; 
	text-align: center;
	color: white; 
	margin-top: 15px;
}
.texto_pronto_nos_comunicaremos{
	font-size: 16px; 
	text-align: center;
	color: white; 
	margin-top: -15px;
}

/* Sección porqué elegirnos */

.porque_elegirme {
	width: 100%;
	height: 650px;
	display: flex;
	align-items: center;
	background-size: cover;
	display: flex;
	/* background-image: url("../imagen_contacto.jpg"); */
}
.grafica_por_elegirme{
	display: flex;
	align-items: center;
	justify-content: center;
}

.porque_elegirme h2 {
	font-family: 'Merriweather', serif;
	font-size: 40px;
	font-weight: bolder;
}
.porque_elegirme h3 {
	font-family: 'Merriweather', serif;
	font-size: 16px;
	font-weight: bolder;
	margin-top: 30px;
}
.contenedor_general_por_elegirme{
	display: flex;
	align-items: center;
}
.porque_elegirme_p{
	width: 40%;
	margin: auto;
	text-align: center;
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
}
.porque_elegirme p {
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
}

/* Seccion informacion personal */

.seccion_informacion_personal{
	width: 100%;
	height: 380px;
	padding: 50px;
	background: #1784a3;
	display: none;
}
.imagen_perfil_informacion_personal{
	width: 80px; 
	height: 80px; 
	border-radius:50%; 
	margin: auto; 
	object-fit: cover; 
	display: block; 
	border: 2px solid white
}
.nombre_perfil_informacion_personal{
	text-align: center; 
	margin-top: 10px; 
	font-weight: bolder; 
	font-size: 18px; 
	color: white
}
.profesion_perfil_informacion_personal{
	font-size: 14px; 
	color: white; 
	text-align: center; 
	font-style: normal; 
	font-weight: lighter; 
	letter-spacing: 0px;
	position: relative;
	top: -15px;
}
.descripcion_perfil_informacion_personal{
	width: 340px; 
	text-align: center; 
	margin: auto; 
	font-size: 13px;
	color: white;
	position: relative;
	top: -15px;
}
/* Sección empresas */
.empresas_section{
	width: 100%;
	background: white;
	padding: 50px 0px 90px 0px;
	background: #f2f3f7;
	box-sizing: border-box;
}
.contenedor_padre_empresas{
	display: flex;
	justify-content: flex-start;
	/*height: 130px;*/
	align-items: center;
	margin: auto;
	flex-wrap: wrap;
	width: 700px;
}

.logo_empresa_individual img{
	width: 110px;
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: gray;
	opacity: .7;
}
.logo_empresa_individual img:hover{
	opacity: 1;
	transition: 1s;
}
.logo_empresa_individual img:last-child{
	margin-right: 0px;
}
.logo_empresa_individual{
	margin: 30px;
}
.contenedor_abuelo_empresas{
	height: auto;
	overflow: hidden;
}

.contenedor_galeria_empresa{
	display: flex;
	align-items:center;
	justify-content: space-between;
	margin-top: 50px;
}
.contenedor_abuelo_empresas{
	width: 100%;
}
.contenedor_botones_galeria_empresa{
	width: 310px;
	height: 40px;
	margin: auto;
	margin-top: 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.contenedor_botones_galeria_empresa button{
	width: 150px;
	height: 55px;
	font-size: 12px;
	background: #35b5ac;
	color: white;
	border:none;
	padding: 7px;
	box-sizing: border-box;
}
.contenedor_botones_galeria_empresa button:last-child{
	background: white; 
	color: black;
	border: 1px solid #f2f2f2;
}
.contenedor_botones_galeria_empresa button:hover{
	background: #2d2e47;
	color: white;
	cursor: pointer;
	transition: 1s;
}
/* Sección contacto */
.section_contacto {
	width: 100%;
	height: 620px;
	background: #2d2e47;
	display: flex;
	align-items: center;
}

.section_contacto h2 {
	font-size: 40px;
	color: white;
	font-family: 'Merriweather', serif;
	text-align: center;
}

.contenedor_gen_contacto {
	margin-top: 70px;
	display: flex;
	justify-content: space-between;
}
.tabla_informacion_contacto {
	width: 100%;
	color: black;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
}
.tabla_informacion_contacto tr td {
	padding: 14px;
	color: white;
	font-size: 14px;
}
.tabla_informacion_contacto tr td img {
	width: 30px;
	height: 30px;
}
#formulario_contacto input {
	color: #2d2e47;
	width: 100%;
	padding: 7px 7px 7px 15px;
	background: white;
	border: 2px solid white;
	margin-bottom: 15px;
	font-size: 14px;
}
#formulario_contacto textarea {
	width: 100%;
	height: 130px;
	background: white;
	border: 2px solid white;
	color: #2d2e47;
	resize: none;
	padding: 7px 7px 7px 15px;
	font-size: 14px;
}
#formulario_contacto input[type="button"] {
	width: 80px;
	height: 40px;
	margin-top: 15px;
	padding: 0px;
	cursor: pointer;
	font-size: 14px;
	background: white;
	color: #2d2e47;
}