

.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: 40vh;
    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 img{
    width: 400px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.color {
    z-index: -100;

    position: absolute;
    width: 100%;
    height: 100%;
}




.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-top {
    color: white;
    margin: 0 auto;
    text-align: center;
    margin-top: 50px;
}

.third-text {
    color: white;
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.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 {
    box-shadow: 0px 10px 25px -10px black;
   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;

}

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



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

footer p{
    margin-bottom: 0;
}

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

    .middle {
        width: 90%;
    }

    .bottom {
        width: 90%;
    }
}

@media screen and (max-width: 500px) {

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

}