/** Google fonts **/
@import url('https://fonts.googleapis.com/css?family=Ubuntu:400,500,700');

@font-face {
    font-family: 'FontAwesome';
    src: url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype') ;
    font-weight: normal;
    font-style: normal;
}
.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a, a:hover,
a:focus,
a:active,
input:focus,
textarea,
button {
    text-decoration: none;
    outline: none;
    outline: 0 solid;
}

img {
    max-width: 100%;
    height: auto;
}

html,
body {
    height: 100%;
}

body {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.8;
    font-size: 16px;
    color: #333;
    background: #efefef;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

li {
    display: inline-block;
}


.bg-white {
    background: white;
}
.p-15 {
    padding: 15px;
}
/*fontawesome*/
.fa-facebook-f:before,
.fa-facebook:before {
    content: "\f09a";
}

.fa-search:before {
    content: "\f002";
}

.fa-twitter:before {
    content: "\f099";
}

.fa-instagram:before {
    content: "\f16d";
}

.fa-plus-eye:before {
    content: "\f06e";
}

.fa-send:before, .fa-paper-plane:before {
    content: "\f1d8";
}

.fa-angle-double-right:before {
    content: "\f101";
}

.fa-instagram:before {
    content: "\f16d";
}

.fa-pinterest:before {
    content: "\f0d2";
}



/*region header-top*/
.header-top {
    background: #0A3B50;
    padding: 10px 0;
}

.header-top .search-form input {
    width: 100%;
    border: 0;
    padding-left: 15px !important;
    padding: 6px;
}

.header-top .search-form {
    position: relative;
}

.header-top .search-form .search-btn {
    position: absolute;
    right: 0;
    top: 0;
    background: #25A140;
    color: #fff;
    padding: 6px 15px;
    cursor: pointer;
}

.social-links a {
    color: #fff;
    padding-left: 20px;
}
/*endregion*/

/*region menu-nav*/
.menu-nav {
    background: #BDA35E;
}

.menu-nav ul li a {
    color: #fff;
    padding: 8px 0;
    display: block;
    position: relative;
    margin-right: 40px;
}

.menu-nav ul li a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #fff;
    height: 2px;
    width: 100%;
    content: "";
    visibility: hidden;
    opacity: 0;
}

.menu-nav ul li:last-child a {
    margin-right: 0;
}

.menu-nav ul li a:hover:after {
    opacity: 1;
    visibility: visible;
    transition: .3s;
}

.menu {
    display: none;
    clear: both;
    transition: max-height .2s ease-out;
}

.menu-icon {
    cursor: pointer;
    display: block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
}

.hamburger {
    background: #fff;
    display: block;
    height: 3px;
    position: relative;
    transition: background .2s ease-out;
    width: 30px;
    cursor: pointer;
}

.hamburger:before,
.hamburger:after {
    background: #fff;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .5s ease-out;
    width: 100%;
}

.hamburger:before {
    top: 8px;
}

.hamburger:after {
    top: -8px;
}

.menu-checkbox {
    opacity: 0;
}

.menu-checkbox:checked~.menu {
    display: block;
}

.menu-checkbox:checked~.menu-icon .hamburger {
    background: transparent;
}

.menu-checkbox:checked~.menu-icon .hamburger:before {
    transform: rotate(-225deg);
}

.menu-checkbox:checked~.menu-icon .hamburger:after {
    transform: rotate(225deg);
}

.menu-checkbox:checked~.menu-icon:not(.steps) .hamburger:before,
.menu-checkbox:checked~.menu-icon:not(.steps) .hamburger:after {
    top: 0;
}

/*menu-bar*/
@media (min-width: 768px) {
    nav li a {
        padding: 20px 30px;
    }

    .menu {
        display: block;
        clear: none;
        max-height: none;
    }

    .menu-icon,
    .menu-checkbox,
    .hamburger {
        display: none;
    }
}


@media (max-width: 767px) {
    .logo {
        text-align: center;
        margin-bottom: 10px;
    }

    .menu-nav {
        background: transparent;
        margin-top: -1px;
    }

    .menu-nav nav {
        position: absolute;
        top: -60px;
        right: 0;
        z-index: 11;
        width: 100%;
        cursor: pointer;
    }

    .menu-nav ul li {
        display: block;
    }

    .menu-nav ul li a {
        padding: 3px 0;
        margin-right: 0;
    }

    .menu-icon {
        margin: 0;
    }

    .menu {
        background: #BDA35E;
        padding: 20px;
    }
}
/*endregion*/

