/*

Oasis: #33aa44;
Off White: #F5EBE2;
*/


/* ====== Begin Boilerplate CSS ====== */

html {
    margin: 0;
    padding: 0;
    height: 100%;
    box-sizing: border-box;
    background-color: #F5EBE2; /* Color you see during overscroll */
    font-size: 62.5%; /* makes rem = px size */
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Lusitana', serif;
    min-height: 100%;
    /*height: 100%;*/
    color: #000;
    /*-webkit-font-smoothing: antialiased;*/
    /*-moz-osx-font-smoothing: grayscale;*/
}

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


h1,h2,h3,h4,h5,h6 {
    line-height: 1.25;
}
p, li, span {
    line-height: 1.5;
}

p {
    margin: 8px 0 16px;
}

a { outline: 0; text-decoration: none; }

a:link { text-decoration: none; color: #000; }
a:visited { text-decoration: none; color: #000; }
a:focus { outline: 1px dotted #444; }
a:hover { text-decoration: none; color: #000; }
a:active { text-decoration: none; color: #000; }

* { -webkit-tap-highlight-color: transparent; }
body.mobile * { cursor: auto !important; }

ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

h1,h2,h3,h4,h5,h6,
h1 > *, h2 > *, h3 > *, h4 > *, h5 > *, h6 > * {
    font-weight: normal;
    font-family: 'Sorts Mill Goudy', serif;
    margin: 0;
}

h1 {
    font-size: 4.2rem;
}

h2 {
    font-size: 3.2rem;
    margin-bottom: 16px;
}

h3 {
    font-size: 2.4rem;
}

html > * { font-size: 1.6rem; }

.serif { font-family: serif; }
.sans-serif { font-family: sans-serif; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.vh {
    height: 100vh;
}

/*.abs-fill-wrapper {*/
/*position: relative;*/
/*display: block;*/
/*height: 100%;*/
/*}*/

/*@media all and (min-width: 414px) {*/

.abs-fill-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
}

/*}*/

.table-table {
    position: relative;
    display: table;
    height: 100%;
    width: 100%;
}

.table-cell {
    position: relative;
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle;
}

.aspect-wrapper {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}

.aspect-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.aspect-21-9 {
    position: relative;
    display: block;
    padding-top: 42.857%;
}

.aspect-16-9 {
    position: relative;
    display: block;
    padding-top: 56.25%;
}

.aspect-3-2 {
    position: relative;
    display: block;
    padding-top: 66.666%;
}

.aspect-4-3 {
    position: relative;
    display: block;
    padding-top: 75%;
}

.aspect-6-5 {
    position: relative;
    display: block;
    padding-top: 83.333%;
}

.aspect-1-1 {
    position: relative;
    display: block;
    padding-top: 100%;
}

.stay-down-wrapper {
    position: relative;
    min-height: 100%;
}

.stay-down-content {
    /* padding-bottom: [height of footer]; */
}

.stay-down-footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    /* height: [height of footer]; */
}

.page-curtain {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: opacity 2.5s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: opacity 1s ease-in-out;
}

body.loaded .page-curtain {
    pointer-events: none;
    opacity: 0;
}

.vh-landing {
    width: 100%;
    height: 100%;
    height: 100vh;
}

.vh-landing video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 101%;
    min-height: 101%;
    width: auto;
    height: auto;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    overflow: hidden;
}

@media (min-aspect-ratio: 16/9) {
    .vh-landing video {
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9) {
    .vh-landing video {
        width: auto;
        height: 100%;
    }
}



/* Animated Menu Hamburger */

.menu-toggle {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 33px;
    height: 33px;
    cursor: pointer;
}

.menu-toggle * {
    transition: width .25s ease-in-out, height .25s ease-in-out;
    box-sizing: border-box;
}

.menu-toggle span {
    display: block;
    background-color: #000;
}

.menu-toggle .menu-hamburger {
    position: absolute;
    height: 100%;
    width: 100%;
}

.menu-toggle .menu-hamburger span {
    width: 33px;
    height: 1px;
    position: relative;
}

.menu-toggle .menu-hamburger span:nth-child(1) {
    transition-delay: 0.5s;
    margin: 5px 0 9px;
}

.menu-toggle .menu-hamburger span:nth-child(2) {
    transition-delay: 0.625s;
    margin: 0;
}

.menu-toggle .menu-hamburger span:nth-child(3) {
    transition-delay: 0.75s;
    margin: 9px 0 5px;
}

.menu-toggle .menu-cross {
    position: absolute;
    height: 100%;
    width: 100%;
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu-toggle .menu-cross span:nth-child(1) {
    height: 0%;
    width: 1px;
    position: absolute;
    top: 0;
    left: 16px;
    transition-delay: 0s;
}

.menu-toggle .menu-cross span:nth-child(2) {
    width: 0%;
    height: 1px;
    position: absolute;
    left: 0;
    top: 16px;
    transition-delay: 0.25s;
}

.menu-toggle.open .menu-hamburger span {
    width: 0%;
}

.menu-toggle.open .menu-hamburger span:nth-child(1) {
    transition-delay: 0s;
}

.menu-toggle.open .menu-hamburger span:nth-child(2) {
    transition-delay: 0.125s;
}

.menu-toggle.open .menu-hamburger span:nth-child(3) {
    transition-delay: 0.25s;
}

.menu-toggle.open .menu-cross span:nth-child(1) {
    height: 100%;
    /* transition-delay: 0.625s; */
    transition-delay: 0.75s;
}

.menu-toggle.open .menu-cross span:nth-child(2) {
    width: 100%;
    /* transition-delay: 0.375s; */
    transition-delay: 0.5s;
}



/* ====== Contact Form ====== */

form {
    color: #000;
}

.contact-section-wrapper {
    position: relative;
    display: block;
    width: 100%;
    padding: 32px 0;
}

.contact-section-wrapper p {
    margin-bottom: 24px;
}

.form-contact {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
    text-align: left;
}

.form-contact .input-wrap {
    display: block;
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.form-contact label {
    cursor: text;
    pointer-events: none;
}

.form-contact input,
.form-contact textarea {
    position: relative;
    display: block;
    width: 100%;

    color: #000;
    background-color: transparent;

    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    outline: none;
}

/* initial label state */
.form-contact label {
    position: absolute;
    top: 17px;
    left: 5px;
    font-family: 'ABeeZee';
    text-transform: uppercase;
    font-size: 1.4rem;
    letter-spacing: 3px;

    transition: transform .25s ease, color .25s ease;
    transform: translate3d(0,0,0);
}

.form-contact input,
.form-contact textarea,
.form-contact .grow-wrap::after {
    border-radius: 0;
    padding: 23px 5px 8px 5px;
/*    font-family: "Share Tech Mono", monospace;*/
/*    font-size: 1.8rem;*/
    font-family: 'Lusitana', serif;
    font-size: 2.1rem;

    position: relative;
    display: block;
    width: 100%;
}

.form-contact input {
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
    border-bottom: 1px solid #000;
    line-height: 20px;
}

.form-contact textarea {
}

.form-contact textarea,
.form-contact .grow-wrap::after {
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
    border-bottom: 1px solid #000;
    /*min-height: 162px;*/
    width: 100%;
    /*min-width: 100%;*/
    /*max-width: 100%;*/
    line-height: 24px;
    grid-area: 1 / 1 / 2 / 2;
}

/* Focus & populated label styling */
.form-contact .input-wrap.focused label,
.form-contact .input-wrap.populated label {
    transform: translate(0,-8px);
    font-size: 1.0rem;
    color: #777;
}

.form-contact .input-wrap.focused label {
    color: #33aa44;
}

.form-contact .input-wrap.focused input,
.form-contact .input-wrap.focused textarea {
    background-color: rgba(255,255,255,0.5);
}


.form-contact .grow-wrap {
    /* easy way to plop the elements on top of each other and have them both sized based on the tallest one's height */
    display: grid;
}

.form-contact .grow-wrap::after {
    /* Note the weird space! Needed to preventy jumpy behavior */
    content: attr(data-replicated-value) " ";
    /* This is how textarea text behaves */
    white-space: pre-wrap;
    /* Hidden from view, clicks, and screen readers */
    visibility: hidden;
    /*pointer-events: none;*/
    /*color: #f00;*/
}

.form-contact .grow-wrap > textarea {
    /* You could leave this, but after a user resizes, then it ruins the auto sizing */
    resize: none;
    /* Firefox shows scrollbar on growth, you can hide like this. */
    overflow: hidden;
}



.form-contact .btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/* ====== Slick Slider overrides ====== */

.slider-wrapper {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slick-list,
.slick-track,
.slick-slide,
.slick-slide > div,
.slick-slide > div > div,
.slick-slide > div > div > img {
    height: 100%;
}

.slick-slide > div,
.slick-slide > div > div > img {
    width: 100%;
}

/* For when setting the gallery to a specific aspect-ratio */
.aspect-content .slider {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* For when swapping lazy-loaded img src as background-image */
.slick-list .slide img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;

}



/* ====== Waypoint Animations ====== */

.fade-in {
    opacity: 0;
    transition-property: opacity;
    transition-duration: 1s;
    transition-timing-function: ease-in-out;
}
.fade-in.activate,
.activate .fade-in {
    opacity: 1;
}

.fade-in-up {
    opacity: 0;
    will-change: transform;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    transition-property: opacity, transform;
    transition-duration: 1s, 1s;
    transition-timing-function: ease-in-out, ease;
}
.fade-in-up.activate,
.activate .fade-in-up {
    opacity: 1;
    will-change: transform;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}



/* ====== Begin Custom CSS ====== */

.btn {
    position: relative;
    display: inline-block;
    width: auto;
    border: 1px solid #33aa44;
    background-color: #33aa44;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-family: 'ABeeZee';

    cursor: pointer;

    transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out, border-color 0.25s ease-in-out;
}

.btn-sm {
    padding: 0 21px;
    line-height: 24px;
    font-size: 1.3rem;
    letter-spacing: 1.5px;
}

.btn-med {
    padding: 0 32px;
    line-height: 36px;
    font-size: 1.4rem;
    letter-spacing: 3px;
}

.btn:hover,
.btn:active {
    color: #33aa44;
    background-color: rgba(255,255,255,0.5);
}

form .btn {
    margin-top: 24px;
}

.sflx-module-row {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
}

.sflx-hero,
.sflx-hero * {
    color: #F5EBE2;
}

.sflx-mw-960 {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 960px;
}

.sflx-mw-1200 {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 960px;
}

.sflx-section-pad {
    padding: 48px 16px;
    margin: 0 auto;
}

.sflx-col-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

.sflx-col-1-3 {
    position: relative;
    display: block;
    max-width: 360px;
    margin: 0 auto 48px;
}

.sflx-col-1-2 {
    position: relative;
    display: block;
    max-width: 360px;
    margin: 0 auto 48px;
}

.sflx-col-2-3 {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: calc(66.666% + 18px);
    padding: 0 16px;
}
.sflx-col-2-3:first-child {
    margin-left: -18px;
}
.sflx-col-2-3:last-child {
    margin-right: -18px;
}

.abs-fill {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
}

.abs-fill-rb {
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
}

.abs-fill-block {
    position: absolute;
    width: 100%;
    right: 0;
    left: 0;
    bottom: 50%;
    transform: translateY(50%);
    height: auto;
}

.landing-logo {
    position: relative;
    display: block;
    width: calc(100% - 96px);
    max-width: 420px;
    margin: 0 auto 24px;
}

.sflx-hero h1 {
    font-size: 2.4rem;
}

.nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 64px;
    background-color: rgba(255,255,255,0.95);
    overflow: hidden;
    transition: height 0.5s ease-in-out;
}

body.nav-open .nav {
    height: 100vh;
}

body.nav-closed .nav {
    transition-delay: 0.5s;
}

body.nav-open {
    overflow: hidden;
}

.nav-inner {
    position: relative;;
    display: block;
    width: 100%;
    height: 100%;
    padding: 16px;
}

.nav-logo {
    position: relative;
    display: inline-block;
    height: 32px;
    width: 0;
    margin: 0 auto 0 0;
}

.nav-logo img {
    position: relative;
    display: block;
    height: 100%;
    width: auto;
}

.nav-list {
    position: relative;
    display: block;
    width: auto;
    padding-top: 24px;
    right: auto;
    left: 0;
    text-align: left;
}

.nav-list li {
    position: relative;
    display: block;
    cursor: pointer;

    text-transform: uppercase;
    font-family: 'ABeeZee';
    font-size: 1.3rem;
    letter-spacing: 1.5px;
    line-height: 32px;
    margin-bottom: 8px;
}

.nav-list li:hover {
    color: #33aa44;
}

body.nav-closed .nav-list li {
    opacity: 0;
    transition:
        opacity 0.5s ease-in-out,
        transform 0s ease-in-out 0.5s,
        color 0.25s ease-in-out,
        background-color 0.25s ease-in-out,
        border-color 0.25s ease-in-out;
    transform: translateY(16px);
}

body.nav-open .nav-list li {
    opacity: 1;
    transition-property: opacity, transform, color, background-color, border-color;
    transition-duration: 0.5s, 0.25s, 0.25s, 0.25s, 0.25s;
    transition-timing-function: ease-in-out;
    transform: translateY(0);

}
body.nav-open .nav-list li:nth-child(1) { transition-delay: 0.500s,0.500s, 0s, 0s, 0s }
body.nav-open .nav-list li:nth-child(2) { transition-delay: 0.525s,0.525s, 0s, 0s, 0s }
body.nav-open .nav-list li:nth-child(3) { transition-delay: 0.550s,0.550s, 0s, 0s, 0s }
body.nav-open .nav-list li:nth-child(4) { transition-delay: 0.575s,0.575s, 0s, 0s, 0s }
body.nav-open .nav-list li:nth-child(5) { transition-delay: 0.600s,0.600s, 0s, 0s, 0s }
body.nav-open .nav-list li:nth-child(6) { transition-delay: 0.625s,0.625s, 0s, 0s, 0s }
body.nav-open .nav-list li:nth-child(7) { transition-delay: 0.650s,0.650s, 0s, 0s, 0s }
body.nav-open .nav-list li:nth-child(8) { transition-delay: 0.675s,0.675s, 0s, 0s, 0s }
body.nav-open .nav-list li:nth-child(9) { transition-delay: 0.700s,0.700s, 0s, 0s, 0s }

.nav-list li.btn {
    line-height: 36px;
    margin: 24px auto 0 0;
    width: 180px;
}

.nav-btn {
    color: #fff;
    background-color: #33aa44;
}

.nav-btn:hover,
.nav-btn:active {
    color: #33aa44;
    background-color: rgba(255,255,255,0.5);
}

.nav-btn-login span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.nav-btn-login svg {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    height: 14px;
    width: auto;
    margin-left: 4px;
}

.nav-btn-login svg path {
    fill: #fff;
    transition: fill 0.25s ease-in-out;
}

.nav-btn-login:hover svg path {
    fill: #33aa44;
}

footer {
    position: relative;
    display: block;
    padding: 32px 16px 48px;
    background-color: #33aa44;
    color: #fff;
    text-align: center;
}

footer span {
    color: #fff;
}

footer ul {
    position: relative;
    display: block;
    margin-bottom: 32px;
}

footer li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 16px;

    cursor: pointer;
    text-transform: uppercase;
    font-family: 'ABeeZee';

    line-height: 24px;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.footer-logo {
    position: relative;
    display: block;
}

.footer-logo img {
    position: relative;
    display: block;
    height: 24px;
    width: auto;
    margin: 0 auto;
}

.footer-logo span {
    position: relative;
    display: block;
    font-size: 1.0rem;
}

.footer-disclaimer {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    line-height: 24px;
    font-size: 1.2rem;
    padding: 0 32px;
    width: 100%;
    text-align: center;

    text-transform: uppercase;
    font-family: 'ABeeZee';
    font-size: 1rem;
    letter-spacing: 1px;
}

.footer-disclaimer a,
.footer-disclaimer a:link,
.footer-disclaimer a:visited,
.footer-disclaimer a:hover,
.footer-disclaimer a:active {
    color: #fff;
}
.footer-disclaimer a:hover,
.footer-disclaimer a:active {
    text-decoration: underline;
}


/* ====== One-Off Rules ====== */

.home-news {
    background-color: #fff;
}

.home-news-col .aspect-wrapper {
    margin-bottom: 16px;
}

.home-news-col .aspect-content {
    background: no-repeat center / cover
}

.home-news-col p {
    line-height: 1.25;
}

.home-news-col .aspect-content {
    transition: transform 1s ease;
}

.home-news-col p,
.home-news-col h3 {
    transition: color 0.25s ease-in-out;
}

.home-news-col:hover .aspect-content {
    transform: scale(1.1);
}

.home-news-col:hover {
    color: #33aa44;
}

.contact-block {
    background: no-repeat center / cover
}

.contact-block .sflx-col-wrapper {
    margin-top: 36px;
}

.contact-copy {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.contact-address-wrapper {
    text-align: left;
}

.contact-address-bg {
    position: relative;
    display: block;
    padding: 32px;
    background-color: rgba(255,255,255,0.5);
    text-align: center;
}

.contact-address-wrapper span {
    line-height: 1.35;
}

.contact-address-wrapper address {
    position: relative;
    display: inline-block;
    font-style: normal;
}

span.contact-hoa-title {
    position: relative;
    display: inline-block;
    font-size: 2.4rem;
    line-height: 1.25;
    margin-bottom: 12px;
}

.contact-form-title {
    position: relative;
    display: block;
    font-size: 2.8rem;
    line-height: 1.25;
    margin-bottom: 24px;
}

form input[type="submit"] {
    margin-top: 24px;
}

.contact-block .sflx-section-pad {
    padding-top: 96px;
    padding-bottom: 96px;

}

/* ====== Media Queries ====== */

@media all and (orientation: landscape) {

    body.nav-open .nav-inner {
        overflow: auto;
    }

}

@media all and (min-width: 540px) {

    html > * { font-size: 1.7rem; }

    h1 {
        font-size: 4.6rem;
    }

    h2 {
        font-size: 3.6rem;
        margin-bottom: 21px;
    }

    h3 {
        font-size: 2.8rem;
    }

    p, li, span {
        line-height: 1.75;
    }

    .sflx-section-pad {
        padding: 64px;
    }

    footer {
        padding: 48px 32px 64px;
    }

    .nav-inner {
        padding: 16px 32px;
    }

    .menu-toggle {
        right: 32px;
    }
}

@media all and (min-width: 768px) {

    h1 {
        font-size: 5.4rem;
    }

    h2 {
        font-size: 4.0rem;
        margin-bottom: 28px;
    }

    h3 {
        font-size: 3.0rem;
    }

    .sflx-section-pad {
        padding: 96px 32px;
    }

    .sflx-col-1-3 {
        display: inline-block;
        width: calc(33.333% + 12px);
        padding: 0 16px;
        margin-bottom: 0;
    }
    .sflx-col-1-3:first-child {
        margin-left: -18px;
    }
    .sflx-col-1-3:last-child {
        margin-right: -18px;
    }

    .sflx-col-1-2 {
        display: inline-block;
        width: calc(50% + 18px);
        padding: 0 16px;
        margin-bottom: 0;
    }
    .sflx-col-1-2:first-child {
        margin-left: -18px;
    }
    .sflx-col-1-2:last-child {
        margin-right: -18px;
    }

    .contact-address-wrapper,
    .contact-form-wrapper {
        vertical-align: top;
    }

    .home-news-col {
        vertical-align: top;
    }

    .contact-address-bg {
        padding: 36px;
        display: inline-block;
        text-align: left;
        margin-top: 12px;
    }

}

@media (min-width: 960px) {

    h2 {
        font-size: 4.8rem;
        margin-bottom: 32px;
    }

    .sflx-section-pad {
        padding: 128px 32px;
    }

    .nav-list {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        text-align: right;
        padding-top: 0;
        padding-right: 32px;
    }

    body.nav-open .nav {
        height: 64px;
    }

    .menu-toggle {
        opacity: 0;
        pointer-events: none;
    }

    body.nav-open .nav-inner {
        overflow: visible;
    }

    .nav-list li {
        display: inline-block;
        vertical-align: middle;
        line-height: 64px;
        margin-bottom: 0;

        margin-left: 16px;
        font-size: 1.2rem;
        letter-spacing: 1px;

    }
    .nav-list li:first-child {
        margin-left: 0;
    }

    .nav-list li.btn {
        line-height: 36px;
        margin: 0 0 0 24px;
        width: auto;
    }

    body.nav-closed .nav-list li {
        opacity: 1;
        transition:
            opacity 0s,
            transform 0s,
            color 0.25s ease-in-out,
            background-color 0.25s ease-in-out,
            border-color 0.25s ease-in-out;
        transform: translateY(0);
    }

    body.nav-open {
        overflow: visible;
    }

    footer {
        text-align: left;
    }

    footer ul {
        display: inline-block;
        vertical-align: middle;
        margin-bottom: 0;
    }

    .footer-logo {
        position: relative;
        display: inline-block;
        vertical-align: middle;
        float: right;
    }

}

@media all and (min-width: 1080px) {

    .nav-list li {
        font-size: 1.3rem;
        letter-spacing: 1.5px;
    }

    html > * { font-size: 1.8rem; }

}

@media (min-width: 768px) and (min-height: 768px) {

    .btn-med {
        padding-left: 72px;
        padding-right: 72px;
        padding-top: 1px;
        line-height: 48px;
        font-size: 1.6rem;
        letter-spacing: 3.5px;
    }

    form .btn {
        margin-top: 48px;
    }

}