/* main.scss */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

input {
    outline: 0;
}

html {
    font-size: 10px;
    font-family: 'PT Sans', sans-serif, arial;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}

    html.no-scroll {
        overflow: hidden;
    }

@media screen and (max-width: 768px) {
    html.no-scroll header {
        top: -6rem;
    }
}

html.hide-nav header {
    top: -5rem;
}

@media screen and (max-width: 768px) {
    html.hide-nav #mobile-menu {
        bottom: -6rem;
    }
}

html.resizing * {
    -webkit-transition: none !important;
    transition: none !important;
}

#g-recaptcha-response {
    display: block !important;
    position: absolute;
    margin: -78px 0 0 0 !important;
    width: 302px !important;
    height: 76px !important;
    z-index: -999999;
    opacity: 0;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    position: relative;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
}

section {
    width: 100%;
    float: left;
    height: 100vh;
    position: relative;
    -webkit-transition: height 999999s;
    transition: height 999999s;
}

.content {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    -webkit-transform: initial;
    transform: initial;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow-x: hidden;
    z-index: 10;
}

    .content .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 100%;
    }

        .content .container.auto-height {
            height: auto;
        }

        .content .container.justified-center {
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

        .content .container > h3, .content .container > p {
            text-align: center;
        }

h2 {
    font-weight: bold;
    font-size: 5.6rem;
    line-height: 1.2;
}

h3 {
    font-size: 4.2rem;
    line-height: 1.2;
    font-weight: bold;
    color: #333;
}

h4 {
    font-size: 3.2rem;
    line-height: 1.4;
    color: #333;
}

h5 {
    font-weight: bold;
    font-size: 2.6rem;
    line-height: 1.2;
}

p {
    font-size: 1.8rem;
    line-height: 1.5;
}

@media (max-width: 48em) {
    .hide-mobile {
        display: none;
    }
}

header {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-transition: background .5s ease-out, height .5s ease-out, top 0.5s ease;
    transition: background .5s ease-out, height .5s ease-out, top 0.5s ease;
}

    header .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-item-align: center;
        align-self: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    header nav {
        margin-left: auto;
    }

        header nav ul {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-direction: row;
            flex-direction: row;
        }

@media (max-width: 35.5em) {
    header nav ul {
        padding-left: 0;
    }
}

header nav ul li {
    color: #fff;
    margin: 0 2.5rem;
    list-style-type: none;
    font-weight: bold;
    font-size: 1.4rem;
}

@media (max-width: 64em) {
    header nav ul li {
        margin: 0 1rem;
    }
}
/*@media (max-width: 48em) {
          header nav ul li:not(:last-of-type) {
            display: none; } }*/

.mainHeader .container {
    justify-content: space-between;
    align-items: center;
}

.mainHeader .navContainer .btnHamburger {
    display: none;
}

@media (max-width: 992px) {
    .mainHeader {
        height: 10rem;
    }

        .mainHeader .container {
            padding: 0;
            align-items: flex-start;
            flex-direction: column;
        }

            .mainHeader .container .logo {
                width: 100%;
                padding: 0 1.5rem;
            }

        .mainHeader .navContainer {
            width: 100%;
            margin-top: 10px;
            background: rgba(255, 255, 255, 0.9);
        }


            .mainHeader .navContainer .nav {
                position: absolute;
                top: 100%;
                left: 0;
                transition: all linear .3s;
                transform: translate3d(-150%, 0, 0);
                background: rgba(255, 255, 255, 0.9);
            }

        .mainHeader.active .navContainer .nav {
            transform: translate3d(0, 0, 0);
        }

        .mainHeader .navContainer .btnHamburger {
            display: block;
        }

        .mainHeader.active .navContainer {
            display: block;
        }

        .mainHeader .navList {
            display: block;
            padding: 0;
        }

            .mainHeader .navList li + li {
                margin-top: 15px;
            }

            .mainHeader .navList a.btn {
                padding: 0;
            }

            .mainHeader .navList a {
                color: #000;
            }

        .mainHeader.active .btnHamburger span {
            background-color: transparent;
        }

            .mainHeader.active .btnHamburger span:after,
            .mainHeader.active .btnHamburger span:before {
                height: 2px;
                width: 16px;
                display: block;
                background-color: #F06C26;
                left: 50%;
                top: 50%;
                border-radius: 1px;
            }

            .mainHeader.active .btnHamburger span:before {
                transform: translate(-50%, -50%) rotate(45deg);
            }

            .mainHeader.active .btnHamburger span:after {
                transform: translate(-50%, -50%) rotate(-45deg);
            }

    .btnHamburger {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        width: 40px;
        flex-shrink: 0;
        z-index: 1;
    }

        .btnHamburger div {
            position: relative;
            height: 100%;
            width: 100%;
            z-index: 104;
            border-radius: 50%;
            border: none;
            overflow: hidden;
        }

        .btnHamburger span {
            display: block;
            position: absolute;
            top: 50%;
            left: 30%;
            right: 30%;
            height: 2px;
            background-color: #404040;
            transform: translateY(-50%);
            transition: all 0.3s linear;
        }

            .btnHamburger span:after,
            .btnHamburger span:before {
                content: "";
                position: absolute;
                display: block;
                left: 0;
                width: 100%;
                height: 2px;
                background-color: #404040;
                transition: all 0.3s linear;
            }

            .btnHamburger span:before {
                top: -5px;
            }

            .btnHamburger span:after {
                bottom: -5px;
            }
}

header nav ul li a {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    -webkit-transition: color .5s ease-out;
    transition: color .5s ease-out;
}

    header nav ul li a:not(.btn):after {
        content: '';
        position: absolute;
        bottom: -.5rem;
        left: 0;
        width: 100%;
        height: .2rem;
        background-color: #F06C26;
        opacity: 0;
        -webkit-transition: opacity .3s ease-out;
        transition: opacity .3s ease-out;
    }

    header nav ul li a:not(.btn):hover:after {
        opacity: 1;
    }

    header nav ul li a.btn {
        font-size: 1.4rem;
        border: 1px solid #fff;
    }

header .logo .color {
    display: none;
}

@media (max-width: 35.5em) {
    header .logo img {
        max-width: 15rem;
    }
}

@media (max-width: 23.5em) {
    header .logo img {
        max-width: 15rem;
    }
}

@media (max-width: 320px) {
    header .logo img {
        max-width: 12rem;
    }
}

@media (max-width: 35.5em) {
    header .btn {
        font-size: 1.2rem;
    }
}

@media (max-width: 48em) {
    header.scroll {
        top: -5rem;
    }
}

@media (min-width: 769px) {
    header.scroll {
        background: rgba(255, 255, 255, 0.9);
    }

        header.scroll .logo .color {
            display: block;
        }

        header.scroll .logo .white {
            display: none;
        }

        header.scroll nav ul li a {
            color: #8F8D8C;
        }

            header.scroll nav ul li a.btn {
                border-color: #F06C26;
                background-color: #F06C26;
                color: #fff;
            }

                header.scroll nav ul li a.btn:hover {
                    background-color: #D05106;
                    border-color: #D05106;
                    color: #fff;
                }
}

#mobile-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    width: 100%;
    height: 6rem;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    -webkit-transition: bottom 0.3s ease;
    transition: bottom 0.3s ease;
    z-index: 30;
}

    #mobile-menu .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 0;
        margin: 0;
    }

@media (max-width: 48em) {
    #mobile-menu .container {
        /*max-width: 60rem;*/
    }
}

#mobile-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

    #mobile-menu ul li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 50%;
        height: 100%;
        border-right: 1px solid rgba(255, 255, 255, 0.5);
    }

        #mobile-menu ul li a {
            text-decoration: none;
            text-align: center;
            margin: auto;
        }

            #mobile-menu ul li a span {
                color: #fff;
                display: block;
                margin-top: 0.5rem;
            }

@media (min-width: 769px) {
    #mobile-menu {
        display: none;
        z-index: -1;
    }
}

.btn {
    padding: 0.9rem 0.9rem 0.9rem 0.9rem;
    line-height: 1.15;
    font-size: 1.4rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: lighter;
    -webkit-transition: background-color .3s ease-out, color .3s ease-out, border-color .3s ease-out;
    transition: background-color .3s ease-out, color .3s ease-out, border-color .3s ease-out;
}

    .btn.primary {
        background: #F06C26;
        color: #fff;
    }

        .btn.primary:hover {
            background: #D05106;
        }

    .btn.secondary:hover {
        background: #F06C26;
        border-color: #F06C26;
        color: #fff;
    }

    .btn.ghost {
        background: transparent;
        border: 1px solid #fff;
    }

.swiper-container {
    width: 100%;
    height: 100%;
}

#masthead {
    height: 106vh;
    -webkit-transition: height 999999s;
    transition: height 999999s;
}

    #masthead .content {
        -webkit-transition: padding 999999s;
        transition: padding 999999s;
        padding-bottom: 6vh;
    }

    #masthead h2 {
        color: #fff;
        margin: auto 0 0;
        margin-right: auto;
        opacity: 0;
        line-height: 1.1;
        -webkit-transform: translateY(2rem);
        transform: translateY(2rem);
        -webkit-transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
        transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
        transition: opacity .7s ease-out, transform .7s ease-out;
        transition: opacity .7s ease-out, transform .7s ease-out, -webkit-transform .7s ease-out;
    }

@media (max-width: 80em) {
    #masthead h2 {
        font-size: 5rem;
    }
}

@media (max-width: 64em) {
    #masthead h2 {
        font-size: 4.75rem;
    }
}

@media (max-width: 48em) {
    #masthead h2 {
        font-size: 4.5rem;
    }
}

@media (max-width: 35.5em) {
    #masthead h2 {
        font-size: 3.5rem;
    }
}

@media (max-width: 320px) {
    #masthead h2 {
        font-size: 3rem;
        margin-top: 10rem;
    }
}

#masthead h5 {
    color: #fff;
    -ms-flex-item-align: center;
    align-self: center;
    margin-top: auto;
    position: relative;
    top: -5rem;
    opacity: 0;
    font-weight: 100;
    margin-bottom: 35px;
    -webkit-transform: translateY(2rem);
    transform: translateY(2rem);
    -webkit-transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out, -webkit-transform .7s ease-out;
    -webkit-transition-delay: .8s;
    transition-delay: .8s;
}

@media (max-width: 64em) {
    #masthead h5 {
        font-size: 2.2rem;
    }
}

@media (max-width: 48em) {
    #masthead h5 {
        font-size: 2rem;
    }
}

@media (max-width: 35.5em) {
    #masthead h5 {
        font-size: 1.7rem;
    }
}

