@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;800&display=swap');

html{
    scroll-behavior: smooth;
}
body{
    margin: 8px;
    background: #f0f2f7;
}
*{
    margin: 0;
    padding: 0px;
    box-sizing: border-box;
    
}
header{

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background-color: #f0f2f7; 
}
.header{
    margin: auto;
    width: 100%;
    max-width: 1500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:18px 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.container-header-nav{
display: flex;
align-items: center;
justify-content: center;
margin: auto;
width: 100%;

}
.logo{
    width: 250px;

}
.nav-list{
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
   
}
.nav-list li a{
    text-decoration: none;
    color: #09111A;
    font-size: 16px;
}
.nav-list li a:hover{
    color:#ababab;
    transition: .2s ease;
}
.abrir-menu, .cerrar-menu{
    display: none;
}

.btn_cont a{
    color:#F4F6F8;
    text-decoration: none;
    background:#09111A;
    padding: 8px;
    border-radius: 100px;
    font-size: 14px;
    border: solid 1px #09111A ;

}
.btn_cont a:hover{
    background:#F4F6F8;
    border: solid 1px #09111A ;
    transition: .5s ease;
    color: #09111A;

}

/*=========================MEDIA QUERY=====================*/
@media screen and (max-width:1250px){
    .abrir-menu, 
    .cerrar-menu{
        display: block;
        background:transparent;
        border: none;
        font-size: 25px;
        color: #101010;
        cursor: pointer;
    }

.nav{
    opacity: 0;
    visibility: hidden;
}
    .nav{
       display: flex;
        gap: 1rem;
        position: absolute;
        flex-direction: column;
        align-items: end;
        top: 0;
        right: 0;
        bottom: 0;
        width: 50%;
        background-color: #09111A;
        padding: 1rem;    
        position:fixed;
        border-radius: 10px 0px 0px 10px;
        box-shadow: 0 0 0 100vmax rgba(206, 206, 206, 0.551);
    }
    .nav.visible{
        opacity: 1;
        visibility: visible;
        transform:translateX(10px);
        transition: .2s ease;
    }
    .nav-list{
        flex-direction: column;
        align-items: end;
    }
      .nav-list li a{
        display: block;
        width:100%;
        padding: 10px;
        text-align: end;
        color: white;


      }

    .container_footer_flex{
    margin: auto;
    width: 100%;
    max-width: 600px;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-family: "Poppins", sans-serif;
}
.abrir-menu{
    color: #000000;
}
.cerrar-menu{
    color: rgb(255, 255, 255);
}
.btn_cont{
    text-align: end;
    padding: 10px;
    border-radius: 10px;
    font-size: 14px;
    color: #F4F6F8;
    width: 100%;
    border-radius: 5px;
}
.btn_cont a{
    background-color: white;
color:#09111A;
text-decoration: none;
}
}
/*===================================BANNER======================================*/
.container_full-banner{
    margin: auto;
    width: 100%;
    background-image: url(banner_siteweb_herobanner-d.png);
    background-size: cover;
    height: auto;
    margin-top: 80px;
    border-radius: 5px;
    margin-bottom: 200px;
}

.container_txt_banner{
    margin: auto;
    width: 100%;
    max-width: 1500px;
    height: 1000px;
    padding: 15px;
    align-content: center;
    color: #F4F6F8;
    font-family: "Poppins", sans-serif;
}

.container_txt_banner h1{
    font-size: 16px;
}
.container_txt_banner h2{
    font-size: 70px;
        width: 45%;
}
.container_txt_banner p{
    font-size: 16px;
        width: 60%;
}

.italic_fonsize{
  font-family: "Poppins", sans-serif;
  font-weight: 300;

}

.cta_full_banner{
    color: #F4F6F8;
    margin-top: 30px;
    display: block;
    border: solid 1px #F4F6F8;
    width: fit-content;
    padding: 10px;
    text-decoration: none;
    border-radius: 100px;

}

@media screen and (max-width:700px){
   .container_full-banner{
    margin: auto;
    width: 100%;
    background-image: url(banner_siteweb_herobanner-m.png);
    background-size: cover;
    height: auto;
    margin-top: 80px;
    border-radius: 5px;
    margin-bottom: 100px;
} 
.container_txt_banner p{
    font-size: 16px;
    width: 100%;
}

.container_txt_banner h1{
    font-size: 16px;
}
.container_txt_banner h2{
    font-size: 33px;
    width: 100%;
}

.container_txt_banner{
    margin: auto;
    width: 100%;
    
}
}
/*===================================QUIENES SOMOS======================================*/
.container_about_us{
    margin: auto;
    width: 100%;
    margin-bottom: 100px;
}

.container_abaout_us_flex{
    margin: auto;
    width: 100%;
    max-width: 1500px;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-family: "Poppins", sans-serif;
}
.container_txt{
    width: 35%;
}

.container_abaout_us_flex img{
    width: 700px;
}
@media screen and (max-width:700px){
.container_abaout_us_flex img{
    width:100%;
}
.container_abaout_us_flex{
flex-direction: column-reverse;
}
.container_txt{
    width:100%;
    margin-bottom: 20px;
}

}
/*===================================SERVICIOS======================================*/
.container_services{
    margin: auto;
    width: 100%;
}
.container_services h2{
    text-align: center;
      font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 50px;
}
.conatiner_services_flex{
    margin: auto;
    width: 100%;
    height: auto;
    max-width: 1500px;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
    
}

.card_services{
        padding:10px;
        width: 50vh;
        font-family: "Poppins";
        font-size: 16px;
        color: #4F4F4F;
        border-radius: 10px;
        margin-bottom: 50px;
        background: white;
}

.cta_card{
    display: block;
    background-color: #09111A;
    color: white;
    padding: 10px;
    margin-top: 20px;
    width: fit-content;
    text-decoration: none;
    border-radius: 100px;
}
.card_services h3{
    margin-bottom: 10px;
}

.icon_card{
    color: #09111A;
    width: 30px;
}
/*=========================METODOLOGIA=====================*/

.container_metodologia{
    background: #09111A;
    margin: auto;
    width: 100%;
    height: auto;
    margin-bottom: 100px;
}
.container_metod_flex{
    margin: auto;
    width: 100%;
    max-width: 1500px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-family: "Poppins";
    font-size: 14px;
         
}

.container_metodologia h2{
    text-align: center;
    padding-top: 30px;
    margin-bottom: 50px;
    color: #f0f2f7;
    font-family: "Poppins";
    font-size: 30px;
}
.container_metod_flex img{
    width: 700px;
}
.container_info{
    width: 40%;
}


.card_metod{
    background: #f0f2f7;
    padding: 20px;
    margin-bottom: 30px;
    width: 90%;
    border-radius: 10px;

}
@media screen and (max-width:700px){
    .container_metod_flex img{
    width: 100%;
    padding: 10px;
}
.container_info{
    padding: 10px;
    width: 100%;
}


.card_metod{
    background: #f0f2f7;
    padding: 20px;
    margin-bottom: 30px;
    width: 100%;
    border-radius: 10px;

}
}
/*=========================PORTAFOLIO=====================*/
.container_portafolio{
    margin: auto;
    width: 100%;
    margin-top: 200px;
    margin-bottom: 200px;
}
.container_flex_portafolio{
    margin: auto;
    width: 100%;
    max-width: 1500px;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;

}
.portafolio_txt{
    width: 500px;
    font-family: "Poppins", sans-serif;
}
.portafolio_txt h2{
font-size: 16px;
}
.portafolio_txt h3{
font-size: 30px;
}
.portafolio_txt a{
    display: block;
    background: #09111A;
    padding: 10px;
    width: fit-content;
    color: white;
    margin-top: 10px;
    text-decoration: none;
    border-radius: 100px;
}
.container_flex_portafolio img{
    width: 50vh;
}
@media screen and (max-width:880px){
    .container_flex_portafolio img{
    width: 100%;
    margin-top: 50px;
}
.container_portafolio{
    margin: auto;
    width: 100%;
    margin-top: -50px;
}
}
 /*====================================TAB PESTAÑAS=========================================*/


.container{
  margin: auto;
  width:100%;
  max-width: 1000px;
  height: 600px;
  margin-top: 100px;

}
.container h2{
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    color: #09111A;
    font-size: 30px;
    text-align: center;
}
.txt_tagline{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: #4F4F4F;
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
}
.container p{
    margin-top: 20px;
}
.header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
 
}
.btn{
  border: none;
  padding: 10px;
  color: #4F4F4F;
  width: 200px;
  cursor: pointer;
  background: none;
  font-size: 1em;
  border-radius: 60px;
  border: solid 1px #09111A;
}


