/* Image Reel CSS */

.image__reel {
    display: flex;
    height: 360px;
    position: relative;
}

.image__reel__image {
    background-size: cover;
    width: 100%;
}

.image__reel__textWrapper {
    align-items: center;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    right: 0;
    top: 0;
    position: absolute;
}

.image__reel__textWrapper__text {
    background-color: rgba(0, 0, 0, 0.75);
    padding: 40px 45px;
}

@media only screen and (max-width: 800px) {

    .image__reel__textWrapper__text h1 {
        font-size: 35px;
        text-align: center;
    }
}

@media only screen and (max-width: 570px) {

    .image__reel {
        height: 240px;
    }

    .image__reel__textWrapper__text {
        padding: 20px;;
    }

    .image__reel__textWrapper__text h1 {
        font-size: 32px;
    }
}

@media only screen and (max-width: 475px) {

    .image__reel {
        height: 200px;
    }

    .image__reel__textWrapper__text {
        padding: 20px;;
    }

    .image__reel__textWrapper__text h1 {
        font-size: 26px;
    }
}

@media only screen and (max-width: 395px) {

    .image__reel {
        height: 180px;
    }

    .image__reel__textWrapper__text {
        padding: 15px;;
    }

    .image__reel__textWrapper__text h1 {
        font-size: 24px;
    }
}