header {
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: white;
    gap: 40px;


}

header .logo img {
    width: 121px;
    height: 32px;
    margin-left: 45px;
}

header nav svg , .search svg{
    padding-left: 4px;
    display: inline-flex;
    vertical-align: baseline;
    margin-right: 5px;
    

}
  


header nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    
    
}


header nav ul a {
    color: black;
    background-color: white;
    border-radius: 4px;
    border: 1px solid rgb(232, 235, 235);
    text-decoration: none;
    display: flex;
    padding: 10px 10px;
    align-items: center;
    flex-wrap: nowrap;
}

footer {
    padding: 15px 20px;
    background-color: rgb(46, 51, 51)
}

footer p {
    color: rgb(88, 92, 92);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

footer .badge ul {
    height: 40px;
    display: inline-block;

}

.search {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 600px;
    height: 40px;
    background-color: rgb(245, 245, 245);
    border: 1px solid rgb(232, 235, 235);
    border-radius: 4px;
    padding-left: 10px;
    padding-right: 16px;
    box-sizing: border-box;
    margin-inline-start: 0px;




}

.search-bar {
    width: 100%;
    max-width: 700px;

    display: flex;
    align-items: center;
    padding: 5px 10 px;
    padding-block: 1px;
    padding-inline: 2px
}

.search-bar input {
    background: transparent;
    flex: 1;
    border: 0;
    outline: none;
    padding: 24px 20px;
    font-size: 20px;
}

.search-bar ::placeholder {
    color: rgb(171 173 173);
    font-size: 20px;

}

.search-bar img {
    width: 24px;
    border: 0;
    height: 24px;
    background: transparent;


}

h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
    color: white;

}

.blocs {
    display: flex;
    flex-direction: row;
    color: white;
    align-items: stretch;
    gap: 10px;
    padding-top: 10px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 24px;
}

.blocs div {
    width: 50%;
    border: 1px solid rgb(67, 72, 72);
    border-radius: 4px;
    margin-inline-start: 12 px;
    line-height: 30px;
    background-color: rgb(67, 72, 72);
    padding: 24px ;

}

.blocs div a {
    color: white;
    text-decoration: none;
    height: 5px;

}

footer .socials ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    color: white;

}

footer .socials {
    display: flex;
    justify-content: space-between;
    margin-inline-start: 40px;
}

.socials ul a {
    color: white;
}

footer p {
    display: flex;
    justify-content: flex-end;
    margin-inline-end: 40px;
}

.socials ul svg {
    fill: white;
}

/* responsive*/

@media (max-width: 720px) {
    footer {
        flex-direction: column;
        display: flex;
        width: 100%;
    }

    .blocs {
        flex-direction: column;
        justify-content: center;
        padding: 100%;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 10px;
        padding-bottom: 35px;    
        
    }

    .blocs div {
        flex-direction: column;
        width: 100%;

    }
    .search{
      display: none;
    }
    .inscription {
        display: none;

    }
  
    footer .socials {
        display: flex;
        margin-inline-start: 0px;
        margin-bottom: 24px;
        align-items: center;
       
    }
    footer p {
        display: flex;
        margin-inline-end: 0px;
    }
    

}

/* hover*/
footer .socials .facebook svg:hover {
    fill: rgb(1, 101, 225);
}

footer .socials .twitter svg:hover {
    fill: rgb(29, 155, 240);
}

footer .socials .instagram svg:hover {
    fill: rgb(225, 48, 108);
}

footer .blocs a:hover {
    color: rgb(0, 204, 188);
}