.btn.active{
    background: #09111A;
    color: white;
    transition: all.2s;
}
.content {
  width: 100%;
  height: auto;

}
.content_text {
  margin: auto;
  width: 100%;
  position: absolute;
  transform: scale(0);
  transition: .4s;
  padding: .5em;
  color: white;
  padding: 50px;
  border-radius: 20px;
  margin-top: 10px;
  width: 100%;
  max-width: 1000px;
  background: #09111A;
  font-family: "Poppins", sans-serif;
  font-weight: 400; 
  font-size: 14px;
}
.title{
  margin: 0;
}
.block{
  transform: scale(1);
  z-index: 10;
}

@media screen and (max-width:880px){
    .container{
  margin-bottom: 200px;
  height: 680px;

}
    .header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
 overflow-x:scroll;
   scrollbar-width: none;
}

 .content_text {
  margin: auto;
  position: absolute;
  z-index: -1;
  transition: .4s;
  padding: .5em;
  color: white;
  padding: 50px;
  border-radius: 20px;
  margin-top: 10px;
  width: 100%;
  background: #09111A;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
}   
.btn{
margin-left: 10px;
}

}



/*=========================FORMULARIO=====================*/

.container_txt_form{
    margin: auto;
    width: 600px;

}
.form{
    background: #09111A;
    padding: 20px;
    border-radius: 10px;
    width: 600px;
}