#masthead p {
    color: #fff;
    max-width: 53rem;
    margin-right: auto;
    text-align: left;
    opacity: 0;
    -webkit-transform: translateY(2rem);
    transform: translateY(2rem);
    -webkit-transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out, -webkit-transform .7s ease-out;
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
}

@media (max-width: 64em) {
    #masthead p {
        font-size: 1.7rem;
        max-width: 50rem;
    }
}

@media (max-width: 48em) {
    #masthead p {
        font-size: 1.6rem;
        line-height: 1.5;
        max-width: 40rem;
    }
}

@media (max-width: 35.5em) {
    #masthead p {
        max-width: 95%;
    }
}

#masthead.load h2, #masthead.load h5, #masthead.load p {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

#masthead .down-arrow {
    -ms-flex-item-align: center;
    align-self: center;
    top: -6rem;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 100%;
}

    #masthead .down-arrow svg {
        position: relative;
        top: -2px;
    }

    #masthead .down-arrow:hover svg {
        -webkit-animation: float 2.5s ease infinite;
        animation: float 2.5s ease infinite;
    }

#masthead .swiper-slide {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

#masthead .swiper-pagination {
    width: auto;
    left: 2rem;
    bottom: 8rem;
}

    #masthead .swiper-pagination .swiper-pagination-bullet {
        outline: none;
        margin-right: 1rem;
        background-color: #fff;
    }

        #masthead .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
            background-color: #fff;
        }

#quartz.banner {
    background-color: #fff;
    height: 40rem;
}

@media (max-width: 48em) {
    #quartz.banner {
        height: 30rem;
    }
}

#quartz .slab {
    height: 50rem;
    width: 80vw;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -40%);
    transform: translate(-50%, -40%);
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: 0px 9px 30px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 9px 30px 0px rgba(0, 0, 0, 0.4);
}

@media (max-width: 48em) {
    #quartz .slab {
        width: 90%;
        height: 40rem;
        padding: 2rem;
    }
}

#quartz .slab h3 {
    margin: 0;
}

@media (max-width: 64em) {
    #quartz .slab h3 {
        font-size: 4.2rem;
    }
}

@media (max-width: 48em) {
    #quartz .slab h3 {
        font-size: 3.7rem;
        padding: 0 1rem;
        text-align: center;
    }
}

@media (max-width: 35.5em) {
    #quartz .slab h3 {
        font-size: 3rem;
    }
}

@media (max-width: 35.5em) {
    #quartz .slab h3 .mobile-break {
        display: block;
        clear: both;
    }
}

#quartz .slab p {
    max-width: 60rem;
    text-align: center;
}

#quartz .slab p, #quartz .slab h3 {
    -webkit-transform: translateY(2rem);
    transform: translateY(2rem);
    opacity: 0;
    -webkit-transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out, -webkit-transform .7s ease-out;
}

#quartz .slab.triggered h3 {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out, -webkit-transform .7s ease-out;
}

#quartz .slab.triggered p {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: opacity .7s ease-out 0.4s, -webkit-transform .7s ease-out 0.4s;
    transition: opacity .7s ease-out 0.4s, -webkit-transform .7s ease-out 0.4s;
    transition: opacity .7s ease-out 0.4s, transform .7s ease-out 0.4s;
    transition: opacity .7s ease-out 0.4s, transform .7s ease-out 0.4s, -webkit-transform .7s ease-out 0.4s;
}

#features {
    background: #000;
    height: calc(100vh + 5rem);
    -webkit-transition: height 999999s;
    transition: height 999999s;
}

@media (max-width: 64em) {
    #features {
        /*max-height: 100vh;*/
    }
}

@media (max-width: 320px) {
    #features {
        /*height: calc(100vh - 6rem);*/
    }
}

#features .close-btn {
    position: absolute;
    display: block;
    right: 3rem;
    top: 6rem;
    font-size: 5rem;
    z-index: 11;
    color: #fff;
    cursor: pointer;
    opacity: 1;
    -webkit-transition: opacity .3s ease-out;
    transition: opacity .3s ease-out;
}

    #features .close-btn:hover svg, #features .close-btn:hover polygon {
        fill: #D05106;
    }

    #features .close-btn svg {
        max-height: 3rem;
        width: 3rem;
    }

        #features .close-btn svg polygon {
            -webkit-transition: fill .3s ease-out;
            transition: fill .3s ease-out;
        }

@media (max-width: 48em) {
    #features .close-btn {
        top: 6.5rem;
    }
}

#features .close-btn.hidden {
    opacity: 0;
}

#features .content {
    pointer-events: none;
}

#features h3 {
    color: #fff;
    margin-bottom: 0;
}

@media (max-width: 64em) {
    #features .slide-three {
        background-position: 70% center;
    }

    #features .slide-four {
        background-position: 73% center;
    }
}

@media (max-width: 35.5em) {
    #features .slide-five {
        background-position: 15% center;
    }
}

#features .swiper-pagination {
    position: relative;
    margin-top: -10rem;
    /*margin-top: 5rem;*/
    -webkit-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out;
}

@media (max-width: 48em) {
    #features .swiper-pagination.hidden {
        margin-top: -9rem;
    }
}

@media (max-width: 48em) {
    #features .swiper-pagination.hidden .swiper-pagination-bullet {
        display: none;
    }
}

@media (max-width: 48em) {
    #features .swiper-pagination.hidden .swiper-pagination-bullet.swiper-pagination-bullet-active {
        display: inline-block;
    }
}

@media (max-width: 48em) {
    #features .swiper-pagination.hidden h6 {
        display: none !important;
    }
}

@media (max-width: 48em) {
    #features .swiper-pagination {
        position: absolute;
        display: block;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        max-width: 100%;
        width: 50rem;
        margin-top: 9rem;
    }
}

@media (max-width: 35.5em) {
    #features .swiper-pagination {
        max-width: 100%;
        width: 80%;
        margin-top: 10rem;
    }
}

@media (max-width: 23.5em) {
    #features .swiper-pagination {
        width: 100%;
        margin-top: 8rem;
    }
}

@media (max-width: 320px) {
    #features .swiper-pagination {
        width: 100%;
        margin-top: 7rem;
    }
}

#features .swiper-pagination .swiper-pagination-bullet {
    width: 13rem;
    height: 13rem;
    position: relative;
    margin: 0 1.7rem;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.4);
    outline: 0;
    -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease !important;
    transition: background-color 0.3s ease, -webkit-transform 0.3s ease !important;
    transition: background-color 0.3s ease, transform 0.3s ease !important;
    transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease !important;
    -webkit-transition-delay: 0s !important;
    transition-delay: 0s !important;
    pointer-events: auto;
    -webkit-transform: scale(1);
    transform: scale(1);
}

    #features .swiper-pagination .swiper-pagination-bullet.slide-3 img {
        /*top: 55%;*/
    }

    #features .swiper-pagination .swiper-pagination-bullet.slide-4 img {
        /*top: 59%;*/
    }

    #features .swiper-pagination .swiper-pagination-bullet.slide-5 img {
        /*top: 55%;*/
    }

    #features .swiper-pagination .swiper-pagination-bullet.slide-6 img {
        /*top: 55%;*/
    }

@media (max-width: 64em) {
    #features .swiper-pagination .swiper-pagination-bullet {
        width: 10.3rem;
        height: 10.3rem;
        margin: 0 1.2vw;
    }

        #features .swiper-pagination .swiper-pagination-bullet img {
            width: 5rem;
            height: 4.8rem;
        }
}

@media (max-width: 48em) {
    #features .swiper-pagination .swiper-pagination-bullet {
        width: 10rem;
        height: 10rem;
        margin: 0 1.5rem 5rem 1.5rem;
    }
}

@media (max-width: 320px) {
    #features .swiper-pagination .swiper-pagination-bullet {
        width: 7rem;
        height: 7rem;
        position: relative;
    }

        #features .swiper-pagination .swiper-pagination-bullet img {
            width: 50%;
        }
}

#features .swiper-pagination .swiper-pagination-bullet:hover {
    background-color: #f06c26cc;
}

#features .swiper-pagination .swiper-pagination-bullet:nth-of-type(1) {
    display: none;
}

#features .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #F06C26;
    opacity: 1;
}

#features .swiper-pagination .swiper-pagination-bullet img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#features .swiper-pagination .swiper-pagination-bullet h6 {
    position: absolute;
    bottom: -5rem;
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
    font-weight: normal;
    width: 100%;
    height: 4rem;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-font-smoothing: subpixel-antialiased;
}

@media (max-width: 64em) {
    #features .swiper-pagination .swiper-pagination-bullet h6 {
        font-size: 1.35rem;
    }
}

@media screen and (max-width: 48em) {
    #features .swiper-pagination .swiper-pagination-bullet h6 {
        bottom: -3.8rem;
    }
}

#features .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}

    #features .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active h6 {
        /*font-weight: bold;*/
    }

#features .swiper-controls {
    display: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 5rem;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    padding: 0 2rem;
    z-index: 20;
    -webkit-transition: opacity .3s ease-out;
    transition: opacity .3s ease-out;
    opacity: 1;
}

    #features .swiper-controls.hidden {
        opacity: 0;
        z-index: 1;
    }

    #features .swiper-controls .prev-btn {
        margin-right: auto;
        z-index: 20;
        position: relative;
    }

    #features .swiper-controls .next-btn {
        margin-left: auto;
        z-index: 20;
        position: relative;
    }

        #features .swiper-controls .prev-btn.swiper-button-disabled, #features .swiper-controls .next-btn.swiper-button-disabled {
            opacity: .4;
        }

@media (max-width: 48em) {
    #features .swiper-controls {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

#features .swiper-slide {
    background-size: cover;
    background-repeat: no-repeat;
}

    #features .swiper-slide .title-bar {
        display: none;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 5rem;
        width: 100%;
        background: rgba(0, 0, 0, 0.8);
    }

@media (max-width: 48em) {
    #features .swiper-slide .title-bar {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

#features .swiper-slide .title-bar p {
    color: #fff;
}

#features .swiper-slide:nth-of-type(1) .content {
    background: none;
}

@media (max-width: 48em) {
    #features .swiper-slide:nth-of-type(1) .content .container {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

#features .swiper-slide .content {
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0.65) 100%);
    /* Chrome10-25,Safari5.1-6 */
}

@media (max-width: 48em) {
    #features .swiper-slide .content {
        background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.65) 100%);
        /* Chrome10-25,Safari5.1-6 */
    }
}

#features .swiper-slide .container h3, #features .swiper-slide .container h4 {
    color: #fff;
}

