@import url('https://fonts.googleapis.com/css2?family=Sansita:wght@400;700;800&display=swap');
*{
    font-family: 'Sansita', sans-serif;
    text-transform: capitalize;
    text-decoration: none;
    outline: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
        font-family: 'Poppins', sans-serif;
}

/* Estilo icon wsp */

a.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-size: 30px;
  color: #fff;
  background-color: #25d366;
  padding: 10px;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

a.whatsapp:hover {
  background-color: #128c7e;
}

/* img fondo inicio */
header{
    width: 100%;
    height: 40vh;
    background-image: url(../img/hederclient.JPG);
    background-size: cover;
    background-position: center;
}
/* barra de navegacion */
.nav{
    position: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    transition: all 0.5s ease;
}

@media(max-width:700px){
  .nav{
      justify-content: space-between;
  }
  .logo img{
      margin-left: 100px;
  }
}

.nav.active{
    background: #fff;
    padding: 15px;
    box-shadow: 0 .2rem 3.5rem rgb(0, 0, 0, .4);
    z-index: 101;
}
/* se activa con scroll */
.nav.active .logo{
    color: rgb(0, 4, 250);
    font-weight: 800;
}
.nav.active a,
.nav.active .menu-btn{
    color: rgb(0, 0, 0);
}

.nav.active a:hover{
    background: rgb(0, 4, 250);
    color: #fff;
}
.logo img{
    width: 150px;
    height: 75px;

}
.logo{

    font-size: 25px;
    color: #fff;
    font-weight: 600;
}
.menu{
    display: flex;
}
.menu li{
    list-style: none;
    margin: 20px
}
.menu li a{
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.5s ease;
}
.menu li a:hover{
    padding: 5px 10px;
    background: #fff;
    color: #000;
    border-radius: 15px;
}
.scrol{
    height: 100px;
}

.menu-btn{
    color: white;
    font-size: 20px;
    display: none;
    cursor: pointer;
}

@media screen and (max-width:1035px){

  .nav{
    justify-content: space-between;
}

    .menu-btn{
        display: block;
    }
    .menu{
      position: fixed;
      top: 0;
      left: 0;
      width: 155px;
      height: 100vh;
      background: red;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: all 0.5s ease;
      transform: translateX(-100%);
      z-index: 9999;
  }
  .menu li{
      margin: 15px 0;
  }    
  
  .menu.active{
      transform: translateX(0);
  }

  .nav.active a, .nav.active {
      color: rgb(255, 255, 255);
  }
}

/* responsive logo nav */

@media only screen and (max-width: 1035px){
  .logo img {
    margin-left: 435px;
}
  }

  @media only screen and (max-width: 930px){
      .logo img {
        margin-left: 400px;
    }
      }
  
      @media only screen and (max-width: 860px){
          .logo img {
            margin-left: 350px;
        }
          }
      

