
    header {
        display: flex;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: var(--nav-height);
        background: var(--black);
        box-shadow: 0px 5px 10px rgba(22, 22, 22, 0.3);
        z-index: 3;
    }

    .header__content {
        padding: 0 1em;
    }
    
    header p {
        color: white;
        margin: 0 auto 0 auto;
    }

    .nav__toggle {
        fill: white;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    
    .nav__links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 2;
        height: 100vh;
        margin-top: var(--nav-height);
        width: var(--nav-width);
        background: rgba(25, 25, 25, 0.975);
        transition: all 275ms ease-in-out;
        box-shadow: 5px 0 10px rgba(22, 22, 22, 0.3);
    }
    
    .nav__links.hidden {
        opacity: 0;
        transform: translateX(-100%);
        transition: all 275ms ease-in-out;
    }

    .nav__link {
        color: white;
        display: flex;
        align-items: center;
        padding: calc(var(--site-gutter) * 2) var(--site-gutter);
        transition: 275ms ease-in-out;
    }

    .nav__link:hover {
        background: rgba(25, 25, 25, 0.99);
        transition: 275ms ease-in-out;
    }

    .nav__overlay {
        position: fixed;
        display: unset;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 1;
        background: rgba(0, 0, 0, 0.3);
        transition: all 275ms ease-in-out;
    }
    
    .nav__overlay.hidden {
        display: none;
        transition: all 275ms ease-in-out;
    }

    @media (min-width: 1200px) {

    }
#hero {
    /* padding: 3em 0; */
    min-height: 100vh;
    color: white;
    background: -webkit-linear-gradient(rgba(22, 22, 22, 0.5), rgba(22, 22, 22, 0.5)), url("/banner.8d48f2ea.webp");
    background: linear-gradient(rgba(22, 22, 22, 0.5), rgba(22, 22, 22, 0.5)), url("/banner.8d48f2ea.webp");
    background-color: rgba;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/* fix this */

#hero h1 {
    color: white;
}

#hero p {
    color: rgb(201, 201, 201);
}

@media (min-width: 765px) {
    #hero {
        min-height: 85vh;
        background-attachment: fixed;
    }
}
.btn {
    border: none;
    color: black;
    background: none;
    padding: 0.5em 2em;
    margin-bottom: 0.5em;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 275ms ease-in-out;
}

.btn--nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    width: 20px;
    font-size: 1.25em;
    outline: none;
}

.btn--outline--white {
    color: white;
    background: none;
    border: 2px solid white;
    border-radius: 19px;
}

.btn--outline--white:hover,
.btn--outline--white:focus,
.btn--outline--white:active {
    color: black;
    background-color: white;
    outline: none;
    transition: all 275ms ease-in-out;
}

.btn--outline--black {
    color: black;
    background: white;
    border: 2px solid black;
    border-radius: 19px;
}

.btn--outline--black:hover,
.btn--outline--black:focus,
.btn--outline--black:active {
    color: white;
    background-color: black;
    outline: none;
    transition: all 275ms ease-in-out;
}
form {
    display: flex;
    flex-direction: column;
}


label p {
    padding: 0 0.5em;
}

fieldset {
    display: block;
    background: white;
    margin: 0;
    margin-bottom: 0.5em;
}

legend p {
    margin: 0;
}

fieldset h4 {
    margin: 0;
}

input,
textarea {
    width: 100%;
    border: none;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

input:hover,
input:focus,
input:active,
textarea:hover,
textarea:focus,
textarea:active {
    outline: none;
    transition: all 275ms ease-in-out;
}

#mailingCheck {
    cursor: pointer;
    width: 30px;
    height: 30px;
    margin: 0;
    margin-right: calc(0.5em / 0.32);
}

#contactSubmit {
    max-width: max-content;
    margin: 0 auto;
}
table {
    width: 100%;
    margin-bottom: 0.5em;
}

thead {
    color: white;
    background-color: var(--black);
}

th {
    padding: 1em 0;
}

tbody {
    background: white;
}

td {
    padding: 0.5em 0;
}

table, th, td {
    border: 1px solid var(--black);
    border-spacing: 0;
}
.social-icon {
    fill: var(--black);
    max-width: 75px;
}

/* Twitter */
.twitter {
    transition-property: fill, transform;
    transition: 275ms ease-in-out;
}
.twitter:hover,
.twitter:focus {
    fill: #1DA1F2;
    transform: scale(0.9);
    transition-property: fill, transform;
    transition: 275ms ease-in-out;
}

/* Instagram */
.instagram {
    transition-property: fill, transform;
    transition: 275ms ease-in-out;
}
.instagram:hover,
.instagram:focus {
    fill: #E4405F;
    transform: scale(0.9);
    transition-property: fill, transform;
    transition: 275ms ease-in-out;
}