#features .swiper-slide .container.justified-center h3 {
    margin-top: -35rem;
    line-height: 1.4;
}

@media (max-width: 64em) {
    #features .swiper-slide .container.justified-center h3 {
        font-size: 4.1rem;
    }
}

@media (max-width: 48em) {
    #features .swiper-slide .container.justified-center h3 {
        margin-top: 22vh;
        -webkit-transition: margin 999999s;
        transition: margin 999999s;
        font-size: 3.8rem;
        text-align: center;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
        -ms-flex-item-align: start;
        align-self: flex-start;
    }
}

@media (max-width: 48em) and (max-height: 780px) {
    #features .swiper-slide .container.justified-center h3 {
        margin-top: 12vh;
        -webkit-transition: margin 999999s;
        transition: margin 999999s;
    }
}

@media (max-width: 35.5em) {
    #features .swiper-slide .container.justified-center h3 {
        max-width: 100%;
        font-size: 2.5rem;
    }
}

#features .swiper-slide .container.justified-center h3 br {
    display: none;
}

@media (max-width: 48em) {
    #features .swiper-slide .container.justified-center h3 br {
        display: block;
    }
}

#features .swiper-slide .container.row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    #features .swiper-slide .container.row.bottom {
        /*margin-top: -10rem;
          align-items: flex-end;*/
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 30rem;
    }

@media (max-width: 48em) {
    #features .swiper-slide .container.row.bottom {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0;
    }
}

#features .swiper-slide .container.row.bottom h3, #features .swiper-slide .container.row.bottom h4 {
    margin: 0 1rem;
    text-align: center;
    font-size: 2.8rem;
    max-width: 80rem;
}

@media (max-width: 64em) {
    #features .swiper-slide .container.row.bottom h3, #features .swiper-slide .container.row.bottom h4 {
        max-width: 85%;
    }
}

@media (max-width: 35.5em) {
    #features .swiper-slide .container.row.bottom h3, #features .swiper-slide .container.row.bottom h4 {
        max-width: 100%;
        margin: 0;
    }
}

#features .swiper-slide .container.row.bottom h3.left, #features .swiper-slide .container.row.bottom h4.left {
    text-align: left;
}

#features .swiper-slide .container.row.bottom h4 {
    font-weight: normal;
    max-width: 60rem;
}

@media (max-width: 48em) {
    #features .swiper-slide .container.row.bottom h4 {
        margin-bottom: -10rem;
        font-size: 2.5rem;
    }
}

#features .swiper-slide .container.row.bottom .large {
    font-size: 9.2rem;
    line-height: 0.8;
    position: relative;
    top: .4rem;
}

#features .swiper-slide .container.bottom {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

#features.animate h3 {
    -webkit-transform: translateY(2rem);
    transform: translateY(2rem);
    opacity: 0;
    -webkit-transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out, -webkit-transform .7s ease-out;
}

#features.animate .swiper-pagination-bullet {
    -webkit-transform: translate(0, 2rem);
    transform: translate(0, 2rem);
    opacity: 0;
    -webkit-transition: opacity .7s ease-out, background-color 0.3s ease, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, background-color 0.3s ease, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out, background-color 0.3s ease;
    transition: opacity .7s ease-out, transform .7s ease-out, background-color 0.3s ease, -webkit-transform .7s ease-out;
}

#features.triggered h3 {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out, -webkit-transform .7s ease-out;
}

#features.triggered .swiper-pagination-bullet {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
    -webkit-transition: opacity .7s ease-out 0.4s, background-color 0.3s ease, -webkit-transform .7s ease-out 0.4s;
    transition: opacity .7s ease-out 0.4s, background-color 0.3s ease, -webkit-transform .7s ease-out 0.4s;
    transition: opacity .7s ease-out 0.4s, transform .7s ease-out 0.4s, background-color 0.3s ease;
    transition: opacity .7s ease-out 0.4s, transform .7s ease-out 0.4s, background-color 0.3s ease, -webkit-transform .7s ease-out 0.4s;
}

#swatch {
    overflow: hidden;
    height: 100rem;
    max-height: 100rem;
}

@media screen and (max-width: 48em) {
    #swatch .container {
        position: relative;
        overflow: hidden;
    }
}

@media screen and (max-width: 48em) {
    #swatch {
        height: initial;
        max-height: none;
        padding-bottom: 0.5rem;
    }
}

@media (max-width: 48em) {
    #swatch .content {
        position: relative;
        overflow: hidden;
    }
}

#swatch .content h3 {
    margin: 15rem 0 0rem;
    font-size: 4rem;
}

#swatch .content p {
    max-width: 80rem;
}

@media (max-width: 48em) {
    #swatch .content h3, #swatch .content p {
        text-align: left;
    }
}

#swatch .swiper-scrollbar {
    width: 95%;
    height: 0.3rem;
    bottom: -3rem;
    left: 50%;
    background-color: #E5E5E5;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    z-index: 10;
}

    #swatch .swiper-scrollbar .swiper-scrollbar-drag {
        border-radius: 0;
        background-color: #8F8D8C;
        height: .5rem;
        top: -0.1rem;
        border-radius: 10rem;
        z-index: 20;
    }

@media screen and (max-width: 35.5em) and (max-height: 740px) {
    #swatch .swiper-scrollbar {
        bottom: -10rem;
    }
}

@media screen and (max-width: 23.5em) and (max-height: 740px) {
    #swatch .swiper-scrollbar {
        bottom: -11rem;
    }
}

@media screen and (max-width: 320px) and (max-height: 740px) {
    #swatch .swiper-scrollbar {
        bottom: -47rem;
        position: relative;
    }
}

@media (min-width: 865px) {
    #swatch .swiper-scrollbar {
        display: none;
    }
}

#swatch .swatch-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4rem;
    z-index: 21;
    top: calc(74% - 4rem);
    padding: 0 1rem;
    cursor: pointer;
}

@media (min-width: 865px) {
    #swatch .swatch-controls {
        display: none;
    }
}

@media screen and (max-width: 35.5em) and (max-height: 740px) {
    #swatch .swatch-controls {
        top: calc(60vh - 4rem);
        -webkit-transition: top 999999s;
        transition: top 999999s;
    }
}

#swatch .swatch-controls .prev-btn, #swatch .swatch-controls .next-btn {
    width: 2rem;
    height: 2rem;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%0A%3Cg%20id%3D%22Canvas%22%20transform%3D%22translate%285626%2036893%29%22%3E%0A%3Cg%20id%3D%22Combined%20Shape%22%3E%0A%3Cuse%20xlink%3Ahref%3D%22%23path0_fill%22%20transform%3D%22matrix%28-1%20-1.45868e-16%201.02816e-16%20-1%20-5608%20-36875%29%22%20fill%3D%22%23000000%22%20fill-opacity%3D%220.5%22/%3E%0A%3C/g%3E%0A%3C/g%3E%0A%3Cdefs%3E%0A%3Cpath%20id%3D%22path0_fill%22%20d%3D%22M%207.9934%2015.3316C%208.38763%2015.8012%208.39336%2016.5557%208.00011%2017.0241C%207.60959%2017.4893%206.98133%2017.4951%206.58176%2017.0192L%200.297152%209.53356C%20-0.0956611%209.06568%20-0.102426%208.31515%200.297152%207.83921L%206.58176%200.353585C%206.97457%20-0.114298%207.60687%20-0.119751%208.00011%200.348648C%208.39064%200.813803%208.39198%201.56638%207.9934%202.04113L%203.41433%207.49528L%2016.9976%207.49528C%2017.5513%207.49528%2018.0001%208.02397%2018.0001%208.68639C%2018.0001%209.34422%2017.5476%209.87749%2016.9976%209.87749L%203.41433%209.87749L%207.9934%2015.3316Z%22/%3E%0A%3C/defs%3E%0A%3C/svg%3E%0A);
}

    #swatch .swatch-controls .prev-btn.disabled, #swatch .swatch-controls .next-btn.disabled {
        opacity: .5;
        cursor: initial;
    }

    #swatch .swatch-controls .prev-btn:focus, #swatch .swatch-controls .next-btn:focus {
        outline: 0;
    }

#swatch .swatch-controls .prev-btn {
    margin-right: auto;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

#swatch .swatch-controls .next-btn {
    margin-left: auto;
}

#swatch .swatch-selector {
    width: 100%;
    margin-top: 12rem;
    z-index: 10;
}

@media screen and (max-width: 35.5em) and (max-height: 740px) {
    #swatch .swatch-selector {
        height: 80vh;
        -webkit-transition: height 999999s;
        transition: height 999999s;
    }
}

#swatch .swatch-selector div.piano {
    position: relative;
    width: 100%;
    max-width: 95rem;
    height: 48rem;
    margin: auto;
    overflow: visible;
}

@media (max-width: 1070px) {
    #swatch .swatch-selector div.piano {
        max-width: 81rem;
    }
}

#swatch .swatch-selector div.piano div.swatch-info {
    position: absolute;
    top: 8rem;
    left: -5rem;
    min-width: 25rem;
    padding: 0.8rem;
    z-index: 10;
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #dbd2ce 0%, rgba(255, 255, 255, 0.48) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dbd2ce', endColorstr='#7affffff',GradientType=1 );
    /* IE6-9 fallback on horizontal gradient */
}

@media screen and (max-width: 35.5em) and (max-height: 740px) {
    #swatch .swatch-selector div.piano div.swatch-info {
        top: 27%;
        min-width: 28rem;
    }
}

#swatch .swatch-selector div.piano div.swatch-info .contain {
    background-color: #fff;
    padding: 1.5rem;
}

    #swatch .swatch-selector div.piano div.swatch-info .contain h4 {
        margin: 0;
        font-size: 2.4rem;
        font-weight: normal;
    }

    #swatch .swatch-selector div.piano div.swatch-info .contain span.swatch-id {
        font-size: 3.4rem;
        font-weight: bold;
    }

    #swatch .swatch-selector div.piano div.swatch-info .contain span.description {
        font-size: 1.2rem;
        max-width: 22rem;
        line-height: 1.4;
        display: block;
        color: #5B5A5C;
        padding: 0rem 0;
    }

@media (max-width: 48em) {
    #swatch .swatch-selector div.piano div.swatch-info .contain span.description {
        font-size: 1.15rem;
    }
}

#swatch .swatch-selector div.piano div.swatch-info .contain p {
    font-size: 1.4rem;
    margin: 0.5rem 0;
}

#swatch .swatch-selector div.piano div.swatch-info .contain a {
    color: #F06C26;
    font-size: 1.4rem;
}

