img {
    background: black;
    display: inline-block;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;

}

h1 {
    background: black;
    color: white;
    margin-bottom: 50px;
    font-weight: bold;
    font-size: 50px;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px;
    gap: 50px;
}

p {
    margin-bottom: 50px;
    font-size: 20px;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

input {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    border: 1px solid;
    border-radius: 20px;
    padding: 10px;
}

.btn {
    padding: 10px;
    background-color: aqua;
    border-radius: 5px;
    color: white;

    display: inline-block;
    margin-top: 10px;
    text-decoration: solid;
    border: 1px solid skyblue;
}

h3 {
    display: flex;
    font-size: 50px;
    background: rgb(41, 190, 249);
    color: white;
    justify-content: center;
    align-items: center;
}

p4 {
    display: flex;
    font-size: 50px;
    color: white;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    width: 100%;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

h10{

    font-size: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 50px;
    padding-right: 50px;
}


.image-container2{
    position: relative;
    width: 100%;
}

.text-overlay :left{
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

h11{

    font-size: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 50px;
    padding-right: 50px;
    color: white;
}

h2{
    color: white;
    font-size: 52px;
    height: 52px;
}



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;


}

h4 {
    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);
}