/* facebook */
.facebook {
    transition-property: fill, transform;
    transition: 275ms ease-in-out;
}
.facebook:hover,
.facebook:focus {
    fill: #1877F2;
    transform: scale(0.9);
    transition-property: fill, transform;
    transition: 275ms ease-in-out;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
========================================================================== */

/**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in iOS.
*/

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    overflow-x: hidden;
    line-height: 1.15; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
========================================================================== */

/**
* Remove the margin in all browsers.
*/

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/**
* Render the `main` element consistently in IE.
*/

main {
    margin-top: calc(var(--nav-height) - 1px);
    display: block;
}

/* Grouping content
========================================================================== */

/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/

hr {
    box-sizing: content-box; /* 1 */
    height: 0; /* 1 */
    overflow: visible; /* 2 */
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/

pre {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
}

/* Text-level semantics
========================================================================== */

/**
* Remove the gray background on active links in IE 10.
*/

a {
    text-decoration: none;
    background-color: transparent;
}

/**
* 1. Remove the bottom border in Chrome 57-
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/

abbr[title] {
    border-bottom: none; /* 1 */
    text-decoration: underline; /* 2 */
    text-decoration: underline dotted; /* 2 */
}

/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/

b,
strong {
    font-weight: bolder;
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
}

/**
* Add the correct font size in all browsers.
*/

small {
    font-size: 80%;
}

/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Embedded content
========================================================================== */

/**
* Remove the border on images inside links in IE 10.
*/

img,
svg {
    width: 100%;
    border-style: none;
}

/* Forms
========================================================================== */

/**
* 1. Change the font styles in all browsers.
* 2. Remove the margin in Firefox and Safari.
*/

button,
input,
optgroup,
select,
textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 1 */
    line-height: 1.15; /* 1 */
    margin: 0; /* 2 */
}

/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/

button,
input { /* 1 */
    overflow: visible;
}

/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/

button,
select { /* 1 */
    text-transform: none;
}

/**
* Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

/**
* Remove the inner border and padding in Firefox.
*/

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

/**
* Restore the focus styles unset by the previous rule.
*/

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

/**
* Correct the padding in Firefox.
*/

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
*    `fieldset` elements in all browsers.
*/

legend {
    box-sizing: border-box; /* 1 */
    color: inherit; /* 2 */
    display: table; /* 1 */
    max-width: 100%; /* 1 */
    padding: 0; /* 3 */
    white-space: normal; /* 1 */
}

/**
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/

progress {
    vertical-align: baseline;
}

/**
* Remove the default vertical scrollbar in IE 10+.
*/

textarea {
    overflow: auto;
}

/**
* 1. Add the correct box sizing in IE 10.
* 2. Remove the padding in IE 10.
*/

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}

/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/

[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    outline-offset: -2px; /* 2 */
}

/**
* Remove the inner padding in Chrome and Safari on macOS.
*/

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
    -webkit-appearance: button; /* 1 */
    font: inherit; /* 2 */
}

/* Interactive
========================================================================== */

/*
* Add the correct display in Edge, IE 10+, and Firefox.
*/

details {
    display: block;
}

/*
* Add the correct display in all browsers.
*/

summary {
    display: list-item;
}

/* Misc
========================================================================== */

/**
* Add the correct display in IE 10+.
*/

template {
    display: none;
}

/**
* Add the correct display in IE 10.
*/

[hidden] {
    display: none;
}

:root {

    --black: rgba(25, 25, 25, 0.975);

    --nav-height: 62px;
    --nav-width: 275px;
    --site-width: 1500px;
    --site-gutter: 1em;
    --site-section-padding: 5em;
}
@font-face {
	font-family: 'Old-Standard-TT';
	src: url('/OldStandardTT-Regular.68f766b1.ttf') format('woff2 supports variations');
	font-weight: regular;
	font-stretch: 25% 151%;
}

@supports (font-size-adjust: 1) {
    body {
        font-size-adjust: 0.5;
    }
}
p {
    color: rgba(119,119,119,1);
    margin: calc(1ex / 0.32) 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--black);
}
h1 {
    font-family: 'Old-Standard-TT';
    font-size: 2.5rem;
    line-height: calc(1ex / 0.42);
    margin: calc(1ex / 0.42) 0;
}
h2 {
    font-family: 'Old-Standard-TT';
    font-size: 2rem;
    line-height: calc(1ex / 0.42);
    margin: calc(1ex / 0.42) 0;
}
h3 {
    font-family: 'Old-Standard-TT';
    font-size: 1.75rem;
    line-height: calc(1ex / 0.38);
    margin: calc(1ex / 0.38) 0;
}
h4 {
    font-family: 'Old-Standard-TT';
    font-size: 1.5rem;
    line-height: calc(1ex / 0.37);
    margin: calc(1ex / 0.37) 0;
}
/* Dynamic & Smart Colours */
html {
    --red: 255;
    --green: 255;
    --blue: 255;
    --aa-brightness: ((var(--red) * 299) + (var(--green) * 587) + (var(--blue) * 114)) / 1000;
    --aa-color: calc((var(--aa-brightness) - 128) * -1000);
    background: rgb(var(--red), var(--green), var(--blue));
    color: rgb(var(--aa-color), var(--aa-color), var(--aa-color));
}
a {
    color: #006fc6;
}

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

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

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