@media screen and (max-width: 925px) {
    #swatch .swatch-selector div.piano div.swatch-info {
        z-index: 30;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

#swatch .swatch-selector div.piano div.current-swatch {
    position: absolute;
    top: 0;
    left: 0;
    background-size: auto;
    background-position: bottom left;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0s ease;
    transition: all 0s ease;
}

@media screen and (max-width: 865px) {
    #swatch .swatch-selector div.piano div.current-swatch {
        z-index: 20;
        height: 74%;
    }
}

@media screen and (max-width: 35.5em) and (max-height: 740px) {
    #swatch .swatch-selector div.piano div.current-swatch {
        height: 65vh;
        -webkit-transition: height 999999s;
        transition: height 999999s;
    }
}

#swatch .swatch-selector div.piano div.current-swatch div {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#swatch .swatch-selector div.piano div.keys {
    position: absolute;
    bottom: 0;
    top: initial;
    height: auto;
    overflow-y: hidden;
    width: auto;
    z-index: 10;
}

@media screen and (max-width: 35.5em) and (max-height: 740px) {
    #swatch .swatch-selector div.piano div.keys {
        top: 63vh;
        -webkit-transition: top 999999s;
        transition: top 999999s;
        bottom: initial;
    }
}

#swatch .swatch-selector div.piano div.keys span {
    width: calc(95rem / 19);
    height: 10rem;
    float: left;
    background-position: bottom left;
    background-repeat: no-repeat;
    border-right: 1px solid #d4d4d4;
    -webkit-box-shadow: 0px 28px 10px -20px rgba(0, 0, 0, 0.3) inset;
    box-shadow: 0px 28px 10px -20px rgba(0, 0, 0, 0.3) inset;
}

@media (max-width: 1070px) {
    #swatch .swatch-selector div.piano div.keys span {
        width: calc(81rem / 19);
    }
}

#swatch .swatch-selector div.piano div.keys span:last-of-type {
    border-right: 0;
}

#swatch .swatch-selector div.piano div.keys span:hover, #swatch .swatch-selector div.piano div.keys span.active {
    -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.4);
}

#swatch .swatch-selector div.piano div.keys span:not(.active):hover {
    cursor: pointer;
}

@media screen and (max-width: 865px) {
    #swatch .swatch-selector div.piano div.keys span {
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        width: 8rem;
        height: 13rem;
        margin-right: 0.5rem;
    }
}

#swatch .swatch-selector div.piano div.keys span:nth-child(1) {
    background-position: calc(-95rem / 19 * 0) 100%;
}

#swatch .swatch-selector div.piano div.keys span:nth-child(2) {
    background-position: calc(-95rem / 19 * 1) 100%;
}

#swatch .swatch-selector div.piano div.keys span:nth-child(3) {
    background-position: calc(-95rem / 19 * 2) 100%;
}

#swatch .swatch-selector div.piano div.keys span:nth-child(4) {
    background-position: calc(-95rem / 19 * 3) 100%;
}

#swatch .swatch-selector div.piano div.keys span:nth-child(5) {
    background-position: calc(-95rem / 19 * 4) 100%;
}

#swatch .swatch-selector div.piano div.keys span:nth-child(6) {
    background-position: calc(-95rem / 19 * 5) 100%;
}

#swatch .swatch-selector div.piano div.keys span:nth-child(7) {
    background-position: calc(-95rem / 19 * 6) 100%;
}

#swatch .swatch-selector div.piano div.keys span:nth-child(8) {
    background-position: calc(-95rem / 19 * 7) 100%;
}

#swatch .swatch-selector div.piano div.keys span:nth-child(9) {
    background-position: calc(-95rem / 19 * 8) 100%;
}

#swatch .swatch-selector div.piano div.keys span:nth-child(10) {
    background-position: calc(-95rem / 19 * 9) 100%;
}

#swatch .swatch-selector div.piano div.keys span:nth-child(11) {
    background-position: calc(-95rem / 19 * 10) 100%;
}

#swatch .swatch-selector div.piano div.keys span:nth-child(12) {
    background-position: calc(-95rem / 19 * 11) 100%;
}

#swatch .swatch-selector div.piano div.keys span:nth-child(13) {
    background-position: calc(-95rem / 19 * 12) 100%;
}

#swatch .swatch-selector div.piano div.keys span:nth-child(14) {
    background-position: calc(-95rem / 19 * 13) 100%;
}

#swatch .swatch-selector div.piano div.keys span:nth-child(15) {
    background-position: calc(-95rem / 19 * 14) 100%;
}

#swatch .swatch-selector div.piano div.keys span:nth-child(16) {
    background-position: calc(-95rem / 19 * 15) 100%;
}

#swatch .swatch-selector div.piano div.keys span:nth-child(17) {
    background-position: calc(-95rem / 19 * 16) 100%;
}

#swatch .swatch-selector div.piano div.keys span:nth-child(19) {
    background-position: calc(-95rem / 19 * 17) 100%;
}

@media (max-width: 1070px) {
    #swatch .swatch-selector div.piano div.keys span:nth-child(1) {
        background-position: calc(-81rem / 19 * 0) 100%;
    }

    #swatch .swatch-selector div.piano div.keys span:nth-child(2) {
        background-position: calc(-81rem / 19 * 1) 100%;
    }

    #swatch .swatch-selector div.piano div.keys span:nth-child(3) {
        background-position: calc(-81rem / 19 * 2) 100%;
    }

    #swatch .swatch-selector div.piano div.keys span:nth-child(4) {
        background-position: calc(-81rem / 19 * 3) 100%;
    }

    #swatch .swatch-selector div.piano div.keys span:nth-child(5) {
        background-position: calc(-81rem / 19 * 4) 100%;
    }

    #swatch .swatch-selector div.piano div.keys span:nth-child(6) {
        background-position: calc(-81rem / 19 * 5) 100%;
    }

    #swatch .swatch-selector div.piano div.keys span:nth-child(7) {
        background-position: calc(-81rem / 19 * 6) 100%;
    }

    #swatch .swatch-selector div.piano div.keys span:nth-child(8) {
        background-position: calc(-81rem / 19 * 7) 100%;
    }

    #swatch .swatch-selector div.piano div.keys span:nth-child(9) {
        background-position: calc(-81rem / 19 * 8) 100%;
    }

    #swatch .swatch-selector div.piano div.keys span:nth-child(10) {
        background-position: calc(-81rem / 19 * 9) 100%;
    }

    #swatch .swatch-selector div.piano div.keys span:nth-child(11) {
        background-position: calc(-81rem / 19 * 10) 100%;
    }

    #swatch .swatch-selector div.piano div.keys span:nth-child(12) {
        background-position: calc(-81rem / 19 * 11) 100%;
    }

    #swatch .swatch-selector div.piano div.keys span:nth-child(13) {
        background-position: calc(-81rem / 19 * 12) 100%;
    }

    #swatch .swatch-selector div.piano div.keys span:nth-child(14) {
        background-position: calc(-81rem / 19 * 13) 100%;
    }

    #swatch .swatch-selector div.piano div.keys span:nth-child(15) {
        background-position: calc(-81rem / 19 * 14) 100%;
    }

    #swatch .swatch-selector div.piano div.keys span:nth-child(16) {
        background-position: calc(-81rem / 19 * 15) 100%;
    }

    #swatch .swatch-selector div.piano div.keys span:nth-child(17) {
        background-position: calc(-81rem / 19 * 16) 100%;
    }

    #swatch .swatch-selector div.piano div.keys span:nth-child(18) {
        background-position: calc(-81rem / 18 * 15) 100%;
    }

    #swatch .swatch-selector div.piano div.keys span:nth-child(19) {
        background-position: calc(-81rem / 19 * 15) 100%;
    }
}

#swatch .swatch-selector div.piano div.keys.mouseover span.active {
    -webkit-box-shadow: 0px 28px 10px -20px rgba(0, 0, 0, 0.3) inset !important;
    box-shadow: 0px 28px 10px -20px rgba(0, 0, 0, 0.3) inset !important;
}

    #swatch .swatch-selector div.piano div.keys.mouseover span.active:hover {
        -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.4) !important;
        box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.4) !important;
    }

#swatch h3, #swatch p {
    -webkit-transform: translateY(2rem);
    transform: translateY(2rem);
    opacity: 0;
    -webkit-transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out, -webkit-transform .7s ease-out;
}

#swatch.triggered h3 {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out, -webkit-transform .7s ease-out;
}

#swatch.triggered p {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: opacity .7s ease-out 0.4s, -webkit-transform .7s ease-out 0.4s;
    transition: opacity .7s ease-out 0.4s, -webkit-transform .7s ease-out 0.4s;
    transition: opacity .7s ease-out 0.4s, transform .7s ease-out 0.4s;
    transition: opacity .7s ease-out 0.4s, transform .7s ease-out 0.4s, -webkit-transform .7s ease-out 0.4s;
}

#installation {
    background-image: url(../images/quartz-homedepot-bg.jpg);
    background-repeat: no-repeat;
    background-position: top right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100rem;
    max-height: 100rem;
}

@media (max-width: 35.5em) {
    #installation {
        background-image: url(../images/quartz-homedepot-bg--mobile.jpg);
        background-size: cover;
        max-height: 80rem;
    }
}

@media (min-width: 35.6em) {
    #installation {
        background-size: cover;
    }
}

#installation .slab {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    width: 60%;
    max-width: 70rem;
    padding: 8rem 6rem;
    text-align: center;
    margin: auto;
    z-index: 10;
    -webkit-box-shadow: 0px 9px 30px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 9px 30px 0px rgba(0, 0, 0, 0.3);
    -webkit-transform: translateY(2rem);
    transform: translateY(2rem);
    opacity: 0;
    -webkit-transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out, -webkit-transform .7s ease-out;
}

@media (max-width: 64em) {
    #installation .slab {
        width: 70%;
    }
}

@media (max-width: 48em) {
    #installation .slab {
        width: 90%;
        padding: 6rem 4rem;
        background-color: #fff;
        text-align: left;
    }
}

#installation .slab h3 {
    margin: 0;
    width: 100%;
}

@media (max-width: 64em) {
    #installation .slab h3 {
        font-size: 4.2rem;
    }
}

@media (max-width: 48em) {
    #installation .slab h3 {
        font-size: 3.7rem;
    }
}

@media (max-width: 35.5em) {
    #installation .slab h3 {
        font-size: 3rem;
    }
}

@media (max-width: 35.5em) {
    #installation .slab h3 .mobile-break {
        display: block;
        clear: both;
    }
}

#installation .slab .btn {
    padding: 1.5rem;
    width: 50%;
    max-width: 200px;
    text-align: center;
    display: inline-block;
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 35.5em) {
    #installation .slab .btn {
        width: 100%;
        max-width: none;
    }
}

