
.top {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.img-wrapper img {
    position: absolute;
    margin: auto;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: -100;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.img-wrapper {
    display: inline-block; /* change the default display type to inline-block */
    overflow: hidden;
}

.above-top {
    padding-top: 100px;
    min-height: 70vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.38);
}


.top-text {
    text-align: center;
    color: white;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    padding-bottom: 50px;
}


.top-text p {
    width: 80%;
    margin: 0 auto;
    font-size: 1.3rem;
    font-family: "Montserrat",Arial,sans-serif;
}

.top-text img{
    width: 400px;
    margin: 0 auto;
    margin-bottom: 50px;
}


.third {
    position: relative;
    overflow: hidden;
    width: 80%;
    margin: 0 auto;
    color: black;
    background-color: #940505;
    border-radius: 30px 30px 0 0;
    border-top: 2px white solid;
    border-right: 2px white solid;
    border-left: 2px white solid;
}




.third-container {
    display: flex;
    flex-direction: row;
    width: 80%;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
    align-items: center;
    color: white;


}

.third-text {
    width: 50%;
    margin: 0 auto;
    padding: 20px;
    border-radius: 30px;
    text-decoration: none !important;
}


.third-img {
    width: 50%;
    margin: 0 auto;
    padding: 20px;
    text-align: center;

}

.third-img img{
    width: 250px;
    box-shadow: 0px 10px 25px -10px #1f2121;
    border-radius: 50%;
}


.middle {
    display: flex;
    justify-content: center;
    height: 30px;
    width: 80%;
    margin: 0 auto;
    border-right: 2px white solid;
    border-left: 2px white solid;
}

.one {
    display: flex;
    flex-direction: column;
    height: 30px;
    width: 24%;
}


.two {
    background-color: white;
    height: 30px;
    width: 100%;
}

.three {
    display: flex;
    flex-direction: column;
    height: 30px;
    width: 24%
}

.bottom {
    position: relative;
    overflow: hidden;
    width: 80%;
    margin: 0 auto;
    color: black;
    background-color: black;
    border-radius: 0 0 30px 30px;
    margin-bottom: 50px;
    border-bottom: 2px white solid;
    border-right: 2px white solid;
    border-left: 2px white solid;
}

#bottom-bottom {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    margin-top: 50px;
    color: white;
}



.bottom-txt {
    color: white;
    margin: 0 auto;
    width: 80%;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 50px;
    border: 2px solid #d00d0d;
    border-radius: 30px;
}



.boutton {
    margin: 0 auto;
    margin-top: 20px;
    background-color: #940505;
    width: 200px;
    height: auto;
    border-radius: 30px;
}

a {
    text-decoration: none !important;
}

a p {
    color: white;
    padding: 2px;
}



footer {
    color: white;
    text-align: center;
    background-color: black;
}

footer p{
    margin-bottom: 0;
}


@media screen and (max-width: 900px) {
    .third-container {
        flex-direction: column;
    }

    .third-img {
        width: 100%;
    }

    .third-text {
        width: 100%;
    }
}


@media screen and (max-width: 700px) {
    .third {
        width: 90%;
    }

    .middle {
        width: 90%;
    }

    .bottom {
        width: 90%;
    }
}

@media screen and (max-width: 500px) {
    .top-text p {
    font-size: 1rem;
    }

    .third p {
    font-size: 1rem;
    }

    .above-top {
        min-height: 90vh;
    }


    .top-text img{
        width: 300px;
    }

    .third-img img{
        width: 200px;
    }
}