section {
    background: ivory;
    display: flex;
    flex-direction: column;
    padding: 100px 0;
}

#reviews {
    padding: 3em 0;
    min-height: 500px;
    color: white;
    background: #C33764;
    background: -webkit-linear-gradient(rgba(22, 22, 22, 0.5), rgba(22, 22, 22, 0.5)), url("/garden--small.001c271f.webp");
    background: linear-gradient(rgba(22, 22, 22, 0.5), rgba(22, 22, 22, 0.5)), url("/garden--small.001c271f.webp");
    background-color: rgba;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

#reviews h4 {
    color: white;
}

#reviews p {
    color: rgb(201, 201, 201);
}

/* Will be changed */
#map {
    padding: 0;
}
#mapCanvas {
    min-height: calc(100vh - var(--nav-height));
}


@media (min-width: 767px) {
    #reviews {
        background-attachment: fixed;
        background: -webkit-linear-gradient(rgba(22, 22, 22, 0.5), rgba(22, 22, 22, 0.5)), url("/garden.52e6c837.webp");
        background: linear-gradient(rgba(22, 22, 22, 0.5), rgba(22, 22, 22, 0.5)), url("/garden.52e6c837.webp");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }
    #mapCanvas {
        min-height: 600px;
    }
}
.site--width {
    position: relative;
    width: 100%;
    max-width: 1350px;
    height: 100%;
    margin: 0 auto;
}
.col {
    padding: 1em;
    /* grid-column: span 12; */
}

/* .col--nav__links.dark-mode {
    color: white;
    background: var(--darkest);
} */

.col--lightest {
    background: var(--lightest);
}

.col--light {
    background: var(--light);
}

.col--lightest.dark-mode {
    color: white;
    background: var(--darkest);
}

.col--light.dark-mode {
    color: white;
    background: var(--dark);
}

@media (max-width: 767px) {
    .sm--1 {
        grid-column: span 1;
    }
    .sm--2 {
        grid-column: span 2;
        
    }
    .sm--3 {
        grid-column: span 3;
    }
    .sm--4 {
        grid-column: span 4;
        
    }
    .sm--5 {
        grid-column: span 5;
        
    }
    .sm--6 {
        grid-column: span 6;
        
    }
    .sm--7 {
        grid-column: span 7;
        
    }
    .sm--8 {
        grid-column: span 8;
        
    }
    .sm--9 {
        grid-column: span 9;
        
    }
    .sm--10 {
        grid-column: span 10;
        
    }
    .sm--11 {
        grid-column: span 11;
        
    }
    .sm--12 {
        grid-column: span 12;

    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .md--1 {
        grid-column: span 1;
    }
    .md--2 {
        grid-column: span 2;
        
    }
    .md--3 {
        grid-column: span 3;
    }
    .md--4 {
        grid-column: span 4;
        
    }
    .md--5 {
        grid-column: span 5;
        
    }
    .md--6 {
        grid-column: span 6;
        
    }
    .md--7 {
        grid-column: span 7;
        
    }
    .md--8 {
        grid-column: span 8;
        
    }
    .md--9 {
        grid-column: span 9;
        
    }
    .md--10 {
        grid-column: span 10;
        
    }
    .md--11 {
        grid-column: span 11;
        
    }
    .md--12 {
        grid-column: span 12;

    }
}

@media (min-width:1200px) {
    .lg--1 {
        grid-column: span 1;
    }
    .lg--2 {
        grid-column: span 2;
        
    }
    .lg--3 {
        grid-column: span 3;
    }
    .lg--4 {
        grid-column: span 4;
        
    }
    .lg--5 {
        grid-column: span 5;
        
    }
    .lg--6 {
        grid-column: span 6;
        
    }
    .lg--7 {
        grid-column: span 7;
        
    }
    .lg--8 {
        grid-column: span 8;
        
    }
    .lg--9 {
        grid-column: span 9;
        
    }
    .lg--10 {
        grid-column: span 10;
        
    }
    .lg--11 {
        grid-column: span 11;
        
    }
    .lg--12 {
        grid-column: span 12;

    }
}
.row {
    display: grid;
    gap: 0.5em;
    grid-template-columns: repeat(12, minmax(5px, 1fr));
}

.row--light {
    background: var(--light);
}

.row--lightest {
    background: white;
}

.flex {
    display: flex;
}

.flex--row {
    flex-direction: row;
}
.align--start {
    align-items: flex-start;
    align-content: flex-start;
}

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

.align--end {
    align-items: flex-end;
    align-content: flex-end;
}

.align--between {
    align-content: space-between;
}

.justify--start {
    justify-items: flex-start;
    justify-content: start;
}

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

.justify--end {
    justify-items: end;
    justify-content: flex-end;
}

.justify--between {
    justify-content: space-between;
}
/* Components */

/* Global */

/* Layout */

/*# sourceMappingURL=/main.c52e0fe2.css.map */