@import 'theme_color';
@import 'fonts';
@import 'mixin';
@import 'responsive';

/* [Master Stylesheet] */

/*
Template Name: Alazea - Gardening &amp; Landscaping HTML Template
Template Author: Colorlib
Template Author URI: http://colorlib.com
Text Domain: Alazea, Gardening & Landscaping
Version: - v1.0
*/

/* :: 1.0 Import Fonts */

@import url('https://fonts.googleapis.com/css?family=Dosis:200,300,400,500,600,700,800');

/* :: 2.0 Import All CSS */

@import 'css/bootstrap.min.css';
@import 'css/classy-nav.css';
@import 'css/owl.carousel.min.css';
@import 'css/animate.css';
@import 'css/magnific-popup.css';
@import 'css/font-awesome.min.css';
@import 'css/elegant-icon.css';

/* :: 3.0 Base CSS */

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: $fonts;
    font-size: 18px;
    // color: $text-color;
    color: black;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: $heading-color;
    line-height: 1.3;
    font-weight: 500;
}

p {
    color: $text-color;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    // font-variant: historical-ligatures;
    font-family: sans-serif;
}

a,
a:hover,
a:focus {
    @include trans-duration(500ms);
    text-decoration: none;
    outline: 0 solid transparent;
    color: $heading-color;
    font-weight: 500;
    font-size: 14px;
}

ul,
ol {
    margin: 0;
    li {
        list-style: none;
    }
}

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

/* :: 3.1.0 Spacing */

.mt-15 {
    margin-top: 15px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mt-70 {
    margin-top: 70px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.ml-15 {
    margin-left: 15px !important;
}

.ml-30 {
    margin-left: 30px !important;
}

.ml-50 {
    margin-left: 50px !important;
}

.mr-15 {
    margin-right: 15px !important;
}

.mr-30 {
    margin-right: 30px !important;
}

.mr-50 {
    margin-right: 50px !important;
}

/* :: 3.2.0 Height */

.height-400 {
    height: 400px;
}

.height-500 {
    height: 500px;
}

.height-600 {
    height: 600px;
}

.height-700 {
    height: 700px;
}

.height-800 {
    height: 800px;
}

/* :: 3.3.0 Section Padding */

.section-padding-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-padding-100-0 {
    padding-top: 100px;
    padding-bottom: 0;
}

.section-padding-0-100 {
    padding-top: 0;
    padding-bottom: 100px;
}

.section-padding-100-70 {
    padding-top: 100px;
    padding-bottom: 70px;
}

/* :: 3.4.0 Section Heading */

.section-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
    h2 {
        font-size: 30px;
        text-transform: uppercase;
        margin-bottom: 0;
        @media #{$breakpoint-xs} {
            font-size: 24px;
        }
    }
    p {
        font-size: 16px;
        color: $text-color;
        margin-bottom: 0;
    }
}

/* :: 3.5.0 Preloader */

.preloader {
    background-color: $bg-gray;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    overflow: hidden;
    .preloader-circle {
        width: 80px;
        height: 80px;
        position: relative;
        border-style: solid;
        border-width: 2px;
        border-top-color: $bg-default;
        border-bottom-color: transparent;
        border-left-color: transparent;
        border-right-color: transparent;
        z-index: 10;
        border-radius: 50%;
        box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.15);
        background-color: $white-color;
        @include animation(zoom 2000ms infinite ease);
    }
    .preloader-img {
        position: absolute;
        top: 50%;
        left: 50%;
        @include transform(translate(-50%, -50%));
        z-index: 200;
        img {
            max-width: 45px;
        }
    }
}

@-webkit-keyframes zoom {
    0% {
        @include transform(rotate(0deg));
    }
    100% {
        @include transform(rotate(360deg));
    }
}

@keyframes zoom {
    0% {
        @include transform(rotate(0deg));
    }
    100% {
        @include transform(rotate(360deg));
    }
}

/* :: 3.6.0 Miscellaneous */

.bg-img {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-white {
    background-color: #ffffff !important;
}

.bg-dark {
    background-color: #000000 !important;
}

.bg-transparent {
    background-color: transparent !important;
}

.font-bold {
    font-weight: 700;
}

.font-light {
    font-weight: 300;
}

.bg-overlay {
    position: relative;
    z-index: 2;
    background-position: center center;
    background-size: cover;
    &::after {
        background-color: rgba(17, 17, 17, 0.5);
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        content: "";
    }
}

.bg-fixed {
    background-attachment: fixed !important;
}

.bg-gray {
    background-color: $bg-gray;
}

/* :: 3.7.0 ScrollUp */

#scrollUp {
    background-color: $bg-default;
    border-radius: 0;
    bottom: 0;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
    color: $white-color;
    font-size: 24px;
    height: 40px;
    line-height: 40px;
    right: 50px;
    text-align: center;
    width: 40px;
    @include trans-duration(500ms);
    &:hover {
        background-color: $heading-color;
    }
}

/* :: 3.8.0 alazea Button */

.alazea-btn {
    @include trans-duration(400ms);
    position: relative;
    z-index: 1;
    display: inline-block;
    min-width: 150px;
    height: 46px;
    color: $white-color;
    background-color: $pri-color;
    border: 2px solid $pri-color;
    border-radius: 2px;
    padding: 0 20px;
    font-size: 16px;
    line-height: 42px;
    text-transform: uppercase;
    font-weight: 600;
    &.active,
    &:hover,
    &:focus {
        font-size: 16px;
        color: $pri-color;
        font-weight: 600;
        background-color: transparent;
        box-shadow: none;
    }
}

/* :: 4.0 Header Area CSS */