/* contenido del header */
.header-cont{
    max-width: 600px;
    height: 450px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-cont h2{
    font-size: 95px;
    color: #fff;
    text-transform: uppercase;
    
}
.header-cont h2 span{
    color: red;
}

.header-cont p{
    font-size: 20px;
    color: rgb(255, 255, 255);
    font-weight: 300;
}

/* Responsive header cont */

@media screen and (max-width: 820px){

  .header-cont h2{
    font-size: 95px;
}

}

@media only screen and (max-width: 820px){
.logo img {
  margin-left: 330px;
}
}

@media screen and (max-width: 768px){

  .header-cont h2{
    font-size: 95px;
}

}

@media only screen and (max-width: 768px){
.logo img {
  margin-left: 300px;
}
}

@media screen and (max-width: 768px){

  .header-cont h2{
    font-size: 75px;
}

}

@media only screen and (max-width: 670px){
  .logo img {
    margin-left: 250px;
  }
  }

@media only screen and (max-width: 600px){
.logo img {
  margin-left: 200px;
}
}

@media screen and (max-width: 500px){

  .header-cont h2{
    font-size: 65px;
}

}

@media only screen and (max-width: 500px){
.logo img {
  margin-left: 150px;
}
}

@media screen and (max-width: 425px){

  .header-cont h2{
    font-size: 55px;
}

}

@media only screen and (max-width: 425px){
.logo img {
  margin-left: 120px;
}
}

@media screen and (max-width: 375px){

  .header-cont h2{
    font-size: 45px;
}

}

@media screen and (max-width: 360px){

  .header-cont h2{
    font-size: 45px;
}

}

@media only screen and (max-width: 390px){
  .logo img {
    margin-left: 100px;
  }
  }

@media only screen and (max-width: 360px){
.logo img {
  margin-left: 90px;
}
}

@media screen and (max-width: 305px){

  .header-cont h2{
    font-size: 40px;
}

}

@media only screen and (max-width: 305px){
.logo img {
  margin-left: 50px;
}
}

.line{
    width: 500px;
    height: 4px;
    background: rgb(0, 4, 250);
    margin: 10px auto;
    border-radius: 5px;
}

.container{
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    padding: 80px 0;
    max-width: 1200px;
}

.subtitle{
    color: red;
    font-size: 2.5rem;
    margin-bottom: 35px;
}

.about{
    min-height: 400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 80px;
    justify-items: center;
    align-items: center;
}

.about_img{
    text-align: center;
}

.about_img--left{
    text-align: left;
}

.about_picture{
    max-width: 80%;
}

.about_paragraph{
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 300;
}

.testimonios {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .testimonios h2 {
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
color: red;  }
  
  .testimonios p {
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .testimonio {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border: 2px solid rgb(0, 4, 250);
    border-radius: 10px;
    background-color: #f7f7f7;
    max-width: 800px;
    margin: 20px auto 0;
  }
  
  .testimonio img {
    width: 150px;
    height: 150px;
    margin-right: 20px;
    border-radius: 50%;
  }
  
  .contenido {
    display: flex;
    flex-direction: column;
  }
  
  .texto {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  
  .autor {
    font-size: 1.5em;
    font-weight: bold;
    color: red;
  }

  

  @media screen and (max-width: 768px) {

    .nav{
        justify-content: space-between;
    }
    

    .testimonio {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    
    .testimonio img {
      margin-right: 0;
      margin-bottom: 20px;
    }
  }

  @media screen and (max-width: 480px) {
    .testimonios {
      padding: 10px;
    }
  
    .testimonios h2 {
      font-size: 24px;
    }
  
    .testimonios p {
      font-size: 16px;
    }
  
    .testimonio img {
      width: 100px;
      height: 100px;
    }
  
    .texto {
      font-size: 16px;
    }
  
    .autor {
      font-size: 14px;
    }
  }

  .logoss {
    text-align: center;
  }
  
  .logoss h2 {
    font-size: 24px;
    font-weight: bold;
  }
  
  .logoss ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .logoss li {
    display: inline-block;
    margin: 10px;
  }
  
  .logoss img {
    max-width: 200px;
    max-height: 175px;
    padding: 5px;
  }

  /*:::::Pie de Pagina */
.pie-pagina{
  width: 100%;
  background-color: #f8f8f8;
}

.pie-pagina .grupo-1{
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
  padding: 45px 0px;
}

.pie-pagina .grupo-1 .box figure{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pie-pagina .grupo-1 .box figure img{
  width: 250px;
}

.pie-pagina .grupo-1 .box h2 {
  color: #ff0000;
  margin-bottom: 25px;
  font-size: 20px;
}

.pie-pagina .grupo-1 .box p{
  color: #000000;
  margin-bottom: 10px;
}

.pie-pagina .grupo-1 .red-social a{
  display: inline-block;
  text-decoration: none;
  width: 45px;
  height: 45px;
  line-height: 45px;
  color: rgb(0, 4, 250);
  margin-right: 10px;
  background-color: #f0f0f0;
  text-align: center;
  transition: all 300ms ease;
}

.pie-pagina .grupo-1 .red-social a:hover{
  color: red;
}

.pie-pagina .grupo-2{
  background-color: #e2e2e2;
  padding: 15px 10px;
  text-align: center;
  color: #000000;
}

.pie-pagina .grupo-2 small{
  font-size: 15px;
}

@media screen and (max-width: 800px){
  .pie-pagina .grupo-1{
      width: 90%;
      grid-template-columns: repeat(1, 1fr);
      grid-gap: 30px;
      padding: 35px 0px;
  }
}