/* @import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Montserrat:200,300,400,500,600,700&display=swap"); */



/* ===== Neo Sans Font Setup ===== */

@font-face {
    font-family: 'Neo Sans';
    src: url('../fonts/NeoSansStd-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Neo Sans';
    src: url('../fonts/NeoSansStd-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Neo Sans';
    src: url('../fonts/NeoSansStd-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Neo Sans';
    src: url('../fonts/NeoSansStd-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
}


:root {
    --main-color-one: #00a0e3;
    --menu-font: 'Neo Sans';
    --heading-font: 'Neo Sans';
    --body-font: 'Neo Sans';
    --paragraph-color: #181818;
}

.container-fluid {
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding-right: 70px !important;
    padding-left: 70px !important;
}

@media only screen and (max-width: 991px) {
    .container-fluid {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }
}

@media all and (min-width: 1650px) {
    .container {
        max-width: 1640px;
    }
}

@media only screen and (min-width: 1441px) and (max-width: 1650px) {
    .container {
        max-width: 1400px;
    }
}

@media only screen and (min-width: 1201px) and (max-width: 1440px) {
    .container {
        max-width: 1200px;
    }
}

@media only screen and (min-width: 1135px) and (max-width: 1200px) {
    .container {
        max-width: 1100px;
    }
}

@media only screen and (min-width: 990px) and (max-width: 1024px) {
    .container {
        max-width: 950px;
    }
}

.social-icon.share-icon ul li .icon {
    color: #181818;
}

.social-icon ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.social-icon ul a {
    text-decoration: none;
}

.social-icon ul,
.footer-social-icon ul {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.social-icon ul li,
.footer-social-icon ul li {
    padding: 0 10px;
    margin: 0 !important;
}

.social-icon ul li .icon,
.footer-social-icon ul li .icon {
    color: #111111;
    font-size: 16px;
    -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;
}

.social-icon ul li .icon:hover,
.footer-social-icon ul li .icon:hover {
    color: var(--main-color-one);
}

body {
    margin: 0;
    padding-top: 96px;
    color: var(--paragraph-color);
    overflow-x: hidden;
    font-family: var(--body-font);
}

h1 {
    font-size: 48px;
    line-height: 1.0833333333333333;
}

h2 {
    font-size: 36px;
    line-height: 1.4444444444444444;
}

h3 {
    font-size: 24px;
    line-height: 1.0833333333333333;
}

h4 {
    font-size: 20px;
    line-height: 1.2380952380952381;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

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

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[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: none;
}

.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(--main-color-one);
}

.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(--main-color-one);
}

.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;
}

.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;
}

#content[tabindex="-1"]:focus {
    outline: 0;
}

button:focus {
    outline: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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-top-125 {
    padding-top: 125px;
}

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

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

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

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

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

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

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

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

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

.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-75 {
    padding-bottom: 75px;
}

.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-125 {
    padding-bottom: 125px;
}

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

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

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

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

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

.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-15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.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-bottom-100 {
    margin-bottom: 100px;
}

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

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

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

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

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

.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;
}

.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;
}

.sticky {
    display: block;
}

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

embed,
iframe,
object {
    max-width: 100%;
}

.custom-logo-link {
    display: inline-block;
}

.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;
}

.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;
}

.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(--main-color-one);
    color: #fff;
    border-color: var(--main-color-one);
}

.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(--main-color-one);
    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;
}

.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;
}

.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;
}

.breadcrumb-area {
    padding: 100px 0 100px 0;
    position: relative;
    z-index: 0;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    margin-top: 30px !important;
}

.breadcrumb-area.bg-white {
    padding: 120px 0 75px 0;
}

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

.breadcrumb-area.bg-white .page-title {
    color: #181818;
}

.breadcrumb-area.bg-white p {
    color: #181818;
}

.breadcrumb-area.bg-white .page-list li {
    color: #181818;
}

.breadcrumb-area.bg-white .page-list li a:hover {
    color: #181818;
}

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

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

.breadcrumb-area.style-02 {
    padding: 0;
}

.breadcrumb-area.style-02 .breadcrumb-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.breadcrumb-area.style-02 .breadcrumb-inner .breadcrumb-left {
    width: 30%;
}

.breadcrumb-area.style-02 .breadcrumb-inner .breadcrumb-right {
    width: 70%;
}

.breadcrumb-area.style-02 .page-title {
    color: #181818;
}

.breadcrumb-area.style-02 p {
    color: #181818;
}

.breadcrumb-area.style-02 .page-list li {
    color: #181818;
}

.breadcrumb-area.style-02 .page-list li:first-child a {
    color: var(--main-color-one);
}

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

.breadcrumb-area.style-02 .page-list li a {
    color: #181818;
}

.breadcrumb-area.style-02 .page-list li a:hover {
    color: #181818;
}

.breadcrumb-area.style-02 .breadcrumb-inner-wrap {
    display: -ms-grid;
    display: grid;
    place-content: center;
    height: 100%;
}

.breadcrumb-area.style-02 .breadcrumb-border {
    background-color: #fff;
    padding: 40px 80px 45px 80px;
    -webkit-transform: translateX(30%);
    -ms-transform: translateX(30%);
    transform: translateX(30%);
    z-index: 1;
    border-left: 2px solid #CAD1DC;
    position: relative;
    width: 30vw;
}

.breadcrumb-area.style-02 .breadcrumb-border::before {
    top: 0;
}

.breadcrumb-area.style-02 .breadcrumb-border::after {
    bottom: 0;
}

.breadcrumb-area.style-02 .breadcrumb-border::before,
.breadcrumb-area.style-02 .breadcrumb-border::after {
    position: absolute;
    left: 0;
    content: '';
    display: block;
    width: 50%;
    height: 2px;
    background-color: #CAD1DC;
}

.breadcrumb-area.style-02 .breadcrumb-thumb {
    background-size: cover;
    background-position: center;
    padding: 180px 0;
    width: 65vw;
}

.breadcrumb-area.style-02:before {
    background-color: #fff;
}

.breadcrumb-area.style-03 .breadcrumb-content {
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    background-color: rgb(255 255 255 / 90%);
    padding: 20px 50px 10px 50px;
    border-radius: 8px 8px 0px 0px;
    min-width: 310px;
}

.breadcrumb-area.style-03 .breadcrumb-content:hover {
    background-color: rgb(255 255 255 / 95%) !important;
}

.breadcrumb-area.style-03 .breadcrumb-content .page-title {
    color: #181818;
}

.breadcrumb-area.style-03 .breadcrumb-content .page-list li {
    color: #181818;
}

.breadcrumb-area.style-03 .breadcrumb-content .page-list li a:hover {
    color: #181818;
}

.breadcrumb-area .page-title {
    font-size: 26px;
    line-height: 28px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 0.3px;
}

.breadcrumb-area p {
    font-size: 14px;
    line-height: 22px;
    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: 14px;
    font-size: 15px;
    font-weight: 600;
    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 {}

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

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

.breadcrumb-area .page-list 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;
}

.breadcrumb-area .page-list li a:hover {
    color: #fff;
    text-decoration: underline !important;
}

.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;
    font-family: var(--heading-font);
}

.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(--main-color-one);
}

.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 .submit-btn {
    height: 50px;
    width: auto;
    border-radius: 5px;
    font-weight: 400;
    background-color: var(--main-color-one);
    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(--secondary-color);
    color: #fff;
}

.comment-respond {}

.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;
}

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

.widget .widget-title {
    color: #181818;
}

.widget .widget-title.border-bottom {
    border-bottom: 0 !important;
}

.widget .widget-title.border-bottom::after {
    content: '';
    display: block;
    border-bottom: 1px solid #181818;
    width: 0%;
    margin-top: 0px;
}

.widget.style-01 .recent_post_item li.single-recent-post-item:not(:last-child) {
    border-bottom: 1px solid #CAD1DC;
    padding-bottom: 20px;
}

.widget.style-01 .recent_post_item li.single-recent-post-item .thumb {
    width: 60px;
    height: 76px;
    -webkit-box-align: auto;
    -ms-flex-align: auto;
    align-items: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.widget.style-01 .recent_post_item li.single-recent-post-item .content {
    display: -ms-grid;
    display: grid;
    -ms-grid-row-align: auto;
    align-self: auto;
}

.widget.style-01 .recent_post_item li.single-recent-post-item .content .title {
    color: #181818;
    font-size: 18px;
    line-height: 30px;
}

.widget.style-01 .recent_post_item li.single-recent-post-item .content .time {
    color: #181818;
}

.widget.style-01 .gallery-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.widget.style-01 .gallery-items li {
    margin: 0;
    padding: 10px;
}

.widget.style-01 .tagcloud {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.widget.style-01 .tagcloud a {
    color: #181818;
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    padding: 1px 10px 2px 10px;
    display: table;
    border: 1px solid #181818;
    border-radius: 20px;
    margin: 3px;
    -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.style-01 .tagcloud a:hover {
    color: #fff;
    background-color: var(--main-color-one);
    border: 1px solid var(--main-color-one);
}

.widget.blog-bg {
    background-color: #F2F6FA;
}

.widget.radio-button ul a {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    line-height: 24px;
    color: #181818;
    font-weight: 500;
}

.widget.radio-button ul a:hover::before,
.widget.radio-button ul a.active::before {
    background-color: var(--main-color-one);
}

.widget.radio-button ul a:hover::after,
.widget.radio-button ul a.active::after {
    border: 1px solid var(--main-color-one);
}

.widget.radio-button ul a::before,
.widget.radio-button ul a::after {
    content: '';
    display: inline-block;
    border-radius: 5%;
    position: absolute;
    top: 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.radio-button ul a::before {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 3px;
}

.widget.radio-button ul a.active::before {
    background-color: var(--main-color-one);
}

.widget.radio-button ul a::after {
    width: 14px;
    height: 14px;
    border: 1px solid #181818;
    top: 50%;
    left: 7px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.widget.bg-none {
    background-color: transparent;
}

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

.widget .widget-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 14px;
    position: relative;
    text-transform: uppercase;
}

.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 {
    color: rgba(255, 255, 255, 0.6);
}

.widget.footer-widget .subscribe-form .form-group .form-control:-moz-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.widget.footer-widget .subscribe-form .form-group .form-control::-moz-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.widget.footer-widget .subscribe-form .form-group .form-control:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

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

.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;
    font-size: 14px;
    line-height: 24px;
}

.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(--main-color-one);
}

.widget_search .search-form {
    position: relative;
    max-width: 340px;
}

.pinsbtext {
    margin-top: 8px;
    font-size: 13px;
}

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

.widget_search .search-form .form-group .form-control {
    height: 38px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 0 85px 0 15px;
    font-size: 13px;
}

.widget_search .search-form .submit-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 90px;
    font-weight: 600;
    height: 38px;
    line-height: 38px;
    padding: 0;
    font-size: 14px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: var(--main-color-one);
    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: rgba(251, 9, 55, 0.8);
    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(--main-color-one);
    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;
    -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(--main-color-one);
    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: 7px 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: rgba(255, 255, 255, 0.9);
}

.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: white;
}

.widget.footer-widget ul li a,
.widget.footer-widget ul li {
    color: white;
}

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

.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: #4285F4;
}

.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(--main-color-one);
}

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

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

.copyright-area {
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.widget-testimonial .icon {
    font-size: 70px;
    line-height: 60px;
    color: var(--main-color-one);
    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;
}

.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");
}

#offcanvas-menu {
    display: none !important;
}

.navbar-area {
    padding: 0;
    z-index: 99;
}

.navbar-area.style-05 {
    padding-left: 40px;
}

