/*TODO: REFACTOR CSS REMOVE DUPLICATE CLASSES

/*! HTML5 Boilerplate v5.2.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Imagesdayspa's custom styles
   ========================================================================== */
body {
    font-family: 'Muli', sans-serif;
}

p, ul, ol {
    font-size: 16px;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    color: #333;
    cursor: pointer;
}

.btn-submit,
textarea,
input,
.btn,
.mani-btn {
    border-radius: 0px;
}
/*
ul, ol {
    list-style-type: none;
    margin: 0;
}*/

/* buttons */
.mani-btn {
    display: inline-block;
    color: #fff;
    padding: 13px 24px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.mani-btn:hover { color: #fff; }

.not-home-page {
    padding-top: 20px;
    padding-bottom: 40px;
}

/* transition */
#menu li a,
.mani-btn,
footer .footer-block p a,
.special-container .request-appointment a,
.header .box .socialIcons a i {
    -webkit-transition: all .08s linear 0s;
    -o-transition: all .08s linear 0s;
    transition: all .08s linear 0s;
}

input, select, .btn, .mani-btn, textarea { box-shadow: none; }

.right { float: right; }

.absFullWidth {
    position: absolute;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* header style */

.topbar-left {
    font-size: 13px;
    padding: 9px;
}

    .topbar-left a {
        display: block;
        padding: 9px 0px;
    }

.header {
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
}

    .header #burger,
    .header.affix .box > .socialIcons {
        opacity: 0;
        visibility: hidden;
        min-width: 115px;
    }

    .header.affix #burger {
        opacity: 1;
        visibility: visible;
    }

    @media only screen and (min-width: 767px) {
        .header.affix-top .header-menu-social-icons {
            opacity: 0;
            visibility: hidden;
        }
    }

    #burger {
        color: #fff;
        cursor: pointer;
        font-size: 16px;
        height: 100%;
        left: 0;
        line-height: 35px;
        padding: 15px 10px 7px 15px;
        position: absolute;
        right: 0;
        text-align: left;
        top: 0;
        z-index: 1;
    }

        #burger:hover,
        #burger.open {
            background: #90905B;
        }

        #burger i {
            float: right;
            top: 6px;
            right: 5px;
            width: 26px;
            height: 23px;
            position: relative;
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            transform: rotate(0deg);
            -webkit-transition: .5s ease-in-out;
            -moz-transition: .5s ease-in-out;
            -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
        }

            #burger i span {
                display: block;
                position: absolute;
                height: 4px;
                width: 100%;
                background: #ffffff;
                border-radius: 9px;
                opacity: 1;
                left: 0;
                -webkit-transform: rotate(0deg);
                -moz-transform: rotate(0deg);
                -o-transform: rotate(0deg);
                transform: rotate(0deg);
                -webkit-transition: .25s ease-in-out;
                -moz-transition: .25s ease-in-out;
                -o-transition: .25s ease-in-out;
                transition: .25s ease-in-out;
            }

            #burger i span:nth-child(1) {
                top: -1px;
                -webkit-transform-origin: left center;
                -moz-transform-origin: left center;
                -o-transform-origin: left center;
                transform-origin: left center;
            }

            #burger i span:nth-child(2) {
                top: 9px;
                -webkit-transform-origin: left center;
                -moz-transform-origin: left center;
                -o-transform-origin: left center;
                transform-origin: left center;
            }

            #burger i span:nth-child(3) {
                top: 19px;
                -webkit-transform-origin: left center;
                -moz-transform-origin: left center;
                -o-transform-origin: left center;
                transform-origin: left center;
            }

            #burger.open i span:nth-child(1) {
                -webkit-transform: rotate(45deg);
                -moz-transform: rotate(45deg);
                -o-transform: rotate(45deg);
                transform: rotate(45deg);
                top: 1px;
                left: 4px;
            }

            #burger.open i span:nth-child(2) {
                width: 0%;
                opacity: 0;
            }
            #burger.open i span:nth-child(3) {
                -webkit-transform: rotate(-45deg);
                -moz-transform: rotate(-45deg);
                -o-transform: rotate(-45deg);
                transform: rotate(-45deg);
                top: 19px;
                left: 4px;
            }

    #menuTop {
        float: none;
        margin: 0;
    }

        @media(max-width: 767px) {
            #menuTop li:first-child a {
                padding-top: 30px;
            }
            #menuTop li a {
                text-align: center;
            }
        }

    .header-menu-social-icons {
        display: none;
        position: absolute;
        right: 0;
        width: 100%;
        background: #cfa5af;
        top: 65px;
    }
        /*header.affix-top .header-menu-social-icons { display: none !important; }*/

        .header-menu-social-icons li {
            display: block;
            width: 100%;
        }

        .header-menu-social-icons li a {
            width: 100%;
            line-height: 1.7rem;
            padding: 10px 15px;
            display: block;
            color: #fff;
            font-size: 18px;
        }
            .header-menu-social-icons li a:hover {
                background: #d991a3;
            }

        .header-menu-social-icons #menuTop {
            border-bottom: 1px solid rgba(255,255,255,0.25);
            border-top: 1px solid rgba(255,255,255,0.25);
        }

        .header-menu-social-icons .icons-container {
            display: block !important;
            text-align: center;
            padding: 5px 10px;
        }

        .header-menu-social-icons .icons-container a {
            margin: 5px 0;
        }

            @media(max-width: 767px) {
                .header-menu-social-icons {
                    position: fixed;
                    top: 52px;
                }
            }


    .header span {
        text-transform: uppercase;
    }

    .callus {
        padding: 9px 0;
    }
        @media only screen and (max-width: 400px) {
            .callus {
                font-size: 12px;
            }
        }

        .callus .phoneNo {
            letter-spacing: 1px;
        }

    .view-cart {
        padding: 9px 0;
        float: right;
        margin-left: 35px;
        margin-right: 155px;
    }
        .view-cart span {
            letter-spacing: 1px;
        }
            .view-cart .nv-icon-cart { padding-left: 7px; font-size: 16px; }

            @media only screen and (max-width: 767px) {
                .view-cart {
                    padding: 14px 0;
                }
                .view-cart .nv-icon-cart { font-size: 20px; }
            }


    .header .right {
        position: relative;
    }

        .header .box {
            padding: 15px;
            position: absolute;
            right: 0;
        }

            .header .box .socialIcons a i {
                font-size: 19px;
                margin-right: 5px;
                border: none;
            }

            .header .box .socialIcons a:last-child i {
                margin-right: 0px;
            }

/*navigation styles*/

