﻿body {
    margin: 0;
    padding: 0;
    color: #000;
    font-weight: 500;
    background-color: #fff;
    font-family: "Montserrat",sans-serif;
}

.img-responsive-inline {
    display: inline;
    max-width: 100%;
    height: auto;
}

a {
    color: #000;
}

    a:hover, a:focus {
        text-decoration: none;
        color: #0018a9;
    }

h1.product-name {
    font-size: 24px;
    margin: 20px 0 10px;
}

p.other-products {
    margin: 20px 0 10px;
    padding: 0;
    font-size: 24px;
}

.page {
    margin: 50px 0;
    min-height: 35vh;
}


/** Navbar
 **************************************************************** **/
.main-menu {
    padding: 10px 40px;
}

    .main-menu .menu {
        align-items: center !important;
        justify-content: space-between !important;
        display: flex !important;
        flex-wrap: wrap;
    }

@media (max-width: 991px) {
    .main-menu {
        padding: 10px;
        border: none;
    }
}

#header {
    padding: 0;
    position: relative;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
}

    #header #logo img {
        padding: 0;
        margin: 0;
        max-height: 60px;
    }

    #header.header-scrolled {
        background-color: #fff;
        -webkit-animation-name: slideInDown;
        animation-name: slideInDown;
        -webkit-animation-duration: .3s;
        animation-duration: .3s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
    }

        #header.header-scrolled #logo img {
            height: 50px;
        }

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    #header #logo img {
        max-height: 50px;
    }
}

.nav-menu, .nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none
}

    .nav-menu ul {
        position: absolute;
        display: none;
        top: 100%;
        right: 0;
        z-index: 99
    }

    .nav-menu li {
        position: relative;
        white-space: nowrap
    }

    .nav-menu > li {
        float: left
    }

    .nav-menu li:hover > ul, .nav-menu li.sfHover > ul {
        display: block
    }

    .nav-menu ul ul {
        top: 0;
        right: auto;
        left: 100%;
    }

    .nav-menu ul li {
        min-width: 180px
    }

    .nav-menu > li a:focus, .nav-menu > li a:hover {
        color: #999 !important;
        transition: all 0.3s ease 0s;
    }

    .nav-menu > li.active a {
        color: #fff;
        background: #666;
    }

.sf-arrows .sf-with-ul {
    padding-right: 30px
}

    .sf-arrows .sf-with-ul:after {
        content: "\f107";
        position: absolute;
        right: 15px;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: 800;
    }

.sf-arrows ul .sf-with-ul:after {
    content: "\f105"
}

@media (max-width: 767px) {
    #nav-menu-container {
        display: none
    }
}

.nav-menu a {
    padding: 0 8px 0px 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    outline: none
}

.nav-menu > li {
    margin-left: 10px
}

.nav-menu ul {
    margin: 22px 0 0 0;
    padding: 10px;
    box-shadow: 0px 0px 30px rgba(127,137,161,0.25);
    background: #fff
}

    .nav-menu ul li {
        transition: 0.3s
    }

        .nav-menu ul li a {
            padding: 5px 10px;
            color: #333;
            transition: 0.3s;
            display: block;
            font-size: 14px;
            font-weight: 600;
            white-space: normal;
            text-transform: none
        }

        .nav-menu ul li:hover > a {
            color: #fff !important;
            background: #666;
        }

    .nav-menu ul ul {
        margin-left: 10px;
        margin-top: 0;
    }

#mobile-nav-toggle {
    position: absolute;
    right: 0;
    z-index: 999;
    top: 0;
    border: 0;
    background: #f5f5f5;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
    padding: 18px;
}

    #mobile-nav-toggle i {
        position: relative;
        display: -moz-inline-stack;
        display: inline-block;
        zoom: 1;
        width: 25px;
        height: 3px;
        font: bold 14px/.4 Helvetica;
        text-transform: uppercase;
        text-indent: -55px;
        background: #000;
        transition: all .2s ease-out;
        top: -5px;
        right: 0;
    }

        #mobile-nav-toggle i::before, #mobile-nav-toggle i::after {
            content: '';
            width: 25px;
            height: 3px;
            background: #000;
            position: absolute;
            left: 0;
            -webkit-transition: 0.2s;
            -o-transition: 0.2s;
            transition: 0.2s;
        }

        #mobile-nav-toggle i::before {
            top: -7px;
        }

        #mobile-nav-toggle i::after {
            bottom: -7px;
        }

    #mobile-nav-toggle.active i {
        background: none;
    }

        #mobile-nav-toggle.active i::before {
            top: 0;
            -webkit-transform: rotateZ(45deg);
            -moz-transform: rotateZ(45deg);
            -ms-transform: rotateZ(45deg);
            -o-transform: rotateZ(45deg);
            transform: rotateZ(45deg);
        }

        #mobile-nav-toggle.active i::after {
            bottom: 0;
            -webkit-transform: rotateZ(-45deg);
            -moz-transform: rotateZ(-45deg);
            -ms-transform: rotateZ(-45deg);
            -o-transform: rotateZ(-45deg);
            transform: rotateZ(-45deg);
        }

@media (max-width: 991px) {
    #mobile-nav-toggle {
        display: inline;
        float: right;
    }

    #nav-menu-container {
        display: none;
    }
}

