*,
::before,
::after{
    margin: 0;
    box-sizing: border-box;
}

:root{
    --color1:#11244D;
    --color2:#03040F;
    --color3:#205AB7;
    --color4:#3B0392;
    --color5:#f3f3f3;
    --box-shadow: 0 6px 10px var(--color1);
    --margin-container: 40px 0;
    --padding-container: 40px 0;
}

/**PRE-LOADER**/
.centre{
  position: fixed; 
  width: 100vw; 
  height: 100vh;
  background: linear-gradient(to right, #03040F, #03040F, #11244D, #03040F, #03040F);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lds-roller {color: var(--color3)}
.lds-roller,
.lds-roller div,
.lds-roller div:after {
  box-sizing: border-box;
}
.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7.2px;
  height: 7.2px;
  border-radius: 50%;
  background: currentColor;
  margin: -3.6px 0 0 -3.6px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 62.62742px;
  left: 62.62742px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 67.71281px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 70.90963px;
  left: 48.28221px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 70.90963px;
  left: 31.71779px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 67.71281px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 62.62742px;
  left: 17.37258px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12.28719px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/**CONFIGURATION CSS**/

body,
input,
textarea,
button{
    font-family: "Space Grotesk", sans-serif;
}
body{background: linear-gradient(to right, #03040F, #03040F, #11244D, #03040F, #03040F);}
p a{
    text-decoration: none;
    color: var(--color5);
    font-weight: 500;
}
p a:hover{text-decoration: underline; transition: .6s;}
.container{
    background: linear-gradient(to right, #03040F, #03040F, #11244D, #03040F, #03040F);
    width: min(100%, 1200px);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0 0 10px 10px;
    /*Se trabaja la version movil primero. se puede poner tambien width: min (100%, 1200px;)*/
}

/*hero*/
.nav{
    --nav-icon-background: url("./img/menu_ai.svg");
    --transform-list-menu: translate(-100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    border-bottom: 3px solid transparent;
    border-width: 5px;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(to right, #03040F, #03040F, #11244D, #03040F, #03040F);
    --box-shadow: 0 6px 10px var(--color1);
    
}
.nav:hover{
    border-color: #3B0392 ;
}

.nav:has(.nav_checkbox:checked){
    --nav-icon-background: url("./img/close_ai.svg");
    --transform-list-menu: translate(0);
}
.nav_checkbox{
    display: none
}
.nav_logo{width: 80px; height: 10px;}
.nav_label, .nav_logo-link{z-index: 100;}
.nav_label{
    width: 36px;
    height: 36px;
    background-image: var(--nav-icon-background);
    background-size: cover;
    cursor: pointer;
    transition: 0.4s;
}
.nav_list{
    border-radius: 5px 5px 0 0;
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 1rem;
    text-align: center;
    list-style: none;
    background: linear-gradient(to right, #03040F, #03040F, #11244D, #03040F, #03040F);
    padding: 0;
    /*para olcultar el menu guardado en un variable*/
    transform: var(--transform-list-menu);
    transition: transform 1s;
}
.nav_link{
    display: inline-block;
    padding: .5rem .5rem;
    color: var(--color5);
    text-decoration: none;
}
.nav_link:hover{
    border-bottom: 3px solid #3B0392;
    border-bottom-width: 3px;
    border-color: #3B0392;
    color: #F2F3F4;
}
.nav_link:active{
    background-color: #3B0392;
    color: #f3f3f3;
    border-radius: 5px 5px 0 0;
}
.nav_link--contact{
    background-color: #3B0392;
    border: 1px solid #3B0392;
    padding: .4rem 1rem;
    color: var(--color5);
    text-decoration: none;
    border-radius: 3px;
}
.nav_link--contact:hover{
    background-color: var(--color4);
    border: none;
    color: var(--color5);
}
.nav_link--cta{
    border: 1px solid var(--color5);
    background: transparent;
    border-radius: 3px;
    padding: .4rem;
    text-decoration: none;
    margin-right: 10px;
}
.nav_link--cta:hover{
    border-color: var(--color4); 
    border: 1px solid var(--color4);
    transition: .5s;}

    /*HERO MAIN*/
   
    .hero_main{
        background: linear-gradient(to right, #03040F, #03040F, #11244D, #03040F, #03040F);
        padding: 20px 0;
        margin-bottom: .8rem;
        display: grid;
        gap: .5rem;
        border-bottom: 5px solid transparent;
        box-shadow: var(--box-shadow);
        border-radius: 0 0 10px 10px;
    }
    .hero_title{
        font-size: clamp(1rem, 3w + 1rem ,2.8rem);
        margin: 0 .5rem;
        font-weight: 900;
        color: var(--color5);
        text-align: center;
    }
    h1{
        font-weight: 900;
    }
    h1:hover{
        color: var(--color4);
        transition: .9s;
    }
    
    .hero_figure{
        border: 3px solid transparent;
        width: min(100%, 380px);
        justify-self: center;
        padding: .5rem;
        box-shadow: var(--box-shadow);
        border-radius: 10px;
    }
    .hero_img{width: 100%; height: auto;}
    .hero_img:hover{
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
    }
    .hero_paragraph{
        font-size: 1rem;
        line-height: 1.5;
        margin: 0 10px;
        color: var(--color5);
        text-align: center;
    }
    .hero_paragraph:hover{
        color: #403B8B;
        transition: .9s;
    }
    .hero_cta{
        background-color: #3B0392;
        border: 2px solid #3B0392;
        justify-content: center;
        align-items: center;
        color: var(--color5);
        text-decoration: none;
        padding: .5rem 0;
        border-radius: 5px;
        text-align: center;
        margin: 0 10px;
    }
    .hero_cta:hover{
        border: 1PX solid #f3f3f3;
        background: linear-gradient(to right, #03040F, #03040F, #11244D, #03040F, #03040F);
        color: #f3f3f3;
        transition: .5s;}

    /**FONCTIONNEMENT**/
    .fonctionnement-container{
        margin-top: 3rem;
        background: linear-gradient(to right, #100f0d, #100f0d, #212427, #100f0d, #100f0d);
    }
    .fonctionnement_details{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        text-align: center;
        background: linear-gradient(to right, #100f0d, #100f0d, #212427, #100f0d, #100f0d);
        border-bottom: 1px solid transparent;
        border-bottom-width: 5px;
        border-radius: 0 0 10px 10px;
        border-color: var(--color-segundario);
    }
    .fonctionnement_details:hover{
        box-shadow: 0 6px 10px var(--gray-color);
        border-bottom-width: 5px;
        border-radius: 0 0 10px 10px;
        border-color: var(--color-terciaire);}
    
    .boite-fonctionnement{
        background: transparent;
        margin: 1rem .5rem; 
        width: 45%;
        border-radius: var(--border-radius1);
    }
    .boite-fonctionnement:hover{
        border: 1px solid var(--color-terciaire);
        border-radius: 0 0 10px 10px;
    }
    .boite-fonctionnement h4{color: #eadbae; font-size: 1.1rem; font-weight: 700;}
    .boite-fonctionnement p{color: var(--gray-color); font-size: 15px;}
    .fonctionnement_textes{background: linear-gradient(to right, #03040F, #03040F, #11244D, #03040F, #03040F);}
    .fonctionnement_textes .paragraph{
        font-size: 16px;
        text-align: justify;
        margin: 1rem;
    }
    .fonctionnement_textes .title{
        color: #eadbae;
        text-align: left;
        margin: 1rem;
    }
    .fonctionnement_textes .title:hover{
        color: var(--gray-color)
    }
    .fonctionnement_textes li{
        color: var(--gray-color);
        margin-left: 3rem;
        list-style-type: square;
        text-align: left;
    }
    
    /**Services**/
    .services{padding: var(--padding-container);}
    .title{
        font-size: 1.5rem; 
        font-weight: 900;
    }
    .title_highlight{
        padding: 5px;
        color: var(--color3);
        display: inline-block;
    }
    .title_highlight:hover{color: var(--color5);}
    .paragraph{margin-top: 1rem; line-height: 1.5;}
    .services_container{
        margin-top: 2rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
        gap: 1.5rem;
    }
    .services_article{
        background: linear-gradient(to right, #03040F, #03040F, #11244D, #03040F, #03040F);
        width: min(100%, 450px);
        margin: 0 auto;
        padding: 1.5rem .3rem;
        border: 1px solid transparent;
        border-radius: 10px;
        box-shadow: var(--box-shadow);
    }
    .services_article:hover{
        box-shadow: 0 6px 10px var(--gray-color);
        border-radius: 0 0 10px 10px;
        border-bottom-color: var(--color-terciaire);
    }
    .services_title{font-size: 1.5rem; font-weight: 500; color: #eadbae;}
    .services_title:hover{
        color: var(--gray-color);
    }
   
    .services_article--green{
       background: linear-gradient(to right, #03040F, #03040F, #11244D, #03040F, #03040F);
        --color-title: var(--gray-color);
    }
    .services_article--blue{
        background: linear-gradient(to right, #03040F, #03040F, #11244D, #03040F, #03040F);
        --color-title: var(--gray-color);
    }
    .services_article--yellow{
        background: linear-gradient(to right, #03040F, #03040F, #11244D, #03040F, #03040F);
        --color-title: var(--gray-color);
    }
    .services_span{
        background: linear-gradient(to right, #03040F, #03040F, #11244D, #03040F, #03040F);
        display: block;
        width: max-content;
        padding: 2px 5px;
        border-radius: 5px;
    }
    .services_content{
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }
    .services_link{
        display: block;
        width: 30px;
        height: 30px;
        margin-bottom: 20px;
    }

    .service_click:hover{
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
    }
    .services_img{
        min-width: 80px;
        max-width: 160px;
        width: 60%;
    }
    .services_img:hover{
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
    }

    /**pourquoi**/
    .pourquoi{margin-bottom: 3rem;}

    /**CTA**/
    .promo-vitwel{
        background: linear-gradient(to right, #11244D, #03040F, #03040F, #03040F, #03040F, #11244D,);
        
    }
    .container-promo{
        border: 1px solid var(--color4);
        border-radius: 10px;
    }
    .container-promo:hover{
        border-color:var(--color5);
        transition: .5s;
    }
    .cta{
        background: transparent;
        border-radius: 10px;
        padding: 1rem;
        margin: 1rem .5rem;
        border: 1px solid transparent;
        border-bottom-width: 5px;
        border-top-width: 5px;
        border-color: var(--color5);
    }
    .cta:hover{
        box-shadow: 0 6px 10px var(--color-segundario);
        border-color: var(--color3);
    }
    .cta_content{
        width: 100%;
        margin: 0 auto;
        display: grid;
        gap: 1rem;
    }
    .cta_content:hover{
        box-shadow: 0 6px 10px var(--gray-color);
        border-radius: 10px;
    }
    .cta_texts{
        display: grid; 
        gap: .5rem;
        color: var(--color5);
    }
    .cta_texts:hover{color: var(--color3);}

    .cta_links{
        background:  var(--color5);
        padding: .5rem 0;
        border: 1px solid var(--color5);
        border-radius: 10px;
        color: var(--color1);
        text-decoration: none;
        text-align: center;
    }
    .cta_links:hover{
        background: var(--secondary-color);
        color: var(--gray-color);
    }
    .cta_figure{width: 100%; display: none;}
    .cta_img{width: 100%; height: auto;}
    .cta_img:hover{
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
    }

    /**CURRICULUM VITAE  O FAQ**/
    .container_curriculum{
        background-color: var(--color5);
        margin: 4rem 0;
    }

    .faq{
        width: min(100%, 1200px);
        margin: 0 auto;
        overflow: hidden;
    }
    .faq .title{
        color: var(--color1);
        font-size: 2rem;
        font-weight: 900;
        margin: 3rem 0 0 .5rem;
    }
    .faq .title:hover{
        border-bottom: 2px solid var(--color4);
        border-radius: 5px;
        color: var(--color4);
    }


    .faq_container{
        display: grid; 
        gap: 1rem; 
        margin: 3rem .5rem;
    }

    .faq_question{
        display: flex; 
        cursor: pointer;
        align-items: center;
    }
    .faq_question::after{
        content: "";
        width: 40px;
        height: 40px;
        background-image: var(--icon-question-url);
        transition: background-image .5s;
        margin-left: auto;
    }

    .faq_item{
        background: var(--color5);
        padding: .5rem;
        border-radius: 5px;
        border-bottom: 1px solid var(--color4);
        border-bottom-width: 3px;
        --icon-question-url: url("./img/plus_ai.svg");
    }

    .faq_item[open]{
        background: var(--color5);
        --icon-question-url: url("./img/minus_ai.svg");
        color: var(--color1);
    }
    .faq_title{
        font-size: 1.5rem;
        font-weight: 900;
        width: 60%;
        color: var(--color2);
    }
    .faq_answer{
        color: var(--gray-color);
        margin-top: .5rem;
        padding-top: .5rem;
        border-top: 1px solid var(--color1);
        font-size: 1rem;
    }
    .faq_answer li{
        margin: 1rem 0 1rem 1rem;
        list-style-type: square;
    }

    .faq_answer a{
        color: var(--color4);
        text-decoration: none;
        font-weight: 700;
        font-size: 16px;
    }


/**contact**/
    .contact{margin: 0 0 3rem 0;}
    .contact_content:hover{
        box-shadow: 0 6px 10px var(--terciary-color);
        border-bottom-color: var(--secondary-color);
        background: linear-gradient(to right, #03040F, #03040F, #11244D, #03040F, #03040F);
    }
    .contact_content{
        margin-top: 1rem;
        background: linear-gradient(to right, #03040F, #03040F, #11244D, #03040F, #03040F);
        border-radius: 0 0 10px 10px;
        padding: 1rem .5rem;
        display: grid;
        gap: .5rem;
        border: 1px solid transparent;
        border-bottom-width: 5px;
        border-bottom-color: var(--color-segundario);
    }
    .contact_figure{display: none;}
    .contact_figure:hover{
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
    }
    .contact_form{display: grid; gap: 1rem;}
    .contact_label{display: grid; gap: .3rem; color: #eadbae;}
    .contact_input,
    .contact_area{
        padding: .5rem 0rem;
        border: 1px solid #172738;
        border-radius: 0 0 5px 5px;
        border-bottom: 3px solid var(--color-segundario);
        color: #212427;
    }
    .agenda_cta{
        background-color: var(--color4);
        border: 1px solid var(--color4);
        text-decoration: none;
        color: var(--color5);
        align-items: center;
        border-radius: 5px;
        cursor: pointer;
        padding: 4px 4px;
        font-size: .8rem;
    }

    .agenda_cta:hover{
        background: linear-gradient(to right, #03040F, #03040F, #11244D, #03040F, #03040F);
        border: 1px solid var(--color5);
        border-width: 1px;
        transition: 1s;
        color: var(--color5);
    }
    .faq_cta{
        padding: 4px;
        border: 1px solid var(--color4);
        margin-left: .1rem;
        border-radius: 5px;
        text-align: center;
        text-decoration: none;
        color: var(--color5);
    }
    .faq_cta:hover{
        background: var(--color4);
        color: var(--color5);
        transition: .6s;
        border-color: var(--color4);
        text-decoration: none;
    }
    
    /**PRIVACITE ET CONDITION**/
    .conditions_main{margin: 2rem 0;}
    
    .conditions h2{
        border-bottom: 1px solid var(--color4);
        margin: 1.5rem 0 0 .5rem;
        font-size: 2rem;
        color: var(--color4);}
    .conditions h3{
        border-bottom: 1px solid var(--color4);
        margin: 1.5rem 0 0 .5rem;
        font-size: 1.5rem;
        color: var(--color5);}

    .conditions p{margin: .5rem .5rem;}
    .conditions li{
        color: var(--color5);
        margin: .5rem 1.5rem;
        list-style-type: square;
    }
    .conditions strong{color: var(--color4);}
    .conditions a{color: var(--color4); font-weight: 700;}
    .conditions a:hover{color: var(--color3); text-decoration: underline;}

    /**contact**/
    .contact_area{
        width: 100%;
        height: 120px;
        resize: none;
    }
    .contact_submit{
        background: var(--color4);
        color: var(--color5);
        padding: .5rem;
        border-radius: 0 0 10px 10px;
        border: none;
    }
    .contact_submit:hover{
        background: var(--secondary-color);
    }
    .contact_img{width: 100%;}

    /**Footer**/
    .footer_language{
        justify-content: center;
        width: 100%;
        display: grid;
        grid-auto-flow: row;
        gap: 0rem;
        margin-bottom: 1rem;
        border-bottom: 2px solid var(--color4);
        border-bottom-width: 5px;
        border-radius: 10px;
        font-size: 1rem;
        justify-self: center; 
    }

    .footer_language a{
        color: var(--color5);
        text-decoration: none;
        font-size: 14px;
        font-weight: 900;
    }
    
    .language-symbols 
    .footer_flag-ptlinks{
        font-size: 1rem;
        font-weight: 900;
        color: #f3f3f3;
        text-decoration: none;
        padding-left: 1rem;
    }
    .footer_flag-links{
        padding-right: .5rem;
        padding-left: .5rem;
    }

    .footer_flag-links:hover{
        border-bottom: 3px solid var(--color3);
        border-radius: 3px;
    }

    .footer{
       background: linear-gradient(to right, #03040F, #000000, #03040F);
    }

    .footer_logo{
        width: 150px; 
        height: 20px;
        margin-bottom: 1rem;
    }

    .footer_content{
        background: linear-gradient(to right, #03040F, #03040F, #11244D, #03040F, #03040F);
        color: var(--color3);
        padding: var(--padding-container);
        width: min(90%, 1200px);
        overflow: hidden;
        margin: auto;
        border-radius: 10px 10px 0 0;
    }
    .footer_main{
        display: grid;
        gap: 1rem;
        justify-items: center;
        margin-bottom: 2rem;
    }
    .footer_info{color: var(--color5); font-weight: 700;}
    .footer_info:hover{color: var(--color4); text-decoration: underline; transition: .5s;}

    .footer_links{
        display: flex;
        flex-direction: column;
        gap: .7rem;
        text-align: center;
    }
    .footer_links a:hover{
        border-bottom: 1px solid var(--color5);
        transition: .5s;
    }
    .footer-link{
        font-size: 12px;
        color: var(--color5);
        font-weight: 400;
        text-decoration: none;
    }
    .footer_link:hover{
        text-decoration: underline;
        color: var(--color4);
    }
    .footer_contact{
        max-width: 350px;
        display: grid;
        gap: .7rem;
        text-align: center;
        font-size: .8rem;
    }
    .footer_copy{
        margin-top: 1rem;
        border: 1px solid var(--color5);
        font-size: 1rem;
        color: var(--color5);
        font-weight: 500;
        padding: 4px;
        border-radius: 5px;
        justify-self: center;
    }
    .footer_newsletter{
        border: 2px solid transparent;
        width: min(100%, 400px);
        padding: .5rem .5rem;
        background: linear-gradient(to right, #03040F, #03040F, #11244D, #03040F, #03040F);
        border-radius: 10px;
        display: grid;
        gap: 1rem;
        grid-template-rows: 48px 48px;
    }

    .footer_email{
        border: 1px solid var(--color4) ;
        border-radius: 10px 10px 0 0;
        padding: 0 .7rem;
        background-color: transparent;
        color: #212427;
    }
    .footer_email::placeholder{color: var(--color5);}
    .footer_submit{
        background: linear-gradient(to right, #000000, #2F2E41, #000000);
        color: var(--color5);
        border: 1px solid var(--color4);
        border-radius: 0 0 10px 10px;
        font-weight: 400;
    }
    .footer_submit:hover{
        background: var(--color4);
        border-color: var(--color4);
        color: var(--color5);
        transition: 1s;
    }
    .footer_social {
        display: grid;
        grid-auto-flow: column;
        gap: .5rem;
    }

    .footer_social-links{
        width: 30px;
        height: 30px;
        background: var(--color4);
        border-radius: 20%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .footer_social-links:hover{
        background-color: var(--color5);
        color: var(--color-segundario);
        transition: 1s;
    }

    /*footer inferior*/
    .footer_content_toutlia{
        width: 100%;
        background: #F2F3F4;
    }

    .footer_inferior{
        width: 100%;
        padding: .5rem;
        display: grid;
        grid-template-columns: 50% 50%;
        justify-content: space-evenly;
    }

   .partFooter{
        width: 96%;
        padding: .5rem;
        border: 1px solid transparent;
        margin-bottom: .5rem;
    }
    .footer_copy-subtitle{
        font-size: 1rem;
        color: var(--color4);
        font-weight: 700;
        display: inline-block;
        border-bottom: 2px solid var(--color3);
    }
    .footer_copy_subtitle-modifyer{
        font-size: 1rem;
        color: var(--color4);
        font-weight: 700;
        margin: 1rem 0;
    }
    .partFooter-about strong{
        color: var(--color4);
    }
    .partFooter-about strong:hover{text-decoration: underline; color: var(--color5);}
    .partFooter a{
        color: var(--gray-color);
        display: flex;
        flex-wrap: wrap;
        margin-bottom: .7rem;
    }
    .partFooter a:hover{
        text-decoration: underline;
        color: var(--color4);
    }
    .payment-media a{
        margin-top: 1rem;
        font-size: 1rem;
    }

    .footer_copyright{
        width: 100%;
        margin: 3rem 0;
        border-top: 5px solid var(--color4);
        border-radius: 10px 10px 0 0;
        padding-bottom: 20px;
    }
    .partFooter-about{
        width: 100%;
        border-radius: 10px;
    }
    .footer-logo-about{
        font-size: .8rem;
        margin: .3rem 0rem;
        color: var(--color5);
        padding-bottom: 3rem;
    }
    .footer_copyright-text{
        margin-top: 1rem;
        text-align: center;
        font-size: 12px;
        font-weight: 300;
        color: var(--color5);
    }
    .footer_copyright-text a{
        color: var(--color4);
        text-decoration: none;
        font-weight: 700;
    }
    .footer_copyright-text a:hover{
        color: var(--color4);
        text-decoration: underline;
        transition: 1s;
    }

    /**back to top**/
    #myBtn{
        display: none;
        position: fixed;
        bottom: 20px;
        right: 30px;
        background: linear-gradient(to right, #03040F, #03040F, #11244D, #03040F, #03040F);
        border: 1px solid var(--color1);
        outline: none;
        z-index: 99;
        color: white;
        cursor: pointer;
        padding: 10px;
        border-radius: 10px;
        font-size: 16px;
    }
    #myBtn:hover{background-color: #004aad;}

    @media (width >= 768px){
        /**Hero**/
        .nav_logo{width: 120px; height: 20px;}
        .hero_main{
            padding: var(--padding-container);
            justify-content: space-between;
            grid-auto-columns: 55% 45%;
            grid-template-areas:
            "titulo img"
            "paragraph img"
            "link img";
        }
        .hero_title{
            text-align: left;
            grid-area: titulo;
        }
        .hero_paragraph{
            text-align: left;
            grid-area: paragraph;}
        .hero_cta{
            grid-area: link; 
            padding: .5rem 1rem;
            place-self: start;
        }
        .hero_figure{grid-area: img;}

        /**Fonctionnement**/
        .boite-fonctionnement h4{font-size: 1rem; font-weight: 700;}

        /**cta**/
        .cta_content{
            align-items: center;
            justify-content: space-between;
            grid-template-columns: 40% 56%;
        }
        .cta_links{padding: .5rem 1rem; place-self: start;}
        .cta_figure{display: block;}

        .faq{
        width: min(100%, 750px);
        margin: 0 auto;
        overflow: hidden;
        }

        .footer_logo{width: 200px; height: 40px;}

        /**contact**/
        .contact_content{
            grid-template-columns: 50% 50%;
            justify-content: space-between;
            align-items: center;
        }
        .contact_figure{display: block;}

        /**footer**/
        .footer_main{
            padding-bottom: 3rem; 
        }
        .footer_inferior{
            display: flex;
            flex-wrap: wrap;
            justify-self: start;
            margin-right: 2rem;
        }
        .partFooter-about{margin-right: 1rem;}
        .partFooter{
            width: 19%;
            margin-top: 1rem;
        }
    }

    @media (width >= 992px){
        /** Hero**/
        .nav_logo{width: 150px; height: 25px;}
        .nav{
           --transform-list-menu: translate(0%); 
        }
        .nav_label{display: none;}
        .nav_list{
            position: static;
            grid-auto-flow: column;
            place-content: unset;
            gap: 1rem;
            justify-content: center;
            align-items: center;
        }
        .faq{
        width: min(100%, 1200px);
        margin: 0 auto;
        overflow: hidden;
    }
        /**footer**/
        .footer{background-color: #000000;}
        .footer_content{
            background-color: var(--color-segundario);
            border-radius: 20px 20px 0 0;
            padding-left: 1rem;
            padding-right: 1rem;
        }
        .footer_main{
            width: 100%;
            margin: 0 auto;
            grid-template-columns: 1fr 55% 1fr;
            grid-template-areas: 
            "logo links media"
            "contact news news";
            justify-items: start;
        }
        .footer_links{
            grid-area: links;
            width: 100%;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
        }
        .footer_contact{
            grid-area: contact;
            text-align: left;
            max-width: 300px;
        }
        .footer_newsletter{
            grid-area: news;
            justify-self: end;
            align-self: center;
        }
        .footer_social{grid-area: media; justify-self: end;}
        .footer_logo-link{grid-area: logo;}
        .footer_copy{
            justify-self: start;
            margin-top: 0rem;
        }
        .footer_copyright{
            width: 90%;
            margin-left: auto;
            margin-right: auto;
        }

        /**footer inferior**/
        .partFooter{
            width: 16%;
        }
    }

    @media (width >= 992px){
        
    }

    @media (width >= 1440px){
        .partFooter{
            width: 12%;
        }
    }

    @media (width >= 1640px){
        .partFooter{
            width: 10%;
        }
    }