.navigation {
    padding-top: 100px;
    margin-bottom: -1px;
}

    .header-logo {
        padding: 0;
    }

    .header-menu-container {
        padding-right: 0;
        float: right
    }

        @media only screen and (max-width: 767px) {
            .header-menu-container {
                padding-bottom: 25px;
                padding-left: 0;
            }
        }

        .header-logo img {
            max-width: 100%;
        }
            .header-logo .navbar-brand { padding: 0; }

            @media only screen and (max-width: 767px) {
                .header-logo .navbar-brand {
                    line-height: 50px;
                    vertical-align: middle;
                }
                .header-logo img {
                    display: block;
                    margin: auto;
                }
            }

    #navbar {
        padding-left: 0px;
        padding-right: 0px;
    }

        @media only screen and (max-width: 767px) {
            #navbar {
                padding-left: 15px;
                padding-right: 15px;
            }
        }

        #menu.nav.navbar-nav {
            line-height: 60px;
            font-size: 0;
            padding-left: 0px;
            float: right;
            margin: 0px;
        }

            @media only screen and (max-width: 767px) {
                #menu.nav.navbar-nav {
                    float: none;
                    margin-top: 25px;
                    width: 100%;
                    margin: 7px;
                }
            }

        #menu.nav.navbar-nav li {
            display: inline-block;
            font-size: 16px;
            text-transform: uppercase;
        }

            @media only screen and (max-width: 1300px) {
                #menu.nav.navbar-nav li.dropdown:last-child .dropdown-menu, #menu.nav.navbar-nav li.dropdown:nth-last-child(-n+2) .dropdown-menu {
                    left: auto;
                    right: 0px;
                }
            }

            @media only screen and (max-width: 991px) {
                #menu.nav.navbar-nav li.dropdown:last-child .dropdown-menu, #menu.nav.navbar-nav li.dropdown:nth-last-child(-n+2) .dropdown-menu {
                    left: 0px;
                    right: auto;
                }
            }

            @media only screen and (max-width: 991px) {
                #menu.nav.navbar-nav li {
                    font-size: 12px;
                }
            }

            @media only screen and (max-width: 767px) {
                #menu.nav.navbar-nav li {
                    display: block;
                    text-align: center;
                    width: 100%;
                    font-size: 14px;
                }
            }

        #menu.nav.navbar-nav li:last-child {
            margin-right: 0px;
        }

            #menu.nav.navbar-nav li a {
                text-decoration: none;
                padding: 0px 15px 15px;
                display: inline-block;
                line-height: 60px;
            }

                @media only screen and (max-width: 1200px) {
                    #menu.nav.navbar-nav li a {
                        padding: 0px 10px 10px;
                    }
                }

                @media only screen and (max-width: 991px) {
                    #menu.nav.navbar-nav li a {
                        line-height: 45px;
                    }
                }

                @media only screen and (max-width: 767px) {
                    #menu.nav.navbar-nav li a {
                        width: 100%;
                        padding-bottom: 0px;
                        display: block;
                    }
                }

            .dropdown { position: relative; }

            .dropdown .dropdown-menu {
                position: absolute;
                top: 100%;
                left: 0;
                float: left;
                box-shadow: none;
                max-height: 500px;
                overflow: auto;
                min-width: 220px;
                padding-top: 0px;
                border-radius: 0px;
                border: 0;
            }

                .dropdown:hover ul.dropdown-menu,
                .dropdown:focus ul.dropdown-menu {
                    display: block;
                    border: none;
                    padding-bottom: 0px;

                }

                    #menu.nav.navbar-nav > .dropdown:hover ul.dropdown-menu > li,
                    #menu.nav.navbar-nav > .dropdown:focus ul.dropdown-menu > li {
                        display: block;
                    }

                        #menu.nav.navbar-nav > .dropdown:hover ul.dropdown-menu > li > a,
                        #menu.nav.navbar-nav > .dropdown:focus ul.dropdown-menu > li > a {
                            display: block;
                            font-size: 14px;
                            font-weight: 400;
                            padding: 10px 15px;
                            letter-spacing: 1.25px;
                            white-space: pre-wrap;
                            line-height: 35px;
                        }

                            @media only screen and (max-width: 1190px) {
                                #menu.nav.navbar-nav > .dropdown:hover ul.dropdown-menu > li > a,
                                #menu.nav.navbar-nav > .dropdown:focus ul.dropdown-menu > li > a {
                                    font-size: 12px;
                                }
                            }

                            @media only screen and (max-width: 767px) {
                                .dropdown ul.dropdown-menu,
                                .dropdown:hover ul.dropdown-menu,
                                .dropdown:focus ul.dropdown-menu {
                                    display: none;

                                }
                            }

                            #menu.nav.navbar-nav > .dropdown:hover ul.dropdown-menu > li > a:hover,
                            #menu.nav.navbar-nav > .dropdown:hover ul.dropdown-menu > li > a:focus,
                            #menu.nav.navbar-nav > .dropdown:hover ul.dropdown-menu > li.activated > a,
                            #menu.nav.navbar-nav > .dropdown:hover ul.dropdown-menu > li.show-children > a {
                                background-color: #FFFFFF;
                                color: #333333;
                            }

        .navbar-toggle {
            margin-right: 0px;
        }

        @media only screen and (max-width: 767px) {
            header.affix-top .box,
            header.affix .box {
                height: 65px;
                width: 160px;
            }

            header.affix-top #burger {
                opacity: 1;
                visibility: visible;
            }

            header.affix-top .box > .socialIcons {
                visibility: hidden;
            }

            .header-logo .navbar-toggle {
                display: none;
            }
        }

/* Main Slider */
.main-slider .bx-viewport {
    border: none;
    left: 0;
    box-shadow: none;
}
    @media only screen and (min-width: 285px) {
        .main-slider .bx-viewport {
            height: 100% !important;
        }
    }

    .main-slider .bxslider, .main-slider .bxslider li {
        list-style-type: none;
        margin-left: 0;
        padding-left: 0;
    }

    .main-slider .bxslider li {
        background-position: center top !important;
        background-size: cover !important;
    }

    .main-slider .bxslider,
    .main-slider .bxslider li,
    .main-slider .bxslider li .container {
        height: 100%;
    }

    .main-slider .bxslider li .container {
        padding: 0 6%;
        /*position: relative;*/
    }
        @media only screen and (max-width: 1200px) {
            /* jumbotron slider */
            .main-slider .bxslider li .container {
                padding: 0;
            }
        }

        @media only screen and (max-width: 767px) {
            .main-slider .bxslider li .container {
                padding: 0 6%;
            }
        }

        .main-slider .bxslider li .container .slider-cta {
            position: absolute;
            width: 100%;
            top: 30%;
        }

            @media only screen and (max-width: 767px) {
                .main-slider .bxslider li .container .slider-cta {
                    top: 25%;
                }
            }

            .main-slider .bxslider li .container .slider-cta h1 {
                margin-top: 0;
                margin-bottom: 20px;
                text-shadow: 0px 0px 21px rgba(0, 0, 0, 0.51);
                font-size: 65px;
                font-weight: 300;
            }

                @media only screen and (max-width: 992px) {
                    /* jumbotron slider */
                    .main-slider .bxslider li .container .slider-cta h1 {
                        font-size: 55px;
                    }
                }

                @media only screen and (max-width: 767px) {
                    .main-slider .bxslider li .container .slider-cta h1 {
                        font-size: 40px;
                    }
                }

                @media only screen and (max-width: 500px) {
                     .main-slider .bxslider li .container .slider-cta h1 {
                        font-size: 35px;
                    }
                }
                @media only screen and (max-width: 400px) {
                    .main-slider .bxslider li .container .slider-cta h1 {
                        font-size: 30px;
                    }
                }

            .main-slider .bxslider li .container .slider-cta .second-line {
                margin-left: 5%;
            }
                @media only screen and (max-width: 500px) {
                    .main-slider .bxslider li .container .slider-cta .second-line {
                        margin-left: 0;
                    }
                }


            .main-slider .bxslider li .container .slider-cta .mani-btn {
                margin-top: 10px;
            }

                .main-slider .bxslider li .container .slider-cta .mani-btn p {
                    margin: 0;
                }

.main-slider .bx-pager {
    padding-top: 0px;
    bottom: 30px;
}

