@charset "UTF-8";

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
:root {
    --heading-color: #111112;

}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    -moz-osx-font-smoothing: grayscale;
    /* Firefox */
    -webkit-font-smoothing: antialiased;
    /* WebKit  */
}

body {
    margin: 0;
    color: var(--paragraph-color);
    overflow-x: hidden;
    font-weight: 300;
    line-height: 1.45;
}

h1 {
    font-size: 72px;
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    line-height: 1.5;
    text-transform: capitalize;
}

p {
    color: var(--paragraph-color);
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    margin-bottom: 10px;
}

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

a {
    color: inherit;
    text-decoration: none;
    color: var(--paragraph-color);
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
    color: inherit;
}

pre {
    word-break: break-word;
}

a i {
    padding: 0 2px;
}

img {
    max-width: 100%;
}

ol {
    counter-reset: counter;
    padding-left: 0;
}

ol li {
    list-style: none;
    margin-bottom: 1rem;
}

ol li:before {
    counter-increment: counter;
    content: counter(counter);
    font-weight: 500;
    margin-right: 10px;
}

/*input and button type focus outline disable*/
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
select:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #ddd;
}

input,
textarea {
    width: 100%;
}

code {
    color: #faa603;
}

.dark-bg {
    background-color: #111d5c;
}

.section-bg-1 {
    background-color: #f4f7fc;
}

.check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: block;
    padding-left: 20px;
    position: relative;
    z-index: 0;
}

.check-list li:after {
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'fontawesome';
    content: "\f105";
    color: var(--wb-primary-color);
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    clear: both;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    float: left;
    width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%;
}

.comment-navigation .nav-previous>a,
.posts-navigation .nav-previous>a,
.post-navigation .nav-previous>a,
.comment-navigation .nav-next>a,
.posts-navigation .nav-next>a,
.post-navigation .nav-next>a {
    -webkit-transition: .3s ease-in;
    -o-transition: .3s ease-in;
    transition: .3s ease-in;
}

.comment-navigation .nav-previous:hover>a,
.posts-navigation .nav-previous:hover>a,
.post-navigation .nav-previous:hover>a,
.comment-navigation .nav-next:hover>a,
.posts-navigation .nav-next:hover>a,
.post-navigation .nav-next:hover>a {
    color: var(--wb-primary-color);
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
    /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    -webkit-clip-path: none;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
    outline: 0;
}

/*--------------------------------------------------------------
# Globals
--------------------------------------------------------------*/
.padding-left-0 {
    padding-left: 0;
}

.padding-right-0 {
    padding-left: 0;
}

.gray-bg {
    background-color: #f8f8f8;
}

.padding-top-10 {
    padding-top: 10px;
}

.padding-top-20 {
    padding-top: 20px;
}

.padding-top-30 {
    padding-top: 30px;
}

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

.padding-top-50 {
    padding-top: 50px;
}

.padding-top-60 {
    padding-top: 60px;
}

.padding-top-70 {
    padding-top: 70px;
}

.padding-top-80 {
    padding-top: 80px;
}

.padding-top-90 {
    padding-top: 90px;
}

.padding-top-95 {
    padding-top: 95px;
}

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

.padding-top-105 {
    padding-top: 105px;
}

.padding-top-110 {
    padding-top: 110px;
}

.padding-top-115 {
    padding-top: 115px;
}

.padding-top-120 {
    padding-top: 120px;
}

.padding-bottom-10 {
    padding-bottom: 10px;
}

.padding-bottom-20 {
    padding-bottom: 20px;
}

.padding-bottom-30 {
    padding-bottom: 30px;
}

.padding-bottom-40 {
    padding-bottom: 40px;
}

.padding-bottom-50 {
    padding-bottom: 50px;
}

.padding-bottom-60 {
    padding-bottom: 60px;
}

.padding-bottom-65 {
    padding-bottom: 65px;
}

.padding-bottom-70 {
    padding-bottom: 70px;
}

.padding-bottom-80 {
    padding-bottom: 80px;
}

.padding-bottom-85 {
    padding-bottom: 85px;
}

.padding-bottom-90 {
    padding-bottom: 90px;
}

.padding-bottom-95 {
    padding-bottom: 95px;
}

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

.padding-bottom-110 {
    padding-bottom: 110px;
}

.padding-bottom-105 {
    padding-bottom: 105px;
}

.padding-bottom-115 {
    padding-bottom: 115px;
}

.padding-bottom-120 {
    padding-bottom: 120px;
}

.padding-bottom-130 {
    padding-bottom: 130px;
}

.padding-bottom-135 {
    padding-bottom: 135px;
}

.padding-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.padding-110 {
    padding-top: 110px;
    padding-bottom: 110px;
}

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

