* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}


/*----------------NAVNUEVO-------------------------*/
nav {
  width: 100%;
  background-color: #5E17EB;
  box-shadow:  2.8px 2.2px rgba(0, 0, 0, 0.034),
  0 6.7px 5.3px rgba(0, 0, 0, 0.048),
  0 12.5px 10px rgba(0, 0, 0, 0.06),
  0 22.3px 17.9px rgba(0, 0, 0, 0.072),
  0 41.8px 33.4px #00000016,
  0 100px 80px rgba(0, 0, 0, 0.12);
  z-index: 100;
}

nav.scroll {
  background-color:#00000090;
  color: #fff;
}
nav::after {
  content: "";
  clear: both;
  display: table;
}
nav ul {
  float:right;
  list-style: none;
  margin-right: 40px;
  position: relative;
}
nav ul li {
  float: none;
  display: inline-block;
  background:transparent;
  margin: 0 20px;
  line-height: 50px;
}

nav ul li a {

  color: #fff;;
  text-decoration: none;
  line-height: 14px;
  font-size: 14px;
  padding: 7px 15px;
  transition: .2s ease;
  border-radius: 3px;
}
nav ul li a:hover {
    box-shadow: inset 0 0 0 1px #fff;
}

.fontsize {
  font-size: 18px;
  padding: 8px 10px;
}



nav ul ul {
  position: absolute;
  top: 90px;
  opacity: 0;
  visibility: hidden;
  transition: top 0.2s;
}

nav ul li:hover > ul {
  top: 60px;
  opacity: 1;
  visibility: visible;
  z-index: 20;
}
nav ul ul li {
  position: relative;
  margin: 0px;
  width: 250px;
  float: none;
  display: list-item;
  border-bottom: 1px solid #ffd166;
  text-align: left;
}
.flex-container{
  width: 90%;
  margin: auto;
}
.logo-nav  {
  margin-top: 10px;
  margin-left: 50px;
  float: left;
}
.logo-nav > a{
  color: #fff;
  font-family: 'Poppins';
  text-decoration: none;
  font-weight: 700;
  line-height: 45px;

  
}





/*----------------LANDINGPAGE---------------*/


.encabezado{

  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  height: 100vh;
  margin: auto;
 

  }


  .a_encabezado{
    text-decoration: none;
    font-weight: 700;
    background-color: #07999250;
    color: #fff; 
    padding: 2px; 
    border-radius:3px;
  }

  .flexa{
    display: flex;
  }
  .flexa a {
    margin-right: .5em;
  }
  /*-----------COMIENZA EL SLIDE-------------*/

  main{
    padding-bottom: 10vh;
    background-color: #5E17EB;
  }
 

/*-----------TERMINA EL SLIDE-------------*/

.titulo {
  flex: 1;
   align-items:left;
   animation: up 2s;

}
@keyframes up {
  0% {
    opacity: 0;
    transform: translateY(80px);    
  }

  100% {
    opacity: 1;
    transform: translate(0);
  }
}

.titulo h1 {
  color: #e7e7e7;
  font-size: 2em;
  font-family: 'Merriweather';
  font-weight: 800;
}


.titulo p {
  color: #e7e7e7;  
  font-size: 16px;
}
.titulo h3 {
  font-weight: 300;
  font-size: 20px;
  color: #fff;
}
.firstbtn{
  color:#5E17EB;
  font-size:.8em;
  background-color: #e7e7e7;
  border: none;
  padding:1em;
  border-radius: 2em;
  cursor: pointer;
  text-decoration: none;
  transition:.2s ease;
}
.firstbtn:hover{
  color:#fff;
  background-color: #00C2CB;
}
.secbtn{
  border-radius: 2em;
  font-size: .8em;
  color: #fff;
  background-color: transparent;
  border: .1em solid #fff;
  padding: 1em;
  cursor: pointer;
  text-decoration: none;
  transition:.3s ease;
}
.secbtn:hover{
  color: #454448;
  background-color: #ffd166;
  padding:1em 1.9em;
  border: none;
}

.imagen{
  flex: 1;
  padding: 20px;
}

.imagen > img {
  margin-top: 50px;
  width: 100%;
}

.imagen > img {
  animation-duration: 2s;
  animation-name: slidein;
  overflow: hidden;
}

