@font-face {
    font-family: 'bembo';
    src: url('../fonts/bembo.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, a, img, ol, ul, li {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* Page styles */
body {
    min-height: 100vh;
    background: rgb(0,32,38);
    background: linear-gradient(180deg, rgba(0,32,38,1) 0%, rgba(0,14,22,1) 59%, rgba(17,54,60,1) 77%, rgba(14,45,52,1) 100%);
    /* CSS Code */
    border-image-slice: 1100 863 1100 863;
    border-image-width: 100px 100px 100px 100px;
    border-image-outset: 0px 0px 0px 0px;
    border-image-repeat: round;
    border-image-source: url("../img/hendricks-frame.png");
    border-style: solid;
    /*background-position: top left;*/
    /*background-repeat: repeat-x;*/
    background-size: 60px;
    display: flex;
    flex-direction: column;
    font-family: Georgia, "Times New Roman", Serif;
    font-size: 100%;
    line-height: 1.5;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    /*background: #ede5d0;*/
    /*box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);*/
    z-index: 10;
    margin-top: 40px;
}

.brandLogoContainer {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brandLogoContainer img {
    width: 600px;
    margin: 20px;
}

section {
    width: 100%;
    z-index: 0;
    padding: 0 33px;
    box-sizing: border-box;
}

body.cocktailfinder .imgWrapper {
    display: none;
}

body:not(.cocktailfinder) .imgGridContainer {
    display: none;
}

.imgGridContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cocktailfinderText {
    margin: 10px;
    max-width: 910px;
    text-align: center;
    font-family: 'bembo', Georgia, "Times New Roman", Serif;
    text-transform: uppercase;
    font-weight: 500;
    color: #987E3B;
    font-size: 1.1em;
}

.row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin: 10px;
    max-width: 910px;
}

.row img {
    display: block;
    width: 100%;
}

.videoOuterWrapper, .imgWrapper {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    margin-bottom: 10px;
    align-self: center;
}

.imgWrapper img {
    display: block;
    width: 100%;
    max-width: 910px;
    margin: 0 auto;
}

.videoWrapper #videoPlayer {
    display: block;
    width: 100%;
    max-width: 910px;
    margin: 0 auto;
}

.full-button {
    background: #987E3B;
    color: #fff;
    border: 1px solid #000;
    padding: 8px 15px;
    margin: 10px auto;
    text-align: center;
    text-decoration: none;
}

.diamond-logo {
    max-width: 200px;
    margin-bottom: 10px;
}

.importantInfo {
    color: #ffffff;
    box-sizing: border-box;
    padding: 0 5px;
    text-align: center;
    max-width: 960px;
}

footer {
    /*height: 60px;*/
    width: 100%;
    color: #ede5d0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-bottom: 55px;
    padding: 0 5px;
    text-align: center;
    /*box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.2);*/
}

.footerText {
    font-size: 12px;
}

.footerText a:link, .footerText a:visited {
    color: #dc0018;
    text-decoration: none;
}

.footerText a:hover {
    color: #dc0018;
    text-decoration: underline;
}

/* In app forced styles */
.ctaText {
    padding: 9px 10px !important;
}

@media screen and (max-width: 768px) {
    header {
        height: auto;
    }

    .brandLogoContainer {
        flex-direction: column-reverse;
    }

    .brandLogoContainer img {
        width: 60%;
        margin: 10px;
    }

    #app-wrapper {
        width: 100%;
        border-radius: 0;
        background-color: transparent;
        padding: 0;
        box-sizing: border-box;
    }

    #lifestyle img {
        padding: 0 10px;
    }

    footer {
        padding: 0 50px;
        /*display: block;*/
    }
}