.main-slider .bx-wrapper {
    margin-bottom: 0;
}
    .bx-wrapper img {
        min-width: 100%;
    }

    .bx-wrapper .bx-pager.bx-default-pager a {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        border: 2px solid #fff;
    }

/* Banner Container */
.banner-container {
    padding: 60px 0;
    text-align: center;
}

    .banner-container h1 {
        margin-top: 0;
        font-size: 40px;
    }

    .banner-container p { margin-bottom: 0; }

    .banner-container p, .banner-container,
    .banner-container li {
        font-size: 20px;
    }

/* Video Banner Styling */
.fullscreen-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
}

.fullscreen-bg_video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
}

/* Testmonials Banner Styling */
.main-slider .bxslider li .container .slider-cta.testimonial {
    background-color: rgba(36, 36, 21, 0.5);
    max-width: 620px;
    padding: 20px;
}
    .main-slider .bxslider li .container .slider-cta.testimonial .image-container {
        max-width: 100px;
        display: inline;
        float: left;
        margin-right: 20px;
    }
    .main-slider .bxslider li .container .slider-cta.testimonial h1.intro {
        font-size: 48px;
        font-weight: 600;
        display: inline;
    }

    .main-slider .bxslider li .container .slider-cta.testimonial .body {
        display: block;
        font-size: 18px;
        font-weight: 400;
        line-height: 23px;
        color: #fff;
        padding-top: 20px;
    }

/* Main Content */
@media all and (max-width: 990px) {
    .container .mediaItems .imageContainer {
        text-align: center;
    }
}

@media all and (max-width: 768px) {
    .container .mediaItems .imageContainer {
        text-align: center;
    }

    .content img {
        max-width: 100%;
    }
}

/* Services Container */
.service-container {
    padding: 30px 0;
}

.service-container  h1 {
    font-size: 35px;
    color: #614534;
    font-weight: 600;
}

    .service-container .service-block {
        margin-bottom: 30px;
    }

    .service-container .service-image img {
        width: 100%;
        height: 100%;
    }

    .service-container  .service-desc {
        padding: 25px 15px 40px;
        position: relative;
        min-height: 270px;
        margin-top: -1px; /* Resolves image rounding issue that leaves a white gap on retina display and 1200>992 display */
    }

        .service-container  .service-desc h4 {
            font-size: 18px;
            margin-top: 0;
            font-weight: 600;
        }

        .service-container  .service-desc p {
            margin-bottom: 20px;
        }

        .service-container  .service-desc .service-btn {
            padding: 10px 20px;
            position: absolute;
            left: 0;
            bottom: -15px;
            width: 100%;
        }

    /* Service Boxes */
    @media all and (max-width: 940px) {
        .container .service-block:nth-child(3n+1) {
            clear: left;
        }
    }

/* Featured Products */
.featured-products-container {
    padding: 30px 0;
}

    .featured-products-container h1 {
        font-size: 35px;
        color: #614534;
        font-weight: 600;
    }

    .featured-products-container .featured-block {
        margin-bottom: 30px;
        margin-top: 40px;
    }

    .featured-products-container  .featured-image {
        height: auto;
        width: auto;
        max-width: 100%;
        max-height: 200px;
        vertical-align: middle;
    }
        .featured-products-container a.img-link {
            display: block;
            height: 200px;
            vertical-align: middle;
            text-align: center;
            margin: 10px;
        }

    .featured-products-container  .featured-desc {
        padding-top: 25px;
        padding-bottom: 40px;
        position: relative;
        margin-top: -1px; /* Resolves image rounding issue that leaves a white gap on retina display and 1200>992 display */
        min-height: 140px;
    }

        .featured-products-container .featured-desc h4,
        .featured-products-container .featured-desc .title {
            font-size: 18px;
            font-weight: 600;
            position: absolute;
            bottom: 85px;
            width: 100%;
            text-align: center;
            left: 0;
            right: 0;
            padding: 0 15px;
        }

        .featured-products-container .featured-desc p {
            margin-bottom: 0px;
            position: absolute;
            bottom: 35px;
            width: 100%;
            text-align: center;
        }

        .featured-products-container .featured-desc .featured-btn {
            padding: 10px 20px;
            position: absolute;
            left: 0;
            bottom: -25px;
            width: 100%;
        }


/* Special Container */

.special-container {
    padding: 30px 0;
    /*color: #fff;*/
}

    .special-container h4 {
        padding: 0 10%;
        line-height: 2rem;
        font-size: 20px;
        margin-bottom: 30px;
    }

        .special-container .container-fluid { padding: 0; }

        .special-container .container-fluid .hoveritem {
            margin: 0;
            flex: 1;
            max-width: 100%;
        }

            .special-container .container-fluid .hoveritem img {
                width: 100%;
            }

            @media(max-width: 768px) {
                .special-container .container-fluid .special-blocks {
                    display: block;
                }

                    .special-container .container-fluid .hoveritem {
                        flex-direction: column;
                        max-width: 350px;
                        margin: auto auto 10px;
                    }
            }

/* Specials Call to Actions */
    .hoveritem {
        max-width: 350px;
        height: 100%;
        font-size: 12px;
        display: block;
        position: relative;
        overflow: hidden;
        line-height: 0;
        margin: auto;
        margin-bottom: 10px;
    }

        .hoveritem .link {
            display: block;
            height: 100%;
            width: 100%;
        }
            .hoveritem img {
                position: relative;
                z-index: 4;
                max-width: 100%;
                -webkit-transform-origin: 50% 50%;
                -moz-transform-origin: 50% 50%;
                -ms-transform-origin: 50% 50%;
                -o-transform-origin: 50% 50%;
                transform-origin: 50% 50%;
                -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.2s ease-out;
                -moz-transition: opacity 0.3s ease-out, -moz-transform 0.2s ease-out;
                -o-transition: opacity 0.3s ease-out, -o-transform 0.2s ease-out;
                transition: opacity 0.3s ease-out, transform 0.2s ease-out;
            }
            .hovercontent {
                display: inline-block;
                color: #fff;
                font-size: 25px;
                padding: 30px 40px;
                position: absolute;
                z-index: 5;
                text-align: center;
                width: 100%;
                height: 100%;
                background: rgba(207,165,175,0.95);
                opacity: 0;
                line-height: 30px;
                filter: alpha(opacity=0);
                -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
                -moz-transform: scale3d(1.3, 1.3, 1) translate3d(0, 10%, 0);
                -o-transform: scale3d(1.3, 1.3, 1) translate3d(0, 10%, 0);
                -webkit-transform: scale3d(1.3, 1.3, 1) translate3d(0, 10%, 0);
                transform: scale3d(1.3, 1.3, 1) translate3d(0,10%,0);

                -webkit-transition: opacity 0.2s ease-out, -webkit-transform 0.2s ease-out;
                -moz-transition: opacity 0.2s ease-out, -moz-transform 0.2s ease-out;
                -o-transition: opacity 0.2s ease-out, -o-transform 0.2s ease-out;
                transition: opacity 0.2s ease-out, transform 0.2s ease-out;
            }

            .hovercontent span { display: block; }
            .hovercontent span.title {
                margin: 30px 10px;
                font-size: 35px;
                line-height: 35px;
            }

            @media(max-width: 1200px) {
                .hovercontent {
                    padding: 10px 40px;
                }
            }

            @media(max-width: 992px) and (min-width: 768px), (max-width: 350px) {
                .hovercontent { padding: 0; }
                    .hovercontent h2 { font-size: 20px; }
                    .hovercontent h3 { font-size: 16px; }
                    .hovercontent p { font-size: 12px; }
            }


                .hoveritem .link:hover .hovercontent {
                    opacity: 1;
                    filter: alpha(opacity=100);
                    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
                    -moz-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
                    -o-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
                    -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
                    transform: scale3d(1, 1, 1) translate3d(0,0,0);
                }