.header-area {
    position: absolute;
    width: 100%;
    z-index: 999;
    top: 0;
    left: 0;
    background-color: transparent;
    .top-header-area {
        position: relative;
        z-index: 100;
        background-color: transparent;
        width: 100%;
        height:100px;
        border-bottom: 1px solid rgba(235, 235, 235, 0.2);
        @media #{$breakpoint-md} {
            z-index: 1;
        }
        @media #{$breakpoint-xs} {
            z-index: 1;
        }
        .top-header-content {
            position: relative;
            z-index: 1;
            height: 41px;
            .top-header-meta {
                a {
                    display: inline-block;
                    font-size: 12px;
                    font-weight: 400;
                    color: $white-color;
                    line-height: 1;
                    &:first-child {
                        margin-right: 30px;
                    }
                    i {
                        margin-right: 5px;
                        color: $pri-color;
                    }
                    span {
                        @media #{$breakpoint-xs} {
                            display: none;
                        }
                    }
                }
                .language-dropdown {
                    position: relative;
                    z-index: 1;
                    &::after {
                        width: 1px;
                        height: 100%;
                        background-color: rgba(235, 235, 235, 0.2);
                        content: '';
                        top: 0;
                        right: 15px;
                        z-index: 2;
                        position: absolute;
                    }
                    .btn {
                        padding: 0;
                        background-color: transparent;
                        border: none;
                        font-size: 12px;
                        &:focus {
                            box-shadow: none;
                        }
                    }
                    .dropdown-menu {
                        background-color: $bg-default;
                        border: none;
                        box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.15);
                        @media #{$breakpoint-md} {
                            top: 90px !important;
                        }
                        @media #{$breakpoint-xs} {
                            min-width: 100px;
                            top: 70px !important;
                        }
                        .dropdown-item:focus,
                        .dropdown-item:hover {
                            color: $white-color;
                            background-color: $dark-color;
                        }
                    }
                }
                .cart {
                    position: relative;
                    z-index: 1;
                    &::after {
                        width: 1px;
                        height: 100%;
                        background-color: rgba(235, 235, 235, 0.2);
                        content: '';
                        top: 0;
                        left: -15px;
                        z-index: 2;
                        position: absolute;
                    }
                    a {
                        margin-right: 0;
                    }
                }
            }
        }
    }

    .alazea-main-menu {
        position: relative;
        z-index: 1;
        @include trans-duration(200ms);
        .classy-navbar .classy-menu {
            @media #{$breakpoint-md} {
                background-color: $dark-color;
            }
            @media #{$breakpoint-xs} {
                background-color: $dark-color;
            }
        }
        .classy-nav-container {
            background-color: transparent;
        }
        .classy-navbar {
            height: 40px;
            padding: 0;
            .nav-brand {
                line-height: 1;
            }
            @media #{$breakpoint-xs} {
                height: 35px;
            }
        }
        .classynav ul li a {
            padding: 0 30px;
            font-weight: 500;
            text-transform: capitalize;
            font-size: 20px;
            color: $white-color;
            @media #{$breakpoint-lg} {
                font-size: 18px;
                padding: 0 20px;
            }
            @media #{$breakpoint-md} {
                background-color: $dark-color;
                font-size: 16px;
                color: $white-color;
                border-bottom: none;
            }
            @media #{$breakpoint-xs} {
                background-color: $dark-color;
                font-size: 16px;
                color: $white-color;
                border-bottom: none;
            }
            &:hover,
            &:focus {
                color: $hover-color;
            }
            &::after {
                color: $white-color;
            }
        }
        .classynav ul li ul li a {
            padding: 0 20px;
            color: $heading-color;
            font-size: 14px;
            border-bottom: none;
            &::after {
                color: $heading-color;
                @media #{$breakpoint-md} {
                    color: $white-color;
                }
                @media #{$breakpoint-xs} {
                    color: $white-color;
                }
            }
            @media #{$breakpoint-md} {
                padding: 0 45px;
                color: $white-color;
            }
            @media #{$breakpoint-xs} {
                padding: 0 45px;
                color: $white-color;
            }
        }
        .classy-navbar-toggler .navbarToggler span {
            @media #{$breakpoint-md} {
                background-color: $white-color;
            }
            @media #{$breakpoint-xs} {
                background-color: $white-color;
            }
        }
        .classycloseIcon .cross-wrap span {
            @media #{$breakpoint-md} {
                background: $white-color;
            }
            @media #{$breakpoint-xs} {
                background: $white-color;
            }
        }
        .search-form {
            position: relative;
            z-index: 1;
            opacity: 0;
            visibility: hidden;
            @include trans-duration(500ms);
            form {
                @include trans-duration(500ms);
                position: absolute;
                top: 0;
                right: 0;
                z-index: 100;
                background-color: $white-color;
                width: 500px;
                border-radius: 5px;
                padding: 30px;
                box-shadow: 0 3px 40px 0 rgba(0, 0, 0, .15);
                @media #{$breakpoint-xs} {
                    width: 290px;
                    padding: 20px;
                }
                input {
                    width: 100%;
                    height: 45px;
                    border: 1px solid $border-color;
                    padding: 0 30px;
                    border-radius: 5px;
                    font-size: 14px;
                    @media #{$breakpoint-xs} {
                        padding: 0 15px;
                    }
                }
            }
            .closeIcon {
                @include trans-duration(500ms);
                position: absolute;
                top: 41px;
                right: 60px;
                z-index: 200;
                cursor: pointer;
                color: $text-color;
                &:hover {
                    color: $hover-color;
                }
                @media #{$breakpoint-xs} {
                    top: 31px;
                    right: 35px;
                }
            }
            &.active {
                opacity: 1;
                visibility: visible;
            }
        }
    }
    .is-sticky {
        .alazea-main-menu {
            background-color: $dark-color;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 9999;
            box-shadow: 0 5px 50px 15px rgba(0, 0, 0, 0.2);
        }
    }
    #searchIcon {
        @include trans-duration(500ms);
        color: $white-color;
        font-size: 20px;
        cursor: pointer;
        margin-left: 50px;
        @media #{$breakpoint-md} {
            margin-left: 30px;
            margin-top: 15px;
        }
        @media #{$breakpoint-xs} {
            margin-left: 30px;
            margin-top: 15px;
        }
        &:hover,
        &:focus {
            color: $hover-color;
        }
    }
}

/* :: 5.0 Hero Slides Area */

.hero-area,
.hero-post-slides {
    position: relative;
    z-index: 1;
}

.single-hero-post {
    width: 100%;
    height: 500px;
    position: relative;
    z-index: 3;
    overflow: hidden;
    @media #{$breakpoint-lg} {
        height: 500px;
    }
    @media #{$breakpoint-md} {
        height: 500px;
    }
    @media #{$breakpoint-xs} {
        height:  500px;
    }
    @media #{$breakpoint-xs-landscape} {
        height:  500px;
    }
    .slide-img {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: -10;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }
    .hero-slides-content {
        position: relative;
        z-index: 1;
        margin-top: 132px;
        @media #{$breakpoint-xs} {
            margin-top: 112px;
        }
        h2 {
            font-size: 45px;
            letter-spacing: 1px;
            color: $white-color;
            text-transform: uppercase;
            @media #{$breakpoint-lg} {
                font-size: 36px;
            }
            @media #{$breakpoint-md} {
                font-size: 30px;
            }
            @media #{$breakpoint-xs} {
                font-size: 24px;
            }
        }
        p {
            font-size: 18px;
            color: $white-color;
            margin-bottom: 50px;
            @media #{$breakpoint-md} {
                font-size: 18px;
            }
            @media #{$breakpoint-xs} {
                font-size: 16px;
            }
        }
        a {
            @media #{$breakpoint-xs} {
                min-width: 125px;
                padding: 0 10px;
            }
        }
    }
}

.hero-post-slides .owl-item.center .single-hero-post .slide-img {
    @include animation(slide 24s linear infinite);
}

@-webkit-keyframes slide {
    0% {
        @include transform(scale(1));
    }
    50% {
        @include transform(scale(1.3));
    }
    100% {
        @include transform(scale(1));
    }
}

@keyframes slide {
    0% {
        @include transform(scale(1));
    }
    50% {
        @include transform(scale(1.3));
    }
    100% {
        @include transform(scale(1));
    }
}

/* :: 6.0 Subscribe Newsletter Area */

.subscribe-newsletter-area {
    position: relative;
    z-index: 1;
    padding: 60px 0;
    background-size: cover;
    background-position: top right;
    .subscribe-form {
        @media #{$breakpoint-md} {
            margin-top: 50px;
        }
        @media #{$breakpoint-xs} {
            margin-top: 50px;
        }
        form {
            position: relative;
            z-index: 1;
            input {
                @include trans-duration(500ms);
                width: 100%;
                height: 46px;
                background-color: $white-color;
                padding: 10px 20px;
                border: none;
                &:focus {
                    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.15);
                }
            }
            button {
                position: absolute;
                top: 0;
                right: 0;
                z-index: 10;
                border: none;
                border-radius: 0 2px 2px 0;
            }
        }
    }
    .subscribe-side-thumb {
        .first-img {
            position: absolute;
            top: -30px;
            left: 5%;
            z-index: 10;
        }
    }
}

/* :: 7.0 New Arrivals Products Area */

.single-product-area {
    position: relative;
    z-index: 1;
    @include trans-duration(500ms);
    .product-img {
        position: relative;
        z-index: 1;
        @include trans-duration(500ms);
        a {
            display: block;
        }
        img {
            position: relative;
            z-index: 1;
            width: 100%;
        }
        .product-tag {
            a {
                background-color: #429edf;
                border-radius: 2px;
                display: inline-block;
                height: 20px;
                padding: 0 10px;
                line-height: 20px;
                text-transform: uppercase;
                color: $white-color;
                font-weight: 700;
                font-size: 12px;
                position: absolute;
                top: 20px;
                left: 20px;
                z-index: 10;
            }
            &.sale-tag {
                a {
                    background-color: #e61d47;
                }
            }
        }
        .product-meta {
            position: absolute;
            bottom: 30px;
            left: 15px;
            right: 15px;
            z-index: 100;
            visibility: hidden;
            opacity: 0;
            @include trans-duration(500ms);
            a {
                font-size: 16px;
                color: $white-color;
                font-weight: 600;
                background-color: $heading-color;
                @include flex(0 0 50px);
                max-width: 50px;
                width: 50px;
                height: 50px;
                line-height: 50px;
                text-transform: uppercase;
                text-align: center;
                &:hover,
                &:focus {
                    background-color: $hover-color;
                }
                @media #{$breakpoint-lg} {
                    font-size: 11px;
                }
                @media #{$breakpoint-md} {
                    font-size: 11px;
                }
                @media #{$breakpoint-xs} {
                    font-size: 14px;
                }
            }
            .add-to-cart-btn {
                @include flex(0 0 calc(100% - 100px));
                max-width: calc(100% - 100px);
                width: calc(100% - 100px);
                border-left: 1px solid rgba(235, 235, 235, 0.5);
                border-right: 1px solid rgba(235, 235, 235, 0.5);
            }
        }
    }
    .product-info {
        a {
            p {
                margin-bottom: 0;
                @include trans-duration(300ms);
                &:hover,
                &:focus {
                    color: $hover-color;
                }
            }
        }
        h6 {
            margin-bottom: 0;
            font-size: 18px;

        }
    }
    &:hover {
        .product-img {
            box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.15);
            .product-meta {
                visibility: visible;
                opacity: 1;
            }
        }
    }
}

