@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:100,300,400,700');
@import url('https://fonts.googleapis.com/css?family=Raleway:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Cardo:400i|Rubik:400,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans&display=swap');
/*font-family: 'DM Sans', sans-serif;*/
@import url('https://fonts.googleapis.com/css2?family=Lora&display=swap');
/*font-family: 'Lora', serif;*/

html h1,h2,h3 .title{
  font-family: 'DM Sans', sans-serif;
}

html span, p, label, input-text, button{
  font-family: 'Lora', serif;
}

/*PARALLAX*/
#Coleccion{
  scroll-margin-top:70px;
}

#scroll-animate
{
  overflow: hidden;
}

#scroll-animate-main
{
  width: 100%;
  left: 0;
  position: fixed;
}

#heightPage,
#heightScroll
{
  width: 10px;
  top: 0;
  position: absolute;
  z-index: 99;
}

#heightPage
{
  left: 0;
}

#heightScroll
{
  right: 0;
}

header
{
  position: relative; 
  width: 100%;
  height: 100%;
  line-height: 2000px;
  background: url("./Assets/laboral.webp") no-repeat 50% 50%;
  /*-webkit-transition: background-image 5s linear;*/
  background-size: cover;
  top: 0;
  position: fixed;
  z-index: -1;
}

/*header:hover {
  background-image: url(cuadro.jpg);
}*/

header img{
position: absolute; /* se usa en caso de este div, donde tiene la altura y el ancho definido, sin esto top, right y left no funcionarían */
width: 500px;
top: 10%; /* sirve en caso de un div como este, donde tiene una altura definida, en caso de que la altura no este definida esta edición no se pone ; */
right: 0; /* se debe usar para que margin 0 auto funcione */
left: 0; /* se debe usar para que margin 0 auto funcione */
margin: 0 auto; /* Esto lo centra */
}

footer
{
  width: 100%;
  height: 450px;
  background-color: #303030; 
  bottom: -100px;
  position: fixed;
  z-index: -1;
  display: flex;
  justify-content: center;
  vertical-align: top;
}

.content-body
{
  height: 3000px;
  min-height: 3000px;
  background: #ededed;
  position: relative;
  z-index: 1;
}

.wrapper-parallax {
  margin-top: 100%;
  margin-bottom: 300px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}
.color-fondo{
  position: absolute;
  display: flex;
  align-items: center;
  /*width: 850px;*/
  height: 1000px; 
  top: 100;
  left: 0;
  background: rgba(7, 33,70, .4);
}

header h1{
  width: 100%;
  height: 100%;
  margin-top: 10%;
  text-align: center;
  /*text-align: left;*/
  font-size: 50px;
  color: #fff;
  line-height:35px;
}

header span{
  font-size: 25px;
}

header h3{
  width: 100%;
  height: 100%;
  margin-top: 30%;
  text-align: left;
  /*text-align: left;*/
  font-size: 120px;
  color: #fff;
}

.linea-padre{
  width: 100%;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 100px;
}

.linea{
  width: 250px;
  border-bottom-style: solid;
  border-color: black;
  border-width: 1px;
  display: inline-block;
}

.linea2{
  width: 90%;
  border-bottom-style: solid;
  border-color: black;
  border-width: 1px;
  display: inline-block;
}

.titulo-seccion{
  text-align: center;
  padding-top: 50px;
}

header,
footer,
#scroll-animate-main
{
  -webkit-transition-property: all;
     -moz-transition-property: all;
      transition-property: all;

  -webkit-transition-duration: 0.4s;
     -moz-transition-duration: 0.4s;
      transition-duration: 0.4s;

  -webkit-transition-timing-function: cubic-bezier(0, 0, 0, 1);
     -moz-transition-timing-function: cubic-bezier(0, 0, 0, 1);
      transition-timing-function: cubic-bezier(0, 0, 0, 1);
}
/*TERMINA PARALLAX*/
/*EMPIEZA MENU DE BOTONES*/
.menu { 
  background-color: #303030; 
  min-height: 85px;
  width: 100%; 
  align-items: right;
  left: 0; /* Posicionamos la cabecera al lado izquierdo */
  top: 0; /* Posicionamos la cabecera pegada arriba */
  position: fixed; /* Hacemos que la cabecera tenga una posición fija */
  z-index:3;
  padding-top: 10px;
  padding-right: 40px;
  padding-left: 40px;
}
.btn {
  line-height: 50px;
  height: 50px;
  text-align: center;
  width: 15%;
  cursor: pointer;
}
.img {
  width: 10%;
  float: right;
  margin-right: 10px;
}
.btn-one {
  color: /*#171414*/#FFFFFF;
  transition: all 0.3s;
  position: relative;
  display:none;
}
.btn-one span {
  transition: all 0.3s;
  font-size: 15px;
}
.btn-one::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-top-style: solid;
  border-bottom-style: solid;
  border-top-color: /*#171414*/#FFFFFF;/*rgba(255,255,255,0.5);*/
  border-bottom-color: /*#171414*/#FFFFFF;/*rgba(255,255,255,0.5);*/
  transform: scale(0.1, 1);
}
.btn-one:hover span {
  letter-spacing: 2px;
}
.btn-one:hover::before {
  opacity: 1; 
  transform: scale(1, 1); 
}
.btn-one::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.3s;
}
.btn-one:hover::after {
  opacity: 0; 
  transform: scale(0.1, 1);
}
/*TERMINA MENU DE BOTONES*/
/*EMPIEZA MENU DESPLEGABLE CON X*/
.menu-toggle-btn {
  display: block;
  margin-top: 24px;
   margin-left: 30px;
   cursor: pointer;
   width: 25px;
   height: 30px;
}
 .menu-toggle-btn span {
   background: #FFFFFF;
   display: block;
   width: 30px;
   height: 2px;
   border-radius: 5px;
   margin-bottom: 7px;
   -webkit-transition: all 0.5s linear;
   transition: all 0.3s linear;
}
 .menu-toggle-btn.open span:nth-child(1), .menu-toggle-btn.open span:nth-child(3) {
   transform: translate(0px, 13px) rotate(-45deg) scalex(1.3);
   margin: 0;
}
 .menu-toggle-btn.open span:nth-child(2) {
   height: 0;
   margin: 0;
}
 .menu-toggle-btn.open span:nth-child(3) {
   transform: translate(0px, 9px) rotate(45deg) scalex(1.3);
}