#installation .slab p, #installation .slab h3, #installation .slab a {
    -webkit-transform: translateY(2rem);
    transform: translateY(2rem);
    opacity: 0;
    -webkit-transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out, -webkit-transform .7s ease-out;
}

#installation .slab.triggered {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out, -webkit-transform .7s ease-out;
}

    #installation .slab.triggered h3 {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        -webkit-transition: opacity .7s ease-out 0.4s, -webkit-transform .7s ease-out 0.4s;
        transition: opacity .7s ease-out 0.4s, -webkit-transform .7s ease-out 0.4s;
        transition: opacity .7s ease-out 0.4s, transform .7s ease-out 0.4s;
        transition: opacity .7s ease-out 0.4s, transform .7s ease-out 0.4s, -webkit-transform .7s ease-out 0.4s;
    }

    #installation .slab.triggered p {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        -webkit-transition: opacity .7s ease-out 0.6s, -webkit-transform .7s ease-out 0.6s;
        transition: opacity .7s ease-out 0.6s, -webkit-transform .7s ease-out 0.6s;
        transition: opacity .7s ease-out 0.6s, transform .7s ease-out 0.6s;
        transition: opacity .7s ease-out 0.6s, transform .7s ease-out 0.6s, -webkit-transform .7s ease-out 0.6s;
    }

    #installation .slab.triggered a {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        -webkit-transition: opacity .7s ease-out 0.7s, -webkit-transform .7s ease-out 0.7s;
        transition: opacity .7s ease-out 0.7s, -webkit-transform .7s ease-out 0.7s;
        transition: opacity .7s ease-out 0.7s, transform .7s ease-out 0.7s;
        transition: opacity .7s ease-out 0.7s, transform .7s ease-out 0.7s, -webkit-transform .7s ease-out 0.7s;
    }

#inspiration {
    display: none;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0 50%;
    padding: 20rem 0 5rem;
    background-size: cover;
    background-repeat: repeat-y;
    background-position: 50% 0;
    height: auto;
    overflow-x: hidden;
    -webkit-transition: 0s linear;
    transition: 0s linear;
    -webkit-transition-property: background-position;
    transition-property: background-position;
    /*#homedepot {
    max-width: 61rem;
    text-align: center;
    top: 33rem;

    h4 {
      text-align: center;
      margin-bottom: 2.5rem;
      font-weight: 500;
      color: #ffffff;
    }

    .search-field {
      position: relative;
      display: inline-block;
      width: 100%;
      max-width: 42rem;
      
      img {
        position: absolute;
        left: 1.5rem;
        top: 1.6rem;
      }
  
      input#address {
        padding: 1.4rem 12.2rem 1.4rem 4.2rem;
        border: 1px solid #bbb;
        font-size: 1.8rem;
        width: 100%;
      }
  
      input[type="button"] {
        position: absolute;
        right: 0.8rem;
        top: 0.7rem;
        background-color: $brand-primary;
        font-size: 1.5rem;
        padding: 0.9rem 0.9rem 0.9rem 0.9rem;
        width: 10rem;
        color: $white;
        border: 0;
        transition: background-color .3s ease-out;
        cursor: pointer;
  
        &:hover{
          background-color: $brand-primary-dark;
        }
      }
    }
  }*/
}

@media (max-width: 48em) {
    #inspiration {
        background-position: 30% 50%;
    }
}

#inspiration .content {
    position: relative;
}

@media (max-width: 48em) {
    #inspiration .content {
        position: relative;
        overflow: hidden;
    }
}

#inspiration .content .container h4, #inspiration .content .container p {
    display: none;
    width: 100%;
    text-align: left;
}

@media (max-width: 48em) {
    #inspiration .content .container h4, #inspiration .content .container p {
        display: block;
    }
}

#inspiration .content .container h4 {
    font-size: 2.5rem;
    margin: 0;
}

#inspiration .content .container p {
    margin: 1rem 0;
}

#inspiration h3 {
    text-align: center;
    margin: 5rem 0;
}

@media (max-width: 48em) {
    #inspiration h3 {
        text-align: left;
        width: 100%;
        margin-bottom: 12rem;
    }
}

#inspiration .swiper-container.primary {
    overflow: visible;
    z-index: 10;
    height: 40rem;
    margin: 10rem 0 15rem;
}

@media (max-width: 48em) {
    #inspiration .swiper-container.primary .swiper-slide {
        width: 80%;
    }
}

@media (max-width: 48em) {
    #inspiration .swiper-container.primary .swiper-slide:nth-of-type(1) {
        display: none;
    }
}

#inspiration .swiper-container.primary .swiper-slide.text h3 {
    margin: 0;
    text-align: left;
}

#inspiration .swiper-container.primary .swiper-slide.text p {
    font-size: 1.4rem;
    padding-right: 5rem;
}

    #inspiration .swiper-container.primary .swiper-slide.text p:nth-of-type(2) {
        margin-right: 50%;
    }

#inspiration .swiper-container.primary .swiper-slide.text strong {
    font-size: 1.3rem;
    margin-bottom: 3.5rem;
    display: block;
    line-height: 1.4;
    max-width: 17rem;
}

#inspiration .swiper-container.primary .swiper-slide.invisible {
    opacity: 0;
}

#inspiration .swiper-container.primary .swiper-slide.card {
    background-color: #fff;
    border: 1px solid #d4d4d4;
    min-width: 27rem;
}

    #inspiration .swiper-container.primary .swiper-slide.card .image {
        height: 50%;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    #inspiration .swiper-container.primary .swiper-slide.card .copy {
        padding: 3rem;
        position: relative;
        height: 50%;
    }

        #inspiration .swiper-container.primary .swiper-slide.card .copy span {
            font-size: 1.4rem;
            color: #8F8D8C;
        }

        #inspiration .swiper-container.primary .swiper-slide.card .copy h5 {
            margin: 1rem 0;
            font-weight: normal;
            font-size: 2.4rem;
        }

        #inspiration .swiper-container.primary .swiper-slide.card .copy .view-larger {
            position: absolute;
            bottom: 3rem;
            left: 3rem;
            color: #F06C26;
            text-decoration: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

            #inspiration .swiper-container.primary .swiper-slide.card .copy .view-larger:hover:after {
                -webkit-transform: translateX(0.3rem);
                transform: translateX(0.3rem);
            }

            #inspiration .swiper-container.primary .swiper-slide.card .copy .view-larger:after {
                content: '';
                display: block;
                background-image: url(data:image/svg+xml,%3Csvg%20width%3D%2213%22%20height%3D%2224%22%20viewBox%3D%220%200%2013%2024%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%0A%20%20%20%20%3Cg%20id%3D%22Canvas%22%20transform%3D%22translate%283416%2037815%29%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Vector%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20xlink%3Ahref%3D%22%23path0_fill%22%20transform%3D%22matrix%281%20-2.50567e-16%202.72807e-16%201%20-3416%20-37815%29%22%20fill%3D%22%23F06C26%22%20/%3E%0A%20%20%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%3C/g%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20id%3D%22path0_fill%22%20d%3D%22M%2012.7214%2012.6462L%201.57857%2023.7231C%201.20714%2024.0923%200.65%2024.0923%200.278571%2023.7231C%20-0.0928571%2023.3538%20-0.0928571%2022.8%200.278571%2022.4308L%2010.7714%2012L%200.278571%201.56923C%20-0.0928571%201.2%20-0.0928571%200.646154%200.278571%200.276923C%200.65%20-0.0923077%201.20714%20-0.0923077%201.57857%200.276923L%2012.7214%2011.3538C%2013.0929%2011.7231%2013.0929%2012.2769%2012.7214%2012.6462Z%22%20/%3E%0A%20%20%20%20%3C/defs%3E%0A%3C/svg%3E);
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center;
                width: 1.2rem;
                height: 1.2rem;
                position: absolute;
                top: .4rem;
                right: -1.8rem;
                -webkit-transform: translateX(0);
                transform: translateX(0);
                -webkit-transition: -webkit-transform .3s ease-out;
                transition: -webkit-transform .3s ease-out;
                transition: transform .3s ease-out;
                transition: transform .3s ease-out, -webkit-transform .3s ease-out;
            }

    #inspiration .swiper-container.primary .swiper-slide.card a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

#inspiration .swiper-container .swiper-pagination {
    position: relative;
    bottom: -6rem;
    display: none;
}

    #inspiration .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
        background: #F06C26;
    }

    #inspiration .swiper-container .swiper-pagination .swiper-pagination-bullet:nth-last-child(1) {
        display: none;
    }

@media (max-width: 35.5em) {
    #inspiration .swiper-container .swiper-pagination {
        display: block;
    }
}

#inspiration .swiper-container .swiper-scrollbar {
    width: 80%;
    height: 4rem;
    bottom: -8rem;
    left: 50%;
    cursor: pointer;
    background-color: transparent;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (max-width: 35.5em) {
    #inspiration .swiper-container .swiper-scrollbar {
        display: none;
    }
}

#inspiration .swiper-container .swiper-scrollbar:before {
    content: "";
    width: 100%;
    height: 0.2rem;
    background-color: #a0a0a0;
    display: block;
    position: relative;
    top: 2rem;
}

#inspiration .swiper-container .swiper-scrollbar .swiper-scrollbar-drag {
    border-radius: 0;
    background-color: #F06C26;
    height: 1rem;
    top: 1.4rem;
}

#inspiration .modal {
    /*position: absolute;*/
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /*height: 65rem;*/
    height: 100vh;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    /*padding-top: 2rem;*/
    /*padding: 22.5rem 0;*/
    padding: 7.5rem 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.5s ease, visibility 0.5s ease, height 999999s;
    transition: opacity 0.5s ease, visibility 0.5s ease, height 999999s;
    z-index: 1100;
}

    #inspiration .modal.active {
        opacity: 1;
        visibility: visible;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    #inspiration .modal .container {
        height: 100%;
    }

@media (max-width: 48em) {
    #inspiration .modal {
        position: fixed;
        height: 100vh;
        width: 100%;
        top: 0;
    }

        #inspiration .modal .container {
            /*top: 50%;*/
            /*transform: translateY(-50%);*/
            max-height: 57rem;
        }

            #inspiration .modal .container .swiper-container.secondary {
                height: 50%;
            }

            #inspiration .modal .container .swiper-bottom {
                position: relative;
                height: 50%;
            }

                #inspiration .modal .container .swiper-bottom .swiper-location {
                    padding: 0;
                    text-align: left;
                    max-width: 100%;
                }

                    #inspiration .modal .container .swiper-bottom .swiper-location p {
                        margin-top: 0;
                    }

                #inspiration .modal .container .swiper-bottom .swiper-pagination {
                    padding-top: 2rem;
                    /*bottom: 0;*/
                    top: 10rem;
                    left: 0;
                    width: 100%;
                }

                    #inspiration .modal .container .swiper-bottom .swiper-pagination .swiper-pagination-bullet {
                        margin-left: 0;
                        margin-right: 2.5%;
                        float: left;
                        width: 18%;
                        max-height: 7rem;
                    }
}