#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 998;
    background: #333;
    left: -250px;
    width: 250px;
    overflow-y: auto;
    transition: 0.4s
}

    #mobile-nav ul {
        padding: 0;
        margin: 0;
        list-style: none
    }

        #mobile-nav ul li {
            position: relative
        }

            #mobile-nav ul li a {
                color: #fff;
                font-size: 13px;
                text-transform: uppercase;
                overflow: hidden;
                padding: 10px;
                position: relative;
                text-decoration: none;
                width: 100%;
                display: block;
                outline: none;
                font-weight: 700;
                transition: all 0.3s ease-in-out;
            }

                #mobile-nav ul li a:hover {
                    color: #ccc;
                }

            #mobile-nav ul li.active a {
                color: #333;
                background: #eee;
            }

            #mobile-nav ul li li {
                padding-left: 15px;
            }

        #mobile-nav ul .menu-has-children i {
            position: absolute;
            right: 0;
            z-index: 99;
            padding: 10px;
            cursor: pointer;
            color: #fff
        }

            #mobile-nav ul .menu-has-children i.fa-angle-up {
                color: #b5c8ed;
            }

        #mobile-nav ul .menu-has-children li a {
            text-transform: none
        }

        #mobile-nav ul .menu-item-active {
            color: #b5c8ed;
        }

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(204,204,204,0.9);
    display: none
}

body.mobile-nav-active {
    overflow: hidden
}

    body.mobile-nav-active #mobile-nav {
        left: 0
    }

    body.mobile-nav-active #mobile-nav-toggle {
        background: #fff;
    }


/** Carousel
 **************************************************************** **/
.carousel-inner .item {
    -webkit-animation: rotateLeft 1.5s;
    animation: rotateLeft 1.5s;
    transition: all 4000ms ease 0s;
}

@keyframes rotateLeft {
    from {
        -webkit-transform: scale(1.5) rotate(35deg);
        transform: scale(1.5) rotate(35deg);
        opacity: 0;
    }

    to {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

    .carousel-inner .active.left,
    .carousel-inner .active.right {
        left: 0;
        opacity: 0;
        z-index: 1;
    }

.carousel-inner .next.left,
.carousel-inner .prev.right {
    opacity: 1;
}

.carousel-control.right {
    background-image: none;
}

.carousel-control.left {
    background-image: none;
}

#myCarousel {
    padding: 0 20px;
}

@media screen and (max-width: 991px) {
    #myCarousel {
        padding: 0;
    }
}


@media screen and (max-width: 767px) {
    .carousel-caption {
        display: none;
    }
}


/** Title
 **************************************************************** **/
#title {
    overflow: hidden;
    margin-bottom: 50px;
}

    #title p {
        float: left;
        position: relative;
        padding-bottom: 20px;
        font-weight: 800;
        font-size: 32px;
        margin: 20px 0;
        letter-spacing: 3px;
    }

        #title p::after {
            content: "";
            position: absolute;
            bottom: 0;
            width: 100px;
            height: 5px;
            left: 2%;
            background: #000;
            margin-left: -20px;
        }

#more {
    float: right;
    position: relative;
    text-align: left;
    margin-top: 25px;
}

    #more a {
        color: #777;
        background: #fff;
        font-weight: 800;
        border: 4px solid #777;
        border-radius: 0;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-size: 12px;
        padding: 10px 30px;
        transition: .3s ease-in-out;
    }

        #more a:hover {
            color: #fff;
            background: #777;
        }

@media screen and (max-width: 767px) {
    #more {
        float: left;
        position: relative;
        left: 50%;
        margin-top: 10px;
        transform: translate(-50%);
    }

    #title {
        margin-bottom: 30px;
    }

        #title p {
            float: none;
            text-align: center;
        }

            #title p::after {
                margin-left: 0;
                left: 50%;
                transform: translate(-50%);
            }
}


/** About
 **************************************************************** **/
#about {
    padding: 100px;
}

    #about #about-content {
        height: 500px;
        position: absolute;
        left: 28%;
        padding: 30px;
    }

        #about #about-content #about-item {
            position: relative;
            transform: translateY(-50%);
            top: 50%;
        }

    #about #content {
        position: relative;
        text-align: justify;
    }

    #about #aboutBg {
        height: 300px;
        position: relative;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        margin-bottom: 30px;
        border-radius: 10px;
    }

@media screen and (max-width: 767px) {
    #about {
        padding: 30px 10px;
    }
}


/** Products
 **************************************************************** **/
#products {
    background: #eee;
    padding: 60px 0;
}

    #products #content {
        position: relative;
        margin: 0 100px 50px;
    }

    #products #product {
        position: relative;
        height: 340px;
        padding: 5px;
        overflow: hidden;
        background: #fff;
        border: 5px solid #ddd;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }

        #products #product:hover {
            border-color: #222;
        }

        #products #product #product-pict {
            height: 260px;
            width: auto;
            padding: 10px;
            overflow: hidden;
            position: relative;
            margin-bottom: 10px;
        }

            #products #product #product-pict img {
                max-height: 100%;
                max-width: 100%;
                width: auto;
                height: auto;
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                margin: auto;
                padding: 10px;
                -webkit-transition: .3s ease-in-out;
                transition: .3s ease-in-out;
            }

        #products #product:hover #product-pict img {
            -webkit-transform: scale(1.2);
            transform: scale(1.2);
        }

        #products #product #product-name {
            border-top: 1px dotted #000;
            padding: 5px;
            width: 100%;
            height: 60px;
            display: table;
            position: relative;
        }

    #products #product #product-name h1 {
        font-size: 14px;
        color: #000;
        text-align: center;
        overflow: hidden;
        display: table-cell;
        vertical-align: middle;
    }

@media screen and (max-width: 767px) {
    #products #content {
        margin: 0;
    }
}

