:root {
    --orange : #FF8E1E;
}

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,800');

/***
    DEFAULT STUFF
***/

body {
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
    background: #FFFFFF;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}
.hold {
    flex: 1;
}
.container-fluid {
    max-width: 98%;
}

.num-list {
    counter-reset: counter;
    margin: 20px 0;
}
.num-list li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 40px;
    font-size: 15px;
}
.num-list li:before {
    display: inline-block;
    position: absolute;
    top: 1px;
    left: 0;
    content: counter(counter);
    counter-increment: counter;
    color: var(--orange);
    font-size: 12px;
    width: 22px;
    height: 22px;
    border: 1px solid var(--orange);
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    margin: 0 10px 0 0;
}
img.pull-left {
    margin: 0 30px 0 0;
}
img.sm {
    max-width: 200px;
}
.image-row {
    margin: 40px 0;
}

/***
    ANIMATIONS
***/

a, :after, :before, .collection, #menu ul, .btn {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition:    all 0.2s ease-in-out;
    -o-transition:      all 0.2s ease-in-out;
    -ms-transition:     all 0.2s ease-in-out;
    transition:         all 0.2s ease-in-out;
}

div[x-apple-data-detectors] {
    color: inherit !important;
    text-decoration: none !important;
    font-size: inherit !important;
    font-family: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}

.dynamicPage h1 {
    font-size: 32px;
    color: var(--black);
}
.dynamicPage h2 {
    font-size: 29px;
    color: var(--black);
}
.dynamicPage h3 {
    font-size: 26px;
    color: var(--black);
}
.dynamicPage h4 {
    font-size: 23px;
    color: var(--black);
}
.dynamicPage h5 {
    font-size: 19px;
    color: var(--black);
}
.dynamicPage h6 {
    font-size: 17px;
    color: var(--black);
}
.dynamicPage ul,
.dynamicPage ol {
    margin: 15px 0 15px 30px;
}
.dynamicPage ul li,
.dynamicPage ol li {
    margin: 0 0 5px 0;
}
.dynamicPage ul li {
    list-style: none;
}
.dynamicPage ol {
    counter-reset: inst;
}
.dynamicPage ol li {
    counter-increment: inst;
}
.dynamicPage ol li:before {
    display: inline-block;
    content: counter(inst);
    margin: 0 10px 0 0;
    min-width: 20px;
}
.mt-30 {
    margin-top: 30px;
}

/***
    IMAGES
***/

img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

/***
    HEADER
***/

#main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #222;
    /*background: url(../images/wood.jpg);*/
}
#main-header.stuck {
    position: fixed;
    transform: translateY(-100%);
    opacity: 0;
}
#main-header.stuck .col-md-3 {
    transform: translateX(-100px);
    opacity: 0;
}
#main-header.stuck .col-md-9 {
    transform: translateX(100px);
    opacity: 0;
}

#main-header.stuck.in,
#main-header.stuck.in .col-md-4,
#main-header.stuck.in .col-md-8 {
    transform: translate(0);
    opacity: 1;

    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition:    all 0.4s ease-in-out;
    -o-transition:      all 0.4s ease-in-out;
    -ms-transition:     all 0.4s ease-in-out;
    transition:         all 0.4s ease-in-out;
}
#main-header.stuck.in #logo {
    max-width: 80%;
    top: 6px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 4px;
}
.contact-details-in,
.contact-details-in div {
    display: inline;
}
#main-header #top-details {
    color: #FFFFFF !important;
    font-size: 14px;
    padding: 10px 0;
    font-weight: 200;
    line-height: 25px;
}
#main-header #top-details strong {
    font-weight: 200;
    color: var(--orange);
}
#main-header.stuck.in #top-details {
    /*display: none;*/
}

#logo {
    display: block;
    position: relative;
    top: 4px;
}

.menu-fixer {
    height: 180px;
}

