* {
    box-sizing: border-box;
    min-height: 0;
    min-width: 0;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    color: #d1bd7b;
    text-decoration: none;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', serif;
    font-weight: 400;
    color: #222;
}

h1 {
    margin: 0rem 0;
    font-size: 5rem;
}

h2 {
    font-size: 3rem;
    color: #fff;
    padding-bottom: 2rem;
    border-bottom: 1px #d1bd7b solid;
    text-transform: uppercase;
}

.subtitle {
    font-size: 2rem;
}

@media (max-width: 550px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 1.5rem;
    }
}

p, li, address {
    line-height: 1.75rem;
    color: #333;
}

.gold {
    color: #d1bd7b;
    text-shadow: rgba(0, 0, 0, 0.25) 0 0 5px;
}

section {
    transition: all 0.3s ease-out;
    display: flex;
    width: 100%;
    min-height: 100vh;
    background-position: 50% 50%;
    background-size: cover;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media (max-width: 768px) {
    section {
        background-attachment: fixed;
    }
    section.nav-active {
        transform: translateX(300px);
    }
}

section * {
    position: relative;
    z-index: 2;
}

section:before {
    content: '';
    display: block;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.inner {
    padding: 10rem;
    flex: 1;
    align-self: center;
    color: #fff;
    margin: 0 auto;
    max-width: 1600px;
}

@media (max-width: 768px) {
    .inner {
        padding: 2.5rem;
    }
}

.inner h1:first-child, .inner h2:first-child {
    margin-top: 0;
}

.inner p:last-child {
    margin-bottom: 0;
}

.responsive-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
}
 
.responsive-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

section ul li {
    margin-bottom: 0.5rem;
}

section ul li:last-of-type {
    margin-bottom: 0;
}

.grid .column {
    position: relative;
    background-color: #fff;
    color: #333;
}

.grid .column.empty {
    background-color: transparent;
}

@media (max-width: 768px) {
    .grid .column {
        margin-bottom: 2.5rem;
    }
}

.grid .column:after {
    background-color: rgba(0, 0, 0, 0.5);
    height: 0.5rem;
    bottom: -0.5rem;
    width: 100%;
    content: '';
    display: block;
    position: absolute;
}

.grid .column.empty:after {
    content: none;
}

.grid .column .content {
    padding: 1.5rem;
}

.column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

form input, form textarea {
    display: block;
    background: rgba(0, 0, 0, 0.1);
    padding: 0.75rem;
    border: none;
    border-bottom: 0.25rem rgba(0, 0, 0, 0.5) solid;
    margin-bottom: 0.5rem;
    width: 100%;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 1rem;
}

form input[type="checkbox"] {
    display: inline;
    width: inherit;
}

form label {
    display: block;
}

form button {
    display: inline-block;
    background-color: #d1bd7b;
    padding: 1rem 2rem;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
}