/* :: 8.0 Shop Page Area CSS */

.shop-sorting-data {
    position: relative;
    z-index: 1;
    padding-bottom: 25px;
    margin-bottom: 50px;
    border-bottom: 1px solid $border-color;
    .shop-page-count {
        @media #{$breakpoint-xs} {
            margin-bottom: 30px;
        }
        p {
            font-size: 18px;
            color: $text-color;
            margin-bottom: 0;
            font-weight: 500;
        }
    }
    .search_by_terms {
        position: relative;
        z-index: 1;
        select {
            width: 180px;
            height: 40px;
            color: #51545f;
            font-size: 16px;
            background-color: #f5f5f5;
            border: 1px solid $border-color;
            border-radius: 2px;
            margin-left: 30px;
            @media #{$breakpoint-xs} {
                margin-left: 0;
                margin-bottom: 15px;
            }
            @media #{$breakpoint-xs-landscape} {
                margin-left: auto;
                margin-right: 15px;
                margin-bottom: 0;
            }
            &:focus {
                box-shadow: none;
            }
        }
    }
}

.shop-widget {
    position: relative;
    z-index: 1;
    .widget-title {
        text-transform: uppercase;
        margin-bottom: 20px;
    }
    .custom-control {
        .custom-control-label {
            font-size: 16px;
            color: $text-color;
        }
    }
    .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
        background-color: $hover-color;
    }
    .single-best-seller-product {
        position: relative;
        z-index: 1;
        margin-bottom: 20px;
        &::after {
            margin-bottom: 0;
        }
        .product-thumbnail {
            @include flex(0 0 70px);
            max-width: 70px;
            width: 70px;
            margin-right: 30px;
        }
        .product-info {
            a {
                display: block;
                color: $text-color;
                font-size: 16px;
                font-weight: 400;
                margin-bottom: 5px;
                &:hover,
                &:focus {
                    color: $heading-color;
                }
            }
            p {
                margin-bottom: 0;
                color: $heading-color;
                font-weight: 500;
            }
            .ratings {
                i {
                    font-size: 12px;
                    color: #ff9800;
                }
            }
        }
    }
}

.slider-range-price {
    position: relative;
    z-index: 1;
}

.shop-widget .ui-slider-handle {
    background-color: $hover-color;
    border: none;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    position: absolute;
    z-index: 30;
    top: -3px;
}

.ui-slider-handle.first-handle {
    display: none !important;
}

.shop-widget .ui-slider-range.ui-widget-header.ui-corner-all {
    background-color: $hover-color;
    position: absolute;
    height: 6px;
    width: auto;
    z-index: 10;
    left: 2px !important;
}

.shop-widget .ui-slider-horizontal {
    height: 6px;
    background-color: #f5f5f5;
    border-radius: 10px;
}

.shop-widget .range-price {
    font-size: 16px;
    font-weight: 500;
    margin-top: 15px;
    text-transform: uppercase;
}

.single_product_thumb {
    position: relative;
    z-index: 1;
    @media #{$breakpoint-xs} {
        margin-bottom: 50px;
    }
    .carousel-indicators {
        position: relative;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 15;
        margin-right: 0;
        margin-left: 0;
        margin-top: 30px;
        li {
            @include flex(0 0 100px);
            width: 100px;
            height: 100px;
            margin-right: 15px;
            margin-left: 15px;
            cursor: pointer;
            border: 1px solid transparent;
            background-size: cover;
            @media #{$breakpoint-xs} {
                @include flex(0 0 60px);
                width: 60px;
                height: 60px;
            }
            &.active {
                border: 1px solid $hover-color;
            }
        }
    }
}

.single_product_desc {
    position: relative;
    z-index: 1;
    .title {
        font-size: 30px;
        margin-bottom: 10px;
        text-transform: uppercase;
        @media #{$breakpoint-xs} {
            font-size: 24px;
        }
    }
    .price {
        font-size: 26px;
        font-weight: 600;
        color: $hover-color;
        margin-bottom: 30px;
    }
    .short_overview {
        p {
            font-size: 14px;
        }
        margin-bottom: 30px;
    }
    .cart--area {
        position: relative;
        z-index: 1;
        border-bottom: 1px solid $border-color;
        padding-bottom: 50px;
    }
    .cart {
        position: relative;
        z-index: 1;
        .quantity {
            position: relative;
            z-index: 1;
            @include flex(0 0 130px);
            max-width: 130px;
            width: 130px;
            @media #{$breakpoint-md} {
                @include flex(0 0 70px);
                max-width: 70px;
                width: 70px;
            }
            .qty-text {
                height: 46px;
                padding: 5px 15px;
                width: 130px;
                -moz-appearance: textfield;
                -webkit-appearance: textfield;
                appearance: textfield;
                font-size: 14px;
                border: none;
                background-color: $bg-gray;
                text-align: center;
                @media #{$breakpoint-md} {
                    width: 70px;
                }
            }
            .qty-minus,
            .qty-plus {
                display: block;
                height: 100%;
                position: absolute;
                left: 10px;
                text-align: center;
                top: 0;
                width: 30px;
                z-index: 99;
                cursor: pointer;
                font-size: 8px;
                line-height: 46px;
                color: $heading-color;
                @media #{$breakpoint-md} {
                    left: 0;
                }
            }
            .qty-plus {
                left: auto;
                right: 10px;
                @media #{$breakpoint-md} {
                    right: 0;
                }
            }
        }
    }
    .wishlist-compare {
        position: relative;
        z-index: 1;
        @media #{$breakpoint-xs} {
            margin-top: 30px;
        }
        @media #{$breakpoint-xs-landscape} {
            margin-top: 0;
        }
        a {
            background-color: $bg-gray;
            display: inline-block;
            width: 46px;
            height: 46px;
            text-align: center;
            line-height: 46px;
            font-size: 18px;
        }
    }
    .products--meta {
        position: relative;
        z-index: 1;
        padding-top: 50px;
        p {
            @include display-flex(flex);
            span:first-child {
                font-weight: 500;
                color: $heading-color;
                @include flex(0 0 150px);
                max-width: 150px;
                width: 150px;
            }
            span:last-child {
                font-weight: 400;
                color: $text-color;
                a {
                    color: #cccccc;
                    font-size: 14px;
                    margin-right: 15px;
                    &:hover {
                        color: $hover-color;
                    }
                }
            }
        }
    }
}

.product_details_tab {
    position: relative;
    z-index: 1;
    padding: 50px 0;
    border-top: 1px solid $border-color;
    border-bottom: 1px solid $border-color;
    .nav-tabs {
        border-bottom: none;
        @include justify-content-center;
        margin-bottom: 30px;
        .nav-link {
            border: none;
            border-top-left-radius: 0;
            border-top-right-radius: 0;
            padding: 0 15px;
            font-size: 20px;
            color: $heading-color;
            &.active,
            &:hover {
                color: $hover-color;
            }
        }
    }
    .additional_info_area {
        p {
            color: $heading-color;
            span {
                color: $text-color;
            }
        }
    }
}

.product_details_tab .review-rating i {
    color: #ff9800;
    font-size: 14px;
}

.product_details_tab .review-rating > span {
    font-size: 16px;
    font-weight: 500;
    color: $heading-color;
}

