/* Style bottomPage  */

     
/* body{
    background-color: white;  
} */

.footerContainer{

    position: relative;
    height: auto;
    width: 100%;
    /* bottom: 0px; */
    /* top: 400%; */
    /* padding: 10px; */
    right: 0px;
    font-family: montserrat;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    line-height: 1.5;

    /* MODE CLAIR */
    background-color:white;
    background-color:var(--background);

    
}

.grid-container {
    height: 80%;
    width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 0.3fr;
    gap: 20px 40px;
    grid-template-areas:
        "block1 block2 block3"
        "SocialApplication SocialApplication SocialApplication";

      
}

a{
    text-decoration: black;
    color: rgb(81, 81, 81);

}

.socialApplication {

    display: flex;
    align-items: center;
    justify-content: center;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0px 0px;
    grid-area: SocialApplication;
}

.socialAppLogo{
    display: flex;
    align-items: center;
    justify-content: center;
    width:80%;
    height: 100%;

}

.logoSocial{
    position: absolute;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    margin: 10px;
    padding: 10px;
    transition: 0.4s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;

    /* MODE CLAIR */
    background-color: rgb(255, 255, 255);
    /* MODE SOMBRE */

}

.facebookLogo:hover{

    background-color: rgb(65, 67, 223);
    transition: 0.4s;
}
.instagramLogo:hover{

    background-color: rgb(206, 99, 131);
    transition: 0.4s;
}

.twitterLogo:hover{

    background-color: rgb(90, 156, 218);
    transition: 0.4s;
}

.snapchatLogo:hover{

    background-color: rgb(241, 243, 128);
    transition: 0.4s;
}

.TitreCard{

    position:absolute;
    padding-bottom: 4px;
    border-style: solid;
    border-width: 1px;
    border-top:none;
    border-right: none;
    border-left: none;
    border-bottom-color: rgb(241, 241, 241);
    font-size: 14px;
    font-weight: bold;
    color: var(--ecriture);

}

.labelCard{
    
    color: var(--ecriture);
    padding-bottom: 14px; 
}

.Card1 { grid-area: block1; }

.Card2 { grid-area: block2; }

.Card3 { grid-area: block3;
 }

.grid-container * {
    position: relative;
    /* border: 1px solid red; */
    
    }



    
@media only screen and (max-width:1000px) {

    .footerContainer{
        justify-content: start;
    }

    .grid-container {
        height: 80%;
        width: 50%;
        display: block;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr 0.3fr;
        gap: 20px 40px;
        grid-template-areas:
            "block1 block2 block3"
            "SocialApplication SocialApplication SocialApplication";
    }


.socialApplication {

    display: none;
}

    
}