/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
Variables
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
:root {
    /* stylelint-disable-next-line color-hex-length */
    --color-black: #121215;
    --color-greyLightest: #efefef;
    --color-greyLight: #c0c0c2;
    --color-grey: #58585c;
    --color-greyDark: #38383c;
    --color-orange: #f7931f;
    --color-orangeLight: #ffbe74;
    --color-green: #16b059;
    --color-greenLight: #5dcc8d;
    --color-greenLightest: #bcf3d4;
    --color-white: #fff;
    --font-main: 'Merriweather Sans', Helvetica, Verdana, Arial, sans-serif;
    --font-logo: 'Fjalla One', Helvetica, Verdana, Arial, sans-serif;
    --scrollbar-size: 0.375rem;
    --scrollbar-minlength: 1.5rem;

    /* Minimum length of scrollbar thumb (width of horizontal, height of vertical) */
    --scrollbar-ff-width: thin;

    /* FF-only accepts auto, thin, none */
    --scrollbar-track-color: rgba(0, 0, 0, 0.1);
    --scrollbar-color: rgba(0, 0, 0, 0.3);
    --scrollbar-color-hover: rgba(0, 0, 0, 0.4);
    --scrollbar-color-active: rgb(0, 0, 0);
}

/* Use .layout-scrollbar-obtrusive to only use overflow if scrollbars don’t overlay */
.scrollbar-test,
.layout-cell {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    scrollbar-width: var(--scrollbar-ff-width);
}

/* This class controls what elements have the new fancy scrollbar CSS */
.layout-scrollbar {
    scrollbar-color: var(--scrollbar-color) var(--scrollbar-track-color);
}

/* Only apply height/width to ::-webkit-scrollbar if is obtrusive */
.layout-scrollbar-obtrusive,
.layout-scrollbar-obtrusive::-webkit-scrollbar {
    width: var(--scrollbar-size);
    height: var(--scrollbar-size);
}

.layout-scrollbar-obtrusive::-webkit-scrollbar-track {
    background-color: var(--scrollbar-track-color);
}

.layout-scrollbar-obtrusive::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: var(--scrollbar-color);
}

.layout-scrollbar-obtrusive::-webkit-scrollbar-thumb:hover {
    background-color: var(--scrollbar-color-hover);
}

.layout-scrollbar-obtrusive::-webkit-scrollbar-thumb:active {
    background-color: var(--scrollbar-color-active);
}

.scrollbar-test::-webkit-scrollbar-thumb:vertical,
.layout-scrollbar-obtrusive::-webkit-scrollbar-thumb:vertical {
    min-height: var(--scrollbar-minlength);
}

.scrollbar-test::-webkit-scrollbar-thumb:horizontal,
.layout-scrollbar-obtrusive::-webkit-scrollbar-thumb:horizontal {
    min-width: var(--scrollbar-minlength);
}