label{
    width: 100%;
    color: #f0f2f7;
    margin-bottom: 10px;
    display: block;
}

input{
    width: 100%;
    display: block;
    padding: 10px;
    border: none;
    border-radius: 20px;
}
select{
    width: 100%;
    display: block;
    padding: 10px;
    border: none;
}

.container_form{
     scroll-margin-top: 350px;
    margin: auto;
    width: 100%;
    max-width: 1500px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 200px;
    margin-bottom: 200px;
    font-family: "Poppins", sans-serif;
}
.cta_form{
    margin: auto;
    width: 50%;
    background-color: #F4F6F8;
    border-radius: 100px;
    cursor: pointer;
    color: #09111A;
}

textarea{
    width: 100%;
    height: 200px;
    display: block;
    padding: 10px;
    border: none;
    border-radius: 5px;
}


@media screen and (max-width:880px){
    .container_txt_form{
    margin-top: -200px;
    margin-bottom: 50px;
}
.cta_form{
    margin: auto;
    width: 50%;
    background-color: #F4F6F8;
    border-radius: 100px;
    cursor: pointer;
    color: #09111A;
}

}






/*=========================Preguntas Frecuentes=====================*/

.container_faqs{
    margin-bottom: 100px;
}
.container_faqs span{
    font-size: 15px;
}
.title_qs{

    font-size: 50px;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 40px;
    color: #09111A;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 20px;
}


.questions-container{
    margin: auto;
    width: 100%;
    max-width: 1200px;
    padding: 15px;
}

.question{
    border-bottom: 1px solid #c7c7c7;
    font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 16px;
  
}
.question button{
    width: 100%;
    background: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    border:none;
    outline: none;
    font-size: 22px;
    color: #4d4d4d;
    font-weight: 700;
    cursor: pointer;
}
.question p{
    font-size: 22px;
    max-height: 0;
    opacity: 0;
    line-height: 1.5;
    overflow: hidden;
    transition: all 0.6s ease;
    color:#4d4d4d;
    border-bottom: 1px solid #2f2f2f;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
}
.d-arrow{
    transition: transform 0.5s ease-in ;
    color: #000000;
}

/*add this class when click*/
.question p.show{
    max-height: 200px; 
    opacity: 1;
    padding:0px 15px 30px 15px;
}
.question button .ri-arrow-down-s-line{
    transform: rotate(180deg);
}
@media screen and (max-width:880px){
    .container_faqs{
    margin-top: -100px;
}
}
/*=========================FOOTER=====================*/

.footer{
    background-color: #09111A;
}
.footer p{
    text-align: center;
    color: rgb(62, 62, 62);
    font-family: "Poppins", sans-serif;
    padding: 1rem;
    margin-bottom: 10px;
}
.footer p a{
    color: rgb(62, 62, 62);
}
.container_footer_flex{
    margin: auto;
    width: 100%;
    max-width: 1400px;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-family: "Poppins", sans-serif;
}
.container_footer_flex img{
    width: 300px;


}
.container_footer_flex ul li {
    list-style: none;
}
.container_footer_flex ul li h3{
    color: white;
    margin-bottom: 10px;
    font-size: 10px;
}
.container_footer_flex ul{
    margin-bottom: 40px;
}
.container_footer_flex ul li a{
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 12px;
}
.container_footer_flex ul li a:hover{
    color: #4f4f4f;
    transition: all.2s;
}
@media screen and (max-width:880px){
    .container_footer_flex img{
    width: 210px;
    margin-bottom: 20px;

}
}


.aviso_de_privacidad{
        font-family: "Poppins", sans-serif;
        font-size: 16px;
        
}

.container_info_priv{
    margin: auto;
    width: 100%;
    max-width: 1200px;
    padding: 15px;
    margin-top: 100px;
    color: #2f2f2f;
    margin-bottom: 100px;
}

.container_redirect{
    margin: auto;
    width: 100%;
    max-width: 1500px;
    padding: 15px;
    margin-top: 100px;
text-align: center;
margin-bottom: 100px;
        font-family: "Poppins", sans-serif;
        font-size: 16px;
}
.container_redirect img{
    width: 40%;
}
.container_redirect  a{
    margin: auto;
    background: #09111A;
    padding: 10px;
    display: block;
    width: 50%;
    margin-top: 50px;
    border-radius: 100px;
    color: #F4F6F8;
    text-decoration: none;

}