@keyframes slidein {
  0% {
    opacity: 0;
    transform: translateY(-80px);    
  }

  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@media screen and (max-width: 480px) {

  .titulo {
    align-items:center;
    text-align: center;
  }
}



/*--------------------------   MEDIA-QUERY ENCABEZADO  -------------*/

@media (max-width: 916px) {
  
  .encabezado{
    display: flex;
    flex-direction:column-reverse;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 100px;
    height: 48em;
  }
  
  .titulo {
   
    flex: 1;
    padding:20px;
    align-items:center;
  
  
  }
  
  .imagen{
    flex: 1;
    margin-top: 100px;
    
  }
  
  .imagen > img {
    margin-top: 100px;
  }

  .flexa{
    flex-direction: column;
    padding-bottom: 3em;
  }
  .flexa a{

    margin-top: .5em;
  }

}

/* Nueva seccion de herramientas */

.herramientas{

display: flex;
justify-content:space-around;
align-items: center;
width: 90%;
margin: 4em auto;
}

.img{
margin: 25px;
flex:1;
}

.img img{
width: 100%;
}

.text-herramientas{
 flex: 1; 
 margin: 25px 0px 0px 25px;
}

.text-herramientas h2{
  font-family: 'Merriweather';
  font-size: 2.5em;
  font-weight: 800;
  color: #424242;
  margin-bottom: .5em;
}

.text-herramientas a{
  color: #e7e7e7;
  background-color: #5E17EB;
  text-decoration: none;
  padding:1em 1.4em;
  border-radius:2em;
  transition: .3s ease all;

}
.text-herramientas a:hover{
  
    color: #454448;
    background-color: #ffd166;
    padding:1em 2.5em;
    border: none;
  
}

.text-herramientas a:hover{
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }

.text-herramientas img{
  margin-top: 2em;
  width: 100%;
  transition: .2s ease all;
}


 /* argument */

 .argument{
   display: flex;
   width: 90%;
   margin: auto;
   justify-content: space-around;
   margin-bottom: 100px;
 }

 .caja{
   width:400px;
   height:300px;
   margin: 10px;
   background-color: #f1f1f1;
   border-radius: 10px;
   padding: 25px;
   transition: .2s ease all;
 }

 .caja:hover{
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  height:310px;
 }

 .caja i {
   margin-bottom: 130px;
 }
 
 .bxs-search{
   color: #FBB03B;
 }
 .bxs-chat{
   color: #5E17EB;
 }

 .bxs-check-circle{
   color: #00C2CB;
 }

 /* suite */

 .suite{
   display: flex;
   width: 90%;
   margin:100px auto ;
   justify-content: center;

 }

 .text-suite{
   flex: 1;
   display: flex;
   justify-content: center;
   flex-direction: column;
 }
 .text-suite h2{
  font-family: 'Merriweather';
  font-size: 3em;
  font-weight: 800;
  color: #424242;
 }

 .text-suite p{
  font-size: 20px;
  
}

 .flex-caja{
   display: flex;
   width: 95%;
   justify-content: space-around;
 }
 .caja-suite{
   border-radius: 10px;
   width: 200px;
   height: 200px;
   padding: 20px;
   background-color: #f1f1f1;
   margin-right: 10px;
   transition: .2s ease all;
 }

 .caja-suite:hover{
  height:210px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
 }

 .caja-suite h6{
  font-family: 'Merriweather';
  font-weight: 800;
  color: #424242;
 }

 .caja-suite p{
   font-weight: 200;
   font-size: 12px;
 }

 .caja-suite i{
   margin-bottom: 50px;
 }

 

 .img-suite{
   flex: 1;
 }

 .img-suite img {
   width: 100%;
   border-radius: 10px;
   box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
 }

 .bxs-bolt-circle{
   color: #FBB03B;
 }

 .bx-money{
   color: #00C2CB;
 }

 .bx-group{
   color: #5E17EB;
 }

 .tools-grid{
   width: 90%;
   display: flex;
   margin:auto;
   justify-content: center;
   margin-bottom: 100px;
 }

 .tools-grid img {
   width: 100%;
 }

 .option{
   display: flex;
   justify-content: space-between;
   width: 90%;
   margin: auto;
 }

 .escuela{
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   flex:1;
   border-radius: 10px;
   margin: 10px;
   background-image: url('SRC/escuela.png');
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
   width: 100%;
   transition: .3s ease all;
 }


 .negocio{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  margin: 10px;
  flex: 1;
  background-image: url('SRC/negocio.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 400px;
  transition: .3s ease all;
}
.negocio p, .escuela p {
  color: #e7e7e7;
  font-size: 25px;
  margin-bottom: 10px;
  
}

.negocio a, .escuela a{
  font-weight: 600;
  text-decoration: none;
  background-color: #e7e7e7;
  color: #5E17EB;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 15px;
}

.negocio:hover,.escuela:hover{
  box-shadow: 5px 5px rgba(0, 98, 90, 0.4),
  10px 10px rgba(0, 98, 90, 0.3),
  15px 15px rgba(0, 98, 90, 0.2),
  20px 20px rgba(0, 98, 90, 0.1),
  25px 25px rgba(0, 98, 90, 0.05);  }




/*-------------------FOOTER-------------------*/

footer{
  margin-top: 100px;
  padding: 40px 0;
  background-color:#15181f;
}

.content-footer{

  display: flex;
  justify-content: center;

}

.sm, .rs, .cu {
  margin: 70px;

}
.sm, .rs, .cu,  h4{
  margin-bottom: 10px;
  font-size: 15px; 
  font-weight: 600;
}
.sm, .rs, .cu, li {
  list-style: none;
}

.rs ul {
  display: flex;
}
.rs ul li {
  margin-right: 10px;
}

.sm, .rs, .cu, li a {
  text-decoration: none;
  color: #7c8ca8;
  font-size: 12px;
  font-weight: 300;
  
}

  .hr2 {
      text-align: center;
      width: 60%;
      border: 0;
      height: 1px;
      margin: 20px auto;
      background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.75), rgba(0, 0, 0, 0));
  }
  
  footer p {
      padding: 15px;
      text-align: center;
      color: #7c8ca8;
      font-size: 12px;
      font-weight: 200;
  }

  .logo-footer{
    display: flex;
    align-items: center;
  }

  .logo-footer ul li a{
    font-size: 20px;
    font-weight: 600;
    color: #e7e7e7;
    cursor: pointer;
    

  }

    /*---------------------RESPONSIVE SIDENAV---------------*/