@font-face {
    font-weight: normal;
    font-style: normal;
    font-family: 'icomoon';
    src: url('/_fonts/icomoon.eot?xw6rzl');
    src:
        url('/_fonts/icomoon.eot?xw6rzl#iefix') format('embedded-opentype'),
        url('/_fonts/icomoon.woff?xw6rzl') format('woff'),
        url('/_fonts/icomoon.svg?xw6rzl#icomoon') format('svg');
    font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    font-family: 'icomoon' !important;
    line-height: 1;
    text-transform: none;
    speak: never;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-icon-mowing::before {
    content: "\e903";
}

.icon-icon-irrigation::before {
    content: "\e904";
}

.icon-icon-maintenance::before {
    content: "\e905";
}

.icon-icon-snow::before {
    content: "\e906";
}

.icon-left-quote-alt::before {
    content: "\e900";
}

.icon-right-quote-alt::before {
    content: "\e901";
}

.icon-home::before {
    content: "\e902";
}

.icon-envelope-o::before {
    content: "\f003";
}

.icon-star::before {
    content: "\f005";
}

.icon-star-o::before {
    content: "\f006";
}

.icon-cog::before {
    content: "\f013";
}

.icon-gear::before {
    content: "\f013";
}

.icon-home1::before {
    content: "\f015";
}

.icon-cogs::before {
    content: "\f085";
}

.icon-gears::before {
    content: "\f085";
}

.icon-comments::before {
    content: "\f086";
}

.icon-facebook::before {
    content: "\f09a";
}

.icon-facebook-f::before {
    content: "\f09a";
}

.icon-youtube-play::before {
    content: "\f16a";
}

.icon-instagram::before {
    content: "\f16d";
}

.icon-google::before {
    content: "\f1a0";
}

.icon-handshake-o::before {
    content: "\f2b5";
}

.icon-envelope-open::before {
    content: "\f2b6";
}

.icon-envelope-open-o::before {
    content: "\f2b7";
}

.icon-phone::before {
    content: "\e924";
}

.icon-menu11::before {
    content: "\e918";
}

.icon-menu::before {
    content: "\e918";
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
General
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-weight: 300;
    font-size: 18px;
    font-family: var(--font-main);
    line-height: 135%;
}

body {
    position: relative;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    background-color: var(--color-white);
    color: var(--color-black);
    font-weight: 300;
    font-size: 18px;
    font-family: var(--font-main);
    text-align: center;
    cursor: auto;
}

blockquote {
    text-align: justify;
}

ul,
ol {
    margin: 3vh 0;
    text-shadow: none;
}

li {
    margin-top: 1.5vh;
    line-height: 115%;
    text-align: left;
}

img {
    border-style: none;
    text-align: center;
}

a:active,
a:link,
a:visited {
    color: #2559a6;
    text-decoration: underline;
}

button {
    border-radius: 10px;
}

button,
.social:hover,
a:hover,
.circle:hover {
    cursor: pointer !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 900;
    font-family: var(--font-logo);
    letter-spacing: -0.5px;
}

h3 {
    text-align: left;
}

p {
    font-weight: 300;
    font-size: calc(16px + (22 - 14) * ((100vw - 300px) / (1900 - 300)));
    text-shadow: none;
}

h1 {
    font-size: calc(32px + (42 - 32) * ((100vw - 300px) / (1900 - 300)));
    line-height: calc(1.2em + (1.5 - 1.2) * ((100vw - 300px)/(1900 - 300)));
}

h2 {
    font-size: calc(30px + (40 - 30) * ((100vw - 300px) / (1900 - 300)));
    line-height: calc(1.3em + (1.5 - 1.2) * ((100vw - 300px)/(1900 - 300)));
    text-align: left;
}

h3 {
    font-size: calc(26px + (8) * ((100vw - 300px) / (2000)));
    line-height: calc(1.3em + (1.5 - 1.2) * ((100vw - 300px)/(1900 - 300)));
    text-align: left;
}

h4 {
    margin: 0;
    padding: 0;
    font-size: calc(25px + (33 - 25) * ((100vw - 300px) / (1900 - 300)));
    line-height: calc(1.3em + (1.5 - 1.2) * ((100vw - 300px)/(1900 - 300)));
}

h5 {
    margin: 0;
    padding: 0;
    font-size: calc(22px + (35 - 22) * ((100vw - 300px) / (1900 - 300)));
    line-height: calc(1.3em + (1.5 - 1.2) * ((100vw - 300px)/(1900 - 300)));
}

li {
    font-size: calc(15px + (20 - 12) * ((100vw - 300px) / (1900 - 300)));
    line-height: calc(1.5em + (1.5 - 1.2) * ((100vw - 300px)/(1900 - 300)));
}

#wrapper {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
    width: 100vw;
    -webkit-box-align: center;
    -ms-flex-align: center;

    @supports not (display: grid) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
    }
}

@media (min-width: 0) and (max-width: 767px) {
    .mobileHide {
        display: none !important;
    }

    #wrapper {
        display: grid;
        grid-template-rows: auto;
        grid-template-columns: repeat(1, 1fr);
        align-items: center;
        width: 100vw;
        -webkit-box-align: center;
        -ms-flex-align: center;

        @supports not (display: grid) {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            align-items: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
        }
    }
}

@media (min-width: 768px) {
    .mainHide {
        display: none !important;
    }
}

#upHigh {
    visibility: hidden;
}

[data-xcloak] {
    display: none !important;
}

#upHigh {
    visibility: hidden;
}

button.modal-close,
button.pleaseLoveMe,
a.pleaseLoveMe {
    position: relative;
    display: inline-block;
    overflow: hidden;
    margin: 3vh 0 0 0;
    padding: 0.5em 3em;
    border: 3px solid var(--color-orangeLight);
    border-radius: 10px;
    background: none;
    background: var(--color-orange);
    color: var(--color-white);
    outline: none;
    font-weight: 700;
    font-size: 1.4em;
    font-family: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

a.pleaseLoveMe.smaller{
    font-size: .9em;
    padding: .35em 2em;
    position: absolute;
    bottom: 10px;
    left: 5px;
}

button.pleaseLoveMe.moreBut,
a.pleaseLoveMe.moreBut {
    margin-top: 0;
    padding: 0 2em;
}

.pleaseLoveMe.foot {
    margin: 15px 10px;
    padding: 1.1em 2.8em;
}

button.modal-close:hover,
.pleaseLoveMe:hover,
.btn-1:active {
    border: 3px solid var(--color-orange);
    background: var(--color-white);
    color: var(--color-orange);
}

.pleaseLoveMe:hover::after {
    height: 260%;
    opacity: 1;
}

.pleaseLoveMe:active::after {
    height: 400%;
    opacity: 1;
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
Animations
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

/* Grow */
.hvr-grow {
    display: inline-block;
    vertical-align: middle;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    transition-duration: 0.5s;
    transition-property: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
}

.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
    transform: scale(1.05);
}

.fade-from-left {
    opacity: 0;
    transition: all 1s;
    transform: translateX(-50%);
}

.is-visible {
    opacity: 1;
    transform: translateX(0);
}
