*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'poppins';
}

body{
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='12' viewBox='0 0 20 12'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='charlie-brown' fill='%23079992' fill-opacity='0.11'%3E%3Cpath d='M9.8 12L0 2.2V.8l10 10 10-10v1.4L10.2 12h-.4zm-4 0L0 6.2V4.8L7.2 12H5.8zm8.4 0L20 6.2V4.8L12.8 12h1.4zM9.8 0l.2.2.2-.2h-.4zm-4 0L10 4.2 14.2 0h-1.4L10 2.8 7.2 0H5.8z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  /*background-repeat: repeat;
  background-image: url('SRC/clientes/charlie-brown.svg');
  background-position: center;
  background-size: contain;*/
}

nav {
    position: fixed;
    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 rgba(0, 0, 0, 0.086),
    0 100px 80px rgba(0, 0, 0, 0.12);
    width: 100%;
    background-color:rgba(5, 23, 43, 1);
    color: #079992;
  }
  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: 70px;
  }
  
  nav ul li a {

    color:#079992;
    text-decoration: none;
    line-height: 14px;
    font-size: 14px;
    padding: 7px 15px;
    border-radius: 3px;
    transition: .2s ease;
  }
  nav ul li a:hover {
    
    background-color: #fff;
    color:rgba(5, 23, 43, 1);
  }
  
  .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;
  }
  
  .logo-nav {
    margin-top: 10px;
    float: left;
  }
  
  .logo {
    line-height: 90px;
      width: 145px !important;
      padding-left: 100px !important;
  }
  
  /*---------------------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;
      line-height: 70px;
      font-size: 25px;
      cursor: pointer;
    }
  
    .show + a,
    ul {
      display: none;
    }
  
    [id^="btn"]:checked + ul {
      display: block;
    }
  }


.logos{
    padding-bottom: 50px;
    padding-top: 100px;
    background-image: url('SRC/clientes/back.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 100px;
}

.text-logo{
    display: flex;
    justify-content: center;
    width: 80%;
    flex-direction: column;
    text-align: center;
    margin:0 auto 50px;
}

.text-logo h1{
    font-size: 40px;
    color: #fff;
}

.text-logo p{
    font-size: 20px;
    background: linear-gradient(to right, #00CBA9, #2163ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    margin-bottom: 15px;
}

.text-logo a{
    
    padding: 7px 10px;
    text-decoration: none;
    background-color: #00CBA9;
    color: #fff;
    border-radius: 3px;
    transition: .2s ease all;
}

.text-logo a:hover{

    color: #fff;
    background-color: rgba(5, 23, 43, 1);
    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 rgba(0, 0, 0, 0.086),
  0 100px 80px rgba(0, 0, 0, 0.12);

}

.logos-svg{
    display: flex;
    width: 80%;
    margin: auto;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
}

.svg-content img {
    cursor: pointer;
    width: 150px;
    transition: .2s ease all;
    border-radius: 10px;
}


.svg-content img:hover{
    transform: scale(.9);
    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 rgba(0, 0, 0, 0.086),
  0 100px 80px rgba(0, 0, 0, 0.12)

}

.union{
    display: flex;
    width: 90%;
    margin: auto;
    
}

.union img{
    width: 100%;
    border-radius: 10px;
}


.escuelas{
    width: 90%;
    margin: 50px auto;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
}

.escuelas h2{ 

    color: #424242;
    font-size: 40px;
}

.escuelas p{
    color: #079992;
    font-size: 20px;
}

.section {
    display: flex;
    justify-content: center;
    width: 80%;
    margin: auto;
    flex-direction: column;
}

.pasos {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 10px 10px;
    cursor: pointer;
    margin:10px auto;
    
}

.pasos h4{
    color: #424242;
    font-size: 30px;
}

.text{
    flex:1;
}
.img{
    flex:1;
    border-radius: 5px;
    width: 100%;
}

.mensaje{
    width: 90%;
    margin: auto;
    background-position: right;
    border-radius: 10px;
    display: flex;
    padding:50px 40px;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('SRC/clientes/mensaje.png');
    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 rgba(0, 0, 0, 0.086),
    0 100px 80px rgba(0, 0, 0, 0.12)
}

.mensaje h2{
  margin-left: 20px;
    font-size: 15px;
    font-weight: 400px;
    text-align: left;
    color: #fff;
}

.bx-message-dots{
    color: #fff;
}
/*---------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;
    }


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

        nav ul .li {
           display: none;
        }

        .bg{
            background-size: cover;
            height: 100vh;
            background-image: url('SRC/wave-haikei.svg');
        }

        .contenedor-marcas{
            width: 100%;
            align-items: center;
            justify-content: center;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            margin-bottom: 10px;
        }
        
        .clientes{
            border-radius: 5px;
            margin: 6px;
            box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
            transition: .2s ease all;
            height: 100px;
            width: 100%;
        }

        .content-footer{
            display: flex;
            justify-content: center;
            flex-direction: column;
        }

        .pasos {
            display: flex;
            align-items: center;
            width: 100%;
            flex-direction: column;
            justify-content: center;
            text-align: center;
            padding: 10px 10px;
            cursor: pointer;
            margin:10px auto;
            
        }


        
    }