.padding-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.padding-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.padding-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.padding-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.padding-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.padding-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.padding-90 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.padding-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.margin-top-10 {
    margin-top: 10px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-top-40 {
    margin-top: 40px;
}

.margin-top-50 {
    margin-top: 50px;
}

.margin-top-55 {
    margin-top: 55px;
}

.margin-top-60 {
    margin-top: 60px;
}

.margin-top-70 {
    margin-top: 70px;
}

.margin-top-80 {
    margin-top: 80px;
}

.margin-top-90 {
    margin-top: 90px;
}

.margin-top-100 {
    margin-top: 100px;
}

.margin-bottom-0 {
    margin-bottom: 0px !important;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-bottom-15 {
    margin-bottom: 15px;
}

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

.margin-bottom-25 {
    margin-bottom: 25px;
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

.margin-bottom-40 {
    margin-bottom: 40px;
}

.margin-bottom-50 {
    margin-bottom: 50px;
}

.margin-bottom-55 {
    margin-bottom: 55px;
}

.margin-bottom-60 {
    margin-bottom: 60px;
}

.margin-bottom-70 {
    margin-bottom: 70px;
}

.margin-bottom-80 {
    margin-bottom: 80px;
}

.margin-bottom-90 {
    margin-bottom: 90px;
}

.margin-top-100 {
    margin-bottom: 100px;
}

.margin-top-120 {
    margin-top: 120px;
}

.min-height-600 {
    min-height: 600px;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
    float: left;
    clear: both;
    margin-right: 20px;
}

.alignright {
    float: right;
    clear: both;
    margin-left: 20px;
}

.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto 1.75em;
}

.alignfull {
    margin: 1.5em 0;
    max-width: 100%;
}

.alignwide {
    max-width: 1100px;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
    display: block;
}

.updated:not(.published) {
    display: none;
}

.blog-pagination ul li {
    display: inline-block;
}

.blog-pagination ul li+li {
    margin: 0 5px;
}

.blog-pagination {
    display: block;
    width: 100%;
}

.blog-pagination ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-pagination ul li a,
.blog-pagination ul li span {
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid #e2e2e2;
    line-height: 40px;
    text-align: center;
    font-weight: 600;
    -webkit-transition: .3s ease-in;
    -o-transition: .3s ease-in;
    transition: .3s ease-in;
}

.blog-pagination ul li span.current,
.blog-pagination ul li a:hover {
    background-color: var(--wb-primary-color);
    color: #fff;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
    max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
    display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
    clear: both;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
}

/*----------------------------------------
    # Unit test
------------------------------------------*/
.wp-link-pages a {
    margin: 0 5px;
    -webkit-transition: .3s ease-in;
    -o-transition: .3s ease-in;
    transition: .3s ease-in;
}

.wp-link-pages {
    margin-bottom: 30px;
    margin-top: 25px;
}

.wp-link-pages span,
.wp-link-pages a {
    border: 1px solid #e2e2e2;
    padding: 5px 15px;
    display: inline-block;
}

.wp-link-pages .current,
.wp-link-pages a:hover {
    background-color: var(--wb-primary-color);
    color: #fff;
    border-color: var(--wb-primary-color);
}

.wp-link-pages span:first-child {
    margin-right: 5px;
}

dl,
ol,
ul {
    padding-left: 15px;
}

.post-password-form input {
    display: block;
    border: 1px solid #e2e2e2;
    height: 50px;
    border-radius: 3px;
    padding: 0 20px;
}

.post-password-form label {
    font-weight: 600;
    color: #333;
}

.post-password-form input[type=submit] {
    width: 100px;
    height: 50px;
    background-color: var(--wb-primary-color);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    -webkit-transition: .3s ease-in;
    -o-transition: .3s ease-in;
    transition: .3s ease-in;
}

.post-password-form input[type=submit]:hover {
    background-color: #121A2F;
}

.footer-widget .table td,
.footer-widget .table th {
    padding: 0.50rem !important;
}

/*--------------------------------------------------------------
# Gutenberg	Default Style
--------------------------------------------------------------*/
.single-post-details-item .entry-content>.alignwide {
    max-width: 1100px;
}

.single-post-details-item .entry-content>.alignfull {
    margin: 1.5em 0;
    max-width: 100%;
}

.wp-block-video video {
    max-width: 636px;
}

.wp-block-image img {
    display: block;
}

.wp-block-image.alignleft,
.wp-block-image.alignright {
    width: 100%;
}

.wp-block-image.alignfull img {
    width: 100vw;
}

.wp-block-gallery:not(.components-placeholder) {
    margin: 1.5em auto;
}

.wp-block-cover-text p {
    padding: 1.5em 14px;
}

ul.wp-block-latest-posts.alignwide,
ul.wp-block-latest-posts.alignfull,
ul.wp-block-latest-posts.is-grid.alignwide,
ul.wp-block-latest-posts.is-grid.alignwide {
    padding: 0 14px;
}

.wp-block-table {
    display: block;
    overflow-x: auto;
}

.wp-block-table table {
    border-collapse: collapse;
    width: 100%;
}

.wp-block-table td,
.wp-block-table th {
    padding: .5em;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper>iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.wp-block-quote.is-large {
    margin: 0 auto 16px;
}

.wp-block-pullquote>p:first-child {
    margin-top: 0;
}

.wp-block-separator {
    margin: 3em auto;
    padding: 0;
}

@media screen and (min-width: 768px) {
    .wp-block-cover-text p {
        padding: 1.5em 0;
    }
}

wp-block-video video {
    max-width: 636px;
}

.wp-block-image img {
    display: block;
}

.wp-block-image.alignleft,
.wp-block-image.alignright {
    width: 100%;
}

.wp-block-image.alignfull img {
    width: 100vw;
}

.wp-block-gallery:not(.components-placeholder) {
    margin: 1.5em auto;
}

.wp-block-cover-text p {
    padding: 1.5em 14px;
}

ul.wp-block-latest-posts.alignwide,
ul.wp-block-latest-posts.alignfull,
ul.wp-block-latest-posts.is-grid.alignwide,
ul.wp-block-latest-posts.is-grid.alignwide {
    padding: 0 14px;
}

.wp-block-table {
    display: block;
    overflow-x: auto;
}

.wp-block-table table {
    border-collapse: collapse;
    width: 100%;
}

.wp-block-table td,
.wp-block-table th {
    padding: .5em;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper>iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.wp-block-quote.is-large {
    margin: 0 auto 16px;
}

.wp-block-pullquote>p:first-child {
    margin-top: 0;
}

.wp-block-quote:not(.is-large):not(.is-style-large) {
    border-left: 4px solid #000;
    padding-left: 1em;
}

.wp-block-separator {
    margin: 3em auto;
    padding: 0;
}

@media screen and (min-width: 768px) {
    .wp-block-cover-text p {
        padding: 1.5em 0;
    }
}

.wp-block-pullquote {
    border-top: 4px solid #555d66;
    border-bottom: 4px solid #555d66;
    color: #40464d;
}

/*--------------------------------------------------------------
## Block Color Palette Colors
--------------------------------------------------------------*/
.has-strong-blue-color {
    color: #0073aa;
}

.has-strong-blue-background-color {
    background-color: #0073aa;
}

.has-lighter-blue-color {
    color: #229fd8;
}

.has-lighter-blue-background-color {
    background-color: #229fd8;
}

.has-very-light-gray-color {
    color: #eee;
}

.has-very-light-gray-background-color {
    background-color: #eee;
}

.has-very-dark-gray-color {
    color: #444;
}

.has-very-dark-gray-background-color {
    background-color: #444;
}

/* Theme */
@media (min-width: 1200px) {
    .container {
        max-width: 1640px;
    }
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 8px;
    padding-left: 8px;
}

.btn-margin-top {
    margin-top: 60px;
}

.section-title {
    margin-bottom: 60px;
}

input.common-input {
    width: 100%;
    padding: 24px;
    font-size: 18px;
    font-weight: 400;
    border: 1px solid var(--wb-secondary-color);
    display: inline-block;
    color: #fff;
    background-color: var(--wb-secondary-color);
}

input.common-input:focus {
    border: 1px solid var(--wb-secondary-color);
}

.mb-120 {
    margin-bottom: 120px;
}

.mr-120 {
    margin-right: 120px;
}

.mt-120 {
    margin-top: 120px;
}

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

.ml-100 {
    margin-left: 100px;
}

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

.mr-80 {
    margin-right: 80px;
}

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

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

.mb-40 {
    margin-bottom: 40px;
}

.mt-40 {
    margin-top: 40px;
}

.cross-icon {
    position: absolute;
    top: 30px;
    right: 30px;
}

.cross-icon i {
    color: #fff;
    background: var(--wb-secondary-color);
    padding: 7px 8px;
    cursor: pointer;
}

.search-input {
    padding: 20px 30px;
    background: var(--heading-color);
    border: 1px solid #fff;
    color: #fff;
}

.search-button {
    padding: 20px 30px 20px;
    background: var(--heading-color);
    border: none;
    margin-left: -5px;
    cursor: pointer;
}

.search-button i {
    color: #fff;
}


.accordion-area .accordion-wrapper .card .card-header a {
    display: block;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    background-color: #fff;
    padding: 15px 5px;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid #ccc;
}

.accordion-area .accordion-wrapper .card .card-header a:after {
    top: 50%;
    transform: translateY(-50%);
    color: #000000;
    left: 2%;
    position: absolute;
}

.accordion-area .accordion-wrapper .card .card-header a[aria-expanded="false"]:after {
    content: '\f61e';
    font-family: 'fontello';
    color: #000000;
}

.accordion-area .accordion-wrapper .card .card-header a[aria-expanded="true"]:after {
    content: '\f61d';
    font-family: 'fontello';
}

.accordion-area .accordion-wrapper .card .card-body {
    background-color: #fff;
    padding: 15px;
}

.accordion-area .card-body {
    padding: 0 40px 40px 40px;
}

.accordion-area .btn-link {
    color: var(--wb-secondary-color);
    font-weight: 400;
}

.accordion-area .btn-link:focus,
.accordion-area .btn-link:hover {
    text-decoration: none;
}

.template-pagination ul li {
    display: inline;
    margin: 0 5px;
}

.template-pagination ul li a {
    color: #BDC2C9;
    font-weight: 500;
}

.template-pagination ul .active {
    position: relative;
    margin: 0 62px 0 0;
}

.template-pagination ul .active :after {
    content: '';
    position: absolute;
    top: 10px;
    right: -60px;
    width: 50px;
    height: 2px;
    background: #4B4B4B;
}

.template-pagination ul .active a {
    color: #4B4B4B;
    font-weight: 500;
}

.template-breadcrumb {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 250px;
}

.template-breadcrumb:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 190px;
    background: #fff;
}

.template-breadcrumb:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35%;
    height: 190px;
    background: #fff;
}

.template-breadcrumb .banner-title {
    padding-left: 100px;
    padding-top: 60px;
}

.section-padding-both {
    padding: 60px 0;
}

.section-padding-both2 {
    padding-block: 60px;
}

.section-padding-both3 {
    padding: 120px 0 100px;
}

.section-padding-top {
    padding-top: 120px;
}

.section-padding-top2 {
    padding-top: 105px;
}

.section-padding-top3 {
    padding-top: 115px;
}

.section-padding-top4 {
    padding-top: 90px;
}

.section-padding-bottom {
    padding-bottom: 120px;
}

.section-padding-bottom2 {
    padding-bottom: 105px;
}

/*---------------------
    ## Breadcumb
----------------------*/
.breadcrumb-area {
    padding: 140px 0 142px 0;
    background-image: url(../img/bg/breadcrumb-bg.html);
    position: relative;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.breadcrumb-area:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.breadcrumb-area.extra {
    padding-bottom: 138px;
}

.breadcrumb-area .page-title {
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.breadcrumb-area p {
    font-size: 16px;
    line-height: 26px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.breadcrumb-area .page-list {
    margin: 0;
    padding: 0;
}

.breadcrumb-area .page-list li {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-area .page-list li:first-child {
    padding-left: 0;
}

.breadcrumb-area .page-list li:first-child a {
    color: var(--wb-primary-color);
}

.breadcrumb-area .page-list li:first-child:after {
    display: none;
}

.breadcrumb-area .page-list li:after {
    position: absolute;
    left: 10px;
    top: 0;
    content: "\f105";
    font-family: 'fontawesome';
}

.breadcrumb-area .page-list li a {
    color: rgba(255, 255, 255, 0.7);
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.breadcrumb-area .page-list li a:hover {
    color: #fff;
}

/*--------------------------------------------------------------
	## Comments
--------------------------------------------------------------*/
.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

.comments-area {
    margin-top: 30px;
}

.comments-area .comments-title {
    font-size: 26px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 25px;
}

.comments-area .comment-list .comment-respond {
    margin-bottom: 30px;
}

.comments-area .comment-list {
    margin: 0;
    padding: 0;
    list-style: none;
    list-style-type: none;
    margin-bottom: 20px;
}

.comments-area .comment-list li {
    margin-bottom: 30px;
}

.comments-area .comment-list li:last-child {
    margin-bottom: 0;
}

.comments-area .comment-list li ul.children {
    margin: 0;
    padding: 0;
    list-style: none;
    list-style-type: none;
}

.comments-area .comment-list li ul {
    list-style: none;
}

.comments-area .comment-list li ul.children li {
    margin-left: 50px;
    list-style-type: none;
    list-style: none;
}

.comments-area .comment-list li .single-comment-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.comments-area .comment-list li .single-comment-wrap .thumb {
    margin-right: 20px;
    min-width: 80px;
    border-radius: 50%;
}

.comments-area .comment-list li .single-comment-wrap .thumb img {
    margin-bottom: 10px;
    border-radius: 50%;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
}

.comments-area .comment-list li .single-comment-wrap .date,
.blog-details-page-content-area .comments-area .comment-list li .single-comment-wrap .time {
    display: block;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
}

.comments-area .comment-list li .single-comment-wrap .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
}

.comments-area .comment-list li .single-comment-wrap .content .title {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}

.comments-area .comment-list li .single-comment-wrap .content .comment-content {
    max-width: 620px;
}

.comments-area .comment-list li .single-comment-wrap .content p {
    font-size: 16px;
    line-height: 26px;
    word-break: break-word;
}

.comments-area .comment-list li .single-comment-wrap .content p:last-child {
    margin-bottom: 0;
}

.comments-area .comment-list li .single-comment-wrap .content .reply {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--paragraph-color);
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.comments-area .comment-list li .single-comment-wrap .content .reply:hover {
    color: var(--wb-primary-color);
}

.comments-area .reply-title,
.comments-area .comment-reply-title {
    font-size: 26px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 20px;
}

.comments-area .form-submit {
    margin-bottom: 0;
}

.comment-form .form-group.textarea .form-control {
    min-height: 160px;
    resize: none;
    line-height: 26px;
}

.comment-form .form-group.textarea .form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.comment-form .form-group .form-control {
    height: 50px;
    line-height: 50px;
    border: 1px solid #e2e2e2;
}

.comment-form .submit-btn {
    height: 50px;
    width: auto;
    border-radius: 5px;
    font-weight: 400;
    background-color: var(--wb-primary-color);
    border: none;
    cursor: pointer;
    -webkit-transition: .3s ease-in;
    -o-transition: .3s ease-in;
    transition: .3s ease-in;
    color: #fff;
}

.comment-form .submit-btn:hover {
    background-color: var(--wb-secondary-color);
    color: #fff;
}

.comment-respond {
    /*margin-top: 20px;*/
}

.comments-area .comment-list .children li:last-child {
    margin-bottom: 30px;
}

.comments-area .comment-list li ul.children {
    margin-top: 30px;
}

.comment-form-cookies-consent input[type=checkbox] {
    margin-right: 5px;
}

/*-----------------------
    Error 404 Page
-----------------------*/
.error-404 {
    text-align: center;
}

.error-404 .title {
    font-size: 200px;
    line-height: 160px;
    font-weight: 700;
    margin-bottom: 45px;
    color: var(--wb-primary-color);
}

.error-404 .subtitle {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 20px;
}

.error-404 .search-form {
    position: relative;
    z-index: 0;
    margin-top: 36px;
}

.error-404 .search-form .form-control {
    height: 54px;
    padding: 0 20px;
}

.error-404 .search-form .submit-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    text-align: center;
    padding: 0;
    height: 55px;
}

/*----------------------------------------------
    # Nav bar
----------------------------------------------*/
.navbar.navbar-area.white .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.50)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar.navbar-area .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.50)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar .logo-wrapper h4 {
    display: none;
}

.mobile-logo {
    display: none;
}

@media only screen and (max-width: 991px) {
    .mobile-logo {
        display: block;
    }

    .desktop-logo {
        display: none !important;
    }
}

.navbar-area {
    padding: 10px 0;
}

.navbar-area.nav-absolute {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0px;
    z-index: 2;
}

.navbar-area.nav-style-02 {
    background-color: transparent;
}

.navbar-area.nav-style-02 .nav-container {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0 15px;
    max-width: 1700px;
}

.navbar-area.nav-style-02 .nav-container .nav-right-content ul li {
    color: var(--wb-secondary-color);
    font-size: 20px;
}

.navbar-area.nav-style-02 .nav-container .nav-right-content ul li+li {
    margin: 5px;
}

.navbar-area.nav-style-02 .nav-container .nav-right-content ul li a {
    color: #989898;
    font-size: 18px;
}

.navbar-area.nav-style-02 .nav-container .nav-right-content ul .user {
    cursor: pointer;
}

.navbar-area.nav-style-02 .nav-container .nav-right-content ul .cart-sec {
    position: relative;
}

.navbar-area.nav-style-02 .nav-container .nav-right-content ul .cart-sec .cart-count {
    font-size: 12px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    color: #fff;
    background: var(--wb-primary-color);
    display: inline-block;
    text-align: center;
    line-height: 16px;
    position: absolute;
    top: -11px;
    left: 3px;
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav {
    text-align: right;
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
    color: var(--wb-primary-color);
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.current-menu-item:before {
    color: var(--wb-primary-color);
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
    z-index: initial;
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    color: rgba(255, 255, 255, 0.8);
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    padding: 10px 0;
    border: 1px solid rgba(172, 172, 172, 0.36);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li+li {
    border-top: none;
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    background-color: #fff;
    color: var(--paragraph-color);
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
    background-color: #fff;
    color: var(--wb-primary-color);
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover>.sub-menu li:hover:before {
    color: #fff;
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li a {
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    color: var(--secondary-paragraph);
    padding: 0 25px;
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li:hover.menu-item-has-children:before {
    color: var(--wb-primary-color);
    display: none;
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li:hover a {
    color: var(--wb-primary-color);
}

.navbar-area.nav-style-01 {
    background-color: var(--wb-secondary-color);
}

.navbar-area.nav-style-01 .nav-container {
    background-color: var(--wb-secondary-color);
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0 15px;
}

.navbar-area.nav-style-01 .nav-container .nav-right-content ul li {
    color: rgba(255, 255, 255, 0.8);
}

.navbar-area.nav-style-01 .nav-container .nav-right-content ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav {
    text-align: left;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
    color: var(--wb-primary-color);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.current-menu-item.menu-item-has-children:before {
    color: var(--wb-primary-color);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
    z-index: initial;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    color: rgba(255, 255, 255, 0.8);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li+li {
    border-top: 1px solid #e2e2e2;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    background-color: #fff;
    color: var(--paragraph-color);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
    background-color: var(--wb-primary-color);
    color: #fff;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover>.sub-menu li:hover:before {
    color: #fff;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li a {
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    color: rgba(255, 255, 255, 0.8);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li:hover.menu-item-has-children:before {
    color: var(--wb-primary-color);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li:hover a {
    color: var(--wb-primary-color);
}

.navbar-area .nav-container {
    background-color: #fff;
    -webkit-box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.2);
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 0 30px;
}

.navbar-area .nav-container .nav-right-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar-area .nav-container .nav-right-content ul li {
    display: inline-block;
    color: #6a7795;
}

.navbar-area .nav-container .nav-right-content ul li:last-child {
    margin-right: 0;
}

.navbar-area .nav-container .nav-right-content ul li a {
    color: #6a7795;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.navbar-area .nav-container .nav-right-content ul li a:hover {
    color: var(--wb-primary-color);
}

.navbar-area .nav-container .nav-right-content ul li.search {
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.navbar-area .nav-container .nav-right-content ul li.search:hover {
    color: var(--wb-primary-color);
}

.navbar-area .nav-container .nav-right-content ul li.nav-btn .btn-boxed {
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 5px;
    background-color: var(--wb-primary-color);
}

.navbar-area .nav-container .nav-right-content ul li.nav-btn .btn-boxed:hover {
    background-color: var(--wb-secondary-color);
}

.navbar-area .nav-container .navbar-brand .site-title {
    font-weight: 700;
    font-size: 30px;
    line-height: 90px;
    color: var(--heading-color);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav {
    display: block;
    width: 100%;
    text-align: right;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    line-height: 90px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
    color: var(--wb-primary-color);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.current-menu-item:after {
    position: absolute;
    bottom: 20px;
    left: 45%;
    width: 5px;
    height: 5px;
    content: '';
    background: var(--wb-primary-color);
    -webkit-transform: translateX(-45%);
    -ms-transform: translateX(-45%);
    transform: translateX(-45%);
    border-radius: 50%;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
    position: relative;
    z-index: 0;
    padding-right: 15px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    position: absolute;
    right: 0;
    top: 50%;
    content: '\f107';
    font-family: 'fontawesome';
    -ms-transform: translateY(-50%);
    /* IE 9 */
    -webkit-transform: translateY(-50%);
    /* Chrome, Safari, Opera */
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    display: none;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover>.sub-menu {
    visibility: visible;
    opacity: 1;
    top: 100%;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    position: absolute;
    text-align: left;
    min-width: 220px;
    margin: 0;
    padding: 0;
    list-style: none;
    left: 0;
    top: 120%;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
    background-color: #fff;
    z-index: 9;
    border-bottom: 4px solid var(--wb-primary-color);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    display: block;
    margin-left: 0;
    line-height: 16px;
    font-size: 16px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li+li {
    border-top: 1px solid #e2e2e2;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    display: block;
    padding: 12px 30px;
    background-color: #fff;
    white-space: nowrap;
    color: var(--paragraph-color);
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
    background-color: var(--wb-primary-color);
    color: #fff;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children {
    position: relative;
    z-index: 0;
    padding-right: 0px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:before {
    position: absolute;
    right: 15px;
    top: 50%;
    content: '\f105';
    font-family: 'fontawesome';
    -ms-transform: translateY(-50%);
    /* IE 9 */
    -webkit-transform: translateY(-50%);
    /* Chrome, Safari, Opera */
    transform: translateY(-50%);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
    left: 100%;
    top: 20px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu .sub-menu .sub-menu {
    left: auto;
    right: 100%;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover>.sub-menu {
    visibility: visible;
    opacity: 1;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover>.sub-menu li:hover:before {
    color: #fff;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li a:hover {
    color: var(--wb-primary-color);
}

@media only screen and (max-width: 991px) {
    .navbar-area.nav-style-02 .nav-container {
        padding: 20px 0px;
    }

    .navbar-area.nav-style-02 .nav-container .navbar-toggler {
        background-color: #fff;
    }

    .navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
        background-color: transparent;
        color: rgba(255, 255, 255, 0.8);
    }

    .navbar-area.nav-style-01 .nav-container {
        padding: 20px 0px;
    }

    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav {
        text-align: left;
    }

    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
        color: var(--wb-primary-color);
    }

    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.current-menu-item.menu-item-has-children:before {
        color: var(--wb-primary-color);
    }

    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
        z-index: initial;
    }

    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
        color: #656565;
    }

    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li+li {
        border-top: 1px solid #e2e2e2;
    }

    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
        background-color: transparent;
        color: var(--paragraph-color);
    }

    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
        background-color: var(--wb-primary-color);
        color: #fff;
    }

    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover>.sub-menu li:hover:before {
        color: #656565;
    }

    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li a {
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
        color: #656565;
    }

    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li:hover.menu-item-has-children:before {
        color: var(--wb-primary-color);
    }

    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li:hover a {
        color: var(--wb-primary-color);
    }

    .navbar-area .nav-container {
        position: relative;
        z-index: 0;
        min-height: 80px;
    }

    .navbar-area .nav-container .navbar-brand {
        display: block;
    }

    .navbar-area .nav-container .navbar-brand .navbar-toggler {
        position: absolute;
        right: 10px;
        border: 1px solid #e2e2e2;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav {
        display: block;
        margin-top: 20px;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li {
        display: block;
        text-align: left;
        line-height: 30px;
        border-bottom: 1px solid #e2e2e2;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li:last-child {
        border-bottom: none;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li+li {
        margin-left: 0;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
        top: 25px;
        right: 20px;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover {
        padding-bottom: 0;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover>.sub-menu {
        visibility: visible;
        height: auto;
        opacity: 1;
        background-color: transparent;
        border-bottom: none;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
        position: initial;
        display: block;
        width: 100%;
        border-top: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        margin-left: 0;
        padding-bottom: 0;
        visibility: hidden;
        opacity: 0;
        height: 0;
        overflow: hidden;
        max-height: 250px;
        overflow-y: scroll;
        -webkit-transition: height 500ms;
        -moz-transition: height 500ms;
        -o-transition: height 500ms;
        transition: height 500ms;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .sub-menu .menu-item-has-children:before {
        content: "\f107";
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
        padding: 0;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li.menu-item-has-children:hover:before {
        top: 30px;
        color: #fff;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li+li {
        border-top: none;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:first-child {
        border-top: 1px solid #e2e2e2;
    }
}

@media only screen and (max-width: 575px) {
    .navbar-area .nav-container {
        margin: 0 15px;
    }
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav .sub-menu .sub-menu {
    top: -1px;
    left: -102%;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav .sub-menu li:hover>.sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav .sub-menu li .sub-menu {
    display: none;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.home-page-2 .navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li a {
    color: #fff;
}

.home-page-2 .navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
    color: var(--wb-primary-color);
}

.home-page-2 .navbar-area.nav-style-02 .nav-container {
    background-color: transparent;
    padding: 0 40px;
}

.home-page-2 .navbar-area {
    padding: 0;
}

.home-page-2 .navbar-area.nav-style-02 .nav-container .nav-right-content ul li,
.home-page-2 .navbar-area.nav-style-02 .nav-container .nav-right-content ul li span {
    color: #fff;
}

.home-page-3 .hide-logo {
    display: none;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children.mega-menu-list {
    position: inherit;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children.mega-menu-list:hover .mega-menu-inner li a {
    color: var(--secondary-paragraph);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children.mega-menu-list .mega-menu-inner li:hover a {
    color: var(--wb-primary-color);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children.mega-menu-list:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.navbar-area .nav-container {
    position: relative;
}

.mega-menu {
    position: absolute;
    width: 93%;
    background: #fff;
    left: 50%;
    padding: 30px 20px;
    border: 1px solid rgba(172, 172, 172, 0.36);
    top: 120%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 9990;
}

.mega-menu .mega-menu-inner {
    width: 25%;
    float: left;
    overflow: hidden;
    text-align: left;
}

.mega-menu .mega-menu-inner li {
    display: block !important;
    line-height: 20px !important;
    text-align: left !important;
    margin-left: 0 !important;
    cursor: pointer !important;
}

.mega-menu .mega-menu-inner li a {
    padding: 15px 30px !important;
    display: inline-block !important;
    text-transform: capitalize;
}

.mega-menu .mega-menu-inner img {
    margin-bottom: 10px;
    width: 150px;
    height: auto;
}

/*----------------------------
    Info Bar
----------------------------*/
.info-bar-area.style-three .info-bar-inner {
    padding: 10px 0 18px 0;
}

.info-bar-area.style-three .info-bar-inner .social-icon {
    margin-top: 15px;
}

.info-bar-area.style-two .info-bar-inner {
    padding: 0;
}

.info-bar-area .social-icon .title {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--heading-color);
}

.info-bar-inner {
    padding: 32px 0 35px 0;
}

.info-bar-inner div {
    display: inline-block;
}

.info-bar-inner .logo-wrapper .logo {
    margin-top: 5px;
    display: block;
}

.info-bar-inner .logo-wrapper .site-title {
    font-size: 35px;
    font-weight: 700;
    margin-top: 10px;
}

.info-bar-inner .right-content {
    display: inline-block;
    float: right;
}

.info-bar-inner .right-content .request-quote {
    margin-left: 40px;
}

.info-bar-inner .right-content .request-quote .rq-btn {
    padding: 15px 25px;
    background-color: var(--wb-primary-color);
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
    display: block;
    position: relative;
    top: -5px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.info-bar-inner .right-content .request-quote .rq-btn.blank {
    background-color: #f1f1f1;
    border-radius: 0;
    top: 0;
    padding: 15px 40px;
    color: var(--heading-color);
}

.info-bar-inner .right-content .request-quote .rq-btn.blank i {
    color: var(--wb-primary-color);
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.info-bar-inner .right-content .request-quote .rq-btn.blank:hover {
    background-color: var(--wb-primary-color);
    color: #fff;
}

.info-bar-inner .right-content .request-quote .rq-btn.blank:hover i {
    color: #fff;
}

.info-bar-inner .right-content .request-quote .rq-btn:hover {
    background-color: var(--wb-secondary-color);
}

.info-items {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
}

.info-items li {
    display: inline-block;
    margin: 0 30px;
}

.info-items li:hover .single-info-item .content .title {
    color: var(--wb-primary-color);
}

.info-items li:first-child {
    margin-left: 0;
}

.info-items li:last-child {
    margin-right: 0;
}

.info-items li .single-info-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.info-items li .single-info-item .icon {
    margin-right: 20px;
    font-size: 40px;
    line-height: 40px;
    color: var(--wb-primary-color);
}

.info-items li .single-info-item .content .title {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    margin-bottom: 0;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.info-items li .single-info-item .content .details {
    font-size: 14px;
    line-height: 24px;
}

.info-items-two {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 10px;
}

.info-items-two li {
    display: inline-block;
    margin: 0 30px;
}

.info-items-two li:hover .single-info-item .content .title {
    color: var(--wb-primary-color);
}

.info-items-two li:first-child {
    margin-left: 0;
}

.info-items-two li:last-child {
    margin-right: 0;
}

.info-items-two li .single-info-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.info-items-two li .single-info-item .icon {
    margin-right: 15px;
    font-size: 30px;
    line-height: 30px;
    color: var(--wb-primary-color);
}

.info-items-two li .single-info-item .content {
    margin-top: 3px;
}

.info-items-two li .single-info-item .content .title {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    margin-bottom: 0;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.info-items-two li .single-info-item .content .details {
    margin-left: 5px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: var(--paragraph-color);
}

/*--------------------------------------------------------------
	## Header
--------------------------------------------------------------*/
.header-style-04 {
    position: relative;
    z-index: 0;
}

.header-style-04 .navbar-area {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 2;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-style-04 .navbar-area .nav-container {
    background-color: transparent;
}

.header-area-wrapper {
    position: relative;
    z-index: 0;
}

.header-area {
    padding: 123px 0 370px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.header-area.style-04 {
    text-align: center;
    padding: 253px 0 170px;
}

.header-area.style-03 {
    padding: 180px 0 150px;
}

.header-area.style-03.header-bg {
    background-color: #000;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.header-area.style-03.header-bg:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 6, 24, 0.5);
    content: '';
    z-index: -1;
}

.header-area.style-02:after {
    display: none;
}

.header-area.style-02 .title {
    color: var(--heading-color);
}

.header-area.style-02 p {
    color: var(--paragraph-color);
}

.header-area.header-bg {
    background-color: #000;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.header-area.header-bg:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 6, 24, 0.4);
    content: '';
    z-index: -1;
}

.header-area .title {
    font-size: 60px;
    line-height: 70px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
}

.header-area p {
    font-size: 18px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.8);
}

.header-top-style-03 {
    position: relative;
    min-height: 50px;
}

.header-top-style-03 .navbar-area {
    position: absolute;
    background-color: transparent;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 2;
}

.header-top-style-03 .navbar-area .nav-container {
    background-color: var(--wb-secondary-color);
    padding: 0 0px 0 30px;
}

.header-top-style-03 .navbar-area .nav-container .nav-right-content {
    margin-left: 40px;
}

.header-top-style-03 .navbar-area .nav-container .nav-right-content .get-quote {
    background-color: #061043;
    display: inline-block;
    padding: 0 30px 0 40px;
    line-height: 90px;
    font-weight: 600;
    color: #fff;
    position: relative;
    z-index: 0;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.header-top-style-03 .navbar-area .nav-container .nav-right-content .get-quote:hover {
    background-color: var(--wb-primary-color);
}

.header-top-style-03 .navbar-area .nav-container .nav-right-content .get-quote:hover:before {
    background-color: #fff;
}

.header-top-style-03 .navbar-area .nav-container .nav-right-content .get-quote:hover:after {
    color: var(--wb-primary-color);
}

.header-top-style-03 .navbar-area .nav-container .nav-right-content .get-quote:before {
    position: absolute;
    left: -13px;
    top: 50%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--wb-primary-color);
    display: inline-block;
    content: '';
    -ms-transform: translateY(-50%);
    /* IE 9 */
    -webkit-transform: translateY(-50%);
    /* Chrome, Safari, Opera */
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.header-top-style-03 .navbar-area .nav-container .nav-right-content .get-quote:after {
    position: absolute;
    left: 0;
    top: 0;
    content: "\f105";
    font-family: 'fontawesome';
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

/*-------------------------
    Footer Area
-------------------------*/
.footer-widget {
    background-color: #fff;
    padding: 80px 0 50px;
}

.footer-widget form {
    margin-top: 75px;
    position: relative;
}

.footer-widget form input {
    width: 65%;
    height: 50px;
    font-weight: 400;
    padding-left: 20px;
    border: 1px solid transparent;
    display: inline-block;
    color: #fff;
    background-color: var(--wb-secondary-color);
}

.footer-widget form input:focus {
    border: 1px solid transparent;
}

.footer-widget form button {
    border: 1px solid transparent;
    background-color: var(--wb-secondary-color);
    position: absolute;
    top: 0;
    right: 20%;
    height: 50px;
}

.footer-widget form button span {
    padding: 0 15px;
    color: #fff;
    display: inline-block;
    font-size: 30px;
    cursor: pointer;
}

.copyright-area {
    background-color: #f6f6f6;
    opacity: .8;
}

.copyright-area a {
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

.copyright-area a:hover {
    color: var(--wb-primary-color);
}

/*--------------------------------------------------------------
	## WIdgets
--------------------------------------------------------------*/
.widget {
    background-color: #F4F7FC;
    margin-bottom: 30px;
    padding: 25px 30px 30px 30px;
}

.widget.Dizzcox_testimonial_widget {
    background-color: var(--wb-secondary-color);
}

.widget select {
    width: 100%;
    height: 50px;
    padding: 10px 20px;
}

.widget .widget-title {
    font-size: 22px;
    line-height: 31px;
    margin-bottom: 20px;
    position: relative;
}

.widget.widget_calendar {
    padding-right: 24px;
    padding-left: 24px;
}

.widget:last-child {
    margin-bottom: 0px;
}

.widget.widget_nav_menu ul li.menu-item-has-children:after {
    display: none;
}

.widget.footer-widget .subscribe-form .form-group .form-control {
    background-color: #515457;
    color: #fff;
}

.widget.footer-widget .subscribe-form .form-group .form-control::-webkit-input-placeholder {
    /* WebKit browsers */
    color: rgba(255, 255, 255, 0.6);
}

.widget.footer-widget .subscribe-form .form-group .form-control:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: rgba(255, 255, 255, 0.6);
}

.widget.footer-widget .subscribe-form .form-group .form-control::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: rgba(255, 255, 255, 0.6);
}

.widget.footer-widget .subscribe-form .form-group .form-control:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: rgba(255, 255, 255, 0.6);
}

.widget.footer-widget .subscribe-form .submit-btn:hover {
    background-color: #fff;
    color: var(--wb-primary-color);
}

.widget.footer-widget {
    background-color: transparent !important;
    padding: 0;
    margin-bottom: 30px;
}

.widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.widget ul li ul {
    margin-left: 20px;
}

.widget ul li {
    display: block;
    margin: 8px 0;
    -ms-word-wrap: break-word;
    word-break: break-word;
}

.widget ul li:first-child {
    margin-top: 0px;
}

.widget ul li:last-child {
    margin-bottom: 0px;
}

.widget ul li a {
    color: inherit;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.widget ul li a:hover {
    color: var(--wb-primary-color);
}

.footer-widget.widget_nav_menu ul li a {
    position: relative;
    padding-left: 0;
}

.footer-widget.widget_nav_menu ul li a:after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    font-family: "fontawesome";
    font-weight: 900;
    color: var(--wb-primary-color);
    display: none;
}

.widget_search .search-form {
    position: relative;
}

.widget_search .search-form .form-group {
    margin-bottom: 0;
}

.widget_search .search-form .form-group .form-control {
    height: 50px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 0 70px 0 15px;
}

.widget_search .search-form .submit-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 50px;
    line-height: 50px;
    padding: 0;
    font-size: 18px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: var(--wb-primary-color);
    color: #fff;
    -webkit-transition: .3s ease-in;
    -o-transition: .3s ease-in;
    transition: .3s ease-in;
    border: none;
    cursor: pointer;
}

.widget_search .search-form .submit-btn:hover {
    background-color: var(--wb-secondary-color);
    color: #fff;
}

.widget_author_meta {
    text-align: center;
}

.widget_author_meta .thumb {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.widget_author_meta .thumb img {
    border-radius: 50%;
}

.widget_author_meta .content .name {
    font-size: 21px;
    font-weight: 700;
}

.widget_author_meta .content p {
    font-size: 16px;
    line-height: 26px;
}

.widget_author_meta .content ul {
    margin-top: 25px;
}

.widget_author_meta .content ul li {
    display: inline-block;
    margin: 0 5px;
}

.widget_author_meta .content ul li a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.widget_author_meta .content ul li a:hover {
    background-color: var(--wb-primary-color);
    color: #fff;
}

.widget_tag_cloud .tagcloud a {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 5px;
    color: inherit;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    border-radius: 5px;
    font-size: 16px !important;
}

.widget_tag_cloud .tagcloud a:hover {
    background-color: var(--wb-primary-color);
    color: #fff;
}

.widget ul li ul.sub-menu {
    position: initial;
}

.widget ul li ul.sub-menu {
    visibility: visible;
    opacity: 1;
    background-color: transparent;
    border-top: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-top: 10px;
}

.widget ul li ul.sub-menu li a {
    padding: 0 0 0px 10px;
}

.widget ul li ul.sub-menu li a:hover {
    background-color: transparent;
}

.widget.widget_nav_menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.widget.widget_nav_menu ul li {
    margin: 15px 0;
}

.widget.widget_nav_menu ul li:first-child {
    margin-top: 0;
}

.widget.widget_nav_menu ul li:last-child {
    margin-bottom: 0;
}

.widget.widget_nav_menu ul li a {
    border: none;
}

.widget.widget_nav_menu ul li>ul {
    margin-left: 15px;
}

.widget.footer-widget.widget_calendar table {
    margin-bottom: 0;
}

.widget.footer-widget.widget_calendar caption {
    padding-bottom: 0;
}

.widget.footer-widget .widget-title {
    color: var(--heading-color);
}

.widget.footer-widget p,
.footer-widget.widget_tag_cloud .tagcloud a,
.widget.footer-widget.widget_calendar caption,
.widget.footer-widget.widget_calendar th,
.widget.footer-widget.widget_calendar td {
    color: #717171;
    font-weight: 400;
}

.widget.footer-widget ul li a,
.widget.footer-widget ul li {
    color: #717171;
    text-transform: capitalize;
    font-weight: 400;
}

.widget.footer-widget ul li a:hover {
    color: var(--wb-primary-color);
}

.widget .social_share {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.widget .social_share li {
    width: calc(100% / 3);
    margin: 0;
    display: block;
    padding: 20px 0 12px 0;
    text-align: center;
    border-radius: 5px;
    color: #fff;
}

.widget .social_share li i {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
}

.widget .social_share li.facebook {
    background-color: #3b5999;
}

.widget .social_share li.twitter {
    background-color: #55acee;
}

.widget .social_share li.instagram {
    background-color: #e4405f;
}

.widget .social_share li a:hover {
    color: #fff;
}

.widget .social_share li+li {
    margin-left: 10px;
}

.widget .recent_post_item {
    margin: 0;
    padding: 0;
    list-style: none;
}

.widget .recent_post_item li {
    display: block;
}

.widget .recent_post_item li+li {
    margin-top: 20px;
}

.widget .recent_post_item li.single-recent-post-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.widget .recent_post_item li.single-recent-post-item .thumb {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.widget .recent_post_item li.single-recent-post-item .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.widget .recent_post_item li.single-recent-post-item .content .title {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
}

.widget .recent_post_item li.single-recent-post-item .content .time {
    font-size: 14px;
    font-weight: 500;
}

.contact_info_list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact_info_list li {
    display: block;
}

.contact_info_list li.single-info-item {
    position: relative;
    margin-bottom: 20px;
}

.contact_info_list li.single-info-item .icon {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--wb-primary-color);
}

.contact_info_list li.single-info-item .details {
    padding-left: 30px;
}

.about_us_widget .footer-logo {
    margin-bottom: 30px;
    display: block;
}

.copyright-area {
    padding: 15px 50px;
    color: #fff;
}

.copyright-area .copyright-link {
    text-transform: capitalize;
}

.copyright-area .copyright-link li {
    display: inline;
    margin-left: 40px;
}

.widget-testimonial .icon {
    font-size: 70px;
    line-height: 60px;
    color: var(--wb-primary-color);
    margin-bottom: 16px;
}

.widget-testimonial p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.widget-testimonial .author-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-top: 24px;
}

.widget-testimonial .author-meta .thumb {
    margin-right: 20px;
}

.widget-testimonial .author-meta .thumb img {
    max-width: 80px;
    height: 80px;
    border-radius: 50%;
}

.widget-testimonial .author-meta .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 15px;
}

.widget-testimonial .author-meta .content .name {
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}

.widget-testimonial .author-meta .content .designation {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Home 01 Banner */
.banner-area {
    max-width: 1720px;
    margin: auto;
}

.banner-area .banner-left {
    position: relative;
}

.banner-area .banner-left .banner-image {
    position: relative;
    width: 600px;
    height: 1000px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-left: 170px;
}

.banner-area .banner-left span {
    color: #fff;
    background-color: var(--wb-primary-color);
    font-size: 53px;
    line-height: 105px;
    height: 110px;
    width: 110px;
    display: block;
    text-align: center;
    position: absolute;
    bottom: 130px;
    right: -52px;
}

.banner-area .banner-left ul {
    position: absolute;
    left: 0;
    bottom: 30px;
}

.banner-area .banner-left ul li {
    margin-bottom: 15px;
}

.banner-area .banner-left ul li a {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.banner-area .banner-left ul li a:hover {
    color: var(--wb-primary-color);
}

.banner-area .banner-content {
    margin-bottom: 50px;
}

.banner-area .banner-middle-content {
    width: 50%;
    position: relative;
}

.banner-area .banner-middle-content span {
    position: absolute;
    top: -62px;
    right: -103%;
    font-size: 600px;
    color: #777;
    line-height: 300px;
    font-weight: 600;
    opacity: 0.02;
    z-index: -1;
}

.banner-area .banner-btn {
    margin-top: 50px;
}

.banner-area .banner-right {
    padding-left: 50px;
}

.banner-area .banner-right .different {
    font-weight: 400;
}

.banner-area .banner-right .right-img {
    position: relative;
    width: 320px;
    height: 300px;
    background-image: url("../img/home-1/banner/slide-1.2.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner-area .slider-area.owl-carousel .owl-dots {
    position: absolute;
    top: 50%;
    left: 30px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.banner-area .slider-area.owl-carousel .owl-dot {
    width: 9px;
    height: 9px;
    background: rgba(172, 172, 172, 0.36);
    border-radius: 50%;
    display: block;
    margin: 13px 0;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.banner-area .slider-area.owl-carousel .owl-dot.active {
    background: var(--wb-primary-color);
    width: 14px;
    height: 14px;
    margin-left: -2px;
    position: relative;
}

.banner-area .slider-area.owl-carousel .owl-dot.active:after {
    content: '';
    position: absolute;
    top: 6px;
    left: 30px;
    width: 50px;
    height: 1px;
    background: var(--wb-primary-color);
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.slider-area .owl-nav .owl-prev {
    position: absolute;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.slider-area .owl-nav .owl-next {
    position: absolute;
    bottom: 55px;
    right: 47.6%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    outline: none;
    font-size: 50px;
    line-height: 0;
}

.slider-area .owl-item.active .banner-content {
    -webkit-animation: 1s .3s fadeInUp both;
    animation: 1s .3s fadeInUp both;
}

.slider-area .owl-item.active .banner-middle-content {
    -webkit-animation: 1s .3s fadeInDown both;
    animation: 1s .3s fadeInDown both;
}

.slider-area .owl-item.active .banner-btn {
    -webkit-animation: 1s .3s fadeInDown both;
    animation: 1s .3s fadeInDown both;
}

.slider-area .owl-item.active .right-img {
    -webkit-animation: 1s .3s fadeInUp both;
    animation: 1s .3s fadeInUp both;
}

.home-2-banner .single-slide {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    height: 100vh;
}

.home-2-banner .single-slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.home-2-banner .single-slide .slider-left {
    margin-top: 48%;
    margin-left: 50px;
}

.home-2-banner .single-slide .slider-left h1,
.home-2-banner .single-slide .slider-left h4 {
    color: #fff;
}

.home-2-banner .single-slide .slider-right {
    margin-top: 50%;
    margin-left: auto;
    float: right;
    position: relative;
    padding-right: 50px;
}

.home-2-banner .single-slide .slider-right .banner-icon {
    position: absolute;
    bottom: 0;
    right: 0;
}

.home-2-banner .single-slide .slider-right .banner-icon ul li {
    margin-bottom: 15px;
}

.home-2-banner .single-slide .slider-right .banner-icon ul li a {
    color: #fff;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.home-2-banner .single-slide .slider-right .banner-icon ul li a:hover {
    color: var(--wb-primary-color);
}

.home-2-banner .single-slide .single-image {
    position: relative;
}

.home-2-banner .single-slide .single-image .image-bg {
    width: 300px;
    height: 380px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.home-2-banner .single-slide .single-image .image-1 {
    background-image: url("../img/home-2/banner/banner-1.png");
}

.home-2-banner .single-slide .single-image .image-2 {
    background-image: url("../img/home-2/banner/banner-2.png");
}

.home-2-banner .single-slide .single-image .image-3 {
    background-image: url("../img/home-2/banner/banner-3.png");
}

.home-2-banner .single-slide .single-image .image-4 {
    background-image: url("../img/home-2/banner/banner-4.png");
}

.home-2-banner .single-slide .single-image .image-5 {
    background-image: url("../img/home-2/banner/banner-5.png");
}

.home-2-banner .single-slide .single-image .image-6 {
    background-image: url("../img/home-2/banner/banner-6.png");
}

.home-2-banner .single-slide .single-image .image-7 {
    background-image: url("../img/home-2/banner/banner-7.png");
}

.home-2-banner .single-slide .single-image .image-8 {
    background-image: url("../img/home-2/banner/banner-8.png");
}

.home-2-banner .single-slide .single-image .image-9 {
    background-image: url("../img/home-2/banner/banner-9.png");
}

.home-2-banner .single-slide .single-image .image-10 {
    background-image: url("../img/home-2/banner/banner-10.png");
}

.home-2-banner .single-slide .single-image .hover-state {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
    padding: 20px 25% 20px 30px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.home-2-banner .single-slide .single-image .hover-state a {
    position: relative;
}

.home-2-banner .single-slide .single-image .hover-state a span {
    position: absolute;
    top: -8px;
    right: -27%;
    font-size: 26px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

.home-2-banner .single-slide .single-image:hover .hover-state {
    opacity: 1;
    visibility: visible;
}

.home-2-banner .single-slide-image1 {
    background-image: url("../img/home-2/banner/banner-bg.jpg");
}

.home-2-banner .single-slide-image2 {
    background-image: url("../img/home-2/banner/banner-bg2.png");
}

.home-2-banner .single-slide-image3 {
    background-image: url("../img/home-2/banner/banner-bg3.png");
}

.home-2-banner .single-slide-image4 {
    background-image: url("../img/home-2/banner/banner-bg4.png");
}

.home-2-banner .single-slide-image5 {
    background-image: url("../img/home-2/banner/banner-bg5.png");
}

.home-2-banner .slick-active .slider-left h1 {
    -webkit-animation: 1s .3s fadeInUp both;
    animation: 1s .3s fadeInUp both;
}

.home-2-banner .slick-active .slider-left h4 {
    -webkit-animation: 1s .3s fadeInUp both;
    animation: 1s .3s fadeInUp both;
}

.home-2-banner .slick-active .slider-left .home-2-button {
    -webkit-animation: 1s .3s fadeInDown both;
    animation: 1s .3s fadeInDown both;
}

.home-2-banner .slick-active .slider-right .single-image-1 {
    -webkit-animation: 1s .3s fadeInRight both;
    animation: 1s .3s fadeInRight both;
}

.home-2-banner .slick-active .slider-right .single-image-2 {
    -webkit-animation: 1s .3s fadeInLeft both;
    animation: 1s .3s fadeInLeft both;
}

.home-2-banner .slick-dots {
    display: block;
    position: absolute;
    top: 50%;
    left: 50px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.home-2-banner .slick-dots button {
    color: #fff;
    background: transparent;
    border: none;
    margin: 4px 0;
    position: relative;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    cursor: pointer;
}

.home-2-banner .slick-dots button:before {
    position: absolute;
    top: 1px;
    left: -3px;
    content: '0';
}

.home-2-banner .slick-dots .slick-active button {
    color: var(--wb-primary-color);
    font-size: 24px;
}

.home-2-banner .slick-dots .slick-active button:before {
    top: 1px;
    left: -5px;
}

.home-2-banner .slick-dots .slick-active button:focus {
    outline: none;
}

.home-2-banner .slick-arrow.prev-arrow,
.home-2-banner .slick-arrow.next-arrow {
    position: absolute;
    z-index: 1;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    cursor: pointer;
}

.home-2-banner .slick-arrow.prev-arrow {
    left: 46%;
    bottom: 50px;
}

.home-2-banner .slick-arrow.next-arrow {
    left: 50%;
    bottom: 59px;
}

.home-3-banner {
    position: relative;
}

.home-3-banner ul {
    position: absolute;
    right: 70px;
    bottom: 200px;
}

.home-3-banner ul li {
    margin-bottom: 15px;
}

.home-3-banner ul li a {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.home-3-banner ul li a:hover {
    color: var(--wb-primary-color);
}

.home-3-banner .banner-left {
    position: relative;
}

.home-3-banner .banner-left .banner-image {
    position: relative;
    width: 520px;
    height: 1040px;
    background-image: url("../img/home-1/banner/slide-1.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.home-3-banner .banner-left .banner-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 18, 0.3);
}

.home-3-banner .banner-left .video-icon {
    position: absolute;
    top: 50%;
    right: 80px;
    z-index: 3;
}

.home-3-banner .banner-left .video-icon i {
    color: #fff;
    background: var(--wb-primary-color);
    border-radius: 50%;
    padding: 20px;
    width: 50px;
    height: 50px;
    line-height: 12px;
    text-align: center;
    -webkit-animation: animate2 3s linear infinite;
    animation: animate2 3s linear infinite;
}

.home-3-banner .banner-right {
    padding-top: 220px;
    padding-right: 140px;
}

.home-3-banner .banner-right .top-title,
.home-3-banner .banner-right .top-text {
    width: 50%;
}

.home-3-banner .banner-right .top-text {
    padding-left: 5%;
}

.home-3-banner .banner-right .item-image {
    width: 300px;
    height: 430px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.home-3-banner .banner-right .item-image.image-1 {
    background-image: url("../img/home-3/banner/item-1.png");
}

.home-3-banner .banner-right .item-image.image-2 {
    background-image: url("../img/home-3/banner/item-2.png");
}

.home-3-banner .banner-right .item-image.image-3 {
    background-image: url("../img/home-3/banner/item-3.png");
}

.home-3-banner .banner-right .item-content {
    padding: 20px 0;
    visibility: visible;
    opacity: 1;
}

.home-3-banner .banner-right .hover-state {
    width: 100%;
    height: 100%;
    background: rgba(220, 163, 120, 0.5);
    position: relative;
    text-align: center;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}

.home-3-banner .banner-right .hover-state a {
    font-weight: 400;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px 20% 30px 30px;
    background: #fff;
}

.home-3-banner .banner-right .hover-state a span {
    font-size: 25px;
    left: 8px;
    top: 3px;
    position: relative;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.home-3-banner .banner-right .single-item:hover .item-content {
    opacity: 0;
    visibility: hidden;
}

.home-3-banner .banner-right .single-item:hover .hover-state {
    opacity: 1;
    visibility: visible;
}

@-webkit-keyframes animate2 {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(220, 163, 120, 0.7), 0 0 0 0 rgba(220, 163, 120, 0.7);
        box-shadow: 0 0 0 0 rgba(220, 163, 120, 0.7), 0 0 0 0 rgba(220, 163, 120, 0.7);
    }

    40% {
        -webkit-box-shadow: 0 0 0 30px rgba(220, 163, 120, 0), 0 0 0 0 rgba(220, 163, 120, 0.7);
        box-shadow: 0 0 0 30px rgba(220, 163, 120, 0), 0 0 0 0 rgba(220, 163, 120, 0.7);
    }

    80% {
        -webkit-box-shadow: 0 0 0 30px rgba(220, 163, 120, 0), 0 0 0 30px rgba(220, 163, 120, 0);
        box-shadow: 0 0 0 30px rgba(220, 163, 120, 0), 0 0 0 30px rgba(220, 163, 120, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(220, 163, 120, 0), 0 0 0 30px rgba(220, 163, 120, 0);
        box-shadow: 0 0 0 0 rgba(220, 163, 120, 0), 0 0 0 30px rgba(220, 163, 120, 0);
    }
}

/* Collection */
.collection-area {
    position: relative;
}

.collection-area .collection-h2 {
    padding-left: 0;
}

.collection-area .collection-image {
    position: relative;
    overflow: hidden;
}

.collection-area .collection-bg {
    background-image: url("../img/home-1/collection/collection.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 530px;
    height: 600px;
    -webkit-transition: .8s;
    -o-transition: .8s;
    transition: .8s;
}

.collection-area .collection-small-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Categories */
.categories-area {
    height: 800px;
}

.categories-area .single-item {
    position: relative;
    margin-left: 45px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.categories-area .single-item .item-image {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 510px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.categories-area .single-item .item-image.cat-1 {
    background-image: url("../img/home-1/category/cat-1.png");
}

.categories-area .single-item .item-image.cat-2 {
    background-image: url("../img/home-1/category/cat-2.png");
}

.categories-area .single-item .item-image.cat-3 {
    background-image: url("../img/home-1/category/cat-3.png");
}

.categories-area .single-item .item-image.cat-4 {
    background-image: url("../img/home-1/category/cat-4.png");
}

.categories-area .single-item .item-image.cat-5 {
    background-image: url("../img/home-1/category/cat-5.png");
}

.categories-area .single-item .item-content {
    text-align: center;
    padding: 30px;
}

.categories-area .single-item.active .item-content {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
    text-align: left;
    padding: 30px 80px 30px 30px;
}

.categories-area .single-item.active .item-content p {
    font-weight: 400;
    position: relative;
}

.categories-area .single-item.active .item-content p span {
    margin-left: 10px;
    position: absolute;
    top: 5px;
    right: 26px;
}

.categories-area .single-item.active .item-image {
    width: 320px;
    height: 650px;
}

/* Discount */
.discount-area {
    overflow: hidden;
}

.discount-area .discount-image {
    position: relative;
}

.discount-area .discount-image .image-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 450px;
    height: 600px;
}

.discount-area .discount-image .image-2 {
    position: absolute;
    top: 100px;
    right: 0;
    width: 380px;
    height: 450px;
}

.discount-area .discount-image .image-3 {
    position: absolute;
    top: 250px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 700px;
    height: 600px;
}

.discount-area .discount-image .image-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


/* Video */
.video-area {
    margin-bottom: 115px;
    position: relative;
}

.video-area:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: #fff;
    z-index: 1;
}


.video-area .video-icon {
    position: absolute;
    top: 65%;
    left: 59%;
    z-index: 3;
}

.video-area .video-icon i {
    color: var(--wb-primary-color);
    background: #F4F4F4;
    border-radius: 50%;
    padding: 20px;
    width: 50px;
    height: 50px;
    line-height: 12px;
    text-align: center;
    -webkit-animation: animate 3s linear infinite;
    animation: animate 3s linear infinite;
}

.video-area .video-content a {
    margin-top: 40px;
    position: relative;
    font-size: 18px;
}

.video-area .video-content a span {
    font-size: 30px;
    position: absolute;
    top: 3px;
    right: 15px;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.video-area .video-content a:hover span {
    right: 10px;
}

@-webkit-keyframes animate {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 244, 244, 0.7), 0 0 0 0 rgba(244, 244, 244, 0.7);
        box-shadow: 0 0 0 0 rgba(244, 244, 244, 0.7), 0 0 0 0 rgba(244, 244, 244, 0.7);
    }

    40% {
        -webkit-box-shadow: 0 0 0 30px rgba(244, 244, 244, 0), 0 0 0 0 rgba(244, 244, 244, 0.7);
        box-shadow: 0 0 0 30px rgba(244, 244, 244, 0), 0 0 0 0 rgba(244, 244, 244, 0.7);
    }

    80% {
        -webkit-box-shadow: 0 0 0 30px rgba(244, 244, 244, 0), 0 0 0 30px rgba(244, 244, 244, 0);
        box-shadow: 0 0 0 30px rgba(244, 244, 244, 0), 0 0 0 30px rgba(244, 244, 244, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 244, 244, 0), 0 0 0 30px rgba(244, 244, 244, 0);
        box-shadow: 0 0 0 0 rgba(244, 244, 244, 0), 0 0 0 30px rgba(244, 244, 244, 0);
    }
}

/* Picks */
.tab-content .lost {
    display: none;
}

.tab-content .active {
    display: block;
}

.picks-area .template-btn2 {
    margin-top: 60px;
}

.single-cart-item {
    width: 98%;
    margin: auto;
    position: relative;
}

.single-cart-item .single-cart-image .item-active {
    display: block;
    right: 0;
}

.single-cart-item .single-cart-image .item-hide {
    display: none;
    right: 0;
}

.single-cart-item .single-cart-image .image-dots {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.single-cart-item .single-cart-image .image-dots .dot-01.active,
.single-cart-item .single-cart-image .image-dots .dot-02.active {
    width: 20px;
    height: 20px;
    background-color: #FF8484;
    border-radius: 50%;
    display: inline-block;
    -webkit-box-shadow: inset 0 0 0 5px #fff;
    box-shadow: inset 0 0 0 5px #fff;
}

.single-cart-item .single-cart-image .image-dots .dot-01,
.single-cart-item .single-cart-image .image-dots .dot-02 {
    width: 20px;
    height: 20px;
    background-color: #FFBB54;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    margin: 0 5px;
}

.toman {
    font-size: 14px;
    font-family: 'iranyekan-light';
}

.single-cart-item .single-cart-content {
    padding: 20px 0;
}

.single-cart-item .single-cart-content .cart-content-left ul {
    margin: 0;
    padding: 0;
}

.cart-rating li {
    display: inline-block;
}

.cart-rating li i {
    color: #FFBB54;
    cursor: pointer;
    font-size: 15px;
}

.cart-rating .diff-color i {
    color: #dddddd;
}

.single-cart-item .single-cart-content .cart-content-left h5 {
    margin: 10px 0 20px;
}

.single-cart-item .single-cart-content .cart-content-left .cart-size li {
    display: inline-block;
    margin-right: 5px;
}

.single-cart-item .single-cart-content .cart-content-left .cart-size li span {
    padding: 3px 6px;
    border: 1px solid #ddd;
    text-transform: uppercase;
    background-color: transparent;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    cursor: pointer;
}

.single-cart-item .single-cart-content .cart-content-left .cart-size li:hover span {
    color: #fff;
    background-color: var(--wb-primary-color);
    border: 1px solid transparent;
}

.single-cart-item .single-cart-content .cart-content-left .cart-size .active span {
    color: #fff;
    background-color: var(--wb-primary-color);
    border: 1px solid transparent;
}

.single-cart-item .single-cart-content .cart-content-right {
    text-align: right;
}

.current-price {
    display: block;
    color: var(--wb-primary-color);
    font-size: 20px;
    font-weight: 600;
}

.old-price {
    color: #adadad;
    position: relative;
}

.single-cart-item .single-cart-content .cart-content-right .old-price:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #adadad;
}

.single-cart-item .single-cart-button {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}

.single-cart-item .single-cart-button .cart-button {
    color: #fff;
    background-color: #222;
    padding: 12px 7px;
    border: 1px solid transparent;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 13px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    width: 100%;
    display: block;
    text-align: center;
    cursor: pointer;
}

.single-cart-item .single-cart-button .cart-button:hover {
    background-color: var(--wb-primary-color);
    color: #fff;
}

.single-cart-item .single-cart-button .compare-button {
    display: inline-block;
    background-color: transparent;
    padding: 12px 24px;
    border: 1px solid #ddd;
    text-transform: capitalize;
    font-weight: 500;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.single-cart-item .single-cart-button .compare-button:hover {
    color: #fff;
    background-color: var(--wb-primary-color);
    border: 1px solid transparent;
}

.single-cart-item .love-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #aaa;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    z-index: 1;
}

.single-cart-item .love-icon:hover {
    color: var(--wb-primary-color);
}

.single-cart-item.active .single-cart-button {
    opacity: 1;
    visibility: visible;
}

.shop-page .single-cart-item,
.cart-page .single-cart-item {
    margin-bottom: 50px;
}

/* Client */
.client-area {
    position: relative;
}

.client-area:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: var(--wb-primary-color);
}

.client-area:after {
    content: '';
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/home-1/client/client-bg.png");
    background-repeat: no-repeat;
}

.client-area .client-slider {
    padding-bottom: 40px;
    margin-right: 100px;
    position: relative;
}

.client-area .client-slider .single-slide {
    padding: 20px;
    background: #fff;
    width: 90%;
    margin: 25px 0 40px;
}

.client-area .client-slider .single-slide .diff-h6 {
    color: #C3BFBF;
}

.client-area .client-slider .slide-image {
    margin-right: 30px;
}

.client-area .client-slider .slide-bottom {
    margin-top: 30px;
}

.client-area .section-title {
    margin-bottom: 0 !important;
}

.client-slider .owl-nav .owl-prev {
    position: absolute;
    bottom: 50%;
    right: -100px;
}

.client-slider .owl-nav .owl-next {
    position: absolute;
    bottom: 55%;
    right: -100px;
}

.client-area .owl-carousel .owl-nav.disabled {
    display: block !important;
}

/* Services */
.services-area {
    text-align: center;
}

.services-area .single-item {
    padding: 0 20px;
}

/* Gallery */
.gallery-area .single-item {
    position: relative;
    padding: 50px 0 40px;
    overflow: hidden;
    background-color: #f6f6f6;
}

.gallery-area .single-item .item-image img {
    width: 80%;
    height: auto;
    display: block;
    margin: auto;
}

.gallery-area .single-item .item-content {
    margin-top: 30px;
}

.gallery-area .single-item .item-content h6 {
    color: #ADABAB;
}

.gallery-area .single-item .hover-state {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    opacity: 0;
    visibility: hidden;
}

.gallery-area .single-item .hover-state i {
    color: #fff;
    background-color: var(--wb-primary-color);
    font-size: 24px;
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: inline-block;
}

.gallery-area .single-item .hover-state i:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.gallery-area .single-item:hover .hover-state {
    opacity: 1;
    visibility: visible;
}

/* Newsletter */
.newsletter-area {
    background-image: url("../img/home-1/newsletter/newsletter-bg.png");
    background-repeat: no-repeat;
    background-position: center right;
}

.newsletter-area h2,
.newsletter-area p {
    width: 70%;
}

.newsletter-area button {
    cursor: pointer;
}

.newsletter-area form {
    margin-top: 60px;
    position: relative;
}

.newsletter-area form input {
    width: 90%;
    border: 1px solid transparent;
    height: 80px;
}

.newsletter-area form button {
    border: 1px solid var(--wb-secondary-color);
    background: var(--wb-secondary-color);
    position: absolute;
    top: 0;
    right: 0;
    height: 80px;
}

.newsletter-area form button span {
    padding: 0 20px;
    color: #fff;
    display: inline-block;
    font-size: 50px;
}

/* Instagram */
.instagram-area .single-slide {
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    width: 100%;
    height: 450px;
}

.instagram-area .slide-1 {
    background-image: url("../img/home-1/instagram/instagram-1.png");
}

.instagram-area .slide-2 {
    background-image: url("../img/home-1/instagram/instagram-2.png");
}

.instagram-area .slide-3 {
    background-image: url("../img/home-1/instagram/instagram-3.png");
}

.instagram-area .slide-4 {
    background-image: url("../img/home-1/instagram/instagram-4.png");
}

.instagram-area .slide-5 {
    background-image: url("../img/home-1/instagram/instagram-5.png");
}

.instagram-area .slide-6 {
    background-image: url("../img/home-1/instagram/instagram-6.png");
}

/*-----------------------------
    Accordion Item
-----------------------------*/
.accordion-wrapper .card {
    border: none;
    background-color: transparent;
}

.accordion-wrapper .card+.card {
    margin-top: 0;
}

.accordion-wrapper .card .card-header {
    background-color: transparent;
    padding: 0;
    border: none;
}

.accordion-wrapper .card .card-header a {
    display: block;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    background-color: #f4f7fc;
    padding: 14px 30px;
    cursor: pointer;
    position: relative;
}

.accordion-wrapper .card .card-header a[aria-expanded="false"]:after {
    content: "\f00d";
}

.accordion-wrapper .card .card-body {
    background-color: #f4f7fc;
    padding: 0 30px 20px;
}

/*---------------------------------------
    ## Back Top
---------------------------------------*/
.back-to-top {
    position: fixed;
    right: 50px;
    bottom: 130px;
    color: var(--heading-color);
    text-align: center;
    z-index: 99;
    font-size: 16px;
    cursor: pointer;
    display: none;
}

/*-------------------------
    ## Preloader Css
---------------------------*/
.pre-wrap {
    position: fixed;
    content: '';
    -webkit-transform: translate(-100%, -240%);
    -ms-transform: translate(-100%, -240%);
    transform: translate(-100%, -240%);
    font-size: 62px;
}

.preloader-inner {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    background-color: rgba(2, 48, 71, 0.8);
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.preloader-inner .cancel-preloader {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.preloader-inner .cancel-preloader a {
    background-color: #fff;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--wb-primary-color);
    width: 200px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 30px;
    display: block;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.preloader-inner .cancel-preloader a:hover {
    background-color: var(--wb-secondary-color);
    color: #fff;
}

.spinner {
    margin: 120px auto;
    width: 60px;
    height: 60px;
    position: relative;
    text-align: center;
    -webkit-animation: sk-rotate 2.0s infinite linear;
    animation: sk-rotate 2.0s infinite linear;
}

.dot1,
.dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: var(--wb-primary-color);
    border-radius: 100%;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.dot2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-rotate {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes sk-rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes sk-bounce {

    0%,
    100% {
        -webkit-transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
    }
}

@keyframes sk-bounce {

    0%,
    100% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }

    50% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

/*----------------------------------------
  ## Search Popup
----------------------------------------*/
.search-popup.active .search-form {
    visibility: visible;
    opacity: 1;
}

.search-popup .search-form {
    min-width: 600px;
    position: absolute;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    visibility: hidden;
    opacity: 0;
    -ms-transform: translate(-50%, -50%);
    /* IE 9 */
    -webkit-transform: translate(-50%, -50%);
    /* Chrome, Safari, Opera */
    transform: translate(-50%, -50%);
    z-index: 9;
}

.search-popup .search-form .form-group .form-control {
    border: none;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    height: 54px;
    padding: 0 100px 0 30px;
}

.search-popup .search-form .submit-btn {
    color: #fff;
    border: 1px solid var(--wb-primary-color);
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 54px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: var(--wb-primary-color);
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    padding: 0;
    text-align: center;
    cursor: pointer;
}

.search-popup .search-form .submit-btn:hover {
    background-color: var(--wb-secondary-color);
    border: 1px solid var(--wb-secondary-color);
}

.body-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9;
    content: '';
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==), progress;
}

.body-overlay.active {
    visibility: visible;
    opacity: 1;
}

/*---------------------------------------
    ## Button
---------------------------------------*/
.template-btn {
    font-size: 18px;
    font-weight: 400;
    padding: 12px 48px;
    border: 1px solid var(--heading-color);
    display: inline-block;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.template-btn:hover {
    color: #fff;
    background-color: var(--wb-primary-color);
    border: 1px solid transparent;
}

.template-btn.tb-2 {
    color: #fff;
    background-color: var(--wb-primary-color);
    border: 1px solid transparent;
}

.template-btn.tb-2:hover {
    color: var(--heading-color);
    background-color: transparent;
    border: 1px solid var(--heading-color);
}

.template-btn2 {
    font-size: 14px;
    font-weight: 400;
    padding: 12px 80px 12px 24px;
    display: inline-block;
    color: #fff;
    background-color: #000;
    text-transform: capitalize;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    position: relative;
}

.template-btn2 span {
    margin-left: 40px;
    position: absolute;
    top: 14px;
    right: 26px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.template-btn2:hover {
    color: #fff;
    background-color: var(--wb-primary-color);
}

.template-btn2:hover span {
    right: 22px;
}

.template-btn3 {
    font-size: 18px;
    font-weight: 400;
    padding: 12px 50px 12px 0;
    display: inline-block;
    position: relative;
}

.template-btn3 img {
    position: absolute;
    top: 20px;
    right: 5px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.template-btn3:hover img {
    right: 0;
}

.picks-tab {
    margin-bottom: 40px;
}

.picks-tab ul li {
    display: inline;
    margin: 0 10px;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 24px;
    display: inline-block;
    background-color: #f2f2f2;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.picks-tab ul .active {
    color: #fff;
    background-color: var(--wb-primary-color);
}

.floating-icon {
    display: none;
    right: 2%;
    margin-top: 0;
    border-radius: 5px;
    background: var(--wb-secondary-color);
    z-index: 9;
    text-align: center;
    color: #000;
    padding: 10px 0px;
    float: right;
    position: -webkit-sticky;
    position: sticky;
    top: 6vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.floating-icon__is {
    padding: 8px 12px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 18px;
}

.floating-icon__is:hover {
    cursor: pointer;
    color: #fff;
}

.floating-icon.active {
    right: 32%;
}

.info-popup {
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: rgba(0, 0, 0, 0.54);
    position: fixed;
    opacity: 0;
}

.info-popup.active {
    opacity: 1;
    z-index: 9999;
}

.info-popup-content {
    margin: auto;
    width: 50%;
    position: relative;
}

.info-popup-content__img {
    width: 100%;
    height: 100%;
}

.info-popup-content__img--one {
    background-image: url(../img/popup-info.html);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.info-popup-content__img--two {
    background-image: url(../img/blog-bg.html);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.info-popup-content__img--three {
    background-image: url(../img/slide-three.html);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.info-popup-content__text {
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
    background: #fff;
}

.info-popup-content__text-header {
    margin-bottom: 30px;
}

.info-popup-content__text-body {
    margin-bottom: 30px;
}

.info-popup-content__text-body .divide {
    width: 50px;
    height: 1px;
    background: var(--paragraph-color);
    display: inline-block;
}

.info-popup-content__text-is {
    display: block;
    text-transform: capitalize;
}

.info-popup-content__title {
    margin-top: 0;
    margin-bottom: 0;
}

.info-popup-content_close {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    background: var(--wb-primary-color);
    display: inline-block;
    border-radius: 30px;
    border: none;
    color: white;
    opacity: 1;
    z-index: 1;
}

.info-popup-content_close:hover {
    cursor: pointer;
}

.info-popup-content_close span {
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.location-popup {
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: rgba(0, 0, 0, 0.54);
    position: fixed;
    opacity: 0;
}

.location-popup.active {
    opacity: 1;
    z-index: 9999;
}

.location-popup-content {
    margin: auto;
    width: 50%;
    position: relative;
}

.location-popup-content__img {
    width: 100%;
    height: 100%;
}

.location-popup-content__img--one {
    background-image: url(../img/popup-info.html);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.location-popup-content__img--two {
    background-image: url(../img/blog-bg.html);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.location-popup-content__img--three {
    background-image: url(../img/slide-three.html);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.location-popup-content__text {
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
    background: #fff;
}

.location-popup-content__text-header {
    margin-bottom: 30px;
}

.location-popup-content__text-body {
    margin-bottom: 30px;
}

.location-popup-content__text-body .divide {
    width: 50px;
    height: 1px;
    background: var(--paragraph-color);
    display: inline-block;
}

.location-popup-content__text-is {
    display: block;
    text-transform: capitalize;
}

.location-popup-content__title {
    margin-top: 0;
    margin-bottom: 0;
}

.location-popup-content_close {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    background: var(--wb-primary-color);
    display: inline-block;
    border-radius: 30px;
    border: none;
    color: white;
    opacity: 1;
    z-index: 1;
}

.location-popup-content_close:hover {
    cursor: pointer;
}

.location-popup-content_close span {
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.location-popup #map {
    height: 100%;
}

.location-popup .template-btn {
    padding: 7px 24px;
}

.message-popup {
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: rgba(0, 0, 0, 0.54);
    position: fixed;
    opacity: 0;
}

.message-popup.active {
    opacity: 1;
    z-index: 9999;
}

.message-popup-content {
    margin: auto;
    width: 50%;
    position: relative;
}

.message-popup-content__img {
    width: 100%;
    height: 100%;
}

.message-popup-content__img--one {
    background-image: url(../img/popup-info.html);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.message-popup-content__img--two {
    background-image: url(../img/blog-bg.html);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.message-popup-content__img--three {
    background-image: url(../img/slide-three.html);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.message-popup-content__text {
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
    background: #fff;
    padding-right: 40px;
}

.message-popup-content__text-header {
    margin-bottom: 30px;
}

.message-popup-content__text-body {
    margin-bottom: 30px;
}

.message-popup-content__text-body .divide {
    width: 50px;
    height: 1px;
    background: var(--paragraph-color);
    display: inline-block;
}

.message-popup-content__text-is {
    display: block;
    text-transform: capitalize;
}

.message-popup-content__title {
    margin-top: 0;
    margin-bottom: 0;
}

.message-popup-content_close {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    background: var(--wb-primary-color);
    display: inline-block;
    border-radius: 30px;
    border: none;
    color: white;
    opacity: 1;
    z-index: 1;
}

.message-popup-content_close:hover {
    cursor: pointer;
}

.message-popup-content_close span {
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.message-popup textarea,
.message-popup input {
    width: 100%;
    border: 1px solid var(--wb-secondary-color);
    padding: 15px 20px;
}

.message-popup textarea:focus,
.message-popup input:focus {
    border: 1px solid var(--wb-secondary-color);
}

.message-popup textarea {
    height: 100px;
    margin: 24px 0 16px;
}

.message-popup .template-btn {
    padding: 7px 24px;
    margin: auto;
}

/* About Page */
.about-page .instagram-area {
    padding-top: 110px;
}

.about-page .nav-absolute.navbar-area {
    position: inherit;
    padding: 0;
}

.about-page .about-story .story-image .image-bg {
    background-image: url("../img/about-page/story/story.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 471px;
    height: 682px;
    margin-top: -150px;
    float: right;
}

.about-page .about-service .service-icon {
    margin-right: 40px;
}

.about-page .about-service a {
    margin-top: 40px;
    position: relative;
    font-size: 18px;
    text-transform: capitalize;
}

.about-page .about-service a span {
    font-size: 30px;
    position: absolute;
    top: 3px;
    right: 15px;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.about-page .about-service a:hover span {
    right: 10px;
}

.about-page .about-team h4 {
    line-height: 28px;
}

.about-page .about-team h6 {
    color: #888888;
}

.about-page .about-team .slider-image {
    width: 95%;
}

.about-page .about-team .slider-image .image-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 850px;
}

.about-page .about-team .slider-image .image-1 {
    background-image: url("../img/about-page/team/slider-1.png");
}

.about-page .about-team .slider-image .image-2 {
    background-image: url("../img/about-page/team/nav-2.png");
}

.about-page .about-team .slider-image .image-3 {
    background-image: url("../img/about-page/team/nav-3.png");
}

.about-page .about-team .slider-image .image-4 {
    background-image: url("../img/about-page/team/nav-4.png");
}

.about-page .about-team .team-nav {
    margin-top: -260px;
}

.about-page .about-team .nav-image {
    cursor: pointer;
}

.about-page .about-team .nav-image .image-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 90%;
    height: 260px;
}

.about-page .about-team .nav-image .image-1 {
    background-image: url("../img/about-page/team/nav-1.png");
}

.about-page .about-team .nav-image .image-2 {
    background-image: url("../img/about-page/team/nav-2.png");
}

.about-page .about-team .nav-image .image-3 {
    background-image: url("../img/about-page/team/nav-3.png");
}

.about-page .about-team .nav-image .image-4 {
    background-image: url("../img/about-page/team/nav-4.png");
}

.about-page .about-ratings {
    padding-bottom: 60px;
}

.about-page .about-ratings .single-item {
    padding: 0 50px;
    margin-bottom: 50px;
}

.about-page .about-ratings .ratings-right {
    padding-top: 50px;
}

.about-page .about-ratings .item-1,
.about-page .about-ratings .item-3 {
    margin-top: -50px;
}

.about-page .about-ratings a {
    margin-top: 40px;
    position: relative;
    font-size: 18px;
    text-transform: capitalize;
}

.about-page .about-ratings a span {
    font-size: 30px;
    position: absolute;
    top: 3px;
    right: 15px;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.about-page .about-ratings a:hover span {
    right: 10px;
}

.about-page .news-section .news-left {
    padding-right: 30%;
}

.about-page .news-section .news-left p {
    margin: 50px 0;
}

.about-page .news-section .news-image .image-bg {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    width: 100%;
    height: 590px;
}

.about-page .news-section .news-right {
    padding-left: 30%;
}

.about-page .news-section .news-right span {
    margin-top: 30px;
    display: block;
}

.rating-circle {
    margin: auto;
    width: 150px;
    height: 150px;
    background: #f7f7f7;
    border-radius: 50%;
    position: relative;
    margin-bottom: 20px;
}

.rating-circle .circle-wave {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--wb-primary-color);
    border-radius: 50%;
    overflow: hidden;
}

.rating-circle .circle-wave:before,
.rating-circle .circle-wave:after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -75%);
    -ms-transform: translate(-50%, -75%);
    transform: translate(-50%, -75%);
}

.rating-circle .circle-wave:before {
    border-radius: 45%;
    background: #f4f4f4;
    -webkit-animation: naeem 5s linear infinite;
    animation: naeem 5s linear infinite;
}

.rating-circle .circle-wave:after {
    border-radius: 40%;
    background: rgba(244, 244, 244, 0.5);
    -webkit-animation: naeem 10s linear infinite;
    animation: naeem 10s linear infinite;
}

@-webkit-keyframes naeem {
    0% {
        -webkit-transform: translate(-50%, -75%) rotate(0deg);
        transform: translate(-50%, -75%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -75%) rotate(360deg);
        transform: translate(-50%, -75%) rotate(360deg);
    }
}

@keyframes naeem {
    0% {
        -webkit-transform: translate(-50%, -75%) rotate(0deg);
        transform: translate(-50%, -75%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -75%) rotate(360deg);
        transform: translate(-50%, -75%) rotate(360deg);
    }
}

.rating-circle span {
    color: #fff;
    font-size: 20px;
    position: absolute;
    bottom: 25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

/* Blog Single Page */
.blog-single-page .instagram-area {
    padding-top: 110px;
}

.blog-single-page .nav-absolute.navbar-area {
    position: inherit;
    padding: 0;
}

.blog-single-page .blog-single-content .blog-single-image {
    width: 93%;
    position: -webkit-sticky;
    position: sticky;
    top: 6vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.blog-single-page .blog-single-content .blog-single-image img {
    width: 100%;
    height: auto;
}

.blog-single-page .blog-single-content .section-title.section-title-style {
    position: relative;
}

.blog-single-page .blog-single-content .section-title.section-title-style:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -30px;
    width: 100%;
    height: 2px;
    background: #e9e9e9;
}

.blog-single-page .blog-single-content .banner-content {
    padding: 105px 0 30px;
}

.blog-single-page .blog-single-content .diffrent-style {
    position: relative;
    font-size: 22px;
    font-weight: 400;
}

.blog-single-page .blog-single-content .diffrent-style:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--wb-primary-color);
}

.blog-single-page .blog-single-content .content-bottom i {
    font-size: 20px;
    margin-right: 10px;
}

.blog-single-page .blog-single-content .content-bottom .fa-heart {
    color: #D75A4A;
}

.blog-single-page .blog-single-reviews .single-review {
    margin-bottom: 80px;
}

.blog-single-page .blog-single-reviews .review-image {
    width: 15%;
}

.blog-single-page .blog-single-reviews .review-content {
    width: 85%;
}

.blog-single-page .blog-single-reviews .review-content i.dif-color {
    color: #ADABAB;
}

.blog-single-page .blog-single-reviews .review-content li {
    display: inline;
    margin-right: 10px;
}

.blog-single-page .blog-single-reviews .reviwer-dot i {
    color: #ADABAB;
    font-size: 20px;
    cursor: pointer;
}

.blog-single-page .blog-single-reviews .review-bottom .fa-heart {
    color: #D75A4A;
}

.blog-single-page .blog-single-reviews .review-bottom .common-span {}

.blog-single-page .blog-single-reviews .review-bottom .bottom-right {
    margin-right: 50px;
}

.blog-single-page .blog-single-reviews .review-bottom .bottom-right i {
    font-size: 20px;
    margin-left: 24px;
    cursor: pointer;
}

.blog-single-page .blog-single-comment textarea {
    width: 100%;
    border: 1px solid var(--wb-secondary-color);
    padding: 40px;
}

.blog-single-page .blog-single-comment button {
    cursor: pointer;
}

.blog-single-page .blog-single-comment .template-btn2 {
    background: var(--wb-primary-color);
    border: 1px solid transparent;
}

.blog-single-page .blog-single-comment .template-btn2:hover {
    background: var(--wb-secondary-color);
}

.blog-single-page .blog-single-post {
    margin-top: 70px;
}

.blog-single-page .blog-single-post .post-image {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 415px;
    height: 590px;
}

.blog-single-page .blog-single-post .post-image:hover .hover-state {
    opacity: 1;
    visibility: visible;
}

.blog-single-page .blog-single-post .post-image .hover-state {
    width: 100%;
    height: 100%;
    background: rgba(220, 163, 120, 0.4);
    position: relative;
    text-align: center;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    opacity: 0;
    visibility: hidden;
}

.blog-single-page .blog-single-post .post-image .hover-state a {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.blog-single-page .blog-single-post .post-image-1 {
    background-image: url("../img/single-blog/post-1.png");
}

.blog-single-page .blog-single-post .post-image-2 {
    background-image: url("../img/single-blog/post-2.png");
}

/* Returns Page */
.returns-page .nav-absolute.navbar-area {
    position: inherit;
    padding: 0;
}

.returns-page .returns-banner {
    max-width: 1670px;
    background-image: url("../img/returns-page/banner-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: auto;
}

.returns-page .returns-banner .banner-title {
    padding: 150px 0;
}

.returns-page .returns-banner .banner-title h1 {
    color: #fff;
}

.returns-page .returns-content .single-content {
    padding: 0 20%;
}

.returns-page .returns-content .single-content p {
    margin: 20px 0 30px;
}

.returns-page .returns-content .template-btn2 {
    width: 300px;
    text-align: left;
}

/* Under Construction Page */
.under-construction-banner {
    height: 100vh;
    background-color: #ffdec6;
    text-align: center;
    position: relative;
}

.under-construction-banner .content-404 img {
    display: block;
    max-width: 50%;
    height: auto;
    margin: auto;
}

.under-construction-banner .content-404 span {
    display: block;
    font-size: 200px;
    line-height: 150px;
    font-weight: 700;
    display: none;
}

.under-construction-banner .content-404 a {
    display: inline-block;
    margin-top: 40px;
    color: #fff;
    background-color: var(--heading-color);
    border: none;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    text-transform: capitalize;
    padding: 15px 30px;
}

.under-construction-banner .content-404 a:hover {
    background-color: var(--wb-primary-color);
}

/* PopUp Page */
.promotion-popup {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    position: fixed;
    z-index: 9990;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    /* Hide the browser's default checkbox */
    /* Create a custom checkbox */
    /* On mouse-over, add a grey background color */
    /* When the checkbox is checked, add a blue background */
    /* Create the checkmark/indicator (hidden when not checked) */
    /* Show the checkmark when checked */
    /* Style the checkmark/indicator */
}

.promotion-popup.active {
    visibility: visible;
    opacity: 1;
}

.promotion-popup .modal-image {
    background-image: url("../img/modal-page/modal-image.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 550px;
}

.promotion-popup .modal-right {
    background: #fff;
    width: 100%;
    height: 550px;
    padding: 100px 0 0;
    position: relative;
}

.promotion-popup .modal-custom-margin {
    padding: 220px 0;
}

.promotion-popup label {
    position: relative;
}

.promotion-popup label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.promotion-popup .checkmark {
    position: absolute;
    top: 0;
    left: -25%;
    height: 20px;
    width: 20px;
    background-color: #ACACAC;
    border-radius: 50%;
}

.promotion-popup form {
    display: block;
    position: relative;
    margin-bottom: 20px;
}

.promotion-popup form input {
    width: 60%;
    padding: 12px 24px;
    font-weight: 400;
    border: 1px solid var(--wb-primary-color);
    display: inline-block;
    background-color: var(--wb-primary-color);
}

.promotion-popup form input:focus {
    border: 1px solid var(--wb-primary-color);
}

.promotion-popup form button {
    border: 1px solid var(--wb-primary-color);
    background: var(--wb-primary-color);
    position: absolute;
    top: 0;
    right: 20%;
}

.promotion-popup form button span {
    padding: 1px 20px;
    color: #000;
    display: inline-block;
    font-size: 30px;
    cursor: pointer;
}

.promotion-popup form ::-webkit-input-placeholder {
    color: #000;
    opacity: 1;
    /* Firefox */
}

.promotion-popup form :-ms-input-placeholder {
    color: #000;
    opacity: 1;
    /* Firefox */
}

.promotion-popup form ::-ms-input-placeholder {
    color: #000;
    opacity: 1;
    /* Firefox */
}

.promotion-popup form ::placeholder {
    color: #000;
    opacity: 1;
    /* Firefox */
}

.promotion-popup form :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #000;
}

.promotion-popup form ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #000;
}

.promotion-popup label:hover input~.checkmark {
    background-color: #ccc;
}

.promotion-popup label input:checked~.checkmark {
    background-color: var(--wb-primary-color);
}

.promotion-popup .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.promotion-popup label input:checked~.checkmark:after {
    display: block;
}

.promotion-popup label .checkmark:after {
    left: 8px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cart-popup {
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    position: fixed;
    z-index: 9999;
    width: 30%;
    height: 100%;
    right: -100%;
    top: 0;
}

.cart-popup.active {
    right: 0;
}

.cart-popup .cart-content {
    background-color: #fff;
    padding: 50px 50px;
    height: 100%;
}

.cart-popup .cart-content .cross-icon {
    right: 50px;
}

.cart-popup .cart-content .cart-title h6 {
    color: #ACACAC;
}

.cart-popup .cart-content .item-image {
    width: 80px;
    height: 100px;
    background: #F4F4F4;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50px 60px;
    margin-right: 40px;
}

.cart-popup .cart-content .image-1 {
    background-image: url("../img/cart-popup-page/cart-1.png");
}

.cart-popup .cart-content .image-2 {
    background-image: url("../img/cart-popup-page/cart-2.png");
}

.cart-popup .cart-content .image-3 {
    background-image: url("../img/cart-popup-page/cart-3.png");
}

.cart-popup .cart-content .item-icon {
    margin-left: 50px;
    margin-top: -10px;
}

.cart-popup .cart-content .item-icon i {
    color: #ACACAC;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    cursor: pointer;
}

.cart-popup .cart-content .item-icon i:hover {
    color: #000;
}

.cart-popup .cart-content .total-price {
    margin-top: 70px;
}

.cart-popup .cart-content .total-price h4 {
    color: #ACACAC;
    line-height: 20px;
}

.cart-popup .cart-content .template-btn2 {
    width: 100%;
    padding: 20px 30px;
}

.cart-popup .cart-content .template-btn2 span {
    font-size: 27px;
}

.cart-popup .cart-content .single-item {
    display: none;
}

.live-chat-popup {
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    position: fixed;
    z-index: 9999;
    width: 30%;
    height: 100%;
    right: -100%;
    top: 0;
}

.live-chat-popup.active {
    right: 0;
}

.live-chat-popup .live-chat-content {
    background-color: #fff;
    height: 100%;
    padding-top: 100px;
    text-align: center;
}

.live-chat-popup .live-chat-content .cross-icon {
    right: 50px;
}

.live-chat-popup .live-chat-content .all-chat {
    margin-top: 100px;
}

.live-chat-popup .live-chat-content .overlay-image {
    background-position: top;
    width: 310px;
    height: 170px;
    margin: auto;
}

.live-chat-popup .live-chat-content .image-1 {
    background-image: url("../img/live-chat-page/chat-1.png");
}

.live-chat-popup .live-chat-content .image-2 {
    background-image: url("../img/live-chat-page/chat-2.png");
}

.live-chat-popup .live-chat-content .image-3 {
    background-image: url("../img/live-chat-page/chat-3.png");
}

.live-chat-popup .live-chat-content .hover-state p {
    color: #fff;
    font-weight: 400;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
}

.live-chat-popup .live-chat-content .hover-state p span {
    font-size: 14px;
    font-weight: 300;
}

.live-chat-popup .live-chat-content .single-chat {
    cursor: pointer;
}

.live-chat-popup .live-chat-content-2 {
    background-color: #fff;
    height: 100%;
}

.live-chat-popup .live-chat-content-2 .live-chat-content-2-top {
    padding: 100px;
}

.live-chat-popup .live-chat-content-2 .live-chat-content-2-top .overlay-image {
    background-position: top;
    width: 110px;
    height: 160px;
}

.live-chat-popup .live-chat-content-2 .cross-icon {
    right: 50px;
}

.live-chat-popup .live-chat-content-2 .image-1 {
    background-image: url("../img/live-chat-page/chat-1.png");
}

.live-chat-popup .live-chat-content-2 .image-2 {
    background-image: url("../img/live-chat-page/chat-2.png");
}

.live-chat-popup .live-chat-content-2 .image-3 {
    background-image: url("../img/live-chat-page/chat-3.png");
}

.live-chat-popup .live-chat-content-2 .all-chat {
    margin-top: 50px;
}

.live-chat-popup .live-chat-content-2 .live-chat-box {
    background: var(--wb-primary-color);
    width: 100%;
    height: 100%;
    padding: 40px;
}

.live-chat-popup .live-chat-content-2 .live-chat-box p.p-white {
    color: #fff;
    font-weight: 400;
}

.live-chat-popup .live-chat-content-2 .live-chat-box p.message-name {
    font-weight: 400;
}

.live-chat-popup .live-chat-content-2 .live-chat-box p.message-date {
    font-size: 14px;
}

.live-chat-popup .live-chat-content-2 .live-chat-box input[type="text"] {
    width: 50%;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
}

.live-chat-popup .live-chat-content-2 .live-chat-box .submit-text {
    font-size: 14px;
    color: #fff;
}

.live-chat-popup .live-chat-content-2 .live-chat-box input[type="email"] {
    width: 90%;
    border: none;
    padding: 12px 15% 12px 40px;
    border-radius: 50px;
}

.live-chat-popup .live-chat-content-2 .live-chat-box .search-button {
    padding: 8px;
    font-size: 12px;
    background: var(--wb-primary-color);
    border: none;
    margin-left: -10%;
    border-radius: 50%;
    line-height: 13px;
    cursor: pointer;
    text-align: center;
}

.live-chat-popup .live-chat-content-2 .live-chat-box .search-button i {
    color: #fff;
}

.live-chat-popup .part-active {
    display: block;
}

.live-chat-popup .part-hide {
    display: none;
}

.login-popup {
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    position: fixed;
    z-index: 9999;
    width: 30%;
    height: 100%;
    right: -100%;
    top: 0;
}

.login-popup.active {
    right: 0;
}

.login-popup .login-content {
    padding: 100px 50px 30px;
    background-color: #fff;
    height: 100%;
}

.login-popup .login-content form {
    margin-top: 150px;
}

.login-popup .login-content form input,
.login-popup .login-content form input:focus {
    color: var(--heading-color);
    padding: 20px;
    border-radius: 0px;
    border: 1px solid #707070;
    border-left: none;
}

.login-popup .login-content form .input-group-text {
    background: #fff;
    border: 1px solid #707070;
    border-radius: 0px;
    padding-left: 24px;
}

.login-popup .login-content form a {
    font-weight: 400;
    color: #ACACAC;
}

.login-popup .login-content form a:hover {
    color: #000;
}

.login-popup .login-content form button {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
}

.login-popup .login-content form button span {
    font-size: 27px;
}

.login-popup .login-content .login-bottom {
    margin-top: 200px;
}

.login-popup .login-content .login-bottom p {
    font-weight: 400;
}

.login-popup .login-content .login-bottom p a {
    color: #ACACAC;
}

.login-popup .login-content .login-bottom p a:hover {
    color: #000;
}

.login-popup .signup-content {
    padding: 50px 50px 20px;
    background-color: #fff;
    height: 100%;
}

.login-popup .signup-content .template-btn2.on2 {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    margin-top: 24px;
}

.login-popup .signup-content .login-bottom {
    margin-top: 60px;
}

.login-popup .signup-content form {
    margin-top: 50px;
}

.login-popup .signup-content form label {
    display: inline;
}

.login-popup .signup-content input,
.login-popup .signup-content input:focus {
    color: var(--heading-color);
    padding: 20px;
    border-radius: 0px;
    border: 1px solid #707070;
    border-left: none;
}

.login-popup .signup-content .input-group-text {
    background: #fff;
    border: 1px solid #707070;
    border-radius: 0px;
    padding-left: 24px;
}

.login-popup .signup-content a {
    font-weight: 400;
    color: #ACACAC;
}

.login-popup .signup-content a:hover {
    color: #000;
}

.login-popup .signup-content button {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
}

.login-popup .signup-content button span {
    font-size: 27px;
}

.login-popup .forgot-password-content {
    padding: 100px 50px 30px;
    background-color: #fff;
    height: 100%;
}

.login-popup .forgot-password-content form {
    margin-top: 150px;
}

.login-popup .forgot-password-content form input,
.login-popup .forgot-password-content form input:focus {
    color: var(--heading-color);
    padding: 20px;
    border-radius: 0px;
    border: 1px solid #707070;
    border-left: none;
}

.login-popup .forgot-password-content form .input-group-text {
    background: #fff;
    border: 1px solid #707070;
    border-radius: 0px;
    padding-left: 24px;
}

.login-popup .forgot-password-content form button {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
}

.login-popup .forgot-password-content form button span {
    font-size: 27px;
}

.login-popup .forgot-password-content .forgot-password-bottom p {
    font-weight: 400;
    font-size: 14px;
    color: var(--wb-secondary-color);
}

.login-popup .part-active {
    display: block;
}

.login-popup .part-hide {
    display: none;
}

/* FAQ Page */
.faq-page .nav-absolute.navbar-area {
    position: inherit;
    padding: 0;
}

.faq-page .nav-absolute.navbar-area .nav-right-content li {
    margin: 0 10px;
}

.faq-page .nav-absolute.navbar-area select {
    border: none;
    font-size: 16px;
    color: var(--paragraph-color);
    font-weight: 300;
}

.faq-page .nav-absolute.navbar-area .user-image img {
    width: 40px;
    height: 40px;
}

.faq-page .accordion-area {
    background-image: url("../img/faq-page/faq-bg.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding-bottom: 120px;
    background-attachment: fixed;
}

.faq-page .accordion-area .help-padding {
    padding-top: 120px;
}

.faq-page .accordion-area .help-padding h1 {
    color: #fff;
}

.faq-page .accordion-area form {
    margin-top: 60px;
}

.faq-page .accordion-area form input {
    width: 700px;
    border: 1px solid transparent;
    padding: 30px;
}

.faq-page .accordion-area form button {
    border: 1px solid transparent;
    padding: 30px;
}

.faq-page .accordion-area .faq-section {
    background: #fff;
    margin-top: 120px;
    padding: 120px 0;
}

.faq-page .accordion-area .faq-section textarea {
    width: 100%;
    border: 1px solid var(--wb-secondary-color);
    padding: 40px;
}

.faq-page .accordion-area .faq-section button {
    cursor: pointer;
}

.faq-page .accordion-area .faq-section .template-btn2 {
    background: var(--wb-primary-color);
    border: 1px solid transparent;
    width: 300px;
    padding: 20px 30px;
    text-align: left;
}

.faq-page .accordion-area .faq-section .template-btn2:hover {
    background: var(--wb-secondary-color);
}

.faq-page .accordion-area .faq-section .template-btn2 span {
    padding: 8px 0;
}

.faq-page .accordion-area .faq-comment {
    margin-top: 70px;
}

/* Contact Us Page */
.contact-us-page .instagram-area {
    padding-top: 110px;
}

.contact-us-page .nav-absolute.navbar-area {
    position: inherit;
    padding: 0;
}

.contact-us-page .nav-absolute.navbar-area .nav-right-content li {
    margin: 0 10px;
}

.contact-us-page .nav-absolute.navbar-area select {
    border: none;
    font-size: 16px;
    color: var(--paragraph-color);
    font-weight: 300;
}

.contact-us-page .nav-absolute.navbar-area .user-image img {
    width: 40px;
    height: 40px;
}

.contact-us-page .contact-form-area {
    background-image: url("../img/contact-us-page/contact-bg.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding-bottom: 120px;
    background-attachment: fixed;
}


.contact-us-page .contact-form-area form input {
    margin-bottom: 40px;
}

.contact-us-page .contact-form-area form button {
    margin-top: 60px;
}

.contact-us-page .contact-form-area h6 {
    font-size: 15px;
    text-transform: capitalize;
}

.common-form .contact-bg {
    background: rgba(255, 255, 255, 0.98);
    margin-top: 50px;
    padding: 40px 0;
    overflow: hidden;
}

.common-form .contact-bg form,
.common-form .contact-bg .contact-address {
    padding: 60px 40px;
    margin: 0 40px;
}

.common-input2 h6 {
    margin-bottom: 10px;
}

.common-input2 input,
.common-input2 textarea {
    padding: 15px 20px;
    background: transparent;
    border: 1px solid #D0CBC7;
}

.contact-form-area .single-part-img img {
    width: 100%;
    height: 300px;
    display: block;
}

/* Header Page */
.header-page .nav-absolute.navbar-area {
    position: inherit;
    padding: 15px 0;
}

.header-page .header-title {
    margin: 130px 0;
}

.header-page .header-1 {
    background-image: url("../img/button-page/banner-bg.html");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.header-page .header-1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 800px;
    height: 200px;
    background-color: #fff;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
}

.header-page .header-1 .banner-title1 {
    padding: 300px 0 50px;
}

.header-page .header-2 {
    max-width: 1670px;
    background-image: url("../img/icons-page/banner-bg.html");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: auto;
    position: relative;
    z-index: 1;
}

.header-page .header-2:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(220, 163, 120, 0.4);
    z-index: -1;
}

.header-page .header-2 .banner-title {
    padding: 250px 0;
}

.header-page .header-2 .banner-title h1 {
    color: #fff;
}

.header-page .header-3 {
    position: relative;
    background-image: url("../img/modal-page/banner-bg.html");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 170px 0 200px 0;
}

.header-page .header-3:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 300px;
    background: #fff;
}

.header-page .header-3:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 300px;
    background: #fff;
}

.header-page .header-3 .banner-title {
    padding-left: 100px;
}

.header-page .header-4 {
    padding: 120px 0;
}

.header-page .header-4 h1 {
    background: -webkit-linear-gradient(#000 66%, #fff 34%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 10px;
}

.header-page .header-4 .banner-image {
    background-image: url("../img/pagination-page/banner-bg.html");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 220px;
    margin-top: -39px;
    z-index: -1;
    position: relative;
}

.header-page .header-5 {
    max-width: 1670px;
    background-image: url("../img/image-overlay/banner-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: auto;
}

.header-page .header-5 .banner-title {
    padding: 250px 0;
}

.header-page .header-5 .banner-title h1 {
    color: #fff;
}

.header-page .instagram-area {
    padding-top: 250px;
}

/* Form Page */
.form-page h6 {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}

.form-page .nav-absolute.navbar-area {
    position: inherit;
    padding: 0;
}

.form-page .nav-absolute.navbar-area .nav-right-content li {
    margin: 0 10px;
}

.form-page .nav-absolute.navbar-area select {
    border: none;
    font-size: 16px;
    color: var(--paragraph-color);
    font-weight: 300;
}

.form-page .nav-absolute.navbar-area .user-image img {
    width: 40px;
    height: 40px;
}

.form-page .form-banner {
    background-image: url("../img/form-page/banner-bg.html");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.form-page .form-banner:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 800px;
    height: 200px;
    background-color: #fff;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
}

.form-page .form-banner .banner-title {
    padding: 300px 0 50px;
}

.form-page .form-section {
    padding-top: 150px;
}

.form-page .common-input2 .diff-bg {
    background: #E0E0E0;
    border: 1px solid #E0E0E0;
}

.form-page .common-input2 input,
.form-page .common-input2 textarea,
.form-page .common-input2 select {
    width: 350px;
}

.form-page .form-title {
    margin-bottom: 200px;
}

.form-page .second-row input {
    height: 150px;
    padding-bottom: 120px;
}

.form-page .form-title2 {
    margin: 150px 0;
}

.form-page h6.diff-color {
    color: #E1716B;
}

.form-page input.diff-border {
    border: 1px solid #E1716B;
}

.form-page select {
    padding: 15px 20px;
    background: transparent;
    border: 1px solid #D0CBC7;
}

.form-page .input-group-text {
    margin-left: -100%;
    background: transparent;
    border: none;
}

.form-page .input-group {
    width: auto;
    position: relative;
}

.form-page .input-group i {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.form-page .instagram-area {
    padding-top: 350px;
}

/* Button Page */
.button-page .nav-absolute.navbar-area {
    position: inherit;
    padding: 0;
}

.button-page .nav-absolute.navbar-area .nav-right-content li {
    margin: 0 10px;
}

.button-page .nav-absolute.navbar-area select {
    border: none;
    font-size: 16px;
    color: var(--paragraph-color);
    font-weight: 300;
}

.button-page .nav-absolute.navbar-area .user-image img {
    width: 40px;
    height: 40px;
}

.button-page .button-banner {
    background-image: url("../img/button-page/banner-bg.html");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.button-page .button-banner:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 800px;
    height: 200px;
    background-color: #fff;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
}

.button-page .button-banner .banner-title {
    padding: 300px 0 50px;
}

.button-page .button-section {
    padding-top: 150px;
}

.button-page .button-section .template-btn2 {
    margin: 0 100px;
}

.template-btn2.on1 {
    color: #fff;
    border: 1px solid var(--wb-secondary-color);
    background: var(--wb-secondary-color);
}

.template-btn2.on1:hover {
    color: #fff;
    border: 1px solid var(--wb-primary-color);
    background: var(--wb-primary-color);
}

.template-btn2.on2 {
    color: var(--wb-secondary-color);
    border: 1px solid var(--wb-secondary-color);
    background: #fff;
}

.template-btn2.on2:hover {
    color: #fff;
    border: 1px solid var(--wb-primary-color);
    background: var(--wb-primary-color);
}

.template-btn2.on2:hover .custom-icon {
    background: #fff;
}

.template-btn2.on2:hover .custom-icon:after {
    background: #fff;
}

.template-btn2.off1 {
    color: #fff;
    border: 1px solid var(--wb-primary-color);
    background: var(--wb-primary-color);
}

.template-btn2.off1:hover {
    color: #fff;
    border: 1px solid var(--wb-secondary-color);
    background: var(--wb-secondary-color);
}

.template-btn2.off2 {
    color: #fff;
    border: 1px solid var(--wb-secondary-color);
    background: var(--wb-secondary-color);
}

.template-btn2.off2:hover {
    color: #fff;
    border: 1px solid var(--wb-primary-color);
    background: var(--wb-primary-color);
}

.template-btn2.disable1 {
    color: #fff;
    border: 1px solid #ACACAC;
    background: #ACACAC;
}

.template-btn2.disable2 {
    color: #ACACAC;
    border: 1px solid #ACACAC;
    background: #fff;
}

/* Cart Page */
.cart-page .instagram-area {
    padding-top: 50px;
}

.cart-page .cart-page-banner-bg {
    background-image: url(../img/cart-page/banner-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.cart-page .cart-banner-left {
    margin-bottom: 40px;
}

.cart-page .left-title h4 {
    color: #ACACAC;
}

.cart-page .color li {
    display: inline;
    margin-right: 30px;
}

.cart-page .color li span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.cart-page .color li .color1 {
    background: #FFD0CE;
}

.cart-page .color li .color2 {
    background: #111112;
}

.cart-page .color li .color3 {
    background: #E1716B;
}

.cart-page .color li .color4 {
    background: #FDAE43;
}

.cart-page .color .active span {
    -webkit-box-shadow: 0 0 0 10px #ECECEC;
    box-shadow: 0 0 0 10px #ECECEC;
}

.cart-page .size ul {
    padding: 0;
}

.cart-page .size li {
    display: inline;
    margin-right: 40px;
}

.cart-page .size li span {
    font-weight: 400;
}

.cart-page .quantity ul {
    padding: 0;
}

.cart-page .quantity li {
    display: inline;
    margin-right: 40px;
}

.cart-page .quantity li span {
    font-weight: 400;
}

.cart-page .quantity li i {
    cursor: pointer;
}

.cart-page .image {
    position: relative;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    width: 85px;
    height: 85px;
}

.cart-page .image:hover .hover-state {
    opacity: 1;
    visibility: visible;
}

.cart-page .image .hover-state {
    width: 100%;
    height: 100%;
    background: rgba(220, 163, 120, 0.8);
    position: relative;
    text-align: center;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    opacity: 0;
    visibility: hidden;
}

.cart-page .image .hover-state a {
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.cart-page .image-1 {
    background-image: url("../img/cart-page/banner-bg.png");
}

.cart-page .image-2 {
    background-image: url("../img/cart-page/banner-bg2.png");
}

.cart-page .image-3 {
    background-image: url("../img/cart-page/banner-bg3.png");
}

.cart-page .banner-right {
    margin-top: 20%;
}

.cart-page .banner-right .template-btn2 {
    width: 350px;
}

.cart-page .tab-accordion ul {
    padding: 0;
    margin: 0;
}

.cart-page .tab-accordion ul li {
    padding: 12px;
    text-align: center;
    margin: 0;
    margin-right: 10px;
}

.cart-page .tab-content ul {
    width: 190px;
}

.cart-page .tab-content ul li {
    position: relative;
}

.cart-page .tab-content ul li:before {
    content: '';
    position: absolute;
    top: 10px;
    left: -30px;
    width: 7px;
    height: 7px;
    background: var(--wb-primary-color);
    border-radius: 50%;
}

.cart-page .banner-right {
    padding-left: 60px;
}

.cart-page table {
    background: var(--wb-primary-color);
}

.cart-page td,
.cart-page th {
    border: 1px solid #fff;
    text-align: center;
    color: #fff;
    font-weight: 400;
}

.cart-page th {
    padding: 20px;
}

.cart-page td {
    font-size: 14px;
    padding: 10px 20px;
}

.cart-page .tab-one-content {
    padding-right: 100px;
}

.cart-page .tab-one-content i {
    margin: 0 5px;
}

.cart-page .tab-one-content .diff-star {
    color: #ADABAB;
}

.cart-page .tab-one-content .time,
.cart-page .tab-one-content .by {
    font-size: 14px;
}

.cart-page .tab-one-content .paragraph {
    width: 60%;
}

.related-slider .owl-nav .owl-next {
    position: absolute;
    top: 40%;
    right: -100px;
}

.related-slider .owl-prev {
    display: none;
}

/* Cart Tab Page */
.cart-tab-page .nav-absolute.navbar-area {
    position: inherit;
    padding: 15px 0;
}

.cart-tab-page .tab-accordion ul {
    position: relative;
}

.cart-tab-page .tab-accordion ul:after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 2%;
    width: 95%;
    height: 2px;
    background: #ACACAC;
    z-index: -1;
}

.cart-tab-page .tab-accordion li {
    position: relative;
}

.cart-tab-page .tab-accordion li:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #CBCBCB;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    cursor: pointer;
}

.cart-tab-page .tab-accordion li.active {
    position: relative;
}

.cart-tab-page .tab-accordion li.active:after {
    background: var(--wb-primary-color);
    -webkit-box-shadow: 0 0 0 5px #F6E8DD;
    box-shadow: 0 0 0 5px #F6E8DD;
}

.cart-tab-page .cart-tab h4 {
    color: #CBCBCB;
    cursor: pointer;
}

.cart-tab-page .cart-tab .active h4 {
    color: var(--wb-primary-color);
}

.cart-tab-page .tab-accordion-text span {
    color: var(--heading-color);
    font-size: 22px;
    font-weight: 400;
}

.cart-tab-page .qty-price .right-margin {
    margin-right: 390px;
    margin-left: 290px;
}

.cart-tab-page .qty-price li {
    display: inline-block;
}

.cart-tab-page .qty-price h4 {
    color: #ACACAC;
}

.cart-tab-page .cart-box {
    background: #FBF4EF;
    padding: 60px 40px;
}

.cart-tab-page .single-cart {
    background: #fff;
    padding: 30px 40px;
}

.cart-tab-page .single-cart .cart-image {
    width: 120px;
    height: 130px;
    margin-right: 50px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80% 80%;
}

.cart-tab-page .single-cart .image1 {
    background-image: url("../img/cart-tab-page/cart-1.png");
}

.cart-tab-page .single-cart .image2 {
    background-image: url("../img/cart-tab-page/cart-2.png");
}

.cart-tab-page .single-cart .image3 {
    background-image: url("../img/cart-tab-page/cart-3.png");
}

.cart-tab-page .cart-quantity ul {
    padding: 0;
}

.cart-tab-page .cart-quantity li {
    display: inline;
    margin-right: 40px;
}

.cart-tab-page .cart-quantity li span {
    font-weight: 400;
}

.cart-tab-page .cart-quantity li i {
    cursor: pointer;
}

.cart-tab-page .cart-price {
    margin-right: 200px;
}

.cart-tab-page .single-cart2 {
    background: transparent;
    border: 1px solid #fff;
}

.cart-tab-page .cart-footer {
    padding: 0 100px 0 30px;
}

.cart-tab-page .cart-footer .left-text span {
    color: #ACACAC;
}

.cart-tab-page .cart-footer .left-text p,
.cart-tab-page .cart-footer .left-text h6 {
    font-weight: 400;
}

.cart-tab-page .template-btn2.on2 {
    background: transparent;
}

.cart-tab-page .template-btn2.on2:hover {
    background: var(--wb-primary-color);
}

.cart-tab-page .estimation-section {
    background: #FBF4EF;
    padding: 50px 100px;
}

.cart-tab-page .estimation-section .left-text .name {
    margin-right: 100px;
}

.cart-tab-page .estimation-section .left-text .name li {
    color: #ACACAC;
}

.cart-tab-page .estimation-section .left-text ul {
    padding: 0;
}

.cart-tab-page .estimation-section .left-text ul li {
    margin-bottom: 20px;
}

.cart-tab-page .estimation-section .left-text .price {
    font-weight: 400;
}

.cart-tab-page .estimation-section .template-btn2 {
    width: 250px;
    text-align: left;
    margin-top: 20px;
}

.cart-tab-page .shipping-section .cart-box {
    padding: 120px 170px;
}

.cart-tab-page .shipping-section .delivery-section {
    padding: 70px 150px 70px 200px;
    border: 1px solid var(--wb-secondary-color);
}

.cart-tab-page .shipping-section .delivery-left h4 {
    font-weight: 700;
}

.cart-tab-page .shipping-section .delivery-center {
    padding-top: 80px;
}

.cart-tab-page .shipping-section .delivery-center h4 {
    line-height: 30px;
}

.cart-tab-page .shipping-section .delivery-center li {
    margin-bottom: 40px;
    position: relative;
}

.cart-tab-page .shipping-section .delivery-center li:before {
    content: '\f192';
    font-family: "fontawesome";
    position: absolute;
    top: 5px;
    left: -40px;
    color: #707070;
    cursor: pointer;
}

.cart-tab-page .shipping-section .delivery-center .active:before {
    color: var(--wb-primary-color);
}

.cart-tab-page .shipping-section .delivery-right {
    padding-top: 80px;
}

.cart-tab-page .shipping-section .delivery-right li {
    font-weight: 700;
    margin-bottom: 40px;
}

.cart-tab-page .shipping-section .delivery-right .pt-40 {
    padding-top: 40px;
}

.cart-tab-page .shipping-section .address-section .address-left {
    width: 30%;
}

.cart-tab-page .shipping-section .address-section .address-left h4 {
    font-weight: 700;
}

.cart-tab-page .shipping-section .address-section .address-right {
    width: 70%;
    padding-top: 80px;
}

.cart-tab-page .shipping-section .address-section .address-right span {
    margin-right: 24px;
    font-size: 20px;
    color: #ACACAC;
    margin-top: -3px;
    cursor: pointer;
}

.cart-tab-page .shipping-section .address-section .address-right input {
    width: 100%;
}

.cart-tab-page .shipping-section .address-section .address-right .diffrent-input .input-small {
    width: 80%;
}

.cart-tab-page .shipping-section .address-section .address-right .diffrent-input .input-large {
    width: 100%;
}

.cart-tab-page .shipping-section .address-section .address-right .input-small2 .input-small,
.cart-tab-page .shipping-section .address-section .address-right .input-small2 h6 {
    margin-left: 20%;
}

.cart-tab-page .shipping-section .estimation-section {
    margin-top: 0;
    background: #fff;
}

.cart-tab-page .shipping-section .estimation-section .left-title h4,
.cart-tab-page .shipping-section .estimation-section .right-title h4 {
    font-weight: 700;
}

.cart-tab-page .shipping-section .estimation-section .name li,
.cart-tab-page .shipping-section .estimation-section .price li {
    color: var(--wb-secondary-color);
    font-weight: 500;
    font-size: 20px;
}

.cart-tab-page .payment-section .cart-box {
    padding: 120px 170px;
}

.cart-tab-page .payment-section .payment-content {
    padding: 70px 150px 70px 200px;
    border: 1px solid var(--wb-secondary-color);
}

.cart-tab-page .payment-section .payment-left {
    width: 35%;
}

.cart-tab-page .payment-section .payment-left h4 {
    font-weight: 700;
}

.cart-tab-page .payment-section .payment-right {
    width: 65%;
    padding-top: 80px;
}

.cart-tab-page .payment-section .payment-right .right-top span {
    margin-right: 40px;
    font-size: 20px;
    color: var(--wb-primary-color);
    margin-top: -3px;
    cursor: pointer;
}

.cart-tab-page .payment-section .credit-section span {
    margin-right: 50px;
    color: #707070;
    cursor: pointer;
}

.cart-tab-page .payment-section .credit-section input {
    width: 100%;
}

.cart-tab-page .payment-section .credit-section .diffrent-input .input-small {
    width: 70%;
}

.cart-tab-page .payment-section .credit-section .diffrent-input .input-large {
    width: 100%;
}

.cart-tab-page .payment-section .credit-section h6 a {
    color: var(--wb-primary-color);
}

.cart-tab-page .payment-section .estimation-section {
    margin-top: 0;
    background: #fff;
}

.cart-tab-page .payment-section .estimation-section .left-title h4,
.cart-tab-page .payment-section .estimation-section .right-title h4 {
    font-weight: 700;
}

.cart-tab-page .payment-section .estimation-section .name li,
.cart-tab-page .payment-section .estimation-section .price li {
    color: var(--wb-secondary-color);
    font-weight: 500;
    font-size: 20px;
}

.cart-tab-page .summary-section .summary-header h3 {
    color: var(--wb-primary-color);
}

.cart-tab-page .summary-section .summary-header p {
    font-weight: 400;
}

.cart-tab-page .summary-section .cart-box {
    padding: 120px 170px;
}

.cart-tab-page .summary-section .summary-content {
    padding: 70px 150px 70px 200px;
    border: 1px solid var(--wb-secondary-color);
}

.cart-tab-page .summary-section .common-left h4 {
    font-weight: 700;
}

.cart-tab-page .summary-section .common-right h5 {
    font-weight: 700;
}

.cart-tab-page .summary-section .common-right ul {
    padding: 0;
}

.cart-tab-page .summary-section .common-right ul li {
    margin-bottom: 7px;
}

.cart-tab-page .summary-section .pt-80 {
    padding-top: 80px;
}

.cart-tab-page .summary-section .estimation-part .price li {}

.cart-tab-page .summary-section .information-part .common-right {
    padding-right: 100px;
}

.cart-tab-page .single-picks:hover li.love,
.cart-tab-page .single-picks:hover li.love2 {
    color: #C6141A;
}

/* Coming Soon Page */
.coming-soon-page .coming-soon-banner {
    height: 100vh;
    background: url("../img/coming-soon-page/coming-soon-bg.png") no-repeat top center/cover;
    padding-top: 27%;
}

.coming-soon-page ul.countdown {
    text-align: center;
}

.coming-soon-page ul.countdown li {
    display: inline-block;
    margin: 0 10px;
    color: #fff;
}

.coming-soon-page ul.countdown li span {
    font-size: 55px;
    color: #fff;
}

.coming-soon-page ul.countdown li.seperator {
    font-size: 55px;
    line-height: 65px;
    vertical-align: top;
    color: #fff;
}

.coming-soon-page ul.countdown li p {
    font-size: 24px;
    text-transform: capitalize;
    color: #fff;
}

.coming-soon-page .coming-soon-button {
    width: 100%;
}

.coming-soon-page .coming-soon-button .template-btn2 {
    margin: 0 15px;
    padding: 12px 120px 12px 24px;
}

/* Blog Page 02 */
.blog-page .instagram-area {
    padding-top: 180px;
}

.blog-page .nav-absolute.navbar-area {
    position: inherit;
    padding: 0;
}

.blog-page .fashion-blog-title {
    position: relative;
}

.blog-page .fashion-blog-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -40px;
    width: 100%;
    height: 2px;
    background: var(--wb-secondary-color);
}

.blog-page .blog-banner {
    position: relative;
}

.blog-page .blog-banner .banner-icon {
    position: absolute;
    top: 50%;
    left: 50px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.blog-page .blog-banner .banner-icon li {
    margin-bottom: 15px;
}

.blog-page .blog-banner .banner-icon li a {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.blog-page .blog-banner .banner-icon li a:hover {
    color: var(--wb-primary-color);
}

.blog-page .blog-banner form {
    margin-top: 70px;
    margin-bottom: 30px;
}

.blog-page .blog-banner form input {
    width: 250px;
}

.blog-page .fashion-blog-slider .single-slide {
    position: relative;
}

.blog-page .fashion-blog-slider .single-slide .slide-number {
    position: absolute;
    top: 50%;
    left: -70px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 40px;
    font-weight: 500;
}

.blog-page .fashion-blog-slider .slide-image {
    position: relative;
}

.blog-page .fashion-blog-slider .slide-image .image-bg {
    width: 430px;
    height: 600px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.blog-page .fashion-blog-slider .slide-image .image-1 {
    background-image: url("../img/blog-page/slide1.png");
}

.blog-page .fashion-blog-slider .slide-image .image-2 {
    background-image: url("../img/blog-page/slide2.png");
}

.blog-page .fashion-blog-slider .slide-image .hover-state {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
    padding: 30px 15% 30px 30px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.blog-page .fashion-blog-slider .slide-image .hover-state span {
    font-size: 20px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    padding-left: 20px;
    font-weight: 700;
}

.blog-page .fashion-blog-slider .slide-image:hover .hover-state {
    opacity: 1;
    visibility: visible;
}

.blog-page .fashion-blog-slider .slide-content {
    margin-left: 80px;
    padding-right: 150px;
}

.blog-page .fashion-blog-slider .slide-content .content-bottom span {
    font-size: 16px;
    color: #ADABAB;
    line-height: 29px;
    font-weight: 400;
}

.blog-page .fashion-blog-slider .slick-list {
    padding: 0 18% 0 0;
}

/* progress bar */
.controler-wrapper {
    margin-top: 33px;
    padding-left: 10px;
}

.controler-wrapper .active-controler {
    bottom: -48px;
    position: absolute;
}

.controler-wrapper .progressbar {
    width: 40%;
    height: 5px;
    position: relative;
    top: 67px;
}

.controler-wrapper .progressbar .home-slider-progress {
    background-color: #E2E2E2;
    position: absolute;
    width: 100%;
    height: 2px;
}

.controler-wrapper .progressbar .home-slider-progress-active {
    background-color: var(--wb-primary-color);
    position: absolute;
    width: 0;
    height: 2px;
    top: 0;
}

.controler-wrapper .progressbar span.devider {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.controler-wrapper .total-controler {
    position: absolute;
    bottom: -48px;
    left: 48px;
}

.blog-page .fashion-blog-slider .slick-prev {
    display: none !important;
}

.blog-page .fashion-blog-slider .slick-arrow {
    position: absolute;
    bottom: -103px;
    left: 44%;
    cursor: pointer;
    line-height: 0;
    font-size: 20px;
}

.blog-item {
    margin-bottom: 50px;
    padding: 0 40px 40px;
    position: relative;
}

.blog-item:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    border: 5px solid #fbfbff;
    z-index: -1;
}

.blog-item .blog-img img,
.blog-item .blog-single-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-item .blog-meta ul {
    margin: 20px 0;
}

.blog-item .blog-meta ul li {
    display: inline;
    margin-right: 20px;
}

.blog-item .blog-meta ul li i {
    color: #b2b2b2;
    padding-right: 10px;
}

.blog-item h5 a {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    font-size: 16px;
    overflow: hidden;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 50px;
}

.blog-item h5 a:hover {
    color: var(--wb-primary-color);
}

.blog-item p {
    margin-top: 10px;
    margin-bottom: 0;
    overflow: hidden;
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-align: justify;
    font-size: 15px;
    line-height: 1.7;
    font-family: 'iran-yekan-light';
}

.blog-item .blog-meta-bottom li {
    display: inline-block;
    margin-right: 10px;
    text-transform: capitalize;
    padding: 7px 12px;
    border: 1px solid rgba(172, 172, 172, 0.36);
    color: #666;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    cursor: pointer;
}

.blog-item .blog-meta-bottom li:hover {
    color: var(--heading-color);
}

.blog-item .blog-meta-bottom li i {
    padding-right: 5px;
}

.blog-item .blog-meta-bottom li.with-icon {
    position: relative;
}

.blog-item .blog-meta-bottom li.with-icon .bottom-share-icon {
    width: 150px;
    position: absolute;
    top: -20px;
    left: 110%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.blog-item .blog-meta-bottom li.with-icon .bottom-share-icon li {
    display: inline-block;
    border: none;
    padding: 0;
    color: #fff;
}

.blog-item .blog-meta-bottom li.with-icon .bottom-share-icon li:hover {
    color: var(--wb-primary-color);
}

.blog-item .blog-meta-bottom li.with-icon .bottom-share-icon.active {
    opacity: 1;
    visibility: visible;
}

.blog-item .blog-audio {
    margin: 30px 0;
}

.blog-item .blog-quote {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #f6eeeb;
    font-size: 120px;
    z-index: -1;
}

.blog-item.style-02 {
    padding: 40px;
}

.blog-item.style-02:before {
    height: 100%;
}

.blog-item.style-03 {
    padding: 40px;
    background-color: #fbfbff;
    z-index: 2;
}

.blog-item.style-03:before {
    height: 100%;
    background: url("../img/blog-page/blog-item-bg.png") no-repeat center/cover;
    opacity: .2;
    border: none;
}

.blog-item.style-03 .blog-meta-bottom {
    margin-top: 40px;
}

.pagination-area {
    margin: 40px 0;
}

.pagination-area ul li {
    display: inline;
    margin: 0 5px;
    color: #999;
    border: 1px solid rgba(172, 172, 172, 0.36);
    font-size: 20px;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    display: inline-block;
    -webkit-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
    cursor: pointer;
}

.pagination-area ul li:hover {
    color: #fff;
    background-color: var(--wb-primary-color);
}

.pagination-area ul .active {
    color: #fff;
    background-color: var(--wb-primary-color);
}

ul {
    margin: 0;
    padding: 0;
}

.widget-area .widget-style {
    margin-bottom: 40px;
    padding: 30px;
    position: relative;
    border: 5px solid #fbfbff;
}

.widget-area .widget-style.style-02 {
    background-color: #fbfbff;
}

.widget-area .widget-title .widget-title-style {
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--wb-primary-color);
    margin: 20px 0;
}

.widget-area .widget-search form {
    width: 100%;
    position: relative;
    -webkit-box-shadow: 0 3px 5px 0 #eee;
    box-shadow: 0 3px 5px 0 #eee;
}

.widget-area .widget-search input {
    width: 100%;
    height: 50px;
    padding: 0 50px 0 20px;
    border: 1px solid transparent;
}

.widget-area .widget-search button {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border: 1px solid transparent;
    background-color: #fff;
    color: #666;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    cursor: pointer;
}

.widget-area .widget-search button:hover {
    color: var(--wb-primary-color);
}

.widget-area .widget-popular-post .single-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}

.widget-area .widget-popular-post .single-post .left-top {
    margin-bottom: 7px;
    display: block;
}

.widget-area .widget-popular-post .single-post .left-top i {
    color: var(--wb-primary-color);
    padding-right: 5px;
}

.widget-area .widget-popular-post .single-post h5 {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.widget-area .widget-popular-post .single-post h5:hover {
    color: var(--wb-primary-color);
}

.widget-area .widget-categories li {
    position: relative;
    padding: 10px 20px;
    display: block;
    cursor: pointer;
    text-transform: capitalize;
    margin-bottom: 20px;
    border: 1px solid rgba(172, 172, 172, 0.36);
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.widget-area .widget-categories li:hover {
    border: 1px solid transparent;
    -webkit-box-shadow: 0 3px 5px 0 #eee;
    box-shadow: 0 3px 5px 0 #eee;
}

.widget-area .widget-categories li span {
    position: absolute;
    top: 10px;
    right: 20px;
}

.widget-area .widget-social li {
    display: inline-block;
    margin-right: 10px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid rgba(172, 172, 172, 0.36);
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.widget-area .widget-social li:hover {
    color: var(--wb-primary-color);
}

.widget-area .widget-archives li {
    padding: 10px 20px;
    display: block;
    cursor: pointer;
    text-transform: capitalize;
    margin-bottom: 20px;
    border: 1px solid rgba(172, 172, 172, 0.36);
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    text-align: center;
}

.widget-area .widget-archives li:hover {
    border: 1px solid transparent;
    -webkit-box-shadow: 0 3px 5px 0 #eee;
    box-shadow: 0 3px 5px 0 #eee;
}

.widget-area .widget-instagram li {
    display: inline-block;
    width: 32%;
}

.widget-area .widget-instagram li img {
    width: 95%;
    height: auto;
    margin-bottom: 10px;
    cursor: pointer;
}

.widget-area .widget-tags li {
    display: inline-block;
    margin: 0 10px 10px 0;
}

.widget-area .widget-tags li a {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid rgba(172, 172, 172, 0.36);
    background-color: transparent;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    text-transform: capitalize;
}

.widget-area .widget-tags li a:hover {
    color: #fff;
    background-color: #000;
    border: 1px solid transparent;
}

.blog-item.single-blog-item {
    padding: 0;
}

.blog-item.single-blog-item:before {
    height: 100%;
    border: 5px solid transparent;
    z-index: -1;
}

.blog-item.single-blog-item p {
    margin: 0 0 30px;
}

.single-blog-img img {
    width: 100%;
    height: 320px;
}

.p-margin-bottom-30 {
    margin-bottom: 30px;
}

.single-blog-tag li,
.single-blog-share li {
    display: inline-block;
    margin: 0 5px 10px;
}

.single-blog-tag li.icon,
.single-blog-share li.icon {
    font-size: 18px;
    font-weight: 500;
}

.single-blog-tag li.icon i,
.single-blog-share li.icon i {
    padding-right: 5px;
}

.single-blog-tag a {
    padding: 10px 20px;
    border: 1px solid rgba(172, 172, 172, 0.36);
    background-color: transparent;
    color: #666;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    text-transform: capitalize;
    display: inline-block;
}

.single-blog-tag a:hover {
    color: #fff;
    background-color: var(--wb-primary-color);
    border: 1px solid transparent;
}

.single-blog-tag li.active a {
    color: #fff;
    background-color: var(--wb-primary-color);
    border: 1px solid transparent;
}

.single-tag-icon {
    margin: 50px 0;
}

.single-blog-share ul {
    text-align: right;
}

.single-blog-share a {
    color: #666;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.single-blog-share a:hover {
    color: var(--wb-primary-color);
}

.single-blog-share li.active a {
    color: var(--wb-primary-color);
}

.blog-item.style-04 {
    padding: 40px;
    background-color: #fbfbff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blog-item.style-04:before {
    height: 100%;
    border: 5px solid transparent;
}

.blog-item.style-04 .style-04-image {
    width: 20%;
}

.blog-item.style-04 .style-04-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-item.style-04 .style-04-content {
    width: 77%;
    padding-left: 3%;
}

.blog-item.style-04 .style-04-content span {
    color: #666;
}

.blog-item.style-04 .style-04-content p {
    margin: 10px 0;
}

.blog-comments-area .comments-list li {
    padding: 20px 0 40px;
    display: inline-block;
}

.blog-comments-area .comments-list li+li {
    border-top: 1px solid rgba(172, 172, 172, 0.36);
}

.blog-comments-area .comments-list li.width-90 .single-comment-list {
    padding-left: 7%;
}

.blog-comments-area .single-comment-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.blog-comments-area .single-comment-list h5 {
    font-size: 18px;
    text-transform: capitalize;
}

.blog-comments-area .single-comment-list .list-img {
    min-width: 70px;
}

.blog-comments-area .single-comment-list .list-img img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: block;
}

.blog-comments-area .single-comment-list .list-description span {
    cursor: pointer;
    color: #666;
}

.blog-comments-area .single-comment-list .list-description span i {
    font-size: 12px;
    padding-right: 5px;
    display: inline-block;
}

.blog-comments-area .comments-form form {
    margin-top: 50px;
}

.blog-comments-area .comments-form form input,
.blog-comments-area .comments-form form textarea {
    width: 100%;
    border: 1px solid rgba(172, 172, 172, 0.36);
    padding: 20px;
    margin-bottom: 20px;
}

.blog-comments-area .comments-form form button {
    padding: 15px 20px;
    margin-top: 10px;
    background-color: var(--wb-primary-color);
    border: 1px solid transparent;
    color: #fff;
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    cursor: pointer;
}

.blog-comments-area .comments-form form button i {
    padding-right: 10px;
}

.blog-comments-area .comments-form form button:hover {
    background-color: var(--heading-color);
}

/* Shop Page */
.shop-page {
    /* progress bar */
}

.shop-page .instagram-area {
    padding-top: 50px;
}

.shop-page .nav-absolute.navbar-area {
    position: inherit;
    padding: 0;
}

.shop-page .shop-title {
    padding-left: 20%;
}

.shop-page .shop-right {
    padding-left: 50px;
}

.shop-page .fashion-shop-slider .image-bg {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 320px;
    height: 450px;
}

.shop-page .fashion-shop-slider .image-bg:hover .hover-state {
    opacity: 1;
    visibility: visible;
}

.shop-page .fashion-shop-slider .image-bg .hover-state {
    width: 100%;
    height: 100%;
    background: rgba(220, 163, 120, 0.4);
    position: relative;
    text-align: center;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    opacity: 0;
    visibility: hidden;
}

.shop-page .fashion-shop-slider .image-bg .hover-state a {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.shop-page .fashion-shop-slider .image-bg .hover-state span {
    color: #fff;
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.shop-page .fashion-shop-slider .image-1 {
    background-image: url("../img/shop-page/slide1.png");
}

.shop-page .fashion-shop-slider .image-2 {
    background-image: url("../img/shop-page/slide2.png");
}

.shop-page .fashion-shop-slider .image-3 {
    background-image: url("../img/shop-page/slide3.png");
}

.shop-page .fashion-shop-slider .image-4 {
    background-image: url("../img/shop-page/slide4.png");
}

.shop-page .fashion-shop-slider .slick-list {
    padding: 0 10% 0 0;
}

.shop-page .slider-progress {
    margin-top: 70px;
}

.shop-page .shop-content {
    padding-top: 100px;
    position: relative;
}

.shop-page .shop-content .shop-items-top {
    margin-top: -55px;
    margin-bottom: 30px;
}

.shop-page .shop-content .shop-items-top span {
    font-weight: 400;
}

.shop-page .shop-content .shop-items-top .dropdown {
    padding-right: 20px;
}

.shop-page .shop-content .shop-items-top .dropdown .drop-btn {
    border: none;
    background: none;
}

.shop-page .shop-content .shop-items-top .dropdown .drop-btn:focus {
    outline: none;
}

.shop-page .shop-content .shop-sidebar .title {
    margin: 50px 0 30px;
}

.shop-page .shop-content .shop-sidebar .title h4 {
    font-weight: 700;
    text-transform: uppercase;
}

.shop-page .shop-content .shop-sidebar ul {
    margin: 0;
    padding: 0;
}

.shop-page .shop-content .shop-sidebar ul li {
    margin: 10px 0;
    font-weight: 400;
}

.shop-page .shop-content .shop-sidebar .categories li {
    position: relative;
}

.shop-page .shop-content .shop-sidebar .categories li:after {
    content: '\f067';
    font-family: 'fontAwesome';
    display: inline-block;
    padding: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--paragraph-color);
    font-size: 9px;
    line-height: 10px;
    text-align: center;
    position: absolute;
    top: 0;
    right: 50%;
}

.shop-page .shop-content .shop-sidebar .colors .circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 25px;
}

.shop-page .shop-content .shop-sidebar .colors .black {
    background: #000000;
}

.shop-page .shop-content .shop-sidebar .colors .blue {
    background: #B1C6D6;
}

.shop-page .shop-content .shop-sidebar .colors .grey {
    background: #BEBEBE;
}

.shop-page .shop-content .shop-sidebar .colors .green {
    background: #007B00;
}

.shop-page .shop-content .shop-sidebar .colors .yellow {
    background: #E5B000;
}

.shop-page .shop-content .shop-sidebar .colors .red {
    background: #E20000;
}

.shop-page .controler-wrapper {
    margin-top: 33px;
    padding-left: 10px;
}

.shop-page .controler-wrapper .active-controler {
    bottom: -19px;
    position: absolute;
}

.shop-page .controler-wrapper .progressbar {
    width: 40%;
    height: 5px;
    position: relative;
    top: 38px;
}

.shop-page .controler-wrapper .progressbar .home-slider-progress {
    background-color: #E2E2E2;
    position: absolute;
    width: 100%;
    height: 2px;
}

.shop-page .controler-wrapper .progressbar .home-slider-progress-active {
    background-color: var(--wb-primary-color);
    position: absolute;
    width: 0;
    height: 2px;
    top: 0;
}

.shop-page .controler-wrapper .progressbar span.devider {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.shop-page .controler-wrapper .total-controler {
    position: absolute;
    bottom: -19px;
    left: 98px;
}

.shop-page .fashion-shop-slider .slick-prev {
    display: none !important;
}

.shop-page .fashion-shop-slider .slick-arrow {
    position: absolute;
    bottom: -73px;
    left: 44%;
    cursor: pointer;
    line-height: 0;
    font-size: 20px;
}

@media only screen and (min-width: 992px) {
    .shop-sidebar-right {
        margin-left: 30px;
    }
}

.coming-soon-page ul.countdown li span,
.coming-soon-page ul.countdown li p {
    color: #ddd;
}

/* Profile Page */
.profile-page h6 {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}

.profile-page .nav-absolute.navbar-area {
    position: inherit;
    padding: 0;
}

.profile-page .nav-absolute.navbar-area .nav-right-content li {
    margin: 0 10px;
}

.profile-page .nav-absolute.navbar-area select {
    border: none;
    font-size: 16px;
    color: var(--paragraph-color);
    font-weight: 300;
}

.profile-page .nav-absolute.navbar-area .user-image img {
    width: 40px;
    height: 40px;
}

.profile-page .profile-banner {
    background-image: url("../img/profile-page/banner-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 380px;
}

.profile-page .profile-area .profile-image {
    margin-top: -150px;
}

.profile-page .profile-area .profile-image .image {
    width: 290px;
    height: 315px;
    background: url("../img/profile-page/profile.png");
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    -webkit-box-shadow: 0 0 0 40px #fff;
    box-shadow: 0 0 0 40px #fff;
    margin: auto;
}

.profile-page .profile-area .profile-image .name {
    text-align: center;
}

.profile-page .profile-area .profile-image .name i {
    margin-left: 15px;
}

.profile-page .profile-area .profile-title {
    margin: 60px 0 80px;
    padding-left: 17%;
}

.profile-page .profile-area .profile-tab ul {
    margin-top: 65px;
}

.profile-page .profile-area .profile-tab ul li {
    margin: 40px 0;
    padding: 7px 0;
    cursor: pointer;
    position: relative;
}

.profile-page .profile-area .profile-tab ul li:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: var(--wb-primary-color);
    opacity: 0;
    visibility: hidden;
}

.profile-page .profile-area .profile-tab ul li i {
    margin-right: 10px;
    font-size: 20px;
}

.profile-page .profile-area .profile-tab ul li h6 {
    margin: 0;
}

.profile-page .profile-area .profile-tab ul .active i,
.profile-page .profile-area .profile-tab ul .active h6 {
    color: var(--wb-primary-color);
}

.profile-page .profile-area .profile-tab ul .active:after {
    opacity: 1;
    visibility: visible;
}

.profile-page .profile-area .profile-tab ul .tab-five {
    margin-top: 100px;
}

.profile-page .profile-area .contact-bg,
.profile-page .profile-area .contact-bg2 {
    background: #F9F1ED;
    padding: 60px;
}

.profile-page .profile-area .contact-bg .form-border,
.profile-page .profile-area .contact-bg2 .form-border {
    border: 1px solid var(--wb-secondary-color);
    padding: 70px 40% 120px 90px;
}

.profile-page .profile-area .contact-bg .form-border .form-title,
.profile-page .profile-area .contact-bg2 .form-border .form-title {
    margin-bottom: 50px;
}

.profile-page .profile-area .contact-bg .form-border .diffrent,
.profile-page .profile-area .contact-bg2 .form-border .diffrent {
    margin-bottom: 40px;
}

.profile-page .profile-area .contact-bg .form-border h6,
.profile-page .profile-area .contact-bg2 .form-border h6 {
    margin-bottom: 24px;
}

.profile-page .profile-area .contact-bg .form-border input,
.profile-page .profile-area .contact-bg .form-border textarea,
.profile-page .profile-area .contact-bg2 .form-border input,
.profile-page .profile-area .contact-bg2 .form-border textarea {
    padding: 15px 20px;
    background: transparent;
    border: 1px solid #D0CBC7;
    width: 100%;
}

.profile-page .profile-area .contact-bg .form-border .diffrent div,
.profile-page .profile-area .contact-bg2 .form-border .diffrent div {
    width: 48%;
}

.profile-page .profile-area .contact-bg .form-border .form-button,
.profile-page .profile-area .contact-bg2 .form-border .form-button {
    margin-top: 70px;
}

.profile-page .profile-area .contact-bg .form-border .form-button .template-btn2,
.profile-page .profile-area .contact-bg2 .form-border .form-button .template-btn2 {
    width: 48%;
    padding: 20px 100px 20px 30px;
    text-align: left;
}

.profile-page .profile-area .contact-bg .form-border .form-button .template-btn2.on2,
.profile-page .profile-area .contact-bg2 .form-border .form-button .template-btn2.on2 {
    background: transparent;
    margin-right: 3%;
}

.profile-page .profile-area .contact-bg .form-border .form-button .template-btn2.on2:hover,
.profile-page .profile-area .contact-bg2 .form-border .form-button .template-btn2.on2:hover {
    background: var(--wb-primary-color);
}

.profile-page .profile-area .contact-bg2 .form-border {
    padding: 70px 90px 120px;
}

.profile-page .profile-area .contact-bg2 .form-title {
    margin-bottom: 100px !important;
}

.profile-page .profile-area .contact-bg2 .single-item {
    position: relative;
    margin-bottom: 80px;
    text-align: center;
}

.profile-page .profile-area .contact-bg2 .single-item .cross-icon {
    top: -45px;
    right: 17px;
}

.profile-page .profile-area .contact-bg2 .single-item .item-bg {
    width: 95%;
    height: 380px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.profile-page .profile-area .contact-bg2 .single-item .plus {
    margin-top: 20px;
    display: inline-block;
}

.profile-page .profile-area .contact-bg2 .single-item .plus a {
    display: inline-block;
    padding: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 7px;
    border: 1px solid #414141;
}

.profile-page .profile-area .contact-bg2 .single-item .item1 {
    background-image: url("../img/profile-page/save-page/save1.png");
}

.profile-page .profile-area .contact-bg2 .single-item .item2 {
    background-image: url("../img/profile-page/save-page/save2.png");
}

.profile-page .profile-area .contact-bg2 .single-item .item3 {
    background-image: url("../img/profile-page/save-page/save3.png");
}

.profile-page .profile-area .contact-bg2 .single-item .item4 {
    background-image: url("../img/profile-page/save-page/save4.png");
}

.profile-page .profile-area .contact-bg2 .single-item .item5 {
    background-image: url("../img/profile-page/save-page/save5.png");
}

.profile-page .profile-area .contact-bg3 {
    background: #F9F1ED;
    padding: 60px;
}

.profile-page .profile-area .contact-bg3 .form-border {
    padding: 70px 90px 120px;
    border: 1px solid var(--wb-secondary-color);
}

.profile-page .profile-area .contact-bg3 .form-title {
    margin-bottom: 40px;
}

.profile-page .profile-area .contact-bg3 .title-diff {
    margin-bottom: 100px;
}

.profile-page .profile-area .contact-bg3 .content-bottom {
    margin-bottom: 40px;
}

.profile-page .profile-area .contact-bg3 .bottom-diff {
    margin-bottom: 0px;
}

.profile-page .profile-area .contact-bg3 .content-padding {
    padding-right: 30%;
}

.profile-page .profile-area .contact-bg3 ul {
    text-align: right;
    position: relative;
}

.profile-page .profile-area .contact-bg3 ul li {
    display: inline;
    margin-left: 100px;
    position: relative;
}

.profile-page .profile-area .contact-bg3 ul li:hover:after {
    color: var(--wb-primary-color);
}

.profile-page .profile-area .contact-bg3 ul li:hover i {
    color: var(--wb-primary-color);
}

.profile-page .profile-area .contact-bg3 ul li:after {
    content: '\f058';
    font-family: 'fontAwesome';
    position: absolute;
    left: 50%;
    bottom: -50px;
    color: #ACACAC;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.profile-page .profile-area .contact-bg3 ul i {
    font-size: 50px;
    color: #ACACAC;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.profile-page .profile-area .contact-bg3 .single-item {
    position: relative;
    text-align: center;
}

.profile-page .profile-area .contact-bg3 .single-item .cross-icon {
    top: -45px;
    right: 17px;
}

.profile-page .profile-area .contact-bg3 .single-item .cross-icon i {
    color: var(--wb-primary-color);
    background: none;
    padding: 0;
    cursor: pointer;
    font-size: 30px;
}

.profile-page .profile-area .contact-bg3 .single-item .item-bg {
    width: 100%;
    height: 420px;
    background: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70% 70%;
}

.profile-page .profile-area .contact-bg3 .single-item .plus {
    margin-top: 20px;
    display: inline-block;
}

.profile-page .profile-area .contact-bg3 .single-item .item1 {
    background-image: url("../img/profile-page/order-page/cart-1.png");
}

.profile-page .profile-area .contact-bg3 .single-item .item2 {
    background-image: url("../img/profile-page/order-page/cart-2.png");
}

.profile-page .profile-area .contact-bg3 .single-item .item3 {
    background-image: url("../img/profile-page/order-page/cart-3.png");
}

.profile-page .profile-area .contact-bg4 {
    background: #F9F1ED;
    padding: 60px;
}

.profile-page .profile-area .contact-bg4 .form-border {
    padding: 70px 90px 120px;
    border: 1px solid var(--wb-secondary-color);
}

.profile-page .profile-area .contact-bg4 .form-title {
    margin-bottom: 40px;
}

.profile-page .profile-area .contact-bg4 ul {
    padding: 0;
}

.profile-page .profile-area .contact-bg4 ul li {
    margin-bottom: 30px;
}

.profile-page .profile-area .contact-bg4 ul li i {
    margin-right: 10px;
}

.profile-page .profile-area .contact-bg4 ul li a {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    font-weight: 400;
    color: #717171;
}

.profile-page .profile-area .contact-bg4 ul li:hover a {
    color: var(--wb-secondary-color);
}

.profile-social-accounts,
.profile-notifications {
    /* The switch - the box around the slider */
    /* Hide default HTML checkbox */
    /* The slider */
    /* Rounded sliders */
}

.profile-social-accounts .social-links,
.profile-notifications .social-links {
    margin-bottom: 20px;
}

.profile-social-accounts .single-link,
.profile-notifications .single-link {
    width: 50%;
}

.profile-social-accounts .switch-button,
.profile-notifications .switch-button {
    width: 50%;
}

.profile-social-accounts .switch,
.profile-notifications .switch {
    position: relative;
    display: inline-block;
    width: 53px;
    height: 26px;
}

.profile-social-accounts .switch input,
.profile-notifications .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.profile-social-accounts .slider,
.profile-notifications .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.profile-social-accounts .slider:before,
.profile-notifications .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.profile-social-accounts input:checked+.slider,
.profile-notifications input:checked+.slider {
    background-color: var(--wb-primary-color);
}

.profile-social-accounts input:focus+.slider,
.profile-notifications input:focus+.slider {
    -webkit-box-shadow: 0 0 1px var(--wb-primary-color);
    box-shadow: 0 0 1px var(--wb-primary-color);
}

.profile-social-accounts input:checked+.slider:before,
.profile-notifications input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.profile-social-accounts .slider.round,
.profile-notifications .slider.round {
    border-radius: 34px;
}

.profile-social-accounts .slider.round:before,
.profile-notifications .slider.round:before {
    border-radius: 50%;
}

.profile-notifications .social-links {
    margin-bottom: 50px;
}

.profile-notifications .form-border h6 {
    margin-bottom: 16px !important;
}

.profile-notifications .single-link {
    width: inherit;
    padding-right: 20%;
}

.profile-notifications .switch-button {
    width: inherit;
}

.profile-notifications .form-button {
    margin-top: 100px !important;
}

.profile-order .single-item {
    text-align: center;
    width: 90%;
}

.profile-order .form-border {
    padding: 70px 90px 120px !important;
}

.profile-order .form-border h6 {
    margin-bottom: 10px !important;
}

.profile-order .item-bg {
    width: 100%;
    height: 420px;
    background: #fff;
    background-repeat: no-repeat;
    background-position: center;
}

.profile-order .item1 {
    background-image: url("../img/profile-page/order-page/purchases.html");
}

.profile-order .plus {
    margin-top: 30px;
    display: inline-block;
    text-align: center;
}

.profile-order .template-btn2.on2 {
    margin-top: 10px;
    background: transparent;
}

.profile-order .template-btn2.on2:hover {
    background: var(--wb-primary-color);
}

.profile-order .content-bottom {
    margin-bottom: 50px;
}

.profile-order .content-bottom ul {
    position: relative;
}

.profile-order .content-bottom ul:after {
    content: '';
    width: 454px;
    height: 7px;
    border: 1px solid #ACACAC;
    display: block;
    position: absolute;
    left: 31px;
    bottom: -39px;
}

.profile-order .content-bottom ul li {
    display: inline;
    margin-right: 100px;
    position: relative;
}

.profile-order .content-bottom ul li:hover:after {
    color: var(--wb-primary-color);
}

.profile-order .content-bottom ul li:hover i {
    color: var(--wb-primary-color);
}

.profile-order .content-bottom ul li:after {
    content: '\f058';
    font-family: 'fontAwesome';
    position: absolute;
    left: 50%;
    bottom: -50px;
    color: #ACACAC;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.profile-order .content-bottom ul i {
    font-size: 50px;
    color: #ACACAC;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.profile-order .content-padding {
    padding-right: 30%;
    margin-top: 100px;
}

.left-0 {
    left: 0;
}

.z-1 {
    z-index: 1
}

.gap-3px {
    gap: 3px;
}

.gap-10px {
    gap: 10px;
}

.MulltipleEllipsis-Clamp1 {
    overflow: hidden;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.WMi-star:before {
    margin: 0 !important;
}

/* Product gallery */

.main-image-container {
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    border-radius: 10px;
}

.hidden {
    display: none;
}

.active {
    display: block;
}

.main-image {
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.3s ease;
    cursor: zoom-in;
    width: 100%;
    object-fit: contain;
}

.main-image.zoomed {
    transform: scale(1.5);
    cursor: zoom-out;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    overflow-x: auto;
    padding-bottom: 15px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid #eee;
    transition: border-color 0.2s;
    border-radius: 10px;
}

.thumbnail.active {
    border-color: var(--wb-primary-color);
}

.thumbnail:hover {
    border-color: var(--wb-primary-color);
    opacity: 0.8;
}


.main-image {
    transition: transform 0.1s ease-out;
    transform-origin: center center;
}

.wb-variation-color-item.active,
.wb-variation-image-src.active,
.wb-variation-text-item.active {
    outline: 1px solid var(--wb-primary-color);
}
 .wb-variation-text-item{
     padding: 0 10px;
 }
.wb-variation-image-src,
.wb-variation-text-item {
    display: inline-block;
    border-radius: 4px;
    outline: 1px solid #f2f2f2;
    outline-offset: 2px;
    background-color: #f9f9f9;
}

.wb-variation-color-item {
    width: 20px;
    height: 20px;
    display: inline-block;
    border-radius: 4px;
    outline: 1px solid #f2f2f2;
    outline-offset: 2px;
}

.wb-variation-color-item.active,
.wb-variation-image-src.active,
.wb-variation-text-item.active {
    outline: 1px solid var(--wb-primary-color);
}

.gap-3 {
    gap: .75rem !important;
}

.wb-variations-container>div {
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.light-fa * {
    font-family: 'iranyekan-light';
}

.content-start * {
    font-size: 14px;
    color: #747474;
    line-height: 2;
    font-family: 'iranyekan-light';
}