@media (max-width: 48em) and (max-width: 48em) {
    #inspiration .modal .container .swiper-bottom .swiper-pagination .swiper-pagination-bullet:last-of-type {
        margin-right: 0;
    }
}

#inspiration .modal .swiper-slide-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    padding: 1.2rem 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}

    #inspiration .modal .swiper-slide-title span {
        font-size: 1.6rem;
        float: right;
        top: 0.6rem;
        position: relative;
    }

    #inspiration .modal .swiper-slide-title h5 {
        color: #fff;
        margin: 0;
        font-size: 2rem;
        font-weight: normal;
        width: 100%;
    }

#inspiration .modal .swiper-bottom {
    height: 13rem;
    padding-top: 2rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

    #inspiration .modal .swiper-bottom .swiper-location {
        position: absolute;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 1rem 2rem;
        height: 11rem;
        max-width: calc(100% - 66rem);
    }

@media (max-width: 1020px) {
    #inspiration .modal .swiper-bottom .swiper-location {
        max-width: calc(100% - 49.5rem);
    }
}

#inspiration .modal .swiper-bottom .swiper-location span {
    color: #8F8D8C;
    font-size: 1.4rem;
}

#inspiration .modal .swiper-bottom .swiper-location h5 {
    font-weight: 400;
    color: #1A1A1A;
    margin: 1rem 0;
}

@media (max-width: 48em) {
    #inspiration .modal .swiper-bottom .swiper-location h5 {
        font-size: 2.2rem;
    }
}

#inspiration .modal .swiper-bottom .swiper-location p {
    font-size: 1.6rem;
    color: #8F8D8C;
}

    #inspiration .modal .swiper-bottom .swiper-location p a {
        color: #F06C26;
    }

#inspiration .modal .swiper-container.secondary {
    height: calc(100% - 13rem);
    padding-bottom: 0;
}

    #inspiration .modal .swiper-container.secondary .secondary-controls {
        position: absolute;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-item-align: center;
        align-self: center;
        width: 100%;
        height: 6rem;
        z-index: 24;
        top: 45%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

@media (max-width: 48em) {
    #inspiration .modal .swiper-container.secondary .secondary-controls {
        height: 4rem;
    }
}

@media (max-width: 35.5em) {
    #inspiration .modal .swiper-container.secondary .secondary-controls {
        height: 3rem;
    }
}

#inspiration .modal .swiper-container.secondary .secondary-controls .next-btn, #inspiration .modal .swiper-container.secondary .secondary-controls .prev-btn {
    height: 100%;
    width: auto;
    position: relative;
    cursor: pointer;
}

    #inspiration .modal .swiper-container.secondary .secondary-controls .next-btn:hover svg g, #inspiration .modal .swiper-container.secondary .secondary-controls .next-btn:hover svg path, #inspiration .modal .swiper-container.secondary .secondary-controls .prev-btn:hover svg g, #inspiration .modal .swiper-container.secondary .secondary-controls .prev-btn:hover svg path {
        fill: #F06C26;
    }

    #inspiration .modal .swiper-container.secondary .secondary-controls .next-btn svg, #inspiration .modal .swiper-container.secondary .secondary-controls .prev-btn svg {
        max-height: 4.5rem;
        width: 3rem;
    }

        #inspiration .modal .swiper-container.secondary .secondary-controls .next-btn svg g, #inspiration .modal .swiper-container.secondary .secondary-controls .next-btn svg path, #inspiration .modal .swiper-container.secondary .secondary-controls .prev-btn svg g, #inspiration .modal .swiper-container.secondary .secondary-controls .prev-btn svg path {
            -webkit-transition: fill .3s ease-out;
            transition: fill .3s ease-out;
        }

@media (max-width: 48em) {
    #inspiration .modal .swiper-container.secondary .secondary-controls .next-btn svg, #inspiration .modal .swiper-container.secondary .secondary-controls .prev-btn svg {
        max-height: 4rem;
    }
}

@media (max-width: 35.5em) {
    #inspiration .modal .swiper-container.secondary .secondary-controls .next-btn svg, #inspiration .modal .swiper-container.secondary .secondary-controls .prev-btn svg {
        max-height: 3rem;
    }
}

#inspiration .modal .swiper-container.secondary .secondary-controls .prev-btn {
    margin-right: auto;
}

    #inspiration .modal .swiper-container.secondary .secondary-controls .prev-btn svg {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

#inspiration .modal .swiper-container.secondary .secondary-controls .next-btn {
    margin-left: auto;
}

#inspiration .modal .swiper-container.secondary .swiper-slide {
    background-size: cover;
    background-position: center center;
}

@media (max-width: 48em) {
    #inspiration .modal .swiper-container.secondary .swiper-slide {
        width: 100% !important;
    }
}

#inspiration .modal .swiper-pagination {
    right: 0;
}

@media (max-width: 1200px) {
    #inspiration .modal .swiper-pagination {
        right: 2rem;
    }
}

#inspiration .modal .swiper-pagination .swiper-pagination-bullet {
    border-radius: 0;
    width: 11rem;
    height: 11rem;
    margin-left: 2rem;
    background-size: cover;
    background-position: center;
    opacity: 1;
    position: relative;
}

@media (max-width: 1020px) {
    #inspiration .modal .swiper-pagination .swiper-pagination-bullet {
        width: 8rem;
        height: 8rem;
        margin-left: 1.5rem;
    }
}

#inspiration .modal .swiper-pagination .swiper-pagination-bullet:focus {
    outline: 0;
}

#inspiration .modal .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    content: '';
    position: absolute;
    bottom: -1.3rem;
    left: 0;
    width: 100%;
    height: 0.8rem;
    background-color: #F06C26;
}

#inspiration .modal .close-modal {
    color: #fff;
    font-size: 4rem;
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 10;
    text-decoration: none;
}

    #inspiration .modal .close-modal svg {
        max-height: 3rem;
        width: 3rem;
    }

        #inspiration .modal .close-modal svg polygon {
            -webkit-transition: fill .3s ease-out;
            transition: fill .3s ease-out;
            fill: #000;
        }

        #inspiration .modal .close-modal svg:hover polygon {
            fill: #D05106;
        }

@media (max-width: 48em) {
    #inspiration .modal .close-modal {
        /*position: absolute;*/
        /*top: -5rem;*/
        color: #F06C26;
    }

        #inspiration .modal .close-modal svg polygon {
            fill: #333;
        }
}

#inspiration .animate h3, #inspiration .animate h4, #inspiration .animate p, #inspiration .animate strong, #inspiration .animate a, #inspiration .animate .search-field, #inspiration .animate.swiper-slide {
    -webkit-transform: translateY(2rem);
    transform: translateY(2rem);
    opacity: 0;
    -webkit-transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out, -webkit-transform .7s ease-out;
}

#inspiration .triggered h3 {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out, -webkit-transform .7s ease-out;
}

#inspiration .triggered h4 {
    margin-bottom: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out, -webkit-transform .7s ease-out;
}

#inspiration .triggered p {
    margin-top: 10px;
    padding: 0px 0 20px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: opacity .7s ease-out 0.4s, -webkit-transform .7s ease-out 0.4s;
    transition: opacity .7s ease-out 0.4s, -webkit-transform .7s ease-out 0.4s;
    transition: opacity .7s ease-out 0.4s, transform .7s ease-out 0.4s;
    transition: opacity .7s ease-out 0.4s, transform .7s ease-out 0.4s, -webkit-transform .7s ease-out 0.4s;
}

#inspiration .triggered strong {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: opacity .7s ease-out 0.8s, -webkit-transform .7s ease-out 0.8s;
    transition: opacity .7s ease-out 0.8s, -webkit-transform .7s ease-out 0.8s;
    transition: opacity .7s ease-out 0.8s, transform .7s ease-out 0.8s;
    transition: opacity .7s ease-out 0.8s, transform .7s ease-out 0.8s, -webkit-transform .7s ease-out 0.8s;
}

#inspiration .triggered a {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: opacity .7s ease-out 1.2s, -webkit-transform .7s ease-out 1.2s;
    transition: opacity .7s ease-out 1.2s, -webkit-transform .7s ease-out 1.2s;
    transition: opacity .7s ease-out 1.2s, transform .7s ease-out 1.2s;
    transition: opacity .7s ease-out 1.2s, transform .7s ease-out 1.2s, -webkit-transform .7s ease-out 1.2s;
}

#inspiration .triggered .search-field {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: opacity .7s ease-out 0.4s, -webkit-transform .7s ease-out 0.4s;
    transition: opacity .7s ease-out 0.4s, -webkit-transform .7s ease-out 0.4s;
    transition: opacity .7s ease-out 0.4s, transform .7s ease-out 0.4s;
    transition: opacity .7s ease-out 0.4s, transform .7s ease-out 0.4s, -webkit-transform .7s ease-out 0.4s;
}

#inspiration .triggered.swiper-slide {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    transition: opacity .7s ease-out .6s, -webkit-transform .7s ease-out .6s;
}