.submit_a_review_area form .stars {
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABaCAYAAACv+ebYAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNXG14zYAAAAWdEVYdENyZWF0aW9uIFRpbWUAMDcvMDMvMTNJ3Rb7AAACnklEQVRoge2XwW3bMBSGPxa9NxtIGzTAW8DdRL7o3A0qb+BrdNIm9QAm0G7gbJBMwB5MoVJNUSRFIXGqHwhkmXr68hOPNH9ljOEt9OlNqBs4RlrrSmtdpdZ/Ti0EGnvtUoqTHFunBVCkuk6d6mbi83rggdteSa5THDeB3+UDO9z2inatXFum1roESuAReAB29vp15n2/gRfgZK+/gIuIXLxgrfUO+Bnzn0fom4ic+pvRVNuB/QrQ/RB6A7bwLjN8b985krO5MsKd0ElwJvgk1AteCPdCYWI5/SutddQxRUTU3DOzG4hd01EKqQnZuaLBITUh4F0CeLYm5CDw6PjuFTjaz9+BLwE1I8VO9StwAEoRaUSkseMHO+aqcWq2qwcdfQCOIvIy8dwDV/c/YL6zvWDbnQ3QuH5hltQEreM1dH/n6g28gT8eWLVUqqVKrb+vtGidFkCR6vp+0uLAba8k1/eRFh1ue0W7dv4sqpaSjGnR1Fy8YNWyY8W0aGpO/c1oqu3AKmlxCL0BW3iXGb637xzJ2VwZ4U7oJDgTfBLqBS+Ee6EQeMpULVFHUVOzPC3aNR2lkJotLbr0vtKiqWlMTcNaaXHQ0QfgaGqcaVG1jNLibGcbYyb/eDIlT6bjyZS+51JqtrS4gTfw/wzWqkKrKrU8fQPR6gKAmDKlPM3x1WkBFKmu0xxf3fZR5jnFdbzjv257JbmOdzx22yvadZzjW7e9ol27HWtVkjEtIubiB2u1Y8W0iJhTfzOe6uvAKmlxCL0FX+FdZvjevnMkd3Plgzuh0+A88EmoH7wM7oVC6AaiVdwuI2Z5WrRrOk4BNVtadOl9pUXENIhpWCstDjr6ABwR40yLaDVKi7Od7U1/Z0pzpjNngtNiaM2WFj8++A+motm0NTqjmwAAAABJRU5ErkJggg==') repeat-x 0 0;
    width: 150px;
    &::after,
    &::before {
        display: table;
        content: "";
    }
    &::after {
        clear: both;
    }
    input[type="radio"] {
        position: absolute;
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
        &.star-5:checked ~ span {
            width: 100%;
        }
        &.star-4:checked ~ span {
            width: 80%;
        }
        &.star-3:checked ~ span {
            width: 60%;
        }
        &.star-2:checked ~ span {
            width: 40%;
        }
        &.star-1:checked ~ span {
            width: 20%;
        }
    }
    label {
        display: block;
        width: 30px;
        height: 30px;
        margin: 0!important;
        padding: 0!important;
        text-indent: -999em;
        float: left;
        position: relative;
        z-index: 10;
        background: transparent!important;
        cursor: pointer;
        &:hover ~ span {
            background-position: 0 -30px;
        }
        &.star-5:hover ~ span {
            width: 100% !important;
        }
        &.star-4:hover ~ span {
            width: 80% !important;
        }
        &.star-3:hover ~ span {
            width: 60% !important;
        }
        &.star-2:hover ~ span {
            width: 40% !important;
        }
        &.star-1:hover ~ span {
            width: 20% !important;
        }
    }
    span {
        display: block;
        width: 0;
        position: relative;
        top: 0;
        left: 0;
        height: 30px;
        background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABaCAYAAACv+ebYAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNXG14zYAAAAWdEVYdENyZWF0aW9uIFRpbWUAMDcvMDMvMTNJ3Rb7AAACnklEQVRoge2XwW3bMBSGPxa9NxtIGzTAW8DdRL7o3A0qb+BrdNIm9QAm0G7gbJBMwB5MoVJNUSRFIXGqHwhkmXr68hOPNH9ljOEt9OlNqBs4RlrrSmtdpdZ/Ti0EGnvtUoqTHFunBVCkuk6d6mbi83rggdteSa5THDeB3+UDO9z2inatXFum1roESuAReAB29vp15n2/gRfgZK+/gIuIXLxgrfUO+Bnzn0fom4ic+pvRVNuB/QrQ/RB6A7bwLjN8b985krO5MsKd0ElwJvgk1AteCPdCYWI5/SutddQxRUTU3DOzG4hd01EKqQnZuaLBITUh4F0CeLYm5CDw6PjuFTjaz9+BLwE1I8VO9StwAEoRaUSkseMHO+aqcWq2qwcdfQCOIvIy8dwDV/c/YL6zvWDbnQ3QuH5hltQEreM1dH/n6g28gT8eWLVUqqVKrb+vtGidFkCR6vp+0uLAba8k1/eRFh1ue0W7dv4sqpaSjGnR1Fy8YNWyY8W0aGpO/c1oqu3AKmlxCL0BW3iXGb637xzJ2VwZ4U7oJDgTfBLqBS+Ee6EQeMpULVFHUVOzPC3aNR2lkJotLbr0vtKiqWlMTcNaaXHQ0QfgaGqcaVG1jNLibGcbYyb/eDIlT6bjyZS+51JqtrS4gTfw/wzWqkKrKrU8fQPR6gKAmDKlPM3x1WkBFKmu0xxf3fZR5jnFdbzjv257JbmOdzx22yvadZzjW7e9ol27HWtVkjEtIubiB2u1Y8W0iJhTfzOe6uvAKmlxCL0FX+FdZvjevnMkd3Plgzuh0+A88EmoH7wM7oVC6AaiVdwuI2Z5WrRrOk4BNVtadOl9pUXENIhpWCstDjr6ABwR40yLaDVKi7Od7U1/Z0pzpjNngtNiaM2WFj8++A+motm0NTqjmwAAAABJRU5ErkJggg==') repeat-x 0 -60px;
        -webkit-transition: -webkit-width 0.5s;
        -webkit-transition: width 0.5s;
        transition: width 0.5s;
    }
}

.review-details p {
    font-size: 12px;
}

.submit_a_review_area {
    h4 {
        font-size: 20px;
    }
    .form-group > label {
        font-size: 14px;
    }
    input,
    select {
        font-size: 14px;
        width: 100%;
        height: 40px;
        border: none;
        background-color: $bg-gray;
        border-radius: 0;
    }
    textarea {
        width: 100%;
        height: 100px;
        border: none;
        border-radius: 0;
        background-color: $bg-gray;
    }
}

/* :: 9.0 Cart Area CSS */

.cart-table {
    position: relative;
    z-index: 1;
    thead {
        tr,
        th {
            width: 20%;
        }
        th {
            border: none;
            border-bottom: none;
            font-size: 20px;
            padding: 0 0 30px 0;
            color: $heading-color;
            font-weight: 500;
            text-transform: uppercase;
            text-align: left;
            &:first-child {
                width: 40%;
            }
        }
    }
    tbody {
        tr {
            position: relative;
            z-index: 1;
            border-bottom: 1px solid $border-color;
            td {
                position: relative;
                z-index: 1;
                padding: 30px 15px;
                font-size: 18px;
                font-weight: 600;
                color: $heading-color;
                vertical-align: middle;
                &.cart_product_img {
                    @include display-flex(flex);
                    @include align-items(center);
                    a {
                        @include flex(0 0 100px);
                        max-width: 100px;
                        width: 100px;
                        display: inline-block;
                        margin-right: 20px;
                        box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
                        margin-left: 2px;
                    }
                    h5 {
                        font-size: 18px;
                        margin-bottom: 0;
                    }
                }
                i {
                    font-size: 36px;
                    color: #c42525;
                }
            }
        }
    }
    .quantity {
        position: relative;
        z-index: 1;
        @include flex(0 0 100px);
        max-width: 100px;
        width: 100px;
        .qty-text {
            height: 46px;
            padding: 5px 15px;
            width: 100px;
            -moz-appearance: textfield;
            -webkit-appearance: textfield;
            appearance: textfield;
            font-size: 14px;
            border: none;
            background-color: $bg-gray;
            text-align: center;
        }
        .qty-minus,
        .qty-plus {
            display: block;
            height: 100%;
            position: absolute;
            left: 10px;
            text-align: center;
            top: 0;
            width: 30px;
            z-index: 99;
            cursor: pointer;
            font-size: 8px;
            line-height: 46px;
            color: $heading-color;
            i {
                font-size: 10px;
                color: $heading-color;
            }
        }
        .qty-plus {
            left: auto;
            right: 10px;
        }
    }
}