@media screen and (max-width: 480px) {
    #products {
        padding: 20px;
    }
}


/** Carousel
 **************************************************************** **/
#products #content .owl-carousel .owl-controls .owl-nav {
    opacity: 1;
}

#products #content:hover .owl-carousel .owl-controls .owl-nav {
    opacity: 1;
}

#products #content .owl-carousel .owl-controls .owl-nav .owl-next, #products .owl-carousel .owl-controls .owl-nav .owl-prev {
    background: none;
    color: #222;
    font-size: 25px;
    position: absolute;
    top: 35%;
}

    #products #content .owl-carousel .owl-controls .owl-nav .owl-next:hover, #products .owl-carousel .owl-controls .owl-nav .owl-prev:hover {
        color: #999;
    }

#products #content .owl-carousel .owl-controls .owl-nav .owl-next {
    right: -40px;
}

#products #content .owl-carousel .owl-controls .owl-nav .owl-prev {
    left: -40px;
}

@media screen and (max-width: 767px) {
    #products #content .owl-carousel .owl-controls .owl-nav .owl-next {
        right: 0;
    }

    #products #content .owl-carousel .owl-controls .owl-nav .owl-prev {
        left: 0;
    }
}


/** Brands
 **************************************************************** **/
#brands {
    padding: 60px 0;
}

    #brands #content {
        margin: 0 100px 50px;
    }

    #brands #brand-item {
        margin: 0;
    }

    #brands #brand-stage {
        padding: 0 5px;
    }

    #brands #brand {
        background: #fff;
        overflow: hidden;
        border: 5px solid #ddd;
        padding: 5px;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }

        #brands #brand:hover {
            border-color: #222;
        }

    #brands #brand-pict {
        height: 130px;
        width: 130px;
        margin: 0 auto;
        overflow: hidden;
        position: relative;
        background: #fff;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }

        #brands #brand-pict img {
            max-height: 100%;
            max-width: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            padding: 10px;
            -webkit-transition: .3s ease-in-out;
            transition: .3s ease-in-out;
        }

        #brands #brand-pict:hover {
            -webkit-transform: scale(1.2);
            transform: scale(1.2);
        }

    #brands #brand-name h3 {
        height: 80px;
        height: 80px;
        padding: 10px;
        font-size: 14px;
        color: #000;
        text-align: center;
        overflow: hidden;
    }

@media screen and (max-width: 991px) {
    #brands #brand {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    #brands #brand {
        height: 180px;
        width: 180px;
        margin: 0 auto 20px;
        display: block;
    }

    #brands #content {
        margin: 0;
    }

    #brands #brand-pict {
        height: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    #brands {
        padding: 20px;
    }
}


/** Awards
 **************************************************************** **/
#awards {
    padding: 60px 0;
}

    #awards #content {
        margin: 0 100px 50px;
    }

    #awards #award {
        position: relative;
        height: 340px;
        padding: 5px;
        overflow: hidden;
        background: #fff;
        margin-bottom: 30px;
        border: 5px solid #ddd;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }

        #awards #award:hover {
            border-color: #222;
        }

        #awards #award #award-pict {
            height: 230px;
            width: auto;
            margin: 0 auto;
            overflow: hidden;
            position: relative;
            background: #fff;
            border-bottom: none;
            margin-bottom: 10px;
        }

            #awards #award #award-pict img {
                max-height: 100%;
                max-width: 100%;
                width: auto;
                height: auto;
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                margin: auto;
                -webkit-transition: .3s ease-in-out;
                transition: .3s ease-in-out;
            }

        #awards #award:hover #award-pict img {
            -webkit-transform: scale(1.2);
            transform: scale(1.2);
        }

        #awards #award #award-name {
            border-top: 1px dotted #000;
            padding: 5px;
            width: 100%;
            height: 80px;
            display: table;
            position: relative;
        }

            #awards #award #award-name #award-name-content {
                display: table-cell;
                vertical-align: middle;
            }

            #awards #award #award-name h1 {
                color: #000;
                margin: 10px 0;
                font-size: 14px;
                overflow: hidden;
                text-align: center;
            }

            #awards #award #award-name h6 {
                color: #555;
                margin: 5px 0;
                text-align: center;
            }

@media screen and (max-width: 767px) {
    #awards #content {
        margin: 0;
    }
}

@media screen and (max-width: 480px) {
    #awards {
        padding: 20px;
    }
}


/** Contact Us
 **************************************************************** **/
#contacts {
    background: #222;
    padding: 60px;
}

    #contacts #contact-item {
        margin-left: 100px;
        height: 500px;
    }

        #contacts #contact-item p.contact-detail-title {
            color: #fff;
            position: relative;
            padding-bottom: 20px;
            font-weight: 800;
            font-size: 32px;
            letter-spacing: 3px;
            margin: 20px 0 50px;
        }

            #contacts #contact-item p.contact-detail-title::after {
                content: "";
                position: absolute;
                bottom: 0;
                width: 100px;
                height: 5px;
                left: 5%;
                background: #fff;
                margin-left: -20px;
            }

    #contacts #contact-detail {
        color: #fff;
        padding: 0;
    }

        #contacts #contact-detail p.title {
            color: #999;
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            line-height: 20px;
            margin: 10px 0;
            padding-bottom: 0;
        }

            #contacts #contact-detail p.title::after {
                display: none;
            }

        #contacts #contact-detail p.content {
            font-size: 12px;
            font-weight: 500;
            margin: 10px 0;
            padding-bottom: 0;
            letter-spacing: 1px;
        }

            #contacts #contact-detail p.content::after {
                display: none;
            }

    #contacts #contact-detail #contact {
        margin-bottom: 30px;
    }

        #contacts #contact-detail #contact a {
            color: #999;
            font-weight: 600;
            transition: all 0.3s ease-in-out;
        }

            #contacts #contact-detail #contact a:hover {
                color: #ccc;
            }

    #contacts #contact-detail #address {
        margin-bottom: 30px;
    }

        #contacts #contact-detail #social {
            margin-bottom: 30px;
        }

            #contacts #contact-detail #social a {
                color: #3b5998;
                font-size: 16px;
                background: #fff;
                padding: 5px 10px;
                display: inline-block;
            }

    #contacts #contact-map {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }

@media screen and (max-width: 991px) {
    #contacts {
        padding: 60px 20px;
    }

        #contacts #contact-item {
            margin-left: 0;
        }
}

@media screen and (max-width: 767px) {
    #contacts #contact-item {
        margin: 0;
    }
}

@media screen and (max-width: 480px) {
    #contacts {
        padding: 20px 10px;
    }
}

/** Footer
 **************************************************************** **/
footer {
    background: #ccc;
}

.footer {
    padding: 30px 0;
    font-size: 11px;
    color: #000;
    font-weight: 600;
    text-align: left;
    margin-left: 100px;
}

    .footer a {
        font-weight: 600;
        color: #666;
    }

        .footer a:hover {
            color: #333;
        }

    .footer h1 {
        margin: 0;
        font-size: 11px;
        font-weight: 600;
        display: inline-block;
    }

.copyright {
    float: left;
    padding-right: 3px;
    display: inline-block;
}

.powerBy {
    display: inline-block;
}

@media screen and (max-width: 991.98px) {
    .footer {
        margin-left: 0;
    }

    .copyright {
        float: none;
        display: block;
    }

    .powerBy {
        display: block;
    }
}


/** Page Header & Subpage Banner
 **************************************************************** **/
.subpage-banner {
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative !important;
}

.page-header {
    height: 350px;
    margin: 0;
    border-bottom: none;
    padding-bottom: 0;
    text-align: center;
}

    .page-header .overlay {
        background: #555;
        opacity: .8;
        position: absolute !important;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }

    .page-header .title {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }

    .page-header p {
        color: #fff;
        z-index: 1;
        margin: 0;
        font-size: 50px;
        font-weight: 800;
        line-height: 1.1;
        position: relative;
        text-transform: uppercase;
    }

    .page-header h1.page-title {
        z-index: 1;
        color: #fff;
        font-size: 30px;
        font-weight: 700;
        margin-top: 10px;
        position: relative;
        text-transform: uppercase;
    }

    .page-header .breadcrumb {
        z-index: 1;
        margin: 0;
        font-weight: 800;
        position: relative;
        background: none;
    }

        .page-header .breadcrumb a {
            color: #000;
        }

            .page-header .breadcrumb a:hover {
                color: #bbb;
            }

        .page-header .breadcrumb .active {
            color: #fff;
        }

        .page-header .breadcrumb li::before {
            color: #000;
        }

@media screen and (max-width: 767px) {
    .page-header p {
        font-size: 30px;
    }

    .page-header h1.page-title {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .page-header {
        height: 250px;
    }

        .page-header .breadcrumb {
            font-size: 13px;
        }
}


/** Product Page
 **************************************************************** **/
.product {
    height: 350px;
    padding: 5px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 20px;
    border: 5px solid #ddd;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

    .product:hover {
        border-color: #222;
    }

    .product .product-image {
        height: 260px;
        width: auto;
        padding: 10px;
        overflow: hidden;
        position: relative;
        border-bottom: none;
        margin-bottom: 10px;
    }

        .product .product-image img {
            max-height: 100%;
            max-width: 100%;
            width: auto !important;
            height: auto;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            -webkit-transform: scale(1);
            transform: scale(1);
            -webkit-transition: .3s ease-in-out;
            transition: .3s ease-in-out;
        }

    .product:hover .product-image img {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    .product .product-name {
        border-top: 1px dotted #000;
        padding: 5px;
        width: 100%;
        height: 60px;
        display: table;
        position: relative;
    }

        .product .product-name h1 {
            font-size: 14px;
            color: #000;
            text-align: center;
            overflow: hidden;
            display: table-cell;
            vertical-align: middle;
        }

/** Product Detail
 **************************************************************** **/
.product-detail-photo {
    margin-bottom: 30px;
    padding-left: 0;
}

.product-detail-buttons {
    margin-top: 20px;
    text-align: center;
}

.product-item {
    padding: 0 10px;
}

.product-item table {
    margin: 20px 0;
}

    .product-item table td {
        vertical-align: top;
    }

    .product-item a.btn {
        margin-bottom: 5px;
    }

@media screen and (max-width: 767px) {
    .product-detail-photo {
        padding-left: 15px;
    }
}


/******************************* Product Details Carousel ******************************* **/
#sync1 .item {
    position: relative;
    padding: 5px;
    max-width: 400px;
    height: 400px;
    width: 100%;
    margin: 0 auto;
    border: 1px solid #ddd;
    overflow: hidden;
}

    #sync1 .item img {
        padding: 5px;
        max-width: 100%;
        max-height: 100%;
        display: block;
        width: auto;
        height: auto;
        margin: auto;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }

#sync2 {
    max-width: 400px;
    width: 100%;
}

    #sync2 .item {
        position: relative;
        padding: 5px;
        max-width: 70px;
        height: 70px;
        width: 100%;
        margin: 5px auto;
        border: 1px solid #ddd;
        overflow: hidden;
        cursor: pointer;
    }

        #sync2 .item img {
            padding: 5px;
            max-width: 100%;
            max-height: 100%;
            display: block;
            width: auto;
            height: auto;
            margin: auto;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
        }

    #sync2 .current .item {
        border: 3px solid #222;
    }