/* Testimonial Container */

.testimonials-container {
    padding: 30px 0 60px;
}

    .testimonials-container h1 {
        font-size: 35px;
    }

    .testimonials-container p {
        font-size: 18px;
    }

    .testimonials-body {
        margin:0 10%;
        color: #fff;
        padding: 40px 60px 25px;
        position: relative;
    }

        .testimonials-body .bx-wrapper { margin-bottom: 0; }

            .testimonials-body .bx-viewport {
                background: none;
                border: none;
                box-shadow: none;
            }

        @media only screen and (max-width: 680px) {
            .testimonials-body {
                padding: 30px;
                margin: 0 5%;
            }
        }

        .testimonials-slider {
            list-style-type: none;
            padding-left: 0;
            margin-left: 0;
        }

        .testimonials-body a.mani-btn {
            position: absolute;
            right: 15px;
            bottom: -8px;
        }
            @media only screen and (max-width: 680px) {
                .testimonials-body a.mani-btn {
                    bottom: -20px;
                }
            }

    .testimonials-body .bx-wrapper .bx-pager, .testimonials-body .bx-wrapper .bx-controls-auto {
        position: initial;
    }

/* Testimonials Page */
.testimonial {
    padding-bottom: 20px;
}

/* Our Services */

    svg {
        vertical-align: middle;
    }

    .feature-services {
        padding: 30px 0px 70px 0px;
        background-color: #ffffff;
        color: #FFF;
        text-align: center;
    }
        .feature-services h2 {
            color:#000;
            margin-top: 30px;
        }

        .feature-services p {
            color:#FFF;
        }

        .servicesImg {
            max-width: 960px;
            margin:0 auto;
        }

            .servicesImg img {
                width: 100%;
            }

        .feature-services .servicesContent {
            margin: auto;
            padding-top: 60px;
            max-width: 680px;
            color: #525252;
        }

            .servicesContent ul li:before {
                content: ' - ';
            }

            .servicesContent ul li {
                list-style: none;
                font-size: 14px;
                font-weight: 400;
                letter-spacing: 1px;
            }
            .servicesContent ul li a {
                color: inherit;
            }
                .servicesContent ul li a:hover {
                    text-decoration: none;
                }

        .feature-services .tileBox {
            text-align: left;
            margin-top: 30px;
            display: flex;
        }
            @media (max-width: 991px) {
                .feature-services .tileBox {
                    display: block;
                }
            }

            .feature-services .tileBox .circleBox {
                text-align: center;
                padding: 0px 15px;
                position: relative;
            }

            .flexbox {
                display: flex;
            }

            .feature-services .tileBox .circleBox.flexbox {
                flex-direction: column;
            }

                .flex {
                    flex: auto;
                    display: initial;
                }

                    .flex-child {
                        display: block;
                    }

                .svgImage {
                    margin: auto;
                    width: 126px;
                    height: 126px;
                    fill: #ffffff;
                    color: #ffffff;
                    padding: 30px;
                    background-color: #621C70;
                    border-radius: 100%;
                    position: relative;
                    z-index: 10;
                    cursor: pointer;
                    -webkit-transition: color 0.3s;
                    -moz-transition: color 0.3s;
                    transition: color 0.3s;
                }

                    .svgImage:hover {
                        background-color: #FFF;
                        fill: #732A82;
                        color: #732A82;
                    }
                        .svgImage:hover:after {
                            -webkit-transform: scale(1);
                            -moz-transform: scale(1);
                            -ms-transform: scale(1);
                            transform: scale(1);
                            opacity: 1;
                        }

                    .svgImage:after {
                        pointer-events: none;
                        position: absolute;
                        width: 100%;
                        height: 100%;
                        border-radius: 100%;
                        content: '';
                        -webkit-box-sizing: border-box;
                        -moz-box-sizing: border-box;
                        box-sizing: border-box;
                        top: 0px;
                        left: 0px;
                        padding: 2px;
                        z-index: -1;
                        background-color: #FFF;
                        -webkit-transition: -webkit-transform 0.2s, opacity 0.3s;
                        -moz-transition: -moz-transform 0.2s, opacity 0.3s;
                        transition: transform 0.2s, opacity 0.3s;
                        -webkit-transform: scale(1.3);
                        -moz-transform: scale(1.3);
                        -ms-transform: scale(1.3);
                        transform: scale(1.3);
                        opacity: 0;
                    }

                .circleBoxTop,
                .circleBoxBottom {
                    float: left;
                    clear: none;
                    margin-top: 32px;
                }

                @media(max-width: 767px) {
                    .circleBoxTop,
                    .circleBoxBottom {
                        margin: 10px auto;
                        float: none;
                        width: 100%;
                    }
                }

                .circleBoxTop {
                    height: 126px;
                }

                .circleBoxBottom {
                    margin-top: 32px;
                }
                    .circleBoxBottom h4 {
                        color: #FFF;
                        text-transform: uppercase;
                        padding-bottom: 15px;
                    }

                    .circleBoxBottom p {
                        font-size: 16px;
                    }

                /* Style a button in the circle box */
                /*
                    .circleBox .mani-btn {
                        align-self: center;
                        margin-top: 15px;
                    }
                */


/* Map Container */

.map-container iframe {
    width: 100%;
    pointer-events: none;
}

/* Newsletter */

.newsletter {
    padding: 20px 40px 30px;
    text-align: center;
    color: #fff;
}
    @media(max-width:767px) {
        .newsletter {
            padding: 20px 15px 30px;
        }
    }

    .newsletter h2 {
        display: inline-block;
        padding-right: 20px;
        padding-top: 5px;
        vertical-align: bottom;
    }
        @media(max-width: 1200px) {
            .newsletter h2 {
                display: block;
            }
        }

    .newsletter input {
        width: 400px;
        height: 47px;
        padding: 10px;
        margin-right: 8px;
    }

    .newsletter .mani-btn {
        border: none;
    }

    @media(max-width:767px) {
        .newsletter input,
        .newsletter .mani-btn {
            width: 100%;
            margin: 5px auto;
        }
    }


/* Children Pages */

.children {
}
    .children .child {
        padding-left: 0px;
        padding: 15px;
    }
        .children .child a {
            display: block;
        }
            .children .child .intro {
                float: left;
                background: #f5f5f5;
                padding-top: 15px;
                padding-bottom: 15px;
                width: 100%;
            }

                .children .child .intro h4 {
                    border-left: 6px solid green;
                    margin-bottom: 5px;
                    margin-top: 5px;
                    padding: 15px 10px;
                    font-size: 18px;
                    text-transform: uppercase;
                }

                .children .child .intro > div {
                    padding-left: 16px;
                    padding-right: 16px;
                    font-size: 16px;
                }


            .children .child img {
                width: 100%;
                overflow: hidden;
            }

/* Gallery Plugin */