.navbar-area.style-05 .nav-container .navbar-collapse .navbar-nav {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.navbar-area.style-02 .nav-container .navbar-collapse .navbar-nav>li {
    color: #181818;
}

.navbar-area .nav-container {}

.navbar-area .nav-container .navbar-collapse .navbar-nav {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100%;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav>li::after {
    content: "";
    clear: both;
    display: block;
    background: var(--main-color-one);
    height: 3px;
    width: 0px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    margin-bottom: -2px;
    -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:hover::after {
    width: 100%;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    line-height: 65px;
    letter-spacing: 0.3px;
    font-family: var(--menu-font);
    font-weight: 600;
    color: #fff;
}

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

.navbar-area .nav-container .navbar-collapse .navbar-nav li:hover::before {
    color: var(--main-color-one);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li:hover {
    color: var(--main-color-one);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.current-menu-item::after {
    width: 100%;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.current-menu-item::before {
    color: var(--main-color-one);
}

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

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    position: absolute;
    right: 0px;
    top: 50%;
    content: "\f0d7";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    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;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.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 {
    position: absolute;
    text-align: left;
    min-width: 600px;
    margin: 0;
    padding: 15px 5px;
    list-style: none;
    top: 103%;
    -webkit-box-shadow: 0 0 15px 0 rgba(24, 24, 24, 0.05);
    box-shadow: 0 0 15px 0 rgba(24, 24, 24, 0.05);
    background-color: rgba(24, 24, 24, 1);
    z-index: 9999;
    border-bottom: 0px solid var(--main-color-one);
    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.asrmenus {
    padding: 0px;
    right: -450px !important;
    background-color: #ffffff !important;
    min-width: 800px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    display: block;
    width: 49%;
    float: left;
    margin-left: 0;
    line-height: 20px;
    font-size: 12px;
    font-weight: 400;
    font-family: var(--menu-font);
    padding: 0;
    margin-left: 0px !important;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li+li {
    border-top: 1px solid rgba(255, 255, 255, 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:hover+li {}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    display: block;
    padding: 6px 20px;
    white-space: nowrap;
    -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 {
    color: var(--main-color-one);
    padding-left: 25px;
}

.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: "\f0d7";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    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 {
    padding: 30px 0px;
    -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;
}

.nav-right-content .contact-number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 15px;
    line-height: 24px;
    font-family: var(--menu-font);
    font-weight: 600;
    margin-left: 40px;
    min-width: 130px;
}

.nav-right-content .contact-number .icon {
    color: var(--main-color-one);
    padding-right: 10px;
}

.nav-right-content.black ul li {
    color: #181818;
}

.nav-right-content.black ul li a {
    color: #181818;
}

.nav-right-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.nav-right-content ul li {
    display: inline-block;
    margin: 0 18px;
    color: #fff;
}

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

.nav-right-content ul li a {
    color: #fff;
    -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;
}

.nav-right-content ul li a:hover {
    color: var(--main-color-one);
}

.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;
}

.nav-right-content ul li.search:hover {
    color: var(--main-color-one);
}

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

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

.nav-right-content ul li .notification {
    position: relative;
    top: -2px;
}

.nav-right-content ul li .notification .badge {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 3px 6px;
    border-radius: 50%;
    background-color: var(--main-color-one);
    color: #fff;
    font-weight: 400;
}

.humberger-menu {
    display: block;
    width: 30px;
    cursor: pointer;
    margin-top: 0px;
}

.humberger-menu.black span {
    background-color: #181818;
}

.humberger-menu.black:hover span {
    width: 30px;
    background-color: var(--main-color-one);
}

.humberger-menu span {
    height: 3px;
    background-color: #000000;
    margin: 4px;
    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;
}

.humberger-menu span.one {
    width: 30px;
}

.humberger-menu span.two {
    width: 15px;
}

.humberger-menu span.three {
    width: 25px;
}

.humberger-menu:hover span {
    width: 30px;
    background-color: var(--main-color-one);
}

@media only screen and (max-width: 991px) {
    header .right-content {
        padding-right: 5px;
    }

    .nav-right-content {
        right: 30px !important;
    }

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

    header .header-bottom-area {
        height: 60px !important;
    }

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

    .navbar-area .nav-container .navbar-brand .navbar-toggler {
        position: absolute;
        right: 10px;
        border: 0;
    }

    .navbar-area .nav-container .navbar-collapse {
        background-color: transparent;
        z-index: 9;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav {
        display: block;
        -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
        box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
        background: #ffffff !important;
        color: rgba(0, 0, 0, 0.98);
        height: 100vh;
        overflow-y: auto !important;
        padding-top: 15px !important;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav>li::after {
        content: '';
        display: none;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li {
        display: block;
        text-align: left;
        line-height: 30px;
        padding: 10px 0;
        border-bottom: 0;
    }

    .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;
        border-bottom: none;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover>.sub-menu {
        padding: 10px 0 10px 30px;
        height: auto;
    }

    .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;
        background-color: transparent;
        -webkit-transition: height 500ms;
        -moz-transition: height 500ms;
        -o-transition: height 500ms;
        transition: height 500ms;
        border-bottom: 0 !important;
    }

    .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: 0;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
        color: #181818;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children>.sub-menu {
        padding: 0;
        height: 0;
        -webkit-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
        width: 100%;
    }
}

header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header::after {
    content: "";
    display: table;
    clear: both;
}

header.position-inherit {
    position: inherit;
}

header.border-none {
    border-bottom: none;
}

header.border-none .topbar-area .container::before,
header.border-none .topbar-area .container::after {
    background-color: transparent;
}

header.style-04 .h4-header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding-top: 45px;
    height: 100px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header.style-04 .humberger-menu-area {
    width: 20%;
}

header.style-04 .logo-area-wrap {
    width: 60%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

header.style-04 .nav-right-content {
    width: 20%;
}

header.style-04 .nav-right-content ul {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

header .container .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header .topbar-area {
    background-color: rgba(24, 24, 24, 0.7);
}

header .topbar-area.style-02 {
    background-color: #181818;
}

header .topbar-area .container {
    position: relative;
}

header .topbar-area .container::before,
header .topbar-area .container::after {
    position: absolute;
    top: 40px;
    z-index: 1;
    content: "";
    width: 1px;
    min-height: calc(100vh - 40px);
    background-color: rgba(255, 255, 255, 0.2);
}

header .topbar-area .container::before {
    left: 0;
}

header .topbar-area .container::after {
    right: 0;
}

header .topbar-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

header .header-bottom-area {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    height: 70px;
}

header .left-content {
    color: #222222;
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
    font-family: var(--menu-font);
}

header .right-content {
    display: -webkit-box;
    font-size: 13px;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header .logo-area {
    width: 10%;
    min-width: 160px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header .navbar-area {
    width: 100%;
}

header .navbar-toggler {
    height: 60px;
}

.full-width-slider {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.overlay-bg {
    position: relative;
    z-index: 0;
}

.overlay-bg::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    display: block;
    background-color: rgba(24, 24, 24, 0.5);
    z-index: -1;
    width: 100%;
    height: 100%;
}

.common-section-content {
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
    align-content: center;
    height: 100%;
}

.common-section-content.style-02 .paragraph p {
    color: #fff;
}

.common-section-content .paragraph p {
    color: #181818;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
}

.common-section-content .read-more-wrap .read-more {
    text-transform: uppercase;
}

.banner-bottom-section {
    width: 100%;
    background-color: #181818;
}

.h5-banner-bottom-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    height: 100%;
}

.h5-banner-bottom-items:hover .items-left {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}

.h5-banner-bottom-items .items-left {
    width: 80px;
    text-align: center;
    margin-right: 30px;
    -webkit-transition: all 1.5s;
    -moz-transition: all 1.5s;
    -o-transition: all 1.5s;
    transition: all 1.5s;
}

.h5-banner-bottom-items .items-right {
    width: 80%;
}

.h5-banner-bottom-items .items-right .title {
    color: var(--main-color-one);
    font-size: 22px;
    line-height: 32px;
    font-family: var(--body-font);
    font-weight: 600;
}

.h5-banner-bottom-items .items-right p {
    color: #fff;
    font-size: 14px;
    line-height: 30px;
    font-family: var(--body-font);
    font-weight: 400;
    margin-bottom: 0;
}

.h5-banner-bottom-items.custom-border {
    border-left: 1px solid rgba(24, 24, 24, 0.3);
    border-right: 1px solid rgba(24, 24, 24, 0.3);
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
}

.h5-banner-bottom-items.custom-border::before,
.h5-banner-bottom-items.custom-border::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: '';
    width: 3px;
    height: 150px;
    background-color: #fff;
}

.h5-banner-bottom-items.custom-border::before {
    left: -2px;
}

.h5-banner-bottom-items.custom-border::after {
    right: -2px;
}

.most-popular-cars {
    background-color: #F5F5F5;
    position: relative;
}

.most-popular-cars .nav-tabs {
    border-bottom: none;
}

.most-popular-cars .nav-tabs .nav-link {
    border: none;
    border-radius: 0;
    color: #181818;
    font-size: 22px;
    line-height: 32px;
    font-family: var(--body-font);
    font-weight: 600;
}

.most-popular-cars .nav-tabs .nav-link.active {
    color: var(--main-color-one);
    background-color: transparent;
}

.most-popular-cars .tab-slider-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.most-popular-cars .tab-slider-left {
    width: 30%;
}

.most-popular-cars .tab-slider-right {
    width: 70%;
    padding-left: 20px;
}

.most-popular-cars .h5-tab-slider-left-active .slick-slide.slick-current.slick-active .h5-tab-slider-left-items,
.most-popular-cars .h5-tab-slider-left-active2 .slick-slide.slick-current.slick-active .h5-tab-slider-left-items {
    -webkit-box-shadow: 0 0 15px 2px rgba(251, 9, 55, 0.2);
    box-shadow: 0 0 15px 2px rgba(251, 9, 55, 0.2);
}

.most-popular-cars .h5-tab-slider-left-items {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    margin: 10px;
    padding: 10px;
    cursor: pointer;
    width: 96% !important;
}

.most-popular-cars .h5-tab-slider-left-items .thubm-area {
    width: 50%;
    padding: 0 30px;
}

.most-popular-cars .h5-tab-slider-left-items .content-area {
    width: 50%;
}

.most-popular-cars .h5-tab-slider-left-items .content-area .title {
    color: #181818;
    font-size: 22px;
    line-height: 32px;
    font-family: var(--body-font);
    font-weight: 800;
    margin-bottom: 0;
}

.most-popular-cars .h5-tab-slider-left-items .content-area .rating {
    color: var(--main-color-one);
}

.most-popular-cars .h5-tab-slider-left-items .content-area .rating .checked {
    fill: var(--main-color-one);
}

.most-popular-cars .h5-tab-slider-left-items .content-area .price {
    padding-top: 10px;
    color: #181818;
    font-size: 16px;
    line-height: 26px;
    font-family: var(--body-font);
    font-weight: 400;
}

.most-popular-cars .h5-tab-slider-left-active {
    height: 100%;
}

.most-popular-cars .h5-tab-slider-right-items .thumb {
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.most-popular-cars .h5-tab-slider-right-items .content .title {
    padding-top: 20px;
    color: #181818;
    font-size: 30px;
    line-height: 30px;
    font-family: var(--body-font);
    font-weight: 600;
    margin-bottom: 0;
}

.most-popular-cars .h5-tab-slider-right-items .content .list-item-wrap {
    list-style: none;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
}

.most-popular-cars .h5-tab-slider-right-items .content .list-item-wrap .list-items {
    padding: 0 20px;
}

.most-popular-cars .h5-tab-slider-right-items .content .list-item-wrap .list-items .icon {
    padding-left: 10px;
}

.most-popular-cars .h5-tab-slider-right-items .content .main-btn-wrap {
    padding-bottom: 20px;
}

.most-popular-tab-content {
    position: relative;
    z-index: 0;
}

.most-popular-tab-content .slider-preloader {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 48, 71, 0.8);
    content: '';
    z-index: 1;
    display: none;
}

.most-popular-tab-content .slider-preloader .loader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    height: 100%;
}

.new-facilities .left-column .thumb-small {
    position: absolute;
    top: 60%;
    left: 60%;
    width: 100%;
}

.new-facilities .right-column {
    float: right;
    height: 100%;
    display: -ms-grid;
    display: grid;
    place-content: center;
}

.new-facilities .right-column .paragraph {
    color: #181818;
    font-size: 14px;
    line-height: 30px;
    font-family: var(--body-font);
    font-weight: 400;
}

.testimonial-section {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
    position: relative;
}

.testimonial-section::before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(0, 0, 0, 0.6);
}

.testimonial-section .section-title p {
    color: #fff;
}

.h5-testimonial-inner {
    position: relative;
    border-radius: 4px;
    padding: 25px 50px;
    margin-top: 30px;
}

.h5-testimonial-inner::before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 16px #00a0e34D;
    box-shadow: 0 3px 16px #00a0e34D;
}

.h5-testimonial-inner::after {
    position: absolute;
    left: 10%;
    bottom: 41px;
    margin: auto;
    border-radius: 0 0 4px 4px;
    content: '';
    width: 80%;
    height: 90px;
    background-color: #fff;
    display: block;
    z-index: -1;
}

.h5-testimonial-inner .slider-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 120%;
    position: absolute;
    left: -10%;
    top: 40%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.h5-testimonial-inner .slider-arrow .slick-next,
.h5-testimonial-inner .slider-arrow .slick-prev {
    cursor: pointer;
    color: #fff;
    font-size: 25px;
    position: relative;
}

.h5-testimonial-inner .slider-arrow .slick-next::before,
.h5-testimonial-inner .slider-arrow .slick-prev::before {
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    background-color: var(--main-color-one);
    -webkit-transition: all 5s;
    -o-transition: all 5s;
    transition: all 5s;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    -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;
}

.h5-testimonial-inner .slider-arrow .slick-next:hover::before,
.h5-testimonial-inner .slider-arrow .slick-prev:hover::before {
    opacity: 1;
    visibility: visible;
}

.h5-testimonial-inner .slider-arrow .slick-prev::before {
    top: 50%;
    left: -5px;
}

.h5-testimonial-inner .slider-arrow .slick-next {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.h5-testimonial-inner .slider-arrow .slick-next::before {
    top: 50%;
    right: -5px;
}

.h5-testimonial-single-items .icon {
    position: absolute;
    color: #bbbbbb;
    left: 0px;
    right: 0px;
    font-size: 173px;
    z-index: -1;
    opacity: 0.1;
}

.h5-testimonial-single-items p {
    color: #181818;
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
    margin: 0;
    font-style: italic;
}

.h5-testimonial-single-items .author-meta {
    padding-bottom: 20px;
}

.h5-testimonial-single-items .author-meta .name {
    color: var(--main-color-one);
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 0px;
}

.h5-testimonial-single-items .author-meta .designation {
    color: #181818;
    font-size: 13px;
    line-height: 26px;
    font-weight: 600;
}

.h5-testimonial-single-items .thumb img {
    border: 2px solid #fff;
    max-width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto;
    background-color: #DBE3E9;
}

.awesome-blog-section .row {
    position: relative;
}

.awesome-blog-section .read-more-wrap.style-right {
    position: absolute;
    right: 30px;
    bottom: 12px;
}

.h5-awesome-blog-single-item {
    padding-top: 40px;
}

.h5-awesome-blog-single-item:hover .thumb-area img {
    -webkit-transform: scale(1.2) rotate(-5deg);
    -ms-transform: scale(1.2) rotate(-5deg);
    transform: scale(1.2) rotate(-5deg);
}

.h5-awesome-blog-single-item:hover .thumb-area::after {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.h5-awesome-blog-single-item:hover .content-area .read-more-wrap .read-more {
    color: var(--main-color-one);
}

.h5-awesome-blog-single-item .thumb-area {
    overflow: hidden;
    position: relative;
}

.h5-awesome-blog-single-item .thumb-area img {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.h5-awesome-blog-single-item .thumb-area::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(24, 24, 24, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.h5-awesome-blog-single-item .content-area .title {
    margin-bottom: 0;
    color: #181818;
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
}

.h5-awesome-blog-single-item .content-area p {
    margin-bottom: 0;
    color: #181818;
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
}

.h5-awesome-blog-single-item .content-area .read-more-wrap .read-more {
    color: #181818;
    -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;
}

.blog-page-content .content {
    height: 100%;
    display: -ms-grid;
    display: grid;
}

.blog-page-content .content.bg-none {
    background-color: transparent;
    padding: 0;
}

.blog-page-content .content .title {
    color: #181818;
    font-size: 30px;
    line-height: 45px;
    font-family: var(--body-font);
    font-weight: 600;
}

.blog-page-content .content .post-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    border-bottom: 1px solid rgba(24, 24, 24, 0.3);
}

.blog-page-content .content .post-meta.border-none {
    border-bottom: none;
}

.blog-page-content .content .post-meta .list-wrap {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-page-content .content .post-meta .list-wrap.two {
    -ms-flex-pack: distribute;
    justify-content: space-around;
    color: #181818;
    text-align: center;
}

.blog-page-content .content .post-meta .list-wrap.two li {
    padding-left: 5px;
}

.blog-page-content .content .post-meta .author {
    position: relative;
    padding-left: 20px;
}

.blog-page-content .content .post-meta .author::before {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--main-color-one);
}

.blog-page-content .content p {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 400;
    margin-bottom: 0;
}

.blog-page-content .content .read-more-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.blog-page-content .content .read-more-area .read-more {
    width: 60%;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.blog-page-content .content .read-more-area .read-more a {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    position: relative;
    -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;
}

.blog-page-content .content .read-more-area .read-more a:hover {
    padding-left: 60px;
    color: var(--main-color-one);
}

.blog-page-content .content .read-more-area .read-more a:hover::before {
    background-color: var(--main-color-one);
    visibility: visible;
    opacity: 1;
}

.blog-page-content .content .read-more-area .read-more a::before {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background-color: #181818;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.blog-page-content .content .read-more-area .share {
    width: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.blog-page-content .content .read-more-area .share .share-text {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 400;
}

.blog-page-content .content .read-more-area .share .line-shap {
    padding: 8px 0;
    position: relative;
    width: 113px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.blog-page-content .content .read-more-area .share .line-shap::before {
    content: '';
    display: block;
    background-color: #CCD3DC;
    width: 50px;
    height: 1px;
}

.blog-page-content .content .read-more-area .share .line-shap::after {
    content: '';
    display: block;
    background-color: #CCD3DC;
    width: 50px;
    height: 1px;
}

.blog-page-content .content .read-more-area .share .line-shap .caret {
    position: relative;
}

.blog-page-content .content .read-more-area .share .line-shap .caret::after {
    content: '';
    display: block;
    width: 9px;
    height: 1px;
    background-color: #CCD3DC;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    bottom: -3px;
    right: -1px;
}

.blog-page-content .content .read-more-area .share .line-shap .caret::before {
    content: '';
    display: block;
    width: 8px;
    height: 1px;
    background-color: #CCD3DC;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    bottom: -3px;
    right: -7px;
}

.blog-page-content .content .read-more-area .share .icon-wrap {
    padding: 0;
    margin: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.blog-page-content .content .read-more-area .share .icon-wrap .icon {
    color: #181818;
    font-size: 14px;
    margin: 0 5px;
    padding: 0 2px;
    -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;
}

.blog-page-content .content .read-more-area .share .icon-wrap .icon:hover {
    color: var(--main-color-one);
}

.blog-single-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.blog-single-item:hover .thumb-area .thumb {
    -webkit-transform: scale(1.1) rotate(-2deg);
    -ms-transform: scale(1.1) rotate(-2deg);
    transform: scale(1.1) rotate(-2deg);
}

.blog-single-item:hover .thumb-area .thumb::after {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.blog-single-item .content {
    padding: 30px 25px;
}

.blog-single-item .thumb-area {
    position: relative;
    overflow: hidden;
}

.blog-single-item .thumb-area .thumb {
    position: relative;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.blog-single-item .thumb-area .thumb img {
    width: 100%;
    height: auto;
}

.blog-single-item .thumb-area .thumb::after {
    position: absolute;
    z-index: 1;
    content: '';
    display: block;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(251, 9, 55, 0.1);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.blog-single-item .thumb-area .date {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    background-color: #181818;
    width: 80px;
    height: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blog-single-item .thumb-area .date .day {
    display: block;
    color: #fff;
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
}

.blog-single-item .thumb-area .date .month {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.blog-details-items .content .title {
    font-size: 40px;
    line-height: 50px;
}

.blog-details-items p {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 400;
    margin-bottom: 0;
}

.blog-details-items .blog-details-inner {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.blog-details-items .blog-details-inner .thumb {
    width: 50%;
}

.blog-details-items .blog-details-inner .content {
    width: 50%;
    padding-left: 40px;
}

.blog-details-items .blog-details-inner .content .title {
    color: #181818;
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(24, 24, 24, 0.5);
}

.blog-details-items .blog-details-inner .content p {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.blog-details-items .blog-details-inner .content .list-items {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.blog-details-items .blog-details-inner .content .list-items .item {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    padding: 5px 0;
}

.blog-details-items .blog-details-inner .content .list-items .item .icon {
    color: var(--main-color-one);
    font-size: 10px;
    padding-right: 5px;
}

.blog-details-items blockquote {
    background-color: #F5F5F5;
    margin: 30px 0;
    color: #181818;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.blog-details-items blockquote .quote-icon {
    width: 7%;
    font-size: 40px;
    color: rgba(251, 9, 55, 0.3);
}

.blog-details-items blockquote p {
    width: 93%;
}

.blog-details-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.blog-details-footer .left {
    width: 50%;
}

.blog-details-footer .left .icon-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 14px #12121712;
    box-shadow: 0 3px 14px #12121712;
    width: 200px;
    padding: 20px;
    list-style: none;
    margin: 0;
}

.blog-details-footer .left .share-text {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.blog-details-footer .left .icon {
    font-size: 15px;
    -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;
}

.blog-details-footer .left .icon:hover {
    color: var(--main-color-one);
}

.blog-details-footer .right {
    width: 50%;
}

.blog-details-footer .right .list-wrap {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #181818;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    width: 190px;
    float: right;
    padding: 0;
    margin: 0;
}

.blog-details-footer .right .list-wrap .icon {
    color: var(--main-color-one);
}

.comment-area .comments-title {
    color: #181818;
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
}

.comment-area .comments-title.bgggx {
    color: #181818;
    border-radius: 2px;
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
    background: #fafafa;
    padding: 5px 15px;
}

.comment-area .comment-list {
    margin: 0px;
    padding: 0px;
    margin-top: 15px;
    margin-bottom: 40px;
    border-top: 1px solid #f7f6f6;
    padding-top: 10px;
}

.comment-area .comment-list.mrgnggx {
    border-top: 0px !important;
    margin-top: 0px;
    padding-top: 0px;
}

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

.comment-area .comment-list li:not(:last-child) .single-comment-wrap {
    border-bottom: 1px solid #f7f6f6;
    padding-bottom: 20px;
    margin-bottom: 0px;
}

.comment-area .comment-list li .children {
    padding-left: 0;
}

.comment-area .comment-list li .children li {
    padding-left: 50px;
}

.comment-area .single-comment-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding-top: 20px;
    padding-bottom: 20px;
}

.comment-area .single-comment-wrap .thumb {
    width: 44px;
    margin-right: 20px;
    min-width: 44px;
    border-radius: 100%;
    overflow: hidden;
    height: 44px;
    border: 2px solid rgba(202, 209, 220, 0.5);
}

.comment-area .single-comment-wrap .content {
    width: 92%;
}

.comment-area .single-comment-wrap .content .title-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.comment-area .single-comment-wrap .content .title {
    color: #181818;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 0px;
    margin-top: 10px;
}

.comment-area .single-comment-wrap .content .title.cmmntsttile {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 6px;
    margin-top: 0px;
}

.comment-area .single-comment-wrap .content .date {
    color: #181818;
    font-size: 12px;
    line-height: 24px;
    font-weight: 400;
    position: relative;
    top: 0px;
}

.comment-area .single-comment-wrap .content .date.cmmntsdate {
    top: -4px;
}

.comment-area .single-comment-wrap .content .date i {
    position: relative;
    right: 3px;
    top: -1px;
    color: #00a0e3;
}

.comment-area .single-comment-wrap .content .reply {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-top: 20px;
}

.comment-area .single-comment-wrap .content .reply a {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    padding: 5px 10px;
    border: 1px solid #181818;
    border-radius: 20px;
    display: block;
    width: 110px;
    text-align: center;
}

.comment-area .single-comment-wrap .content .reply a .icon {
    font-size: 12px;
    display: inline-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;
}

.comment-area .single-comment-wrap .content .reply a:hover .icon {
    margin-right: 10px;
    margin-left: -10px;
}

.comment-area .comment-form-wrap .reply-title {
    color: #181818;
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.comment-area .comment-form-wrap .sbbtxxxt {
    color: #181818;
    font-size: 15px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 15px;
    border-top: 1px solid #f1f1f1;
    padding-top: 10px;
}

.comment-area .comment-form-wrap .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.comment-area .comment-form-wrap .form-group label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.comment-area .comment-form-wrap .form-group .form-control {
    margin: 0px;
    border: 1px solid #CAD1DC;
    border-radius: 0;
}

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

.comment-area .comment-form-wrap .form-group .form-control .comment-area .comment-form-wrap .form-group .form-control::-webkit-input-placeholder {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 400;
}

.comment-area .comment-form-wrap .form-group .form-control:-ms-input-placeholder {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 400;
}

.comment-area .comment-form-wrap .form-group .form-control::-ms-input-placeholder {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 400;
}

.comment-area .comment-form-wrap .form-group .form-control::placeholder {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 400;
}

.comment-area .comment-form-wrap .form-group .main-btn-wrap {
    margin-top: 8px;
}

.comment-area .comment-form-wrap .form-group .main-btn-wrap .main-btn {
    border-radius: 30px;
    border: none;
    min-width: 110px;
}

.related-post .related-post-title {
    color: #181818;
    font-size: 22px;
    line-height: 34px;
    font-weight: 700;
    display: table;
    padding-right: 80px;
    border-bottom: 2px solid rgba(24, 24, 24, 0.8);
}

.related-post .latest-news-slider-items {
    width: 100%;
}

.related-post .latest-news-slider-items .cards {
    margin-right: 0;
}

.related-post .latest-news-slider-items .cards .cards-img {
    margin-right: 0;
    border-radius: 4px 4px 0 0;
}

.related-post .latest-news-slider-items .cards .cards-body {
    border-radius: 0 0 4px 4px;
    margin-left: 0;
    border-right: 1px solid rgba(24, 24, 24, 0.2);
    border-bottom: 1px solid rgba(24, 24, 24, 0.2);
    border-left: 1px solid rgba(24, 24, 24, 0.2);
    background-color: #fff;
}

.shop-page-grid-view .product-filtering-area {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.shop-page-grid-view .product-filtering-area .filter-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.shop-page-grid-view .product-filtering-area .filter-left .nav-tabs {
    border: 0 !important;
}

.shop-page-grid-view .product-filtering-area .filter-left .nav-tabs .nav-link {
    border: 0 !important;
    color: #181818;
    font-size: 20px;
    padding: 8px 10px;
    line-height: 20px;
    text-align: center;
}

.shop-page-grid-view .product-filtering-area .filter-left .nav-tabs .nav-link.active {
    color: #181818;
    border: 1px solid #CAD1DC !important;
    border-radius: 0 !important;
}

.shop-page-grid-view .product-filtering-area .filter-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.shop-page-grid-view .product-filtering-area .filter-right .sorting-text {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 400;
    padding-right: 20px;
}

.shop-page-grid-view .grid-list-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: left;
}

.grid-list-column-item {
    width: 33.33%;
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid #CAD1DC;
    background: #ffffff;
    position: relative;
    z-index: 0;
    padding: 0px 0px 0px 0px;
    margin: -1px;
    position: relative;
    z-index: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.grid-list-column-item:hover {
    -webkit-box-shadow: 0 6px 12px rgba(0, 160, 227, 0.26);
    box-shadow: 0 6px 12px rgba(0, 160, 227, 0.26);
}

.grid-list-column-item:hover::after {
    top: 0;
    border-radius: 0;
    background-color: #fff;
}

.grid-list-column-item:hover .main-btn-wrap .main-btn {
    border: none;
    background-color: var(--main-color-one);
    color: #F5F5F5;
    -webkit-box-shadow: 0px 6px 20px -8px rgba(0, 160, 227, 0.9);
    box-shadow: 0px 6px 20px -8px rgba(0, 160, 227, 0.9);
}

.grid-list-column-item:hover .main-btn-wrap .main-btn:hover {
    background-color: var(--main-color-one);
    -webkit-box-shadow: 0px 10px 20px -8px var(--main-color-one);
    box-shadow: 0px 10px 20px -8px var(--main-color-one);
}

.grid-list-column-item .price-drop-tag {
    position: absolute;
    left: 20px;
    background-color: #111111;
    border-radius: 4px;
    padding: 3px 10px 1px 10px;
    color: #fff;
    font-size: 10px;
    line-height: 20px;
    top: 15px;
    z-index: 2;
    font-family: var(--body-font);
    font-weight: 600;
}

.grid-list-column-item .price-drop-tag::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-right: 10px solid #111111;
    border-bottom: 8px solid transparent;
}

.grid-list-column-item .thumb {
    border-bottom: 0px solid #eeeeee;
    overflow: hidden;
    min-height: 150px;
    position: relative;
}

.grid-list-column-item .thumb img.hvrimg {
    position: absolute;
    top: 0px;
    z-index: 1;
}

.grid-list-column-item:hover .hvrimg {
    visibility: hidden;
    transition: opacity .4s, visibility 0s .4s;
    opacity: 0
}

.grid-list-column-item .thumb img {
    transform: scale(1);
    transition: 0.5s ease all;
}

.grid-list-column-item:hover .thumb img {
    transform: scale(1.1);
    -webkit-filter: grayscale(0);
    filter: none;
}

.grid-list-column-item .contnt_bxxx {
    padding: 20px 15px 15px 15px;
    text-align: left;
}

.grid-list-column-item .contnt_bxxx .main-btn-wrap .main-btn {
    min-width: 130px;
    position: absolute;
    right: 15px;
    bottom: 22px;
    color: #fff;
    padding: 3px 12px 3px 13px;
    border-radius: 4px !important;
    font-size: 14px;
}

.grid-list-column-item .title {
    color: #181818;
    font-size: 18px;
    margin-top: 0px;
    margin-bottom: 2px;
    line-height: 24px;
    font-family: var(--main-color-one);
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 50px;
}

.prdct_code {
    font-size: 12px;
    color: #000000;
    display: block;
    margin-bottom: 4px;
    margin-top: 4px;
    text-transform: none;
    font-weight: 500;
}

.grid-list-column-item.style-02 {
    padding: 30px 15px 28px;
    position: relative;
    z-index: 0;
}

.grid-list-column-item.style-02:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    z-index: 9;
}

.grid-list-column-item.style-02:hover .thumb img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.grid-list-column-item.style-02:hover .car-functional-wrap {
    -webkit-transform: translateY(82%);
    -ms-transform: translateY(82%);
    transform: translateY(82%);
    opacity: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 9;
}

.grid-list-column-item.style-02 .sub-title {
    color: #181818;
    font-size: 16px;
    line-height: 26px;
}

.grid-list-column-item.style-02 .thumb img {
    overflow: hidden;
    -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;
}

.grid-list-column-item.style-02 .price-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.grid-list-column-item.style-02 .price-wrap .price {
    width: 50%;
}

.grid-list-column-item.style-02 .price-wrap .price .common-price-style {
    font-size: 20px;
    line-height: 30px;
    font-family: var(--body-font);
    font-weight: 600;
    padding-top: 0;
    text-align: left;
}

.grid-list-column-item.style-02 .price-wrap .price .common-rating-style {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.grid-list-column-item.style-02 .price-wrap .cart {
    width: 50%;
}

.grid-list-column-item.style-02 .price-wrap .cart .icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-box-shadow: 0px 4px 7px rgba(24, 24, 24, 0.26);
    box-shadow: 0px 4px 7px rgba(24, 24, 24, 0.26);
    display: block;
    float: right;
}

.grid-list-column-item.style-02 .car-functional-wrap {
    padding-left: 15px;
    padding-right: 15px;
    border-right: 1px solid #CAD1DC;
    border-bottom: 1px solid #CAD1DC;
    border-left: 1px solid #CAD1DC;
    background-color: #fff;
    padding-bottom: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: absolute;
    width: calc(100% + 2px);
    left: -1px;
    bottom: 1px;
    opacity: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.grid-list-column-item.style-02 .car-functional-wrap__item .power {
    color: #181818;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}

.grid-list-column-item.style-02 .car-functional-wrap__item .icon {
    color: #181818;
    font-size: 16px;
}

.grid-list-column-item.style-02 .car-functional-wrap__item .force {
    color: #181818;
    font-size: 12px;
    line-height: 22px;
}

.grid-list-column-item.list-view {
    width: 48%;
}

.grid-list-column-item.list-view.style-02 .thumb {
    width: 35%;
    padding-right: 10px;
}

.grid-list-column-item.list-view.style-02 .grid-list-column-item__content {
    width: 65%;
}

.grid-list-column-item.list-view.style-02:hover .car-functional-wrap {
    -webkit-transform: translateY(95%);
    -ms-transform: translateY(95%);
    transform: translateY(95%);
}

.grid-list-column-item.list-view:hover::after {
    left: 0;
    border-radius: 0;
    background-color: #fff;
}

.grid-list-column-item.list-view .thumb {
    width: 30%;
}

.grid-list-column-item.list-view::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 0;
    top: 0;
    background-color: #F5F5F5;
    display: block;
    z-index: -1;
    border-radius: 30px 0 0 30px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.grid-list-column-item__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 40px;
}

.grid-list-column-item__content {
    width: 70%;
    text-align: left;
}

.grid-list-column-item__content .common-rating-style {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.common-price-style {
    color: #181818;
    font-size: 16px;
    line-height: 26px;
    font-family: var(--body-font);
    font-weight: 600;
    padding-top: 10px;
}

.common-price-style span {
    font-size: 16px;
    margin-right: 5px;
}

.common-price-style span.cutprice {
    font-weight: 500;
    margin-left: 5px;
    color: #a7a7a7 !important;
}

.common-price-style .black {
    color: #181818;
}

.footer-area {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
    background-color: rgba(24, 24, 24, 0.99);
}

.footer-area .banner__header__follow_us ul li .icon {
    color: #181818 !important;
    font-size: 12px;
    color: #fff;
}

.footer-area.style-02 .footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-area.style-02 .footer-top .container {
    border-left: 0px;
    border-right: 0px;
}

.footer-area.style-02 .copyright-area {
    padding: 0;
}

.footer-area.style-02 .copyright-area .container {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-top .contact-area .icon {
    padding-right: 10px;
    float: left;
}

.footer-top .widget.footer-widget p {
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
}

.footer-top .widget .widget-title {
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 18px;
    color: #00afef !important;
}

.footer-top .widget.widget_nav_menu ul li {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--body-font);
    opacity: 0.9;
}

.footer-top .widget-top {
    color: #fff;
}

.footer-top .widget-top .contact-info-name {
    font-size: 14px;
    line-height: 24px;
    font-weight: 200;
}

.footer-top .widget-top .contact-info {
    font-size: 13px;
    line-height: 24px;
    font-weight: 400;
}

.copyright-area {
    color: #fff;
    font-size: 13px;
    line-height: 24px;
    font-family: var(--menu-font);
    font-weight: 400;
}

.copyright-area .coypright-icon {
    color: var(--main-color-one);
    font-size: 11px;
    margin: 0 5px;
}

.copyright-area .copyright-area-inner {
    padding: 15px 0px;
}

.back-to-top {
    position: fixed;
    left: 33px;
    bottom: 81px;
    text-align: center;
    line-height: 50px;
    z-index: 9;
    cursor: pointer;
    display: none;
}

.back-to-top .back-top::before {
    content: "\f114";
    font-family: "Flaticon";
    display: block;
    color: #00a0e3;
    font-size: 40px;
    position: absolute;
    top: -31px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.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: 99999;
    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(--main-color-one);
    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(--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(--main-color-one);
    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);
    }
}

.main-btn-wrap .main-btn {
    min-width: 150px;
    background-color: var(--main-color-one);
    color: #fff;
    padding: 10px 25px;
    text-align: center;
    border-radius: 25px;
    font-size: 13px;
    display: inline-block;
    text-transform: capitalize;
    font-family: var(--body-font);
    font-weight: 500;
    box-shadow: 0px;
    -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;
}

.main-btn-wrap .main-btn:hover {
    -webkit-box-shadow: 0px 10px 20px -8px var(--main-color-one);
    box-shadow: 0px 10px 20px -8px var(--main-color-one);
    background-color: var(--main-color-one);
}

.main-btn-wrap .main-btn.small {
    min-width: 85px;
    padding: 8px 0px;
}

.main-btn-wrap .main-btn.ls {
    min-width: 130px;
    padding: 8px 8px;
}

.main-btn-wrap .main-btn.uppercase {
    text-transform: uppercase;
}

.main-btn-wrap .main-btn.border {
    border: 1px solid #00a0e3;
    background-color: transparent;
    color: var(--main-color-one);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.main-btn-wrap .main-btn.black {
    background-color: #181818;
    -webkit-box-shadow: 0px 6px 20px -8px rgba(24, 24, 24, 0.9);
    box-shadow: 0px 6px 20px -8px rgba(24, 24, 24, 0.9);
    border: none;
}

.main-btn-wrap .main-btn.black:hover {
    background-color: var(--main-color-one);
    -webkit-box-shadow: 0px 10px 20px -8px #181818;
    box-shadow: 0px 10px 20px -8px #181818;
    background-color: #181818;
}

.main-btn-wrap .main-btn.white {
    background-color: #fff;
    color: #181818;
    -webkit-box-shadow: 0px 6px 20px -8px rgba(255, 255, 255, 0.9);
    box-shadow: 0px 6px 20px -8px rgba(255, 255, 255, 0.9);
}

.main-btn-wrap .main-btn.white:hover {
    -webkit-box-shadow: 0px 10px 20px -8px #fff;
    box-shadow: 0px 10px 20px -8px #fff;
}

.main-btn-wrap .main-btn.black-border {
    border: 1px solid #181818;
    background-color: transparent;
    color: #181818;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.main-btn-wrap .main-btn.black-border:hover {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.main-btn-wrap .main-btn.gray-border {
    border: 1px solid #868686;
    background-color: transparent;
    color: #868686;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.main-btn-wrap .main-btn.gray-border:hover {
    border: 1px solid var(--main-color-one);
    background-color: var(--main-color-one);
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
}

.main-btn-wrap .main-btn.gray {
    background-color: #D1D1D1;
    color: #181818;
    -webkit-box-shadow: 0px 6px 20px -8px rgba(209, 209, 209, 0.9);
    box-shadow: 0px 6px 20px -8px rgba(209, 209, 209, 0.9);
}

.main-btn-wrap .main-btn.gray:hover {
    -webkit-box-shadow: 0px 10px 20px -8px #D1D1D1;
    box-shadow: 0px 10px 20px -8px #D1D1D1;
}

.main-btn-wrap .main-btn.md {
    padding: 13px 15px;
}

.main-btn-wrap .main-btn.lg {
    padding: 15px 20px;
}

.read-more-wrap .read-more {
    color: var(--main-color-one);
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 500;
    position: relative;
}

.read-more-wrap .read-more.gray {
    color: #181818;
}

.read-more-wrap .read-more.uppercase {
    text-transform: uppercase;
}

.read-more-wrap .read-more::after {
    position: absolute;
    content: "\e628";
    font-family: 'themify';
    font-size: 12px;
    line-height: 24px;
    padding-left: 5px;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    display: inline-block;
    right: -15px;
    top: -3px;
    -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;
}

.read-more-wrap .read-more:hover::after {
    right: -25px;
}

.button-normal,
.button-medium,
.button-large {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.section-title .title {
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    font-family: var(--menu-font);
    color: var(--main-color-one);
    letter-spacing: 4px;
    position: relative;
    z-index: 0;
    padding-left: 30px;
    text-transform: capitalize;
    margin: 0;
}

.section-title .title::before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform: translateX(-150%);
    -ms-transform: translateX(-150%);
    transform: translateX(-150%);
    z-index: 1;
    width: 20px;
    height: 1px;
    background-color: var(--main-color-one);
}

.section-title .title.both-line {
    padding-left: 30px;
    padding-right: 30px;
}

.section-title .title.both-line.white::after,
.section-title .title.both-line.white::before {
    background-color: #fff;
}

.section-title .title.both-line::before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform: translateX(-150%);
    -ms-transform: translateX(-150%);
    transform: translateX(-150%);
    z-index: 1;
    width: 20px;
    height: 1px;
    background-color: var(--main-color-one);
}

.section-title .title.both-line::after {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    z-index: 1;
    width: 20px;
    height: 1px;
    background-color: var(--main-color-one);
}

.section-title .title.white {
    color: #fff;
}

.section-title .title.white::before {
    background-color: #fff;
}

.section-title .title.gray {
    color: #181818;
}

.section-title .title.gray::before {
    background-color: #181818;
}

.section-title .title.gray::after {
    background-color: #181818;
}

.section-title .title.black {
    color: #363839;
}

.section-title .title.black1 {
    color: #181818;
}

.section-title .title.black1::before {
    background-color: #181818;
}

.section-title .title.uppercase {
    text-transform: uppercase;
}

.section-title .heading-02 {
    font-size: 32px;
    font-family: var(--body-font);
    line-height: 37px;
    font-weight: 700;
    margin: 0;
    color: #181818;
}

.section-title .heading-02.white {
    color: #fff;
}

.section-title .heading-04 {
    font-size: 20px;
    font-family: var(--body-font);
    line-height: 30px;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.section-title p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}

.counterup-section {
    width: 60%;
    margin: auto;
}

.single-couterup {
    text-align: center;
}

.single-couterup .content .count-wrap {
    color: #181818;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 55px;
    font-family: var(--body-font);
    line-height: 65px;
    font-weight: 700;
    padding: 15px 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.single-couterup .content .count-wrap .plus {
    width: 50px;
}

.single-couterup .content .title {
    color: var(--main-color-one);
    font-size: 16px;
    font-family: var(--body-font);
    line-height: 22px;
    font-weight: 500;
}

.custom-select-box.w-100 .nice-select {
    width: 100%;
}

.custom-select-box.w-100 .nice-select.open .list {
    width: 100%;
}

.custom-select-box select {
    display: none;
}

.custom-select-box .nice-select {
    background-color: #fff;
    border-radius: 5px;
    border: solid 1px #e8e8e8;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    height: 42px;
    line-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: auto;
}

.custom-select-box .nice-select:hover {
    border-color: #dbdbdb;
}

.custom-select-box .nice-select:active,
.custom-select-box .nice-select.open,
.custom-select-box .nice-select:focus {
    border-color: #999;
}

.custom-select-box .nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px;
}

.custom-select-box .nice-select.open:after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.custom-select-box .nice-select.open .list {
    z-index: 999;
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}

.custom-select-box .nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none;
}

.custom-select-box .nice-select.disabled:after {
    border-color: #cccccc;
}

.custom-select-box .nice-select.wide {
    width: 100%;
}

.custom-select-box .nice-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.custom-select-box .nice-select.right {
    float: right;
}

.custom-select-box .nice-select.right .list {
    left: auto;
    right: 0;
}

.custom-select-box .nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.custom-select-box .nice-select.small:after {
    height: 4px;
    width: 4px;
}

.custom-select-box .nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
}

.custom-select-box .nice-select .list {
    background-color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 0px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    -o-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
}

.custom-select-box .nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}

.custom-select-box .nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 18px;
    text-align: left;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.custom-select-box .nice-select .option:hover,
.custom-select-box .nice-select .option.focus,
.custom-select-box .nice-select .option.selected.focus {
    background-color: #f6f6f6;
}

.custom-select-box .nice-select .option.selected {
    font-weight: bold;
}

.custom-select-box.style-02 {
    min-width: 70px;
}

.custom-select-box.style-02 .nice-select {
    background-color: transparent;
    border: none;
    color: #222222;
    text-transform: uppercase;
}

.custom-select-box.style-02 .nice-select .list {
    background-color: rgba(24, 24, 24, 0.9);
    border-radius: 0;
}

.custom-select-box.style-02 .nice-select .option:hover,
.custom-select-box.style-02 .nice-select .option.focus,
.custom-select-box.style-02 .nice-select .option.selected.focus {
    background-color: #181818;
}

.calendar .form-control {
    font-size: 11px;
    color: #181818;
    font-style: italic;
    padding: 19px 30px !important;
}

label {
    display: block;
    margin-bottom: 0;
}

input:focus {
    outline: none;
}

.arrow-down-wrap.style-02 {
    width: 35px;
    position: absolute;
    bottom: 5%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.arrow-down-wrap.style-02 .arrow-down {
    width: 16px;
    height: 30px;
    border: 1px solid #fff;
    border-radius: 8px;
    position: relative;
    display: block;
}

.arrow-down-wrap.style-02 .arrow-down::before {
    position: absolute;
    top: 3px;
    left: 3px;
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 5px;
    border: 1px solid #fff;
    -webkit-animation: scrollDown 2s infinite;
    animation: scrollDown 2s infinite;
}

.arrow-down-wrap.style-02 .scroll-down-two {
    width: 27px;
    margin: auto;
}

.arrow-down-wrap.style-02 .scroll-down-two span {
    position: absolute;
    width: 8px;
    height: 1px;
    opacity: 0;
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
    -webkit-animation: move 3s ease-out infinite;
    animation: move 3s ease-out infinite;
}

.arrow-down-wrap.style-02 .scroll-down-two span:first-child {
    -webkit-animation: move 3s ease-out 1s infinite;
    animation: move 3s ease-out 1s infinite;
}

.arrow-down-wrap.style-02 .scroll-down-two span:nth-child(2) {
    -webkit-animation: move 3s ease-out 2s infinite;
    animation: move 3s ease-out 2s infinite;
}

.arrow-down-wrap.style-02 .scroll-down-two span:before,
.arrow-down-wrap.style-02 .scroll-down-two span:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: #fff;
}

.arrow-down-wrap.style-02 .scroll-down-two span:before {
    left: 0;
    -webkit-transform: skew(0deg, 30deg);
    -ms-transform: skew(0deg, 30deg);
    transform: skew(0deg, 30deg);
}

.arrow-down-wrap.style-02 .scroll-down-two span:after {
    right: 0;
    width: 50%;
    -webkit-transform: skew(0deg, -30deg);
    -ms-transform: skew(0deg, -30deg);
    transform: skew(0deg, -30deg);
}

@-webkit-keyframes scrollDown {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    80% {
        -webkit-transform: translate(0, 12px);
        transform: translate(0, 12px);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes scrollDown {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    80% {
        -webkit-transform: translate(0, 12px);
        transform: translate(0, 12px);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes move {
    25% {
        opacity: 1;
    }

    33% {
        opacity: 1;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

    67% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(30px) scale3d(0.5, 0.5, 0.5);
        transform: translateY(30px) scale3d(0.5, 0.5, 0.5);
    }
}

@keyframes move {
    25% {
        opacity: 1;
    }

    33% {
        opacity: 1;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

    67% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(30px) scale3d(0.5, 0.5, 0.5);
        transform: translateY(30px) scale3d(0.5, 0.5, 0.5);
    }
}

@-webkit-keyframes pulse {
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    to {
        opacity: 1;
    }
}

.closebtn {
    color: var(--main-color-one);
    font-size: 40px;
    width: 50px;
    text-align: center;
    height: 50px;
    cursor: pointer;
}

.common-rating-style {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.common-rating-style.left {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.common-rating-style input {
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.common-rating-style input:checked~label::after {
    opacity: 1;
}

.common-rating-style label {
    display: block;
    cursor: pointer;
    width: 15px;
    margin: 0 3px;
}

.common-rating-style label:hover~label::after {
    opacity: 1;
}

.common-rating-style label:hover::after {
    opacity: 1;
}

.common-rating-style label::before {
    content: '\f135';
    font-family: Flaticon;
    position: relative;
    display: block;
    font-size: 15px;
    color: #181818;
}

.common-rating-style label::after {
    content: '\f135';
    font-family: Flaticon;
    position: absolute;
    display: block;
    font-size: 15px;
    color: var(--main-color-one);
    top: 0;
    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;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.price-filter .ui-slider.ui-slider-horizontal.ui-widget.ui-widget-content.ui-corner-all {
    background-color: #CAD1DC;
    border: medium none;
    border-radius: 0;
    height: 5px;
    margin-bottom: 20px;
    margin-left: auto;
    position: relative;
    width: 100%;
    height: 3px;
}

.price-filter .ui-slider-handle.ui-state-default.ui-corner-all {
    background-color: #fff;
    border: 2px solid #CAD1DC;
    border-radius: 50%;
    height: 12px;
    width: 12px;
    outline: none;
}

.price-filter .ui-slider-range {
    background-color: var(--main-color-one);
}

.price-slider-amount>input[type="text"] {
    border: none;
    float: left;
    font-weight: bold;
    height: 30px;
    letter-spacing: 3px;
    margin-left: 5px;
    text-align: left;
    width: auto;
    background-color: transparent;
    font-size: 12px;
    line-height: 22px;
    font-family: var(--body-font);
    font-weight: 500;
    color: #181818;
}

.price-slider-amount {
    overflow: hidden;
}

.price-slider-amount>input[type="submit"] {
    border: none;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 500;
    background-color: #181818;
    padding: 5px 10px;
    border-radius: 20px;
    display: block;
    float: left;
    margin-right: 10px;
    text-transform: capitalize;
    -webkit-transition: all 400ms ease-out 0s;
    -o-transition: all 400ms ease-out 0s;
    transition: all 400ms ease-out 0s;
}

.product-details-tab .slick-slide img {
    margin: auto;
}

.product-details-tab .Product-tab-big {
    background-color: #F5F5F5;
    padding: 15px;
}

.product-details-tab .Product-tab-big .product-tab-big-active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.product-details-tab .product-tab-single-big-item {
    height: 450px;
    background: #ffffff;
}

.product-details-tab .product-tab-single-big-item img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.product-details-tab .Product-tab-small-active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: center;
    width: 100%;
}

.product-details-tab .Product-tab-small-active .slick-list.draggable {
    width: 100%;
    padding: 0px !important;
}

.product-details-tab .Product-tab-small-active .slick-list.draggable .slick-slide {
    margin-right: 10px;
    width: auto !important;
}

.product-details-tab .Product-tab-small-active .slick-list.draggable .slick-slide.slick-current img {
    border: 1px solid #00a0e3 !important;
}

.product-details-tab .Product-tab-small-active .slick-track {
    width: 100% !important;
    transform: translate3d(0px, 0px, 0px) !important;
}

.product-details-tab .product-tab-single-small-item {
    background-color: #F5F5F5;
    border: 1px solid rgba(24, 24, 24, 0.5);
    max-width: 70px;
    max-height: 70px;
    padding: 0px 0;
    cursor: pointer;
}

.product-details-tab .product-description .title {
    color: #181818;
    font-size: 26px;
    line-height: 32px;
    font-family: var(--body-font);
    font-weight: 700;
    margin-bottom: 0px;
}

.product-details-tab .product-description .rating-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product-details-tab .product-description .rating-wrap .how-many-rating {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 400;
    padding-left: 10px;
}

.product-details-tab .product-description .common-price-style {
    font-size: 24px;
}

.product-details-tab .product-description .common-price-style .black {
    font-weight: 600;
}

.product-details-tab .product-description p {
    color: #181818;
    font-size: 15px;
    line-height: 26px;
    font-family: var(--body-font);
    font-weight: 400;
    margin-bottom: 0;
}

.product-details-tab .product-description p.red {
    color: var(--main-color-one);
}

.product-details-tab .product-description .color-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    border-bottom: 1px solid rgba(24, 24, 24, 0.5);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.product-details-tab .product-description .color-list .color-text {
    width: 30%;
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 600;
}

.product-details-tab .product-description .color-list .color-list-row {
    width: 70%;
    padding: 0;
    margin: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product-details-tab .product-description .color-list .color-list-row .list-item {
    width: 33%;
}

.product-details-tab .product-description .color-list .color-list-row a {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 500;
    -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;
}

.product-details-tab .product-description .color-list .color-list-row a:hover {
    text-decoration: underline;
}

.product-details-tab .product-description .color-list.style-02 {
    margin-bottom: 24px;
}

.product-details-tab .product-description .color-list.style-02 .color-text {
    width: inherit;
    font-size: 20px;
    line-height: 30px;
    padding-right: 30px;
}

.product-details-tab .product-description .color-list.style-02 .color-list-row {
    padding-bottom: 13px;
}

.product-details-tab .product-description .color-list.style-02 .color-list-row .list-item {
    width: 40px;
}

.product-details-tab .product-description .color-list.style-02 .color-list-row .list-item a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    border: 2px solid #ffffff;
    border-radius: 4px;
    background-color: #fff;
    -webkit-box-shadow: 0px 1px 4px rgba(24, 24, 24, 0.5);
    box-shadow: 0px 1px 4px rgba(24, 24, 24, 0.5);
    display: inline-block;
    transition: none !important;
}

.product-details-tab .product-description .color-list.style-02 .color-list-row .list-item a:hover,
.product-details-tab .product-description .color-list.style-02 .color-list-row .list-item a.active {
    opacity: 1;
    background-image: url(../images/check-icon.png) !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    width: 36px;
    height: 36px;
}

border-color: #f00;
}

.product-details-tab .product-description .color-list.style-02 .color-list-row .list-item.gray a {
    background-color: #181818;
    -webkit-box-shadow: 0px 1px 4px rgba(24, 24, 24, 0.5);
    box-shadow: 0px 1px 4px rgba(24, 24, 24, 0.5);
}

.product-details-tab .product-description .color-list.style-02 .color-list-row .list-item.black a {
    background-color: #181818;
    -webkit-box-shadow: 0px 1px 4px rgba(24, 24, 24, 0.5);
    box-shadow: 0px 1px 4px rgba(24, 24, 24, 0.5);
}

.product-details-tab .product-description .color-list.style-02 .color-list-row .list-item.red a {
    background-color: var(--main-color-one);
    -webkit-box-shadow: 0px 1px 4px rgba(251, 9, 55, 0.5);
    box-shadow: 0px 1px 4px rgba(251, 9, 55, 0.5);
}

.product-details-tab .product-description .color-list.style-02 .color-list-row .list-item.yellow a {
    background-color: yellow;
    -webkit-box-shadow: 0px 1px 4px rgba(255, 255, 0, 0.5);
    box-shadow: 0px 1px 4px rgba(255, 255, 0, 0.5);
}

.product-details-tab .product-description .color-list.style-02 .color-list-row .list-item.blue a {
    background-color: blue;
    -webkit-box-shadow: 0px 1px 4px rgba(0, 0, 255, 0.5);
    box-shadow: 0px 1px 4px rgba(0, 0, 255, 0.5);
}

.product-details-tab .product-description .car-assets {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.product-details-tab .product-description .car-assets .car-assets-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 28%;
}

.product-details-tab .product-description .car-assets .car-assets-item:not(:last-child) {
    margin-right: 40px;
}

.product-details-tab .product-description .car-assets .car-assets-item .icon {
    color: #181818;
    font-size: 40px;
    padding-right: 20px;
}

.product-details-tab .product-description .car-assets .car-assets-item .content .sub-title {
    color: #181818;
    font-size: 16px;
    line-height: 26px;
    font-family: var(--body-font);
    font-weight: 400;
}

.product-details-tab .product-description .car-assets .car-assets-item .content .title {
    color: #181818;
    font-size: 20px;
    line-height: 30px;
    font-family: var(--body-font);
    font-weight: 600;
}

.product-details-tab .product-description .cart-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
}

.product-details-tab .product-description .cart-wrap .qty {
    border: 1px solid #181818;
    width: 66px;
    height: 44px;
    margin-right: 20px;
    text-align: center;
    color: #181818;
    border-radius: 4px;
}

.product-details-tab .product-description .cart-wrap input[type=number]::-webkit-outer-spin-button,
.product-details-tab .product-description .cart-wrap input[type=number]::-webkit-inner-spin-button {
    opacity: 1;
    height: 45px;
}

.product-details-tab .product-description .product-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.product-details-tab .product-description .product-meta .product-meta-name {
    color: #000000;
    font-size: 14px;
    line-height: 26px;
    font-family: var(--body-font);
    font-weight: 600;
    display: inline-block;
    padding-right: 10px;
    width: 140px;
}

.product-details-tab .product-description .product-meta .name {
    color: #888888;
    font-size: 14px;
    line-height: 26px;
    font-family: var(--body-font);
    font-weight: 500;
    display: inline-block;
}

.product-details-tab .product-description .product-meta .tag-list-row {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product-details-tab .product-information #myTab {
    border-bottom: 1px solid #181818;
}

.product-details-tab .product-information .nav-tabs .nav-link {
    border: none;
    color: var(--main-colo-one);
    font-size: 16px;
    margin-right: 10px;
    line-height: 30px;
    font-family: var(--body-font);
    font-weight: 600;
    padding: 7px 20px 7px 0px !important;
}

.product-details-tab .product-information .nav-tabs .nav-link.active {
    border-bottom: 1px solid var(--main-color-one) !important;
    color: var(--main-color-one);
    margin-bottom: 0px;
    background-color: transparent !important;
}

.product-details-tab .product-information .description-tab-content {
    padding-top: 20px;
}

.product-details-tab .product-information .description-tab-content p {
    color: #181818;
    font-size: 14px;
    line-height: 26px;
    font-family: var(--body-font);
    font-weight: 400;
}

.product-details-tab .product-information .description-tab-content .Featured ul {
    padding-left: 0;
    margin-bottom: 0;
}

.product-details-tab .product-information .description-tab-content .Featured ul li {
    list-style-type: none;
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.product-details-tab .product-information .description-tab-content .Featured ul li .icon {
    color: var(--main-color-one);
    font-size: 10px;
    margin-right: 10px;
}

.product-details-tab .product-information .description-tab-content .name-of-type-wrap {
    padding-left: 0;
    list-style-type: none;
}

.product-details-tab .product-information .description-tab-content .name-of-type-wrap .name-of-type {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 600;
    border-bottom: 1px solid #CAD1DC;
    text-align: right;
    padding-top: 5px;
}

.product-details-tab .product-information .description-tab-content .name-of-type-wrap .name-of-type .gray {
    color: #181818;
    font-weight: 400;
    padding-right: 10px;
    float: left;
}

.product-details-tab .product-information .description-tab-content .name-of-type-wrap .name-of-type+.name-of-type {
    padding-top: 10px;
    padding-bottom: 0;
}

.product-details-tab .related-product-area .grid-list-column-item {
    width: 100%;
}

.product-details-tab .related-product-area .title {
    color: #181818;
    font-size: 17px;
    line-height: 26px;
    font-family: var(--body-font);
    font-weight: 600;
}

.contact-form .form-group label {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 400;
}

.contact-form .form-control {
    border: 1px solid #181818;
    border-radius: 0;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus {
    border: 1px solid #181818;
}

.quick-find-us .find-us-inner {
    text-align: center;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 16px rgba(251, 9, 55, 0.4);
    box-shadow: 0 3px 16px rgba(251, 9, 55, 0.4);
    max-width: 350px;
    padding: 30px 0;
    margin-bottom: -50%;
    z-index: 1;
    position: relative;
}

.quick-find-us .find-us-inner .title {
    position: relative;
    color: #181818;
    font-size: 32px;
    line-height: 42px;
    font-family: var(--body-font);
    font-weight: 600;
    margin: 0;
}

.quick-find-us .find-us-inner .title::after {
    content: '';
    width: 100%;
    height: 2px;
    background-image: -webkit-gradient(linear, right top, left top, from(#fff), color-stop(49%, #CAD1DC), to(#fff));
    background-image: -webkit-linear-gradient(right, #fff 0%, #CAD1DC 49%, #fff 100%);
    background-image: -o-linear-gradient(right, #fff 0%, #CAD1DC 49%, #fff 100%);
    background-image: linear-gradient(270deg, #fff 0%, #CAD1DC 49%, #fff 100%);
    display: block;
    margin-top: 30px;
}

.contact-items.white .heading {
    color: #fff;
}

.contact-items.white .contact .contact-info {
    color: #fff;
}

.contact-items .icon {
    color: #00a0e3;
    font-size: 30px;
}

.contact-items .heading {
    color: #181818;
    font-size: 22px;
    line-height: 32px;
    font-family: var(--body-font);
    font-weight: 600;
}

.contact-items .contact .contact-info {
    display: block;
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 400;
}

.google-map-section #google-map {
    width: 100%;
    min-height: 600px;
    height: 100%;
}

.sign-register-area {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    position: relative;
    padding: 140px 0;
    border-radius: 3px;
}

.sign-register-area-inner {
    max-width: 410px;
    text-align: center;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    color: #fff;
    padding: 50px 15px;
}

.sign-register-area-inner::after {
    content: '';
    position: absolute;
    display: block;
    background-color: rgb(0 0 0 / 80%);
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 3px;
}

.sign-register-area-inner .title {
    font-size: 28px;
    line-height: 38px;
    font-family: var(--body-font);
    font-weight: 600;
    margin-bottom: 0px;
}

.sign-register-area-inner p {
    font-size: 15px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 400;
    padding: 10px 15px;
    color: #ffffff;
}

.sign-in-area .btn-login-with {
    color: #fff;
    font-size: 12px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 400;
    display: inline-block;
    width: 48%;
}

.sign-in-area .btn-login-with.google {
    background-color: #EE314A;
    margin-right: 3%;
}

.sign-in-area .btn-login-with.facebook {
    background-color: #4285F4;
}

.sign-in-area .btn-login-with .icon {
    border-right: 1px solid #fff;
    padding: 16px 16px;
    display: inline-block;
    font-size: 12px;
}

.sign-in-area .btn-login-with .text {
    padding: 10px;
    display: inline-block;
}

.sign-in-area .hr-border {
    position: relative;
    text-align: center;
    color: #63656D;
    font-size: 10px;
    line-height: 24px;
    font-family: var(--menu-font);
    font-weight: 400;
    margin-top: 15px;
    margin-bottom: 10px;
}

.sign-in-area .hr-border::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 47%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 1px;
    background-color: rgba(24, 24, 24, 0.2);
}

.sign-in-area .hr-border::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 47%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 1px;
    background-color: rgba(24, 24, 24, 0.2);
}

.sign-in-area label {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 600;
    padding-bottom: 3px;
}

.sign-in-area .form-control {
    border: none;
    background-color: #F5F5F5;
    height: 44px;
}

.input-group-prepend {
    margin-right: 0px !important;
    border-right: 1px solid #dcdcdc !important;
}

.sign-in-area .form-control::-webkit-input-placeholder {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 400;
}

.sign-in-area .form-control:-ms-input-placeholder {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 400;
}

.sign-in-area .form-control::-ms-input-placeholder {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 400;
}

.sign-in-area .form-control::placeholder {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 400;
}

.sign-in-area .input-group-text {
    background-color: #F5F5F5;
    border: none;
    padding: 0px 13px;
}

.sign-in-area .input-group-text .icon,
.sign-in-area .input-group-text .show-hide-icon {
    color: #181818;
}

.sign-in-area-switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 15px;
    margin-right: 10px;
}

.sign-in-area-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.sign-in-area-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.sign-in-area-switch .slider:before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    left: 2px;
    bottom: 3px;
    background-color: #fff;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.sign-in-area-switch input:checked+.slider {
    background-color: #35CE9F;
}

.sign-in-area-switch input:focus+.slider {
    -webkit-box-shadow: 0 0 1px #35CE9F;
    box-shadow: 0 0 1px #35CE9F;
}

.sign-in-area-switch input:checked+.slider:before {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
}

.sign-in-area-switch .slider.round {
    border-radius: 34px;
}

.sign-in-area-switch .slider.round:before {
    border-radius: 50%;
}

.sign-in-area .form-bottom-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.sign-in-area .form-bottom-area .remember-me,
.sign-in-area .form-bottom-area .forgot-password {
    width: 50%;
}

.sign-in-area .form-bottom-area .remember-me {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 400;
}

.sign-in-area .form-bottom-area .forgot-password {
    text-align: right;
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 400;
}

.side-form-icons {
    float: right;
    position: -webkit-fixed;
    position: fixed;
    top: 130px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #555555;
    -webkit-box-shadow: -2px 0px 8px 0px rgba(24, 24, 24, 0.16);
    box-shadow: -2px 0px 8px 0px rgba(24, 24, 24, 0.16);
    padding: 6px 0;
    z-index: 999;
    right: 0px;
    width: 42px;
    text-align: center;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.side-form-icons .icon {
    color: #ffffff;
    padding: 7px 7px;
    display: block;
    font-size: 20px;
    cursor: pointer;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.side-form-icons .icon:hover {
    color: var(--main-color-one);
}

#open-contact-popup.active,
#open-message-popup.active,
#open-location-popup.active {
    color: var(--main-color-one);
}

.location-popup,
.message-popup,
.contact-popup {
    height: 100%;
    width: 100%;
    display: none;
    background-color: rgba(24, 24, 24, 0.9);
    position: fixed;
    opacity: 0;
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==), progress;
}

.location-popup.active,
.message-popup.active,
.contact-popup.active {
    opacity: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 99;
}

.location-popup-content,
.message-popup-content,
.contact-popup-content {
    margin: auto;
    width: 50%;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 100;
    display: none;
}

.location-popup-content.active,
.message-popup-content.active,
.contact-popup-content.active {
    display: block;
}

.location-popup-content_close,
.message-popup-content_close,
.contact-popup-content_close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--main-color-one);
    display: inline-block;
    border-radius: 30px;
    border: none;
    color: #fff;
    opacity: 1;
    z-index: 1;
}

.location-popup-content_close:hover,
.message-popup-content_close:hover,
.contact-popup-content_close:hover {
    cursor: pointer;
    background: rgba(251, 9, 55, 0.8);
}

.location-popup__wrapper,
.message-popup__wrapper,
.contact-popup__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.location-popup__map {
    width: 60%;
    height: 430px;
}

.location-popup__text {
    display: -ms-grid;
    display: grid;
    place-content: center;
    text-align: center;
    background-color: #fff;
    width: 40%;
    height: 430px;
}

.location-popup__text .heading {
    color: #181818;
    font-size: 22px;
    line-height: 32px;
    font-family: var(--body-font);
    font-weight: 600;
}

.message-popup__thumb {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 40%;
    height: 430px;
    display: -ms-grid;
    display: grid;
    place-content: center;
    text-align: center;
    position: relative;
    z-index: 0;
}

.message-popup__thumb::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(24, 24, 24, 0.6);
    z-index: -1;
}

.message-popup__text .heading {
    color: #fff;
    font-size: 22px;
    line-height: 32px;
    font-family: var(--body-font);
    font-weight: 600;
}

.message-popup__text .contact-info {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
    font-weight: 400;
}

.message-popup__form {
    width: 60%;
    padding: 0 20px;
    display: -ms-grid;
    display: grid;
    place-content: center;
    background-color: #fff;
}

.contact-popup__thumb {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 60%;
    height: 430px;
}

.contact-popup__info__wrap {
    width: 40%;
    height: 430px;
    background-color: #fff;
    display: -ms-grid;
    display: grid;
    place-content: center;
    text-align: center;
}

.modal-box-item {
    background-color: #F5F5F5;
    border-radius: 4px;
    padding: 60px 30px;
    max-width: 340px;
    position: relative;
}

.modal-box-item__icon {
    position: absolute;
    top: 0px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
}

.modal-box-item__icon.green {
    background-color: #35CE9F;
}

.modal-box-item__icon.red {
    background-color: var(--main-color-one);
}

.modal-box-item__content .heading-05 {
    color: #181818;
    font-size: 20px;
    line-height: 30px;
    font-family: var(--menu-font);
    font-weight: 600;
    padding-bottom: 20px;
}

.modal-box-item__content p {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--menu-font);
    font-weight: 300;
    margin: 0;
    padding-bottom: 40px;
}

.modal-box-item__button .main-btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.grid-modal-box__item {
    position: relative;
    -webkit-box-shadow: 0px 0px 22px rgba(24, 24, 24, 0.22);
    box-shadow: 0px 0px 22px rgba(24, 24, 24, 0.22);
}

.grid-modal-box .location-popup-content_close,
.grid-modal-box .message-popup-content_close,
.grid-modal-box .contact-popup-content_close {
    position: absolute;
    top: -12px;
    right: 12x;
}

#menu-cart-open {
    position: fixed;
    top: 0px;
    right: 0px;
    width: 400px;
    height: 100vh;
    background-color: #181818;
    text-align: center;
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
    -webkit-transform: perspective(1200px) rotateY(-90deg);
    transform: perspective(1200px) rotateY(-90deg);
    -webkit-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
    z-index: 9999;
}

#menu-cart-open::after {
    content: "";
    width: 100vw;
    height: 100vh;
    background-color: rgba(24, 24, 24, 0.3);
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

#menu-cart-open.active {
    -webkit-transform: perspective(1200px);
    transform: perspective(1200px);
}

.cart-title-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 20px;
}

.cart-title-wrap .title {
    width: 50%;
    text-align: left;
}

.cart-title-wrap .title .heading-03 {
    margin-bottom: 0;
    color: #fff;
    font-size: 36px;
    line-height: 46px;
    font-family: var(--body-font);
    font-weight: 600;
}

.cart-title-wrap #show-cart {
    width: 50%;
    text-align: right;
}

.cart-content {
    background-color: #fff;
    height: 100%;
}

.cart-content .cart-single-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px;
    border-bottom: 1px solid #CAD1DC;
}

.cart-content .cart-single-item .item-left {
    width: 25%;
    background-color: #F5F5F5;
    padding: 0 5px;
}

.cart-content .cart-single-item .item-right {
    width: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cart-content .cart-single-item .item-right .item-text {
    width: 100%;
    text-align: left;
    padding-left: 10px;
}

.cart-content .cart-single-item .item-right .item-text .heading-05 {
    color: #181818;
    font-size: 19px;
    line-height: 30px;
    font-family: var(--body-font);
    font-weight: 600;
    margin: 0;
}

.cart-content .cart-single-item .item-right .item-text .price {
    color: #181818;
    font-size: 16px;
    line-height: 26px;
    font-family: var(--body-font);
    font-weight: 600;
}

.cart-content .cart-single-item .item-right .item-text .price_text {
    color: #181818;
    font-weight: 400;
}

.cart-content .cart-single-item .cart-item-close-btn {
    width: 5%;
    text-align: right;
    cursor: pointer;
    font-size: 30px;
    text-align: center;
}

.cart-content .cart-single-item.subtotal {
    background-color: #F5F5F5;
    padding: 35px 20px;
}

.cart-content .cart-single-item.subtotal .item-left {
    width: 50%;
}

.cart-content .cart-single-item.subtotal .item-left .heading-05 {
    margin-bottom: 0;
    text-align: left;
    color: #181818;
    font-size: 22px;
    line-height: 32px;
    font-family: var(--body-font);
    font-weight: 600;
}

.cart-content .cart-single-item.subtotal .item-right {
    width: 50%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.cart-content .cart-single-item.subtotal .item-right .amount {
    color: var(--main-color-one);
    font-size: 22px;
    line-height: 32px;
    font-family: var(--body-font);
    font-weight: 600;
}

.file-upload {
    display: block;
    font-family: var(--body-font);
    font-size: 12px;
}

.file-upload .file-select {
    display: block;
    color: #91939D;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    text-align: left;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

.file-upload .file-select .file-select-button {
    background-color: #181818;
    color: #fff;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    width: 9%;
    text-align: center;
    float: right;
}

.file-upload .file-select .file-select-name {
    line-height: 40px;
    display: inline-block;
    padding: 0 10px;
    width: 90%;
    background-color: #CAD1DC;
}

.file-upload.active .file-select .file-select-button {
    background: var(--main-color-one);
    color: #fff;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.file-upload .file-select input[type=file] {
    z-index: 100;
    cursor: pointer;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
}

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

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

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

.accordion-wrapper .card .card-header a {
    display: block;
    color: #181818;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    background-color: #fff;
    padding: 14px 30px;
    cursor: pointer;
    position: relative;
    border: 1px solid #707070;
}

.accordion-wrapper .card .card-header a:after {
    position: absolute;
    right: 30px;
    top: 15px;
    content: "\f114";
    font-size: 12px;
    font-family: "Flaticon";
}

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

.accordion-wrapper .card .card-header a[aria-expanded="true"] {
    border: 1px solid transparent;
    background-color: #F5F5F5;
}

.accordion-wrapper .card .collapse.show .card-body {
    background-color: #F5F5F5;
}

.accordion-wrapper .card .card-body {
    background-color: #F5F5F5;
    padding: 0 30px 20px;
    border: 1px solid transparent;
}

.accordion-wrapper .card .card-body p {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
}

.accordion__header {
    text-align: center;
}

.accordion__header .title {
    color: #181818;
    font-size: 50px;
    line-height: 60px;
    font-family: var(--body-font);
    font-weight: 700;
    padding-bottom: 5px;
}

.accordion__header p {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    width: 48%;
    margin: auto;
}

.countdown {
    display: table;
    margin: auto;
    background-color: rgba(251, 9, 55, 0.3);
    padding: 30px 40px;
    text-align: center;
}

.countdown__item {
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    margin-right: 40px;
    padding-right: 40px;
    position: relative;
    float: left;
}

.countdown__item:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.countdown__item:not(:last-child)::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -1px;
    content: '';
    width: 1px;
    height: 50px;
    background-color: #fff;
    display: block;
}

.countdown__lg-text {
    font-size: 50px;
    line-height: 50px;
    font-weight: 600;
    color: #fff;
}

.countdown__sm-text {
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    text-transform: uppercase;
}

.countdown--alt {
    margin-bottom: 0 !important;
}

.black-bg {
    background-color: #181818;
}

.banner {
    position: relative;
}

.banner__header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 9;
}

.banner__header__follow_us {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.banner__header__follow_us .text {
    padding-left: 20px;
    padding-right: 10px;
    color: #fff;
    font-size: 12px;
    line-height: 22px;
    position: relative;
}

.banner__header__follow_us .text::before {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: '';
    width: 10px;
    height: 1px;
    display: inline-block;
    background-color: #fff;
}

.banner__header__icon ul {
    padding-left: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
}

.banner__header__icon ul li {
    padding: 0 10px 0px 0px;
}

.banner__header__icon ul .icon {
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 50%;
    color: #181818;
    background-color: #fff;
    display: block;
    text-align: center;
    font-size: 16px;
    -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;
}

.asrfootersocial .footer-area .banner__header__follow_us ul li .icon {
    font-size: 16px !important;
}

.banner__header__icon ul .icon:hover {
    background-color: var(--main-color-one);
}

.banner__body {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100%;
    width: 100%;
    z-index: 0;
    position: relative;
}

.banner__body::after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(24, 24, 24, 0.2);
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
}

.banner__body__wrap {
    height: 100vh;
    min-height: 600px;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 55px;
}

.banner__body__title {
    font-size: 130px;
    line-height: 120px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--body-font);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    white-space: nowrap;
}

.shopping-cart__header .list-wrap {
    border-bottom: 1px solid rgba(24, 24, 24, 0.3);
}

.shopping-cart__header .list-wrap th {
    color: #181818;
    font-size: 16px;
    line-height: 30px;
    font-family: var(--body-font);
    font-weight: 600;
    padding: 20px 0;
}

.shopping-cart__body td {
    padding: 20px 0;
    vertical-align: middle;
}

.shopping-cart__item {
    border-bottom: 1px solid rgba(24, 24, 24, 0.3);
}

.shopping-cart__item input[type=number]::-webkit-inner-spin-button,
.shopping-cart__item input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.shopping-cart__item input[type=number] {
    -moz-appearance: textfield;
}

.shopping-cart__item td:nth-child(1) {
    width: 35%;
}

.shopping-cart__item td:nth-child(2) {
    width: 20%;
}

.shopping-cart__item td:nth-child(3) {
    width: 20%;
}

.shopping-cart__item td:nth-child(4) {
    width: 20%;
}

.shopping-cart__item td:nth-child(5) {
    width: 5%;
}

.shopping-cart__item .product_img {
    background-color: #F5F5F5;
    display: inline-block;
    padding: 10px;
}

.shopping-cart__item .product_name {
    color: #181818;
    font-size: 16px;
    line-height: 26px;
    font-family: var(--body-font);
    font-weight: 700;
    text-transform: uppercase;
    padding-left: 15px;
}

.shopping-cart__item .price {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
}

.shopping-cart__item .total {
    color: #181818;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
}

.shopping-cart__item .cart-close-icon {
    color: #fff;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    background-color: var(--main-color-one);
    display: block;
    text-align: center;
    font-size: 8px;
}

.shopping-cart__coupon__code {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.shopping-cart__coupon__code .coupon-code-area {
    width: 350px;
}

.shopping-cart__coupon__code .coupon-code-area .form-control {
    border: 1px solid #181818;
    border-radius: 0;
}

.shopping-cart__coupon__code .coupon-code-area .form-control::-webkit-input-placeholder {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
}

.shopping-cart__coupon__code .coupon-code-area .form-control:-ms-input-placeholder {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
}

.shopping-cart__coupon__code .coupon-code-area .form-control::-ms-input-placeholder {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
}

.shopping-cart__coupon__code .coupon-code-area .form-control::placeholder {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
}

.shopping-cart__coupon__code .coupon-code-area .input-group-text {
    background-color: #181818;
    color: #fff;
    font-size: 12px;
    line-height: 28px;
    font-weight: 500;
    border: 1px solid #181818;
    border-radius: 0;
    margin-left: 10px;
    padding: 0 10px;
    -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;
}

.shopping-cart__coupon__code .coupon-code-area .input-group-text:hover {
    -webkit-box-shadow: 0px 6px 20px -8px rgba(24, 24, 24, 0.9);
    box-shadow: 0px 6px 20px -8px rgba(24, 24, 24, 0.9);
}

.shopping-cart__coupon__code .update-cart-area a {
    background-color: #181818;
    color: #fff;
    font-size: 12px;
    line-height: 22px;
    font-weight: 500;
    border-radius: 0;
    display: block;
    padding: 8px 10px;
    -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;
}

.shopping-cart__coupon__code .update-cart-area a:hover {
    -webkit-box-shadow: 0px 6px 20px -8px rgba(24, 24, 24, 0.9);
    box-shadow: 0px 6px 20px -8px rgba(24, 24, 24, 0.9);
}

.checkout-area__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: #F5F5F5;
    padding: 30px;
    max-width: 600px;
    margin: auto;
}

.checkout-area__left {
    border-right: 1px dotted #181818;
    width: 50%;
    padding-right: 30px;
}

.checkout-area__left .cart-total {
    color: #181818;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    border-bottom: 1px solid #DEE2E8;
    width: 100%;
    padding-bottom: 4px;
}

.checkout-area__left__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding-top: 28px;
}

.checkout-area__left__inner .title {
    padding-bottom: 20px;
}

.checkout-area__left__inner .inner-left {
    width: 34%;
}

.checkout-area__left__inner .inner-left .title {
    color: #181818;
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
}

.checkout-area__left__inner .inner-right {
    width: 66%;
    padding-left: 20px;
}

.checkout-area__left__inner .inner-right .radio-button {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.checkout-area__left__inner .inner-right .radio-button li {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    position: relative;
    padding-left: 20px;
    margin-bottom: 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;
}

.checkout-area__left__inner .inner-right .radio-button li::before {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    line-height: 12px;
    border: 1px solid #181818;
    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;
}

.checkout-area__left__inner .inner-right .radio-button li::after {
    position: absolute;
    top: 50%;
    left: 2px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    line-height: 8px;
    background-color: #181818;
    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;
}

.checkout-area__left__inner .inner-right .radio-button li:hover {
    color: #181818;
}

.checkout-area__left__inner .inner-right .radio-button li:hover::after {
    background-color: #00a0e3;
}

.checkout-area__left__inner .inner-right .radio-button li:hover::before {
    border-color: #00a0e3;
}

.checkout-area__left__inner .inner-right .text {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-size: 500;
    -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;
}

.checkout-area__left__inner .inner-right .text:hover {
    color: var(--main-color-one);
}

.checkout-area__right {
    width: 50%;
    padding-left: 30px;
    text-align: center;
}

.checkout-area__right .title-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 25px 0;
}

.checkout-area__right .bold {
    font-weight: 600;
    padding-left: 45px;
}

.checkout-area__right .or {
    color: #181818;
    font-size: 12px;
    line-height: 24px;
    padding: 25px 0;
    position: relative;
}

.checkout-area__right .or::before,
.checkout-area__right .or::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: '';
    display: block;
    width: 40%;
    height: 1px;
    background-color: #181818;
}

.checkout-area__right .or::after {
    right: 0;
}

.checkout-area__right .check-out {
    background-color: #fff;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
    width: 85%;
    margin: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.checkout-area__right .check-out-btn {
    color: #181818;
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    padding-right: 10px;
}

.quantity {
    position: relative;
}

.quantity input {
    width: 50px;
    height: 30px;
    line-height: 40px;
    float: left;
    display: block;
    margin: 0;
    text-align: center;
    border: 1px solid #CAD1DC;
    margin-left: 20px;
}

.quantity input:focus {
    border: 1px solid #CAD1DC;
}

.quantity input:focus {
    outline: 0;
}

.quantity-button {
    position: relative;
    cursor: pointer;
    border: 1px solid #CAD1DC;
    width: 20px;
    text-align: center;
    color: #181818;
    font-size: 18px;
    line-height: 28px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.quantity-button.quantity-up {
    position: absolute;
    top: 0;
    left: 89px;
    border: 1px solid #CAD1DC;
}

.quantity-button.quantity-down {
    position: absolute;
    left: 21px;
    border: 1px solid #CAD1DC;
}

.heading .title {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.heading .heading-01 {
    font-size: 65px;
    line-height: 75px;
    font-weight: 700;
    padding: 5px 0 12px 0;
}

.heading .heading-02 {
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    padding: 6px 0 14px 0;
}

.heading .heading-03 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
    padding: 7px 0 16px 0;
}

.heading .heading-04 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    padding: 8px 0 17px 0;
}

.heading .heading-05 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    padding: 10px 0 20px 0;
}

.heading .heading-06 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    padding: 10px 0 0 0;
}

.inline-element p {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
}

.inline-element p mark {
    background-color: var(--main-color-one);
    border-radius: 4px;
    color: #181818;
}

.icons_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.icons_wrap.bg-black {
    background-color: #181818;
}

.icons_wrap.bg-black .icons_wrap_item {
    color: #fff;
}

.icons_wrap_item {
    width: 120px;
    font-size: 40px;
    padding: 10px;
    color: #181818;
    text-align: center;
}

.carousel-dots_arrow-icon {
    font-size: 22px;
    position: relative;
    z-index: 0;
}

.carousel-dots_arrow-icon::before {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border: 1px solid var(--main-color-one);
    border-radius: 50%;
    z-index: -1;
}

.carousel-dots_arrow-icon.left::before {
    left: -6px;
}

.carousel-dots_arrow-icon.right::before {
    left: 6px;
}

.carousel-dots_inner {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.carousel-dots_items {
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 50%;
    background-color: #8B8B8B;
    color: #fff;
    text-align: center;
    font-size: 12px;
    margin: 10px 0;
    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;
}

.carousel-dots_items.active,
.carousel-dots_items:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    background-color: var(--main-color-one);
}

.carousel-dot_arrow-icon {
    position: relative;
    z-index: 0;
    font-size: 22px;
}

.carousel-dot_arrow-icon::before {
    position: absolute;
    left: 1px;
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    background-color: var(--main-color-one);
    border-radius: 50%;
    z-index: -1;
}

.carousel-dot_arrow-icon.left::before {
    top: 0px;
}

.carousel-dot_arrow-icon.right::before {
    bottom: 3px;
}

.carousel-dot_inner {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.carousel-dot_items {
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    border: 1px solid #181818;
    margin: 10px 0;
    position: relative;
    cursor: pointer;
}

.carousel-dot_items::before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    content: '';
    width: 6px;
    height: 6px;
    line-height: 6px;
    background-color: #181818;
    border-radius: 50%;
    display: block;
}

.basic-alert-box {
    position: relative;
    background-color: #F5F5F5;
    border-radius: 4px;
}

.basic-alert-box.red-border {
    border: 1px solid var(--main-color-one);
}

.basic-alert__close_btn {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 50%;
    background-color: #181818;
    color: #fff;
    font-size: 8px;
    text-align: center;
    cursor: pointer;
}

.basic-alert__inner p {
    color: #181818;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
    font-size: 400;
    padding: 30px 25px;
    margin: 0;
}

.basic-alert__icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background-color: #35CE9F;
    color: #fff;
    font-size: 12px;
    display: inline-block;
    text-align: center;
    margin-right: 10px;
}

.service_cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: -20px;
    margin-left: -20px;
}

.service_cols .col {
    min-width: calc(33.33% - 0px);
    margin: 0rem;
    cursor: normal;
    padding: 10px;
}

.service_cols .service_container {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 2000px;
    perspective: 2000px;
}

.service_cols .front,
.service_cols .back {
    background-size: contain;
    box-shadow: 0px;
    background-position: center;
    -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    text-align: center;
    min-height: 260px;
    height: auto;
    border-radius: 0px;
    color: #fff;
    font-size: 1.5rem;
}

.service_cols .back {
    background: #00a0e3;
    background: -webkit-linear-gradient(45deg, #00a0e3 0%, #0077a9 100%);
    background: -o-linear-gradient(45deg, #00a0e3 0%, #0077a9 100%);
    background: linear-gradient(45deg, #00a0e3 0%, #0077a9 100%);
}

.service_cols .back .main-btn-wrap .main-btn.black-border {
    border: 1px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
}

.service_cols .back .main-btn-wrap .main-btn.black-border:hover {
    background-color: #000000 !important;
    border-color: #000000;
}

.service_cols .front:after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    opacity: .4;
    background-color: #000;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 0px;
}

.service_cols .service_container:hover .front,
.service_cols .service_container:hover .back {
    -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.service_cols .back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.service_cols .inner {
    -webkit-transform: translateY(-50%) translateZ(50px) scale(0.94);
    transform: translateY(-50%) translateZ(50px) scale(0.94);
    top: 50%;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 1rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 1px solid transparent;
    -webkit-perspective: inherit;
    perspective: inherit;
    z-index: 2;
}

.service_cols .inner p {
    font-size: 14px;
}

.service_cols .service_container .back {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.service_cols .service_container .front {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.service_cols .service_container:hover .back {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.service_cols .service_container:hover .front {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.service_cols .front .inner p {
    font-size: 0px;
    margin-bottom: 0rem;
    position: relative;
    color: #fff;
    font-weight: 700;
    display: inline-block;
}

.service_cols .front .inner p:after {
    content: '';
    width: 4rem;
    height: 0px;
    position: absolute;
    background: #C6D4DF;
    display: block;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -.75rem;
}

.service_cols .front .inner span {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 14px;
    line-height: 22px !important;
    display: block;
}

@media screen and (max-width: 64rem) {
    .service_cols .col {
        width: calc(33.333333% - 0rem);
    }
}

@media screen and (max-width: 48rem) {
    .service_cols .col {
        width: calc(50% - 0rem);
    }
}

@media screen and (max-width: 32rem) {
    .service_cols .col {
        width: 100%;
        margin: 0 0 2rem 0;
    }
}

.search_box {
    margin: 0 0px 0px 15px !important;
}

.search_box .input-group {
    margin-top: -3px;
}

.search_box .input-group-text {
    padding: 5px 10px 5px 10px;
    border-left: 0px;
    font-size: 15px;
    line-height: 1.1;
    cursor: pointer;
    background: #fff;
}

.search_box .form-control {
    height: calc(2em + .5rem + 1px);
    padding: 8px 15px;
    font-size: 13px;
    border-right: 0px;
}

.search_box .form-control:focus {
    border: 1px solid #ced4da;
    border-right: 0px;
}

header .container-fluid {
    padding-left: 80px;
    padding-right: 80px;
}

.inqry_form {
    position: absolute !important;
    right: 0px !important;
    bottom: 0px !important;
    width: 400px !important;
    margin: 0px;
    border-radius: 0px !important;
}

.inqry_form .modal-header {
    padding: 15px 25px !important;
}

.inqry_form .modal-title {
    line-height: 1.4;
    font-size: 20px !important;
    padding-right: 30px;
}

.inqry_form .modal-body {
    padding: 25px 25px 10px 25px !important;
}

.inqry_form .modal-content {
    border-radius: 0px;
    border-left: 5px solid #00a0e3;
}

.inqry_form .form-control {
    border: 1px solid #999999 !important;
    font-size: 14px !important;
    border-radius: 0px;
}

.inqry_form .form-control:focus {
    border: 1px solid #333 !important;
}

.inqry_form .modal-footer {}

.inqry_form .modal-footer .row {
    width: 100%;
}

.inqry_form .modal-footer .btn {
    width: 100%;
    font-size: 13px;
}

.inqry_form .modal-footer .btn-secondary {
    background-color: #333333;
}

.inqry_form .modal-header .close {
    padding: 10px 15px !important;
    margin: 0px !important;
    background: #00a0e3 !important;
    text-shadow: none !important;
    color: #fff !important;
    position: absolute;
    right: 0px;
    top: 0px;
    opacity: 1 !important;
}

.app_section {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 25%;
    background-size: cover;
}

.app_section:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 100%;
    background-color: #000000;
    opacity: 0.8;
    z-index: 0;
}

.app__boxx {
    padding: 30px 40px 35px 40px;
    background-color: #ffffff;
}

.app__boxx i {
    font-size: 40px;
    margin-bottom: 15px;
    color: #00a0e3;
    line-height: 50px;
}

.app__boxx p {
    font-size: 13px;
    color: #444444 !important;
    margin-bottom: 20px;
}

.app__boxx h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.app__boxx .main-btn {
    border-radius: 40px;
}

.app__boxx:hover a.main-btn {
    background-color: #00a0e3 !important;
}

.rn_button_white {
    background-color: #f8f8f8 !important;
    border: 0px;
    color: #000 !important;
    padding: 8px 65px;
    display: inline-block;
    margin-top: 15px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 600;
}

.rn_button_white:hover {
    background-color: #00a0e3 !important;
    color: #ffffff !important;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*=col-] {
    padding-right: 0;
    padding-left: 0;
}

.catgry_inside {
    margin: 0 -5px;
}

.catgry_box {
    padding: 5px;
}

.catgry_box_inner {
    position: relative;
    background-color: #ddd;
}

.catgry_box.catgry_txt .catgry_box_inner {
    position: relative;
    background-color: #9e9e9e;
}

.catgry_box_inner::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .35);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: .5s;
    transition: .5s;
    z-index: 0;
}

.catgry_box_inner:hover::before {
    opacity: 1;
}

.catgry_box_inner .catgry_box_content {
    position: absolute;
    z-index: 0;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    text-align: center;
}

.catgry_box_inner .catgry_box_content .title {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin: 0;
    line-height: 25px;
    opacity: 0;
    -webkit-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 0);
    -webkit-transition: -webkit-transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    padding: 0 5px;
    bottom: 0;
    top: 0;
    position: relative;
}

.catgry_box_inner .catgry_box_content .icon {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: -10px;
    left: 0;
    opacity: 0;
    z-index: 1;
    -webkit-transition: .7s;
    transition: .7s;
}

.catgry_box_inner .catgry_box_content::after,
.catgry_box_inner .catgry_box_content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: .7s;
    transition: .7s;
}

.catgry_box_inner .catgry_box_content::before {
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
}

.catgry_box_inner .catgry_box_content::after {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 100% 0 0;
    transform-origin: 100% 0 0;
}

.catgry_box_inner .icon li img {
    max-width: 50px;
}

.catgry_box_inner:hover .title {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    top: 60%;
}

.catgry_box_inner:hover .icon {
    bottom: 100px;
    opacity: 1;
    -webkit-transition-delay: .15s;
    transition-delay: .15s;
}

.catgry_box_inner:hover .catgry_box_content::after,
.catgry_box_inner:hover .catgry_box_content::before {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition-delay: .15s;
    transition-delay: .15s;
}

.catgry_box_inner img {
    max-width: 100%;
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center center;
}

.catgry_sec .cstm_title h4 {
    text-align: center;
}

.catgry_sec .cstm_title h4::before {
    left: 0;
    right: 0;
    margin: 0 auto;
}

.catgry_box.catgry_txt,
.catgry_box.catgry_txt .catgry_box_inner {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catgry_box.catgry_txt .catgry_box_inner h5 {
    color: #000;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 1px;
}

.catgry_box.catgry_txt .catgry_txt_box {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.9);
}

.catgry_box.catgry_txt .catgry_txt_box h5 {
    color: #fff;
}

.catgry_box.catgry_txt .catgry_box_inner::before {
    display: none;
}

.know_more_link {
    text-transform: capitalize;
    text-decoration: none !important;
    background-image: url(../images/right_arrow.png);
    display: block;
    color: #000000 !important;
    -webkit-transition: width 1s;
    transition: width .2s ease;
    width: 150px;
    font-size: 13px;
    background-repeat: no-repeat;
    background-position: right;
}

.know_more_link:hover {
    color: #000 !important;
    width: 165px;
    color: #00a0e3 !important;
}

.container-fluid.full_screen {
    padding-left: 0px !important;
    padding-right: 0px !important;
    background: #fdfcfc;
}

.left_side_faucet {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center left 10px;
    height: 90vh;
}

.left_side_faucet .insidee {
    padding: 0px 40px 50px 100px !important;
    padding-left: 55% !important;
}

h6.main_hdfng {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 0px;
    position: absolute;
    left: 25%;
    font-size: 40px;
}

.faucet_right_mg {
    height: 90vh;
    width: 100%;
}

.faucet_right_mg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.pdf_cover {
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 70px;
    margin-top: 0px;
}

.pdf_cover .outrtx {
    max-width: 550px;
    margin: 0px auto;
    background-repeat: no-repeat !important;
    padding: 0px;
    background-size: cover !important;
}

.pdf_cover .outrtx .content_areaa {
    margin: 20px 30px;
    padding: 40px 20px;
    text-align: center;
}

.pdf_cover .outrtx .content_areaa i.iconnn {
    font-size: 36px;
    color: #00a0e3;
    margin-bottom: 20px;
}

.header_shahdow {
    position: fixed !important;
    left: 0px;
    right: 0px;
    background-color: #ffffff !important;
    box-shadow: 0 3px 5px 0 rgb(0 0 0 / 30%) !important;
    z-index: 1030 !important;
}

.page_editor {
    margin-top: 30px;
    font-size: 18px;
    line-height: 30px;
    background: #fff;
    padding: 30px 30px 20px 30px;
    border: 1px solid #e5e5e8;
}

.page_editor h2 {
    margin-bottom: 15px;
    font-size: 28px;
    margin-top: 0px;
}

.page_editor h4 {
    margin-bottom: 15px;
    font-size: 18px !important;
    text-transform: uppercase;
    font-weight: 600;
}

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

.page_editor b,
.page_editor strong {
    font-weight: 600;
}

.cstm_page_section {
    padding: 29px 0px 60px 0px;
    background: #fafafa;
}


/* Card UI change */


/* 
.rn_cate_listbox ul {
    margin-left: -25px;
    margin-right: -25px;
    display: flex;
    flex-wrap: wrap;
}

.rn_cate_listbox ul li {
    box-shadow: 1px 1px 14px 1px rgb(0 0 0 / 9%);
    width: calc(20% - 23px);
    background: #fff;
    padding: 5px;
    border: solid 3px #e5e5e8;
    margin: 10px;
    text-align: center;
    position: relative;
    transition: all linear .3s;
    list-style: none;
    overflow: hidden;
}

.rn_cate_listbox ul li:hover {
    box-shadow: 1px 4px 16px 6px rgb(0 0 0 / 22%);
    z-index: 1;
    border-color: #00a0e3;
    transition: all linear .3s;
    overflow: hidden;
}

.rn_cate_listbox ul li .rn_proframebox img {
    transform: scale(1);
    max-width: 100%;
    transition: 0.5s ease all;
    filter: gray;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    transition: all linear .3s;
}

.rn_cate_listbox ul li .rn_proframebox {
    display: block;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.rn_cate_listbox ul li .rn_proframebox:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    transition: 0.5s ease all;
    opacity: 0;
    transform: scale(0.1);
    content: "";
    z-index: 1;
    display: none;
}

.rn_cate_listbox ul li .rn_proframebox:hover a:before {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    transition: 0.5s ease all;
    opacity: 1;
    transform: scale(1);
    content: "";
}

.rn_cate_listbox ul li:hover .rn_proframebox img {
    transform: scale(1.2);
    -webkit-filter: grayscale(0);
    filter: none;
}

.rn_cate_listbox ul li h3 {
    font-size: 19px;
    color: #ffffff !important;
    margin: 0px 0 0 0;
    position: absolute;
    bottom: 5px;
    left: 5px;
    right: 5px;
    background: rgb(0 0 0 / 77%);
    padding: 10px;
    transition: 0.5s ease all;
}

.rn_cate_listbox ul li:hover h3 {
    bottom: -50px;
    transition: 0.5s ease all;
}

.rn_cate_listbox ul li h3 a {
    color: #ffffff;
}

.rn_cate_listbox ul li h3 a:hover {
    color: #000;
} */



/* ---------------------------------New Card UI ------------------------------------------------------*/
.rn_cate_listbox ul {
    margin-left: -25px;
    margin-right: -25px;
    display: flex;
    flex-wrap: wrap;
}

/* CARD */
.rn_cate_listbox ul li {
    width: calc(20% - 23px);
    margin: 10px;
    list-style: none;
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8e8e8;

    padding: 0;

    box-shadow: 0 8px 22px rgba(0,0,0,0.08);

    transition: all .35s ease;
}

/* PREMIUM HOVER */
.rn_cate_listbox ul li:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    border-color: #00a0e3;
    z-index: 2;
}

/* IMAGE FRAME */
.rn_cate_listbox ul li .rn_proframebox {
    display: block;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

/* IMAGE */
.rn_cate_listbox ul li .rn_proframebox img {
    width: 100%;
    display: block;
    transition: transform .6s ease;
}

/* IMAGE ZOOM */
.rn_cate_listbox ul li:hover .rn_proframebox img {
    transform: scale(1.12);
}

/* DARK GRADIENT OVERLAY */
.rn_proframebox:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

/* TITLE BAR */
.rn_cate_listbox ul li h3 {
    font-size: 17px;
    color: #fff !important;
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    padding: 14px;

    font-weight: 600;
    letter-spacing: .3px;

    transition: all .3s ease;
}

/* TITLE HOVER EFFECT */
.rn_cate_listbox ul li:hover h3 {
    padding-bottom: 20px;
}

/* TITLE LINK */
.rn_cate_listbox ul li h3 a {
    color: #fff;
}

.rn_cate_listbox ul li h3 a:hover {
    color: #fff;
}



/* ----------------------------------------------------- */

/* COLOR DOTS */
.color-dots{
    margin-top:6px;
    display:flex;
    justify-content:center;
    gap:5px;
}

.color-dots span{
    width:10px;
    height:10px;
    border-radius:50%;
    display:inline-block;
    border:1px solid rgba(255,255,255,.6);
    box-shadow:0 2px 4px rgba(0,0,0,.2);
}

/* optional hover animation */
.rn_cate_listbox ul li:hover .color-dots span{
    transform:scale(1.1);
}

/* ----------------------------------------------------------------- */


/* DESCRIPTION AREA */
.cate-description,
.prdct_feature {
    border: solid 1px #e5e5e8;
    background: #ffffff;
    padding: 30px 50px;
    margin-bottom: 15px;
}

.cate-description p,
.prdct_feature p {
    margin-bottom: 15px;
}


.cate-description,
.prdct_feature {
    border: solid 1px #e5e5e8;
    background: #ffffff;
    padding: 30px 50px;
    margin-bottom: 15px;
}

.cate-description p,
.prdct_feature p {
    margin-bottom: 15px;
}

@media screen and (max-width:1440px) {
    .page_editor {
        font-size: 15px;
        line-height: 26px;
    }

    .page_editor h2 {
        font-size: 24px;
    }

    .rn_cate_listbox ul li h3 {
        font-size: 15px;
    }

    .breadcrumb-area .page-list li {
        font-size: 12px;
    }
}

@media screen and (max-width:991px) {
    .rn_cate_listbox ul li {
        width: calc(33.33% - 16px);
        margin: 5px;
    }

    .rn_cate_listbox ul li h3 {
        font-size: 13px;
    }
}

@media screen and (max-width:767px) {
    .shop-page-grid-view .grid-list-wrapper {
        margin: 1px !important;
    }

    .grid-list-column-item {
        width: 100% !important;
    }

    .rn_cate_listbox ul {
        margin-left: -1%;
        margin-right: -1%;
        padding-left: 0px !important;
    }

    .rn_cate_listbox ul li {
        width: calc(48% - 0px);
        margin: 1%;
    }

    .page_editor {
        margin-top: 25px;
        font-size: 14px;
        line-height: 26px;
        padding: 20px 20px 20px 20px;
    }

    .page_editor h2 {
        font-size: 18px;
        margin-bottom: 8px !important;
    }

    .page_editor h4 {
        margin-bottom: 10px;
        font-size: 15px !important;
    }

    .page_editor p {
        margin-bottom: 12px;
    }
}

@media only screen and (min-width: 1440px) {
    .left_side_faucet {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center left 10px;
        height: 57vh;
    }

    .left_side_faucet .insidee {
        padding: 35px 140px 40px 100px !important;
        padding-left: 50% !important;
    }

    h6.main_hdfng {
        font-size: 30px;
        text-transform: uppercase;
        margin-bottom: 2 0px;
        position: absolute;
        left: 25%;
        font-size: 40px;
    }

    .faucet_right_mg {
        height: 57vh;
        width: 100%;
    }

    .know_more_link {
        font-size: 16px;
    }

    .common-section-content .paragraph p {
        font-size: 18px;
        line-height: 30px;
        font-weight: 400;
    }

    .catgry_box_inner {
        max-height: 260px;
        overflow: hidden;
    }

    .catgry_box_inner img {
        height: 100%;
    }

    .catgry_box_inner:hover .icon {
        bottom: 130px;
    }

    .catgry_box_inner .icon li img {
        max-width: 65px;
    }

    .catgry_box_inner .catgry_box_content .title {
        font-size: 24px;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li {
        font-size: 15px;
    }

    .catgry_box.catgry_txt .catgry_box_inner h5 {
        color: #ffffff;
        font-size: 24px;
    }

    .rn_button_white {
        padding: 10px 65px;
        font-size: 15px;
    }
}

@media only screen and (min-width: 2000px) {
    .catgry_box_inner {
        max-height: 330px;
        overflow: hidden;
    }

    .catgry_box_inner img {
        height: 100%;
    }

    .left_side_faucet {
        background-position: center left 12%;
        height: 45vh;
    }

    .faucet_right_mg {
        height: 45vh;
        width: 100%;
    }

    .left_side_faucet .insidee {
        padding: 200px 300px 40px 99px !important;
        padding-left: 45% !important;
    }

    .insidee.common-section-content {
        -ms-flex-line-pack: normal;
        align-content: normal;
    }

    .insidee.common-section-content .section-title {
        display: contents;
    }

    .common-section-content .paragraph p {
        font-size: 20px;
        line-height: 36px;
        font-weight: 400;
    }
}

@media only screen and (max-width: 1300px) {
    .navbar-area .nav-container .navbar-collapse .navbar-nav li+li {
        margin-left: 20px !important;
    }

    .container-fluid {
        padding-right: 15px !important;
        padding-left: 15px !important;
    }
}

.hidden_991 {}

.last_icon {
    font-size: 13px !important;
    margin-right: 80px !important;
}

.social-icon .icon {
    font-size: 13px !important;
}

.web_logo {
    max-height: 113px;
    margin-top: -42px;
    margin-left: 0px;
}

.topbar-area {
    position: relative;
}

.topbar-area:before {
    position: absolute;
    content: "";
    width: 74%;
    height: 2px;
    background-color: #6c6c6c;
    left: auto;
    right: 0px;
    bottom: 0px;
}

.topppbg {
    background-color: transparent !important;
    padding: 11px 0px !important;
}

#navbarSupportedContent {
    display: none !important;
}

.cstm_page_padding {
    padding: 80px 0px;
}

.form_bxxxx {
    border-right: 1px solid #f5f5f5;
    padding-right: 60px;
    margin-right: 30px;
}

.form_bxxxx h2.frm_h2 {
    line-height: 36px;
    margin-bottom: 8px;
    font-size: 32px;
}

.form_bxxxx .frmtexxt {
    margin-bottom: 35px;
}

.sort_select {
    border: 1px solid #111111 !important;
    border-radius: 3px !important;
    padding: 5px !important;
    font-size: 13px !important;
}

.filter_btnnn {
    display: none;
}

@media only screen and (max-width: 991px) {
    .shop-page-grid-view .product-filtering-area .filter-right {
        position: absolute;
        right: 15px;
        top: 10px;
    }

    .filter_btnnn .card {
        border: 0px;
        background-color: transparent !important;
    }

    .filter_btnnn .card-header {
        padding: .75rem 0rem;
        margin-bottom: 0;
        background-color: transparent;
        border-bottom: 0;
    }

    .filter_btnnn .card-header a {
        font-size: 14px;
        font-weight: 600;
    }

    .filter_btnnn .card-header .fa-filter {
        font-size: 12px !important;
        margin-right: 2px;
        position: relative;
        top: 0px;
    }

    .filter_btnnn .card-body {
        border: 1px solid #ddd;
        background: #fff;
    }

    .shop-page-grid-view .product-filtering-area,
    .shop-page-grid-view .product-filtering-area .filter-left {
        display: block;
    }

    .filter_btnnn {
        display: block;
    }

    .sort_select {
        font-size: 12px !important;
    }

    .cstm_page_padding {
        padding: 50px 0px;
    }

    .navbar-area.style-02 .nav-container .navbar-collapse .navbar-nav>li {
        color: #181818;
        padding: 5px 20px;
        border-bottom: 1px solid rgb(0 0 0 / 7%);
    }

    .navbar-area.style-02 .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        box-shadow: none;
        border: 0px;
        border-radius: 0px;
        font-size: 12px;
        padding: 0px;
        color: #000;
        background-color: transparent !important;
    }

    #navbarSupportedContent.show {
        display: block !important;
    }

    .left_side_faucet {
        background-position: bottom left 20px;
        height: 52vh;
        background-size: 30%;
    }

    .left_side_faucet .insidee {
        padding: 30px 20px 20px 20px !important;
        padding-left: 44% !important;
    }

    .faucet_right_mg {
        height: auto;
        width: 100%;
    }

    .pdf_cover .outrtx .content_areaa {
        margin: 3px 47px;
        padding: 14px 15px;
        text-align: center;
    }

    .pdf_cover .outrtx .content_areaa i.iconnn {
        font-size: 24px;
        color: #00a0e3;
        margin-bottom: 12px;
        margin-top: 10px;
    }

    .pdf_cover .outrtx .content_areaa .main-btn-wrap .main-btn {
        min-width: 140px !important;
        padding: 6px 20px !important;
    }

    .pdf_cover .outrtx .content_areaa p {
        font-size: 13px !important;
        line-height: 22px !important;
    }

    h6.main_hdfng {
        font-size: 20px;
        text-transform: uppercase;
        margin-bottom: 0px;
        position: absolute;
        left: 10%;
        font-size: 20px;
    }

    .common-section-content .paragraph p {
        font-size: 13px;
        line-height: 22px;
        font-weight: 400;
        margin-right: 12px;
    }

    .hidden_991 {
        display: none !important;
    }

    .topbar-area:before {
        width: 55%;
        height: 1px;
    }

    .last_icon {
        margin-right: 0px !important;
        background: #00a0e3;
        color: #ffffff !important;
        padding: 3px 5px 4px 3px;
        border-radius: 2px;
    }

    .last_icon i {
        font-size: 15px !important;
        margin-right: 2px;
        position: relative;
        top: 1px;
    }

    header .logo-area {
        width: 0 !important;
        min-width: 0px !important;
    }

    header .navbar .container-fluid {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    header.header_shahdow .container-fluid {
        margin-right: 0px !important;
        margin-left: 0px !important;
    }

    .web_logo {
        max-height: 110px;
        /* margin-top: 0; */
        margin-left: 0;
        z-index: 101;
        position: absolute;
        top: 0px;
        left: 8px;
    }

    body {
        padding-top: 69px !important;
        overflow-x: hidden !important;
        position: relative !important;
    }

    .section-title p {
        font-size: 13px;
        line-height: 20px;
    }

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

    .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
        padding: 0px 0px !important;
        color: #181818 !important;
        text-transform: none;
        background: transparent !important;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li a:hover {
        color: #00a0e3 !important;
        background: transparent !important;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li a.dropdown-item {
        text-transform: capitalize;
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li a.dropdown-item:hover {
        margin-left: 10px;
        text-decoration: underline;
    }

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

    .dropdown-toggle {
        position: relative;
    }

    .dropdown-toggle::after {
        border-top: .4em solid;
        border-right: .4em solid transparent;
        border-bottom: 0;
        border-left: .4em solid transparent;
        position: absolute;
        right: 15px;
        top: 12px;
    }
}

.app_iconnn {
    max-height: 60px;
    margin-bottom: 10px;
}

.dsktop_right_pad {
    padding-right: 20px !important;
}

.related_products {
    min-width: 100% !important;
    display: block !important;
}

.related_products .home-2-our-team-items {
    width: 100% !important;
}

@media only screen and (max-width: 767px) {


    .copyright-area {
        color: #fff;
        font-size: 12px;
        line-height: 18px;
    }

    .cstm_page_section {
        padding: 20px 0px 30px 0px;
    }

    .cstm_page_padding {
        padding: 20px 0px;
    }

    .form_bxxxx h2.frm_h2 {
        font-size: 21px;
        line-height: 24px;
        margin-bottom: 5px;
    }

    .form_bxxxx .frmtexxt {
        margin-bottom: 15px;
        font-size: 13px;
    }

    .sign-in-area .form-control {
        height: 38px;
    }

    .sign-register-area {
        padding: 50px 40px;
        border-radius: 3px;
        margin-top: 45px;
        margin-bottom: 25px;
    }

    .sign-register-area-inner .title {
        font-size: 20px;
        line-height: 28px;
    }

    .sign-register-area-inner p {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 20px;
    }

    .form_bxxxx {
        border-right: 0px;
        padding-right: 0px;
        margin-right: 0px;
    }

    .sign-in-area {
        padding-top: 40px;
    }

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

    .web_logo {
        max-height: 91px;
        left: 0px;
    }

    .search_box .input-group {
        margin-top: -3px;
        max-width: 100%;
        float: right;
    }

    .nav-right-content ul li.cart {
        display: inline-block;
        margin: 0 18px 0px 10px !important;
    }

    header.header_shahdow .container-fluid {
        padding-right: 0px !important;
        padding-left: 0px !important;
    }

    .search_box {
        margin: 0 0px 0px 0px !important;
    }

    .nav-right-content ul {
        margin-left: 0px;
    }

    .topbar-area:before {
        width: 90%;
        height: 1px;
    }

    header .logo-area {
        width: 21%;
        min-width: 105px;
    }

    .left_side_faucet {
        background-position: bottom left 13px;
        height: 50vh;
        background-size: 38%;
    }

    .catgry_box.catgry_txt .catgry_box_inner h5 {
        font-size: 15px;
        letter-spacing: 0.3px;
    }

    .app_iconnn {
        max-height: 40px;
        margin-bottom: 0px;
    }

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

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

    .footer-top {
        text-align: center !important;
    }

    .footer-top .contact-area .icon {
        padding-right: 10px;
        float: none;
    }

    .banner__header__follow_us {
        display: -ms-block;
        display: block;
    }

    .banner__header__icon ul {
        max-width: 276px;
        margin: 0px auto;
    }

    .contact-area {
        display: none !important;
    }

    .banner__header__icon ul li {
        padding: 0 4px 0px 4px;
    }

    .widget ul li {
        margin: 8px 0;
        font-size: 12px;
        line-height: 20px;
    }

    .footer-top .widget.widget_nav_menu ul li {
        font-size: 12px;
        line-height: 20px;
        display: inline-block;
        margin: 3px 5px 0px 5px !important;
    }

    .footer-top .widget .widget-title {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 12px;
        margin-top: 10px;
    }

    .hide_767 {
        display: none !important;
    }

    .container-fluid.full_screen {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .catgry_box_inner .catgry_box_content .title {
        font-size: 13px;
        line-height: 18px !important;
        opacity: 1 !important;
        background-color: rgba(12, 12, 12, 0.60) !important;
        -webkit-transform: translate3d(0, 0px, 0);
        transform: translate3d(0, 0px, 0);
        padding: 5px 8px !important;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .catgry_box_inner:hover .catgry_box_content .title {
        background-color: rgba(0, 160, 227, 0.60) !important;
    }

    .catgry_box_inner::before {
        z-index: -1 !important;
    }

    .catgry_box_inner .icon li img {
        max-width: 32px;
        display: none;
    }

    .catgry_box_inner:hover .icon {
        bottom: 0px;
        display: none;
    }

    .catgry_box_inner .catgry_box_content {
        position: absolute;
        z-index: 1;
        top: auto !important;
        left: 0px !important;
        right: 0px !important;
        bottom: 0px !important;
    }

    .catgry_box_inner .catgry_box_content::after {
        border-left: 0px !important;
        border-right: 0px !important;
    }

    .catgry_box_inner .catgry_box_content::before {
        border: 0px !important;
        opacity: 1 !important;
        bottom: 0px !important;
    }

    .catgry_box_inner:hover .title {
        top: 120% !important;
        bottom: 0px !important;
        opacity: 1 !important;
    }

    .catgry_box_inner .title {
        top: 120% !important;
        bottom: 0px !important;
        opacity: 1 !important;
    }

    .catgry_inside .col-sm-6 {
        -ms-flex: 0 0 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }

    .social-icon .icon {
        font-size: 12px !important;
    }

    .mbhidden {
        display: none;
    }

    .social-icon font {
        display: none;
    }

    .topppbg {
        padding: 6px 0px !important;
    }

    header .right-content {
        display: block;
    }

    header .topbar-inner {
        display: -webkit-box;
        display: -ms-block;
        display: block;
        text-align: right;
    }
}

@media only screen and (max-width:480px) {
    .app_iconnn {
        max-height: 35px;
        margin-bottom: 5px;
    }

    .search_box .input-group {
        max-width: 100%;
    }

    .pdf_cover .outrtx {
        background: #ffffff !important;
    }

    .pdf_cover .outrtx .content_areaa {
        margin: 3px 8px;
        padding: 10px 12px;
        text-align: center;
    }

    .left_side_faucet {
        background-position: bottom left 13px;
        height: 44vh;
        background-size: 36%;
    }
}

.menu_bar_sticky {
    position: fixed;
    right: 0;
    top: 80px;
    margin: auto;
    bottom: 0;
    height: 285px;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    z-index: 4000;
    display: none;
}

.menu_bar_sticky ul li:fisrt-child img {
    margin-bottom: 0px;
}

.menu_bar_sticky .stikyarrow {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 40px;
    width: 40px;
    height: 150px;
    content: "";
    background: url(../images/sticky_btn.png);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 40px;
    cursor: pointer;
    transition: 0.5s;
}

.menu_bar_sticky.in .stikyarrow {
    left: -38px;
    transition: 0.5s;
}

.menu_bar_sticky .stikyarrow i {
    color: #00a0e3;
    font-size: 32px;
    position: absolute;
    top: 0;
    left: 12px;
    bottom: 0;
    height: 33px;
    margin: auto;
    line-height: 1;
}

.menu_bar_sticky.in .stikyarrow i {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.menu_bar_sticky ul {
    background: #484848;
    border-radius: 8px 0px 0px 8px;
    list-style: none;
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    width: 80px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    position: relative;
    right: -80px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    padding: 20px 0;
}

#menu_bar_sticky.in ul {
    right: 0;
}

.menu_bar_sticky ul {
    list-style: none;
}

.menu_bar_sticky ul li {}

.menu_bar_sticky ul li a {
    color: #fff;
    display: block;
    padding: 10px 2px;
    text-align: center;
    text-decoration: none;
}

.menu_bar_sticky ul li a:hover,
.menu_bar_sticky ul li a.active {
    color: #00a0e3 !important;
}

.menu_bar_sticky ul li a span {
    padding: 5px 10px;
    display: block;
    margin: auto;
}

.menu_bar_sticky ul li a i.icon {
    font-size: 22px;
}

.menu_bar_sticky ul li a.mdd span {
    padding: 5px 0px;
}

.menu_bar_sticky ul li.vsb991 {
    display: none;
}

@media only screen and (max-width:991px) {
    .menu_bar_sticky .stikyarrow {
        display: none;
    }

    .menu_bar_sticky {
        top: inherit;
        bottom: 0;
        height: auto;
        text-align: center;
        width: 100%;
        -webkit-transform: inherit;
        -moz-transform: inherit;
        -ms-transform: inherit;
        -o-transform: inherit;
        transform: inherit;
    }

    .menu_bar_sticky ul {
        background: #484848;
        right: 0;
        width: 100%;
        border-radius: 0;
        padding: 0px 0px 0px 0px;
    }

    .menu_bar_sticky ul li {
        display: inline-block;
        vertical-align: bottom;
        margin: 0 10px;
    }

    .menu_bar_sticky ul li a {
        padding: 8px 15px 3px 15px;
        border-right: 1px solid rgb(255, 255, 255, 0.08);
    }

    .menu_bar_sticky ul li a.bdrnone {
        border-right: none;
    }

    .menu_bar_sticky ul li.vsb991 {
        display: inline-block;
    }
}

@media only screen and (max-width:767px) {
    .menu_bar_sticky {
        display: block;
    }

    .menu_bar_sticky ul li a::before {
        margin: 0 auto 0px;
        transform: scale(0.6);
    }

    .menu_bar_sticky ul li {
        margin: 0 0px;
        width: 32.8%;
    }

    .menu_bar_sticky ul li a {
        font-size: 13px;
        padding: 8px 0px 3px 0px !important;
    }

    .menu_bar_sticky ul li a font {
        display: none;
    }

    .menu_bar_sticky ul li a i.icon {
        font-size: 22px;
        line-height: 24px;
    }
}

@media only screen and (max-width:480px) {
    .menu_bar_sticky ul li {
        width: 32.6%;
    }

    .menu_bar_sticky ul li a {
        font-size: 11px;
        letter-spacing: 0.3px;
        padding: 10px 0px 7px 0px !important;
    }

    .menu_bar_sticky ul li a span {
        padding: 6px 3px !important;
    }
}

#need_help_form .modal-body {
    padding: 10px 20px 20px 20px !important;
}

#need_help_form .modal-header {
    padding: 35px 20px 0px 20px !important;
}

.modal-dialog.custom_modal_popup {
    margin-right: 0;
    top: auto;
    max-width: 440px;
    padding: 0px !important;
}

.modal-dialog.custom_modal_popup .modal-body {
    padding: 30px !important;
    border: 0px !important;
}

#leadform__enquiry {
    padding-right: 0 !important;
}

.modal-dialog.custom_modal_popup .modal-content,
.enquiryeform .modal-content {
    border-radius: 0;
    border: solid 2px #e5e5e8;
    -webkit-box-shadow: 0 5px 15px rgb(0 0 0 / 50%);
    box-shadow: 0 5px 15px rgb(0 0 0 / 50%);
}

.modal-dialog.custom_modal_popup .modal-content .close,
.enquiryeform .modal-content .close {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 30px;
    height: 30px;
    line-height: 28px;
    background: #f00000;
    opacity: 1 !important;
    text-shadow: none;
    color: #fff;
    z-index: 2;
    border: solid 1px #f00000;
    font-size: 24px;
}

.modal-dialog.custom_modal_popup .modal-content .close:hover,
.enquiryeform .modal-content .close:hover {
    background: #000;
    border: solid 1px #000;
    opacity: 1 !important;
}

.modal-dialog.custom_modal_popup .modal-content .close span,
.enquiryeform .modal-content .close span {
    position: relative;
    height: 28px;
    display: block;
}

.modal-dialog.custom_modal_popup .popup_title,
.enquiryeform .modal-dialog .modal-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #000;
    padding-right: 0;
}

.modal-dialog.custom_modal_popup .form-group {
    margin-bottom: 20px;
}

.modal-dialog.custom_modal_popup .form-group input,
.modal-dialog.custom_modal_popup .form-group select,
.modal-dialog.custom_modal_popup .form-group textarea {
    box-shadow: none;
    border: solid 1px #a1a1a1;
    border-radius: 0;
    font-size: 15px;
    height: 40px;
    padding: 3px 10px;
    border-bottom: 2px solid #a1a1a1;
}

.modal-dialog.custom_modal_popup input.btn,
.modal-dialog.custom_modal_popup .btn {
    font-size: 16px !important;
    border-radius: 0px;
    min-width: 150px;
}

.enquiryeform .modal-dialog {
    width: 420px;
    margin: 0;
    right: 0;
    bottom: 0;
    position: fixed;
}

.enquiryeform .modal-dialog .modal-title {
    margin: 0;
}

.enquiryeform .modal-content .close {
    padding: 0;
    margin: 0;
}

.enquiryeform .modal-header {
    border: none;
    padding-bottom: 0;
}

.enquiryeform .helpenqform {
    background: #fff;
    width: 100%;
    display: block;
    overflow: hidden;
    border-radius: 5px;
    border: 3px solid #4d4d4d;
    font-size: 16px;
}

.enquiryeform .helpenqform h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 2px;
}

.enquiryeform .helpenqform a {
    display: block;
}

.enquiryeform .helpenqform a i.icon {
    position: relative;
    right: 3px;
    top: 0px;
    color: #000000;
}

.enquiryeform .helpenqform .call_div {
    background: #e9e9e9;
    padding: 15px;
}

.enquiryeform .helpenqform .call_div a i.icon {
    top: -1px;
}

.enquiryeform .helpenqform .mail_div {
    padding: 15px;
}

.home-2-our-team-items .items-inner {
    position: relative;
    margin: 5px;
}

.crticon {
    position: relative;
}

.crticon .badgecart {
    position: absolute;
    top: 4px;
    right: 12px;
    line-height: 12px;
    padding: 3px 6px !important;
    border-radius: 50%;
    background-color: var(--main-color-one);
    color: #fff;
    font-weight: 400;
}

@media only screen and (max-width:767px) {
    .common-price-style span {
        font-size: 14px !important;
    }

    .modal-dialog.custom_modal_popup {
        top: auto;
        max-width: 100%;
    }

    .modal-dialog.custom_modal_popup .modal-body {
        padding: 24px !important;
    }

    .enquiryeform .modal-dialog {
        width: 100%;
    }

    .modal-dialog.custom_modal_popup .popup_title,
    .enquiryeform .modal-dialog .modal-title {
        font-size: 16px;
    }

    .modal-dialog.custom_modal_popup input.btn,
    .modal-dialog.custom_modal_popup .btn {
        font-size: 15px !important;
        min-width: 136px;
    }

    .modal-dialog.custom_modal_popup .form-group input,
    .modal-dialog.custom_modal_popup .form-group textarea {
        box-shadow: none;
        border: solid 1px #a1a1a1;
        border-radius: 0;
        font-size: 13px;
        height: 38px;
        line-height: 40px;
        padding: 4px 10px;
        border-bottom: 1px solid #a1a1a1;
    }

    .enquiryeform .helpenqform h4 {
        font-size: 14px;
    }
}

.mobile_related_product {
    display: none !important;
}

.mobile_slider {
    display: none !important;
}

@media only screen and (max-width:991px) {
    .mobile_slider {
        display: block !important;
    }

    .gallery_sticky {
        display: none !important;
    }

    .related_products {
        ;
    }

    .mobile_related_product {
        margin: 0px !important;
        display: block !important;
    }

    .mobile_related_product .grid-list-column-item {
        width: 48% !important;
        float: left;
        margin: 1%;
        border-radius: 5px !important;
    }

    .mobile_related_product .grid-list-column-item .contnt_bxxx {
        padding: 10px 12px 10px 12px !important;
    }
}

/* --- Product List Banner UI Improvements --- */
.cstm-sticky-banner-container {
    position: sticky;
    top: 90px;
    z-index: 100;
}

.cstm-product-banner-wrapper {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 45px;
    border-radius: 0; /* Removed border curve */
    display: block; /* Changed from inline-block to block */
    text-align: center;
    width: 100%; /* Take full width */
    font-family: 'Neo Sans', sans-serif;
    margin-top: 15px; 
    margin-bottom: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 34, 82, 0.1); 
    border: 1px solid rgba(255, 255, 255, 0.4); 
    transition: all 0.3s ease;
}

.cstm-product-banner-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px 0 rgba(0, 34, 82, 0.15);
}

.cstm-product-banner-title {
    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 4px 0;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #005c97 0%, #363795 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cstm-product-banner-title-alt {
    font-size: 30px; 
    line-height: 1.3;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 4px 0;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #005c97 0%, #363795 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cstm-product-banner-list {
    list-style: none; 
    padding: 0; 
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cstm-product-banner-list li a {
    color: #555; 
    font-weight: 600; 
    text-decoration: none; 
    letter-spacing: 0.5px; 
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 2px;
}

.cstm-product-banner-list li a:hover {
    color: #005c97;
}

.cstm-product-banner-list li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #005c97;
    transition: width 0.3s ease;
}

.cstm-product-banner-list li a:hover::after {
    width: 100%;
}