/*************************
==============================
TABLE OF CONTENTS
==============================
01A. General
02B. General Layout
03C. Forms / Buttons
04D. Header
05E. Navigation
    05Ea. Mobile Navigation
    05Eb. Mobile Nav Panels
    05Ec. Main Nav
    05Ed. Drop Downs
06F. Content
07G. Footer
08H. Login Page
09I. Contact Page
10J. Categories / Subpages
*************************/

/*************************01A. General *************************/
body {
    background: #fff;
    color: #202020; /* It's best not to use straight #000 on a white BG, likewise on a dark BG it's good to use an off-white rather than straight #fff */
    font: 1em/1.5 arial, sans-serif; /* 1em will set the font size to the user's preferred size that they set via browser */
}

p {
    margin: 15px 0;
}

    p:first-of-type {
        margin-top: 0;
    }

.image img, .icon svg, .logo svg, .logo img {
    display: block; /* Removes space under an image that can mess up some styles */
}

a {
    color: #202020;
}

    a:hover, a:focus {
        color: #999;
    }

h1, h2, h3, h4, h5, h6 {
    margin: 15px 0 25px;
    line-height: 1.2;
}

    h1:first-of-type, h2:first-of-type, h3:first-of-type, h4:first-of-type, h5:first-of-type, h6:first-of-type {
        margin-top: 0;
    }

h2 {
    font-size: 30px;
}

h3 {
    font-size: 26px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

.section-header {
    border-bottom: 1px solid #ccc;
}

@media only screen and (min-width : 700px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 44px;
    }

    h3 {
        font-size: 40px;
    }

    h4 {
        font-size: 36px;
    }

    h5 {
        font-size: 32px;
    }

    h6 {
        font-size: 26px;
    }
}

/* Skip link for accessibility*/
#skip a {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

    #skip a:focus {
        position: static;
        width: auto;
        height: auto;
    }

/************************* 02B. General Layout *************************/
.full {
    margin: 0 auto;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
    z-index: 2;
}

.inner {
    margin: auto;
    padding: 0 15px;
    max-width: 1070px;
    width: 100%;
}

@media only screen and (min-width : 1100px) {
    .inner {
        padding: 0;
    }
}

.page-inner {
    max-width: 1050px;
    margin: 50px auto 75px;
    /*margin-top: 50px;
    margin-left: auto;
    margin-bottom: 75px;*/
    padding: 0 20px;
}

.white-popup {
    max-width: 350px;
    margin: auto;
}

/************************* 03C. Forms / Buttons *************************/
button:hover.btn, .btn a:hover, a:hover.btn, input[type="submit"]:hover, button[type="submit"]:hover, button:focus.btn, .btn a:focus, a:focus.btn, input[type="submit"]:focus, button[type="submit"]:focus {
    background: none;
}

.btn {
    display: inline-block;
    margin: 0 5px 10px 0;
    font-weight: 700;
    border: 2px solid #202020;
    height: 44px;
    border-radius: 22px;
    -webkit-transition: ease-in-out all 0.3s;
    transition: ease-in-out all 0.3s;
}

    button.btn, .btn a, a.btn, input[type="submit"], button[type="submit"] {
        background: none;
        display: block;
        height: 40px;
        line-height: 22px;
        padding: 10px 20px 10px 55px;
        -webkit-transition: ease-in-out all 0.3s;
        transition: ease-in-out all 0.3s;
        color: #202020;
    }

        button.btn:hover, .btn a:hover, a.btn:hover, input[type="submit"]:hover, button[type="submit"]:hover {
            background: none;
        }

    .btn:before {
        content: '';
        content: '\f061';
        font-family: "FontAwesome";
        width: 44px;
        height: 44px;
        text-align: center;
        line-height: 38px;
        border-radius: 24px;
        border: 2px solid #202020;
        position: absolute;
        top: -2px;
        left: -2px;
        color: #202020;
        -webkit-transition: left 0.3s;
        transition: left 0.3s;
    }

    .btn:hover {
        border: 2px solid #999;
        background: none;
    }

        .btn:hover:before {
            left: calc(100% - 42px);
            background: #999;
            border: 2px solid #999;
        }

        .btn:hover a {
            padding: 10px 55px 10px 20px;
            color: #202020;
        }

    .btn.light {
        border: 2px solid #fff;
    }

        button.btn.light, .btn.light a, a.btn.light, input[type="submit"].light, button[type="submit"].light {
            color: #fff;
        }

        .btn.light:before {
            color: #fff;
            border: 2px solid #fff;
        }

        .btn.light:hover, .btn.light:hover:before {
            border: 2px solid #202020;
        }

            .btn.light:hover:before {
                background: #202020;
            }

            .btn.light:hover a {
                color: #202020;
            }

    .btn.blue:hover, .btn.blue:hover:before {
        border: 2px solid #72C2E0;
    }

        .btn.blue:hover:before {
            background: #72C2E0;
        }

    .btn.green:hover, .btn.green:hover:before {
        border: 2px solid #90e280;
    }

        .btn.green:hover:before {
            background: #90e280;
        }

