/* MAIN */

.main-ctn-div {
   /* transition: ease 1s; */
    width: 100%;
    margin-bottom: 5px;
}

.main-ctn-ban {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;

    flex: 1;

}

.main-div-ban {
    position: relative;
}

.main-div-ban img {
    width: 100%;
}



.main-hover {
    position: absolute;
    bottom: 0;

    height: 0%;

    display: flex;
    align-items: center;

    background-color: rgba(51, 51, 51, 0.30);
    width: 100%;

    transition: height ease .5s;

}

.main-hover p {
    margin: 0;
    font-size: 0px;
    color: white;
    font-family: 'Quicksand', sans-serif;

    transition: font-size ease .5s;
}

@media not screen and (min-width: 64em) {
    .main-hover {
        display: flex;
        height: 100%;
    }

    .main-hover p {
        font-size: 14vw;
    }
}

.main-div-ban:hover .main-hover {
    display: flex;
    height: 100%;
}


@media not screen and (max-width: 1000px) {
    .main-div-ban:hover .main-hover p {
        font-size: 100px;
    }
}

@media only screen and (max-width: 1000px) {
    .main-div-ban:hover .main-hover p {
        content: '';
        font-size: 14vw;
    }
}

#div-random-order {
    width: 100%;
    background-color: green;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

#div-random-order p {
    margin: 0;
}

/* END OF : MAIN */


/* FOOTER */

#footer {
    margin-top: 20px;

    height: 100px;
    background-color: #333333;

    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_text {
    color: white;
}

.footer_text {
    margin: 0;
}

/* END OF : FOOTER */