.coupon-discount {
    position: relative;
    z-index: 1;
    form {
        position: relative;
        z-index: 1;
        @include display-flex(flex);
        @include align-items(center);
        input {
            width: 300px;
            height: 46px;
            border: 1px solid $border-color;
            background-color: #f5f5f5;
            padding: 0 30px;
            font-size: 14px;
            margin-right: 30px;
            @media #{$breakpoint-xs} {
                width: 150px;
                padding: 0 10px;
                font-size: 13px;
                margin-right: 15px;
            }
        }
        button {
            @include trans-duration(500ms);
            width: 170px;
            height: 46px;
            border: 1px solid $border-color;
            background-color: #cccccc;
            color: $heading-color;
            font-size: 16px;
            text-transform: uppercase;
            cursor: pointer;
            font-weight: 500;
            &:hover,
            &:focus {
                background-color: $hover-color;
                color: $white-color;
                border-color: $hover-color;
            }
        }
    }
}

.cart-totals-area {
    position: relative;
    z-index: 1;
    .title-- {
        padding-bottom: 20px;
        text-transform: uppercase;
        border-bottom: 1px solid $border-color;
        margin-bottom: 0;
    }
    .subtotal,
    .total {
        padding: 20px 0;
        border-bottom: 1px solid $border-color;
        h5 {
            font-size: 18px;
            color: $heading-color;
            margin-bottom: 0;
            &:last-child {
                font-weight: 600;
            }
        }
    }
    .shipping {
        padding: 20px 0;
        border-bottom: 1px solid $border-color;
        h5 {
            font-size: 18px;
            color: $heading-color;
            margin-bottom: 0;
            margin-right: 50px;
        }
        .shipping-address {
            select,
            input,
            input,
            button {
                width: 100%;
                height: 30px;
                font-size: 10px;
                padding: 0 10px;
                background-color: #f5f5f5;
                border: 1px solid $border-color;
                margin-bottom: 15px;
            }
            button {
                @include trans-duration(500ms);
                width: 100%;
                height: 30px;
                border: 1px solid $border-color;
                background-color: #cccccc;
                color: $heading-color;
                font-size: 14px;
                text-transform: uppercase;
                cursor: pointer;
                font-weight: 500;
                margin-bottom: 0;
                &:hover,
                &:focus {
                    background-color: $hover-color;
                    color: $white-color;
                    border-color: $hover-color;
                }
            }
        }
    }
}

/* :: 10.0 Checkout Area CSS */

.checkout_area {
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

.checkout_details_area {
    position: relative;
    z-index: 1;
    h5 {
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    input,
    select,
    textarea {
        width: 100%;
        height: 46px;
        border: 1px solid $border-color;
        background-color: #f5f5f5;
        font-size: 14px;
        &:focus {
            box-shadow: none;
            border: 1px solid $hover-color;
        }
    }
    textarea {
        height: 100px;
    }
    .custom-control-label {
        font-size: 14px;
    }
}

.checkout-content {
    position: relative;
    z-index: 1;
    @media #{$breakpoint-md} {
        margin-top: 100px;
    }
    @media #{$breakpoint-xs} {
        margin-top: 100px;
    }
    .title-- {
        padding-bottom: 20px;
        text-transform: uppercase;
        border-bottom: 1px solid $border-color;
        margin-bottom: 0;
    }
    .subtotal,
    .shipping,
    .products,
    .order-total {
        padding: 20px 0;
        border-bottom: 1px solid $border-color;
        h5 {
            font-size: 18px;
            color: $heading-color;
            margin-bottom: 0;
            &:last-child {
                font-weight: 600;
            }
        }
    }
    .single-products {
        p {
            line-height: 1.3;
            margin-bottom: 0;
        }
        h5 {
            line-height: 1.3;
            margin-bottom: 0;
        }
    }
}

/* :: 11.0 Testimonial Area CSS */

.testimonials-slides {
    position: relative;
    z-index: 1;
    .owl-dots {
        @include display-flex(flex);
        @include justify-content-center;
        margin-top: 30px;
        position: relative;
        z-index: 1;
        width: 50%;
        @media #{$breakpoint-xs} {
            width: 100%;
        }
        .owl-dot {
            position: relative;
            z-index: 1;
            @include flex(0 0 12px);
            max-width: 12px;
            width: 12px;
            border: 2px solid #b6b7b7;
            height: 12px;
            margin: 0 6px;
            border-radius: 50%;
            &::after {
                width: 4px;
                height: 4px;
                background-color: $hover-color;
                border-radius: 50%;
                content: '';
                position: absolute;
                top: 2px;
                left: 2px;
                z-index: 10;
                opacity: 0;
                visibility: hidden;
            }
            &.active {
                border-color: $hover-color;
                &::after {
                    opacity: 1;
                    visibility: visible;
                }
            }
        }
    }
}

.single-testimonial-slide {
    position: relative;
    z-index: 1;
    .testimonial-thumb {
        width: 300px;
        height: 300px;
        margin: auto;
        border-radius: 50%;
        box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.15);
        img {
            border-radius: 50%;
        }
        @media #{$breakpoint-xs} {
            width: 250px;
            height: 250px;
            margin-bottom: 50px;
        }
    }
    .testimonial-content {
        .testimonial-author-info {
            h6 {
                font-size: 18px;

                margin-bottom: 0;
            }
            p {
                margin-bottom: 0;
                color: $hover-color;
            }
        }
    }
}

/* :: 12.0 About Us Area CSS */

.about-us-area {
    position: relative;
    z-index: 1;
    .border-line {
        width: 100%;
        height: 1px;
        background-color: #ebebeb;
        margin-top: 50px;
    }
}

.alazea-progress-bar {
    position: relative;
    z-index: 1;
    margin-top: 40px;
    .single_progress_bar {
        position: relative;
        z-index: 1;
        margin-bottom: 30px;
        &:last-child {
            margin-bottom: 0;
        }
        p {
            font-weight: 500;
            line-height: 1;
            font-size: 18px;
            color: $heading-color;
            margin-bottom: 10px;
        }
    }
}

.barfiller {
    background-color: #ebebeb;
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: 10px;
    margin-bottom: 5px;
    position: relative;
    width: 100%;
    .fill {
        display: block;
        position: relative;
        width: 0px;
        height: 100%;
        background: $hover-color;
        z-index: 1;
    }
    .tipWrap {
        display: none;
    }
    .tip {
        margin-top: -35px;
        padding: 2px 4px;
        font-size: 18px;
        color: $heading-color;
        left: 0;
        position: absolute;
        z-index: 2;
        background: transparent;
        font-weight: 500;
        &::after {
            display: none;
        }
    }
}

.single-benefits-area {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
    img {
        margin-bottom: 30px;
    }
    p {
        margin-bottom: 0;
    }
}

/* :: 13.0 Service Area CSS */

.single-service-area {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
    &:last-child {
        margin-bottom: 0;
    }
    .service-icon {
        @include flex(0 0 45px);
        max-width: 45px;
        width: 45px;
    }
    .service-content {
        p {
            margin-bottom: 0;
        }
    }
}

.alazea-video-area {
    position: relative;
    z-index: 1;
    border-radius: 6px;
    box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.15);
    &.bg-overlay:after {
        border-radius: 6px;
    }
    img {
        position: relative;
        z-index: -21;
        border-radius: 6px;
    }
    .video-icon {
        @include trans-duration(500ms);
        width: 70px;
        height: 70px;
        background-color: $pri-color;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -35px;
        margin-left: -35px;
        z-index: 100;
        border-radius: 50%;
        line-height: 72px;
        text-align: center;
        cursor: pointer;
        opacity: 0.9;
        i {
            color: $white-color;
            font-size: 24px;
        }
        &:hover {
            opacity: 1;
            box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.15);
        }
    }
}

/* :: 14.0 Team Member Area CSS */