@media only screen and (min-width: 1000px) {
    .btn {
        margin: 0 0 10px 10px;
    }
}

.btn-small {
    background: #333;
    text-decoration: none;
    color: #fff;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 10px;
    font-weight: 700;
}

    .btn-small:hover {
        background: #999;
    }

.btn-small.blue {
    background: #077ccc;
}
    
    .btn-small.blue:hover {
        background: #72C2E0;
        color: #fff;
    }

    .btn-small.green {
        background: #278119;
    }

        .btn-small.green:hover {
            background: #90e280;
            color: #fff;
        }

/************************* 04D. Header *************************/
header.main {
    padding: 65px 15px 15px;
    text-align: center;
}

.logo {
    max-width: 250px;
    margin: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

header.main .btn-group {
    margin-top: 15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

header.main .right {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media only screen and (min-width: 1000px) {
    header.main {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 99;
        padding: 15px 50px;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        background: rgba(255,255,255,0.75);
    }

        header.main.stick-it {
            padding: 15px 0;
        }

    header.main.stick-it .logo {
        width: 175px;
        vertical-align: top;
    }

    header.main.stick-it .right {
        vertical-align: top;
    }

        header.main.stick-it .btn-group {
            margin-top: 0;
        }

        header.main.stick-it .btn-group .btn {
            margin: 0 0 0 10px;
        }

    .logo-mobile {
        display: none;
    }

    .logo {
        width: 250px;
        display: inline-block;
        margin-right: -5px;
        vertical-align: middle;
    }

    .right {
        width: calc(100% - 250px);
        display: inline-block;
        vertical-align: middle;
        text-align: right;
    }

    header.main .btn {
        border: 2px solid #202020;
    }

        header.main .btn:hover {
            border: 2px solid #72C2E0;
        }

    header.main .btn:before {
        border: 2px solid #202020;
        color: #202020;
    }

        header.main .btn:hover:before {
            border: 2px solid #72C2E0;
            background: #72C2E0;
            color: #fff;
        }

    header.main .btn a {
        color: #202020;
    }
}

/************************* 05E. Navigation *************************/
.main-nav, /* Hide desktop menu to start */
#main-nav ul p, .main-nav ul br { /* Clients accidentally insert p or br tags when editing the menus so this hides them */
    display: none;
}

/* 05Ea. Mobile Navigation */
.toggle-menu {
    background: #333;
    color: #fafafa;
    font-size: 16px;
    left: 0;
    position: fixed;
    text-decoration: none;
    text-transform: uppercase;
    top: 0;
    width: 100%;
    z-index: 10;
}

    .toggle-menu .icon, .toggle-menu .menu-text {
        display: inline-block;
        vertical-align: middle;
    }

    .toggle-menu p {
        margin: 0;
    }

    .toggle-menu a {
        color: #fafafa;
        display: block;
        padding: 10px 15px;
        text-decoration: none;
    }

    /* Hamburger menu icon */
    .toggle-menu .icon, .toggle-menu .icon:after, .toggle-menu .icon:before {
        background: #fafafa;
        -webkit-transition: all 0s .3s;
        transition: all 0s .3s;
        width: 18px;
        height: 2px;
    }

        .toggle-menu .icon:after, .toggle-menu .icon:before {
            background: #fafafa;
            content: "";
            position: absolute;
            left: 0;
        }

        .toggle-menu .icon:before {
            bottom: 5px;
            -webkit-transition: bottom .3s .3s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform .3s cubic-bezier(0.23, 1, 0.32, 1);
            transition: bottom .3s .3s cubic-bezier(0.23, 1, 0.32, 1), transform .3s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .toggle-menu .icon:after {
            top: 5px;
            -webkit-transition: top .3s .3s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform .3s cubic-bezier(0.23, 1, 0.32, 1);
            transition: top .3s .3s cubic-bezier(0.23, 1, 0.32, 1), transform .3s cubic-bezier(0.23, 1, 0.32, 1);
        }

    /* When clicked, hamburger icon animates into an X */
    .toggle-menu .is-clicked .icon {
        background: rgba(255, 255, 255, 0);
    }

        .toggle-menu .is-clicked .icon:after {
            background: #8cc9eb;
            top: 0;
            -ms-transform: rotate(45deg);
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            -webkit-transition: top .3s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform .3s .3s cubic-bezier(0.23, 1, 0.32, 1);
            transition: top .3s cubic-bezier(0.23, 1, 0.32, 1), transform .3s .3s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .toggle-menu .is-clicked .icon:before {
            background: #8cc9eb;
            bottom: 0;
            -ms-transform: rotate(-45deg);
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
            -webkit-transition: bottom .3s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform .3s .3s cubic-bezier(0.23, 1, 0.32, 1);
            transition: bottom .3s cubic-bezier(0.23, 1, 0.32, 1), transform .3s .3s cubic-bezier(0.23, 1, 0.32, 1);
        }

/* 05Eb. Mobile Nav Panels */
[id$="nav-copy"] {
    background: #fff;
    box-shadow: 5px 0 5px -5px rgba(0,0,0,.5);
    left: 0;
    overflow-y: auto;
    padding: 42px 0;
    position: fixed;
    top: 0;
    -webkit-transform: translateX(-280px);
    -ms-transform: translateX(-280px);
    transform: translateX(-280px);
    -webkit-backface-visibility: hidden;
    -webkit-transition: -webkit-transform .4s 0s, visibility 0s .4s;
    transition: transform .4s 0s, visibility 0s .4s;
    width: 230px;
    height: 100%;
    z-index: 9;
}

    [id$="nav-copy"] ul li a {
        border-bottom: 1px solid #e3e3e3;
        color: #202020;
        display: block;
        padding: 15px;
        text-decoration: none;
    }

        [id$="nav-copy"] ul li a:hover {
            background: #307ba4;
            color: #fff;
        }

    [id$="nav-copy"] ul li ul {
        font-size: 14px;
        line-height: 1.2;
    }

        [id$="nav-copy"] ul li ul li a {
            padding-left: 30px;
        }

    [id$="nav-copy"].open-menu {
        -webkit-transform: translateX(0) !important;
        -ms-transform: translateX(0) !important;
        transform: translateX(0) !important;
        -webkit-transition: -webkit-transform .4s 0s, visibility 0s 0s;
        transition: transform .4s 0s, visibility 0s 0s;
        -webkit-overflow-scrolling: touch;
    }

.dd-wrap {
    display: block;
    width: 100%;
}

.open-dd {
    background: #e3e3e3;
    cursor: pointer;
    display: block;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 50px;
    height: 100%;
    z-index: 10;
}

    /* Icon to indicate there's drop downs to open */
    .open-dd::after {
        content: "\f103";
        font: normal normal normal 14px/1 FontAwesome;
        font-size: inherit;
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        top: 50%;
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .open-dd:hover, .open-dd:focus {
        background: #307ba4;
        color: #fff;
    }

.has-sub ul {
    display: none;
}

.has-sub span {
    display: block;
}

.has-sub > span {
    height: 100%;
}

/* 05Ec. Main Nav */
.main-nav {
    font-size: 18px;
    margin: 10px auto 0;
    z-index: 15;
}

    .main-nav ul li {
        display: inline-block;
        margin: 0 10px;
    }

        .main-nav ul li a {
            display: block;
            text-decoration: none;
            color: #202020;
        }

            .main-nav ul li a:hover, .main-nav ul li a:focus {
                color: #077ccc;
            }

    /* 05Ed. Drop Downs */
    .main-nav ul > li > ul {
        background-color: none;
        display: block;
        font-size: 16px;
        left: 50%;
        -ms-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        line-height: 1.2;
        margin: 0;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        padding: 0;
        pointer-events: none;
        position: absolute;
        text-align: center;
        top: auto;
        -webkit-transition: max-height .1s ease-in-out 0s, opacity .1s ease-in-out 0s;
        transition: max-height .1s ease-in-out 0s, opacity .1s ease-in-out 0s;
        width: 230px;
        height: auto !important;
        z-index: 100;
    }

        .main-nav ul > li > ul li {
            display: inline-block;
            height: auto !important;
            margin: 0;
            padding: 0;
            position: relative;
            width: 100%;
        }

            .main-nav ul > li > ul li:last-child {
                border-bottom: 0;
            }

            .main-nav ul > li > ul li a {
                background: #fff;
                border-bottom: 1px solid #e3e3e3;
                color: #202020 !important;
                display: block;
                padding: 12px !important;
                -webkit-transition: none;
                transition: none;
            }

            .main-nav ul > li > ul li:last-of-type a {
                border-bottom: 0;
            }

            .main-nav ul > li > ul li:hover a, .main-nav ul > li > ul li a:focus {
                background: #307ba4;
                color: #fff !important;
            }

    .main-nav ul > li:hover > ul, .main-nav ul > li > a:focus + ul {
        max-height: 700px;
        opacity: 1;
        pointer-events: visible;
        -webkit-transition: max-height .7s ease-in-out 0s;
        transition: max-height .7s ease-in-out 0s;
    }

@media only screen and (min-width : 1000px) {
    [id$="nav-copy"], .toggle-menu {
        display: none; /* Hide mobile menus */
    }

    .main-nav {
        display: block; /* Unhide desktop menu */
    }
}

/************************* 06F. Content *************************/
/* 06Fa. Banner Section */
.banner {
    height: 50vh;
    width: 100%;
}

    .banner h2 {
        font-size: 36px;
        text-shadow: 0 0 50px #333;
        margin-top: 15px;
    }

.interior .banner {
    height: 50vh;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

    .interior .banner h1 {
        width: 100%;
        text-align: center;
        padding: 0 20px;
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        margin: 15px auto;
        z-index: 3;
        color: #fff;
        font-size: 36px;
        text-shadow: 0 0 50px #333;
    }

        .banner ul.images .slick-slide {
            min-height: 50vh;
        }

        .banner ul.images li {
            height: 100%;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center center;
        }

    .banner ul.text {
        position: absolute;
        text-align: center;
        width: 100%;
        padding: 0 15px;
        z-index: 5;
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        color: #fff;
    }

    .banner .btn {
        background: #fff;
        border: 2px solid #72C2E0;
    }

    .banner .btn a {
        color: #202020;
    }

.banner .btn:before {
    border: 2px solid #72C2E0;
    background: #72C2E0;
}

    .banner .btn:hover {
        border: 2px solid #90e280;
        color: #fff;
    }

    .banner .btn:hover:before {
        border: 2px solid #90e280;
        background: #90e280;
    }

@media only screen and (min-width: 800px) {
    .banner h2 {
        font-size: 60px;
        text-shadow: 0 0 100px #333;
        margin-top: 40px;
    }

    .interior .banner h1 {
        margin: 40px auto 0;
        font-size: 60px;
        text-shadow: 0 0 100px #333;
    }
}

@media only screen and (min-width: 1000px) {
    .banner {
        height: 75vh;
    }

        .banner ul.images .slick-slide {
            min-height: 75vh;
        }
    
    .banner ul.text {
        top: auto;
        -ms-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        bottom: 200px;
    }
}

.buckets {
    padding: 50px 15px;
    z-index: 3;
}

    .buckets .half {
        width: 100%;
        max-width: 400px;
        margin: auto;
        background: #eee;
        overflow: hidden;
    }

    .buckets header, .buckets .block {
        padding: 20px;
    }

    .buckets .content {
        z-index: 2;
    }

    .buckets .block:last-child {
        padding: 0 20px 20px;
    }

    .buckets .half:nth-of-type(1) header {
        background: rgb(7,124,204);
        background: -moz-linear-gradient(top, rgba(7,124,204,1) 0%, rgba(114,194,224,1) 100%);
        background: -webkit-linear-gradient(top, rgba(7,124,204,1) 0%,rgba(114,194,224,1) 100%);
        background: linear-gradient(to bottom, rgba(7,124,204,1) 0%,rgba(114,194,224,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#077ccc', endColorstr='#72c2e0',GradientType=0 );
    }

    .buckets .half:nth-of-type(2) header {
        background: rgb(41,136,26);
        background: -moz-linear-gradient(top, rgba(41,136,26,1) 0%, rgba(144,226,128,1) 100%);
        background: -webkit-linear-gradient(top, rgba(41,136,26,1) 0%,rgba(144,226,128,1) 100%);
        background: linear-gradient(to bottom, rgba(41,136,26,1) 0%,rgba(144,226,128,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#29881a', endColorstr='#90e280',GradientType=0 );
    }

    .buckets .half header {
        color: #fff;
        text-align: center;
    }

        .buckets .half header span {
            font-size: 50px;
            margin-bottom: 15px;
            -webkit-transition: ease-in-out all 0.3s;
            transition: ease-in-out all 0.3s;
        }

    .buckets .half h2 {
        text-align: center;
        line-height: 1;
        margin: 0;
        padding: 0;
        font-size: 24px;
        text-transform: uppercase;
        color: #fff;
        -webkit-transition: ease-in-out all 0.3s;
        transition: ease-in-out all 0.3s;
    }

    .buckets .half:first-child {
        margin-bottom: 40px;
    }

    .buckets .half h3 {
        font-size: 20px;
        margin: 0 0 15px;
    }

    .buckets .half:first-child .block:nth-of-type(2) {
        text-align: center;
    }

    .buckets .half:last-child .block:nth-of-type(2) {
        text-align: center;
    }

    .buckets .half ul li {
        margin-bottom: 10px;
        padding-left: 18px;
    }

        .buckets .half ul li:before {
            content: '\f054';
            font-family: "FontAwesome";
            position: absolute;
            left: 0;
        }

    .buckets .half:nth-of-type(1) ul li a {
        display: inline-block;
        text-decoration: none;
        color: #077ccc;
        -webkit-transition: color 0.3s ease-in-out;
        transition: color 0.3s ease-in-out;
    }

        .buckets .half:nth-of-type(1) ul li a:before {
            background-color: #72C2E0;
            content: '';
            height: 2px;
            position: absolute;
            bottom: 0;
            width: 100%;
        }

        .buckets .half:nth-of-type(1) ul li a:after {
            background-color: #077ccc;
            content: '';
            height: 2px;
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            transition: width 0.3s ease-in-out;
        }

    .buckets .half:nth-of-type(2) ul li a {
        display: inline-block;
        text-decoration: none;
        color: #29881a;
        -webkit-transition: color 0.3s ease-in-out;
        transition: color 0.3s ease-in-out;
    }

    .buckets .half:nth-of-type(2) ul li a:before {
        background-color: #90e280;
        content: '';
        height: 2px;
        position: absolute;
        bottom: 0;
        width: 100%;
    }

        .buckets .half:nth-of-type(2) ul li a:after {
            background-color: #29881a;
            content: '';
            height: 2px;
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            -webkit-transition: width 0.3s ease-in-out;
            transition: width 0.3s ease-in-out;
        }

    .buckets .half:nth-of-type(1) ul li a:hover {
        color: #72C2E0;
    }

    .buckets .half:nth-of-type(2) ul li a:hover {
        color: #90e280;
    }

        .buckets .half ul li a:hover:after {
            width: 100%;
        }

@media only screen and (min-width: 650px) {
    .buckets {
        padding: 0 20px 75px;
    }

        .buckets .half {
            width: calc(50% - 15px);
            max-width: none;
            margin-top: -50px;
        }

            .buckets .half:first-child {
                margin-bottom: 0;
                float: left;
            }

            .buckets .half:last-child {
                float: right;
            }
}

@media only screen and (min-width: 850px) {
    html:not(.touchevents) .buckets .half header {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 5;
    }

    html:not(.touchevents) .buckets .half {
        height: 450px;
    }

        html:not(.touchevents) .buckets .half .block:first-of-type {
            padding-top: 175px;
        }

        html:not(.touchevents) .buckets .half header:before {
            content: '';
            background: #72C2E0;
            width: 0;
            height: 5px;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            -webkit-transition: ease-in-out width 0.3s;
            transition: ease-in-out width 0.3s;

        }

        html:not(.touchevents) .buckets .half:nth-of-type(1) header:before {
            background: #72C2E0;
        }

        html:not(.touchevents) .buckets .half:nth-of-type(2) header:before {
            background: #90e280;
        }

        html:not(.touchevents) .buckets .half header:after {
            background: url(/images/mountain-element.svg);
            z-index: 4;
            content: '';
            position: absolute;
            bottom: 50px;
            left: 50%;
            -ms-transform: translateX(-50%);
            -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
            display: block;
            width: 200px;
            height: 49px;
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center bottom;
            -webkit-transition: ease-in-out all 0.3s;
            transition: ease-in-out all 0.3s;
        }

        html:not(.touchevents) .buckets .half header {
            -webkit-transition: ease-in-out all 0.3s;
            transition: ease-in-out all 0.3s;
        }

            html:not(.touchevents) .buckets .half header > div {
                width: 100%;
                position: absolute;
                top: 50%;
                left: 50%;
                -ms-transform: translate(-50%,-50%);
                -webkit-transform: translate(-50%,-50%);
                transform: translate(-50%,-50%);
                z-index: 5;
            }

        html:not(.touchevents) .buckets .half:hover header {
            height: 150px;
        }

            html:not(.touchevents) .buckets .half:hover header:before {
                width: 100%;
            }

        html:not(.touchevents) .buckets .half:hover header:after {
            opacity: 0;
        }
}

@media only screen and (min-width: 1000px) {
    .buckets .half {
        margin-top: -100px;
    }
}

@media only screen and (min-width: 1100px) {
    html:not(.touchevents) .buckets .half header span {
        font-size: 100px;
    }
    
    html:not(.touchevents) .buckets .half h2 {
        font-size: 36px;
    }

    html:not(.touchevents) .buckets .half:hover h2 {
        font-size: 24px;
    }

        html:not(.touchevents) .buckets .half:hover header span {
            font-size: 50px;
        }

    html:not(.touchevents) .buckets .half {
        height: 550px;
    }

    .buckets .half ul li {
        margin-bottom: 10px;
        padding-left: 25px;
        font-size: 25px;
    }

    .buckets .half h3 {
        font-size: 36px;
        margin: 0 0 15px;
    }

    html:not(.touchevents) .buckets .half header:after {
        width: 400px;
        height: 98px;
    }
}

@media only screen and (min-width: 1200px) {
    .buckets {
        padding: 0 100px 75px;
    }
}

.about {
    max-width: 700px;
    padding: 0 20px;
    margin: auto;
    text-align: center;
}

    .about h1 {
        line-height: 1.2;
    }

.testimonials {
    margin: 100px auto 50px;
    padding: 0 50px;
    max-width: 1200px;
}

.testimonials h3 {
    margin: 0 0 15px;
    text-align: center;
}

.testimonials .slick-slider .slick-slide {
    margin: 0 10px;
}

.testimonials .arrow {
    position: absolute;
    top: 0;
    font-size: 35px;
    cursor: pointer;
}

    .testimonials .arrow:hover {
        color: #999;
    }

    .testimonials .arrow.prev-arrow {
        left: -35px;
    }

    .testimonials .arrow.next-arrow {
        right: -35px;
    }

.testimonials ul li {
    background: #eee;
    padding: 20px;
    font-style: italic;
}

    .testimonials ul li p {
        margin: 0;
        padding: 0;
    }

        .testimonials ul li p.name {
            margin-top: 15px;
            text-align: right;
        }

/************************* 07G. Footer *************************/
footer.main {
    padding: 15px 0;
    text-align: center;
    width: 100%;
    height: 185px;
    background: url(/images/footer-element.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}

    footer.main .inner {
        position: absolute;
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
    }

    footer.main nav {
        margin-bottom: 20px;
    }

        footer.main nav li {
            display: inline-block;
            margin: 0 10px;
        }

/************************* 08H. Login Page *************************/
.login-wrapper {
    max-width: 350px;
}

.login-form {
    margin-bottom: 30px;
}

.login-create-link a {
    text-decoration: none;
}

@media only screen and (min-width : 850px) {
    .login-wrapper {
        max-width: none;
    }

    .login-form, .login-create-link {
        float: left;
        margin-bottom: 0;
        max-width: 350px;
        width: 50%;
    }

    .login-create-link {
        padding-left: 50px;
    }
}

/*********************** 09I. Contact Page ***********************/
.contact-content {
    margin-bottom: 40px;
}

@media only screen and (min-width: 850px) {
    .contact-form, .contact-content {
        float: left;
        width: 45%;
    }

    .contact-form {
        padding-left: 30px;
        width: 55%;
    }
}

@media only screen and (min-width : 900px) {
    .contact-form, .contact-content {
        float: left;
        width: 45%;
    }

    .contact-form {
        padding-left: 30px;
        width: 55%;
    }
}

/*********************** 10J. Categories / Subpages ***********************/
.categories {
    margin-top: 30px;
    text-align: center;
}

    .categories a {
        text-decoration: none;
    }

    .categories li {
        margin: 0 auto 30px;
        max-width: 350px;
        width: 100%;
    }

    .categories .title a {
        background: rgba(0,0,0,.5);
        color: #eaeaea;
        display: block;
        font: 18px/1.2 arial, sans-serif;
        margin: auto;
        padding: 15px 20px;
    }

        .categories .title a:hover, .categories .title a:focus {
            background: #286986;
        }

@media only screen and (min-width : 550px) {
    .categories li {
        float: left;
        margin-left: 15px;
        margin-right: 15px;
        max-width: none;
    }
}

@media only screen and (min-width : 550px) and (max-width : 850px) {
    .categories li {
        width: calc(100% / 2 - 16px);
    }

        .categories li:nth-of-type(2n+1) {
            clear: both;
            margin-left: 0;
        }

        .categories li:nth-of-type(2n+2) {
            margin-right: 0;
        }
}

@media only screen and (min-width : 851px) and (max-width : 1050px) {
    .categories li {
        width: calc(100% / 3 - 21px);
    }

        .categories li:nth-of-type(3n+1) {
            clear: both;
            margin-left: 0;
        }

        .categories li:nth-of-type(3n+3) {
            margin-right: 0;
        }
}

@media only screen and (min-width : 1051px) {
    .categories li {
        width: calc(100% / 4 - 24px);
    }

        .categories li:nth-of-type(4n+1) {
            clear: both;
            margin-left: 0;
        }

        .categories li:nth-of-type(4n+4) {
            margin-right: 0;
        }
}