.gallery-image {

}
    .gallery-image .gal-image {
        display: block;
        min-height: 200px;
        margin-bottom: 20px;
        position: relative;
    }
        .gallery-image .gal-image img {
            width: 100%;
        }

        .gal-image .hover-state {
            display: none;
            position: absolute;
            background-color: rgba(0, 0, 0, 0.6);
            top: 0;
            bottom: 0;
            right: 0;
            left: 0;
        }
            .gal-image:hover .hover-state,
            .gal-image:focus .hover-state {
                display: block;
            }

            .gal-image .hover-state i {
                position: absolute;
                top: 48%;
                left: 48%;
                color: #fff;
                font-size: 30px;
            }

/* Gallery Block */
.gallery.block {
    background-color: #f5f5f5;
    padding-bottom: 30px;
}
    .gallery.block .content {
        text-align: center;
        padding: 30px 0px;
    }

    .gallery.block .mani-btn {
        margin-top: 30px;
        float: right;
    }

/* Logos Block */

.logo-block {
    padding: 20px 0px;
    min-height: 130px;
    position: relative;
}
    .logo-container {
        position: relative;
        min-height: 102px;
        display: block;
    }
        .logo {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            max-width: 100%;
        }

.greyscale {
    -webkit-filter: grayscale(1);
    -webkit-filter: grayscale(100%);
    filter: gray;
    filter: grayscale(100%);
}

    .greyscale:focus,
    .greyscale:hover {
        -webkit-filter: grayscale(0);
        -webkit-filter: grayscale(0);
        filter: none;
        filter: grayscale(0);
    }



/* footer */
footer {
    padding: 40px 0;
}

    footer > .container { padding-top: 10px; }

    footer .footer-block { position: relative; }
        @media only screen and (max-width: 992px) {
            footer .footer-block {
                text-align: center;
                margin: 10px 0;
            }
        }

    footer .footer-block i.nv-icon {
        font-size: 27px;
        position: absolute;
    }
    footer .footer-block .socialIcons { margin-top: -10px; }
        footer .footer-block .socialIcons a:focus i {
            color: #fff;
        }
        footer .footer-block .socialIcons i {
            margin-bottom: 8px;
        }

    footer .footer-block p {
        display: inline-block;
        color: #fff;
        font-size: 18px;
        margin-bottom: 0;
        padding-left: 40px;
    }
        @media only screen and (max-width: 1200px) {
            /* footer */
            footer .footer-block p {
                font-size: 15px;
            }
        }

        @media only screen and (max-width: 992px) {
            /* footer */
            footer .footer-block p {
                font-size: 18px;
            }
        }

        footer .footer-block p a {
            color: #fff;
        }

        #footer-menu {
            list-style: none;
            padding-left: 0px;
        }
            #footer-menu li {
                width: 50%;
                float: left;
            }

                #footer-menu li a {
                    color: #fff;
                    font-size: 15px;
                    text-transform: uppercase;
                    font-weight: 300;
                    line-height: 30px;
                }

                    #footer-menu li a:hover {
                        color: #ABB402;
                    }


/* Footer bottom */

.footer-bottom {
    padding: 20px 0;
}
    @media only screen and (max-width: 992px) {
        footer .footer-block:last-child {
            margin-bottom: 0;
            margin-top: 25px;
        }
    }
/* Social Icons */

div.socialIcons {
    text-align: right;
}
    @media only screen and (max-width: 992px) {
        footer div.socialIcons {
            text-align: center;
            margin: 10px 0;
        }
    }

    .socialIcons > a {
        display: inline-block;
    }

    .socialIcons .nv-icon,
    .socialIcons .social-icon {
        border-radius: 25px;
        border: 2px solid #fff;
        color: #ffffff;
        margin-right: 5px;
        font-size: 17px;
        padding: 8px;
    }
        .socialIcons a:hover .nv-icon,
        .socialIcons a:hover .social-icon {
            background-color: #ffffff;
        }

/* Social Icon Effects from http://tympanus.net/codrops/2013/05/30/simple-icon-hover-effects/ */
.hi-icon-wrap {
    text-align: center;
}

.hi-icon {
    display: inline-block;
    cursor: pointer;
    text-align: center;
    position: relative;
    z-index: 1;
    color: #fff;
}

.hi-icon:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: '';
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

    /* Effect 3 */
    .hi-icon-effect-3 .hi-icon {
        -webkit-transition: color 0.3s;
        -moz-transition: color 0.3s;
        transition: color 0.3s;
    }

    .hi-icon-effect-3 .hi-icon:after {
        top: -2px;
        left: -2px;
        padding: 2px;
        z-index: -1;
        background: #fff;
        -webkit-transition: -webkit-transform 0.2s, opacity 0.3s;
        -moz-transition: -moz-transform 0.2s, opacity 0.3s;
        transition: transform 0.2s, opacity 0.3s;
    }
        /* Effect 3b */
            .hi-icon-effect-3b .hi-icon {
                color: #fff;
                font-size: 24px;
            }

            .hi-icon-effect-3b .hi-icon:after {
                -webkit-transform: scale(1.3);
                -moz-transform: scale(1.3);
                -ms-transform: scale(1.3);
                transform: scale(1.3);
                opacity: 0;
            }

            .hi-icon-effect-3b .hi-icon:hover:after {
                -webkit-transform: scale(1);
                -moz-transform: scale(1);
                -ms-transform: scale(1);
                transform: scale(1);
                opacity: 1;
            }


/* Breadcrumbs */
.bread-container {
    height: 200px;
}

    .bread-container .text-container {
        padding: 20px 0 25px 0;
        background: rgba(0,0,0,0.75);
        color: #fff;
    }
        .bread-container .text-container h1 {
            margin-top: 10px;
            padding-top: 0;
            margin-bottom: 5px;
            padding-bottom: 0;
        }

        .bread-container ul {
            padding: 0;
        }

            .bread-container ul li {
                display: inline-block;
                margin-right: 15px;
            }

                .bread-container ul li a {
                    color: #fff;
                    position: relative;
                }

                .bread-container ul li a:before {
                    position: absolute;
                    content: '|';
                    right: -11px;
                }

                .bread-container ul li:last-child a:before {
                    content: '';
                }

/*
 * About Us
 */

.primaryContent {

}
    .imageContainer {
        text-align: center;
        box-sizing: border-box;
        padding: 20px;
        margin-bottom: 20px;
    }
        @media (min-width: 768px) {
            .imageContainer {
                text-align: right;
                padding-right: 0;
            }
        }

        .imageContainer img {
            max-width: 100%;
        }

/*
 * Contact Us
 */
.contact-us-page h3 {
  margin: 0;
}

.contact-form-container {
    padding-top: 20px;
}
    .contact-form-container .form-controls:first-child {
        height: 0;
    }

    .contact-form-container .form-controls:last-child {
        margin-top: 25px;
    }

    .contact-form-container label {
        display: none;
    }

    .contact-form-container input,
    .contact-form-container textarea,
    .form-control,
    .checkout.form-control {
        margin-bottom: 10px;
        font-size: 13px;
        height: 40px;
        opacity: 0.85;
        border-radius: 0px;
    }

    .contact-form-container input.mani-btn { opacity: 1; }

    .contact-form-container textarea {
        height: 200px;
    }

    .contact-form-container .btn-submit,
    .checkout .btn-submit {
        color: #fff;
        text-transform: uppercase;
        font-size: 16px;
        display: inline-block;
        height: 44px;
        padding: 0 23px;
    }

