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

:root{
    --color-base: #0a94cd;
    --color4:#0058cc;
    --color-zero:#0504AA;
    --color-uno:#031273;
    --color-black:#01082d;
    --gray-color: #F3F3F3;
    --background:#ffffff;
    --padding-container: 60px 0;
    --border-radius1: 0 0 10px 10px; 
    --border-radius2: 0 0 5px 5px; 
}

/**PRE-LOADER**/
.centre{
  position: fixed; 
  width: 100vw; 
  height: 100vh;
  background: linear-gradient(to bottom, #01082d, #031273, #031273, #01082d);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lds-roller {color: var(--color-terciaire)}
.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;
}

p a{
    text-decoration: none;
    color: var(--color-terciaire);
    font-weight: 500;
}
p a:hover{text-decoration: underline; transition: .6s;}
.container{
    background: transparent;
    width: min(100%, 1200px);
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--border-radius1)
    /*Se trabaja la version movil primero. se puede poner tambien width: min (100%, 1200px;)*/
}
.container-hero{
    width: 100%;
    background: linear-gradient(to bottom right, #01082d, #01082d, #031273, #031273, #01082d, #01082d);
}


/*hero*/
.nav{
    --nav-icon-background: url("./img/vitwel-open-blanc.svg");
    --transform-list-menu: translate(-100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    border-bottom: 1px solid transparent;
    border-width: 5px;  
}
.nav:hover{
    border-color: var(--color-uno);
    transition: .7s;
}

.nav:has(.nav_checkbox:checked){
    --nav-icon-background: url("./img/vitwel-close-blanc.svg");
    --transform-list-menu: translate(0);
}
.nav_checkbox{
    display: none
}
.nav_logo{width: 100px; height: auto;}
.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{
    background: linear-gradient(to right, #01082d, #01082d, #031273, #031273);
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 1rem;
    text-align: center;
    list-style: none;
    border-radius: 0 0 10px 10px;
    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(--gray-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
}
.nav_link i{color: #0058cc; font-size: 16px;}
.nav_link:hover{
    border-bottom: 3px solid var(--color4);
    border-bottom-width: 3px;
    border-color: var(--color4);
    color: var(--color4);
    border-radius: 0 0 3px 3px;
}
.nav_link:active{
    background-color: var(--color4);
    color: var(--gray-color);
}
.nav_link--contact{
    border: 1px solid var(--gray-color);
    padding: .4rem 1rem;
    color: var(--gray-color);
    text-decoration: none;
    border-radius: 10px;
}
.nav_link--contact:hover{
    background-color: var(--color-uno);
    border: none;
}
.nav_link--cta{
    border: 1px solid transparent;
    background: transparent;
    border-radius: 10px;
    padding: .4rem .4rem;
    color: var(--gray-color);
    text-decoration: none;
    margin-right: 10px;
}
.nav_link--cta:hover{
    border-color: var(--color-zero); 
    border: 1px solid var(--gray-color);
    transition: .5s;}

.dropdown-menu .fi{
    font-size: 12px;
    border-radius: 3px;
}
.language-list{
    font-size: 13px;
    color: #f3f3f3;
}

.dropdown-language .fi{
    font-size: 12px;
    border-radius: 3px;
}
.dropdown-language{
    background-color: transparent;
    font-size: 13px;
    border: none;
    color: #F3F3F3;
}
.dropdown-language:hover{
    background-color: transparent; 
}
.dropdown-menu{
    background: linear-gradient(to bottom right, #01082d, #01082d, #031273, #031273, #01082d, #01082d);
    color: #F3F3F3;
}

    /*HERO MAIN*/
    .hero{
        border-bottom: 1px solid var(--color-black);
        border-bottom-width: 2px;
        border-color: var(--color-black);
    }
    .hero_main{
        border-top: 1px solid var(--color-black);
        border-radius: 20px 20px 0 0;
        background: transparent;
        padding: 30px 0;
        display: grid;
        gap: .5rem;
    }
    .hero_main:hover{
        box-shadow: 0 6px 10px var(--color-black);
        border-radius: 20px 20px 0 0;
    }
    .hero_title{
        font-size: clamp(1.5rem, 4w + 1rem ,2.8rem);
        margin: 0 10px;
        font-weight: 900;
        color: var(--gray-color);
    }
    h1:hover{color: #0058cc;}
    h1 span{
        color: #0058cc;
        font-weight: 900;
    }
    .hero_figure{
        width: min(100%, 380px);
        justify-self: center;
        padding-right: .5rem;
    }
    .hero_img{width: 100%;}
    .hero_img:hover{
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
    }
    .hero_paragraph{
        font-size: 1rem;
        line-height: 1.5;
        margin: 0 10px;
        color: var(--gray-color);
    }
    .hero_cta{
        background-color: var(--gray-color);
        border: 1px solid var(--gray-color);
        justify-content: center;
        align-items: center;
        color: var(--color-uno);
        text-decoration: none;
        padding: .5rem 0;
        border-radius: 30px;
        text-align: center;
        margin: 0 10px;
    }
    .hero_cta:hover{
        background-color: transparent; 
        color: var(--gray-color);
        border: 1px solid var(--gray-color); 
        transition: .5s;}

    /**FONCTIONNEMENT**/
    .fonctionnement-container{
        margin: 4rem 0; 
    }
    .fonctionnement_details{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        text-align: center;
        background: #f3f3f3;
        border-bottom: 1px solid transparent;
        border-bottom-width: 5px;
        border-radius: 10px;
        border-color: var(--color-segundario);
    }

    .fonctionnement_details:hover{
        box-shadow: 0 6px 10px var(--gray-color);
        border-bottom-width: 5px;
        border-radius: 10px;
        border-color: var(--color-terciaire);}
    
        .fonctionnement_details span{
        width: 16px;
        height: 16px;
        padding: .1rem .2rem;
        border: 1px solid #0058cc;
        color: #F3F3F3;
        font-size: .8rem;
        font-weight: 500;
        background-color: #0058cc;
        border-radius: 5px;
        margin-right: .3rem;
        }
    .boite-fonctionnement{
        background: var(--background);
        margin: .6rem .3rem;
        width: 45%;
        border-radius: 10px;
    }
    .boite-fonctionnement:hover{
        border: 1px solid var(--color-uno);
        border-radius: 10px;
    }
    .boite-fonctionnement h4{color: var(--color-uno); font-size: 1.1rem; font-weight: 700;}
    .boite-fonctionnement p{color: #172738; font-size: 15px;}
    .fonctionnement_textes{background: #fff;}
    .fonctionnement_textes .paragraph{
        font-size: 16px;
        text-align: justify;
        margin: 1rem;
    }
    .fonctionnement_textes .title{
        text-align: left;
        margin: 1rem;
    }
    .fonctionnement_textes .title:hover{
        color: var(--color-terciaire);
    }
    .fonctionnement_textes li{
        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;
        border-radius: 5px;
        display: inline-block;
        color: #000;
        font-size: 1.5rem;
        font-weight: 900;
    }
    .title_highlight:hover{
        background: linear-gradient(to right, #123168, #031273, #0504AA, #031273);
        color: var(--background);
    }
    .paragraph{

        margin: 1rem .5rem; 
        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:#f3f3f3;
        width: min(100%, 450px);
        margin: 0 auto;
        padding: 1.5rem .3rem;
        border-bottom: 1px solid var(--color-black);
        border-bottom-width: 5px;
        border-radius: 10px;
    }
    .services_article:hover{
        box-shadow: 0 6px 10px var(--gray-color);
        border-radius: 10px;
        border-bottom-color: var(--color4);
    }
    .services_title{font-size: 1.5rem; font-weight: 500;}
    .services_title:hover{
        color: var(--background);
    }
   
    .services_article--green{
        background: #f3f3f3;
        --color-title: var(--color-base);
    }
    .services_article--blue{
        background: #f3f3f3;
        --color-title: var(--color-terciaire);
    }
    .services_article--yellow{
        background: #f3f3f3;
        --color-title: var(--color-primario);
    }
    .services_span{
        background-color: var(--color-title);
        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**/
    .cta{
        background: #f3f3f3;
        border-radius: 10px;
        padding: 2rem 1rem;
        margin-bottom: 2rem;
        border: 1px solid transparent;
        border-bottom-width: 5px;
        border-color: var(--color-segundario);
    }
    .cta:hover{
        box-shadow: 0 6px 10px var(--color-segundario);
        border-color: var(--color4);
    }

    .cta .title{
        margin: 0;
    }
    .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;}
    .cta_links{
       background: linear-gradient(to right, #01082d, #031273, #0504AA, #031273);
        padding: .5rem 0;
        border-radius: 40px;
        color: var(--gray-color);
        text-decoration: none;
        text-align: center;
    }
    .cta_links:hover{
        background: var(--color4);
        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);
    }

    /**FAQ**/
    .faq{padding: 30px 0;}
    .faq_container{display: grid; gap: 1rem; margin-bottom: 3rem;}

    .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: #fff;
        padding: 0 1rem;
        margin: 0 10px;
        border-radius: 5px;
        border: 1px solid var(--color-uno);
        border-bottom-width: 5px;
        --icon-question-url: url("./img/ouvrir_question_bleu.svg");
    }
    .faq_item:hover{
        box-shadow: 0 6px 10px #0058cc;
        border-color: #031273;
    }

    .faq_item[open]{
        background: #fff;
        --icon-question-url: url("./img/fermer_question_bleu.svg");
        color: var(--color-terciaire);
    }
    .faq_title{
        font-size: 1.2rem;
        width: 60%;
        color: var(--color-segundario);
    }
    .faq_answer{
        color: var(--color-segundario);
        margin: .5rem;
        padding-top: .5rem;
        border-top: 1px solid var(--color-zero);
        font-size: 1rem;
    }
    .faq_answer h6{
        margin: 0;
    }
    .faq_answer h5{
        margin: 0;
    }
    .faq_answer li{
        margin-left: 25px;
        list-style-type: square;
    }

    /**how**/
    .how-it-works{
        margin-top: 2rem;
    }
    .container-how-it-works{
            background-color: #fff;
            border: 1px solid #f3f3f3;
            margin-top: 3rem;
            margin-bottom: 3rem;
            border-radius: 10px;
        }

    .blog{
        background-color: #f3f3f3; 
        border-radius: 10px;
        padding-bottom: 3rem;
        padding-top: 3rem;     
       }

    .container-blog{
        background-color: #fff;
        border-radius: 10px;
    }


/**contact**/
    .contact{margin: 0 0 3rem 0;}
    .contact h1, h2, h3, h4, h5, h6{
        margin-left: .5rem;
    }
    .contact_content:hover{
        box-shadow: 0 6px 10px var(--gray-color);
        border-bottom-color: var(--color-terciaire);
        background: var(--gray-color);
    }
    .contact_content{
        margin-top: 1rem;
        background: #fff;
        border-radius: 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;}
    .contact_input,
    .contact_area{
        padding: .5rem 0rem;
        border: 1px solid #172738;
        border-radius: 5px;
        border-bottom: 3px solid var(--color-segundario);
    }
    
    .contact_area{
        width: 100%;
        height: 120px;
        resize: none;
    }
    .contact_submit{
        background-color: var(--color-segundario);
        color: var(--gray-color);
        padding: .5rem;
        border-radius: 10px;
        border: none;
    }
    .contact_submit:hover{
        background: var(--color-terciaire);
    }
    .contact_img{width: 100%;}

    /**Footer**/
    .footer_language{
        width: 100%;
        display: grid;
        grid-auto-flow: row;
        gap: 0rem;
        padding: 1rem 0;
        border-bottom: 2px solid var(--color-black);
        border-bottom-width: 5px;
        justify-content: center; 
    }

    .footer_language span{
        font-size: 12px;
    }
    
    .language-symbols a{
        border: 1px solid var(--color-uno);
        background-color: transparent;
        font-size: .9rem;
        font-weight: 900;
        color: #f3f3f3;
        text-decoration: none;
        padding: 0 .2rem;
        border-radius: 3px;
    }
    .footer_flag-links{
        padding: .5rem;
    }

    .footer_flag-links:hover{
        border-bottom: 2px solid var(--color4);
        border: 1px solid var(--color4);
    }
    .footer{
        background: linear-gradient(to bottom right, #031273, #01082d, #031273, #01082d);
    }
    .footer_logo{width: 100px; height: auto;}
    .footer_content{
        color: var(--gray-color);
        padding: var(--padding-container);
        width: min(90%, 1200px);
        overflow: hidden;
        margin: auto;
    }
    .footer_main{
        display: grid;
        gap: 1rem;
        justify-items: center;
        margin-bottom: 2rem;
    }

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

    .footer_email{
        border: 1px solid var(--gray-color) ;
        border-radius: 5px;
        padding: 0 .7rem;
        background-color: transparent;
        color: var(--gray-color);
    }
    .footer_email::placeholder{color: var(--gray-color);}
    .footer_submit{
        background-color: var(--color4);
        color: var(--color-segundario);
        border: none;
        border-radius: 5px;
        font-weight: 400;
    }
    .footer_submit:hover{
        background-color: var(--color-zero);
        transition: 1s;
    }
    .footer_social {
        display: grid;
        grid-auto-flow: column;
        gap: .5rem;
    }

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

    /*footer inferior*/
    .footer_inferior{
        width: min(100%);
        display: grid;
    }

    .partFooter{
        width: 45%;
        margin: 1rem 0;
    }
    .footer_copy-subtitle{
        background-color: var(--color4);
        font-size: 1rem;
        color: var(--gray-color);
        font-weight: 500;
        padding: 4px;
        border-radius: 5px;
        display: inline-block;
        margin-left: 0;
    }
    .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{
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 2px solid var(--color-terciaire);
    }
    .partFooter-about{
        width: 100%;
        border-radius: 10px;
    }
    .footer-logo-about{
        font-size: .8rem;
        margin: .3rem 0rem;
    }
    .footer_copyright-text{
        text-align: center;
        font-size: 12px;
        font-weight: 300;
    }
    .footer_copyright-text a{
        color: var(--color4);
        text-decoration: none;
        font-weight: 500;
    }
    .footer_copyright-text a:hover{
        text-decoration: underline;
        transition: 1s;
    }

    /**Back to top**/
    #myBtn {
        display: none; /* Hidden by default */
        position: fixed; /* Fixed/sticky position */
        bottom: 20px; /* Place the button at the bottom of the page */
        right: 20px; /* Place the button 30px from the right */
        z-index: 99; /* Make sure it does not overlap */
        border: none; /* Remove borders */
        outline: none; /* Remove outline */
        background: linear-gradient(to bottom, #0058cc, #031273, #031273,   #0058cc); /* Set a background color */
        color: white; /* Text color */
        cursor: pointer; /* Add a mouse pointer on hover */
        padding: 10px; /* Some padding */
        border-radius: 10px; /* Rounded corners */
        font-size: 16px; /* Increase font size */
    }
    #myBtn:hover {
        background-color: #0058cc; /* Add a dark-grey background on hover */
    }

    @media (width >= 768px){
        /**Hero**/
        .nav_logo{width: 150px; height: auto;}
        .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{
            grid-area: titulo;
        }
        .hero_paragraph{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;}

        .boite-fonctionnement{
        background: var(--background);
        margin: .6rem .3rem;
        width: 46%;
        border-radius: 10px;
    }

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

        /**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;
            border-bottom: 2px solid var(--gray-color);
        }
        .footer_inferior{
            display: flex;
            flex-wrap: wrap;
            justify-self: start;
            margin-right: 2rem;
        }
        .partFooter-about{margin-right: 1rem;}
        .partFooter{
            width: 31%;
            margin-top: 1rem;
        }
    }

    @media (width >= 992px){
        /** Hero**/
        .nav_logo{width: 200px; height: auto;}
        .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;
        }

        .boite-fonctionnement{
        background: var(--background);
        margin: .6rem .3rem;
        width: 47.5%;
        border-radius: 10px;
        }
        /**footer**/
        .footer{background-color: #fff;}
        .footer_content{
            background: linear-gradient(to bottom right, #01082d, #01082d, #031273, #031273,);
            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: 20%;
            margin-right: 1rem;
        }
    }
