/*------------------------------------------------------------ 
Specials
------------------------------------------------------------*/

.specials {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    position: absolute;
    bottom: 20px;
    left: 40px;
    z-index: 20;
    color: #f7f0e3;
    background: rgba(18, 71, 52, 0.8);
    padding: 10px;
    max-width: 1200px;
    margin-right: 40px;
}
.specials img {
    display: none;
}

.specials a {
    color: #f7f0e3;
    text-decoration: underline;
}

.specials p {
    margin: 0;
    font-size: 12px;
    text-align: center;
}


/*------------------------------------------------------------ 
min-width: 375px
------------------------------------------------------------*/

@media (min-width: 375px) {
}

/*------------------------------------------------------------ 
min-width: 576px
------------------------------------------------------------*/

@media (min-width: 576px) {
}

/*------------------------------------------------------------ 
min-width: 768px
------------------------------------------------------------*/

@media (min-width: 768px) {
    .specials {
        padding: 20px;
    }

    .specials img {
        display: inline-block;
        margin-right: 20px;
        width: 50px;
    }

    .specials p {
        text-align: left;
        font-size: 16px;
    }
}

/*------------------------------------------------------------ 
min-width: 1250px
------------------------------------------------------------*/

@media (min-width: 1250px) {
    .specials {
        bottom: 80px;
        padding: 20px 40px;
    }

    .specials img {
        width: 60px;
        margin-right: 40px;
    }

    .specials p {
        font-size: 18px;
    }
}

/*------------------------------------------------------------ 
min-width: 1440px
------------------------------------------------------------*/

@media (min-width: 1440px) {
    .specials {
        bottom: 80px;
    }

    .specials p {
        font-size: 20px;
    }
}

/*------------------------------------------------------------ 
max-width: 768px
------------------------------------------------------------*/
@media (max-width: 768px) {
    .video-section {
        /* height: calc(100vh + 82px); */
    }

    .specials {
        bottom: 0;
        left: 0;
        margin-right: 0;
        width: 100%;
    }
}

/*------------------------------------------------------------ 
min-width: 768px and max-height: 800px
------------------------------------------------------------*/
@media (min-width: 768px) and (max-height: 800px) {
    .specials p {
        font-size: 16px;
    }
}