.contact-us-page iframe {
  width: 100%;
  margin: 20px 0;
}
    .contact-us-page .captcha iframe {
        margin: auto;
    }


/*
 * Product Category
 */
    .categories {
        margin-bottom: 10px;
    }

    #productcategories li {
        position: relative;
    }

        #productcategories li ul {
            display: none;
            padding-left: 15px;
        }

        .product-category-arrow {
            content: '';
            background-image: url(/assets/scl/v1/images/chevron-small-down.svg);
            background-repeat: no-repeat;
            position: absolute;
            right: 0;
            top: 5px;
            width: 20px;
            height: 20px;
            cursor: pointer;
            -webkit-transition: all .15s linear 0s;
            -o-transition: all .15s linear 0s;
            transition: all .15s linear 0s;
        }

        .direction-down {
            -webkit-transform: rotate(180deg);
            -moz-transform: rotate(180deg);
            -o-transform: rotate(180deg);
            transform: rotate(180deg);
        }

            #productcategories li a {
                display: inline-block;
            }

            #productcategories li.activated > a {
                font-weight: 600;
            }

            #productcategories li:not(.activated) > ul {
                display: none;
            }

            #productcategories li.activated > ul,
            #productcategories li.show-children > ul {
                display: block;
            }

        #categories li {
            display: block;
            width: 100%;
        }

            #categories li.activated { background: #eee; }

        .categories .heading {
            font-size: 18px;
            text-transform: uppercase;
            font-weight: 600;
        }
            .categories .heading > span {
                float: left;
            }
            .product-search .navbar-toggle { margin-top: -5px; }
            .product-search .products { display: flex; flex-wrap: wrap;}

        .categories ul {
            padding-left: 0;
            margin-left: 0;
            margin-top: 5px;
        }
            .categories ul li {
                list-style: none;
            }
                .categories ul li a {
                    padding: 5px 0;
                    font-size: 16px;
                    display: block;
                }

    /*.product-search .categories ul.collapsed {
        display: none;
    }*/
    @media (min-width: 768px) and (max-width: 991px) {
        .product-search .navbar-toggle {
            display: block;
        }
        /*.navbar-collapse.collapse {
            display: none !important;
        }
        .navbar-collapse.collapse.in {
            display: block !important;
        }*/
    }
    @media(min-width: 992px) {
        .product-search .categories ul, .product-search .categories ul.collapse { display: block; }
    }



.product-preview {
    box-sizing: border-box;
    padding: 10px;
    margin-bottom: 20px;
}
    .product-preview .preview-image {
        text-align: center;
        border: 1px solid #DDDDDD;
        padding: 25px;
        height: 300px;
        line-height: 250px;
        vertical-align: center;
        display: block;
    }
        .product-preview .preview-image img {
            max-width: 100%;
            max-height: 100%;
            display: inline-block;
        }

    .product-intro {
        text-align: center;
    }
        .product-intro .title {
            font-size: 18px;
            font-weight: 600;
            margin-top: 25px;
            display: block;
        }
        .product-intro .price {
            font-size: 23px;
            margin-top: 10px;
        }
            .product-intro .price .from { font-size: 16px; }

        .product-intro .btn { margin-top: 15px; }

/*
 * Product Details
 */

