/* Body */
* {
    box-sizing: border-box;
}
a {
    color: #006EC3;
}
body {
    background-image: url('/grandpark/assets/images/background.jpg');
    background-size: cover;
    background-attachment: fixed;
    line-height: 1;
    font-family: sans-serif;
    color: white;
    margin: 0;
}
.containing {
    width:100%;
    padding:12px;
}
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* Header */
.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.logo {
    width: 100px;
}
.logo-text {
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 2em;
    margin: 0 12px;
}
@media (min-width: 576px) {
    .logo {
        width: 150px;
    }
    .logo-text {
        font-size: 3em;
    }
}
@media (min-width: 768px) {
    .logo {
        width: 200px;
    }
    .logo-text {
        font-size: 4em;
    }
}
@media (min-width: 992px) {

}

/* Menu */
.dropbtn {
    color: white;
    padding: 6px;
    cursor: pointer;
    font-size: 2em;
    line-height: inherit;
}
.dropdown {
    float: right;
    position: relative;
    display: block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    overflow: auto;
    right: 0;
    z-index: 101;
    font-size: 0.9em;
}
.dropdown-content a {
    color: #032864;
    padding: 16px;
    text-decoration: none;
    display: block;
    border-width: 0 0 1px 0;
    border-style: solid;
}
.dropdown-content a:hover {
    background-color: #dff1ff;
}
.show {
    display: block;
}

/* Brand icons */
.brands {
    font-size: 25px;
    margin: 10px 7px;
    float: right;
}

/* Main */
.ad-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.ad-box-lg {
    display: block;
}
.ad-box-sm {
    display: none;
}
@media (max-width: 766px) {
    .ad-box-lg {
        display: none;
    }
    .ad-box-sm {
        display: block;
    }
}

/* Footer */
.footer-links {
    padding: 12px 0;
    text-align: center;
    font-size: smaller;
}

/* Sticky Footer */
.site {
    margin: 0;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}
.site-content {
    margin: 0;
    flex: 1;
}