/**
 * Parameters
 */
:root {
    --font-family: 'Lato', sans-serif;
    --font-family-headings: 'Playfair Display', serif;

    --background-color-primary: #729419;
    --color-on-primary: #FFFFFF;
    --color-primary: #729419;
    --color-primary-hover: #2F3D0A;
}

/**
 * Reset
 */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

html,
body {
    height: 100%;
    font-family: var(--font-family);
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

p{
    font-size: 1.25rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-headings);
    font-weight: 700;
}

#root,
#__next {
    isolation: isolate;
}

a,
a:visited {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
    font-style: normal;
}

a:focus,
a:hover {
    color: var(--color-primary-hover);
}

/****************************************************************************
 * Font Sizes
 ****************************************************************************/
.h1,
h1 {
    font-size: 1.75rem;
}

.h2,
h2 {
    font-size: 1.5rem;
}

.h3,
h3 {
    font-size: 1.375rem;
}

.h4,
h4 {
    font-size: 1.25rem;
}

.h5,
h5 {
    font-size: 1.125rem;
}

.h6,
h6 {
    font-size: 1rem;
}

@media screen and (min-width:40em) {

    .h1,
    h1 {
        font-size: 2.25rem;
    }

    .h2,
    h2 {
        font-size: 1.875rem;
    }

    .h3,
    h3 {
        font-size: 1.5rem;
    }

    .h4,
    h4 {
        font-size: 1.375rem;
    }
}

@media screen and (min-width:64em) {

    .h1,
    h1 {
        font-size: 2.75rem;
    }

    .h2,
    h2 {
        font-size: 2.125rem;
    }

    .h3,
    h3 {
        font-size: 1.75rem;
    }

    .h4,
    h4 {
        font-size: 1.5rem;
    }
}

/**
 * Styling
 */
.container {
    max-width: 72rem;
    margin: 0 auto;
    width: 100%;
    padding: 2rem 1rem;
}

.row {
    width: 100%;
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
}

.col {
    flex: 1 1 0;
    max-width: 100%;
    min-width: 0;
    width: auto;
    padding: 0 1rem;
}

.col-3 {
    flex: 0 0 25%;
    width: 25%;
}

.col-6 {
    flex: 0 0 50%;
    width: 50%;
}

.col-9 {
    flex: 0 0 75%;
    width: 75%;
}

.col-12 {
    flex: 0 0 100%;
    width: 100%;
}

.col>.row {
    margin: 0 -1rem;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

@media screen and (min-width:40em) {

    .col-md-3 {
        flex: 0 0 25%;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 33.333%;
        width: 33.333%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        width: 50%;
    }

    .col-md-8 {
        flex: 0 0 66.666%;
        width: 66.666%;
    }

    .col-md-9 {
        flex: 0 0 75%;
        width: 75%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        width: 100%;
    }

    .container {
        padding: 3rem 2rem;
    }
}

@media screen and (min-width:64em) {

    .col-lg-3 {
        flex: 0 0 25%;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 33.333%;
        width: 33.333%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        width: 50%;
    }

    .col-lg-8 {
        flex: 0 0 66.666%;
        width: 66.666%;
    }

    .col-lg-9 {
        flex: 0 0 75%;
        width: 75%;
    }

    .col-lg-12 {
        flex: 0 0 100%;
        width: 100%;
    }

    .container {
        padding: 4rem;
    }
}

h1,
h2,
p,
address {
    margin: 0 0 1rem;
}

.address.row {
    margin: 0 -1rem 1rem;
}

.address .col {
    align-items: center;
    display: flex;
    margin-bottom: .5rem;
    font-size: 1.5rem;
}

.address img {
    width: 1.25em;
    height: auto;
    margin: 0 .5em 0 0;
    display: inline-block;
}

img {
    display: inline-block;
    margin: 0 auto 1rem;
}

.text-center {
    text-align: center;
}

.thumbnail img {
    aspect-ratio: 1;
    object-fit: cover;
}


.thumbnail-gallery>.thumbnail-col {
    flex: 0 0 50%;
    width: 50%;
}

.thumbnail-col .see-more {
    background-color: var(--background-color-primary);
    color: var(--color-on-primary);
    display: block;
    width: 100%;
    aspect-ratio: 1;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    display: flex;
    font-size: 1.5rem;
}

.thumbnail-col .see-more:hover,
.thumbnail-col .see-more:focus {
    --background-color-primary: #506911;
}

@media screen and (min-width:40em) {
    .thumbnail-gallery>.thumbnail-col {
        flex: 0 0 33.333%;
        width: 33.333%;
    }
}

@media screen and (min-width:64em) {
    .thumbnail-col .see-more {
        font-size: 2rem;
    }
}