
/***** Home Top Callout *****/
.home-top-callout-wrapper {
    background-color: black;
    width: 100%;
    position: relative;
}

.home-top-callout-bg {
    position: relative;
    background-position: center left;
    background-size: cover;
    height: 400px;
    width: 100%;
}

.home-top-callout {
    width: 100%;
    background: rgba(0,0,0,.3);
    color: white;
}

.home-top-content-wrapper {
    padding: 10% 0 12%;
    width: 80%;
}

.home-top-content {
    width: 80%;
    margin: auto;
}

.home-top-content-wrapper h2 {
    line-height: 1;
    margin: 15px 0;
}

.home-top-content-wrapper p {
    font-size: 1.5em;
    letter-spacing: 2px;
    margin-bottom: 35px;
}

.home-top-callout-button {
    font-size: 1.5em;
    letter-spacing: 2px;
    border: 2px solid;
    padding: 10px 15px 2px;
    color: white;
    text-decoration: none;
}

@media (min-width:768px) {
    .home-top-callout-wrapper {
        position: relative;
        height: 550px;
        z-index: 0;
    }
    .home-top-callout {
        display: flex;
        align-content: center;
        justify-content: flex-end;
        height: 100%;
        z-index: 1;
    }
    
    .home-top-content-wrapper {
        padding: 0;
        width: 50%;
        text-align: right;
        height: 100%;
        display: flex;
        align-items: center;
    }
    
    .home-top-callout-bg {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-position: center;
        z-index: -1;
    }
}

/***** Home Beer Callouts *****/
.home-beer-callout-wrapper {
    width: 100%;
    position: relative;
    background: #1c1b1a;
    display: none;
}

.home-beer-callout-active {
    display: block;
}

.home-beer-callout {
    width: 100%;
    color: white;
    position: relative;
}

.home-beer-content-wrapper {
    width: 100%;
}

.home-beer-content {
    width: 80%;
    margin: 0 auto;
    padding: 50px 0;
}

.home-beer-content-wrapper h2 {
    margin: 15px 0;
    line-height: 1;
}

.home-beer-content-p {
    font-size: 1.5em;
    letter-spacing: 2px;
    width: 80%;
    margin-bottom: 35px;
}

.home-beer-callout-button {
    font-size: 1.5em;
    letter-spacing: 2px;
    border: 2px solid;
    padding: 10px 15px 2px;
    color: white;
    text-decoration: none;
}

.home-beer-callout-see-all {
    margin-top: 35px;
    color: rgba(255,255,255,.8);
    text-decoration: none;
    font-size: 1.3em;
}

.home-beer-content-can-wrapper {
    height: 600px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.home-beer-content-can {
    height: 75%;
    width: auto;
}

@media (min-width:768px) {
    .home-beer-callout {
        height: 550px;
        display: grid;
        display: -ms-grid;
        grid-template-columns: 50% 50%;
        -ms-grid-columns: 50% 50%;
        grid-template-rows: auto;
        -ms-grid-rows: auto;
    }
    .home-beer-content-wrapper {
        padding: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        grid-column: 1;
        grid-row: 1;
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    
    .home-beer-content-can-wrapper {
        width: 100%;
        height: 550px;
        grid-column: 2;
        grid-row: 1;
        -ms-grid-column: 2;
        -ms-grid-row: 1;
        position: relative;
    }
    
    .home-beer-content {
        width: 80%;
    }
}

/***** Home Navigation Squares *****/
.home-squares-wrapper {
    width: 100%;
    position: relative;
    text-align: center;
}
.home-square {
    position: relative;
    height: 100vw;
}

.home-square-flex {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background: rgba(0,0,0,.3);
}

.home-square-content {
    width: 100%;
}

.home-square-content h2,
.home-square-content p {
    width: 80%;
    text-align: center;
    margin: 10px auto;
}

.home-square-link {
    color: white;
    text-decoration: none;
    font-weight: 200;
}

@media (min-width: 768px) {
    .home-squares-wrapper {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }
    .home-square {
        width: 50%;
        height: 50vw;
    }

}