.owl-theme .owl-nav {
    /*default owl-theme theme reset .disabled:hover links */
}

    .owl-theme .owl-nav [class*='owl-'] {
        transition: all 0.3s ease;
    }

        .owl-theme .owl-nav [class*='owl-'].disabled:hover {
            background-color: #D6D6D6;
        }

.owl-carousel .owl-stage {
    margin: 0 auto;
}

#sync1.owl-theme, #sync2.owl-theme {
    position: relative;
}

    #sync1.owl-theme .owl-next,
    #sync1.owl-theme .owl-prev {
        width: 40px;
        height: 40px;
        position: absolute;
        top: 45%;
        background: transparent;
        transform: translateY(-50%);
    }

    #sync1.owl-theme .owl-prev {
        left: 0;
    }

    #sync1.owl-theme .owl-next {
        right: 0;
    }

    #sync2.owl-theme .owl-next,
    #sync2.owl-theme .owl-prev {
        width: 40px;
        height: 40px;
        position: absolute;
        top: 45%;
        background: transparent;
        transform: translateY(-50%);
        color: #000;
    }

    #sync2.owl-theme .owl-prev {
        left: 0;
    }

    #sync2.owl-theme .owl-next {
        right: 0;
    }

@media screen and (max-width: 480px) {
    #sync1.owl-theme .owl-prev {
        left: -15px;
    }

    #sync1.owl-theme .owl-next {
        right: -15px;
    }
}


/******************************* Collapse Panel ******************************* **/
.fancy-collapse-panel .panel {
    border-radius: 0;
    border: none;
    box-shadow: none;
    transition: .3s ease-in-out;
}

    .fancy-collapse-panel .panel .collapse.in {
        height: 100% !important;
    }

.fancy-collapse-panel .panel-default > .panel-heading {
    padding: 0;
}

.fancy-collapse-panel .panel-heading a {
    width: 100%;
    padding: 12px 0;
    display: inline-block;
    font-weight: 700;
    background-color: #fff;
    color: #222;
    position: relative;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
}

    .fancy-collapse-panel .panel-heading a.collapsed {
        
    }

    .fancy-collapse-panel .panel-heading a:after {
        content: "\2212";
        position: absolute;
        right: 5px;
        font-size: 20px;
        top: 50%;
        line-height: 1;
        margin-top: -10px;
    }

    .fancy-collapse-panel .panel-heading a.collapsed:after {
        content: "\002B";
    }

.fancy-collapse-panel .panel-default .panel-body {
    padding: 20px;
    border-top: none !important;
    border-bottom: 1px solid #ddd;
}

    .fancy-collapse-panel .panel-default .panel-body .detail {
        padding: 0 10px;
    }

@media screen and (max-width: 480px) {
    .fancy-collapse-panel .panel-default .panel-body {
        padding: 0 5px 20px;
    }

        .fancy-collapse-panel .panel-default .panel-body .detail h3 {
            font-size: 20px;
        }
}


/** Brands Page
 **************************************************************** **/