.product-detail {
    padding-top: 40px;
}

    /*
     * Product Media
     */

    .product-detail .mediaItems { padding-right: 20px; }
    .product-detail .mediaItems .imageContainer {
        border: 1px solid #DDDDDD;
        text-align: center;
    }
    .product-detail .mediaItems .imageContainer:not(:last-child) { margin-bottom: 30px; }

    @media(min-width: 768px) {
        /* The default imageContainer class removes it's right edge padding at this size, have to reapply for products section here */
        .product-detail .mediaItems .imageContainer {
            padding-right: 20px;
        }
    }


    /* Product Image Slider */

    .product-detail .mediaItems.mobile-slider { display: none; }

    @media(max-width: 991px) {
        .product-detail .mediaItems.desktop-slider { display: none; }
        .product-detail .mediaItems.mobile-slider { display: block; }
    }

    /*
     * Product Slider - bxslider
     */
    .product-detail .bx-wrapper { margin-bottom: 10px; }

        .product-detail .bx-wrapper .bx-viewport {
            box-shadow: none;
            -webkit-box-shadow: none;
            border: 1px solid #DDD;
            left: 0;
            background: transparent;
        }

        .product-detail .product-bxslider li img { display: inline-block; }

            /* Using the background-image option? */

            .product-detail .product-bxslider .slider-image,
            .product-detail #bx-product-pager .slider-thumbnail-image {
                background-size: cover !important;
                background-repeat: no-repeat !important;
                background-position: center !important;
            }

            .product-detail .product-bxslider .slider-image {
                height: 400px;
            }

            .product-detail #bx-product-pager .slider-thumbnail-image {
                height: 80px;
                width: 80px;
                display: inline-block;
            }

            /* Pager */

            .mobile-slider #bx-product-pager {
                width: 100%;
                margin-bottom: 50px;
            }

            .mobile-slider #bx-product-pager a {
                display: block;
                float: left;
                width: 50%;

                padding-left: 0;
                padding-right: 0;

                margin-bottom: 10px;
            }

                .mobile-slider #bx-product-pager a span {
                    display: block;
                    margin: 0 5px;
                    border: 1px solid #DDD;
                    padding: 5px;
                    line-height: 140px;
                    vertical-align: middle;
                    height: 160px;
                    text-align: center;
                }

                .product-detail #bx-product-pager a img {
                    max-width: 100%;
                    max-height: 100%;
                }

            @media(max-width: 499px) {
                .mobile-slider #bx-product-pager a:nth-child(odd) span {
                    margin-left: 0;
                }
                .mobile-slider #bx-product-pager a:nth-child(even) span {
                    margin-right: 0;
                }
            }
            @media(min-width: 500px) {
                .mobile-slider #bx-product-pager a {
                    width: 25%;
                }
                    .mobile-slider #bx-product-pager a:nth-child(4n+0) span {
                        margin-right: 0;
                        margin-left: 8px;
                    }
                    .mobile-slider #bx-product-pager a:nth-child(4n+3) span {
                        margin-left: 6px;
                        margin-right: 3px;
                    }
                    .mobile-slider #bx-product-pager a:nth-child(4n+2) span {
                        margin-left: 3px;
                        margin-right: 6px;
                    }
                    .mobile-slider #bx-product-pager a:nth-child(4n+1) span {
                        margin-left: 0;
                        margin-right: 8px;
                    }

            }

    /*
     * Product Slider - Colorbox?
     */
    .product-detail .products-colorbox img { max-width: 100%; }

    /* Other Product Details */

    .product-fields {
        margin-top: 20px;
    }
    .product-actions {
        display: none;
    }
    .product-actions.active { display: block; }

    .product-fields .product-field-group { margin: 15px 0; }
    .product-fields .product-field-group:last-child { margin-top: 30px; }
    .product-fields .product-caption {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .product-fields .product-field-group .product-field { max-width: 300px; }
    .product-fields .product-field-group .downloads a {
        background: #f5f5f5;
        padding: 10px;
        display: inline-block;
        margin: 5px 0;
        color: #333;
    }

    .product-actions .price { font-size: 18px; }


/* Team Module */

.team-members > .container {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
}

.team-member {
    position: relative;
}

    .team-member img {
        position: absolute;
        top: 15px;
        left: 0px;
        max-width: 175px;
    }

    .team-member .info {
        background: #f5f5f5;
        margin-left: 145px ;
        padding: 15px 15px 70px 45px;
        margin-bottom: 50px;
        white-space: normal;
    }

        .team-member .info .title {
            border-left: 6px solid green;
            margin-bottom: 20px;
            margin-top: 5px;
            padding: 10px 10px 7px;
        }

            .team-member .info .title h3 {
                margin: 0px;
                font-size: 18px;
                text-transform: uppercase;
            }

            .team-member .info .title h4 {
                margin: 0px;
                font-size: 16px;
                padding-top: 5px;
            }

        .team-member .info .intro-text {
            padding-bottom: 10px;
        }

        .team-member .info p {
            font-size: 14px;
            margin-bottom: 3px;
        }

        .team-member .info .mani-btn {
            position: absolute;
            right: 0;
            bottom: 10px;
            font-size: 14px;
        }

        @media all and (max-width: 550px) {

            .team-member img {
                float: right;
                position: static;
                max-width: 45%;
                height: auto;
                -webkit-box-sizing: border-box; /* Safari 3.0 - 5.0, Chrome 1 - 9, Android 2.1 - 3.x */
            	-moz-box-sizing: border-box;    /* Firefox 1 - 28 */
            	box-sizing: border-box;
            }

            .team-member .info {
                margin-left: 0px;
            }

                .team-member .info .title {
                    width: 48%;
                    float: left;
                    margin-right: 0px;
                    -webkit-box-sizing: border-box; /* Safari 3.0 - 5.0, Chrome 1 - 9, Android 2.1 - 3.x */
                	-moz-box-sizing: border-box;    /* Firefox 1 - 28 */
                	box-sizing: border-box;
                }

                .team-member .info .intro-text {
                    width: 48%;
                    float: left;
                    -webkit-box-sizing: border-box; /* Safari 3.0 - 5.0, Chrome 1 - 9, Android 2.1 - 3.x */
                	-moz-box-sizing: border-box;    /* Firefox 1 - 28 */
                	box-sizing: border-box;
                }

                .team-member .info .contact-details {
                    width: 48%;
                    float: left;
                    -webkit-box-sizing: border-box; /* Safari 3.0 - 5.0, Chrome 1 - 9, Android 2.1 - 3.x */
                	-moz-box-sizing: border-box;    /* Firefox 1 - 28 */
                	box-sizing: border-box;
                }
        }

        @media(max-width: 500px) {
            .team-member .info {
                margin-left: 0;
                padding: 20px 20px 80px 20px;
            }
                .team-member .info .title {
                    margin-right: 75px;
                }

            .team-member img {
                top: 20px;
                left: inherit;
                right: 20px;
                width: 75px;
            }

                .team-member .info .mani-btn {
                    right: 15px;
                    bottom: 20px;
                    font-size: 14px;
                    text-align: center;
                    margin-top: 10px;
                    left: 15px;
                }
        }

        @media all and (max-width: 440px) {

            .team-member .info .intro-text {
                width: 100%;
                float: none;
                margin-top: 18px;
                clear: both;
            }

            .team-member .info .contact-details {
                width: 100%;
                float: none;
                margin-top: 18px;
                clear: both;
            }

        }

        @media all and (max-width: 300px) {

            .team-member .info .title {
                width: 100%;
                float: none;
                margin-top: 18px;
                clear: both;
            }

            .team-member img {
                float: none;
                position: static;
                max-width: 100%;
                height: auto;
                display: block;
                width: 100%;
            }

        }

.team-member.profile {
    min-height: 400px;
}
    .team-member.profile .media img {
        position: relative;
        float: right;
        width: 100%;
    }

    .team-member.profile .contact-details a {
        display: block;
        font-size: 15px;
    }

    .team-member.profile .title h4 {
        font-size: 18px;
    }

        .team-member.profile .intro-text {
            padding-top: 10px;
        }


/* Brands Module */

.brand-preview {
    border: 1px solid #CCCCCC;
    margin: 10px auto;
    float: left;
    width: 100%;
}

    .brand-preview .image-frame {
        float: left;
        min-width: 215px;
        min-height: 120px;
        position: relative;
    }

        @media(max-width: 763px) {
            .brand-preview .image-frame {
                width: 100%;
            }
        }

        .brand-preview .image-frame a {
            display: block;
        }

            .brand-preview .image-frame img {
                display: block;
                margin: auto;
                position: absolute;
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;
            }

    .brand-preview .intro {
        padding: 30px 15px 15px 30px;
        float: left;
        width: 80%;
        display: block;
        border-left: 1px solid #CCCCCC;
        min-height: 120px;
    }


        @media(max-width: 1200px) {
            .brand-preview .intro {
                width: 70%;
            }
        }

        @media(max-width: 991px) {
            .brand-preview .intro {
                width: 70%;
            }
        }

        @media(max-width: 763px) {
            .brand-preview .intro {
                width: 100%;
                padding-right: 50px;
                padding-top: 0px;
                border-left: none;
                min-height: 0px;
            }
        }


        .brand-preview .view-more {
            display: inline-block;
            position: absolute;
            top: 45%;
            right: 30px;
        }

        .brand-preview .view-more-arrow {
            content: '';
            background: url(/assets/scl/v1/images/keyboard-right-arrow-button.svg) no-repeat center right;
            background-size: 20px;
            padding: 10px;
        }

        .brand-preview .view-more-arrow:hover {
            cursor: pointer;
        }
/* Search */
    .search .childItem {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

        .search .childItem .childIntro {
            display: flex;
            justify-content: space-between;
        }

        .search .childItem .childIntro .readMore {
            font-size: 14px;
            text-transform: lowercase;
            font-weight: 300;
            padding: 10px 20px;
            margin: 10px 0px;
            background-color: #585959;
            color: #fff;
        }

            .search .childItem .childIntro .readMore:hover,
            .search .childItem .childIntro .readMore:focus {
                color: #ffffff;
                background-color: #2c2d2d;
            }

/* FAQs */

    .accordion {
        border: 1px solid #CFCFCF;
        border-bottom: 0;
    }

        .accordion:last-child {
            border-bottom: 1px solid #CFCFCF;
            margin-bottom: 20px;
        }

        .accordion-heading {
            background-color: #ffffff;
            box-sizing: border-box;
            min-height: 40px;
            width: 100%;
            padding: 20px 35px;
            cursor: pointer;
            position: relative;
            font-size: 16px;
            font-weight: 600;
        }

            @media(max-width: 500px) {
                .accordion-heading { padding: 10px 25px; }
            }

            .accordion-heading:before {
                background: url(/assets/scl/v1/images/minus-symbol.svg) no-repeat center;
                background-size: 20px;
                content: '';
                padding: 10px;
                position: absolute;
                left: 20px;
                top: 25px;
            }

            .collapsed .accordion-heading {
                background-color: #F2F2F2;
            }

                .collapsed .accordion-heading:before {
                    background-image: url(/assets/scl/v1/images/plus-button.svg);
                }

            .accordion-heading a {
                font-size: 16px;
                text-decoration: none;
                line-height: 30px;
                min-height: 30px;
                display: block;
                color: #666666;
                padding-left: 20px;
            }

        .accordion-body {
            padding: 5px 35px 35px;
            max-width: 100%;
        }

            @media(max-width: 500px) {
                .accordion-heading:before {
                    left: 15px;top: 15px;
                }
                .accordion-body { padding: 30px 15px; }
            }

            .accordion-body.accordioncontent {
                 overflow: auto;
                box-sizing: content-box;
                -moz-box-sizing: content-box;
            }

            .accordion-body.accordioncontent p {
                margin-bottom: 0px;
                padding-bottom: 10px;
            }

        .accordion.collapsed .accordion-body.accordioncontent { display: none; }

/* News Module */

    .news form {
        margin-bottom: 20px;
        position: relative;
    }

        .news .search-text {
            line-height: 50px;
            font-size: 15px;
            width: 100%;
            padding-left: 10px;
            border: 1px solid #ddd;
        }

        .news #search-submit {
            position: absolute;
            right: 7px;
            top: 13px;
            background: url(/assets/common/news/images/magnifying-glass.svg) no-repeat center;
            content: '';
            border: 0;
            font-size: 0px;
            background-size: 15px;
            padding: 15px 20px;
            border-left: 1px solid #ddd;
        }

    .sidebar .box {
        margin-bottom: 20px;
    }

    .sidebar .box p, .sidebar .box .heading {
        background: #f0f0f0;
        border-bottom: 1px solid #ddd;
        padding: 10px 15px;
        margin-bottom: 0;
    }

    .sidebar .box ul {
        margin: 0px;
        list-style: none;
        padding-left: 0px;
        background-color: #f0f0f0;;
    }

        .sidebar .box ul li {
            border: 0;
            position: relative;
            display: block;
        }
            .sidebar .box ul li a,
            .sidebar .box ul li span {
                padding: 12px 15px;
                display: block;
            }
                /*.sidebar .box ul li:first-child a,
                .sidebar .box ul li:first-child span {
                    padding-top: 12px;
                }

                .sidebar .box ul li:last-child a,
                .sidebar .box ul li:last-child span {
                    padding-bottom: 12px;
                }
                */

                .sidebar .box ul li a:hover,
                .sidebar .box ul li span:hover,
                .sidebar .box ul li a.active,
                .sidebar .box ul li span.active {
                    color: #585959;
                    background-color: #ddd;
                }

                .sidebar .box ul li .caret-container {
                    padding: 0px;
                    position: absolute;
                    cursor: pointer;
                }
                    .accordion:last-child {
                        margin-bottom: 0px;
                    }

                    .sidebar .box ul li.accordion.collapsed .caret-container {
                        top: 17px;
                        right: 22px;
                    }

                        li.accordion .arrow-down {
                            position: relative;
                            padding: 0px;
                        }

                            li.accordion.collapsed .arrow-down:after,
                            li.accordion.collapsed .arrow-down:before {
                                border-top: 10px solid #000;
                                border-left: 10px solid transparent;
                                border-right: 10px solid transparent;
                                margin-left: -10px;
                                position: absolute;
                                bottom: -10px;
                                content: '';
                            }

                    .sidebar .box ul li.accordion.open .caret-container {
                        top: 27px;
                        right: 32px;
                    }

                        li.accordion.open .arrow-down:after,
                        li.accordion.open .arrow-down:before {
                            border-bottom: 10px solid #000;
                            border-left: 10px solid transparent;
                            border-right: 10px solid transparent;
                            margin-right: -10px;
                            position: absolute;
                            top: -10px;
                            content: '';
                        }

        .sidebar .box ul li ul.accordion-body {
            background-color: #eee;
            color: #585959;
            padding: 0px;
        }

            .sidebar .box ul.accordion-body li a,
            .sidebar .box ul.accordion-body li span {
                color: #585959;
                padding: 8px 15px;
            }


    /* Articles */

    .news .article {
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }
        .news .article:first-child {
            padding-top: 45px;
        }

        .news .article h3 {
            font-size: 23px;
        }

        .news .article h4 {
            font-size: 14px;
        }

        .news .article .intro-text {
            font-size: 16px;
        }

        .news .mani-btn {
            font-size: 14px;
            text-transform: lowercase;
            font-weight: 300;
            padding: 10px 20px;
            margin: 10px 0px;
            background-color: #585959;
            color: #fff;
        }
            .news .mani-btn:hover,
            .news .mani-btn:focus {
                background: #fecf07;
                color: #585959;
                font-weight: 400;
            }

    .news .article-media {
        width: 100%;
    }

    .news .media-caption {
        font-size: 13px;
        margin-bottom: 20px;
        text-align: center;
        padding: 10px 15px;
    }
.child .intro .more-link::after {
    content: '\2026';
}

/* FindA */
    @media only screen and (max-width: 320px) {
        .finda .search {
            display:none;
        }

    }

    .finda #map {
        margin: 8px 0 42px;
        min-height: 600px;
        padding: 0px;
    }

    .finda .search #address {
        max-width: 415px;
        height: 55px;
        font-size: 16px;
        float: left;
        margin-right: 15px;
        margin-bottom: 25px;
    }

    .finda .search #addressSubmit {
        max-width: 415px;
        height: 55px;
        font-size: 16px;
        float: left;
    }

    .finda .store-brand-logo {
        display: block;
        clear: both;
        margin-bottom: 25px;
        margin-left: 15px;
        max-height: 71px;
    }

        @media only screen and (max-width: 768px) {
            .finda .store-brand-logo {
                padding-right: 30px;
                width: 100%;
                max-height: auto;
            }
        }

    .finda .stores .col {
        padding-left: 5px;
        padding-right: 5px;
    }

    .finda .store a {
        color: #333333;
        background-color: #f5f5f5;
        padding: 15px 25px;
        min-height: 190px;
        margin-bottom: 10px;
        display: block;
    }
        .finda .store a.selected,
        .finda .store a:hover,
        .finda .store a:focus {
            text-decoration: none;
            cursor: pointer;
            background-color: #fecf07;
        }

        .finda .store .name {
            font-size: 16px;
            font-weight: 600;
        }

    /* Tool Tip */
    .finda .gm-style .gm-style-iw h1 {
        text-align: center;
    }

    .finda .gm-style .gm-style-iw h1 a {
        font-size: 20px;
        color: #333333;
    }
        .finda .gm-style .gm-style-iw h1 a:hover,
        .finda .gm-style .gm-style-iw h1 a:focus {
            color: #fecf07;
            text-decoration: none;
        }

    .finda .gm-style .gm-style-iw .actionButton {
        font-family: 'Lato', sans-serif;
        font-size: 12px;
        width: 100%;
        text-align: center;
    }




/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Paginator
 */

    .pagination {
        float: right;
    }

        .pagination ul {
            list-style: none;
        }

            .pagination li {
                float: left;
                margin: 5px 10px 5px 0px;
            }

                .pagination li a,
                .pagination li span {
                    display: block;
                    padding: 5px 10px;
                    border: 1px solid #ddd;
                }

                    .pagination li.active span {
                        opacity: 0.5;
                    }

        .showing {
            float: right;
            padding-right: 10px;
        }


/*
 * form elements
 */

.form-control {
    border-radius: 0;
    box-shadow: none;
}
.form-control.small { max-width: 100px; }

/*
 * remove focus style
 */

*:focus {
    outline: none;
}


/*
 * Hide visually and from screen readers:
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (max-width: 768px) {
    /* Style adjustments for viewports that meet the condition */
    .signup {
        float:left;
    }
    .sign-in-bar .container .shift {
        margin-left:0px;
    }
}

@media print,
       /* (-webkit-min-device-pixel-ratio: 1.25), */
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