/*-------------------------------*/

.dropdown-content {
  display: none;
  position: absolute;
  /*height: 235px;*/
  top: 85px;
  background-color: #f1f1f1;
  min-width: 160px;
  width: 50%;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  /*padding: 12px 16px;*/
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 40px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ECD0A7;
}

.servicio-dropdown {
  display: none;
  position: relative;
  /*height: 235px;*/
  top: 0px;
  background-color: #DFDFDF;
  min-width: 160px;
  width: 100%;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.servicio-dropdown a {
  color: black;
  /*padding: 12px 16px;*/
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 60px;
  text-decoration: none;
  display: block;
}

.servicio-dropdown a:hover {
  background-color: #ECD0A7;
}

.servicio-dropdown-menu {
  text-align: left;
  display: none;
  position: relative;
  /*height: 235px;*/
  top: 15px;
  background-color: #DFDFDF;
  min-width: 160px;
  width: 400px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.servicio-dropdown-menu a {
  color: black;
  /*padding: 12px 16px;*/
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 40px;
  text-decoration: none;
  display: block;
}

.servicio-dropdown-menu a:hover {
  background-color: #ECD0A7;
}

.show {display: block;}
@media (min-width: 600px) {
  .img {
    margin-right: 30px;
    width: 10%;
  }
@media (min-width: 900px) {
  .img {
    margin-right: 30px;
    width: 10%;
  }
 @media (min-width: 1000px) {
  .menu-toggle-btn {
    display: none;
  }
  .img {
    margin-left: 50px;
  }
  .btn-one {
    display: block;
  }
  .menu{
    padding-top: 5px;
    align-items: center;
    display: flex;
  }
}
/*TERMINA MENU DESPLEGABLE CON X*/
/*EMPIEZA BOTON CONSULTA*/
* {
   box-sizing: border-box;
}

:root {
  --button-height: 60px;
}

html {
  box-sizing: border-box;
  height: 100%;
}

.Button {
  background: 4px solid white;
  border: none;
  display: inline-block;
  height: var(--button-height);
  overflow: hidden;
  padding: 0 40px;
  position: absolute;
}

.Button,
svg {
  cursor: pointer;
  font-size: 24px;
}
/*TERMINA BOTON CONSULTA*/
/*EMPIEZA CLASE*/
.clase-section{
  margin-top: 0px;
  width: 100%;
  height: 600px;
}

.clase-div-img{
  width: 50%;
  float:right;
  height: 100%;
  background-size: cover;
  background-position: left;
}

.clase-div-content{
  display: flex;
  align-items: center;
  text-align: center;
  width: 50%;
  float:left;
  height: 100%;
}

.clase-div-img-r{
  width: 50%;
  float:left;
  height: 100%;
  background-size: cover;
  background-position: left;
}

.clase-div-content-r{
  display: flex;
  align-items: center;
  text-align: center;
  width: 50%;
  float:right;
  height: 100%;
}

.clase-div-content-texto{
  margin: 0 auto;
  padding-top: 0px;
  padding-left: 150px;
  padding-right: 150px;
}

.clase-div-content-texto h1{
  font-size: 30px;
}

.clase-div-content-texto span{
  font-size: 20px;
}
/*TERMINA CLASE*/
/*EMPIEZA FOOTER*/
.mapa{
  top: 0;
  margin-bottom: 8%;
  margin-right: 5%;
  margin-left: 5%;
  margin-top: 3%;
}
.redes{
  top: 0;
  margin-bottom: 8%;
  margin-right: 5%;
  margin-left: 5%;
  margin-top: 3%;
}
.servicios{
  top: 0;
  margin-bottom: 8%;
  margin-right: 5%;
  margin-left: 5%;
  margin-top: 3%;
}
footer p{
  font-size: 10.0pt; 
  color: #cea454;
}

footer h2{
  font-size: 12.0pt;
  color: #CECECE;
}

footer iframe{
  width: 350px;
  height: 250px;
}
/*TERMINA FOOTER*/