/* importation de la police */

@font-face {
    font-family: "Franchise";
    src: url("../assets/Franchise.ttf") format("truetype");
}

@font-face {
    font-family: "Poppins_Med";
    src: url("../assets/Poppins/Poppins-Medium.ttf") format("truetype");
}

@font-face {
    font-family: "Poppins_SemiBold";
    src: url("../assets/Poppins/Poppins-SemiBold.ttf") format("truetype");
}


@media (max-width: 600px) {
    .distrib_footer
    {
        margin-left: 0em;
        margin-right: 0em;
    }
    .titre_footer{
        margin: 3%;
        width: 30%;
        font-size: 80%;
    }
    
}

/* Styles pour les écrans de taille moyenne (ex : tablettes) */
@media (min-width: 601px) and (max-width: 1024px) {
    .distrib_footer
    {
        margin-left: 4em;
        margin-right: 4em;
    }
    .titre_footer{
        margin: 3%;
        margin-left: 10%;
        margin-right: 10%;
        width: 30%;
        font-size: 100%;
    }
}

/* Styles pour les écrans larges (ex : ordinateurs de bureau) */
@media (min-width: 1025px) {
    .distrib_footer
    {
        margin-left: 4em;
        margin-right: 4em;
    }
    .titre_footer{
        margin: 3%;
        margin-left: 10%;
        margin-right: 10%;
        width: 30%;
        font-size: 130%;
    }
}

/* fond du footer */
footer{
    background:white;
    height:13em;
    width: 100%;    
    z-index: 1;
}

/* placement dans le footer */
.distrib_footer
    {
    display: flex;
    flex-direction: row ;
    justify-content: center;
    text-decoration: none;
    height: 7em;
    align-items: center;
    }

.titre_menu:hover {
    color : #B41611;
}

/* placement des titre dans le header */
.barre_footer
    {
    position: relative;
    display: flex;
    flex-direction: row ;
    justify-content: space-evenly;
    margin-left: 5%;
    margin-right: 5%;
    width: 70%;
    }

input
    {
    border-radius: 50px;
    border-style: none;
    }


/* style des écritures dans le footer */
.titre_footer{
    list-style: none;
    position: relative;
    text-decoration:none;
    font-family: Poppins_Med;
    color: #000;
    text-align: center;
    font-style: normal;
    line-height: normal;
    white-space: nowrap;
    }

.titre_footer:hover{
    color : #B41611;
}


/* bouton dans le footer */
a{
    text-decoration: none;
}

footer img{
    width: 100%;
}