@import url(https://fonts.googleapis.com/css?family=Josefin+Slab);

*
{
    padding: 0; 
    box-sizing: border-box;
    margin: 0;

}

/* hijos directos de un div  > PRINCIPAL */

main>div {
min-height: 180px;

}

body, header,main,footer,section {
    min-height: 50px;
    /*margin: 0.5rem;*/
}

main {
    min-height: 200px;
    overflow: auto;
    background-color: #C1CFC0;
}

footer {
    background: #6B7AA1;
    width: 100%;
    text-align: center;
}

main>aside {
min-height: 100;
margin: 0.5rem;
}

main>section {
    min-height: 100;
    margin: 0.5rem;
}

    
.sections {
    min-height: 50px;
    margin: 0.5 rem;
}

.sections img {
        max-width: 100%;
        height: auto;
        opacity:0.8;
        filter:alpha(opacity=10); /* For IE8 and earlier */
        }


.cont-principal {
    position: relative;
    background : #C1CFC0
    
}



html {
  background-image: linear-gradient(to bottom, #e6eff0 80%, #eee);
  min-height: 100%;
  background-size: cover;
  box-sizing: border-box;
  font-family: Josefin Slab, sans serif;
}



article {
  height: 100vh;
  margin-bottom: 5vh;
  display: flex;
  align-items: center;
  background-size: cover;  
  background-position: center;
}
h1 {
  /*background: rgba(94, 72, 72, 0.4);*/
  background: rgba(246, 214, 167, 0.384);
  color: #fff;
  font-size: 10vw;
  font-weight: 100;
  text-align: center;
  width: 100%;
  line-height: 1;
}

.TituloSecundario {
  background-image: url("../IMAGES/Home.jpg");
  width: 100%;
}


.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0.8;
  transition: .3s ease;

}
.context:hover .overlay {
  opacity: 1;
}
[onClick]{
  cursor:pointer;
}
.text {
    display: table;
    width: 100%;
    height: 100%;
    font-size:1.2rem;
}
.text > div{
  display:table-cell;
  vertical-align:middle;
  }
  @media (max-width: 575.98px) {
    img{
      width:100%!important;
    }
    .titulo-paso{
      font-size:10px;
    }
   
    .bajada-paso {
      font-size: 10px;
      padding: 1% 15%;
    }
  }

  @media (max-width: 911.98px) {
    img{
      width:100%!important;
    }
    .titulo-paso{
      font-size:13px;
    }
   
    .bajada-paso {
      font-size: 10px;
      padding: 1% 15%;
    }
  }

  @media (max-width: 375px) {
    img{
      width:60%!important;
    }
    .titulo-paso{
      font-size:5px;
    }
   
    .bajada-paso {
      font-size: 5px;
      padding: 1% 15%;
    }
  }

  .como-funciona {
	width: 100%;
	padding: 40px 13%;
	background: #C1CFC0;
}

.contenedor-pasos {
  width: 100%;
  margin: 70px 0 0 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
}
.contenedor-pasos .paso {
	width: 20%;
	text-align: center;
	color: #272727;
	font-size: 100%;
}
.contenedor-pasos .paso .ilus-paso {
	width: 100%;
}
.contenedor-pasos .paso .titulo-paso {
	width: 100%;
	font-weight: 700;
	margin-top: 21px;
}
.contenedor-pasos .paso .bajada-paso {
	width: 100%;
	padding: 1% 15%;
}

.h2_
 {
    width: 100%;
    margin-top: 1px;
    text-align: center;
    font-family: 'Century Gothic', 'Nanum Gothic', sans-serif!important;
    font-weight: 400;
    font-size: 200%;
 }

 .h2_bis
 {
    width: 100%;
    text-align: center;
    font-family: 'Century Gothic', 'Nanum Gothic', sans-serif!important;
    font-weight: 300;
    font-size: 150%;
 }


 .vineta {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 30%;
  justify-content: space-between;
}

  .foot {
    font-family: "Helvetica Neue",Helvetica, Helvetica, sans-serif;
    height: inherit;
  }

 

/* ------------- */
/* UTILITIES */

   body {
    font-family: cursive;
    background: #f2f2f2;
    font-family: "Helvetica Neue",Helvetica, Helvetica, sans-serif;
    height: inherit;
   }

   a {
    text-decoration: none;
   }
   li {
    list-style: none;
   }

   /* NAVBAR STYLING STARTS */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #E7E0C9;
    color: black;
   }

   .nav-links a {
    color: black;
   }
   /* LOGO */
   .logo {
    font-size: 32px;
   }
   /* NAVBAR MENU */
   .menu {
    display: flex;
    gap: 1em;
    font-size: 18px;
   }
   .menu li:hover {
    background-color: #6B7AA1;
    border-radius: 5px;
    transition: 0.3s ease;
   }
   .menu li {
    padding: 5px 14px;
   }
   /* DROPDOWN MENU */
   .services {
    position: relative; 
   }
   .dropdown {
    padding: 1em 0;
    position: absolute; /*WITH RESPECT TO PARENT*/
    display: none;
    border-radius: 8px;
    top: 35px;
   }
   .dropdown li + li {
    margin-top: 10px;
   }
   .dropdown li {
    padding: 0.5em 1em;
    width: 8em;
    text-align: center;
   }
   .dropdown li:hover {
    background-color: #E7E0C9;
   }
   .services:hover .dropdown {
    display: block;
   }

   /*RESPONSIVE NAVBAR MENU STARTS*/
/* CHECKBOX HACK */
input[type=checkbox]{
    display: none;
   } 
   /*HAMBURGER MENU*/
   .hamburger {
    display: none;
    font-size: 24px;
    user-select: none;
   }
   /* APPLYING MEDIA QUERIES */
   @media (max-width: 768px) {
   .menu { 
    display:none;
    position: static;
    background-color: #E7E0C9;
    right: 0;
    left: 0;
    text-align: center;
    padding: 16px 0;
   }

   .menu li + li {
    margin-top: 12px;
   }
   input[type=checkbox]:checked ~ .menu{
    display: block;
   }
   .hamburger {
    display: block;
   }
   .dropdown {
    left: 50%;
    top: 30px;
    transform: translateX(35%);
   }

   }

   /**************************** FOOTER *********************************************************/
      
    .footer {

    
    flex-flow: row wrap;
    padding: 30px;
    color: #fff;
    background-color: #11324D;
  }
    

  .footer  a {
    color:#E7E0C9;
   } 


   