.single-team-member {
    position: relative;
    z-index: 1;
    .team-member-thumb {
        position: relative;
        z-index: 1;
        img {
            width: 100%;
        }
        .team-member-social-info {
            position: absolute;
            width: 100%;
            height: 60px;
            background-color: rgba(48, 48, 48, 0.7);
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 10;
            opacity: 0;
            visibility: hidden;
            @include trans-duration(500ms);
            a {
                color: $white-color;
                line-height: 60px;
                margin: 0 15px;
                &:hover {
                    color: $hover-color;
                }
            }
        }
    }
    .team-member-info {
        h5 {
            margin-bottom: 4px;
        }
        p {
            margin-bottom: 0;
        }
    }
    &:hover .team-member-thumb .team-member-social-info {
        opacity: 1;
        visibility: visible;
    }
}

/* :: 15.0 Portfolio Area CSS */

.alazea-portfolio-filter {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 30px;
    .btn {
        @include trans-duration(300ms);
        padding: 0;
        font-size: 20px;
        color: $text-color;
        font-weight: 500;
        background-color: transparent;
        padding: 0 20px;
        @media #{$breakpoint-xs} {
            font-size: 16px;
            padding: 0 5px;
        }
        &:hover,
        &:focus {
            color: $hover-color;
            box-shadow: none;
        }
    }
}

.alazea-portfolio {
    &.row {
        margin-right: -10px;
        margin-left: -10px;
    }
    .col-12 {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.single_portfolio_item {
    position: relative;
    z-index: 10;
    margin-top: 20px;
    overflow: hidden;
    height: 400px;
    @include trans-duration(500ms);
    @media #{$breakpoint-lg} {
        height: 290px;
    }
    @media #{$breakpoint-xs} {
        height: 300px;
    }
    .portfolio-thumbnail {
        @include trans-duration(500ms);
        width: calc(100% - 20px);
        position: absolute;
        height: 100%;
        top: 0;
        left: 10px;
        right: 10px;
        background-repeat: no-repeat;
    }
    .portfolio-hover-overlay {
        width: calc(100% - 20px);
        height: 100%;
        top: 0;
        left: 10px;
        right: 10px;
        @include trans-duration(500ms);
        background-color: rgba(112, 199, 69, 0.8);
        position: absolute;
        z-index: 10;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        a {
            position: relative;
            width: 100%;
            height: 100%;
            z-index: 30;
            .port-hover-text {
                h3 {
                    font-size: 28px;
                    color: $white-color;
                    @media #{$breakpoint-lg} {
                        font-size: 20px;
                    }
                    @media #{$breakpoint-xs} {
                        font-size: 18px;
                    }
                }
                h5 {
                    font-size: 18px;
                    margin-bottom: 0;
                    color: $white-color;
                    font-weight: 400;
                    @media #{$breakpoint-xs} {
                        font-size: 14px;
                    }
                }
            }
        }
    }
    &:hover {
        @include transform(translateY(-15px));
        .portfolio-hover-overlay {
            opacity: 1;
            visibility: visible;
        }
    }
}

.portfolio-page .single_portfolio_item {
    height: 320px;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: $white-color;
    right: 0;
    text-align: center;
    padding-right: 0;
    top: 40px;
    width: 36px;
    height: 36px;
    background-color: $hover-color;
    line-height: 36px;
}

.mfp-bottom-bar {
    margin-top: 0;
    top: auto;
    bottom: 55px;
    left: 0;
    width: 100%;
    cursor: auto;
    background-color: transparent;
    padding: 0 15px;
    @include display-flex(flex);
    @include justify-content-between;
    @include align-items(center);
    .mfp-title {
        line-height: normal;
        color: $white-color;
        padding-right: 0;
        background-color: $hover-color;
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 12px;
        font-weight: 700;
    }
    .mfp-counter {
        color: $white-color;
        position: relative;
        line-height: normal;
        background-color: $hover-color;
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 12px;
        font-weight: 700;
    }
}

/* :: 16.0 Cool Facts Area CSS */

.cool-facts-area {
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: top left;
    @media #{$breakpoint-xs} {
        &::after {
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-color: $bg-gray;
            content: '';
            position: absolute;
            z-index: -1;
        }
    }
    .side-img {
        position: absolute;
        bottom: -80px;
        right: 10%;
        z-index: 10;
        width: 150px;
    }
}

.single-cool-fact {
    position: relative;
    z-index: 1;
    .cf-icon {
        @include flex(0 0 50px);
        max-width: 50px;
        width: 50px;
        margin-right: 30px;
    }
    .cf-content {
        h2 {
            font-size: 36px;
            margin-bottom: 10px;
            line-height: 1;
        }
        h6 {
            font-weight: 400;
            color: $text-color;
            margin-bottom: 0;
            text-transform: uppercase;
        }
    }
}

/* :: 17.0 Footer Area CSS */

.footer-area {
    position: relative;
    z-index: 1;
    &::after {
        background-color: rgba(4, 43, 15, 0.8);
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        content: "";
    }
    .main-footer-area {
        position: relative;
        z-index: 1;
        padding-top: 80px;
    }
    .single-footer-widget {
        position: relative;
        z-index: 1;
        margin-bottom: 70px;
        p {
            color: $secondary-color;
            margin-bottom: 20px;
        }
        .social-info {
            a {
                display: inline-block;
                border: 1px solid $secondary-color;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                text-align: center;
                color: $white-color;
                margin-right: 5px;
                line-height: 38px;
                @media #{$breakpoint-lg} {
                    width: 30px;
                    height: 30px;
                    line-height: 28px;
                    font-size: 14px;
                }
                &:hover,
                &:focus {
                    border-color: $pri-color;
                    background-color: $pri-color;
                }
            }
        }
        .widget-title h5 {
            font-size: 22px;
            color: $white-color;
            text-transform: uppercase;
            margin-bottom: 30px;
        }
        .widget-nav ul {
            position: relative;
            z-index: 1;
            @include display-flex(flex);
            @include flex-wrap(wrap);
            li {
                @include flex(0 0 50%);
                max-width: 50%;
                width: 50%;
                a {
                    display: block;
                    color: $secondary-color;
                    font-size: 16px;
                    font-weight: 400;
                    margin-bottom: 11px;
                    &:hover,
                    &:focus {
                        color: $white-color;
                    }
                }
            }
        }
        .single-best-seller-product {
            position: relative;
            z-index: 1;
            margin-bottom: 20px;
            &::after {
                margin-bottom: 0;
            }
            .product-thumbnail {
                @include flex(0 0 70px);
                max-width: 70px;
                width: 70px;
                margin-right: 30px;
            }
            .product-info {
                a {
                    display: block;
                    color: $secondary-color;
                    font-size: 16px;
                    font-weight: 400;
                    &:hover,
                    &:focus {
                        color: $white-color;
                    }
                }
                p {
                    margin-bottom: 0;
                    color: $white-color;
                    font-weight: 500;
                }
            }
        }
        .contact-information {
            p {
                line-height: 1.3;
                color: $white-color;
                margin-bottom: 13px;
                span {
                    color: $secondary-color;
                }
                &:last-child {
                    margin-bottom: 0;
                }
            }
        }
    }

    .footer-bottom-area {
        position: relative;
        z-index: 1;
        .border-line {
            width: 100%;
            height: 1px;
            background-color: #34513d;
        }
        .copywrite-text {
            position: relative;
            z-index: 1;
            padding: 20px 0;
            @media #{$breakpoint-xs} {
                text-align: center;
                padding-bottom: 0;
            }
            p {
                font-size: 14px;
                color: $secondary-color;
                font-weight: 400;
                margin-bottom: 0;
                @media #{$breakpoint-xs} {
                    font-size: 12px;
                }
                a {
                    font-size: 14px;
                    color: $white-color;
                    font-weight: 500;
                    &:hover,
                    &:focus {
                        color: $hover-color;
                    }
                    @media #{$breakpoint-xs} {
                        font-size: 12px;
                    }
                }
            }
        }
        .footer-nav {
            position: relative;
            z-index: 1;
            padding: 20px 0;
            ul {
                @include display-flex(flex);
                @include flex-wrap(wrap);
                @include justify-content-end;
                @media #{$breakpoint-xs} {
                    @include justify-content-center;
                }
                li {
                    a {
                        display: inline-block;
                        color: $secondary-color;
                        font-size: 14px;
                        font-weight: 400;
                        margin: 0 15px;
                        @media #{$breakpoint-md} {
                            margin: 0 8px;
                        }
                        @media #{$breakpoint-xs} {
                            margin: 0 5px;
                        }
                        &:hover,
                        &:focus {
                            color: $white-color;
                        }
                    }
                    &:last-child {
                        a {
                            margin-right: 0;
                        }
                    }
                }
            }
        }
    }
}