/***
    MAIN MENU
***/
    #main-menu {
        background: rgba(255,255,255,.05);
    }

    nav#menu {}
    #main-header ul {}
    #main-header ul li {
        margin-left: 10px;
        position: relative;
    }
    #main-header ul li a {
        display: block;
        line-height: 50px;
        padding: 0 10px;
        color: #fff;
        font-weight: 300;
        font-size: 15px;
    }
    #main-header ul li:hover > a, #main-header ul li a:active, #main-header ul li a.active {
        color: var(--orange);
    }

    /* Sub Menu */

    #main-header ul ul {
        position: absolute;
        top: 50px;
        left: 0;
        width: 280px;
        text-align: left;
        visibility: hidden;
        opacity: 0;
        background: #222;
    }
    #main-header ul ul li {
        display: block;
    }
    #main-header ul ul li a {
        display: block;
        padding: 0;
        line-height: 40px;
    }
    #main-header ul li:hover ul {
        opacity: 1;
        visibility: visible;
    }

/***
    CONTENT
***/
    .max-width {
        max-width: 92%;
        margin: 0px auto;
    }

    /* Responsive Slider */

    #main-slider {
        margin: 150px 0 30px 0;
        position: relative;
    }
    .page-slider {
        position: relative;
        margin-bottom: 30px;
        /*height: 368px;*/
        overflow: hidden;
    }
    .page-slider .rslides {
        position: relative;
        top: 0;
        width: 100%;
        left: 0;
    }
    .rslides {
        position: relative;
        list-style: none;
        overflow: hidden;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .rslides li {
        -webkit-backface-visibility: hidden;
        position: absolute;
        display: none;
        width: 100%;
        left: 0;
        top: 0;
    }

    .rslides li:first-child {
        position: relative;
        display: block;
        float: left;
    }

    .rslides img {
        display: block;
        height: auto;
        float: left;
        width: 100%;
        border: 0;
    }

    /* Responsive Slider Controls (Pager) */

    .rslides_tabs {
        position: absolute;
        bottom: 20px;
        right: 10px;
        z-index: 9999;
        text-align: center;
    }
    .rslides_tabs li {
        display: inline-block;
        margin: 0 10px;
    }
    .rslides_tabs li a {
        display: block;
        font-size: 0;
        height: 18px;
        width: 18px;
        background: transparent;
        border: 2px solid var(--orange);
    }
    .rslides_tabs li a:hover,
    .rslides_tabs li.rslides_here a {
        background: var(--orange);
    }

    /* New Arrivals */

    #arrivals {
        margin-top: 30px;
        background: #fff;
    }
    #arrivals .col-md-3 {
        padding: 0;
    }
    #arrivals .col-md-3:first-child,
    #arrivals .col-md-3:nth-child(5) {
        padding-left: 15px;
    }
    #arrivals .col-md-3:last-child,
    #arrivals .col-md-3:nth-child(4) {
        padding-right: 15px;
    }
    #arrivals .col-md-3:first-child .arrival,
    #arrivals .col-md-3:nth-child(2) .arrival,
    #arrivals .col-md-3:nth-child(5) .arrival {
        border: none;
    }
    #arrivals .arrival {
        display: block;
        background: #f2f2f2;
        padding: 25px 20px;
        border-left: 1px solid #ddd;
        text-align: center;
    }
    #arrivals .arrival .arrival-img   {

    }
    #arrivals .arrival .arrival-title {
        font-size: 18px;
        margin-top: 10px;
        font-weight: 600;
    }
    #arrivals .arrival .arrival-price {
        font-size: 16px;
        font-weight: bold;
        color: var(--orange);
        margin-top: 20px;
    }
    #arrivals .arrival:hover {
        background: #f5f5f5;
    }

    #arrivals .arrival.button {
        position: relative;
        background: var(--orange);
        color: #fff;
        padding: 65px 50px;
    }
    #arrivals .arrival.button a {
        display: block;
        padding: 15px 30px;
        color: #fff;
        border: 1px solid #fff;
        margin-top: 60px;
        text-align: center;
    }
    #arrivals .arrival.button a:hover {
        background: rgba(255,255,255,.15);
    }
    #arrivals .arrival.button:after {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        right: -15px;
        z-index: 9999;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 15px 0 15px 15px;
        border-color: transparent transparent transparent var(--orange);
    }

    /* Collections */

    #collections {
        margin-top: 30px;
    }
    #collections .collection {
        color: rgba(255,255,255,.7);
        font-size: 17px;
        font-weight: 300;
        padding: 40px;
        background-size: 110%;
        background-repeat: no-repeat;
        background-position: 0 0;
        margin-bottom: 30px;
    }
    #collections .collection h4 {
        color: #fff;
        font-size: 28px;
        font-weight: 200;
    }
    #collections .collection a {
        display: block;
        padding: 15px 25px;
        color: #fff;
        border: 1px solid #fff;
        margin-top: 80px;
        font-size: 15px;
        text-align: center;
        max-width: 270px;
    }
    #collections .collection a:hover {
        background: rgba(255,255,255,.15);
    }
    #collections .collection:hover {
        background-position: -40px 0;
    }
    #collections .collection.hardwood {
        background-image: url(../images/hardwood.jpg);
    }
    #collections .collection.laminate {
        background-image: url(../images/laminate.jpg);
    }
    #collections .collection.carpets {
        background-image: url(../images/carpets.jpg);
    }
    #collections .collection.vinyl {
        background-image: url(../images/lvft.jpg);
    }

    /* About Section */

    .page-content {
        padding: 20px;
        background: white;
        box-shadow: 3px 3px 8px rgba(15,15,15,.25);
    }
    .page-content a {
        color: var(--orange);
    }
    .page-content a:hover {
        color: black;
    }
    .content .title {
        margin: 0 0 12px 0;
    }
    .content img {
        width: 100%;
        max-width: 395px;
    }
    .video {
        min-height: 436px;
        display: flex;
        align-items: center;
    }
    #about h3 {
        font-size: 26px;
        margin-bottom: 20px;
        font-weight: 200;
    }
    #about p {
        font-size: 15px;
    }

    #affiliates {
        margin-top: 30px;
    }
    .affiliates {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 -10px;
    }
    .aff-col {
        width: calc(100% / 7);
        box-sizing: border-box;
        display: inline-block;
    }

    .aff {
        margin: 0 10px;
        padding: 10px;
        box-shadow: 0 0 4px rgba(15,15,15,.25);
        text-align: center;
        height: 80px;
        margin-bottom: 20px;
        background: white;
    }
    .aff img {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Social Icons */

    #social-icons {
        position: fixed;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        z-index: 999;
    }
    .social-ico {
        position: relative;
        display: block;
        width: 45px;
        height: 45px;
        background: transparent;
        overflow: hidden;
    }
    .social-ico:after,
    .social-ico:before {
        content: '';
        font: normal normal normal 14px/1 FontAwesome;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 45px;
        height: 45px;
        line-height: 45px;
        text-align: center;
        font-size: 22px;
        color: #fff;
    }
    .social-ico:before {
        transform: translateX(-100%);
    }
    .social-ico:after {
        background: #222;
    }
    .social-ico:hover:before {
        transform: translateX(0);
    }
    .social-ico:hover:after {
        transform: translateX(100%);
    }
    .social-ico:hover {
        color: white;
    }

    /* Set Social Icons */

        /* Facebook */
        .social-ico.fb:before,
        .social-ico.fb:after {
            content: "\f09a";
        }
        .social-ico.fb:before {
            background: #4D70A8;
        }

        /* Twitter */
        .social-ico.tw:before,
        .social-ico.tw:after {
            content: "\f099";
        }
        .social-ico.tw:before {
            background: #00BBF2;
        }

        /* Instagram */
        .social-ico.in:before,
        .social-ico.in:after {
            content: "\f16d";
        }
        .social-ico.in:before {
            background: #2E5E86;
        }

    /*** SITEWIDE STUFF ***/
        /* BUTTONS */
        .btn.btn-warning {
            color: #fff;
            background: var(--orange);
            border: none;
            border-radius: 0;
        }
        .btn.btn-warning:hover {
            background: #E17C19;
            color: #fff;
        }

        .btn-circle {
            display: block;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 20px;
            line-height: 50px;
            padding: 0;
        }

        /* BREADCRUMB */
        .breadcrumb {
            background: rgba(15,15,15,.8);
            border-radius: 0;
            border: 0;
            margin-bottom: 30px;
            padding: 10px 20px;
        }
        .breadcrumb li {
            color: #fff;
        }
        .breadcrumb > li + li::before {
            font: normal normal normal 14px/1 FontAwesome;
            content: "\f105";
            font-size: 18px;
            margin: 0 10px;
        }
        .breadcrumb li a {
            color: #fff;
        }
        .breadcrumb li:first-child a {
            font-size: 20px;
        }
        .breadcrumb li a:hover {
            color: var(--orange);
        }

        /* PAGE TITLES */
        .page-title {
            color: #222;
            font-size: 28.8px;
            padding: 0 0 10px 0;
            border-bottom: 2px solid #222;
            margin: 0 0 30px 0;
        }

        /** GRID ITEMS **/
        .grid-item {
            display: block;
            padding: 20px;
        }

            /* BRAND GRID */
            .grid-item.brand {
                position: relative;
                z-index: 20;
                padding: 50px 0;
                text-align: center;
                font-weight: 200;
                font-size: 20px;
                background-size: 100%;
                background-position: center center;
            }
            .grid-item.brand:after {
                content: '';
                display: block;
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 10;
                background: rgba(15,15,15,.6);
            }
            .grid-item.brand span {
                display: block;
                position: relative;
                z-index: 20;
                color: #fff;
            }
            .grid-item.brand:hover {
                background-size: 140%;
            }

            /* CATEGORY GRID */
            .grid-item.category {}

            /* PRODUCT GRID */
            .grid-item.product {
                position: relative;
                background: rgba(15,15,15,.5);
                color: #fff;
                text-align: center;
                margin: 0 0 30px 0;
            }
            .grid-item.product .grid-item-overlay {
                position: absolute;
                top: 20px;
                left: 20px;
                width: 100px;
                z-index: 99;
                background: var(--orange);
                color: #fff;
                padding: 6px;
                text-align: center;
                font-size: 14px;
            }
            .grid-item.product .grid-item-thumbnail-hold {
                background: #fff;
                height: 230px;
                margin-bottom: 15px;

                position: relative;
                overflow: hidden;
            }
            .grid-item.product .grid-item-thumbnail-hold img {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                transform-origin: center center;

                -webkit-transition: all 0.35s ease-in-out;
                -moz-transition:    all 0.35s ease-in-out;
                -o-transition:      all 0.35s ease-in-out;
                -ms-transition:     all 0.35s ease-in-out;
                transition:         all 0.35s ease-in-out;
            }
            .grid-item.product:hover .grid-item-thumbnail-hold img {
                transform: translate(-50%, -50%) scale(1.15);
            }
            .grid-item.product .grid-item-title {
                font-size: 16px;
                font-weight: 200;
                color: var(--orange);
                min-height: 70px;
                margin: 0 0 10px 0;
            }
            .grid-item.product .grid-item-price {
                font-weight: 200;
                font-size: 21px;
            }
            .grid-item.product:hover {
                background: rgba(15,15,15,.75);
            }

            .clearance {
                margin:0;
                padding: 20px 0;
                background: rgba(240,240,240,0.8);
            }
            .clearance p {
                margin: 10px 0 20px;
                font-style: italic;
                font-weight: 200;
                color: rgba(0,0,0, 0.6);
            }
            .clearance h2 {
                margin: 25px 0 5px 0;
                font-weight: 600;
                font-size: 24px;
                color: var(--orange);
            }
            .featured {

                margin:30px 0 0;
                padding: 20px 0;
                background: rgba(250,250,250,0.8);
            }
            .featured p {
                margin: 10px 0 20px;
                font-style: italic;
                font-weight: 200;
                color: rgba(0,0,0, 0.6);
            }
            .featured h2 {
                margin: 25px 0 5px 0;
                font-weight: 600;
                font-size: 24px;
                color: var(--orange);
            }

            #affiliates {
                margin:0;
                padding: 20px 0;
                background: rgba(230,230,230,0.8);
            }
            #affiliates p {
                margin: 10px 0 20px;
                font-style: italic;
                font-weight: 200;
            }
            #affiliates h2 {
                margin: 25px 0 25px 0;
                font-weight: 600;
                font-size: 24px;
                color: var(--orange);
            }
            /* PRODUCT VIEW */

            .content {
                background: rgba(15,15,15,.5);
                padding: 20px;
                margin-bottom: 30px;
                color: #222;
            }
            .content .page-title {
                padding-top: 0;
            }
            .content h3, .content h2 {
                margin: 25px 0 5px 0;
                font-weight: 600;
                font-size: 24px;
                color: var(--orange);
            }
            .content h3 {
                font-size: 19px;
            }
            .content.dynamicPage h3 {
                color: var(--black);
            }

            #add-to-cart .btn {
                position: relative;
                height: 45px;
                border-radius: 0;
                padding-right: 28%;
                font-weight: 200;
                text-align: right;
            }
            #add-to-cart .btn i {
                font-size: 26px;
                position: absolute;
                top: 50%;
                left: 28%;
                transform: translateY(-50%);
            }

            hr {
                border-color: rgba(255,255,255,.35);
                margin: 40px 0;
            }

            .extra-details a {
                color: #E17C19;
            }
            .extra-details a:hover {
                color: #FFFFFF;
            }

            #product-price {
                display: inline-block;
                background: #E17C19;
                color: white;
                font-size: 28px;
                font-weight: 200;
                padding: 8px 25px;
            }
            #product-price small {
                font-size: 18px;
            }

            /* Product Images */
            .product-images {

            }
            .product-images .pi-main   {}
            .pi-main a {
                height: 500px;
                display: display: -webkit-flex;
                display: -moz-flex;
                display: -ms-flex;
                display: -o-flex;
                display: flex;
                -ms-align-items: center;
                align-items: center;
                justify-content: center;
            }
            .pi-main img {
                width: auto;
                height: auto;
                max-height: 100%;
            }
            .product-images .pi-thumbs {}
            .product-details hr {
                margin: 30px 0 25px 0;
                border-color: #222;
            }

        /* Form Stuff */

        label {
            display: block;
            text-align: left;
            font-weight: normal;
            font-size: 15px;
            margin-bottom: 5px;
        }
        .form-row:not(:last-child) {
            margin-bottom: 10px;
        }
        textarea.form-control {
            max-height: 120px;
        }
        .form-group label {
            margin-left: 15px;
        }
        .form-control {
            background: white;
            border: none;
            border-radius: 0;
            height: 45px;
            line-height: 45px;
            color: black;
            box-shadow: inset 1px 1px 4px rgba(15,15,15,.15);
        }
        .form-control:focus {
            box-shadow: inset 1px 1px 4px rgba(15,15,15,.25);
        }

        ::-webkit-input-placeholder {
            color: #000 !important;
        }
        ::-moz-placeholder          {
            color: #000 !important;
        }
        :-ms-input-placeholder      {
            color: #000 !important;
        }
        :-moz-placeholder           {
            color: #000 !important;
        }

        .form:not(.form-contact) {
            background: rgba(15,15,15,.5);
            padding: 15px;
            color: #fff;
        }
        .form h1,
        .form h2 {
            font-size: 19px;
            font-weight: 200;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        .form .register-link {
            color: #FFF;
            font-size: 12px;
        }
        .form .register-link:hover {
            color: var(--orange);
        }
        .form .form-row:not(:first-child),
        .register-form .form-row {
            margin-top: 25px;
        }
        .form .form-row::after {
            content: '';
            display: block;
            clear: both;
        }
        .form:not(.form-contact) .form-row .input-ico,
        .form:not(.form-contact) .form-row .form-control {
            display: inline-block;
            -webkit-transition: all 0.35s ease-in-out;
            -moz-transition:    all 0.35s ease-in-out;
            -o-transition:      all 0.35s ease-in-out;
            -ms-transition:     all 0.35s ease-in-out;
            transition:         all 0.35s ease-in-out;
        }
        .form:not(.form-contact) .form-row .input-ico {
            border: 2px solid rgba(15,15,15,.3);
            color: rgba(255,255,255,.45);
            height: 55px;
            line-height: 50px;
            text-align: center;
            width: 10%;
            max-width: 55px;
            float: left;
        }
        .form:not(.form-contact) .form-row .form-control {
            background: transparent;
            border: 2px solid rgba(15,15,15,.3);
            border-left: none;
            height: 55px;
            width: calc(100% - 55px);
        }
        .form .form-row .form-control::-webkit-input-placeholder {
            color: rgba(255,255,255,.3) !important;
        }
        .form .form-row .form-control::-moz-placeholder {
            color: rgba(255,255,255,.3) !important;
        }
        .form .form-row .form-control:-ms-input-placeholder {
            color: rgba(255,255,255,.3) !important;
        }
        .form .form-row .form-control:-moz-placeholder {
            color: rgba(255,255,255,.3) !important;
        }
        .form .form-row .form-control:focus,
        .form .form-row .form-control:focus + .input-ico {
            border-color: var(--orange);
        }
        .form .form-row .form-control:focus::-webkit-input-placeholder {
            color: rgba(255,255,255,.5) !important;
        }
        .form .form-row .form-control:focus::-moz-placeholder {
            color: rgba(255,255,255,.5) !important;
        }
        .form .form-row .form-control:focus:-ms-input-placeholder {
            color: rgba(255,255,255,.5) !important;
        }
        .form .form-row .form-control:focus:-moz-placeholder {
            color: rgba(255,255,255,.5) !important;
        }
        .form .form-row .btn {
            display: block;
            width: 100%;
            padding: 15px 25px;
            color: #fff;
            font-size: 15px;
            text-align: center;
            max-width: 270px;
            border-radius: 0;
            margin: 0px auto;
        }

        /* Success / Error Messages */

        .alert {
            border: none;
            border-radius: 0;
        }
        .alert-success {
            background: #76B425;
            color: #fff;
        }
        .alert-danger  {
            background: #C4112F;
            color: #fff;
        }
        .alert-warning {
            background: var(--orange);
            color: #fff;
        }

        /* Dynamic Pages */

        .page-content h1 {
            font-weight: 200;
            font-size: 28px;
            margin-bottom: 30px;
        }
        .page-content h2,
        .page-content h3
         {
            font-weight: 200;
            margin: 20px 0;
            font-size: 22px;
            color: var(--orange);
        }
        .page-content h3 {
            font-size: 19px;
        }
        .page-content > h2 {
            margin-top: 0;
        }
        .page-content a {
            text-decoration: underline;
        }
        .page-content ul li a {
            text-decoration: none;
        }
        .page-content a:not(.social):hover {
            color: var(--orange);
        }

            /* Sidebar */
            .sidebar.page-content {
                background: rgba(15,15,15,.9);
                color: white;
            }
            .sidebar h3 {
                color: white;
            }
            .sidebar.page-content strong {
                color: var(--orange);
            }
            .sidebar:not(:last-child) {
                margin-bottom: 30px;
            }
            .sidebar .heading {
                margin-bottom: 20px;
                font-size: 21px;
                font-weight: 200;
            }
            .sidebar nav ul {

            }
            .sidebar nav ul li {}
            .sidebar nav ul li a {
                display: block;
                color: #fff;
                line-height: 26px;
                font-size: 14px;
            }
            .sidebar nav ul li a:hover {
                color: var(--orange);
            }

        /* Contact Page */

        .contact-sidebar {

        }
        .contact-sidebar h3 {
            color: #fff;
            font-size: 22px;
        }
        .contact-sidebar .sidebar-block:first-child h3 {
            font-size: 28.8px;
        }
        .contact-sidebar .sidebar-block:not(:first-child) {
            margin-top: 26px;
        }

        /* Team Page */

        .staff,
        .case-study {
            position: relative;
            overflow-y: hidden;
            margin: 0 0 30px 0;
            background: rgba(15,15,15,0.8);
        }
        .staff .staff-img {
            margin-bottom: 10px;
            height: 280px;
        }
        .staff .staff-title {
            font-weight: bold;
            font-size: 19px;
            font-family: 'Century Gothic';
            margin-bottom: 15px;
            color: var(--orange);
        }
        .staff .staff-title .staff-pos {
            font-weight: light;
            color: white;
            font-size: 15px;
            min-height: 43px;
        }
        .staff .staff-desc,
        .case-study blockquote {
            display: block;
            text-align: justify;
            font-size: 15px;
            color: #fff;
        }
        .staff .staff-btn {
            float: right;
            position: relative;
            z-index: 9999;
            margin-top: 10px;
        }
        .staff .staff-btn i {
            -webkit-transition: all 0.2s ease-in-out;
            -moz-transition:    all 0.2s ease-in-out;
            -o-transition:      all 0.2s ease-in-out;
            -ms-transition:     all 0.2s ease-in-out;
            transition:         all 0.2s ease-in-out;
        }
        .staff.active .staff-btn i {
            transform: rotate(135deg);
        }
        .staff .overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 99;
            background: rgba(15,15,15,.95);
            padding: 20px;
            transform: translateY(100%);
            overflow-y: auto;

            -webkit-transition: all 0.4s ease-in-out;
            -moz-transition:    all 0.4s ease-in-out;
            -o-transition:      all 0.4s ease-in-out;
            -ms-transition:     all 0.4s ease-in-out;
            transition:         all 0.4s ease-in-out;
        }
        .staff.active .overlay {
            transform: translateY(0%);
        }

        /* Case Studies */

        blockquote {
            border: none;
            padding: 0;
            margin: 15px 0 25px 0;
            font-size: 15px;
        }
        blockquote cite {
            display: block;
            float: right;
            font-size: 15px;
        }

        /* Side Image */
        .side-img {
            height: 540px;
            background-size: cover;
            background-position: center center;
        }

        /* Slide Toggle Boxes */

        .read-more {
            margin-top: 30px;
            background: white;
            padding: 10px;
            box-shadow: 2px 2px 8px rgba(15,15,15,.25);
        }
        .read-more .rm-img {
            display: flex;
            align-items: flex-end;
            background-size: cover;
            background-position: center center;
            height: 180px;
            margin-bottom: 20px;
            transition: all .3s ease;
        }
        .read-more .rm-img.no-mg {
            margin: 0;
        }
        .read-more .rm-img:hover {
            color: var(--orange);
        }
        .read-more .rm-title {
            display: block;
            width: 100%;
            font-size: 26px;
            font-weight: bold;
            color: #FFF;
            margin: 0;
            padding: 30px 14px 25px 14px;
            background: linear-gradient(to bottom, black, rgba(21,21,21,0) 0%, rgba(21,21,21,1) 100%);
        }
        .read-more .rm-content {
            line-height: 25px;
        }
        .read-more .rm-extra {
            display: none;
        }
        .read-more .rm-toggle {
            margin: 20px -10px 0 0;
            display: inline-block;
            border-radius: 0;
            padding: 8px 18px;
            float: right;
        }

        /* Logos List */
        .sm-logos {
            display: flex;
            margin: 0 -10px;
        }
        .sm-logo {
            flex: 1;
            margin: 10px;
            box-shadow: 0 0 6px rgba(15,15,15,.15);
        }

    /***
        CONTENT
    ***/
    .content {
        background: white;
        padding: 20px;
        box-shadow: 3px 3px 8px rgba(15,15,15,.25);
    }

    /***
        MAIN FOOTER
    ***/

    #main-footer {
        margin-top: 0px;
        padding: 30px 0;
        background: #222;
        color: #fff;
    }
    #main-footer h6 {
        font-weight: 200;
        font-size: 22px;
        margin-bottom: 20px;
    }
    #main-footer .footer-list {}
    #main-footer .footer-list li {
        margin: 0;
    }
    #main-footer .footer-list li a {
        color: #fff;
        line-height: 35px;
        font-size: 14px;
        font-weight: 300;
    }
    #main-footer .footer-list li a:hover {
        color: var(--orange);
    }

    /* Copyright Footer */

    #copyright {
        padding: 8px 0;
        font-size: 13px;
        font-weight: 200;
        color: #fff;
        background: #121212;
    }
    #copyright a {
        color: var(--orange);
        font-weight: 200;
    }
    #copyright a:hover {
        color: #fff;
    }

    .no-marg-top {
        margin-top: 0 !important;
    }

    .pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
        background: #FF8E1E;
        border-color: #FF8E1E;
    }
    .pagination > li > a, .pagination > li > span,
    .pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover {
        color: #FF8E1E;
    }

    .fourohfour {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9999999;

        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        text-align: center;
        -ms-align-items: center;
        align-items: center;
        justify-content: center;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;

        color: white;

        background: url('../images/four-bg.jpg') #222;
    }
    .fourohfour h1 {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        font-size: 8vw;
        font-weight: bold;
        letter-spacing: 1vw;
        line-height: 3vw;
    }
    .fourohfour h1 .animated:nth-child(1) {animation-delay: .2s;}
    .fourohfour h1 .animated:nth-child(2) {animation-delay: .4s;}
    .fourohfour h1 .animated:nth-child(3) {animation-delay: .6s;}
    .fourohfour p {
        font-size: 28px;
    }
    .fourohfour a {
        margin-top: 20px;
    }
    .del-1 {animation-delay: .8s;}
    .del-2 {animation-delay: 1s;}

    .sitemap ul {
        margin-top: 10px;
    }
    .sitemap li {
        margin-bottom: 10px;
    }
    .sitemap li a { display: inline-block; }
    .sitemap li a:hover { color: var(--orange); }

    #latest-news {
        margin-top: 30px;
    }
    .latest-news-content {
        max-height: 428px;
        overflow-y: scroll;
    }
