
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');


:root{
    --padding-container:100px 0;
    --color-title:#001A49;
}

  body{
    font-family: 'Poppins',sans-serif;
  }

    .btn-wsp{
    position:fixed;
    width:60px;
    height:60px;
    line-height: 63px;
    bottom:25px;
    right:25px;
    background:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:35px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
    z-index:100;
    transition: all 300ms ease;
}
.btn-wsp:hover{
    background: #20ba5a;
}
@media only screen and (min-width:320px) and (max-width:768px){
    .btn-wsp{
        width:63px;
        height:63px;
        line-height: 66px;
	}
}

  .container{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: var(--padding-container);

  }
  .hero{
    width: 100%;
    /* height: 100vh;
    min-height: 600px; */
    max-height: 800px;
    position: relative;
    display: grid;
    grid-template-rows: 100px 1fr;
    color: white;
  }

  .hero::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #0000008c 0%, #0000008c 100%), url(../IMG/IMG_2447.png);
    background-size: cover;
    /* clip-path: polygon(50% 0%, 100% 0, 100% 35%, 100% 80%, 80% 90%, 50% 100%, 20% 90%, 0 80%, 0% 35%, 0 0); */
    z-index: -1;
  }
  


  /* NAV */
  .nav{
    --padding-container:0;
    height: 100%;
    display: flex;
    align-items: center;
  }


  .nav_title{
    font-weight: 300;
  }

  .nav_items{
    list-style: none;
  }



  .nav_link,.nav_links2{
    margin-left: auto;
    padding: 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 2em;
  }

  .nav_links{
    color :white;
    text-decoration: none;
  }
  .nav_links2{
    color: black;
    text-decoration: none;
  }


  .nav_menu{
    margin-left: auto;
    cursor: pointer;
    display: none;
  }


  .nav_img{
    display: block;
    width: 30px;
  }



  .nav_close{
    display: var(--show, none);
  }

  /* Hero contaier */

  .hero_container{
    max-width: 800px;
    --pading-container:0;
    display: grid;
    grid-auto-rows: max-content ;
    align-content: center;
    gap: 1em;
    padding-bottom: 100px;
    text-align: center;
  }

  .hero_title{
    font-size: 3rem;
    -webkit-text-stroke: 1px palevioletred; /* Ancho y color del borde */
  }
  .hero_paragraph{
    font-size: 20px;
    margin-bottom: 20px;
    /* Estilo básico con borde en las letras */
    color: #fff; /* Color del texto */

 /
  }
  .cta{
    display: inline-block;
    background-color: palevioletred;
    justify-self: center;
    color: #fff;
    text-decoration: none;
    padding: 13px 20px;
    border-radius: 30px;
  }


  /* About */

  .about{
    text-align: center;
  }
  .subtitle{
    color: var(--color-title);
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .about_paragraph{
    line-height: 1.7;
  }

  .about_main{
    padding-top: 80px;
    display: grid;
    width: 100%;
    margin: 0 auto;
    align-items: center;
    gap: 2em;
    overflow: hidden;
    grid-template-columns: repeat(auto-fit, minmax(260px,auto));
  }

  .more_content{
    display: flex;
    justify-content: center;
  }

  .info{
    margin-top: 40px;
  }

.about_icons{
   
    gap: 1em;
    justify-items: center;
    width: 260px;
    align-items: center;
    overflow: hidden;
    margin: 0 auto;
  }
  .about_icon{
    width: 40px;
  }  


.equipo{
  padding-top: 70px;
  padding-left: 100px;
}


/* TESTIMONY */
.testimony{
    background-color: #e5e5f7;

  }

.testimony_container{
  display: grid;
  grid-template-columns: 50px 1fr 50px ;
gap: 1em;
padding-top: 50px;
padding-bottom: 50px;

}

.testimony_body{
  display: grid;
  grid-template-columns: 1fr max-content;
  justify-content: space-between;
  align-items: center;
  gap: 2em;
  grid-column: 2/3;
  grid-row: 1/2;
  opacity: 0;
  pointer-events: none;
}

.testimony_body--show{
  pointer-events: unset;
  opacity: 1;
  transition: opacity 1.5s ease-in-out;
}
.testimony_img{
  width: 350px;
  height: 350px;
  border-radius: 5%;
  object-fit: cover;
  object-position: 50% 30%;
}

.testimony_text{
  max-width: 700px;
}

.testimony_course{
  background-color: royalblue;
  color: #fff;
  display: inline-block;
  padding: 5px;
}
.testimony_arrow{
  width: 90%;
  cursor: pointer;
}

/* CONTADOR */

  .wrapper{
    background-color: #007A86;
    padding: 0;
    border: 1px solid white;
    position: relative;
    width: 100vw;
    transform: translate(-50%, 0);
    top: 50%;
    left: 50%;
    display: flex;
    justify-content: space-around;
  }
  .containe{
    width: 28vmin;
    height: 28vmin;
    
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 1em 0;
    position: relative;
    font-size: 16px;
    border-radius: 0.5em;
    background-color: #007A86;
    border-bottom: 10px solid #dc4a6f;
  }


 .img_contador{
    color: #dc4a6f;
    font-size: 2.5em;
    text-align: center;
  }  

  span.num{
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: 3em;
  }

  span.text{
    color: #fff;
    font: optional;
    text-align: center;
    pad: 0.7em 0;
    font-weight: 400;
    line-height: 0;
  }

  @media screen and (max-width: 1024px) {

    .wrapper{
      width: 85vw;
    }

    .containe{
      height: 26vmin;
      width: 26vmin;
      font-size: 12px;
    }
    
  }

  @media screen and (max_-width: 768px) {
    .wrapper{
      width: 90vw;
      flex-wrap: wrap;
      gap: 30px;
    }

    .containe{
      width: calc(50% - 40px);
      height: 30vmin;
      font-size: 14px;
    }
    
  }


  @media screen and (max-width: 480px) {

    .wrapper{
      gap: 15px;
    }
    .containe{
      width: 100%;
      height: 25vmin;
      font-size: 8px;
    }
    
  } 

  /* knowledge */

.knowledge{ 
  background-color: #e5e5f7;
  background-image:  radial-gradient(#444cf7 0.5px, transparent 0.5px), radial-gradient(#444cf7 0.5px, #e5e5f7 0.5px);
  background-size: 20px 20px;
  background-position: 0 0,10px 10px;
  overflow: hidden;

  }

  .knowledge_container{
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 1em;
    align-items: center;
    padding: 20px;

  }
  .subtitle_2{
    color: var(--color-title);
    font-size: 1.5rem;
    margin-bottom: 25px;

  }

  .knowledge_picture{
    width: 500px;
   
  }

  /* .knowledge_paragraph{
    line-height: 1.7;
    margin-bottom: 15px;
  } */

  .footer_inputs{
    margin-top: 10px;
    display: flex;
    overflow: hidden;
  }
  
  .footer_input{
    background-color: #fff;
    height: 50px;
    display: block;
    padding-left: 10px;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    border: 1px solid black;
    margin-right: 16px;
  }
  
  .footer_submit{
    margin-left: auto;
    display: inline-block;
    height: 50px;
    padding: 0 20px;
    background-color: #2091f9;
    border: none;
    font-size: 1rem;
    color: #fff;
    border-radius: 6px;
  }

  .knowledge_img{
    width: 75%;
    display: block;
    border-radius: 30px;
  }

/* footer */

.footer{
  background-color: #007A86;
}

.footer_title{
  font-weight: 300;
  font-size: 2rem;
  margin-bottom: 30px;
}

.footer_title, .footer_newsletter{
  color: #fff;
}

.footer_container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #fff;
  padding-bottom: 60px;
}

.nav--footer{
  padding-bottom: 20px;
  display: grid;
  gap: 1em;
  grid-auto-flow: row;
  height: 100%;
}

.nav_link--footer{
  display: flex;
  margin: 0;
  margin-right: 20px;
  flex-wrap: wrap;
}

/* .footer_inputs{
  margin-top: 10px;
  display: flex;
  overflow: hidden;
}

.footer_input{
  background-color: #fff;
  height: 50px;
  display: block;
  padding-left: 10px;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  border: none;
  margin-right: 16px;
}

.footer_submit{
  margin-left: auto;
  display: inline-block;
  height: 50px;
  padding: 0 20px;
  background-color: #2091f9;
  border: none;
  font-size: 1rem;
  color: #fff;
  border-radius: 6px;
} */

.footer_copy{
  --padding-container: 30px 0 30px;
  text-align: center;
  color: #fff;

}

.footer_copyrigth{
  font-weight: 300;
}

.footer_icons{
  display: inline-flex;
  
}

.footer_img{
  width: 30px;
}

.footer_ubicacion{
  color: white;
  align-items: center;
}
.footer_ubi{
 display: flex;
  color: white;
  align-items: center;
  padding-bottom: 20px;
}

/* mobiles */

@media(max-width:800px){

  .hero::before{
    background-image: linear-gradient(180deg, #0000008c 0%, #0000008c 100%), url(../IMG/IMG_2447\ -\ Copy.png);

  }
  .nav_menu{
    display: block;
  }

  .nav_link--menu{
    position: fixed;
    background-color: #000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: .7s opacity;
  }
  .nav_link--show{
    --show: block;
    opacity: 1;
    pointer-events: unset;
  }
  .nav{
    padding-right: 10px;
  }
  .nav_close{
    position: absolute;
    top: 30px;
    right: 30px;
    width: 30px;
    cursor: pointer;
  }

  /* .testimony{
    padding: 60px;
  } */

  .about_paragraph{
    margin-left: 20px ;    
    margin-right: 20px;
  }
 .testimony_container{
grid-template-columns: 28px 1fr 28px;
gap: 0.9em;
  }

  .testimony_body{
    grid-template-columns: 1fr;
    grid-template-rows: max-content max-content;
    gap: 3em;
    justify-items: center;

  }

  .testimony_arrow{
    width: 100%;
  } 

  .container{
    width: 100%;
  }


  
  .wrapper{
    width: 100%;
  }



  .footer_submit{

    display: inline-block;
    height: 50px;
    padding: 0 20px;

    border: none;
    font-size: 1rem;
    color: #fff;
    border-radius: 6px;
    margin-bottom: 50px;
    margin-left: 0;

  }  

  
  .footer_input{
    background-color: #fff;
    height: 50px;
    width: 250px;
    display: block;
    padding-left: 10px;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    border: 1px solid black;
    margin-right: 16px;
  }

  .footer_inputs{
    gap: 1em;
    justify-items: center;
    align-items: center;
    flex-direction: column;
  }


.footer_title{
  margin-right: 20px;
  margin-left: 20px;
}

.footer_container{
  padding-top: 20;
}

.nav_link--footer{
  margin-left: 20px;
}

.footer{
  padding-top: 0;
}

  .footer_ubi{
    margin-left: 15px;
    align-items: baseline;
  }

  
}






