
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');



:root{
    --padding-container:50px 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: 100%;
    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_2452.JPG);
    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;
  }
  .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;
    -webkit-text-stroke: 1px palevioletred; /* Ancho y color del borde */
  }

  .hero_title{
    font-size: 3rem;
    
  }
  .hero_paragraph{
    font-size: 20px;

    color: #fff; /* Color del texto */

 /
  }



  /* 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);
  }

ul{
  display: grid;
  justify-content: center;
}


  li{
    list-style: none;
    display: flex;
  }
  



/* Knowledge */

.cta{
    display: inline-block;
    background-color: palevioletred;
    justify-self: center;
    color: #fff;
    text-decoration: none;
    padding: 13px 20px;
    border-radius: 30px;
  }




  .about{
    text-align: center;
  }
  .subtitle{
    color: var(--color-title);
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .about_paragraph{
    line-height: 1.7;
    margin-top: 20px;
  }




.knowledge__container{
  margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    padding-bottom: 30px;
    padding-top: 30px;
}


.knowledge__picture{
    max-width: 500px;
}


.title_knowledge{
    display: flex;
    justify-content: center;
    padding-top: 30px; 
    color: var(--color-title);
    font-size: 2rem;
    margin-bottom: 25px;
    
}
.knowledge__paragraph{
    line-height: 1.7;
    margin-bottom: 15px;
}
.knowledge__paragraph2{
    font-size: 30px;
    color: white;
    line-height: 1.7;
    margin-bottom: 15px;
    -webkit-text-stroke: 1px palevioletred; 
    
}

.knowledge__img{
  border-radius: 2%;
  /* border: 1px solid #001A49; */
    width: 258px;
    height: 258px;
 
}

.diagnosticos{
  padding-left: 40px;
  display: flex;
  align-items: center;
  color: white;
  height: 100px;
  background-color: #007A86;
}


.knowledge__container3{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;

  padding-top: 30px;

 
}

.knowledge3{
  background-image: url(../IMG/Fondo_empresa.jpeg);
  z-index: -1;
  background-size: cover;
}



/*  */



.card {
  position: relative;
  width: 300px;
  height: 350px;
  
}

.card .face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
  transition: .5s;
}

.card .front {
  transform: perspective(600px) rotateY(0deg);
  box-shadow: 0 5px 10px #000;
}

.card .front img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card .front h3 {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 45px;
  line-height: 45px;
  color: #fff;
  background: rgba(0,0,0,.4);
  text-align: center;
}

.card .back {
  transform: perspective(600px) rotateY(180deg);
  background: rgb(3, 35, 54);
  padding: 15px;
  color: #f3f3f3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  box-shadow: 0 5px 10px #000;
}

.card .back .link {
  border-top: solid 1px #f3f3f3;
  height: 50px;
  line-height: 50px;
}

.card .back .link a {
  color: #f3f3f3;
}

.card .back h3 {
  font-size: 30px;
  margin-top: 20px;
  letter-spacing: 2px;
}

.card .back p {
  letter-spacing: 1px;
} 

/* .card:hover .front {
  transform: perspective(600px) rotateY(180deg);
}

.card:hover .back {
  transform: perspective(600px) rotateY(360deg);
} */


:root {
    --slide-transform: 0;
    --transition: transform 1s;
  }
  

  
  img {
    max-width: 100%;
  }
  
  .slider-container {
    width: 500px;
    margin-left: auto;
    margin-right: auto;
    border: 4px solid #fff;
    overflow: hidden;
    padding-top: 25vh;
  }
  
  .slider {
    display: flex;
    transform: translateX(var(--slide-transform));
    transition: var(--transition);
  }
  
  .slider__element {
    min-width: 100%;
    height: 300px;
    font-size: 3rem;
    text-align: center;
    line-height: 300px;
  }
  
  .slider__element--lightcoral {
    background-color: lightcoral;
  }
  
  .slider__element--lightgreen {
    background-color: lightgreen;
  }
  
  .slider__element--lightskyblue {
    background-color: lightskyblue;
  }
  
  .slider__element--lightsalmon {
    background-color: lightsalmon;
  }
  
  .slider-buttons {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .button {
    background: none;
    border: none;
    background-color: grey;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    color: #ffffff;
  }
  
  .button:active {
    transform: scale(0.9);
  }
  


/*   
    .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;
    }

     */

     .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;
    }
  


     
.footer{
  background-color: #007A86;
  padding-top: 100px;
}

.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_links_footer{
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.nav_link--footer{
  display: flex;
  margin: 0;
  margin-right: 20px;
  flex-wrap: wrap;
}

.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{
  align-items: center;
  padding-bottom: 20px;
}

@media(max-width:800px){

  .hero::before{
    background-image: linear-gradient(180deg, #0000008c 0%, #0000008c 100%), url(../IMG/IMG_2452\ -\ Copy.JPG);

  }
  .nav_menu{
    display: block;
  }
  .nav{
    padding-right: 10px;
  }

  .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_close{
    position: absolute;
    top: 30px;
    right: 30px;
    width: 30px;
    cursor: pointer;
  }
  .hero_title{
    font-size: 2rem;
  }
  .hero_paragraph{
    font-size: 1em;
  }

  .subtitle{
    font-size: 1.5em;
  }
.about_paragraph{
  margin-left: 20px;
  margin-right: 20px;
}
.title_knowledge{
  margin-left: 20px;
}

.slider-container{
  width: 400px;
  padding-top: 0vh;
  
}

.slider__element{
  min-width: 116%;
}

.slider-buttons{
  
  margin-right: 85px;
}

.knowledge__container{
  grid-template-columns: 1fr;
}


  
 .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%;
    grid-template-columns: 1fr;
  }


  
  .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;
  }
}