/*region home-banner*/
.carousel {
    position: relative;
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.64);
    margin-top: 26px;
}

.carousel-inner {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-open:checked + .item-banner {
    position: static;
    opacity: 100;
}

.item-banner {
    position: absolute;
    opacity: 0;
    -webkit-transition: opacity 0.6s ease-out;
    transition: opacity 0.6s ease-out;
}

.carousel-dots {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
    line-height: 0;
}

.carousel-dots label {
    margin-bottom: 0 !important;
}

.carousel-dots li {
    display: inline-block;
    margin: 0 5px;
}

.carousel-bullet {
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 35px;
    line-height: 0px;
}

#carousel-1:checked ~ .carousel-dots li:nth-child(1) .carousel-bullet,
#carousel-2:checked ~ .carousel-dots li:nth-child(2) .carousel-bullet,
#carousel-3:checked ~ .carousel-dots li:nth-child(3) .carousel-bullet {
    color: #BDA35E;
}
/*endregion*/

/* region Slider*/
.banner-image img {
    width: 100%;
}

.banner-slider {
    position: relative;
}
.banner-slider .banner-image:not(:first-child) {
    display: none;
}
.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 2s ease;
}
.slider-dot {
    position: absolute;
    z-index: 1;
    bottom: 5px;
    left: 0;
    right: 0;
    text-align: center;
}
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 2s;
    animation-name: fade;
    animation-duration: 2s;
}
@-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}
@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}
/* endregion */

/*region product-list*/
.section-title h2 {
    background: #318200;
    color: #fff;
    padding: 8px 20px;
    margin-bottom: 10px;
    margin-top: 50px;
}

.single-product-item {
    background: #fff;
    position: relative;
    margin-bottom: 30px;
}

.single-product-item .product-name h3 {
    background: #318200;
    color: #ffff;
    font-size: 20px;
    padding: 10px 20px;
    margin-bottom: 0;
}

.product-img:after {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.5);
    content: "";
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
}

.single-product-item .hover-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 36px;
    z-index: 9;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
}

.single-product-item .product-img {
    text-align: center;
    position: relative;
}

.single-product-item .hover-icon i {
    color: #fff;
}

.product-img:hover .hover-icon,
.product-img:hover:after{
    opacity: 1;
    visibility: visible;
    cursor: pointer;
    transition: .3s;
}

.show-more-btn {
    text-align: center;
}

.show-more-btn a {
    background: #fff;
    color: #000;
    padding: 10px 20px;
    font-weight: 500;
}

.show-more-btn a:hover {
    background: #318200;
    transition: .3s;
    color: #fff;
}

/*region pagination style */
.product-listing .bottom-bar {
    padding-top: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    border-top: 3px solid #dce1e5;
}

.pagination  li {
    display: inline-block;
    color: #6e6f70;
    font-size: 12px;
    padding: 8px 12px;
    text-decoration: none;
    transition: background-color .3s;
}

.pagination li.active {
    background-color: #f58220;
    color: #ffffff;
}

.pagination a:hover {
    background-color: #ffffff;
}

.bottom-bar p {
    padding-top: 8px;
    text-align: right;
    font-size: 14px;
    color: #6e6f70;
    text-transform: uppercase;
    margin: 0;
}

.product-listing .category-description {
    background-color: #ffffff;
}

.category-description h2{
    margin: 0;
    padding-bottom: 15px;
    font-size: 28px;
    line-height: 40px;
    color: #353637;

}

.category-description p{
    margin: 0;
    font-size: 14px;
    color: #353637;
    line-height: 24px;
}
/*endregion*/

/*endregion*/

/*newsletter css*/
.newsletter-area {
    background: #fff;
    padding: 30px 0;
    margin-top: 50px;
    text-align: center;
}

.newsletter-btn {
    position: absolute;
    right: 0;
    top: 0;
    background: #BDA35E;
    color: #fff;
    padding: 7px 16px;
}

.newsletter-info-from {
    position: relative;
}