.brand-image {
    height: 200px;
    width: 200px;
    padding: 5px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    background: #fff;
    border: 5px solid #ddd;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

    .brand-image:hover {
        border-color: #222;
    }

    .brand-image img {
        max-height: 100%;
        max-width: 100%;
        width: auto;
        height: auto;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }

    .brand-image:hover img {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

.brand-name {
    padding: 0 20px;
    position: relative;
    height: 70px;
}

    .brand-name h4 {
        padding: 5px;
        color: #222;
        font-size: 14px;
        font-weight: 700;
        text-align: center;
    }

    .brand-name .triangle {
        border-bottom: 70px solid #e3f0fb;
        border-left: 130px solid transparent;
        border-top-width: 0;
        border-right-width: 0;
        position: absolute;
        bottom: 0;
        right: 0;
    }


/** Scroll To Top
 **************************************************************** **/
.scrollup {
    width: 30px;
    height: 30px;
    position: fixed;
    bottom: 50px;
    right: 47.5px;
    display: none;
    background-color: #222;
    color: #fff;
    text-align: center;
    font-size: 20px;
    z-index: 1;
}

    .scrollup:hover, .scrollup:focus {
        background: #ddd;
        color: #222;
    }

@media screen and (max-width: 569px) {
    .scrollup {
        right: 5px;
        bottom: 65px;
    }
}


/** Whatsapp Plugin
 **************************************************************** **/
.whatsapp {
    padding: 5px;
    position: fixed;
    bottom: 130px;
    right: 0;
    cursor: pointer;
    display: inline;
    vertical-align: middle;
    z-index: 999;
    background: #222;
}

    .whatsapp i {
        height: 30px;
        width: 30px;
        color: #fff;
        font-size: 20px;
        background: #25d366;
        position: relative;
        border-radius: 3px;
        margin-right: 5px;
        text-align: center;
        line-height: 30px;
    }

    .whatsapp span {
        width: 0;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        overflow: hidden;
        align-items: center;
        white-space: nowrap;
        display: none;
        letter-spacing: 1px;
        justify-content: center;
        transition: width 500ms ease;
    }

    .whatsapp:hover span {
        width: 130px;
        display: inline-flex !important;
    }

@media screen and (max-width: 767px) {
    .whatsapp:hover span {
        display: none !important;
    }

    .whatsapp i {
        margin-right: 0;
    }
}


/** Facebook Plugin
 **************************************************************** **/
.facebook {
    padding: 5px;
    position: fixed;
    bottom: 173px;
    right: 0;
    cursor: pointer;
    display: inline;
    vertical-align: middle;
    z-index: 999;
    background: #222;
}

    .facebook i {
        height: 30px;
        width: 30px;
        color: #fff;
        font-size: 18px;
        background: #3b5998;
        position: relative;
        border-radius: 3px;
        margin-right: 5px;
        text-align: center;
        line-height: 30px;
    }

    .facebook span {
        width: 0;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        overflow: hidden;
        align-items: center;
        white-space: nowrap;
        display: none;
        letter-spacing: 1px;
        justify-content: center;
        transition: width 500ms ease;
    }

    .facebook:hover span {
        width: 130px;
        display: inline-flex !important;
    }

@media screen and (max-width: 767px) {
    .facebook:hover span {
        display: none !important;
    }

    .facebook i {
        margin-right: 0;
    }
}


/** Wechat Plugin
 **************************************************************** **/
.wechat {
    padding: 5px;
    position: fixed;
    bottom: 216px;
    right: 0;
    cursor: pointer;
    display: inline;
    vertical-align: middle;
    z-index: 999;
    background: #222;
}

    .wechat i {
        height: 30px;
        width: 30px;
        color: #fff;
        font-size: 18px;
        background: #7bb32e;
        position: relative;
        border-radius: 3px;
        margin-right: 5px;
        text-align: center;
        line-height: 30px;
    }

    .wechat span {
        width: 0;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        overflow: hidden;
        align-items: center;
        white-space: nowrap;
        display: none;
        letter-spacing: 1px;
        justify-content: center;
        transition: width 500ms ease;
    }

    .wechat:hover span {
        width: 130px !important;
    }

@media screen and (max-width: 767px) {
    .wechat:hover span {
        display: none !important;
    }

    .wechat i {
        margin-right: 0;
    }
}


/** Awards Page
 **************************************************************** **/
.award {
    height: 300px;
    width: 100%;
    padding: 5px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    display: block;
    border: 5px solid #ddd;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

    .award:hover {
        border-color: #222;
    }

    .award .award-item {
        height: 200px;
        width: auto;
        padding: 10px;
        overflow: hidden;
        position: relative;
    }

        .award .award-item img {
            max-height: 100%;
            max-width: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            -webkit-transform: scale(1);
            transform: scale(1);
            -webkit-transition: .3s ease-in-out;
            transition: .3s ease-in-out;
        }

    .award:hover .award-item img {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    .award .award-details {
        height: 80px;
        width: 100%;
        text-align: center;
        padding: 10px;
        border-radius: 0;
        display: table;
        border-top: 1px dotted #000;
    }

    .award .award-details .award-details-content {
        display: table-cell;
        vertical-align: middle;
    }



/** Award Details Page
 **************************************************************** **/
.award-details-item {
    text-align: center;
    margin-bottom: 30px;
}

    .award-details-item img {
        max-height: 250px;
        height: 100%;
        width: auto;
        margin: 0 auto;
        display: block;
    }

.award-info h3 {
    color: #222;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

@media screen and (max-width: 767px) {
    .award-info h3 {
        font-size: 25px;
    }
}


/** News & Events
 **************************************************************** **/
.news {
    height: 400px;
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 20px;
}

    .news .news-item {
        height: 300px;
    }

        .news .news-item .news-thumbnail {
            height: 230px;
            position: relative;
        }

            .news .news-item .news-thumbnail img {
                max-height: 100%;
                max-width: 100%;
                width: auto;
                height: auto;
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                margin: auto;
                padding: 5px;
            }

        .news .news-item .news-details {
            padding: 0 20px;
        }

            .news .news-item .news-details h3 {
                color: #222;
                font-weight: 700;
                margin-top: 0;
            }

                .news .news-item .news-details h3.thumbnail-details {
                    color: #222;
                    font-weight: 700;
                    margin-top: 15px;
                }

            .news .news-item .news-details h5 {
                color: #777;
                margin-top: 15px;
                letter-spacing: 0.5px;
                display: -webkit-box;
                width: 100%;
                line-height: 1.4;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
            }

        .news .news-item .news-description {
            position: relative;
            top: 50%;
            transform: translateY(-50%);
        }

    .news .line-dotted {
        border-top: 1px dotted #999;
        padding: 5px;
        width: 95%;
        margin: 0 auto;
        display: block;
    }

    .news .view-more {
        width: 95%;
        margin: 0 auto;
        display: block;
    }

        .news .view-more a {
            color: #222;
            font-weight: 600;
        }

            .news .view-more a:hover {
                color: #777;
            }

@media screen and (max-width: 767px) {
    .news .news-item .news-thumbnail {
        padding: 0;
    }

    .news .news-item .news-details h3.thumbnail-details {
        margin: 0;
    }
}


/******************************* News & Events Details ******************************* **/
.newsdetails {
    padding: 0 50px;
}

    .newsdetails .newsdetails-title {
        margin-bottom: 30px;
    }

        .newsdetails .newsdetails-title h2 {
            color: #222;
            margin: 10px 0;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .newsdetails .newsdetails-title h5 {
            color: #333;
            font-size: 13px;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .newsdetails .newsdetails-title img {
            margin: 0 auto;
            display: block;
            max-height: 500px;
            width: auto;
        }

    .newsdetails .line-dotted {
        border-top: 1px dotted #999;
        padding: 5px;
        margin: 0 auto;
        display: block;
    }

.newsdetails-item {
    margin-top: 10px;
    text-align: justify;
}

.newsdetails-item {
    margin-top: 10px;
    text-align: justify;
}

.sideNewsPanel {
    padding-bottom: 5px;
}

.sideNews {
}

    .sideNews h2 {
        padding-bottom: 5px;
        border-bottom: 1px dotted #999;
    }

.small-news {
    display: flex;
    min-height: 85px;
    margin-bottom: 5px;
    justify-content: space-between;
    padding-bottom: 5px !important;
    border-bottom: 1px dotted #999;
}

    .small-news a {
        width: 70%;
        display: flex;
        color: #777;
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 5px;
        align-items: center;
    }

    .small-news.no-photo a {
        width: 100%;
    }

    .small-news .small-news-photo {
        width: 30%;
        height: 80px;
        margin-left: 5px;
        position: relative;
        border: solid 1px #ddd;
    }

        .small-news .small-news-photo img {
            max-height: 100%;
            max-width: 100%;
            width: auto !important;
            height: auto;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            padding: 5px;
        }

.no-photo {
    display: block;
}

.small-news .small-news-details {
}

    .small-news .small-news-details p {
        font-size: 12px;
        font-weight: 500;
        overflow: hidden;
        text-align: left;
        margin-bottom: 0;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
    }

@media screen and (max-width: 991px) {
    .newsdetails {
        padding: 0 20px;
    }
}

/** Contact Us
 **************************************************************** **/
.contact-details {
    margin-bottom: 50px;
    padding: 0 150px;
}

    .contact-details .contact-item {
        margin-bottom: 50px;
    }

        .contact-details .contact-item p.title {
            text-transform: uppercase;
            font-weight: 700;
            margin: 20px 0;
            font-size: 28px;
            line-height: 1.1;
        }

        .contact-details .contact-item h1.company-name {
            font-size: 14px;
            font-weight: 600;
            margin: 10px 0 5px;
        }

        .contact-details .contact-item p.content {
            font-size: 14px;
        }

        .contact-details .contact-item a {
            font-weight: 600;
        }

.contact-map {
    margin-bottom: 20px;
}

    .contact-map .map-btn {
        display: none;
        background: #222;
        border: 2px solid #222;
        padding: 5px 10px;
        font-size: 13px;
        margin-bottom: 10px;
        margin-right: 5px;
    }

        .contact-map .map-btn:hover {
            background: #fff;
        }

        .contact-map .map-btn a {
            color: #fff;
            font-weight: 600;
        }

            .contact-map .map-btn a:hover {
                color: #222;
            }

@media (max-width: 767px) {
    .contact-details {
        padding: 0;
    }

        .contact-map .map-btn {
            display: inline-block;
        }
}


/** Other Products
 **************************************************************** **/
.other-products .owl-carousel .owl-stage {
    margin: inherit;
}


/** Brand Details Page
 **************************************************************** **/
.other-products {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

    .other-products p {
        color: #000;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 20px;
        font-family: "Montserrat", arial, sans-serif;
    }

.brand-details-left {
    height: 400px;
}

    .brand-details-left img {
        max-height: 300px;
        height: auto;
        width: auto;
        display: block;
        margin: 20px auto;
        border: 5px solid #ddd;
    }

    .brand-details-left h3 {
        text-align: center;
    }

.brand-details-right {
    padding: 30px;
    min-height: 400px;
}


/** Dealer Page
 **************************************************************** **/
.dealer-box {
    min-height: 820px;
    margin: 10px;
    background: #fff;
    border: 5px solid #ddd;
}

    .dealer-box .box-content {
        padding: 20px;
    }

        .dealer-box .box-content h1 {
            font-size: 25px;
            height: 80px;
            margin: 10px 0 30px;
        }

        .dealer-box .box-content span {
            margin-left: 10px;
        }

        .dealer-box .box-content p {
            color: #666;
        }

            .dealer-box .box-content p.dealer-box-title {
                color: #000;
                font-size: 18px;
                margin: 10px 0;
            }

        .dealer-box .box-content a {
            color: #666;
        }

            .dealer-box .box-content a:hover {
                color: #000;
            }

        .dealer-box .box-content i {
            width: 15px;
            margin-right: 5px;
        }

        .dealer-box .box-content .dealer-photo {
            overflow: hidden;
            padding: 10px;
            margin-bottom: 20px;
        }

        .dealer-box .box-content .top {
            height: 170px;
            margin-bottom: 20px;
            border-bottom: 1px solid #e0e0e0;
        }

        .dealer-box .box-content .middle-details {
            height: 150px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e0e0e0;
        }

        .dealer-box .box-content .middle span {
            margin-left: 10px;
        }

        .dealer-box .box-content .bottom {
            text-align: center;
        }

            .dealer-box .box-content .bottom a {
                color: #fff;
            }

@media screen and (max-width: 767px){
    .dealer-box {
        min-height: unset;
    }
}

@media screen and (max-width: 480px) {
    .dealer-box .box-content h2 {
        font-size: 22px;
    }
}


/** Photo Gallery
 **************************************************************** **/
.album {
    height: 350px;
    overflow: hidden;
    padding: 10px;
    margin: 0 0 20px;
    text-align: center;
    display: block;
    border: 5px solid #ddd;
}

    .album .album-cover {
        height: 250px;
        overflow: hidden;
        position: relative;
        margin: 0 auto 10px;
    }

        .album .album-cover img {
            max-height: 100%;
            max-width: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            padding: 10px;
        }

    .album .album-name {
        height: 70px;
    }

        .album .album-name h4 {
            font-size: 16px;
            color: #000;
        }

        .album .album-name h6 {
            color: #333;
        }

.album-details-title {
    margin: 10px 0 30px;
}

    .album-details-title a {
        font-size: 14px;
        padding: 10px;
        transition: 0.3s;
        display: inline-block;
        border: 1px solid rgba(25, 25, 25, 0.2);
    }

.album-details-item {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 20px;
    border: 5px solid #ddd;
}

    .album-details-item .album-details-photo-item {
        width: auto;
        height: 100%;
        position: relative;
    }

        .album-details-item .album-details-photo-item img {
            max-height: 100%;
            max-width: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            padding: 10px;
        }

    .album-details-item .album-details-video-item {
        height: 300px;
        padding: 10px;
        display: table;
    }

        .album-details-item .album-details-video-item .video-item {
            display: table-cell;
            vertical-align: middle;
        }

            .album-details-item .album-details-video-item .video-item .video-thumbnail {
                overflow: hidden;
                position: relative;
            }

                .album-details-item .album-details-video-item .video-item .video-thumbnail:after {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    -webkit-transform: translate(-50%, -50%);
                    content: "\f144";
                    font-family: FontAwesome;
                    font-size: 70px;
                    color: #fff;
                    opacity: 0.8;
                    text-shadow: 0px 0px 30px rgb(0 0 0 / 50%);
                }

            .album-details-item .album-details-video-item .video-item .video-name {
                overflow: hidden;
            }

                .album-details-item .album-details-video-item .video-item .video-name h4 {
                    font-size: 14px;
                    text-align: center;
                    font-weight: 600;
                }


/** Video Gallery
 **************************************************************** **/
.video {
    height: 340px;
    margin: 10px 0;
    padding: 10px;
    border: 5px solid #ddd;
}

    .video .video-thumbnail {
        width: 100%;
        height: 250px;
        overflow: hidden;
        position: relative;
    }

        .video .video-thumbnail img {
            max-height: 100%;
            max-width: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            padding: 10px;
        }

        .video .video-thumbnail a:after {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
            content: "\f144";
            font-family: FontAwesome;
            font-size: 70px;
            color: #fff;
            opacity: 0.8;
            text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
        }

    .video .video-name {
        width: 100%;
        height: 60px;
        padding: 5px;
        display: table;
        overflow: hidden;
    }

        .video .video-name h4 {
            font-size: 14px;
            font-weight: 600;
            text-align: center;
            display: table-cell;
            vertical-align: middle;
        }

@media screen and (max-width: 480px) {
    .video {
        height: 290px;
    }

        .video .video-thumbnail {
            height: 200px;
        }
}


/** Extension
 **************************************************************** **/
.extension {
    background: #fff;
    height: 330px;
    padding: 5px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 5px solid #ddd;
    transition: all 500ms ease;
}

    .extension .extension-photo {
        height: 240px;
        width: 240px;
        padding: 10px;
        margin: 0 auto;
        overflow: hidden;
        position: relative;
    }

        .extension .extension-photo img {
            max-height: 100%;
            max-width: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            -webkit-transform: scale(1);
            transform: scale(1);
            -webkit-transition: .3s ease-in-out;
            transition: .3s ease-in-out;
        }

        .extension .extension-photo:hover img {
            -webkit-transform: scale(1.2);
            transform: scale(1.2);
        }

    .extension .extension-name {
        height: 80px;
        padding: 5px;
    }

        .extension .extension-name h5 {
            font-size: 15px;
            text-align: center;
        }

        .extension .extension-name h6 {
            color: #555;
            font-size: 13px;
            text-align: center;
            font-style: italic;
            margin: 0 auto;
            display: -webkit-box;
            max-width: 500px;
            height: calc(14px*1.1*2);
            line-height: 1.2;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

@media screen and (max-width: 767px) {
    .extension {
        height: 100%;
    }

        .extension .extension-name {
            height: 100%;
        }
}


/** Extention Details
 **************************************************************** **/
.extension-details-left {
    padding: 10px;
}

    .extension-details-left img {
        max-height: 400px;
        height: auto;
        width: auto;
        display: block;
        margin: 0 auto;
    }

    .extension-details-left .extension-details-name {
        padding: 10px;
    }

        .extension-details-left .extension-details-name h3 {
            margin: 10px 0;
            font-size: 20px;
            text-align: center;
        }

        .extension-details-left .extension-details-name h5 {
            color: #555;
            font-style: italic;
            text-align: center;
        }

        .extension-details-left .extension-details-name h4 {
            width: 100%;
            padding: 5px;
            font-size: 15px;
            line-height: 1.3;
            background: #222;
            text-align: center;
            display: inline-block;
        }

        .extension-details-left .extension-details-name a {
            color: #fff;
        }

.extension-details-right {
    padding: 30px;
    min-height: 400px;
    border: 1px solid #eee;
}

@media screen and (max-width: 767px) {
    .extension-details-left {
        height: 100%;
        margin-bottom: 20px;
        border-bottom: 1px dotted #aaa;
    }

        .extension-details-left .extension-details-name {
            height: 100%;
        }
}


/** Back Button
 **************************************************************** **/
.back-to-btn {
    margin: 10px 0 50px;
    display: inline-block;
}

    .back-to-btn a {
        background: #222;
        color: #fff;
        padding: 10px;
        transition: 0.3s;
        font-weight: 600;
        border: 3px solid #222;
    }

        .back-to-btn a:hover {
            background: #fff;
            color: #222;
        }