#map-wrapper {
    background-color: grey;
    height: auto;
    overflow-x: hidden;
}

    #map-wrapper:after {
        content: "";
        width: 100vw;
        height: 50rem;
        display: block;
        background: rgba(0, 0, 0, 0.7);
        position: absolute;
        z-index: 7;
    }

    #map-wrapper #map, #map-wrapper #side_bar {
        position: relative;
        height: 50rem;
        width: 100%;
        z-index: 7;
        float: right;
        -webkit-transition: width 1s ease;
        transition: width 1s ease;
    }

    #map-wrapper #side_bar {
        float: left;
        background-color: #fff;
        padding: 0rem;
        width: 0;
        font-size: 1.4rem;
        z-index: 9;
    }

        #map-wrapper #side_bar #top_row {
            border-bottom: 1px solid #ddd;
            position: absolute;
            left: 0;
            top: 0;
            width: calc(100% - 12rem);
            margin: 0;
            padding: 3rem 0;
            background: #ffffff;
            z-index: 10;
        }

            #map-wrapper #side_bar #top_row #homedepot {
                text-align: center;
                top: 15rem;
                position: absolute;
                width: 100vw;
                max-width: 100vw;
            }

                #map-wrapper #side_bar #top_row #homedepot h4 {
                    text-align: center;
                    margin-bottom: 2.5rem;
                    font-weight: 500;
                    color: #ffffff;
                }

                #map-wrapper #side_bar #top_row #homedepot .search-field {
                    position: relative;
                    display: inline-block;
                    width: 100%;
                    max-width: 35rem;
                }

                    #map-wrapper #side_bar #top_row #homedepot .search-field img {
                        position: absolute;
                        left: 1rem;
                        top: 1rem;
                        width: 15px;
                        height: 15px;
                    }

                    #map-wrapper #side_bar #top_row #homedepot .search-field input#address {
                        width: 100%;
                        padding: 1rem 11rem 1rem 3.4rem;
                        border: 1px solid #bbb;
                        font-size: 16px;
                        border-radius: 2px;
                        height: 34px;
                        border-style: solid;
                    }

                        #map-wrapper #side_bar #top_row #homedepot .search-field input#address::-webkit-input-placeholder {
                            line-height: 1.4;
                        }

                        #map-wrapper #side_bar #top_row #homedepot .search-field input#address:-moz-placeholder {
                            /* Firefox 18- */
                            line-height: 1.4;
                        }

                        #map-wrapper #side_bar #top_row #homedepot .search-field input#address::-moz-placeholder {
                            /* Firefox 19+ */
                            line-height: 1.4;
                        }

                        #map-wrapper #side_bar #top_row #homedepot .search-field input#address:-ms-input-placeholder {
                            line-height: 1.4;
                        }

                    #map-wrapper #side_bar #top_row #homedepot .search-field input[type="button"] {
                        position: absolute;
                        right: 0rem;
                        top: 0rem;
                        border-top-left-radius: 0;
                        border-bottom-left-radius: 0;
                        border-top-right-radius: 2px;
                        border-bottom-right-radius: 2px;
                        background-color: #F06C26;
                        line-height: 1.15;
                        font-size: 1.4rem;
                        padding: 0.9rem 0.9rem 0.9rem 0.9rem;
                        width: 10rem;
                        color: #fff;
                        border: 0;
                        -webkit-transition: background-color .3s ease-out;
                        transition: background-color .3s ease-out;
                        cursor: pointer;
                    }

                        #map-wrapper #side_bar #top_row #homedepot .search-field input[type="button"]:hover {
                            background-color: #D05106;
                        }

            #map-wrapper #side_bar #top_row label, #map-wrapper #side_bar #top_row select {
                display: none;
            }

@media screen and (max-width: 80em) {
    #map-wrapper #side_bar #top_row {
        width: calc(100% - 6rem);
        margin: 0;
        padding: 1.5rem 0;
    }
}

#map-wrapper #side_bar #top_row select {
    float: right;
    border: 0;
    background-color: transparent;
    outline: 0;
}

#map-wrapper #side_bar #top_row .animate h4, #map-wrapper #side_bar #top_row .animate .search-field {
    -webkit-transform: translateY(2rem);
    transform: translateY(2rem);
    opacity: 0;
    -webkit-transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out, -webkit-transform .7s ease-out;
}

#map-wrapper #side_bar #top_row .triggered h4 {
    margin-bottom: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, -webkit-transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out;
    transition: opacity .7s ease-out, transform .7s ease-out, -webkit-transform .7s ease-out;
}

#map-wrapper #side_bar #top_row .triggered .search-field {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: opacity .7s ease-out 0.4s, -webkit-transform .7s ease-out 0.4s;
    transition: opacity .7s ease-out 0.4s, -webkit-transform .7s ease-out 0.4s;
    transition: opacity .7s ease-out 0.4s, transform .7s ease-out 0.4s;
    transition: opacity .7s ease-out 0.4s, transform .7s ease-out 0.4s, -webkit-transform .7s ease-out 0.4s;
}

#map-wrapper #side_bar .scroll_row {
    overflow-y: auto;
    overflow-y: overlay;
    height: 50rem;
    padding: 10rem 6rem 6rem 6rem;
}

@media screen and (max-width: 80em) {
    #map-wrapper #side_bar .scroll_row {
        padding: 10rem 3rem 6rem 3rem;
    }
}

@media screen and (max-width: 48em) {
    #map-wrapper #side_bar .scroll_row {
        height: 50vh;
        -webkit-transition: height 999999s;
        transition: height 999999s;
    }
}

#map-wrapper #side_bar .scroll_row > div {
    margin-bottom: 1rem;
    float: left;
    width: 100%;
}

    #map-wrapper #side_bar .scroll_row > div#middle_row > div {
        width: 100%;
        margin-bottom: 1rem;
        float: left;
    }

        #map-wrapper #side_bar .scroll_row > div#middle_row > div.active .distance2 {
            display: none;
        }

        #map-wrapper #side_bar .scroll_row > div#middle_row > div.active .distance, #map-wrapper #side_bar .scroll_row > div#middle_row > div.active .callout, #map-wrapper #side_bar .scroll_row > div#middle_row > div.active .direction-btn {
            display: block !important;
        }

        #map-wrapper #side_bar .scroll_row > div#middle_row > div.active .uber-btn {
            display: none;
        }

    #map-wrapper #side_bar .scroll_row > div#middle_row .stores {
        padding: 4rem 0;
        border-bottom: 1px solid #ddd;
    }

        #map-wrapper #side_bar .scroll_row > div#middle_row .stores .distance {
            display: none;
            text-transform: uppercase;
            color: #F06C26;
            font-weight: bold;
        }

        #map-wrapper #side_bar .scroll_row > div#middle_row .stores .callout {
            display: none;
            margin: 0.2rem 0;
        }

        #map-wrapper #side_bar .scroll_row > div#middle_row .stores .direction-btn, #map-wrapper #side_bar .scroll_row > div#middle_row .stores .uber-btn {
            display: none;
        }

        #map-wrapper #side_bar .scroll_row > div#middle_row .stores.active {
            padding: 6rem 0;
        }

    #map-wrapper #side_bar .scroll_row > div .distance {
        margin-bottom: 1rem;
    }

    #map-wrapper #side_bar .scroll_row > div .distance2 {
        float: right;
        margin-top: 2.1rem;
    }

#map-wrapper #side_bar .scroll_row .location {
    line-height: 1.4;
    margin-bottom: 1rem;
    float: left;
}

    #map-wrapper #side_bar .scroll_row .location a {
        color: #000000;
        text-decoration: none;
        font-weight: bold;
    }

#map-wrapper #side_bar .scroll_row .minus-btn, #map-wrapper #side_bar .scroll_row .plus-btn {
    position: relative;
    border: none;
    float: right;
    top: -2px;
    margin-left: 4rem;
    background-color: transparent;
}

    #map-wrapper #side_bar .scroll_row .minus-btn:hover, #map-wrapper #side_bar .scroll_row .plus-btn:hover {
        cursor: pointer;
    }

#map-wrapper #side_bar .scroll_row .plus-btn {
    margin-left: 2rem;
}

#map-wrapper #side_bar .scroll_row .btn {
    padding: 0.9rem 0.9rem 0.9rem 0.9rem;
    line-height: 1.15;
    font-size: 1.4rem;
    color: #fff;
    float: left;
    clear: both;
    margin-bottom: 1rem;
    width: 18rem;
    text-align: center;
    text-decoration: none;
    -webkit-transition: background-color .3s ease-out;
    transition: background-color .3s ease-out;
}

    #map-wrapper #side_bar .scroll_row .btn.direction-btn {
        background-color: #F06C26;
    }

        #map-wrapper #side_bar .scroll_row .btn.direction-btn:hover {
            background-color: #D05106;
        }

    #map-wrapper #side_bar .scroll_row .btn.uber-btn {
        background-color: black;
        display: none;
        padding: 0;
        line-height: 0;
    }

        #map-wrapper #side_bar .scroll_row .btn.uber-btn img {
            height: 35px;
            width: auto;
        }

#map-wrapper.more:after {
    display: none;
}

@media (max-width: 48em) {
    #map-wrapper.more {
        height: 100vh;
        -webkit-transition: height 999999s;
        transition: height 999999s;
    }
}

@media screen and (max-width: 48em) {
    #map-wrapper.more #map, #map-wrapper.more #side_bar {
        width: 100% !important;
        height: 50vh;
        -webkit-transition: height 999999s;
        transition: height 999999s;
    }
}

#map-wrapper.more #map {
    width: 60%;
    float: right;
}

#map-wrapper.more #side_bar {
    width: 40%;
    float: left;
}

    #map-wrapper.more #side_bar #top_row {
        margin: 0 6rem;
        padding: 2rem 0 0;
        -webkit-animation: fadein 2s;
        animation: fadein 2s;
    }

        #map-wrapper.more #side_bar #top_row #homedepot {
            top: 0;
            position: relative;
            width: 100%;
            float: left;
            padding: 0;
        }

            #map-wrapper.more #side_bar #top_row #homedepot h4 {
                display: none;
            }

            #map-wrapper.more #side_bar #top_row #homedepot .search-field {
                max-width: 100%;
                opacity: 1;
                -webkit-transform: translateY(0);
                transform: translateY(0);
                -webkit-transition: none;
                transition: none;
            }

        #map-wrapper.more #side_bar #top_row label {
            display: inline-block;
            padding: 15px 0;
        }

        #map-wrapper.more #side_bar #top_row select {
            top: 12px;
            position: relative;
            display: inline-block;
            font-size: 16px;
        }

@media screen and (max-width: 80em) {
    #map-wrapper.more #side_bar #top_row {
        margin: 0 3rem;
    }
}

#map-wrapper.more #side_bar .scroll_row {
    -webkit-animation: fadein 2s;
    animation: fadein 2s;
}

#map-wrapper.more #side_bar .one-mile, #map-wrapper.more #side_bar .two-mile, #map-wrapper.more #side_bar .five-mile, #map-wrapper.more #side_bar .ten-mile, #map-wrapper.more #side_bar .more-mile {
    display: none;
}

#map-wrapper.more #side_bar.one-filter .one-mile, #map-wrapper.more #side_bar.two-filter .two-mile, #map-wrapper.more #side_bar.five-filter .five-mile, #map-wrapper.more #side_bar.ten-filter .ten-mile, #map-wrapper.more #side_bar.more-filter .more-mile {
    display: block;
}

/* Pop-up Info */
.gm-style div div div div div div div div {
    background-color: rgba(255, 255, 255, 0.9) !important;
    padding: 0;
    margin: 0;
    padding: 0;
    top: 0;
    color: #fff;
}

    .gm-style div div div div div div div div a {
        color: #000000;
        font-weight: bold;
    }

    .gm-style div div div div div div div div.contentInfo, .gm-style div div div div div div {
        background-color: transparent !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }

.gm-style .gm-style-iw {
    background-color: rgba(255, 255, 255, 0.9) !important;
    top: 14px !important;
    left: 0 !important;
    width: 23rem !important;
    padding: 2rem 2rem 1.7rem 2rem;
    display: block !important;
}

    .gm-style .gm-style-iw #google-popup p {
        padding: 10px;
    }

.gm-style-iw > div {
    max-width: none !important;
}

.gm-style .gm-style-iw + div {
    right: 18px !important;
    top: 20px !important;
}

.contentInfo {
    padding: 0px !important;
    margin: 0 !important;
    width: 19rem;
    overflow: hidden;
    /*position: absolute;*/
    /*top: 12px!important;*/
    line-height: 1.4;
}

    .contentInfo p {
        font-family: 'PT Sans', sans-serif, arial;
        color: #000000;
        padding: 0;
        margin: 0;
        font-size: 15px;
    }

    .contentInfo .btn {
        font-family: 'PT Sans', sans-serif, arial;
        color: #fff;
        float: left;
        margin-top: 1rem;
        margin-bottom: 0rem;
        font-size: 1.4rem;
        line-height: 1.15;
        width: 19rem;
        padding: 0.9rem 0.9rem 0.9rem 0.9rem;
        background-color: #F06C26;
        text-align: center;
        font-weight: 100;
        text-decoration: none;
        -webkit-transition: background-color .3s ease-out;
        transition: background-color .3s ease-out;
    }

        .contentInfo .btn:hover {
            background-color: #D05106;
        }

        .contentInfo .btn.info-uber {
            display: none;
            background-color: #000000;
            margin-left: 1rem;
            border: 0px solid #000;
            padding: 0;
            line-height: 0;
        }

            .contentInfo .btn.info-uber img {
                height: 35px;
                width: auto;
            }

            .contentInfo .btn.info-uber:hover {
                cursor: pointer;
            }

body.mobile #map-wrapper #side_bar .scroll_row > div#middle_row > div.active .uber-btn {
    display: block;
}

body.mobile .more .contentInfo {
    width: 25rem;
}

    body.mobile .more .contentInfo .btn {
        width: 12rem;
    }

        body.mobile .more .contentInfo .btn.info-uber {
            display: block;
        }

body.mobile .more .gm-style .gm-style-iw {
    width: 29rem !important;
}

body.modal-blur header, body.modal-blur #mobile-menu, body.modal-blur #masthead, body.modal-blur .banner, body.modal-blur #features, body.modal-blur #swatch, body.modal-blur #map-wrapper, body.modal-blur footer, body.modal-blur #inspiration .content, body.modal-blur #inspiration .swiper-container.primary.swiper-container-horizontal {
    -webkit-filter: blur(5px);
    filter: blur(5px);
}

#contact-modal {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-out, visibility 0.3s ease-eat;
    transition: opacity .3s ease-out, visibility 0.3s ease-eat;
}

    #contact-modal.show {
        z-index: 999999;
        visibility: visible;
        opacity: 1;
    }

    #contact-modal .form {
        overflow: auto;
        max-width: 60rem;
        width: 60rem;
        background: #fff;
        padding: 4rem 8rem;
        position: relative;
    }

@media (max-width: 48em) {
    #contact-modal .form {
        width: 90%;
        max-width: 100%;
        padding: 3rem 6rem;
    }
}

@media (max-width: 35.5em) {
    #contact-modal .form {
        width: 95%;
        padding: 2rem 1rem;
    }
}

#contact-modal .form h3 {
    margin: 2rem 0;
    color: #333;
}

#contact-modal .form a {
    color: #F06C26;
    text-decoration: none;
}

#contact-modal .form .close-btn {
    position: absolute;
    display: block;
    right: 3rem;
    top: 3rem;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
}

#contact-modal .form .close-btn:hover:after,
#contact-modal .form .close-btn:hover:before{
     width: 100%;
     transition: all linear .3s;
}

    #contact-modal .form .close-btn:after,
     #contact-modal .form .close-btn:before{
        content: '';
        width: 75%;
        height: 1px;
        background: #D05106;
        top: 50%;
        left: 50%;
        position: absolute;
        display: block;
        transition: all linear .3s;
    }
    #contact-modal .form .close-btn:after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    #contact-modal .form .close-btn:before {
        transform: translate(-50%, -50%) rotate(45deg);
    }

#contact-modal .form .message {
    display: none;
    font-size: 2rem;
    color: #333;
}

#contact-modal .form form .input-wrapper {
    width: 100%;
    display: inline-block;
    position: relative;
    float: left;
    margin: 1rem 0;
}

@media (max-width: 48em) {
    #contact-modal .form form .input-wrapper {
        margin: .5rem 0;
    }
}

#contact-modal .form form .input-wrapper label {
    display: block;
    margin: .5rem 0;
    color: #8F8D8C;
    font-size: 1.2rem;
}

    #contact-modal .form form .input-wrapper label.check {
        width: auto;
        display: inline-block;
    }

    #contact-modal .form form .input-wrapper label span {
        color: red;
        font-size: 1rem;
    }

#contact-modal .form form .input-wrapper input {
    display: block;
    width: 100%;
    font-size: 1.5rem;
    line-height: 2;
    text-indent: 1rem;
    background: #F2F2F2;
    outline: 0;
    border: 1px solid #F2F2F2;
}

    #contact-modal .form form .input-wrapper input[type=checkbox] {
        width: auto;
        display: inline-block;
    }

#contact-modal .form form .input-wrapper textarea {
    width: 100%;
    max-width: 100%;
    display: block;
    font-size: 1.5rem;
    min-height: 10rem;
    line-height: 1;
    border: 1px solid #F2F2F2;
    background: #F2F2F2;
    padding: 1rem;
    margin-bottom: 2rem;
}

    #contact-modal .form form .input-wrapper textarea:focus {
        outline: 0;
    }

#contact-modal .form form .input-wrapper.half {
    -ms-flex-item-align: start;
    align-self: flex-start;
    width: calc(50% - .5rem);
    display: inline-block;
    float: left;
}

    #contact-modal .form form .input-wrapper.half:nth-of-type(2) input {
        margin-left: 1rem;
    }

@media (max-width: 48em) {
    #contact-modal .form form .input-wrapper.half:nth-of-type(2) input {
        margin-left: 0;
    }
}

#contact-modal .form form .input-wrapper.half:nth-of-type(2) label {
    margin-left: 1rem;
}

@media (max-width: 48em) {
    #contact-modal .form form .input-wrapper.half:nth-of-type(2) label {
        margin-left: 0;
    }
}

@media (max-width: 48em) {
    #contact-modal .form form .input-wrapper.half {
        width: 100%;
        margin-left: 0;
    }

        #contact-modal .form form .input-wrapper.half label {
            margin-left: 0;
        }
}

#contact-modal .form form .input-wrapper.check-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-item-align: stretch;
    align-self: stretch;
}

    #contact-modal .form form .input-wrapper.check-wrapper input {
        margin-right: 1.5rem;
    }

    #contact-modal .form form .input-wrapper.check-wrapper label {
        color: #4F5362;
    }

#contact-modal .form form button {
    display: block;
    clear: both;
}

    #contact-modal .form form button.btn {
        padding: 1rem 5rem;
        /*margin-left: auto;*/
    }

#contact-modal .form form .g-recaptcha {
    display: block;
    float: left;
    margin-bottom: 15px;
}

footer {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #4E4E50;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 5rem 0 2rem 0;
}

@media (max-width: 48em) {
    footer {
        padding-bottom: 100px;
    }
}

footer p, footer i {
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    padding: 1rem 5rem;
    line-height: 1.6;
}

@media (max-width: 35.5em) {
    footer p, footer i {
        padding: 1rem 2rem;
    }
}

@media (max-width: 35.5em) {
    footer p i, footer i i {
        padding: 0;
    }
}

footer .link-wrapper {
    margin: 2rem 0;
}

    footer .link-wrapper:not(.social) ul li:after {
        display: none;
    }

@media (max-width: 48em) {
    footer .link-wrapper:not(.social) ul {
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

        footer .link-wrapper:not(.social) ul li {
            text-align: center;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            padding: 1rem;
        }

            footer .link-wrapper:not(.social) ul li:after {
                content: '';
                border-right: 1px solid;
                height: 50%;
                top: 50%;
                -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
                right: 0;
            }

            footer .link-wrapper:not(.social) ul li a {
                text-align: center;
            }
}

@media (max-width: 35.5em) {
    footer .link-wrapper:not(.social) ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        footer .link-wrapper:not(.social) ul li {
            padding: .5rem 0;
        }

            footer .link-wrapper:not(.social) ul li:after {
                display: none;
            }
}

footer .link-wrapper ul {
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    footer .link-wrapper ul li {
        list-style-type: none;
        padding: 0 2rem;
        position: relative;
    }

@media (max-width: 64em) {
    footer .link-wrapper ul li {
        padding: 0 1.5rem;
    }
}

footer .link-wrapper ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.4rem;
    -webkit-transition: color .3s ease-out;
    transition: color .3s ease-out;
}

    footer .link-wrapper ul li a:hover {
        color: #F06C26;
    }

footer .link-wrapper.social {
    padding-top: 1rem;
}

    footer .link-wrapper.social ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

        footer .link-wrapper.social ul li {
            padding: 0 1rem;
        }

            footer .link-wrapper.social ul li.share {
                padding-right: 2rem;
            }

@media (max-width: 35.5em) {
    footer .link-wrapper.social ul li.share {
        padding: 1rem 0;
        width: 100%;
    }
}

footer .link-wrapper.social ul li.share:after {
    right: 0.75rem;
}

@media (max-width: 35.5em) {
    footer .link-wrapper.social ul li.share:after {
        display: none;
    }
}

footer .link-wrapper.social ul li:not(:first-of-type):after {
    display: none;
}

footer .link-wrapper.social ul li.share a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1rem;
}

footer .link-wrapper.social ul li.share .icon {
    margin-right: 1rem;
}

footer .copyright b {
    margin-right: 2rem;
}

@media (max-width: 35.5em) {
    footer .copyright b {
        margin-right: 0;
        display: block;
    }
}

@-webkit-keyframes fadein {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadein {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes float {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    50% {
        -webkit-transform: translate3d(0, 20%, 0);
        transform: translate3d(0, 20%, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes float {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    50% {
        -webkit-transform: translate3d(0, 20%, 0);
        transform: translate3d(0, 20%, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