form.newsletter-info-from input {
    width: 100%;
    padding-left: 15px !important;
    padding: 5px;
}
/*endnewslettercss*/


/*footer-ares css*/
.footer-area {
    background: #0A3B50;
    color: #fff;
    padding: 20px 0;
}

.footer-area .social-links a {
    padding-left: 0;
    padding-right: 20px;
}

.footer-widget ul li {
    display: block;
}

.footer-widget ul li a {
    color: #fff;
}

.footer-bottom-bar p {
    background: #BDA35E;
    text-align: center;
    padding: 5px;
    margin-bottom: 0;
    color: #fff;
}
/*endfooter*/

@media (max-width: 767px) {
    .container {
        max-width: 100%;
    }

    .social-links {
        display: none !important;
    }

    .footer-area .logo {
        text-align: inherit;
    }

    .footer-area .social-links {
        display: block !important;
    }

    .footer-widget {
        margin-top: 30px;
    }
}


/*region breadcrumb*/
.breadcrumb {
    background: #fff;
    padding: 7px 0;
    font-size: 14px;
}

.breadcrumb ul li a {
    color: #000;
    margin-right: 5px;
    position: relative;
}

.breadcrumb ul li a:after {
    content: "\f101";
    font-family: FontAwesome;
    padding-left: 5px;
}

.breadcrumb ul li:last-child a:after {
    display: none;
}
.breadcrumb ul li:last-child a {
    margin-right: 0;
}
/*endregion*/

/*Product Details Page CSS Start*/

/*region product-page*/
.product-details {
    margin-top: 30px;
}

.product-thumb {
    background: #FFF;
    float: left;
    width: 12%;
    border-right: 1px solid #ddd;
}

.product-details .product-thumb li {
    padding-bottom: 10px;
    border-bottom: 1px solid #dddddd;
}

.product-details .product-thumb li:last-child {
    border-bottom: 0;
}

.product-details .product-img-holder {
    background: #fff;
    text-align: center;

}
.product-details .product-img-holder.with-additional {
    margin-left: 70px;
}
.product-details .product-info {
    background: #fff;
    padding: 30px;
    height: 100%;
}

.product-details .product-info .key-featured ul li {
    display: block;
    font-size: 14px;
    line-height: 20px;
}

.product-details .product-info .key-featured a {
    color: #000;
    font-weight: 500;
    margin-top: 10px;
    display: block;
}

.product-details .product-info h2 {
    font-size: 24px;
}

.product-info .social-links h6 {
    margin-bottom: 0;
    margin-right: 15px;
}

.product-info .social-links li {
    color: #000;
    padding-left: 0;
    padding-right: 10px;
}

.nav-tabs-bar .navs {
    background: #fff;
    margin-top: 30px;
    margin-bottom: 20px;
}

.nav-tabs-bar li {
    margin-right: 30px;
    font-weight: 500;
    position: relative;
    padding: 10px;
    cursor: pointer;
}

.nav-tabs-bar li:after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: #BDA35E;
    content: "";
    width: 100%;
    opacity: 0;
    visibility: hidden;
}

.nav-tabs-bar li:hover:after {
    opacity: 1;
    visibility: visible;
    transition: .3s;
}
/*endregion*/

/*region specification*/
table {
    width: 100%;
    border-collapse: collapse;
}

table tr th {
    background: #BDA35E;
    color: #fff;
    padding-left: 20px !important;
    padding: 3px;
    border: 1px solid #BDA35E;

}

table tr td {
    border: 1px solid #8e8989;
}

table tr .name {
    width: 30%;
    text-align: right;
    padding-right: 30px;
}

table tr .value {
    width: 70%;
    padding-left: 30px;
}
/*endregion*/

/*region description*/
.description {
    padding: 20px;
    background: #fff;
    margin: 30px 0;
}
/*endregion*/


@media (max-width: 991px) {
    .breadcrumb ul {
        width: 100%;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        display: block;
    }

    .product-items {
        position: relative;
    }

    .product-thumb {
        position: absolute;
        width: 100%;
        bottom: -66px;
        text-align: center;
        border-top: 1px solid #ddd;
        border-right: 0;
    }

    .product-details .product-img-holder {
        margin-left: 0;
    }

    .product-details .product-thumb li {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .product-info {
        margin-top: 100px;
        height: inherit !important;
    }
}