/* :: 18.0 Breadcumb Area CSS */

.breadcrumb-area {
    padding-top:100px;
    position: relative;
    z-index: 10;
    width: 100%;
    .top-breadcrumb-area {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 350px;
        @media #{$breakpoint-xs} {
            height: 220px;
        }
        h2 {
            margin-top: 132px;
            font-size: 36px;
            color: $white-color;
            margin-bottom: 0;
            line-height: 1;
            text-transform: uppercase;
            @media #{$breakpoint-xs} {
                margin-top: 112px;
                font-size: 30px;
            }
        }
    }
    .breadcrumb {
        margin: 0;
        padding-top: 30px;
        padding-bottom: 50px;
        padding-left: 0;
        padding-right: 0;
        background-color: transparent;
        .breadcrumb-item {
            font-size: 16px;
            color: $secondary-color;
            text-transform: capitalize;
            a {
                text-transform: capitalize;
                font-size: 16px;
                color: $heading-color;
                &:hover,
                &:focus {
                    color: $hover-color;
                }
            }
        }
        .breadcrumb-item + .breadcrumb-item::before {
            color: $heading-color;
            content: ">";
        }
    }
}

/* :: 19.0 Blog Area CSS */

.single-blog-post {
    position: relative;
    z-index: 1;
    @include trans-duration(500ms);
    .post-thumbnail {
        position: relative;
        z-index: 1;
    }
    .post-content {
        .post-title {
            h5 {
                @include trans-duration(500ms);
                line-height: 1.5;
                margin-bottom: 15px;
                &:hover {
                    color: $hover-color;
                }
            }
        }
        .post-meta {
            position: relative;
            z-index: 1;
            margin-bottom: 10px;
            a {
                position: relative;
                z-index: 1;
                display: inline-block;
                font-size: 14px;
                color: $secondary-color;
                margin-right: 30px;
                &:last-child::after {
                    content: '/';
                    top: 0;
                    left: -20px;
                    position: absolute;
                    z-index: 1;
                }
                i {
                    margin-right: 5px;
                    color: $hover-color;
                }
                &:hover {
                    color: $hover-color;
                }
            }
        }
        .post-excerpt {
            font-size: 16px;
            color: $text-color;
            margin-bottom: 0;
        }
    }
    &:hover {
        .post-content {
            .post-title h5 {
                color: $hover-color;
            }
        }
    }
}

.pagination {
    position: relative;
    z-index: 1;
    @include justify-content-center;
    .page-item {
        .page-link {
            color: $text-color;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            text-align: center;
            font-size: 18px;
            line-height: 44px;
            padding: 0;
            margin: 0 10px;
            &:hover,
            &:focus {
                border-color: $pri-color;
                background-color: $pri-color;
                color: $white-color;
            }
        }
    }
}

.shop-products-area {
    .pagination {
        position: relative;
        z-index: 1;
        @include justify-content-end;
        .page-item {
            .page-link {
                color: $text-color;
                width: 46px;
                height: 46px;
                border-radius: 0;
                text-align: center;
                border: 1px solid $border-color;
                font-size: 18px;
                line-height: 44px;
                padding: 0;
                margin: 0 10px;
                background-color: #f5f5f5;
                &:hover,
                &:focus {
                    border-color: $pri-color;
                    background-color: $pri-color;
                    color: $white-color;
                }
            }
        }
    }
}

/* :: 20.0 Comment Area */

.comment_area {
    position: relative;
    z-index: 1;
    padding: 50px 0 20px 0;
    border-top: 1px solid $border-color;
    .headline {
        margin-bottom: 30px;
    }
    .single_comment_area {
        position: relative;
        z-index: 1;
        &::after {
            position: absolute;
            width: 1px;
            height: 90%;
            background-color: $border-color;
            left: 100px;
            top: 0;
            z-index: 2;
            content: '';
            @media #{$breakpoint-xs} {
                display: none;
            }
        }
        .comment-wrapper {
            margin-bottom: 30px;
            .comment-author {
                width: 70px;
                height: 70px;
                border-radius: 50%;
                margin-right: 60px;
                @media #{$breakpoint-xs} {
                    margin-right: 20px;
                }
                img {
                    width: 100%;
                    height: 100%;
                    border-radius: 50%;
                }
            }
            .comment-content {
                @include flex(1);
                .comment-date {
                    font-size: 12px;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                    color: $hover-color;
                }
                h5 {
                    font-size: 20px;
                    margin: 0 0 10px 0;
                }
                p {
                    font-size: 16px;
                    margin-bottom: 5px;
                }
                .comment-date {
                    color: $secondary-color;
                    font-size: 14px;
                    margin-bottom: 10px;
                }
                a {
                    font-size: 14px;
                    color: $heading-color;
                    display: inline-block;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                    &:hover {
                        color: $hover-color;
                    }
                }
            }
        }
    }
}

.single_comment_area ol li.single_comment_area {
    margin-left: 130px;
    &::after {
        display: none;
    }
    @media #{$breakpoint-xs} {
        margin-left: 40px;
    }
    .comment-wrapper .comment-author {
        margin-right: 30px;
        @media #{$breakpoint-xs} {
            margin-right: 15px;
        }
    }
}

/* :: 21.0 Leave A Reply Area CSS */

.leave-comment-area {
    position: relative;
    z-index: 1;
    border-top: 1px solid $border-color;
    padding: 50px 0 0 0;
    h4 {
        margin-bottom: 30px;
    }
    form {
        .form-control {
            width: 100%;
            height: 40px;
            border: 1px solid $border-color;
            font-size: 14px;
            color: $secondary-color;
            padding: 10px 20px;
            margin-bottom: 20px;
            @include trans-duration(500ms);
            &:focus {
                box-shadow: none;
                border-color: $hover-color;
            }
        }
        textarea.form-control {
            width: 100%;
            height: 120px;
        }
    }
}

/* :: 22.0 Sidebar Area CSS */

.post-sidebar-area {
    @media #{$breakpoint-xs} {
        margin-top: 100px;
    }
}