.show,
.input,
.icon {
  display: none;
}
@media screen and (max-width: 768px) {
  nav ul {
    margin-right: 0px;
    float: center;
  }

  nav .logo-nav {
    padding-left: 65px;
    width: 100%;
  }

  nav ul li,
  nav ul ul li {
    float: left;
    display: block;
    width: 100%;
    text-align: center;
    padding-left: 0;
    border-bottom: none;
    }

  nav ul ul {
    top: 90px;
    position: static;
    border-top: none;
    float: none;
    display: none;
    opacity: 1;
    visibility: visible;
  }
  .show {
    display: block;
    color: #ffffff;
    font-size: 20px;
    padding: 0 20px;
    line-height: 70px;
    cursor: pointer;
  }

 
  .show:hover {
    color: #ffffff;
  }

  .icon {
    position: absolute;
    display: block;
    right: 40px;
    color: #fff;
    line-height: 70px;
    font-size: 25px;
    cursor: pointer;
  }

  .show + a,
  ul {
    display: none;
  }

  [id^="btn"]:checked + ul {
    display: block;
  }
}

/*----------------------------NAVHIDDEN-------------------*/


@media screen and (max-width: 538px) {
  .flex-container__nav {
    justify-content: center;
  }
  .flex-item__landimg {
    margin-top: 30px;
  }
}

  @media screen and (max-width:922px) {
    
    .content-footer{
      flex-direction: column;
    }
    .logo-footer{
      display: block;
    }
  }



  @media (max-width: 768px) {

  .herramientas{
    
    flex-direction: column ;

  }
  .suite{
    flex-direction: column ;
 

  }
  .flex-caja{
    flex-direction: column ;

  }
  .argument{

    flex-direction: column;
    

  }
  .flex-caja{
    margin: auto;
  }
  .flex-caja>.caja-suite{
    margin-top: 10px;
  }
  .img-suite img{
   margin-top: 20px;
   width: 98%;
  }

  .caja-suite{
    width: 100%;
  }

  .caja{
    margin: 10px auto;
    width: 90%;
  }

  .text-suite p {
    margin: 15px auto;
  
}

.option{
  flex-direction: column;
  height: 500px;
}

  }