@charset "utf-8";
/* CSS Document */

.small-hero {
    position: relative;
    /*border-bottom: 5px solid #daaf48;*/
    overflow: hidden;
    height: 300px;
    background-size: cover;
    background-position: center center;
}

.small-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    width: 90%;
    text-align: center;
    z-index:101;
}


.small-hero-content h1 {
    color: #ffffff;
    font-size: 35px;
    font-weight: 600;
    line-height: 35px;
    margin-top: 0px;
    text-shadow: 4px 4px 1px rgba(0,0,0,0.41);
    color:#daaf48;
}

.small-hero-content p {
    color: #ffffff;
    font-weight: 600;
    line-height:30px;
    font-size: 20px;
    text-shadow: 3px 2px 1px rgba(0,0,0,0.41);
    text-transform:uppercase;
    letter-spacing: 5px;
    margin-bottom:10px;
}

.imgdim {
    background-color: rgba(0,0,0,.3);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 100;
}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 400px) {}

/* Larger Than Mobile */
@media (min-width: 550px) {
.small-hero-content h1 {font-size: 45px;line-height: 45px;}
.small-hero-content p {font-size: 25px;}
}

/* Larger than tablet */
@media (min-width: 750px) {
.small-hero-content h1 {font-size: 65px;line-height: 65px;}
.small-hero-content p {font-size: 25px;}

}

/* Larger than desktop */
@media (min-width: 997px) {

    .small-hero-content h1 {
        font-size: 60px;
        line-height: 80px;
        text-shadow: 4px 4px 1px rgba(0,0,0,0.41);
    }
    
    .small-hero-content p {
        font-size:25px;
    }
}

@media (min-width: 1200px) {

    .small-hero-content h1 {
        font-size: 60px;
        line-height: 80px;
        text-shadow: 4px 4px 1px rgba(0,0,0,0.41);
    }
}