.single-widget-area {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
    .widget-title {
        width: 100%;
        position: relative;
        z-index: 2;
        margin-bottom: 30px;
        h4 {
            position: relative;
            z-index: 5;
            text-transform: uppercase;
            margin-bottom: 0;
            line-height: 1;
        }
    }
    .widget-content {
        img {
            margin-top: 20px;
            margin-bottom: 15px;
        }
        p {
            margin-bottom: 0;
            font-size: 16px;
            line-height: 1.6;
        }
    }
    .single-latest-post {
        position: relative;
        z-index: 1;
        margin-bottom: 30px;
        &:last-child {
            margin-bottom: 0;
        }
        .post-thumb {
            @include flex(0 0 70px);
            max-width: 70px;
            width: 70px;
            margin-right: 30px;
        }
        .post-content {
            .post-title {
                h6 {
                    @include trans-duration(500ms);
                    font-size: 18px;
                    margin-bottom: 10px;
                    line-height: 1.3;
                    &:hover,
                    &:focus {
                        color: $hover-color;
                    }
                }
            }
            .post-date {
                display: block;
                font-size: 14px;
                margin-bottom: 0;
                color: $secondary-color;
                line-height: 1;
            }
        }
    }
    .popular-tags {
        li a {
            display: inline-block;
            margin: 4px;
            padding: 10px 15px;
            line-height: 1;
            text-transform: uppercase;
            font-size: 14px;
            color: $text-color;
            background-color: #f9f9f9;
            &:hover,
            &:focus {
                color: $white-color;
                background-color: $hover-color;
            }
        }
    }
    .author-widget {
        border: 1px solid $border-color;
        padding: 30px;
        .author-thumb-name {
            position: relative;
            z-index: 1;
            padding-bottom: 20px;
            border-bottom: 1px solid $border-color;
            margin-bottom: 15px;
            .author-thumb {
                @include flex(0 0 80px);
                max-width: 80px;
                width: 80px;
                height: 80px;
                border-radius: 50%;
                margin-right: 30px;
                @media #{$breakpoint-md} {
                    @include flex(0 0 50px);
                    max-width: 50px;
                    width: 50px;
                    height: 50px;
                    margin-right: 15px;
                }
                img {
                    border-radius: 50%;
                }
            }
            .author-name {
                h5 {
                    margin-bottom: 3px;
                    @media #{$breakpoint-md} {
                        font-size: 14px;
                    }
                }
                p {
                    margin-bottom: 0;
                    @media #{$breakpoint-md} {
                        font-size: 13px;
                    }
                }
            }
        }
        .social-info {
            a {
                display: inline-block;
                margin-right: 20px;
                color: $secondary-color;
                &:hover {
                    color: $hover-color;
                }
            }
        }
    }
    .single-best-seller-product {
        position: relative;
        z-index: 1;
        margin-bottom: 20px;
        &::after {
            margin-bottom: 0;
        }
        .product-thumbnail {
            @include flex(0 0 70px);
            max-width: 70px;
            width: 70px;
            margin-right: 30px;
        }
        .product-info {
            a {
                display: block;
                color: $text-color;
                font-size: 16px;
                font-weight: 400;
                margin-bottom: 5px;
                &:hover,
                &:focus {
                    color: $heading-color;
                }
            }
            p {
                margin-bottom: 0;
                color: $heading-color;
                font-weight: 500;
            }
            .ratings {
                i {
                    font-size: 12px;
                    color: #ff9800;
                }
            }
        }
    }
    .search-form {
        position: relative;
        z-index: 2;
        input {
            background-color: $white-color;
            padding: 0 20px;
            width: 100%;
            height: 50px;
            font-size: 14px;
            color: $secondary-color;
            border: 1px solid $border-color;
            border-radius: 0;
            &:focus {
                box-shadow: none;
            }
        }
        button {
            position: absolute;
            top: 0;
            right: 0;
            width: 50px;
            height: 50px;
            z-index: 10;
            border: none;
            background-color: $white-color;
            cursor: pointer;
            color: $heading-color;
            border: 1px solid $border-color;
            border-left: none;
            @include trans-duration(300ms);
            &:hover {
                color: $hover-color;
            }
        }
    }
}

.single-post-details-area {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
    .post-content {
        .post-title {
            @include trans-duration(500ms);
            line-height: 1.5;
            margin-bottom: 15px;
            font-size: 32px;
            @media #{$breakpoint-md} {
                font-size: 26px;
            }
            @media #{$breakpoint-xs} {
                font-size: 24px;
            }
        }
        .post-meta {
            position: relative;
            z-index: 1;
            margin-bottom: 10px;
            a {
                position: relative;
                z-index: 1;
                display: inline-block;
                font-size: 18px;
                color: $secondary-color;
                margin-right: 30px;
                &:last-child::after {
                    content: '/';
                    top: 0;
                    left: -20px;
                    position: absolute;
                    z-index: 1;
                }
                i {
                    margin-right: 5px;
                    color: $hover-color;
                }
                &:hover {
                    color: $hover-color;
                }
            }
        }
        blockquote {
            position: relative;
            z-index: 1;
            padding: 30px 50px;
            background-color: #f9f9f9;
            .blockquote-text {
                h5 {
                    &:last-child {
                        color: $hover-color;
                    }
                }
            }
        }
    }
}

.post-tags-share {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
    .popular-tags {
        span {
            font-size: 14px;
            text-transform: uppercase;
            margin-right: 15px;
        }
        li a {
            display: inline-block;
            margin: 4px;
            padding: 10px 15px;
            background-color: #f9f9f9;
            line-height: 1;
            text-transform: uppercase;
            font-size: 13px;
            color: $text-color;
            &:hover,
            &:focus {
                color: $white-color;
                background-color: $hover-color;
            }
        }
    }
    .post-share {
        a {
            font-size: 14px;
            display: inline-block;
            padding: 0 10px;
            &:hover,
            &:focus {
                color: $hover-color;
            }
            @media #{$breakpoint-xs} {
                padding: 0 5px;
            }
        }
    }
}


/* :: 23.0 Contact Area CSS */

.map-area {
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.15);
    iframe {
        width: 100%;
        height: 400px;
        border: none;
        margin-bottom: 0;
        border-radius: 5px;
        @media #{$breakpoint-xs} {
            height: 320px;
        }
    }
}

.contact-form-area {
    .form-control {
        position: relative;
        z-index: 2;
        height: 45px;
        width: 100%;
        background-color: $white-color;
        font-size: 16px;
        margin-bottom: 15px;
        border: 1px solid #e1e1e1;
        border-radius: 2px;
        padding: 15px 20px;
        font-weight: 400;
        color: $secondary-color;
        @include trans-duration(500ms);
        &:focus {
            box-shadow: none;
            border-color: $hover-color;
        }
    }
    textarea.form-control {
        height: 80px;
    }
}

.contact-information {
    p {
        line-height: 1.3;
        color: $text-color;
        margin-bottom: 13px;
        span {
            color: $heading-color;
        }
        &:last-child {
            margin-bottom: 0;
        }
    }
}

.contact--thumbnail {
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
    @media #{$breakpoint-xs} {
        margin-bottom: 100px;
    }
}

/* :: 24.0 Portfolio Details Area CSS */

.portfolio-details-area {
    position: relative;
    z-index: 1;
    ul {
        li {
            margin-bottom: 10px;
            @include display-flex(flex);
            @include align-items(center);
            i {
                color: $hover-color;
                margin-right: 15px;
            }
        }
    }
}

.portfolio-slides {
    position: relative;
    z-index: 1;
    .owl-prev {
        position: absolute;
        top: calc(50% - 30px);
        color: $white-color;
        font-size: 50px;
        left: 30%;
        z-index: 10;
        @include transform(translateY(-50%));
        line-height: 1;
    }
    .owl-next {
        position: absolute;
        top: calc(50% - 30px);
        color: $white-color;
        font-size: 50px;
        right: 30%;
        z-index: 10;
        @include transform(translateY(-50%));
        line-height: 1;
    }
    .owl-dots {
        @include display-flex(flex);
        @include justify-content-center;
        margin-top: 50px;
        position: relative;
        z-index: 1;
        width: 100%;
        .owl-dot {
            position: relative;
            z-index: 1;
            @include flex(0 0 12px);
            max-width: 12px;
            width: 12px;
            border: 2px solid $secondary-color;
            height: 12px;
            margin: 0 6px;
            border-radius: 50%;
            &::after {
                width: 4px;
                height: 4px;
                background-color: $hover-color;
                border-radius: 50%;
                content: '';
                position: absolute;
                top: 2px;
                left: 2px;
                z-index: 10;
                opacity: 0;
                visibility: hidden;
            }
            &.active {
                border-color: $hover-color;
                &::after {
                    opacity: 1;
                    visibility: visible;
                }
            }
        }
    }
}

.portfolio-details-meta {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
    h5 {
        margin-bottom: 5px;
    }
    p {
        margin-bottom: 0;
    }
    &:last-child {
        margin-bottom: 0;
    }
}

/* ======= The End ======= */


.path-frontpage h5,h3,h4,h6 {
    margin-bottom: 2px;
    font-size: 1.071em;
    line-height: 1.4;
    // margin: 0 0 0.5em;
    /* border-bottom: 1px solid #005575; */
    padding: 6px 15px 7px;
    /* text-shadow: 0 1px 0 #488650; */
    color: #000;
    font-weight: 600;
    background: darkgreen;
    border-left: 4px solid #000;
     border-right: 4px solid #000;
    text-transform: uppercase;
    border-radius: 25px 25px 25px;
    color:white;
}
.path-frontpage h5{
    margin-bottom: 2px;
    font-size: 1.071em;
    line-height: 1.4;
    margin: 0 0 0.5em;
    /* border-bottom: 1px solid #005575; */
    padding: 6px 15px 5px;
    /* text-shadow: 0 1px 0 #488650; */
    color: black;
    font-weight: 600;
     background: #c45b21;
    //   background: #FF5722;
    border-left: 4px solid black;
    border-right: 4px solid black;
    text-transform: uppercase;
    border-radius: 25px;
    color:white;
}

.classynavslider{
    color:white;
   
}

.classynavslider:hover {
        /*color: #70c745;*/
       text-decoration:underline;
          color: yellow;
      }
