/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

# Typography
# Normalize
# Accessibility
# Globals
# Alignments
# Clearings
# Posts and pages
# Captions
# Galleries
# Unit test
# guterberg
# Gutenberg	Default Style
# Block Color Palette Colors
# Sections
    ## Breadcrumb
    ## Comments
    ## Widgets
    ## Nav Bar
    ## Info Bar
    ## Header
    ## Header Bottom Area
    ## Footer Area
    ## Error 404 Area
    ## Why us Area
    ## Highly Skilled Area
    ## Call TO Action Area
    ## Testimonial Area
    ## Top Lawyer Style 02
    ## Counterup Area
    ## Case Category Area
    ## Legal Support Area
    ## Practice Details Area
    ## Attorney Details Area

# Elements
    ## Back Top
    ## Preloader
    ## Video Popup
    ## Button
    ## Blog
    ## Accordion
    ## contact Info Item
    ## Quote block with sign
    ## Counterup Item
    ## Video With Image
    ## Video Play Button
    ## Why Us Item
    ## Section Title
    ## What we cover item
    ## Icon Box Item
    ## Testimonial Item
    ## Case Categories Item
    ## Quote With Image
    ## Price Plan Item

--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
:root {
    --main-color-one: red;
    --main-color-two: #57d8f0;
    --secondary-color: #ffffff;
    --bg-color: #222429;
    --bg-color-two: #e8eff8;
    --heading-color: #222429;
    --paragraph-color: #cfd1d6;
    --heading-font: "Poppins", sans-serif;
    --body-font: "Poppins", sans-serif;
}

body {
    background-color: var(--bg-color);
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
    font-family: var(--body-font);
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    -moz-osx-font-smoothing: grayscale;
    /* Firefox */
    -webkit-font-smoothing: antialiased;
    /* WebKit  */
}

body {
    margin: 0;
    color: var(--paragraph-color);
    overflow-x: hidden;
    font-family: var(--body-font);
}

h1 {
    font-size: 48px;
    line-height: 1.0833333333;
}

h2 {
    font-size: 36px;
    line-height: 1.4444444444;
}

h3 {
    font-size: 24px;
    line-height: 1.0833333333;
}

h4 {
    font-size: 20px;
    line-height: 1.2380952381;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

p {
    color: var(--paragraph-color);
    -webkit-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 and button type focus outline disable*/
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=number]:focus,
textarea:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
select:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #ddd;
}

code {
    color: #faa603;
}

.dark-bg {
    background-color: #111d5c;
}

.section-bg-1 {
    background-color: #f4f7fc;
}

.check-list-02 {
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list-02 li {
    display: block;
    padding-left: 20px;
    position: relative;
    z-index: 0;
}

.check-list-02 li:after {
    position: absolute;
    left: 0;
    top: 0;
    font-family: "fontawesome";
    content: "ï€Œ";
    color: var(--main-color-one);
}

.error {
    color: #dc3545;
}

.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: "ï„…";
    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: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.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);
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
    /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    -webkit-clip-path: none;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
    outline: 0;
}

/*--------------------------------------------------------------
# Globals
--------------------------------------------------------------*/
.padding-left-0 {
    padding-left: 0;
}

.padding-right-0 {
    padding-left: 0;
}

.gray-bg {
    background-color: #f5f5f5;
}

.secondary-bg {
    background-color: var(--main-color-two);
}

.padding-top-10 {
    padding-top: 10px;
}

.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-55 {
    padding-top: 55px;
}

.padding-top-50 {
    padding-top: 50px;
}

.padding-top-60 {
    padding-top: 60px;
}

.padding-top-65 {
    padding-top: 65px;
}

.padding-top-70 {
    padding-top: 70px;
}

.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-140 {
    padding-top: 140px;
}

.padding-top-150 {
    padding-top: 150px;
}

.padding-top-160 {
    padding-top: 160px;
}

.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-55 {
    padding-bottom: 55px;
}

.padding-bottom-60 {
    padding-bottom: 60px;
}

.padding-bottom-65 {
    padding-bottom: 65px;
}

.padding-bottom-70 {
    padding-bottom: 70px;
}

.padding-bottom-80 {
    padding-bottom: 80px;
}

.padding-bottom-85 {
    padding-bottom: 85px;
}

.padding-bottom-90 {
    padding-bottom: 90px;
}

.padding-bottom-95 {
    padding-bottom: 95px;
}

.padding-bottom-100 {
    padding-bottom: 100px;
}

.padding-bottom-110 {
    padding-bottom: 110px;
}

.padding-bottom-105 {
    padding-bottom: 105px;
}

.padding-bottom-115 {
    padding-bottom: 115px;
}

.padding-bottom-120 {
    padding-bottom: 120px;
}

.padding-bottom-130 {
    padding-bottom: 130px;
}

.padding-bottom-135 {
    padding-bottom: 135px;
}

.padding-bottom-150 {
    padding-bottom: 150px;
}

.margin-top-minus-90 {
    margin-top: -90px;
}

.margin-top-minus-100 {
    margin-top: -100px;
}

.margin-top-120 {
    margin-top: 120px;
}

.margin-top-150 {
    margin-top: 150px;
}

.margin-top-160 {
    margin-top: 160px;
}

.padding-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.padding-110 {
    padding-top: 110px;
    padding-bottom: 110px;
}

.padding-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.padding-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.padding-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.padding-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.padding-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.padding-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.padding-65 {
    padding-top: 65px;
    padding-bottom: 65px;
}

.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-15 {
    margin-top: 15px;
}

.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-150 {
    margin-bottom: 150px;
}

.margin-top-100 {
    margin-bottom: 100px;
}

.margin-top-120 {
    margin-top: 120px;
}

.min-height-600 {
    min-height: 600px;
}

.overflow-hidden {
    overflow: hidden;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
    float: left;
    clear: both;
    margin-right: 20px;
}

.alignright {
    float: right;
    clear: both;
    margin-left: 20px;
}

.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto 1.75em;
}

.alignfull {
    margin: 1.5em 0;
    max-width: 100%;
}

.alignwide {
    max-width: 1100px;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
    display: block;
}

.updated:not(.published) {
    display: none;
}

.blog-pagination ul li {
    display: inline-block;
}

.blog-pagination ul li+li {
    margin: 0 5px;
}

.blog-pagination ul li {
    display: inline-block;
}

.blog-pagination ul li+li {
    margin: 0 5px;
}

.blog-pagination {
    display: block;
    width: 100%;
}

.blog-pagination ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-pagination ul li a,
.blog-pagination ul li span {
    display: block;
    padding: 3px 25px;
    border: 1px solid #e2e2e2;
    line-height: 40px;
    text-align: center;
    font-weight: 600;
    -webkit-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

.blog-pagination ul li span.current,
.blog-pagination ul li a:hover {
    background-color: var(--main-color-two);
    color: #fff;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
    max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
    display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
    clear: both;
}

.wp-caption img[class*=wp-image-] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
}

/*----------------------------------------
    # Unit test
------------------------------------------*/
.wp-link-pages a {
    margin: 0 5px;
    -webkit-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.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: 20px;
}

.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: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

.post-password-form input[type=submit]:hover {
    background-color: #121a2f;
}

.footer-widget .table td,
.footer-widget .table th {
    padding: 0.5rem !important;
}

/*--------------------------------------------------------------
# Gutenberg	Default Style
--------------------------------------------------------------*/
.single-post-details-item .entry-content>.alignwide {
    max-width: 1100px;
}

.single-post-details-item .entry-content>.alignfull {
    margin: 1.5em 0;
    max-width: 100%;
}

.wp-block-video video {
    max-width: 636px;
}

.wp-block-image img {
    display: block;
}

.wp-block-image.alignleft,
.wp-block-image.alignright {
    width: 100%;
}

.wp-block-image.alignfull img {
    width: 100vw;
}

.wp-block-gallery:not(.components-placeholder) {
    margin: 1.5em auto;
}

.wp-block-cover-text p {
    padding: 1.5em 14px;
}

ul.wp-block-latest-posts.alignwide,
ul.wp-block-latest-posts.alignfull,
ul.wp-block-latest-posts.is-grid.alignwide,
ul.wp-block-latest-posts.is-grid.alignwide {
    padding: 0 14px;
}

.wp-block-table {
    display: block;
    overflow-x: auto;
}

.wp-block-table table {
    border-collapse: collapse;
    width: 100%;
}

.wp-block-table td,
.wp-block-table th {
    padding: 0.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: 0.5em;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper>iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.wp-block-quote.is-large {
    margin: 0 auto 16px;
}

.wp-block-pullquote>p:first-child {
    margin-top: 0;
}

.wp-block-quote:not(.is-large):not(.is-style-large) {
    border-left: 4px solid #000;
    padding-left: 1em;
}

.wp-block-separator {
    margin: 3em auto;
    padding: 0;
}

@media screen and (min-width: 768px) {
    .wp-block-cover-text p {
        padding: 1.5em 0;
    }
}

.wp-block-pullquote {
    border-top: 4px solid #555d66;
    border-bottom: 4px solid #555d66;
    color: #40464d;
}

/*--------------------------------------------------------------
## Block Color Palette Colors
--------------------------------------------------------------*/
.has-strong-blue-color {
    color: #0073aa;
}

.has-strong-blue-background-color {
    background-color: #0073aa;
}

.has-lighter-blue-color {
    color: #229fd8;
}

.has-lighter-blue-background-color {
    background-color: #229fd8;
}

.has-very-light-gray-color {
    color: #eee;
}

.has-very-light-gray-background-color {
    background-color: #eee;
}

.has-very-dark-gray-color {
    color: #444;
}

.has-very-dark-gray-background-color {
    background-color: #444;
}

/*---------------------
    ## Breadcumb
----------------------*/
.breadcrumb-area {
    /*background-image: url(../img/bg/breadcrumb-bg.jpg);*/
    position: relative;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

/*.breadcrumb-area:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}*/

.breadcrumb-area.extra {
    padding-bottom: 138px;
}

.breadcrumb-area .breadcrumb-inner {
    padding: 40px 0 0px 0;
    text-align: left;
}

.breadcrumb-area .page-title {
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    color: #101010;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.breadcrumb-area p {
    font-size: 16px;
    line-height: 26px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.breadcrumb-area .page-list {
    margin: 0;
    padding: 0;
}

.breadcrumb-area .page-list li {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    font-size: 18px;
    font-weight: 400;
    color: rgb(0 0 0 / 92%);
}

.breadcrumb-area .page-list li:first-child {
    padding-left: 0;
}

.breadcrumb-area .page-list li:first-child a {
    color: var(--main-color-one);
}

.breadcrumb-area .page-list li:first-child:after {
    display: none;
}

.breadcrumb-area .page-list li:after {
    position: absolute;
    left: 10px;
    top: 0;
    content: "/";
    font-family: "fontawesome";
}

.breadcrumb-area .page-list li a {
    color: rgb(0 0 0 / 92%);
    -webkit-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: #000;
}

/*--------------------------------------------------------------
	## Comments
--------------------------------------------------------------*/
.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

.comments-area {
    margin-top: 30px;
}

.comments-area .comments-title {
    font-size: 26px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 25px;
}

.comments-area .comment-list .comment-respond {
    margin-bottom: 30px;
}

.comments-area .comment-list {
    margin: 0;
    padding: 0;
    list-style: none;
    list-style-type: none;
    margin-bottom: 20px;
}

.comments-area .comment-list li {
    margin-bottom: 30px;
}

.comments-area .comment-list li:last-child {
    margin-bottom: 0;
}

.comments-area .comment-list li ul.children {
    margin: 0;
    padding: 0;
    list-style: none;
    list-style-type: none;
}

.comments-area .comment-list li ul {
    list-style: none;
}

.comments-area .comment-list li ul.children li {
    margin-left: 50px;
    list-style-type: none;
    list-style: none;
}

.comments-area .comment-list li .single-comment-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.comments-area .comment-list li .single-comment-wrap .thumb {
    margin-right: 20px;
    min-width: 80px;
    border-radius: 50%;
}

.comments-area .comment-list li .single-comment-wrap .thumb img {
    margin-bottom: 10px;
    border-radius: 50%;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
}

.comments-area .comment-list li .single-comment-wrap .date,
.blog-details-page-content-area .comments-area .comment-list li .single-comment-wrap .time {
    display: block;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
}

.comments-area .comment-list li .single-comment-wrap .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
}

.comments-area .comment-list li .single-comment-wrap .content .title {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    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;
    -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;
    box-shadow: none;
}

.comment-form .form-group .form-control {
    height: 50px;
    line-height: 50px;
    border: 1px solid #e2e2e2;
}

.comment-form .submit-btn {
    height: 50px;
    width: auto;
    border-radius: 5px;
    font-weight: 400;
    background-color: var(--main-color-one);
    border: none;
    cursor: pointer;
    -webkit-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    color: #fff;
}

.comment-form .submit-btn:hover {
    background-color: var(--main-color-two);
    color: #fff;
}

.comment-respond {
    /*margin-top: 20px;*/
}

.comments-area .comment-list .children li:last-child {
    margin-bottom: 30px;
}

.comments-area .comment-list li ul.children {
    margin-top: 30px;
}

.comment-form-cookies-consent input[type=checkbox] {
    margin-right: 5px;
}

/*--------------------------------------------------------------
	## WIdgets
--------------------------------------------------------------*/
.widget {
    background-color: #f5f5f5;
    margin-bottom: 30px;
    padding: 25px 30px 30px 30px;
}

.widget select {
    width: 100%;
    height: 50px;
    padding: 10px 20px;
}

.widget .widget-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 20px;
    position: relative;
}

.widget.widget_calendar {
    padding-right: 24px;
    padding-left: 24px;
}

.widget:last-child {
    margin-bottom: 0px;
}

.widget.widget_nav_menu ul li.menu-item-has-children:after {
    display: none;
}

.widget.footer-widget .subscribe-form .form-group .form-control {
    background-color: #515457;
    color: #fff;
}

.widget.footer-widget .subscribe-form .form-group .form-control::-webkit-input-placeholder {
    /* WebKit browsers */
    color: rgba(255, 255, 255, 0.6);
}

.widget.footer-widget .subscribe-form .form-group .form-control:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: rgba(255, 255, 255, 0.6);
}

.widget.footer-widget .subscribe-form .form-group .form-control::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: rgba(255, 255, 255, 0.6);
}

.widget.footer-widget .subscribe-form .form-group .form-control:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: rgba(255, 255, 255, 0.6);
}

.widget.footer-widget .subscribe-form .submit-btn:hover {
    background-color: #fff;
    color: var(--main-color-one);
}

.widget.footer-widget {
    background-color: transparent !important;
    padding: 0;
    margin-bottom: 30px;
}

.widget.footer-widget .about_us_widget a {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
}

.widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.widget ul li ul {
    margin-left: 20px;
}

.widget ul li {
    display: block;
    margin: 8px 0;
    -ms-word-wrap: break-word;
    word-break: break-word;
}

.widget ul li:first-child {
    margin-top: 0px;
}

.widget ul li:last-child {
    margin-bottom: 0px;
}

.widget ul li a {
    color: inherit;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.widget ul li a:hover {
    color: var(--main-color-one);
}

.footer-widget.widget_nav_menu ul li a {
    position: relative;
    padding-left: 15px;
}

.footer-widget.widget_nav_menu ul li a:after {
    position: absolute;
    left: 0;
    top: 0;
    content: "ï„…";
    font-family: "fontawesome";
    font-weight: 900;
    color: var(--main-color-two);
}

.widget_search .search-form {
    position: relative;
}

.widget_search .search-form .form-group {
    margin-bottom: 0;
}

.widget_search .search-form .form-group .form-control {
    height: 50px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 0 70px 0 15px;
}

.widget_search .search-form .submit-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 50px;
    line-height: 50px;
    padding: 0;
    font-size: 18px;
    border-radius: 0px 5px 5px 0px;
    background-color: var(--main-color-one);
    color: #fff;
    -webkit-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    border: none;
    cursor: pointer;
}

.widget_search .search-form .submit-btn:hover {
    background-color: var(--main-color-two);
    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;
    -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: 15px 0;
}

.widget.widget_nav_menu ul li:first-child {
    margin-top: 0;
}

.widget.widget_nav_menu ul li:last-child {
    margin-bottom: 0;
}

.widget.widget_nav_menu ul li a {
    border: none;
}

.widget.widget_nav_menu ul li a span {
    float: right;
}

.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: rgba(255, 255, 255, 0.6);
}

.widget.footer-widget ul li a,
.widget.footer-widget ul li {
    color: rgba(255, 255, 255, 0.6);
}

.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: #3b5999;
}

.widget .social_share li.twitter {
    background-color: #55acee;
}

.widget .social_share li.instagram {
    background-color: #e4405f;
}

.widget .social_share li a:hover {
    color: #fff;
}

.widget .social_share li+li {
    margin-left: 10px;
}

.widget .recent_post_item {
    margin: 0;
    padding: 0;
    list-style: none;
}

.widget .recent_post_item li {
    display: block;
}

.widget .recent_post_item li+li {
    margin-top: 20px;
}

.widget .recent_post_item li.single-recent-post-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.widget .recent_post_item li.single-recent-post-item .thumb {
    width: 80px;
    height: 80px;
    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: 700;
    margin-bottom: 0;
}

.widget .recent_post_item li.single-recent-post-item .content .time {
    font-size: 12px;
    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 {
    display: block;
    margin-bottom: 20px;
}

.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;
}

.practice-sidebar .widget.widget_categories,
.case-sidebar .widget.widget_categories {
    padding: 0px;
    background-color: transparent;
}

.practice-sidebar .widget.widget_categories .widget-title,
.case-sidebar .widget.widget_categories .widget-title {
    background-color: #e1e1e1;
    padding: 15px 30px;
    margin-bottom: 0px;
}

.practice-sidebar .widget.widget_categories ul li,
.case-sidebar .widget.widget_categories ul li {
    position: relative;
    z-index: 0;
    background-color: #f5f5f5;
    padding: 13px 30px;
    margin-bottom: 0;
}

.practice-sidebar .widget.widget_categories ul li+li,
.case-sidebar .widget.widget_categories ul li+li {
    margin-top: 2px;
}

.practice-sidebar .widget.widget_categories ul li:after,
.case-sidebar .widget.widget_categories ul li:after {
    position: absolute;
    left: 15px;
    top: 12px;
    content: "ï„…";
    font-family: "fontawesome";
    font-weight: 900;
}

.widget-ul-wrapper ul li i {
    padding-right: 5px;
    color: var(--main-color-one);
}

/*----------------------
    Top Bar
----------------------*/
.top-bar-area {
    background-color: var(--bg-color);
}

.top-bar-inner ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.top-bar-inner ul li a:hover {
    color: var(--main-color-two);
}

.top-bar-inner ul li a {
    color: #f2f2f2;
    transition: all 300ms;
}

.top-bar-inner ul li {
    display: inline-block;
}

.top-bar-inner ul li+li {
    margin-left: 15px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#langchange {
    background-color: transparent;
    border: none;
    color: #f1f1f1;
    cursor: pointer;
}

.top-bar-inner .btn-wrapper .boxed-btn {
    border-radius: 0;
    font-weight: 700;
}

.top-bar-inner .btn-wrapper .boxed-btn:hover {
    color: #fff;
}

/*----------------------------------------------
    # Nav bar
----------------------------------------------*/
.header-style-01 {
    position: fixed;
    width: 100%;
    z-index: 2;
}

.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.nav-style-01 .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(255, 0, 0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.mobile-logo {
    display: none;
}

.col-service-box {
    max-width: 22%;
    flex: 10%;
    padding: 4px;
}

.plan_extra_price {
    font-size: 13px;
    font-weight: 700;
    color: black;
}

@media only screen and (max-width: 991px) {

    .col-service-box {
        max-width: 100%;
        flex: 100%;
        padding: 4px;
    }

    .bottom_banner_area {
        background-size: cover;
    }

    .mobile-logo {
        display: block;
    }

    .desktop-logo {
        display: none !important;
    }
}

.navbar-area {
    padding: 0;
}

.navbar-area.nav-absolute {
    position: relative;
    left: 0;
    width: 100%;
    top: 0px;
    z-index: 2;
}

.navbar-area.nav-style-02 {
    background-color: transparent;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 100px;
    z-index: 1;
}

.navbar-area.nav-style-02 .nav-container {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0 15px;
}

.navbar-area.nav-style-02 .nav-container .logo-wrapper {
    max-width: 200px;
}

.navbar-area.nav-style-02 .nav-container .logo-wrapper .logo {
    font-size: 36px;
    font-weight: 600;
}

.navbar-area.nav-style-02 .nav-container .nav-right-content ul li {
    color: rgba(255, 255, 255, 0.8);
}

.navbar-area.nav-style-02 .nav-container .nav-right-content ul li+li {
    margin-left: 5px;
}

.navbar-area.nav-style-02 .nav-container .nav-right-content ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav {
    text-align: center;
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
    color: var(--main-color-one);
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.current-menu-item:before {
    color: var(--main-color-one);
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.style-01 a {
    color: rgba(255, 255, 255, 0.9);
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
    z-index: initial;
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    color: rgba(255, 255, 255, 0.8);
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li+li {
    border-top: 1px solid #e2e2e2;
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    background-color: #fff;
    color: var(--paragraph-color);
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
    background-color: var(--main-color-one);
    color: #fff;
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover>.sub-menu li:hover:before {
    color: #fff;
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li a {
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    color: rgba(255, 255, 255, 0.8);
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li:hover.menu-item-has-children:before {
    color: var(--main-color-one);
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li:hover a {
    color: var(--main-color-one);
}

.navbar-area.nav-style-01 {
    background-color: transparent;
    /* box-shadow: 0px 0px 8px #b7b7b7; */
}

.navbar-area.nav-style-01 .nav-container {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    padding: 8px 15px;
}

.navbar-area.nav-style-01 .nav-container .logo-wrapper {
    max-width: 200px;
}

.navbar-area.nav-style-01 .nav-container .logo-wrapper .logo {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
}

.navbar-area.nav-style-01 .nav-container .nav-right-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.navbar-area.nav-style-01 .nav-container .nav-right-content ul li {
    color: rgba(255, 255, 255, 0.8);
}

.navbar-area.nav-style-01 .nav-container .nav-right-content ul li a {
    color: rgba(255, 255, 255, 0.95);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav {
    text-align: center;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li {
    line-height: 80px;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
    color: var(--main-color-one);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.current-menu-item.menu-item-has-children:before,
.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.current-menu-item.menu-item-has-mega-menu:before {
    color: var(--main-color-one);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.style-01 a {
    color: rgba(255, 255, 255, 0.7);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
    z-index: initial;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before,
.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-mega-menu:before {
    color: var(--main-color-one);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li+li {
    border-top: 1px solid #e2e2e2;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    background-color: #fff;
    color: var(--heading-color);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
    background-color: var(--main-color-one);
    color: #fff;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover>.sub-menu li:hover:before {
    color: #fff;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li a {
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    /* color: rgb(12 12 12 / 94%); */
    color: #fff;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li:hover.menu-item-has-children:before {
    color: var(--main-color-one);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li:hover>a {
    color: var(--main-color-one);
}

.navbar-area .nav-container {
    background-color: #fff;
    -webkit-box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.2);
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 0 30px;
}

.navbar-area .nav-container .nav-right-content .btn-wrapper {
    margin-left: 20px;
}

.navbar-area .nav-container .nav-right-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: 15px;
}

.navbar-area .nav-container .nav-right-content ul li {
    display: inline-block;
    color: #6a7795;
}

.navbar-area .nav-container .nav-right-content ul li:last-child {
    margin-right: 0;
}

.navbar-area .nav-container .nav-right-content ul li+li {
    margin-left: 5px;
}

.navbar-area .nav-container .nav-right-content ul li a {
    color: #6a7795;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.navbar-area .nav-container .nav-right-content ul li a:hover {
    color: var(--main-color-one);
}

.navbar-area .nav-container .nav-right-content ul li.search {
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.navbar-area .nav-container .nav-right-content ul li.search:hover {
    color: var(--main-color-one);
}

.navbar-area .nav-container .nav-right-content ul li.nav-btn .btn-boxed {
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 5px;
    background-color: var(--main-color-one);
}

.navbar-area .nav-container .nav-right-content ul li.nav-btn .btn-boxed:hover {
    background-color: var(--main-color-two);
}

.navbar-area .nav-container .navbar-brand .site-title {
    font-weight: 700;
    font-size: 30px;
    font-family: var(--heading-font);
    line-height: 90px;
    color: var(--heading-color);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav {
    display: block;
    width: 100%;
    text-align: center;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 90px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li+li {
    margin-left: 20px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
    color: var(--main-color-one);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children,
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-mega-menu {
    position: relative;
    z-index: 0;
    padding-right: 15px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before,
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-mega-menu:before {
    position: absolute;
    right: 0;
    top: 50%;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    -ms-transform: translateY(-50%);
    /* IE 9 */
    -webkit-transform: translateY(-50%);
    /* Chrome, Safari, Opera */
    transform: translateY(-50%);
    -webkit-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,
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-mega-menu:hover>.xg_mega_menu_wrapper {
    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: 220px;
    margin: 0;
    padding: 0;
    list-style: none;
    left: 0;
    top: 100%;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
    background-color: #fff;
    z-index: 9;
    border-bottom: 4px solid var(--main-color-one);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    display: block;
    margin-left: 0;
    line-height: 24px;
    font-size: 16px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li+li {
    border-top: 1px solid #e2e2e2;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    display: block;
    padding: 12px 30px;
    background-color: #fff;
    white-space: nowrap;
    color: var(--paragraph-color);
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
    background-color: var(--main-color-one);
    color: #fff;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children {
    position: relative;
    z-index: 0;
    padding-right: 0px;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li.menu-item-has-children:before {
    color: var(--paragraph-color);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:before {
    position: absolute;
    right: 15px;
    top: 50%;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    -ms-transform: translateY(-50%);
    /* IE 9 */
    -webkit-transform: translateY(-50%);
    /* Chrome, Safari, Opera */
    transform: translateY(-50%);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
    left: 100%;
    top: 20px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu .sub-menu .sub-menu {
    left: auto;
    right: 100%;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover>.sub-menu {
    visibility: visible;
    opacity: 1;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover>.sub-menu li:hover:before {
    color: #fff;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li a:hover {
    color: var(--main-color-one);
}

.navbar-area.nav-style-01 .nav-container .nav-right-content ul li i {
    font-weight: 700;
}

/* cart icon badge design */
/* .navbar-area .nav-container .nav-right-content ul li.cart a:hover .pcount,
.mobile-cart a:hover .pcount {
    color: #fff;
} */

/* .mobile-cart a {
    color: #fff;
    display: none;
} */

/* .navbar-area .nav-container .nav-right-content ul li.cart,
.mobile-cart a {
    position: relative;
} */

/* .navbar-area .nav-container .nav-right-content ul li.cart .pcount,
.mobile-cart a .pcount {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--main-color-one);
    font-size: 13px;
    font-weight: 700;
} */

.navbar-area .nav-container .nav-right-content ul li select {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 20px;
    padding: 5px;
    margin-left: 20px;
}

@media only screen and (max-width: 991px) {
    .navbar-area.nav-style-02 .nav-container {
        padding: 20px 0px;
    }

    .navbar-area.nav-style-02 .nav-container .navbar-toggler {
        background-color: #fff;
    }

    .navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav {
        background-color: var(--main-color-two);
        padding: 0 20px;
    }

    .navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
        background-color: transparent;
        color: rgba(255, 255, 255, 0.8);
    }

    .navbar-area.nav-style-01 .nav-container {
        padding: 20px 0px;
    }

    .navbar-area.nav-style-01 .nav-container .responsive-mobile-menu .navbar-toggler {
        background-image: none;
    }

    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav {
        text-align: center;
    }

    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li {
        line-height: 30px;
    }

    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
        color: var(--main-color-one);
    }

    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.current-menu-item.menu-item-has-children:before {
        color: var(--main-color-one);
    }

    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
        z-index: initial;
    }

    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
        color: var(--main-color-one);
    }

    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li+li {
        border-top: 1px solid #e2e2e2;
    }

    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
        background-color: transparent;
        color: var(--heading-color);
    }

    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
        background-color: var(--main-color-one);
        color: #fff;
    }

    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover>.sub-menu li:hover:before {
        color: #656565;
    }

    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li a {
        -webkit-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
        color: rgba(255, 255, 255, 0.8);
    }

    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li:hover.menu-item-has-children:before {
        color: var(--main-color-one);
    }

    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li:hover a {
        color: var(--main-color-one);
    }

    .navbar-area .nav-container {
        position: relative;
        z-index: 0;
        min-height: 80px;
    }

    .navbar-area .nav-container .responsive-mobile-menu {
        display: block;
        position: relative;
        width: 100%;
    }

    .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler {
        position: absolute;
        right: 0;
        top: 50%;
        -ms-transform: translateY(-50%);
        /* IE 9 */
        -webkit-transform: translateY(-50%);
        /* Chrome, Safari, Opera */
        transform: translateY(-50%);
        /* border: 1px solid rgba(255, 255, 255, 0.8); */
        /* outline: 5px auto red !important; */
    }

    .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler:focus {
        outline: 5px auto white;
    }

    .navbar-area .nav-container .navbar-brand {
        display: block;
    }

    .navbar-area .nav-container .navbar-brand .navbar-toggler {
        position: absolute;
        right: 10px;
        border: 1px solid #e2e2e2;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav {
        display: block;
        margin-top: 20px;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li {
        display: block;
        text-align: left;
        line-height: 30px;
        padding: 10px 0;
        border-bottom: 1px solid #e2e2e2;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li:last-child {
        border-bottom: none;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li+li {
        margin-left: 0;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
        top: 25px;
        right: 20px;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover {
        padding-bottom: 0;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover>.sub-menu {
        visibility: visible;
        height: auto;
        opacity: 1;
        background-color: transparent;
        border-bottom: none;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
        position: initial;
        display: block;
        width: 100%;
        border-top: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        margin-left: 0;
        padding-bottom: 0;
        visibility: hidden;
        opacity: 0;
        height: 0;
        overflow: hidden;
        max-height: 250px;
        overflow-y: scroll;
        -webkit-transition: height 500ms;
        -o-transition: height 500ms;
        transition: height 500ms;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .sub-menu .menu-item-has-children:before {
        content: "ï„‡";
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
        padding: 0;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li.menu-item-has-children:hover:before {
        top: 30px;
        color: #fff;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li+li {
        border-top: none;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:first-child {
        border-top: 1px solid #e2e2e2;
    }
}

@media only screen and (max-width: 575px) {
    .navbar-area .nav-container {
        margin: 0 15px;
    }
}

/*----------------------------
    Info Bar
----------------------------*/
.info-items {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
}

.info-items li {
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.info-items li+li {
    margin-left: 20px;
}

.info-items li:hover {
    color: var(--main-color-one);
}

.info-items li i {
    margin-right: 3px;
    color: var(--main-color-one);
}

.info-items-icon {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
}

.info-items-icon li {
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.info-items-icon li+li {
    margin-left: 20px;
}

.info-items-icon li:hover {
    color: var(--main-color-one);
}

.navbar-area.nav-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #171717;
    z-index: 999;
}

.navbar-area.nav-fixed .nav-container .navbar-collapse .navbar-nav li {
    line-height: 70px;
}

.navbar-area.nav-fixed .nav-container .logo-wrapper {
    margin-top: -10px;
}

/*----------------------------
    Top Bar
----------------------------*/
.topbar-area {
    background-color: #F7F7F7;
}

.topbar-area.style-04 {
    position: absolute;
    left: 0;
    top: 20px;
    width: 100%;
    z-index: 2;
    background-color: transparent;
    min-height: 50px;
}

.topbar-area.style-04 .info-items li {
    color: rgba(255, 255, 255, 0.8);
}

.topbar-area.style-04 .info-items li i {
    font-size: 20px;
    line-height: 30px;
}

.topbar-area.style-04 .info-items li:hover {
    color: var(--main-color-one);
}

.topbar-area.style-04 .info-items-icon li {
    color: rgba(255, 255, 255, 0.8);
}

.topbar-area.style-04 .info-items-icon li:hover {
    color: var(--main-color-one);
}

.topbar-area.style-03 {
    background-color: var(--main-color-two);
    padding: 15px 0;
}

.topbar-area.style-03 .info-items li {
    color: rgba(255, 255, 255, 0.8);
}

.topbar-area.style-03 .info-items li i {
    font-size: 20px;
    line-height: 30px;
}

.topbar-area.style-03 .info-items li:hover {
    color: var(--main-color-one);
}

.topbar-area.style-03 .info-items-icon li {
    color: rgba(255, 255, 255, 0.8);
}

.topbar-area.style-03 .info-items-icon li:hover {
    color: var(--main-color-one);
}

.topbar-area.style-03 .topbar-inner div:first-child {
    padding-top: 0px;
}

.topbar-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.topbar-inner div:first-child {
    padding-top: 15px;
}

.topbar-inner div .boxed-btn {
    padding: 15px 30px;
    background-color: var(--main-color-one);
    display: inline-block;
    color: #fff;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.topbar-inner div .boxed-btn:hover {
    background-color: var(--main-color-two);
    color: #fff;
}

/*--------------------------------------------------------------
	## Header
--------------------------------------------------------------*/
.header-style-04.has-top-bar .navbar-area {
    top: 75px;
}

.header-style-04.has-top-bar .header-area {
    padding-top: 352px;
    padding-bottom: 300px;
}

.header-style-03 .header-area {
    padding-top: 295px;
}

.header-area-wrapper,
.header-style-02,
.header-style-03 {
    position: relative;
    z-index: 0;
}

.header-style-02 .header-area {
    padding-top: 295px;
    padding-bottom: 290px;
}

.header-slider-one .owl-item.active .title {
    -webkit-animation: slideInLeft 2s 0s both;
    animation: slideInLeft 2s 0s both;
}

.header-slider-one .owl-item.active p {
    -webkit-animation: slideInLeft 2s 1s both;
    animation: slideInLeft 2s 1s both;
}

.header-slider-one .owl-item.active span {
    -webkit-animation: slideInLeft 2s 1s both;
    animation: slideInLeft 2s 1s both;
}

/* .header-slider-one .owl-item.active .btn-wrapper, */
.header-slider-one .owl-item.active .header-inner.style-01 .vdo-btn {
    -webkit-animation: slideInUp 0.5s 0.5s both;
    animation: slideInUp 0.5s 0.5s both;
}

.header-slider-one .owl-item.active .btn-wrapper {
    -webkit-animation: slideInUpCustom 0.5s 0.5s both;
    animation: slideInUpCustom 0.5s 0.5s both;
}

@keyframes slideInUpCustom {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 200%, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.header-slider-one:hover .owl-nav div {
    visibility: visible;
    opacity: 1;
}

.header-slider-one .owl-nav div {
    position: absolute;
    left: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    visibility: hidden;
    opacity: 0;
}

.header-slider-one .owl-nav div:hover {
    color: var(--main-color-one);
    border-color: var(--main-color-one);
}

.header-slider-one .owl-nav div.owl-next {
    left: auto;
    right: 20px;
}

.header-area {
    padding: 120px 0 216px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

@media only screen and (max-width: 1200.98px) and (min-width: 768px) {
    .header-area {
        padding: 160px 0 440px;
    }
}

@media only screen and (max-width: 460.98px) {
    .header-area {
        padding: 100px 0 550px;
    }
}

@media only screen and (max-width: 292.98px) {
    .header-area {
        padding: 100px 0 650px;
    }
}

.header-area.style-04 {
    padding: 260px 0 190px 0;
}

.header-area.style-04 .subtitle {
    position: relative;
    z-index: 0;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    padding-left: 70px;
    letter-spacing: 1px;
}

.header-area.style-04 .subtitle:after {
    position: absolute;
    left: 0;
    top: 10px;
    width: 60px;
    height: 2px;
    background-color: var(--main-color-one);
    content: "";
}

.header-area.header-bg {
    background-color: #000;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 0;
    max-height: 600px;
}

.header-area.header-bg:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(78, 10, 131, 0)), color-stop(49%, rgba(78, 10, 131, 0.49)), to(rgba(78, 10, 131, 0.2)));
    background-image: -o-linear-gradient(bottom, rgba(78, 10, 131, 0) 0%, rgba(78, 10, 131, 0.49) 49%, rgba(78, 10, 131, 0.2) 100%);
    background-image: linear-gradient(0deg, rgba(78, 10, 131, 0) 0%, rgba(78, 10, 131, 0.49) 49%, rgba(78, 10, 131, 0.2) 100%);*/
    content: "";
    z-index: -1;
}

.header-area.header-bg-02 {
    background-color: #000;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.header-area.header-bg-02:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-image: url("../img/bg/bg-03.png");
    content: "";
    z-index: -1;
}

.header-area.header-bg-02:before {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    z-index: 0;
}

.header-area.header-bg-03 {
    background-color: #000;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.header-area.header-bg-03:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.2);
    content: "";
    z-index: -1;
}

.header-area.header-bg-04 {
    background-color: #000;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.header-area.header-bg-04:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.8);
    content: "";
    z-index: -1;
}

.header-area .header-inner {
    overflow: hidden;
}

.header-area .header-inner.style-01 .title {
    text-align: center;
}

.header-area .header-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.header-area .header-bottom .video-play {
    color: #fff;
}

.header-area .header-bottom .video-play i {
    margin-left: 30px;
    margin-right: 10px;
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    border: 1px solid #fff;
    background-color: transparent;
    border-radius: 50%;
}

.header-area .header-video {
    position: relative;
    width: 100%;
    height: 100%;
}

.header-area .header-video .vdo-btn {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-area .title {
    font-size: 48px;
    line-height: 58px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 30px;
}

.header-area .description {
    color: #fff;
}

.header-area .subtitle {
    font-size: 22px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    font-weight: bold;
    text-transform: uppercase;
}

/*.header-area .subtitle::after {*/
/*    left: 110px;*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 12px;*/
/*    width: 100px;*/
/*    height: 1px;*/
/*    background-color: #fff;*/
/*}*/
/*.header-area span {*/
/*    font-size: 18px;*/
/*    font-weight: 500;*/
/*    color: #fff;*/
/*    display: block;*/
/*}*/
.header-area .btn-wrapper .boxed-btn {
    border: 1px solid transparent;
}

.header-area .btn-wrapper .boxed-btn:hover {
    border: 1px solid #fff;
    background-color: transparent;
    color: white;
    box-shadow: 0 0 10px #57d8f0;
    cursor: pointer;
}

.header-area .btn-wrapper .boxed-btn.blank {
    background-color: transparent;
    border: 1px solid #fff;
}

.header-area .btn-wrapper .boxed-btn.blank:hover {
    background-color: #fff;
    color: var(--main-color-one);
    border-color: var(--main-color-one);
}

.header-area .btn-wrapper .boxed-btn+.boxed-btn {
    margin-left: 20px;
}

/*----------------------------
    Header Bottom Area
-----------------------------*/
.header-bottom-area.style-02 {
    -webkit-box-shadow: 0px 0px 158px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 158px 0px rgba(0, 0, 0, 0.2);
}

.header-bottom-area.style-04 {
    background-color: transparent;
    position: relative;
    z-index: 2;
}

.header-bottom-area.style-03 {
    background-size: cover;
    background-position: center;
}

.header-bottom-inner {
    margin-top: -70px;
    position: relative;
    z-index: 1;
}

.header-bottom-inner.style-02 {
    -webkit-box-shadow: 0px 0px 158px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 158px 0px rgba(0, 0, 0, 0.2);
}

.header-bottom-wrap {
    background-color: var(--main-color-two);
    padding: 30px 0 40px 0;
}

.single-header-bottom-item {
    background-color: #616161;
    text-align: center;
    position: relative;
    z-index: 0;
    padding: 50px 0 50px 0;
    height: 100%;
    transition: 0.5s ease-in-out;
}

.single-header-bottom-item:after {
    content: "";
    position: absolute;
    background-image: url(../img/bg/abstract-shape.webp);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* .single-header-bottom-item.style-01 {
    background-color: #f06c00;
}

.single-header-bottom-item.style-02 {
    background-color: #0022fe;
}

.single-header-bottom-item.style-03 {
    background-color: #8255ff;
}

.single-header-bottom-item.style-04 {
    background-color: #d54a8d;
}

.single-header-bottom-item.style-05 {
    background-color: #5ccc01;
} */

.single-header-bottom-item.black .content .title {
    color: var(--heading-color);
}

.single-header-bottom-item .bg-text {
    font-size: 120px;
    line-height: 100px;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 8px;
    z-index: -1;
    color: #434950;
    font-family: var(--heading-font);
}

.single-header-bottom-item:hover {
    background-color: var(--main-color-one);
}

.single-header-bottom-item:hover .icon {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}

.single-header-bottom-item .icon {
    max-width: 80px;
    /* font-size: 80px; */
    line-height: 80px;
    /* color: #fff; */
    margin-bottom: 30px;
    display: inline-block;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.single-header-bottom-item .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.single-header-bottom-item .content .title {
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    color: #fff;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    margin-bottom: 5px;
    max-width: 160px;
    margin: auto;
}

.single-header-bottom-item .content p {
    margin-bottom: 0px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.single-header-bottom-item-02 {
    background-color: #fff;
    text-align: center;
    position: relative;
    z-index: 0;
    padding: 50px 0 35px 0;
}

.single-header-bottom-item-02.black .content .title {
    color: var(--heading-color);
}

.single-header-bottom-item-02 .bg-text {
    font-size: 120px;
    line-height: 100px;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 8px;
    z-index: -1;
    color: #434950;
    font-family: var(--heading-font);
}

.single-header-bottom-item-02:hover .icon {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}

.single-header-bottom-item-02 .icon {
    font-size: 80px;
    line-height: 60px;
    color: #fff;
    margin-bottom: 30px;
    display: inline-block;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.single-header-bottom-item-02 .icon.style-01 {
    color: #bd10e0;
}

.single-header-bottom-item-02 .icon.style-02 {
    color: #ff8a73;
}

.single-header-bottom-item-02 .icon.style-03 {
    color: #5580ff;
}

.single-header-bottom-item-02 .icon.style-04 {
    color: #45e7ac;
}

.single-header-bottom-item-02 .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.single-header-bottom-item-02 .content .title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: var(--heading-color);
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    margin-bottom: 5px;
    max-width: 145px;
    margin: auto;
}

.single-header-bottom-item-02 .content p {
    margin-bottom: 0px;
    color: var(--heading-color);
    font-size: 14px;
}

.single-header-bottom-item-03 {
    position: relative;
    z-index: 0;
    padding: 30px 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.single-header-bottom-item-03.black .content .title {
    color: var(--heading-color);
}

.single-header-bottom-item-03:hover .content .title {
    color: var(--main-color-one);
}

.single-header-bottom-item-03:hover .icon {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}

.single-header-bottom-item-03.white .content .title {
    color: #fff;
    font-size: 20px;
}

.single-header-bottom-item-03.white .content p {
    color: rgba(255, 255, 255, 0.8);
}

.single-header-bottom-item-03 .icon {
    font-size: 50px;
    line-height: 80px;
    color: #fff;
    margin-right: 20px;
    display: inline-block;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background-color: var(--main-color-one);
    text-align: center;
}

.single-header-bottom-item-03 .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 10px;
}

.single-header-bottom-item-03 .content .title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    margin-bottom: 5px;
}

.single-header-bottom-item-03 .content p {
    margin-bottom: 0px;
    font-size: 14px;
}

.service-text.style-01 .title {
    color: #fff;
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 18px;
}

.service-text.style-01 p {
    color: #fff;
    font-size: 18px;
    max-width: 570px;
}

.single-header-bottom-item-04 {
    background-color: transparent;
    padding: 50px 0 65px 0;
    margin-right: 50px;
}

.single-header-bottom-item-04:hover .icon {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}

.single-header-bottom-item-04.style-01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 35px 25px;
    margin: 0;
    border: 1px solid #e5e5e5;
}

.single-header-bottom-item-04.style-01 .icon {
    font-size: 45px;
    margin-bottom: 0;
    margin-right: 15px;
}

.single-header-bottom-item-04.style-01 .icon.style-02 {
    color: #ff8a73;
}

.single-header-bottom-item-04.style-01 .icon.style-03 {
    color: #5580ff;
}

.single-header-bottom-item-04.style-01 .icon.style-04 {
    color: #45e7ac;
}

.single-header-bottom-item-04.style-01 .content .title {
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    color: var(--heading-color);
}

.single-header-bottom-item-04 .icon {
    font-size: 65px;
    line-height: 60px;
    color: #fff;
    margin-bottom: 30px;
    display: inline-block;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.single-header-bottom-item-04 .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.single-header-bottom-item-04 .content .title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: #fff;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    margin-bottom: 5px;
    max-width: 145px;
}

/*-------------------------
    Footer Area
-------------------------*/
.footer-area {
    /* margin-top: -10px; */
    position: relative;
}

.footer-top {
    background-color: var(--bg-color);
}

.copyright-area {
    background-color: #171b1f;
}

.widget-ul-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.widget-ul-wrapper .second-ul {
    margin-left: 30px !important;
}

.newsletter-form-wrap form {
    position: relative;
    margin-top: 15px;
}

.newsletter-form-wrap .form-group .form-control {
    height: 50px;
    text-transform: capitalize;
}

.newsletter-form-wrap .submit-btn:focus {
    outline: none;
    box-shadow: none;
}

.newsletter-form-wrap .submit-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 40px;
    color: var(--main-color-one);
    line-height: 33px;
}

/*-----------------------
    Conditions Page
-----------------------*/

.conditions {
    padding: 100px 0 !important;

    h1 {
        color: var(--main-color-one);
        font-weight: 700;
    }

    h4 {
        color: #ffffff;
        font-weight: 700;
    }

    h5 {
        font-weight: 600;
    }

    .note {
        font-size: 20px;
        font-weight: 800;
    }
}

.conditions-contact-btn {
    color: var(--main-color-two) !important;
    background-color: #fdffe8;
    font-weight: 700;
    border: 1px solid var(--main-color-two);
    padding: 10px;
    margin-right: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.4s linear;
}

.conditions-contact-btn:hover {
    border-radius: 50px;
    border: 1px solid var(--main-color-one);
    color: var(--main-color-one) !important;
    background-color: #daf9ff;
}

.refund-btn {
    color: #ffffff;
    transition: 0.4s linear;

    i {
        color: var(--main-color-one);
        transition: 0.4s linear;
    }
}

.refund-btn:hover {
    color: var(--main-color-one);

    i {
        color: #ffffff;
    }
}

/*-----------------------
    Thank You Page
-----------------------*/

/* .thank-you {
    background-color: #daf9ff;
} */

.thank-you-heading {
    text-align: center;
    margin-bottom: 70px;
}

.thank-you-box {
    padding: 50px 20px;
    border-radius: 8px;
    text-align: center;
    background-color: #fdffe8;
    box-shadow: -11px 25px 25px rgba(0, 0, 0, 0.5);
}

/*-----------------------
    Error 404 Page
-----------------------*/
.error-404 {
    text-align: center;
}

.error-404 .title {
    font-size: 200px;
    line-height: 160px;
    font-weight: 700;
    margin-bottom: 45px;
    color: var(--main-color-one);
}

.error-404 .subtitle {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 20px;
}

.error-404 .search-form {
    position: relative;
    z-index: 0;
    margin-top: 36px;
}

.error-404 .search-form .form-control {
    height: 54px;
    padding: 0 20px;
}

.error-404 .search-form .submit-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    text-align: center;
    padding: 0;
    height: 55px;
}

.team-section {
    position: relative;
    z-index: 2;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
}

.team-section:hover .team-img-cont::after {
    opacity: 0.36;
    visibility: visible;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.team-section:hover .team-img-cont .social-link {
    visibility: visible;
    right: 0;
}

.team-section .team-img-cont .social-link {
    position: absolute;
    background-color: #fff;
    top: 40%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -50px;
    z-index: 1;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.team-section .team-img-cont .social-link ul {
    margin: 0;
    padding: 0;
}

.team-section .team-img-cont .social-link ul li {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    list-style-type: none;
    color: var(--heading-color);
}

.team-section .team-img-cont .social-link ul li:hover {
    color: #fff;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    background: var(--main-color-one);
}

.team-section img {
    z-index: 2;
    width: 100%;
    -webkit-transition: transform 500ms;
    -webkit-transition: -webkit-transform 500ms;
    transition: -webkit-transform 500ms;
    -o-transition: transform 500ms;
    transition: transform 500ms;
    transition: transform 500ms, -webkit-transform 500ms;
}

.team-section .team-text {
    margin-top: 20px;
}

.team-section .team-text .title {
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
}

/*-----------------------------
    Call To Action Area
-----------------------------*/
.call-to-action.bg-image {
    background-image: -o-linear-gradient(69deg, #fd5b56 0%, #f41e7e 100%);
    background-image: linear-gradient(21deg, #fd5b56 0%, #f41e7e 100%);
    background-size: cover;
    background-position: center;
}

.call-to-action-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.call-to-action-inner.bg-image {
    background-image: url(../img/bg/cta-bg-01.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 0;
    border-bottom-right-radius: 60px;
}

.call-to-action-inner.bg-image:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color-two);
    z-index: -1;
    content: "";
    opacity: 0.8;
    border-bottom-right-radius: 60px;
}

.call-to-action-inner .title {
    font-size: 48px;
    line-height: 60px;
    font-weight: 700;
    color: #fff;
}

.call-to-action-inner .subtitle {
    font-size: 18px;
    line-height: 28px;
    color: #fff;
}

.call-to-action-inner .btn-wrapper {
    margin-top: 10px;
}

/*-------------------------
    Testimonial Area
--------------------------*/
.testimonial-area {
    position: relative;
    z-index: 0;
}

.testimonial-area.bg-image {
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: unset;
}

.testimonial-area.bg-image:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background-color: #fff; */
    opacity: 1;
    z-index: -1;
    content: "";
}

.testimonial-area.bg-image-01 {
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 0;
}

.testimonial-area.bg-image-01:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0.8;
    z-index: -1;
    content: "";
}

.testimonial-area .icon-03 {
    position: absolute;
    top: -75px;
    right: 20%;
    font-size: 160px;
    background: #000;
    background: -webkit-linear-gradient(-25deg, #fd5b56 0% 0%, #f41e7e 100% 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.qoute-left-thin,
.qoute-right-thin {
    position: absolute;
    width: 200px;
    filter: drop-shadow(16px 24px 4px #000000);
}

.qoute-left-thin {
    animation: quote-left 2s ease-in-out 0s infinite normal forwards;
}

.qoute-right-thin {
    right: 23px;
    bottom: 0;
    animation: quote-right 2s ease-in-out 0s infinite normal forwards;
}

@keyframes quote-left {

    0%,
    100% {
        transform: translateY(0) rotate(0);
        transform-origin: 50% 50%;
    }

    15% {
        transform: translateY(-15px) rotate(-3deg);
    }

    30% {
        transform: translateY(8px) rotate(3deg);
    }

    45% {
        transform: translateY(-8px) rotate(-1.8deg);
    }

    60% {
        transform: translateY(5px) rotate(1.2deg);
    }

    75% {
        transform: translateY(-3px) rotate(-0.6deg);
    }
}

@keyframes quote-right {

    0%,
    100% {
        transform: translateY(0) rotate(0);
        transform-origin: 50% 50%;
    }

    15% {
        transform: translateY(-15px) rotate(3deg);
    }

    30% {
        transform: translateY(8px) rotate(-3deg);
    }

    45% {
        transform: translateY(-8px) rotate(1.8deg);
    }

    60% {
        transform: translateY(5px) rotate(-1.2deg);
    }

    75% {
        transform: translateY(-3px) rotate(0.6deg);
    }
}

@media screen and (max-width: 1399.98px) {
    .qoute-left-thin {
        width: 160px;
    }
}

@media screen and (max-width: 991.98px) {
    .qoute-left-thin {
        width: 140px;
    }

    .qoute-right-thin {
        width: 180px;
    }
}

@media screen and (max-width: 767.98px) {
    .qoute-left-thin {
        width: 120px;
    }

    .qoute-right-thin {
        width: 160px;
    }
}

@media screen and (max-width: 575.98px) {
    .qoute-left-thin {
        width: 90px;
    }

    .qoute-right-thin {
        width: 120px;
    }
}

@media screen and (max-width: 349.98px) {
    .qoute-left-thin {
        width: 50px;
    }

    .qoute-right-thin {
        width: 80px;
    }
}

/*---------------------------
    Top Experince Section
---------------------------*/
.experience-content {
    position: relative;
}

.experience-content .content {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}

.experience-content .content .title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    max-width: 480px;
}

.experience-right {
    position: relative;
    height: 100%;
    width: 100%;
    margin-bottom: -50px;
    background-size: cover;
    background-repeat: no-repeat;
}

.experience-right.style-01 {
    min-height: 500px;
    margin-bottom: 0;
}

.experience-right .vdo-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.experience-content-02 {
    padding: 130px 0 140px 110px;
    position: relative;
}

.experience-content-02::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 15px;
    left: 0;
    top: 0;
    background-color: red;
}

.experience-content-02::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 15px;
    left: 0;
    bottom: 0;
    background-color: red;
}

.experience-content-02 .title {
    color: #fff;
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 25px;
}

.experience-content-02 p {
    color: #fff;
    max-width: 460px;
}

.experience-content-02 .sign-area {
    margin-left: 40px;
    margin-top: 35px;
    position: relative;
}

.experience-content-02 .sign-area::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    left: -40px;
    top: 0;
    background-color: var(--main-color-one);
}

.experience-content-02 .sign-area p {
    font-size: 24px;
    font-weight: 500;
    max-width: 400px;
}

.experience-author {
    position: relative;
}

.experience-author .thumb-2 {
    position: absolute;
    right: 0;
    top: 100px;
}

.experience-author.bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 500px;
}

.experience-content-03 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.experience-content-03.section-padding {
    padding: 100px 0 90px;
}

.experience-content-03 .title {
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    margin-bottom: 20px;
}

.experience-content-03 p {
    margin-bottom: 30px;
}

.experience-content-03 .icon-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.experience-content-03 .icon-area .icon {
    font-size: 45px;
    line-height: 45px;
    color: var(--main-color-one);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.experience-content-03 .icon-area p {
    font-size: 18px;
    font-weight: 600;
    margin-left: 15px;
    color: #a5a5a5;
}

.experience-content-03 .servicee-area ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.experience-content-03 .servicee-area ul li {
    margin-bottom: 15px;
}

.experience-content-03 .servicee-area ul li i {
    color: #ffa998;
}

/*--------------------------
    Counterup Area
--------------------------*/
.counterup-tow.bg-image {
    background-position: center;
    background-repeat: no-repeat;
}

/*-----------------------------
Client Area
-----------------------------*/
.client-area .single-brand {
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    min-height: 60px;
    width: 150px;
    flex-direction: column;
}

.client-area .single-brand img {
    /* -webkit-filter: opacity(0.4) grayscale(1);
    filter: opacity(0.4) grayscale(1); */
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* .client-area .single-brand:hover img {
    -webkit-filter: opacity(1) grayscale(0);
    filter: opacity(1) grayscale(0);
} */

.case-studies-slider-active {
    position: relative;
}

.case-studies-slider-active .owl-stage {
    padding-left: 0 !important;
    height: 470px;
    overflow: hidden;
}

.case-studies-slider-active .owl-item.active {
    width: 335px !important;
}

.case-studies-slider-active .owl-item.center {
    width: 1170px !important;
    -webkit-box-shadow: 3px 6px 12px rgba(0, 0, 0, 0.1);
    box-shadow: 3px 6px 12px rgba(0, 0, 0, 0.1);
}

.case-studies-slider-active .owl-item.center .slider-img {
    width: 100% !important;
}

.case-studies-slider-active .owl-item.center .slider-inner-text {
    visibility: visible;
}

.case-studies-slider-active .slider-img {
    width: 100%;
    height: 445px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.case-studies-slider-active .slider-img img {
    width: 100%;
}

.case-studies-slider-active .slider-img .slider-inner-text {
    position: absolute;
    top: 50%;
    right: 100px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 45px;
    background-color: #fff;
    visibility: hidden;
}

.case-studies-slider-active .slider-img .slider-inner-text .title {
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    max-width: 250px;
    margin-bottom: 15px;
}

.case-studies-slider-active .slider-img .slider-inner-text p {
    max-width: 250px;
}

.case-studies-slider-active .owl-nav div {
    position: absolute;
    left: 20%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.case-studies-slider-active .owl-nav div.owl-next {
    left: auto;
    right: 20%;
    color: #fff;
    font-size: 15px;
    /* padding: 5px 10px; */
    border: 0.5px solid var(--hover-color);
    background-color: var(--main-color-two);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
}

.case-studies-slider-active .owl-nav div.owl-prev {
    color: #fff;
    font-size: 15px;
    /* padding: 5px 10px; */
    border: 0.5px solid var(--hover-color);
    background-color: var(--main-color-two);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
}


.case-studies-area .section-title {
    padding-bottom: 250px;
}

.case-studies-area .case-studies-slider-active {
    margin-top: -200px;
}

.case-studies-area-02.bg-image {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.case-studies-area-02.bg-image:after {
    position: absolute;
    content: "";
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(78, 10, 131, 0)), color-stop(49%, rgba(78, 10, 131, 0.49)), to(rgba(78, 10, 131, 0.4)));
    background-image: -o-linear-gradient(bottom, rgba(78, 10, 131, 0) 0%, rgba(78, 10, 131, 0.49) 49%, rgba(78, 10, 131, 0.4) 100%);
    background-image: linear-gradient(0deg, rgba(78, 10, 131, 0) 0%, rgba(78, 10, 131, 0.49) 49%, rgba(78, 10, 131, 0.4) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.case-studies-menu {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    display: block;
    margin-bottom: 25px;
}

.case-studies-menu li {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
}

.case-studies-menu li+li {
    margin-left: 20px;
}

.case-studies-menu li.active {
    color: var(--main-color-one);
}

.case-studies-menu.style-01 li {
    color: #fff;
    padding: 4px 13px;
    margin-bottom: 8px;
}

.case-studies-menu.style-01 li a.active {
    color: var(--main-color-one);
    border: 2px solid white;
    padding: 4px 12px;
    border-radius: 50px;
}

.showcase li a {
    color: #000 !important;
    padding: 4px 13px;
}

.showcase li a.active {
    color: #3f75bc !important;
    border: 1px solid;
    padding: 4px 12px;
}

.case-studies-masonry .masonry-item {
    cursor: pointer;
}

.single-case-studies-item {
    position: relative;
}

.single-case-studies-item.style-01::after {
    opacity: 0.6;
    background-image: -o-linear-gradient(69deg, #fd5b56 0%, #f41e7e 100%);
    background-image: linear-gradient(21deg, #fd5b56 0%, #f41e7e 100%);
}

.single-case-studies-item.style-01::before {
    opacity: 0.6;
    background-image: -o-linear-gradient(69deg, #fd5b56 0%, #f41e7e 100%);
    background-image: linear-gradient(21deg, #fd5b56 0%, #f41e7e 100%);
}

.single-case-studies-item:after {
    content: "";
    position: absolute;
    width: 0%;
    height: 0%;
    top: 0;
    left: 0;
    background-color: rgba(85, 128, 255, 0.4);
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.single-case-studies-item:before {
    content: "";
    position: absolute;
    width: 0%;
    height: 0%;
    bottom: 0;
    right: 0;
    background-color: rgba(85, 128, 255, 0.4);
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.single-case-studies-item .cart-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    display: none;
    font-size: 60px;
    z-index: 1;
}

.single-case-studies-item:hover:after {
    width: 100%;
    height: 100%;
    visibility: visible;
}

.single-case-studies-item:hover:before {
    width: 100%;
    height: 100%;
    visibility: visible;
}

.single-case-studies-item:hover .cart-icon {
    display: block;
}

.case-studies-area-03.bg-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.case-studies-details-top {
    position: relative;
}

.case-studies-details-top .case-studies-inner-text {
    position: absolute;
    padding: 45px;
    background-color: #fff;
    bottom: 85px;
    right: 100px;
}

.case-studies-details-top .case-studies-inner-text .title {
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    max-width: 250px;
    margin-bottom: 15px;
}

.case-studies-details-top .case-studies-inner-text p {
    max-width: 250px;
}

/*------------------------------
    Legal Support Area
------------------------------*/
.global-content .title {
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 35px;
}

/*------------------------------

------------------------------*/
.quality-area {
    border-top: 5px solid var(--main-color-one);
}

.quality-img {
    height: 100%;
    min-height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
}

.quality-content {
    background-color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    padding: 108px 0 120px 0;
}

.quality-content-wrapper {
    margin-left: 100px;
    max-width: 460px;
}

.quality-content-wrapper .title {
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 15px;
}

.quality-content-wrapper p {
    color: var(--bg-color);
}

/*--------------------------
    Attorney Details
--------------------------*/
.service-img-thumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.service-img-thumb .thumb-02 {
    margin-left: 30px;
}

.widget-nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-category ul li:last-child .service-widget {
    border-bottom: 1px solid #d7d7d7;
}

.service-widget {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 30px;
    border-top: 1px solid #d7d7d7;
    border-right: 1px solid #d7d7d7;
    border-left: 1px solid #d7d7d7;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    position: relative;
}

.service-widget:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--main-color-two);
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.service-widget:hover,
.service-widget.active {
    background-color: #e8eff8;
}

.service-widget:hover::before,
.service-widget.active::before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}

.service-widget .service-icon {
    font-size: 45px;
    margin-right: 15px;
}

.service-widget .service-icon.style-01 {
    color: #bd10e0;
}

.service-widget .service-icon.style-02 {
    color: #ff8a73;
}

.service-widget .service-icon.style-03 {
    color: #5580ff;
}

.service-widget .service-icon.style-04 {
    color: #45e7ac;
}

.service-widget .service-title .title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 0;
    padding: 10px 0;
}

.attorney-contact-form-wrap {
    padding: 40px 40px 25px 40px;
    background-color: var(--main-color-two);
}

.attorney-contact-form-wrap .title {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    color: #fff;
}

.attorney-contact-form-wrap .attorney-contact-form .form-group textarea {
    max-height: 70px;
    resize: none;
}

.attorney-contact-form-wrap .attorney-contact-form .form-group .form-control {
    background-color: #7799ff;
    border: 1px solid transparent;
    padding: 10px 20px;
    color: #fff;
}

.attorney-contact-form-wrap .attorney-contact-form .form-group .form-control::-webkit-input-placeholder {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
}

.attorney-contact-form-wrap .attorney-contact-form .form-group .form-control::-moz-placeholder {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
}

.attorney-contact-form-wrap .attorney-contact-form .form-group .form-control:-ms-input-placeholder {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
}

.attorney-contact-form-wrap .attorney-contact-form .form-group .form-control::-ms-input-placeholder {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
}

.attorney-contact-form-wrap .attorney-contact-form .form-group .form-control::placeholder {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
}

.content-block .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}

.submit-btn {
    width: 100%;
    padding: 10px 30px;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 50px;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    cursor: pointer;
    animation: banner-submit-normal 1s cubic-bezier(0.37, 0, 0.63, 1) 0s infinite normal forwards;
}

.submit-btn:hover {
    background-color: #fff;
    color: #000 !important;
    animation: banner-submit-fast 0.7s cubic-bezier(0.37, 0, 0.63, 1) 0s infinite normal forwards;
}

@keyframes banner-submit-fast {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes banner-submit-normal {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

/*---------------------------------------
    ## Back Top
---------------------------------------*/
.back-to-top {
    position: fixed;
    right: 90px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--main-color-one);
    color: #fff;
    border: 1px solid #ffffff;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    z-index: 99;
    font-size: 25px;
    cursor: pointer;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    display: none;
}

/*-------------------------
    ## Preloader Css
---------------------------*/
.pre-wrap {
    position: fixed;
    content: "";
    -webkit-transform: translate(-100%, -240%);
    -ms-transform: translate(-100%, -240%);
    transform: translate(-100%, -240%);
    font-size: 62px;
}

.preloader-inner {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999999999999;
    background-color: #fff;
    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 .spinner {
    width: 66px;
    height: 66px;
    -webkit-animation: contanim 2s linear infinite;
    animation: contanim 2s linear infinite;
}

.preloader-inner .spinner svg {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.preloader-inner .spinner svg:nth-child(1) circle {
    stroke: #84EBBD;
    stroke-dasharray: 1, 300;
    stroke-dashoffset: 0;
    -webkit-animation: strokeanim 3s calc(.2s * (1)) ease infinite;
    animation: strokeanim 3s calc(.2s * (1)) ease infinite;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}

.preloader-inner .spinner svg:nth-child(2) circle {
    stroke: #4977EC;
    stroke-dasharray: 1, 300;
    stroke-dashoffset: 0;
    -webkit-animation: strokeanim 3s calc(.2s * (2)) ease infinite;
    animation: strokeanim 3s calc(.2s * (2)) ease infinite;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}

.preloader-inner .spinner svg:nth-child(3) circle {
    stroke: #F6BB67;
    stroke-dasharray: 1, 300;
    stroke-dashoffset: 0;
    -webkit-animation: strokeanim 3s calc(.2s * (3)) ease infinite;
    animation: strokeanim 3s calc(.2s * (3)) ease infinite;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}

.preloader-inner .spinner svg:nth-child(4) circle {
    stroke: #333841;
    stroke-dasharray: 1, 300;
    stroke-dashoffset: 0;
    -webkit-animation: strokeanim 3s calc(.2s * (4)) ease infinite;
    animation: strokeanim 3s calc(.2s * (4)) ease infinite;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}

.preloader-inner .cancel-preloader {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--main-color-one);
    border: none;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    padding: 6px 20px;
    border-radius: 5px;
    font-weight: 700;
}

.preloader-inner .cancel-preloader a:hover {
    background-color: var(--main-color-two);
    color: #fff;
}

@-webkit-keyframes strokeanim {
    0% {
        stroke-dasharray: 1, 300;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 120, 300;
        stroke-dashoffset: -58.548324585;
    }

    100% {
        stroke-dasharray: 120, 300;
        stroke-dashoffset: -175.6449737549;
    }
}

@keyframes strokeanim {
    0% {
        stroke-dasharray: 1, 300;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 120, 300;
        stroke-dashoffset: -58.548324585;
    }

    100% {
        stroke-dasharray: 120, 300;
        stroke-dashoffset: -175.6449737549;
    }
}

@-webkit-keyframes contanim {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes contanim {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*---------------------------------------
    ## Button
---------------------------------------*/

.btn-wrapper {
    display: block;
}

.btn-wrapper .boxed-btn:focus {
    outline: none;
}

.btn-wrapper .boxed-btn {
    background-color: var(--main-color-one);
    color: #fff !important;
    display: inline-block;
    padding: 12px 35px;
    border-radius: 25px;
    min-width: 135px;
    text-align: center;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-wrapper .boxed-btn.white:hover {
    background-color: #fff;
    color: var(--main-color-one);
}

.btn-wrapper .boxed-btn.outer-btn {
    border: 1px solid transparent;
}

.btn-wrapper .boxed-btn.outer-btn:hover {
    background-color: transparent;
    color: var(--main-color-one);
    border: 1px solid var(--main-color-one);
}

.btn-wrapper .boxed-btn.blank {
    background-color: transparent;
    border: 1px solid #fff;
}

.btn-wrapper .boxed-btn.blank.reverse-color {
    background-color: transparent;
    border: 2px solid var(--main-color-one);
    color: var(--main-color-one);
}

.btn-wrapper .boxed-btn.blank.reverse-color:hover {
    background-color: var(--main-color-one);
    color: #fff;
    border-color: var(--main-color-one);
}

.btn-wrapper .boxed-btn.blank:hover {
    background-color: #fff;
    color: var(--main-color-one);
    border-color: var(--main-color-one);
}

.btn-wrapper .boxed-btn:hover {
    background-color: var(--bg-color);
}

.btn-wrapper .boxed-btn.btn-rounded {
    border-radius: 30px;
}

.btn-wrapper .boxed-btn.reverse-color {
    background-color: transparent;
    border: 2px solid var(--main-color-one);
}

.btn-wrapper .boxed-btn.reverse-color:hover {
    background-color: var(--main-color-one);
}

.desktop-center {
    text-align: center;
}

.desktop-left {
    text-align: left;
}

.desktop-right {
    text-align: right;
}

@media only screen and (max-width: 768px) {
    .tablet-center {
        text-align: center;
    }

    .tablet-left {
        text-align: left;
    }

    .tablet-right {
        text-align: right;
    }
}

@media only screen and (max-width: 414px) {
    .mobile-center {
        text-align: center;
    }

    .mobile-left {
        text-align: left;
    }

    .mobile-right {
        text-align: right;
    }
}

/*-----------------------
    Blog Grid Item
-----------------------*/
.blog-classic-item-01.format-link .content {
    position: relative;
    z-index: 0;
}

.blog-classic-item-01.format-link .content:after {
    position: absolute;
    left: 0;
    top: 60px;
    content: "ï‚Ž";
    font-family: "fontawesome";
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    font-size: 100px;
    opacity: 0.2;
    z-index: -1;
}

.blog-classic-item-01 .content .title {
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
}

.blog-classic-item-01 .content p {
    margin-bottom: 30px;
}

.blog-classic-item-01 .content .readmore {
    margin-top: 10px;
    display: block;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    position: relative;
    z-index: 0;
    font-weight: 600;
}

.blog-classic-item-01 .content .readmore:hover {
    padding-left: 15px;
    color: var(--main-color-one);
}

.blog-classic-item-01 .content .readmore:hover:after {
    visibility: visible;
    opacity: 1;
}

.blog-classic-item-01 .content .readmore:after {
    position: absolute;
    left: 0;
    top: 0px;
    content: "ï„";
    font-family: "fontawesome";
    color: var(--main-color-one);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.blog-classic-item-01 .content .post-meta {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 20px;
}

.blog-classic-item-01 .content .post-meta li {
    display: inline-block;
}

.blog-classic-item-01 .content .post-meta li+li {
    margin-left: 20px;
}

.blog-classic-item-01 .content .post-meta li i {
    color: var(--main-color-two);
}

.blog-classic-item-01 .content .post-meta li a {
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.blog-classic-item-01 .content .post-meta li a:hover {
    color: var(--main-color-one);
}

.blog-classic-item-01 .thumbnail {
    margin-bottom: 25px;
    display: block;
}

.blog-classic-item-01.is-sticky {
    position: relative;
    z-index: 0;
}

.blog-classic-item-01.is-sticky:after {
    position: absolute;
    right: 0;
    top: 0;
    content: "ï‚";
    font-family: "fontawesome";
    font-size: 30px;
    line-height: 30px;
    color: var(--main-color-one);
}

.blog-classic-item-01.format-video .thumbnail {
    position: relative;
    z-index: 0;
}

.blog-classic-item-01.format-video .thumbnail .hover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.blog-classic-item-01.format-quote .quote-post-type {
    background-color: #f5f5f5;
    padding: 25px 30px 25px 80px;
    border-radius: 2px;
    position: relative;
    z-index: 0;
}

.blog-classic-item-01.format-quote .quote-post-type:after {
    position: absolute;
    left: 30px;
    top: 20px;
    content: "ï„";
    font-family: "fontawesome";
    font-size: 30px;
    color: var(--main-color-one);
}

.blog-classic-item-01.format-quote .quote-post-type p {
    line-height: 26px;
}

.blog-classic-item-01.format-quote .quote-post-type .title {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 0px;
}

.blog-details-item .blog-details-item-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.blog-details-item .blog-details-item-header .social-link {
    margin-left: 50px;
}

.blog-details-item .thumb {
    margin-bottom: 30px;
}

.blog-details-item .title {
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.blog-details-item p {
    line-height: 1.6;
}

.blog-details-item blockquote:not([class]) {
    margin: 15px 0;
    padding: 20px 30px 20px 60px;
    border-radius: 3px;
    position: relative;
    z-index: 0;
}

.blog-details-item blockquote:not([class]) p {
    margin-bottom: 0px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color: var(--heading-color);
    font-style: italic;
}

.blog-details-item blockquote:not([class]):after {
    position: absolute;
    left: 0;
    top: 15px;
    content: "ï„";
    font-weight: 700;
    font-family: "fontawesome";
    font-size: 35px;
    color: var(--main-color-two);
}

.blog-details-item .post-meta {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 15px;
}

.blog-details-item .post-meta li {
    display: inline-block;
    font-size: 14px;
}

.blog-details-item .post-meta li i {
    color: var(--main-color-two);
}

.blog-details-item .post-meta li+li {
    margin-left: 10px;
}

.blog-details-item .post-meta li a {
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.blog-details-item .post-meta li a:hover {
    color: var(--main-color-one);
}

.blog-details-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 30px;
}

.blog-details-footer .title {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
}

.blog-details-footer .left .tags {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-details-footer .left .tags li {
    display: inline-block;
}

.blog-details-footer .left .tags li+li {
    margin-left: 10px;
}

.blog-details-footer .left .tags li a {
    display: inline-block;
    background-color: #f5f5f5;
    padding: 5px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 5px;
    color: inherit;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    border-radius: 5px;
    font-size: 14px !important;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.blog-details-footer .left .tags li a:hover {
    color: #fff;
    background-color: var(--main-color-one);
}

.blog-details-footer .right .social-share {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-details-footer .right .social-share li {
    display: inline-block;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.blog-details-footer .right .social-share li+li {
    margin-left: 10px;
}

.blog-details-footer .right .social-share li:hover {
    color: var(--main-color-one);
}

/*-----------------------------
    Accordion Item
-----------------------------*/
.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;
    font-size: 16px;
    line-height: 28px;
    font-weight: 700;
    background-color: #f5f5f5;
    padding: 14px 30px;
    cursor: pointer;
    position: relative;
}

.accordion-wrapper .card .card-header a:after {
    position: absolute;
    right: 30px;
    top: 15px;
    content: "\f106";
    font-family: "Font Awesome 5 Free";
}

.accordion-wrapper .card .card-header a[aria-expanded=false]:after {
    content: "\f107";
}

.accordion-wrapper .card .card-body {
    background-color: #fff;
    padding: 20px 30px 0;
}

/*-------------------------
    Contact Info Item
-------------------------*/
.inner-contact-section {
    background-color: #222429;
}

.black-p {
    color: var(--heading-color);
}

.single-contact-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -ms-flex-item-align: start;
    align-self: flex-start;
    background-color: var(--bg-color-two);
    padding: 25px 30px;
    height: 100%;
    box-shadow: -11px 25px 25px rgba(0, 0, 0, 0.20);
    border-radius: 20px;
}

.contact-item {
    margin-bottom: 30px;
}

.single-contact-item .icon {
    line-height: 60px;
    text-align: center;
    margin-right: 20px;
    font-size: 40px;
    color: #fff;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.single-contact-item .icon.style-01 {
    color: red;
}

.single-contact-item .icon.style-02 {
    color: #0bc5e6;
}

.single-contact-item .icon.style-03 {
    color: #3f75bc;
}

.single-contact-item .icon.style-04 {
    color: #2fe4a2;
}

.single-contact-item .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.single-contact-item .content .title {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--heading-color);
}

.single-contact-item .content .details {
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0;
}


.contact-info-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-info-list .single-info-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.contact-info-list .single-info-item:hover .icon {
    background-color: var(--main-color-two);
}

.contact-info-list .single-info-item+.single-info-item {
    margin-top: 20px;
}

.contact-info-list .single-info-item .icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    line-height: 60px;
    text-align: center;
    margin-right: 20px;
    background-color: var(--main-color-one);
    font-size: 30px;
    color: #fff;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.contact-info-list .single-info-item .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.contact-info-list .single-info-item .content .details {
    display: block;
}

.contact_map {
    height: 100%;
}

#map iframe {
    width: 100%;
    height: 900px;
}

#map {
    min-height: 900px;
    background-color: #ddd;
}

.contact_map iframe,
.elementor-custom-embed {
    min-height: 100%;
    background-color: #ddd;
}

.contact_map iframe {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
}

.map-wrapper {
    position: relative;
}

.map-wrapper .contact-wrapper {
    position: absolute;
    top: 0;
    right: 20%;
}

.contact-info {
    padding: 60px 50px 70px;
    /*-webkit-box-shadow: 0px 0px 158px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 158px 0px rgba(0, 0, 0, 0.2);*/
}

.contact-page-form .form-group textarea:focus {
    outline: none;
    box-shadow: none;
}

.contact-page-form .form-group textarea {
    max-height: 160px;
    resize: none;
}

.contact-page-form .form-group .form-control {
    border: transparent;
    border-radius: 0;
    border-bottom: 1px solid #98989c;
    padding: 15px 30px 15px 0;
    margin-bottom: 25px;
}

/*----------------------------
    Quote Block With Sign
----------------------------*/
.quote-block-with-sign {
    position: relative;
    z-index: 0;
    background-color: var(--main-color-two);
    padding: 50px 40px 60px 40px;
}

.quote-block-with-sign.radius-right {
    border-bottom-right-radius: 60px;
}

.quote-block-with-sign:after {
    position: absolute;
    left: 20px;
    top: 30px;
    font-size: 100px;
    line-height: 100px;
    color: #706d5f;
    font-weight: 900;
    font-family: "fontawesome";
    content: "ï„";
    z-index: -1;
}

.quote-block-with-sign p {
    font-size: 28px;
    line-height: 43px;
    font-style: italic;
    font-family: var(--heading-font);
    color: #fff;
}

.quote-block-with-sign .sign {
    margin-top: 26px;
}

/*----------------------------
    Counterup Item
----------------------------*/
.single-counterup-02 .count-wrap {
    font-size: 60px;
    line-height: 58px;
    font-weight: 700;
    color: var(--main-color-one);
    font-family: var(--heading-font);
    margin-bottom: 15px;
}

.single-counterup-02 .title {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
}

.single-counterup-block-with-img {
    display: inline-block;
}

.single-counterup-block-with-img .thumb {
    position: relative;
    z-index: 0;
}

.single-counterup-block-with-img .thumb img {
    border-bottom-right-radius: 50px;
}

.single-counterup-block-with-img .thumb .hover {
    position: absolute;
    left: 5%;
    top: 5%;
    width: 90%;
    background-color: #fff;
    height: 90%;
    border-bottom-right-radius: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.single-counterup-block-with-img .thumb .hover .title {
    font-size: 18px;
    line-height: 28px;
    font-family: var(--body-font);
}

.single-counterup-block-with-img .thumb .hover .count-num {
    font-size: 120px;
    line-height: 130px;
    color: var(--main-color-one);
    font-family: var(--heading-font);
    font-weight: 700;
}

.single-counterup-01 {
    text-align: center;
}

.single-counterup-01 .icon {
    font-size: 70px;
    line-height: 80px;
    color: var(--main-color-one);
    margin-bottom: 12px;
}

.single-counterup-01 .content .title {
    font-size: 18px;
    line-height: 28px;
    font-family: var(--body-font);
}

.single-counterup-01 .content .count-wrap {
    font-size: 48px;
    line-height: 58px;
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--heading-color);
}

/*-------------------------
    Video With Image
-------------------------*/
.myVideo {
    border-radius: 15px;
    box-shadow: 0px 15px 40px 0px black;
}

.myVideo2 {
    width: 100%;
    height: auto;
}

.video-with-image .img-wrapper {
    position: relative;
    z-index: 0;
    display: inline-block;
}

.video-with-image .img-wrapper img {
    width: 100%;
}

.video-with-image .img-wrapper .hover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/*--------------------------
    Video Play Button
--------------------------*/
.video-play-btn {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-size: 16px;
    background-color: #fff;
    border-radius: 50%;
    color: var(--main-color-two);
}

.video-play-btn:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    -ms-transform: translateX(-50%) translateY(-50%);
    /* IE 9 */
    -webkit-transform: translateX(-50%) translateY(-50%);
    /* Chrome, Safari, Opera */
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
    z-index: -1;
}

.video-play-btn:hover,
.video-play-btn:focus {
    color: var(--main-color-two);
}

@-webkit-keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
        opacity: 0;
    }
}

@keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
        opacity: 1;
    }
}

/*------------------------
    Why us Item
------------------------*/
.single-why-us-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.single-why-us-box .icon {
    margin-right: 20px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: #fff;
    font-size: 30px;
    border-radius: 50%;
    color: var(--main-color-one);
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.single-why-us-box .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.single-why-us-box .content .title {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.single-why-us-box .content p {
    font-size: 14px;
    line-height: 24px;
}

.single-why-us-box:hover .content .title {
    color: var(--main-color-one);
}

.single-why-us-box:hover .icon {
    background-color: var(--main-color-two);
}

/*-------------------------
    Section Title
-------------------------*/
.section-title-inner.white .subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.section-title-inner.white .title {
    color: #fff;
}

.section-title-inner.white p {
    color: rgba(255, 255, 255, 0.9);
}

.section-title-inner .title {
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 18px;
}

.section-title-inner .subtitle {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    z-index: 0;
    padding-left: 80px;
    margin-bottom: 8px;
}

.section-title-inner .subtitle:after {
    position: absolute;
    left: 0;
    top: 10px;
    height: 2px;
    width: 60px;
    background-color: var(--main-color-one);
    content: "";
}

.section-title.white .title {
    color: #fff;
}

.section-title.white p {
    color: rgba(255, 255, 255, 0.9);
}

.section-title .title {
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    color: var(--main-color-one);
    text-transform: capitalize;
    margin-bottom: 16px;
}

.section-title .plan-title {
    /* font-size: 48px; */
    line-height: 58px;
    font-weight: 700;
    color: var(--main-color-one);
    text-transform: capitalize;
    margin-bottom: 16px;
}

.section-title .subtitle {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    z-index: 0;
    margin-bottom: 8px;
    color: var(--main-color-one);
}

.section-title p {
    max-width: 650px;
    margin: auto;
}

.section-title .m-inherit {
    margin: inherit;
}

.bg-blue {
    background-color: var(--bg-color);
}

.bg-blue-deep {
    background-color: var(--bg-color);
}

.bg-liteblue {
    background: linear-gradient(16deg, red 0%, #57d8f0 79%);
}

.bg-red {
    background-color: var(--main-color-one);
}

.bg-blacks {
    background-color: black;
}

.red-color {
    color: var(--main-color-one);
}

.bg-white {
    background-color: #fff;
}

.bg-main {
    background-color: var(--main-color-one);
}

/*----------------------------------------
  ## Search Popup
----------------------------------------*/
/* search form styling */
.search-popup .search-form .close-btn {
    background-color: red;
    border: none;
    color: #fff;
    padding-top: 2px;
    padding-left: 2px;
}

.search-popup.active .search-form {
    visibility: visible;
    opacity: 1;
}

.search-popup .search-form {
    min-width: 415px;
    /* position: absolute; */
    position: fixed;
    top: 40px;
    right: calc(8% + -6px);
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
}

.search-popup .search-form .form-group .form-control {
    border: none;
    border-radius: 0px;
    height: 45px;
    padding: 0 100px 0 30px;
}

.search-popup .search-form .submit-btn {
    position: absolute;
    right: -15px;
    top: -20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border-color: var(--hover-color);
    background-color: var(--hover-color);
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    padding: 0;
    text-align: center;
}

.search-popup .search-form .submit-btn span {
    color: #fff;
    font-size: 20px;
}

.body-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(42, 40, 29, 0.54);
    z-index: 9;
    content: "";
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==), progress;
}

.body-overlay.active {
    visibility: visible;
    opacity: 0.8;
}

.click-mobile-search {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 5;
    width: 100%;
    padding: 20px;
    background: #fff;
}

/*--------------------------
 what we cover item
---------------------------*/
.single-what-we-cover-item .icon.style-06 {
    color: #bd10e0;
}

.what-we-cover.bg-image {
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.what-we-cover.bg-image:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.single-what-we-cover-item {
    text-align: center;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    background: #1c1e22;
    width: 100%;
    border-radius: 7px;
    float: left;
    margin-bottom: 14px;
    /* box-shadow: 0 0 23px #ede9e8; */
    padding: 10px 10px 10px;
    /* border-top: 3px solid #fff; */
}

.single-what-we-cover-item:hover {
    background: var(--main-color-one);
    transform: scale(1.06);
}

.single-what-we-cover-item:hover .icon {
    /* -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg); */
    filter: invert(1) contrast(0.5) brightness(20.5);
}

.single-what-we-cover-item.style-01 {
    background-color: #fff;
    padding: 45px;
}

.single-what-we-cover-item .icon {
    font-size: 60px;
    line-height: 70px;
    color: var(--main-color-one);
    margin-bottom: 18px;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.single-what-we-cover-item .icon.style-01 {
    color: #bd10e0;
}

.single-what-we-cover-item .icon.style-02 {
    color: #ff8a73;
}

.single-what-we-cover-item .icon.style-03 {
    color: #95b0ff;
}

.single-what-we-cover-item .icon.style-04 {
    color: #2fe4a2;
}

.single-what-we-cover-item .content .title {
    font-size: 16px;
    font-weight: 700;
    line-height: 34px;
    color: white;
    margin-bottom: 16px;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.single-what-we-cover-item .content p {
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.single-what-we-cover-item-02 {
    text-align: center;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    border: 1px solid #e5e5e5;
}

.single-what-we-cover-item-02:hover .content {
    background-color: var(--main-color-one);
}

.single-what-we-cover-item-02:hover .content .title {
    color: #fff;
}

.single-what-we-cover-item-02:hover .content p {
    color: #fff;
}

.single-what-we-cover-item-02 .icon-02,
.single-what-we-cover-item-02 .img-icon {
    font-size: 35px;
    line-height: 70px;
    width: 70px;
    height: 70px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    margin-bottom: 18px;
    margin-top: -50px;
    z-index: 5;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.single-what-we-cover-item-02 .img-icon img {
    max-width: 50px;
    margin-left: 5px;
}

.single-what-we-cover-item-02 .icon-02,
.single-what-we-cover-item-02 .img-icon {
    background-color: #bd10e0;
}

.single-what-we-cover-item-02 .icon-02.style-02,
.single-what-we-cover-item-02 .img-icon.style-02 {
    background-color: #ff8a73;
}

.single-what-we-cover-item-02 .icon-02.style-03,
.single-what-we-cover-item-02 .img-icon.style-03 {
    background-color: #95b0ff;
}

.single-what-we-cover-item-02 .icon-02.style-04,
.single-what-we-cover-item-02 .img-icon.style-04 {
    background-color: #2fe4a2;
}

.single-what-we-cover-item-02 .icon-02.style-05,
.single-what-we-cover-item-02 .img-icon.style-05 {
    background-color: #bd10e0;
}

.single-what-we-cover-item-02 .icon-02.style-06,
.single-what-we-cover-item-02 .img-icon.style-06 {
    background-color: #ff8a73;
}

.single-what-we-cover-item-02 .content {
    padding: 40px 20px 20px 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.single-what-we-cover-item-02 .content .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    color: var(--heading-color);
    margin-bottom: 16px;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.single-what-we-cover-item-02 .content p {
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.single-what-we-cover-item-03 {
    text-align: center;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    /*padding: 100px 0 75px;*/
}

.single-what-we-cover-item-03.border-r {
    border-right: 1px solid #958f90;
}

.single-what-we-cover-item-03:hover .icon {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}

.single-what-we-cover-item-03 .icon {
    font-size: 40px;
    line-height: 80px;
    width: 80px;
    height: 80px;
    margin: auto;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.single-what-we-cover-item-03 .icon.style-01 {
    background-color: #bd10e0;
}

.single-what-we-cover-item-03 .icon.style-02 {
    background-color: #ff8a73;
}

.single-what-we-cover-item-03 .icon.style-03 {
    background-color: #95b0ff;
}

.single-what-we-cover-item-03 .icon.style-04 {
    background-color: #2fe4a2;
}

.single-what-we-cover-item-03 .content {
    padding: 10px 20px 20px 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.single-what-we-cover-item-03 .content .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 34px;
    color: #fff;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.single-what-we-cover-item-03 .content p {
    color: #fff;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    max-width: 250px;
    margin: auto;
}

/*-------------------------
    Icon Box Item
-------------------------*/
.single-icon-box-01 {
    background-color: #fff;
    text-align: center;
    padding: 30px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.single-icon-box-01:after,
.single-icon-box-01:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color-two);
    content: "";
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.single-icon-box-01:after {
    -webkit-transform: translate(-100%, -100%);
    -ms-transform: translate(-100%, -100%);
    transform: translate(-100%, -100%);
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.single-icon-box-01:before {
    -webkit-transform: translate(100%, 100%);
    -ms-transform: translate(100%, 100%);
    transform: translate(100%, 100%);
}

.single-icon-box-01:hover .content .title {
    color: var(--main-color-one);
}

.single-icon-box-01:hover .content p {
    color: rgba(255, 255, 255, 0.8);
}

.single-icon-box-01:hover:after {
    -webkit-transform: translate(100%, 100%);
    -ms-transform: translate(100%, 100%);
    transform: translate(100%, 100%);
    visibility: visible;
    opacity: 1;
}

.single-icon-box-01:hover:before {
    -webkit-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    visibility: visible;
    opacity: 1;
}

.single-icon-box-01 .icon {
    font-size: 60px;
    line-height: 70px;
    color: var(--main-color-one);
    margin-bottom: 18px;
}

.single-icon-box-01 .content .title {
    font-size: 22px;
    line-height: 34px;
    font-weight: 700;
}

.single-icon-box-01 .content p {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.single-icon-box-02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
    background-color: #fff;
    padding: 20px 20px 20px 20px;
}

.single-icon-box-02:hover .icon i {
    -ms-transform: rotateY(360deg);
    /* IE 9 */
    -webkit-transform: rotateY(360deg);
    /* Chrome, Safari, Opera */
    transform: rotateY(360deg);
}

.single-icon-box-02:hover .content .title {
    color: var(--main-color-one);
}

.single-icon-box-02 .icon {
    margin-right: 20px;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    line-height: 80px;
    text-align: center;
    background-color: var(--main-color-one);
    color: #fff;
    font-size: 40px;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.single-icon-box-02 .icon i {
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    display: inline-block;
}

.single-icon-box-02 .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-top: 5px;
}

.single-icon-box-02 .content .title {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

/*--------------------------------
    Case Study
--------------------------------*/
.single-recent-case-study-01:hover .img-wrapper .hover .title {
    color: var(--main-color-one);
}

.single-recent-case-study-01 .img-wrapper {
    position: relative;
    z-index: 0;
    margin-bottom: 60px;
}

.single-recent-case-study-01 .img-wrapper img {
    width: 100%;
}

.single-recent-case-study-01 .img-wrapper .hover {
    background-color: #fff;
    text-align: center;
    position: absolute;
    left: 5%;
    bottom: -30px;
    width: 90%;
    padding: 25px 30px 28px 30px;
    -webkit-box-shadow: 0px 0px 62px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 62px 0px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}

.single-recent-case-study-01 .img-wrapper .hover .title {
    font-size: 26px;
    line-height: 34px;
    font-weight: 700;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.single-recent-case-study-01 .img-wrapper .hover .read-more {
    font-size: 14px;
    font-weight: 600;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.single-recent-case-study-01 .img-wrapper .hover .read-more:hover {
    color: var(--main-color-one);
}

.single-recent-case-study-01 .img-wrapper .hover .read-more:hover i {
    visibility: visible;
    opacity: 1;
    -ms-transform: translateX(0px);
    /* IE 9 */
    -webkit-transform: translateX(0px);
    /* Chrome, Safari, Opera */
    transform: translateX(0px);
}

.single-recent-case-study-01 .img-wrapper .hover .read-more i {
    visibility: hidden;
    opacity: 0;
    -ms-transform: translateX(-50px);
    /* IE 9 */
    -webkit-transform: translateX(-50px);
    /* Chrome, Safari, Opera */
    transform: translateX(-50px);
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.single-case-item-02 {
    display: block;
}

.single-case-item-02:hover .thumb .hover {
    visibility: visible;
    opacity: 1;
}

.single-case-item-02 .thumb {
    position: relative;
    z-index: 0;
}

.single-case-item-02 .thumb img {
    width: 100%;
}

.single-case-item-02 .thumb .hover {
    position: absolute;
    left: 5%;
    top: 5%;
    width: 90%;
    background-color: #fff;
    height: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.single-case-item-02 .thumb .hover .title {
    font-size: 26px;
    line-height: 34px;
    font-weight: 700;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.single-case-item-02 .thumb .hover .title:hover {
    color: var(--main-color-one);
}

.single-case-item-02 .thumb .hover .cats a {
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.single-case-item-02 .thumb .hover .cats a:hover {
    color: var(--main-color-one);
}

.case-masonry-03 {
    margin-bottom: 30px;
}

/*------------------------------
    Testimonial Item
-----------------------------*/
.single-testimonial-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.single-testimonial-item .icon {
    font-size: 160px;
    line-height: 90px;
    color: #e5e5e5;
    margin-right: 70px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.single-testimonial-item .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
}

.single-testimonial-item .content.style-01 p {
    color: #fff;
}

.single-testimonial-item .content.style-01 .author-details .author-meta .title {
    color: #fff;
}

.single-testimonial-item .content.style-01 .author-details .author-meta .designation {
    color: #fff;
}

.single-testimonial-item .content .thumb {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 30px;
}

.single-testimonial-item .content .thumb img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
}

.single-testimonial-item .content .description {
    font-size: 20px;
    line-height: 38px;
    max-width: 650px;
    text-align: center;
    color: #ffffff;
    font-style: italic;
    margin: auto;
}

.single-testimonial-item .content .author-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-top: 10px;
}

.single-testimonial-item .content .author-details .author-meta {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 15px;
    text-align: center;
}

.single-testimonial-item .content .author-details .author-meta .title {
    font-size: 20px;
    line-height: 22px;
    font-weight: 700;
    text-transform: capitalize;
    font-family: var(--body-font);
    color: var(--main-color-one);
}

.single-testimonial-item .content .author-details .author-meta .designation {
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
}

.single-testimonial-item-02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.single-testimonial-item-02 .icon {
    font-size: 25px;
    line-height: 60px;
    width: 60px;
    height: 60px;
    color: #e5e5e5;
    background-color: var(--main-color-two);
    margin-right: 70px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    bottom: -30px;
    right: 0;
    z-index: 1;
}

.single-testimonial-item-02 .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
}

.single-testimonial-item-02 .content .content-wrapper {
    position: relative;
}

.single-testimonial-item-02 .content .content-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    opacity: 0.5;
    background-color: var(--main-color-two);
}

.single-testimonial-item-02 .content .thumb {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 30px;
}

.single-testimonial-item-02 .content .thumb img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
}

.single-testimonial-item-02 .content .description {
    font-size: 30px;
    line-height: 36px;
    color: #54545a;
    font-weight: 400;
    font-style: italic;
    padding-bottom: 35px;
    margin-bottom: 35px;
}

.single-testimonial-item-02 .content .author-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-top: 10px;
}

.single-testimonial-item-02 .content .author-details .author-meta {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 15px;
    margin-left: 20px;
}

.single-testimonial-item-02 .content .author-details .author-meta .title {
    font-size: 20px;
    line-height: 22px;
    font-weight: 700;
    text-transform: capitalize;
    font-family: var(--body-font);
    color: var(--heading-color);
}

.single-testimonial-item-02 .content .author-details .author-meta .designation {
    color: var(--heading-color);
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
}

.single-testimonial-item-03 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
    align-items: center;
}

.single-testimonial-item-03 .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
}

.single-testimonial-item-03 .content .title {
    font-size: 48px;
    color: #fff;
    line-height: 58px;
    font-weight: 700;
    max-width: 650px;
    margin-bottom: 40px;
}

.single-testimonial-item-03 .content .description {
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
    max-width: 650px;
    color: #54545a;
    font-style: italic;
    background: -webkit-linear-gradient(-25deg, #fd5b56 0% 0%, #f41e7e 100% 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 40px;
}

.single-testimonial-item-03 .content .author-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-top: 10px;
}

.single-testimonial-item-03 .content .author-details .author-meta {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 15px;
}

.single-testimonial-item-03 .content .author-details .author-meta .title {
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    text-transform: capitalize;
    font-family: var(--body-font);
    color: #fff;
    margin-bottom: 5px;
}

.single-testimonial-item-03 .content .author-details .author-meta .designation {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
}

.single-testimonial-item-03 .thumb {
    border-radius: 50%;
    margin: auto;
}

.single-testimonial-item-03 .thumb img {
    border-radius: 50%;
    width: 350px;
    height: 350px;
}

/*---------------------------
    Our Attorney
---------------------------*/
.our-service-wrappper {
    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;
    height: 100%;
    padding-left: 50px;
    padding-right: 30px;
}

.service-area-work {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.service-img.style-02 {
    display: none;
}

.service-item-wrapper {
    height: 100%;
}

.single-service-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-transition: -webkit-transform 500ms;
    transition: -webkit-transform 500ms;
    -o-transition: transform 500ms;
    transition: transform 500ms;
    transition: transform 500ms, -webkit-transform 500ms;
    overflow: hidden;
}

.single-service-item .service-img {
    width: calc(100% / 2);
    z-index: 0;
}

.single-service-item .service-img .bg-image {
    width: 100%;
    height: 100%;
    min-height: 250px;
    background-size: cover;
    background-position: center;
}

.single-service-item .service-text {
    background-color: #5580ff;
    padding: 95px 15px 85px;
    width: calc(100% / 2);
    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;
    text-align: center;
}

.single-service-item .service-text .title {
    color: #fff;
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
}

.single-service-item .service-text p {
    color: #fff;
    max-width: 300px;
    margin: auto;
}

/*----------------------------
    Blog Grid Item
-----------------------------*/
.blog-grid-carousel .owl-nav div {
    position: absolute;
    left: -60px;
    top: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: var(--heading-color);
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    -ms-transform: translateY(-50%);
    /* IE 9 */
    -webkit-transform: translateY(-50%);
    /* Chrome, Safari, Opera */
    transform: translateY(-50%);
}

.blog-grid-carousel .owl-nav div:hover {
    background-color: var(--main-color-one);
    color: #fff;
}

.blog-grid-carousel .owl-nav div.owl-next {
    left: auto;
    right: -60px;
}

.single-blog-grid-01 .content {
    position: relative;
    z-index: 0;
}

.single-blog-grid-01 .content:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.4));
    content: '';
    z-index: -1;
}

.single-blog-grid-01 .content {
    padding: 100px 40px 85px;
}

.single-blog-grid-01 .content .post-meta {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 15px;
}

.single-blog-grid-01 .content .post-meta li {
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
}

.single-blog-grid-01 .content .post-meta li:hover a {
    color: #fff;
}

.single-blog-grid-01 .content .post-meta li+li {
    margin-left: 20px;
}

.single-blog-grid-01 .content .post-meta li a {
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.single-blog-grid-01 .content .post-meta li a i {
    color: #fff;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.single-blog-grid-01 .content .title {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    color: #fff;
    max-width: 280px;
}

/*-------------------------------
    Quote With Image
-------------------------------*/
.quote-with-image-02 {
    margin-bottom: 40px;
}

.quote-with-image-02 .img-wrapper {
    position: relative;
    z-index: 0;
}

.quote-with-image-02 .img-wrapper .hover {
    position: absolute;
    right: 0;
    bottom: -40px;
    width: 80%;
}

.quote-with-image-02 .img-wrapper .hover .quote-block-with-sign {
    padding: 50px 60px 60px 60px;
}

.quote-with-image-02 .img-wrapper .hover .quote-block-with-sign:after {
    left: 40px;
    top: 30px;
}

/*---------------------------------
    Price Plan Item
---------------------------------*/
.team-carousel:hover .owl-nav div,
.price-plan-slider:hover .owl-nav div {
    visibility: visible;
    opacity: 1;
}

.team-carousel .owl-nav div,
.price-plan-slider .owl-nav div {
    position: absolute;
    left: -50px;
    top: 50%;
    width: 40px;
    height: 50px;
    background-color: var(--main-color-one);
    color: #fff;
    text-align: center;
    line-height: 52px;
    visibility: hidden;
    opacity: 0;
    transition: all 300ms;
}

.team-carousel .owl-nav div.owl-next,
.price-plan-slider .owl-nav div.owl-next {
    left: auto;
    right: -50px;
}

.pricing-plan-area.bg-image {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.pricing-plan-area.bg-image::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.single-price-plan-01 {
    /* text-align: left; */
    height: 100%;
    -webkit-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    /* position: relative; */
    /* z-index: 0; */
    /* overflow: hidden; */
    background-color: #fff;
    padding: 40px 5px 22px;
    -webkit-box-shadow: 0px 0px 7px 0px rgba(48, 55, 63, 0.35);
    box-shadow: 0px 0px 7px 0px rgba(48, 55, 63, 0.35);
    margin: 0 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.single-price-plan-view {
    /* text-align: left; */
    height: 100%;
    -webkit-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    /* position: relative; */
    /* z-index: 0; */
    /* overflow: hidden; */
    background-color: #fff;
    padding: 20px;
    -webkit-box-shadow: 0px 0px 7px 0px rgba(48, 55, 63, 0.35);
    box-shadow: 0px 0px 7px 0px rgba(48, 55, 63, 0.35);
    margin: 0 5px;
}

.plan-list li::marker {
    color: var(--main-color-one);
}

.pack-included {
    list-style-type: none;
}

.pack-included li {
    margin: 10px 0;
    border-bottom: 1px solid #44444430;
    padding: 10px 25px 10px 0;
    position: relative;
}

.pack-included-icon {
    position: absolute;
    right: 2%;
    top: 50%;
    color: var(--main-color-one);
    transform: translate(0, -60%);
}

.single-price-plan-01.style-01 {
    background-image: -o-linear-gradient(330deg, #fd5b56 0%, #f41e7e 100%);
    background-image: linear-gradient(-240deg, #fd5b56 0%, #f41e7e 100%);
}

.single-price-plan-01.style-02 {
    background-color: var(--main-color-two);
}

.single-price-plan-01.style-03 {
    background-color: var(--main-color-one);
}

.single-price-plan-01.active .price-header .name {
    color: #fff;
}

.single-price-plan-01.active .price-header .price-wrap .price {
    color: #fff;
}

.single-price-plan-01.active .price-header .price-wrap .month {
    color: #fff;
}

.single-price-plan-01.active .price-body ul li {
    color: #fff;
}

.single-price-plan-01.active .btn-wrapper .boxed-btn {
    border: 1px solid #fff;
    background-color: transparent;
}

.single-price-plan-01.active .btn-wrapper .boxed-btn:hover {
    background-color: #fff;
    color: var(--main-color-one);
}

.single-price-plan-01 .price-header {
    position: relative;
    /* padding: 0px 16px; */
}

.single-price-plan-01 .price-header .name-box .name {
    font-weight: 500;
    font-size: 24px;
    -webkit-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    text-align: center;
}

.single-price-plan-01 .price-header .popular {
    position: absolute;
    top: 15px;
    right: -55px;
    display: inline-block;
    background-color: var(--main-color-one);
    padding: 10px 30px;
    width: 180px;
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
}

.single-price-plan-01 .price-header .title {
    color: #fff;
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
    padding: 20px 0;
    margin-bottom: 30px;
    background-color: var(--main-color-two);
    font-family: var(--heading-font);
}

.single-price-plan-01 .price-header .price-wrap {
    /* 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; */
    /* text-align: left; */
    text-align: center;
}

.single-price-plan-01 .price-header .price-wrap .price {
    font-size: 28px;
    font-family: var(--heading-font);
    line-height: 40px;
    font-weight: 600;
    color: var(--heading-color);
    -webkit-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    text-align: center;
    position: relative;
    z-index: 0;
    margin-top: 20px;
}

.single-price-plan-01 .price-header .price-wrap .price .dollar {
    font-size: 33px;
    line-height: 33px;
    position: relative;
    top: -12px;
}

.single-price-plan-01 .price-header .price-wrap .month {
    font-size: 18px;
    /* line-height: 20px; */
    margin-top: 15px;
    color: var(--main-color-one);
    -webkit-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    /* text-decoration: line-through; */
}

.single-price-plan-01 .price-header .price-wrap .discount-line-through {
    text-decoration: line-through;
}

.single-price-plan-01 .price-body ul {
    /* margin: 0; */
    /* padding: 0; */
    /* margin-top: 25px; */
    /* margin-bottom: 25px; */
}

.single-price-plan-01 .price-body ul li {
    list-style: disc;
    /* display: block; */
    margin: 3px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--heading-color);
    -webkit-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

.single-price-plan-01 .price-body ul li:first-child {
    margin-top: 0;
}

.single-price-plan-01 .price-body ul li:last-child {
    margin-bottom: 0;
}

.single-price-plan-01 .btn-wrapper .boxed-btn {
    border: 1px solid transparent;
    border-radius: 10px;
}

.social-link ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.social-link ul li {
    color: #918989;
    font-size: 15px;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.social-link ul li:hover {
    color: var(--main-color-one);
}

.social-link.style-01 ul li {
    font-size: 30px;
    display: inline-block;
}

.social-link.style-01 ul li+li {
    margin-left: 10px;
}

.social-link.style-01 ul li i.facebook {
    color: #3b5999;
}

.social-link.style-01 ul li i.twitter {
    color: #55acee;
}

.social-link.style-01 ul li i.g-plus {
    color: #dd4b39;
}

.social-link.style-01 ul li i.instagram {
    color: #e4405f;
}

.social-link.style-02 ul li {
    font-size: 14px;
    display: inline-block;
}

.social-link.style-02 ul li+li {
    margin-left: 5px;
}

.social-link.style-02 ul li i.facebook {
    color: #3b5999;
}

.social-link.style-02 ul li i.twitter {
    color: #55acee;
}

.social-link.style-02 ul li i.g-plus {
    color: #dd4b39;
}

.social-link.style-02 ul li i.instagram {
    color: #e4405f;
}

/* added in laravel */
.site-title.white {
    color: #fff;
}

/* ajax preloader */
.error-message span {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.error-message span:last-child {
    margin-bottom: 20px;
}

.ajax-loading-wrap.show {
    visibility: visible;
    opacity: 1;
}

.ajax-loading-wrap.hide {
    visibility: hidden;
    opacity: 0;
}

.ajax-loading-wrap {
    display: inline-block;
    margin-left: 10px;
}

.ajax-loading-wrap .sk-fading-circle {
    margin: 0px auto;
    width: 20px;
    height: 20px;
    position: relative;

}

.ajax-loading-wrap .sk-fading-circle .sk-circle {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.ajax-loading-wrap .sk-fading-circle .sk-circle:before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: var(--main-color-one);
    border-radius: 100%;
    -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
    animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}

.ajax-loading-wrap .sk-fading-circle .sk-circle2 {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}

.ajax-loading-wrap .sk-fading-circle .sk-circle3 {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}

.ajax-loading-wrap .sk-fading-circle .sk-circle4 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.ajax-loading-wrap .sk-fading-circle .sk-circle5 {
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}

.ajax-loading-wrap .sk-fading-circle .sk-circle6 {
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}

.ajax-loading-wrap .sk-fading-circle .sk-circle7 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.ajax-loading-wrap .sk-fading-circle .sk-circle8 {
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}

.ajax-loading-wrap .sk-fading-circle .sk-circle9 {
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}

.ajax-loading-wrap .sk-fading-circle .sk-circle10 {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.ajax-loading-wrap .sk-fading-circle .sk-circle11 {
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}

.ajax-loading-wrap .sk-fading-circle .sk-circle12 {
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}

.ajax-loading-wrap .sk-fading-circle .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.ajax-loading-wrap .sk-fading-circle .sk-circle3:before {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.ajax-loading-wrap .sk-fading-circle .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.ajax-loading-wrap .sk-fading-circle .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.ajax-loading-wrap .sk-fading-circle .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.ajax-loading-wrap .sk-fading-circle .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.ajax-loading-wrap .sk-fading-circle .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.ajax-loading-wrap .sk-fading-circle .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.ajax-loading-wrap .sk-fading-circle .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.ajax-loading-wrap .sk-fading-circle .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.ajax-loading-wrap .sk-fading-circle .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleFadeDelay {

    0%,
    39%,
    100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}

@keyframes sk-circleFadeDelay {

    0%,
    39%,
    100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}


/*-----------------------------
    Login Form
------------------------------*/
.login-form-wrapper {
    margin: 100px 0;
    background-color: #fff;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
    padding: 60px;
}

.login-form-wrapper h2 {
    font-size: 30px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 40px;
}

.account-form .form-group .form-control {
    border: 1px solid #e2e2e2;
    height: 50px;
}

.account-form .btn-wrapper {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 30px;
}

.account-form .submit-btn:hover {
    background-color: var(--main-color-one);
    color: #fff;
}

.account-form .submit-btn {
    display: inline-block;
    background-color: var(--main-color-two);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    width: 160px;
    transition: 300ms all;
}

.account-form a:hover {
    color: var(--main-color-one);
}

.account-form a {
    transition: 300ms all;
}

.account-form.verify-mail .submit-btn {
    width: 180px;
}

/* user dashboard styles */
.user-dashboard-card.style-01 {
    background-color: var(--main-color-two);
}

.user-dashboard-card {
    background-color: var(--main-color-one);
    padding: 30px;
    display: flex;
    align-self: flex-start;
}

.user-dashboard-card .icon {
    font-size: 40px;
    line-height: 40px;
    color: #fff;
    margin-right: 20px;
}

.user-dashboard-card .title {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    color: #fff;
}

.user-dashboard-card .number {
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    display: block;
    color: #fff;
}

.user-dashboard-wrapper>ul {
    display: inline-block;
    width: 260px;
    background-color: var(--secondary-color);
    padding-bottom: 5px;
}

.user-dashboard-wrapper {
    display: flex;
    justify-content: space-between;
}

.user-dashboard-wrapper .tab-content {
    width: calc(100% - 300px);
}

.user-dashboard-wrapper {
    padding: 80px 0;
}

.user-dashboard-wrapper ul.nav-pills .nav-link.active {
    background-color: var(--main-color-two);
}

.user-dashboard-wrapper ul.nav-pills .nav-link {
    border-radius: 0;
    padding: 10px 30px;
}

.user-dashboard-wrapper ul.nav-pills .nav-item+.nav-item {
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.width-200 {
    width: 200px !important;
}

.width-220 {
    width: 220px !important;
}

.width-250 {
    width: 250px !important;
}

.submit-btn.dash-btn:hover {
    background-color: var(--main-color-one);
    color: #fff;
}

.submit-btn.dash-btn {
    background-color: var(--main-color-two);
}

.dashboard-form-wrapper .title {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
}

.dashboard-form-wrapper .form-group label {
    font-size: 14px;
    font-weight: 700;
    color: var(--heading-color);
}

.dashboard-form-wrapper .form-group .form-control {
    border: 1px solid #e2e2e2;
}

/*---------------------------
    Laravel Pagination
---------------------------*/
.pagination-wrapper {
    text-align: center;
}

.pagination-wrapper ul {
    display: inline-block;
}

.pagination-wrapper ul li a:focus {
    outline: none;
    box-shadow: none;
}

.pagination-wrapper ul li a:hover {
    background-color: var(--main-color-one);
    border-color: var(--main-color-one);
    color: #fff;
}

.pagination-wrapper ul li a {
    color: var(--paragraph-color);
}

.pagination-wrapper ul li {
    display: inline-block;
}

.pagination-wrapper ul li.page-item.active span {
    background-color: var(--main-color-one);
    border-color: var(--main-color-one);
}

.case-study-gallery-carousel .owl-nav div.owl-next {
    left: auto;
    right: 10px;
}

.case-studies-slider-active:hover .owl-nav {
    visibility: visible;
    opacity: 1;
}

.case-studies-slider-active .owl-nav {
    visibility: hidden;
    opacity: 0;
}

.case-study-gallery-carousel .owl-nav div:hover {
    background-color: var(--main-color-one);
    color: #fff;
    border-color: var(--main-color-one);
}

.case-study-gallery-carousel .owl-nav div {
    position: absolute;
    left: 10px;
    top: 50%;
    width: 30px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    transform: translateY(-50%);
    border-radius: 2px;
    transition: 300ms all;
    font-size: 14px;
}

.case-study-gallery-wrapper .main-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 30px;
}

.portfolio-details-item .thumb {
    margin-bottom: 30px;
}

.portfolio-details-item .title {
    font-size: 26px;
    line-height: 36px;
    font-weight: 700;
}

/* related work */
.related-work-area .title {
    font-size: 36px;
    line-height: 46px;
}

.related-case-study-carousel .owl-nav div.owl-next {
    left: auto;
    right: 10px;
}

.related-case-study-carousel .owl-nav div:hover {
    background-color: var(--main-color-one);
    color: #fff;
    border-color: var(--main-color-one);
}

.related-case-study-carousel .owl-nav div {
    position: absolute;
    left: 10px;
    top: 50%;
    width: 30px;
    height: 40px;
    text-align: center;
    line-height: 43px;
    background-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-50%);
    border-radius: 2px;
    transition: 300ms all;
    font-size: 14px;
    cursor: pointer;
}

.single-related-case-study-item .content {
    background-color: #f5f5f5;
    padding: 30px;
}

.single-related-case-study-item .content .title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 0;
    min-height: 60px;
    transition: 300ms all;
}

.single-case-studies-item:hover .cart-icon .title {
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    color: #fff;
    transition: 300ms all;
}


.contact-form.order-form .form-group .form-control {
    border: 1px solid #e2e2e2;
    height: 50px;
    padding: 0 20px;
}

.contact-form.order-form .form-group.file .form-control {
    height: auto;
    border: none;
    padding-left: 0;
}

.contact-form.order-form .form-group.file .help-info {
    font-size: 14px;
    color: #5e885e;
}

.contact-form.order-form .form-group.textarea .form-control {
    padding: 20px;
    min-height: 150px;
    resize: none;
}

.contact-form.order-form .form-group.textarea .form-control:focus {
    outline: none;
    box-shadow: none;
}

.contact-form.order-form .submit-btn:focus {
    outline: none;
    box-shadow: none;
}

.contact-form.order-form .submit-btn {
    background-color: var(--secondary-color);
}

.contact-form.order-form .submit-btn:hover {
    background-color: var(--main-color-one);
    color: #fff;
}

.contact-page-form .form-group.file .form-control {
    border: none;
    padding: 0;
    height: 40px;
    margin-bottom: 0;
}

.contact-page-form label {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
}

.form-group.checkbox input {
    display: inline-block;
    width: 20px;
    height: 20px;
}

.form-group.checkbox label {
    position: relative;
    top: -20px;
    padding-left: 10px;
    font-size: 16px;
    font-weight: 400;
    color: var(--paragraph-color);
}

.contact-page-form .help-info {
    font-size: 14px;
    line-height: 24px;
    color: var(--paragraph-color);
}

.contact-page-form .form-group.select .form-control:focus,
.contact-page-form .form-group.file .form-control:focus,
.form-group.checkbox input:focus,
.contact-form.quote-form textarea {
    outline: none;
    box-shadow: none;
}

.contact-page-form .form-group.select .form-control {
    padding: 0;
    height: 50px;
}

.payment-gateway-wrapper ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.payment-gateway-wrapper ul li {
    max-width: 100px;
    cursor: pointer;
    box-sizing: border-box;
    height: 50px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.form-group.file .form-control {
    border: none;
    padding: 0;
}

.form-group.file .help-info {
    font-size: 14px;
    line-height: 24px;
    color: var(--paragraph-color);
}

.form-group label {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    color: var(--heading-color);
}

.contact-form.quote-form input {
    border: 1px solid #e2e2e2;
    height: 50px;
    padding: 0 20px;
}

.contact-form.quote-form textarea {
    border: 1px solid #e2e2e2;
    padding: 20px;
    max-height: 160px;
    resize: none;
}

.form-group.checkbox {
    height: 25px;
}

.payment-gateway-wrapper ul li.selected:after,
.payment-gateway-wrapper ul li.selected:before {
    visibility: visible;
    opacity: 1;
}

.payment-gateway-wrapper ul li:before {
    border: 2px solid var(--main-color-two);
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    visibility: hidden;
    opacity: 0;
    transition: all 300ms;
}

.payment-gateway-wrapper ul li:after {
    position: absolute;
    right: 0;
    top: 0;
    width: 15px;
    height: 15px;
    background-color: var(--main-color-two);
    content: "\f00c";
    font-weight: 900;
    color: #fff;
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    line-height: 10px;
    text-align: center;
    padding-top: 2px;
    padding-left: 2px;
    visibility: hidden;
    opacity: 0;
    transition: all 300ms;
}

.submit-btn.style-01 {
    background-color: var(--secondary-color);
    color: #fff;
}

/* success / cancel page */
.order-success-area,
.order-cancel-area {
    text-align: center;
}

.order-success-area .title,
.order-cancel-area .title {
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.order-success-area .sub-title,
.order-cancel-area .sub-title {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 30px;
}

.order-service-page-content-area .order-title {
    font-size: 42px;
    line-height: 52px;
    font-weight: 700;
    margin-bottom: 30px;
}

.order-service-page-content-area .nav-tabs {
    display: block;
    border: none;
}

.order-service-page-content-area .nav-tabs .nav-item {
    border: none;
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--main-color-two);
    line-height: 50px;
    color: #fff;
    padding: 0;
    text-align: center;
}

.order-service-page-content-area .tab-content {
    margin-top: 30px;
}

.order-service-page-content-area .nav-tabs .nav-item+.nav-item {
    margin-left: 15px;
}

.order-service-page-content-area .nav-tabs .nav-item.active {
    background-color: var(--main-color-one);
    color: #fff;
}

.order-service-page-content-area .nav-tabs .nav-item[disabled] {
    background-color: #e1e1e1;
    color: var(--paragraph-color);
}

.alert-sm {
    padding: 5px 10px;
    font-size: 14px;
}

.btn-boxed:focus {
    outline: none;
    box-shadow: none;
}

.btn-boxed:hover {
    background-color: var(--main-color-one);
    color: #fff;
}

.btn-boxed {
    display: inline-block;
    border: none;
    background-color: var(--main-color-two);
    color: #fff;
    padding: 10px 30px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    transition: 300ms all;
}

.related-post-area .title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 0;
}

.single-blog-grid-02 .content {
    padding: 20px;
}

.single-blog-grid-02 .content .title {
    font-size: 18px;
    line-height: 30px;
    max-width: 320px;
}

/*----------------------
    Couterup Item
-----------------------*/
.singler-counterup-item-01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.singler-counterup-item-01.white .content .count-wrap {
    color: #fff;
}

.singler-counterup-item-01.white .content .title {
    color: rgba(255, 255, 255, 0.8);
}

.singler-counterup-item-01 .icon {
    font-size: 50px;
    line-height: 60px;
    color: var(--main-color-one);
    margin-right: 20px;
}

.singler-counterup-item-01 .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.singler-counterup-item-01 .content .count-wrap {
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    color: var(--heading-color);
    font-family: var(--heading-font);
}

.singler-counterup-item-01 .content .title {
    color: var(--paragraph-color);
    margin-bottom: 0;
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
}

.header-variant-03 .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav {
    text-align: left;
    margin-left: 60px;
}

.header-variant-03 .navbar-area.nav-style-01 .nav-container .nav-right-content ul li a {
    color: var(--main-color-one);
}

.header-variant-03 .navbar-area .nav-container .nav-right-content ul li.cart .pcount {
    color: #fff;
}

.navbar-area.nav-fixed .nav-container .navbar-collapse .navbar-nav li.menu-item-has-mega-menu:hover>.xg_mega_menu_wrapper {
    top: 70px;
}

/*----------------------------
    Knowledgebase
----------------------------*/

.knowledgebase-content-area .main-title {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 50px;
}


.article-with-topic-title-style-01 .topic-title {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 20px;
}

.article-with-topic-title-style-01 .topic-title i {
    opacity: .8;
    margin-right: 5px;
}

.article-with-topic-title-style-01 ul.know-articles-list {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: 20px;
}

.article-with-topic-title-style-01 ul.know-articles-list li+li {
    margin-top: 10px;
}

.article-with-topic-title-style-01 ul.know-articles-list li {
    transition: all 300ms;
}

.article-with-topic-title-style-01 ul.know-articles-list li:hover {
    color: var(--main-color-one)
}

.article-with-topic-title-style-01 {
    margin-bottom: 40px;
}

.single-knowledgebase-list-item .title {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
    font-weight: 700;
}

.single-knowledgebase-list-item .title i {
    opacity: .8;
    margin-right: 5px;
}

.single-knowledgebase-list-item {
    margin-bottom: 30px;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 30px;
}

.single-knowledgebase-list-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

/*--------------------
    Career With Us
--------------------*/

/* career page */

.single-job-list-item {
    border: 2px solid #f4f7fc;
    border-radius: 5px;
    margin-bottom: 30px;
    padding: 30px;
}

.single-job-list-item .job_type {
    background-color: #e0f5d7;
    border-radius: 20px;
    padding: 5px 15px;
    color: #449626;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 16px;
}

.single-job-list-item .job_type i {
    margin-right: 5px;
}

.single-job-list-item .title {
    font-size: 26px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 15px;
    transition: all 300ms;
}

.single-job-list-item .title:hover {
    color: var(--main-color-one);
}

.single-job-list-item .company_name,
.single-job-list-item .deadline {
    display: block;
    margin-bottom: 10px;
}

.single-job-list-item .company_name strong,
.single-job-list-item .deadline strong {
    color: var(--heading-color);
    margin-right: 10px;
    font-weight: 600;
}

.single-job-list-item .jobs-meta {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 30px;
}

.single-job-list-item .jobs-meta li {
    display: inline-block;
    border-radius: 25px;
    padding: 5px 15px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    font-weight: 500;
    font-size: 14px;
}

.single-job-list-item .jobs-meta li+li {
    margin-left: 20px;
}

.single-job-list-item .jobs-meta li strong {
    color: var(--heading-color);
    font-weight: 600;
}

.single-job-list-item .jobs-meta li i {
    margin-right: 5px;
}

.single-job-list-item .jobs-meta li:nth-child(1) i {
    color: #12b6e8;
}

.single-job-list-item .jobs-meta li:nth-child(2) i {
    color: #2a41e8;
}

.single-job-list-item .jobs-meta li:nth-child(3) i {
    color: #dc3139;
}

.single-job-list-item .jobs-meta li:nth-child(4) i {
    color: #0bbdc6;
}

.job-information-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.job-information-list li+li {
    margin-top: 20px;
}

.job-information-list li .single-job-info {
    display: flex;
    align-self: flex-start;
}

.job-information-list li .single-job-info .content {
    flex: 1;
}

.job-information-list li .single-job-info .icon {
    margin-right: 20px;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--main-color-one);
    text-align: center;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
}

.job-information-list li+li {
    border-top: 1px solid #e2e2e2;
    padding-top: 25px;
}

.job-information-list li .single-job-info .content .title {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 4px;
}

.job-information-list li .single-job-info .content .details {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}

.job-meta-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.job-meta-list>li+li {
    margin-top: 40px;
}

.job-meta-list li .single-job-meta-block p {
    line-height: 30px;
}

.job-meta-list li .single-job-meta-block .title {
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.job-meta-list li .single-job-meta-block ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.job-meta-list li .single-job-meta-block ul li+li {
    margin-top: 15px;
}

.job-meta-list li .single-job-meta-block ul li:before {
    position: static;
    content: "\f101";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    margin-right: 5px;
    color: var(--main-color-one);
}

.apply-procedure p {
    font-size: 20px;
    margin-top: 40px;
    font-weight: 600;
    color: var(--heading-color);
    line-height: 30px;
}

.apply-procedure p span {
    display: block;
    font-size: 16px;
    margin-top: 10px;
    font-weight: 400;
    color: var(--paragraph-color);
}

.job-apply-form-wrapper input {
    border: 1px solid #e2e2e2;
    padding: 10px 20px;
    height: 50px;
    font-size: 14px;
}

.job-apply-form-wrapper input[type="file"] {
    border: none;
    padding: 0;
}

.job-apply-form-wrapper label {
    font-size: 14px;
    font-weight: 700;
    color: var(--heading-color);
}

.job-apply-form-wrapper .help-info {
    font-size: 14px;
    font-weight: 500;
    color: var(--paragraph-color);
}

.job-apply-form-wrapper textarea:focus,
.job-apply-form-wrapper select:focus,
.job-apply-form-wrapper .checkbox input:focus {
    outline: none;
    box-shadow: none;
}

.job-apply-form-wrapper textarea {
    border: 1px solid #e2e2e2;
    padding: 20px;
    height: 120px;
    resize: none;
}

.job-apply-form-wrapper select {
    border: 1px solid #e2e2e2;
    height: 50px;
}

.job-apply-form-wrapper .checkbox label {
    display: inline-block;
    position: relative;
    top: -5px;
    padding-left: 10px;
}

.job-apply-form-wrapper .checkbox input {
    display: inline-block;
    width: 20px;
    height: 20px;
}

.quote-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
}

.single-price-plan-01.bg-lightwhite {
    background-color: #fbfbfb;
}

.single-price-plan-01.style-02.bg-lightwhite {
    background-color: var(--main-color-two);
}

/* event page*/
.single-events-list-item+.single-events-list-item {
    margin-top: 30px;
}

.single-events-list-item {
    display: flex;
    align-self: flex-start;
}

.single-events-list-item .content-area {
    flex: 1;
}

.single-events-list-item .thumb {
    margin-right: 30px;
}

.single-events-list-item .content-area .top-part {
    display: flex;
    align-self: flex-start;
    margin-bottom: 15px;
}

.single-events-list-item .content-area .top-part .time-wrap {
    margin-right: 20px;
    width: 80px;
    height: 80px;
    background-color: var(--main-color-one);
    color: #fff;
    text-align: center;
    padding-top: 10px;
}

.single-events-list-item .content-area .top-part .title-wrap {
    flex: 1;
}

.single-events-list-item .content-area .top-part .time-wrap span {
    display: block;
}

.single-events-list-item .content-area .top-part .time-wrap .date {
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
}

.single-events-list-item .content-area .top-part .time-wrap .month {
    font-weight: 600;
    text-transform: uppercase;
}

.single-events-list-item .content-area .top-part .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
}

.single-events-list-item .content-area .top-part .location {
    font-size: 14px;
    font-weight: 500;
}

.single-events-list-item .content-area .top-part .location i {
    color: var(--main-color-one);
}

@media only screen and (max-width: 767px) {
    .single-events-list-item {
        display: block;
    }

    .single-events-list-item .thumb {
        margin-bottom: 30px;
    }

    .single-events-list-item .thumb img {
        width: 100%;
    }
}

/* event details page */
.single-event-details .thumb {
    margin-bottom: 30px;
}

.single-event-details .content .top-part {
    display: flex;
    align-self: flex-start;
    margin-bottom: 25px;
}

.single-event-details .content .top-part .time-wrap {
    margin-right: 20px;
    width: 80px;
    height: 80px;
    background-color: var(--main-color-one);
    color: #fff;
    text-align: center;
    padding-top: 10px;
}

.single-event-details .content .top-part .title-wrap {
    flex: 1;
}

.single-event-details .content .top-part .time-wrap span {
    display: block;
}

.single-event-details .content .top-part .time-wrap .date {
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
}

.single-event-details .content .top-part .time-wrap .month {
    font-weight: 600;
    text-transform: uppercase;
}

.single-event-details .content .top-part .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
}

.single-event-details .content .top-part .location {
    font-size: 14px;
    font-weight: 500;
}

.single-event-details .content .top-part .location i {
    color: var(--main-color-one);
}

.single-event-details .content .top-part .title-wrap .category .i {
    margin-right: 5px;
}

.single-event-details .content .top-part .title-wrap .category {
    background-color: #e0f5d7;
    padding: 5px 15px;
    color: #449626;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 10px;
}

.single-event-details .content .top-part .title-wrap span {
    display: block;
}

.single-event-details .content .top-part .title-wrap {
    flex: 1;
    margin-top: 10px;
}

.base-color {
    color: var(--main-color-one);
}

.event-info .icon-with-title-description {
    margin: 0;
    padding: 0;
}

.event-info .icon-with-title-description li {
    list-style: none;
    display: flex;
}

.event-info .icon-with-title-description li .icon {
    margin-right: 15px;
    font-size: 14px;
    line-height: 24px;
    width: 10px;
    color: var(--main-color-one);
}

.event-info .icon-with-title-description li h4 {
    font-size: 14px;
    line-height: 26px;
    font-family: var(--body-font);
    font-weight: 600;
    margin-bottom: 0;
}

.event-info .icon-with-title-description li span {
    margin-bottom: 0;
}

.event-info .icon-with-title-description li+li {
    margin-top: 10px;
}

.event-info .icon-with-title-description li a {
    transition: 300ms all;
}

.event-info .icon-with-title-description li a:hover {
    color: var(--main-color-one);
}

.event-venue-details-information {
    background-color: #f5f5f5;
    padding: 30px;
}

.event-venue-details-information .venue-title {
    font-size: 26px;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.event-venue-details-information .bottom-content {
    display: flex;
    justify-content: space-between;
}

.venue-details-block .title {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 0;
}

.venue-details-block+.venue-details-block {
    margin-top: 20px;
}

.venue-details-block {
    padding-right: 40px;
}

.event-booking-form h4 {
    font-size: 36px;
    line-height: 46px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 50px;
}

.event-booking-form .form-group .form-control {
    height: 50px;
    padding: 0 20px;
}

.event-booking-form .form-group.checkbox .form-control {
    padding: 0;
    height: auto;
}

.event-booking-form .form-group.checkbox label {
    position: relative;
    top: -2px;
}

.event-booking-form .form-group.file .form-control {
    padding: 0;
}

.event-booking-form .form-group.textarea .form-control {
    height: 150px;
    resize: none;
    padding: 20px;
}

.event-booking-form .form-group.textarea .form-control:focus,
.event-booking-form .form-group.select .form-control:focus {
    outline: none;
    box-shadow: none;
}

.event-booking-form .btn-wrapper {
    text-align: center;
}

.order-confirm-area .title {
    text-align: center;
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
    margin-bottom: 40px;
}

.form-group input[type="number"] {
    border: 1px solid #e2e2e2;
    margin-left: 20px;
    height: 40px;
    text-align: center;
    color: var(--paragraph-color);
    max-width: 60px;
}

/* rprogressbar */
.progressbar {
    width: 100%;
    position: relative;
    background-color: #f4f4f4;
}

.proggress {
    height: 8px;
    width: 0%;
    background-color: #ff0;
    max-width: 100%;
}

.percentCount {
    margin-top: -44px;
    clear: both;
    font-weight: 700;
    font-size: 14px;
    background-color: var(--main-color-one);
    color: #fff;
    padding: 5px;
    display: inline-block;
    position: absolute;
    text-align: center;
    border-radius: 5px;
}

.percentCount:after {
    position: absolute;
    left: 0;
    bottom: -6px;
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid var(--main-color-one);
    border-right: 15px solid transparent;
}

.contribute-single-item {
    margin-bottom: 30px;
}

.contribute-single-item .thumb {
    position: relative;
    z-index: 0;
    width: 100%;
}

.contribute-single-item .thumb img {
    width: 100%;
}

.contribute-single-item .thumb .thumb-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.contribute-single-item .thumb .thumb-content .goal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 30px;
}

.contribute-single-item .thumb .thumb-content .goal .raised {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--body-font);
}

.contribute-single-item .content {
    margin-top: 30px;
}

.contribute-single-item .content.style-01 {
    border: none;
    padding: 35px 0 0px;
}

.contribute-single-item .content .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 23px;
}

.contribute-single-item .content p {
    margin-bottom: 23px;
}

.contribute-single-item .content .btn-wrapper .boxed-btn {
    padding: 12px 20px;
}


.donation_wrapper {
    padding: 40px 45px 45px;
    background: #f5f5f5;
}

.donation_wrapper .title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.donation_wrapper .single_amount_wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.donation_wrapper .single_amount_wrapper .single_amount {
    padding: 5px 10px;
    margin: 0 5px;
    border-radius: 5px;
    color: #fff;
    background: var(--main-color-one);
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 300ms;
}

.donation_wrapper .single_amount_wrapper .single_amount:hover {
    background: var(--main-color-two);
}

.donation_wrapper .amount_wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.donation_wrapper .amount_wrapper input,
.donation_wrapper .amount_wrapper .suffix {
    padding: 8px;
    border: 0;
    font-weight: bold;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
    background: transparent;
    width: 100%;
}

.donation_wrapper .amount_wrapper input {
    border-radius: 0 8px 8px 0;
    border-right: 0;
    outline: none;
}

.donation_wrapper .single_amount_wrapper .single_amount:first-child {
    margin-left: 0;
}

.donation_wrapper .amount_wrapper .suffix {
    border-radius: 5px 0 0 5px;
    width: auto;
}

.donation_wrapper a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    padding: 15px 25px;
    border: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0) inset, 0 0 0 0 rgba(0, 0, 0, 0) inset;
    background: var(--main-color-one);
    transition: all 0.3s;
}

.donation_wrapper a:hover {
    background: var(--main-color-two);
}

.donation_wrapper a:active {
    box-shadow: 0 -2px 2px 0 rgba(255, 255, 255, 0.2) inset, 0 2px 2px 0 rgba(0, 0, 0, 0.5) inset;
}

.donation_wrapper .payment-gateway-wrapper ul {
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.donation_wrapper .payment-gateway-wrapper ul li {
    width: calc(100% / 2 - 30px);
    margin-bottom: 20px;
}

.donation_wrapper .payment-gateway-wrapper ul li+li {
    margin-left: 0px;
}

.donation-form-wrapper .form-group .form-control {
    border: 1px solid #e2e2e2;
    font-size: 14px;
    padding: 15px 20px;
}

.donation-form-wrapper .form-group .label {
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.donation-form-wrapper .form-group {
    margin-top: 20px;
}

.manual_payment_transaction_field.show {
    display: block;
}

.manual_payment_transaction_field {
    display: none;
}

/*
    Product Page Styling
*/
.single-product-item-3 {
    border: 1px solid rgba(0, 0, 0, 0.07);
    transition: .3s ease-in;
    overflow: hidden;
}

.single-product-item-3 .content .title:hover {
    color: var(--main-color-one);
}

.single-product-item-3 .thumb {
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
    height: 260px;
    width: 100%;
}

.single-product-item-3 .thumb .tag {
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--main-color-one);
    border-radius: 2px;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    width: 60px;
    height: 30px;
    line-height: 35px;
    text-align: center;
}

.single-product-item-3 .content {
    padding: 0 20px 30px 20px;
}

.single-product-item-3 .content .title {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: var(--heading-color);
    margin-bottom: 10px;
    transition: .3s ease-in;
}

.single-product-item-3 .content .del-price {
    display: inline-block;
    font-size: 20px;
    color: var(--paragraph-color);
    font-weight: 600;
    margin-bottom: 10px;
    margin-right: 10px;
}

.single-product-item-3 .content .price {
    display: inline-block;
    font-size: 22px;
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.single-product-item-3 .addtocart:hover {
    background-color: var(--main-color-one);
}

.single-product-item-3 .addtocart,
.out_of_stock {
    display: inline-block;
    padding: 0px 20px;
    background-color: var(--main-color-two);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    border-radius: 3px;
    height: 40px;
    line-height: 45px;
}

.out_of_stock {
    background-color: #dc3545;
}

.single-product-item-3 .addtocart i {
    padding-right: 5px;
}

.product-archive-top-content-area {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.product-archive-top-content-area .search-form {
    position: relative;
    z-index: 0;
    width: 320px;
}

.product-archive-top-content-area .search-form .form-control {
    border: 1px solid #e2e2e2;
    font-size: 14px;
    height: 40px;
    border-radius: 0;
    padding-right: 60px;
}

.product-archive-top-content-area .search-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 40px;
    width: 50px;
    border: none;
    color: var(--main-color-two);
    transition: 300ms all;
}

.product-archive-top-content-area .search-form button:hover {
    background-color: var(--main-color-two);
    color: #fff;
}

.single-rating-filter-wrap .filter-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
    cursor: pointer;
}

.product-archive-top-content-area .product-sorting select {
    border: 1px solid #e2e2e2;
    height: 40px;
    min-width: 180px;
    padding: 0 10px;
    color: var(--paragraph-color);
    font-size: 14px;
}

/* product single page styling */
.related-product-area .title {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 38px;
}

.single-product-details .extra-content-wrap .nav-tabs {
    display: block;
    border: none;
    font-size: 0;
}

.single-product-details .extra-content-wrap .nav-tabs .nav-item {
    border: none;
    display: inline-block;
    background-color: #f2f2f2;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    color: #555;
    transition: 300ms all;
    padding: 12px 30px;
}

.single-product-details .extra-content-wrap .nav-tabs .nav-item.active {
    background-color: var(--main-color-one);
    color: #fff;
}

.single-product-details .extra-content-wrap .nav-tabs .nav-item:first-child {
    border-top-left-radius: 5px;
}

.single-product-details .extra-content-wrap .nav-tabs .nav-item:last-child {
    border-top-right-radius: 5px;
}

.single-product-details .extra-content-wrap .tab-content {
    background-color: #f2f2f2;
    padding: 30px;
}

.single-product-details .extra-content-wrap {
    margin-bottom: 100px;
    margin-top: 60px;
}

.single-product-details .top-content {
    display: flex;
    align-items: flex-start;
}

.single-product-details .top-content .product-summery {
    flex: 1;
}

.single-product-details .top-content>div:first-child {
    width: calc(100% / 2 - 30px);
    margin-right: 30px;
}

.single-product-details .top-content .price-wrap {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 42px;
    margin-bottom: 20px;
}

.single-product-details .top-content .price-wrap .del-price {
    color: var(--paragraph-color);
}

.single-product-details .top-content .short-description {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 30px;
}

.single-product-details .top-content .single-add-to-card-wrapper .quantity {
    max-width: 100px;
    border: 1px solid #e2e2e2;
    height: 40px;
    padding-left: 10px;
}

.single-product-details .top-content .single-add-to-card-wrapper {
    margin-bottom: 20px;
}

.single-product-details .top-content .single-add-to-card-wrapper .addtocart {
    display: inline-block;
    border: none;
    height: 40px;
    padding: 0 25px;
    background-color: var(--main-color-one);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    transition: 300ms all;
}

.single-product-details .top-content .single-add-to-card-wrapper .addtocart:focus {
    outline: none;
    box-shadow: none;
}

.single-product-details .top-content .single-add-to-card-wrapper .addtocart:hover {
    background-color: var(--main-color-two);
}

.single-product-details .top-content .cat-sku-content-wrapper span.title {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
    margin-right: 10px;
    margin-bottom: 10px;
}

.single-product-details .top-content .cat-sku-content-wrapper a {
    transition: 300ms all;
}

.single-product-details .top-content .cat-sku-content-wrapper a:hover {
    color: var(--main-color-two);
}

.single-product-details .top-content .slider-gallery-nav {
    margin-top: 30px;
}

.single-product-details .top-content .slider-gallery-nav .single-gallery-slider-nav-item img {
    opacity: .5;
    cursor: pointer;
}

.single-product-details .top-content .slider-gallery-nav .single-gallery-slider-nav-item.slick-current img {
    opacity: 1;
}

.single-product-details .extra-content-wrap .nav-tabs .nav-item+.nav-item {
    border-left: 1px solid #e2e2e2;
}

.product-ratings-form p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.product-ratings-form .login-form {
    max-width: 350px;
}

.product-ratings-form textarea:focus {
    outline: none;
    box-shadow: none;
}

.single-product-rating-item .ratings {
    font-size: 14px;
    margin-bottom: 10px;
}

.product-ratings-form textarea {
    border: 1px solid #e2e2e2;
    max-height: 120px;
    resize: none;
}

.product-ratings-form {
    max-width: 350px;
}

/* ratings style */

.rating-wrap .ratings {
    display: inline-block;
}

.rating-wrap .total-ratings {
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    color: var(--heading-color);
    position: relative;
    top: -2px
}

.rating-wrap .ratings span:after {
    position: absolute;
    left: 0;
    top: 0;
    content: "\f005" "\f005" "\f005" "\f005" "\f005";
    width: 100%;
    font-family: "Font Awesome 5 Free";
    font-size: 13px;
    font-weight: 900;
}

.rating-wrap .ratings {
    position: relative;
    z-index: 0;
    width: 75px;
    height: 16px;
    display: inline-block;
    top: 2px;
}

.rating-wrap .ratings span {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    line-height: 16px;
}

.rating-wrap .ratings span.show-rating:after {
    color: #ffc107;
}

.rating-wrap .ratings span.hide-rating:after {
    color: var(--paragraph-color)
}

.product-rating-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.single-product-item-3 .content {
    min-height: 215px;
}

.product-rating-list li+li {
    margin-top: 30px;
}

.rating-wrap p {
    display: inline-block;
}

.single-product-rating-item .title {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0;
}

.single-product-rating-item p {
    margin-bottom: 0;
}

.product-rating-list li:last-child {
    margin-bottom: 30px;
}

.product-ratings-form .title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 25px;
    font-weight: 700;
}

.widget.widget_nav_menu ul li a.active {
    position: relative;
    padding-left: 5px;
    color: var(--main-color-one);
}

.widget.widget_nav_menu ul li a.active:before {
    position: absolute;
    left: 0;
    top: 3px;
    width: 2px;
    height: 16px;
    background-color: var(--main-color-one);
    content: '';
}

.widget_price_filter p {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    margin-top: 5px;
    color: var(--heading-color);
}

.alert.alert-success a {
    font-weight: 600;
    padding: 3px 15px;
    margin-left: 20px;
    border-radius: 3px;
}

.alert.alert-success {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* cart page */
.cart-wrapper table .thumbnail {
    max-width: 80px;
}

.cart-wrapper table .product-title {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    transition: 300ms all;
}

.cart-wrapper table .product-title:hover {
    color: var(--main-color-one);
}

.cart-wrapper table .quantity {
    max-width: 80px;
    border: 1px solid #e2e2e2;
    height: 40px;
    padding-left: 10px;
}

.cart-wrapper table {
    color: var(--paragraph-color);
}

.cart-wrapper table th {
    color: var(--heading-color);
}

.ajax_remove_cart_item:focus {
    outline: none;
    box-shadow: none;
}

.cart-wrapper table .cart-action-wrap {
    display: flex;
    align-items: center;
}

.cart-table-footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-table-footer-wrap div:last-child {
    display: inline-block;
    max-width: 200px;
    display: flex;
    align-items: center;
}

.cart-table-footer-wrap div:last-child .ajax-loading-wrap {
    margin-right: 10px;
}

.cart-table-footer-wrap .coupon-wrap {
    position: relative;
    z-index: 0;
}

.cart-table-footer-wrap .coupon-wrap input {
    width: 100%;
    border: 1px solid #e2e2e2;
    height: 40px;
}

.cart-table-footer-wrap .coupon-wrap {
    display: flex;
}

.cart-table-footer-wrap .coupon-wrap .btn-boxed {
    margin-left: 10px;
}

.cart-total-wrap .title {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 30px;
}

.shipping-wrap .card {
    border: 1px solid #e2e2e2;
}

.shipping-wrap .card-header {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
    cursor: pointer;
    line-height: 30px;
}

.shipping-wrap {
    margin-bottom: 30px;
    margin-top: 20px;
}

.shipping-wrap .shipping-details-wrap .title {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
}

.shipping-wrap .shipping-details-wrap p {
    font-weight: 400;
}

.shipping-wrap .shipping-cost {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    color: var(--heading-color);
}

.shipping-table-wrap .btn-wrapper {
    display: flex;
    align-items: center;
}

.btn-boxed:focus {
    color: #fff;
}

.cart-total-table table td {
    color: var(--heading-color);
}

.billing-details-wrapper .login-form {
    max-width: 450px;
}

.billing-details-wrapper {
    margin-bottom: 80px;
}

.billing-details-fields-wrapper .title,
.shipping-details-fields-wrapper .title {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 30px;
}

.shipping-details-fields-wrapper {
    margin-top: 30px;
}

.billing-details-fields-wrapper {
    margin-bottom: 30px;
}

.shipping-details-wrapper .custom-control-label {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    color: var(--heading-color);
}

.product-orders-summery-warp .title {
    font-size: 24px;
    text-align: left;
    margin-bottom: 7px;
}

.billing-and-shipping-details {
    display: flex;
    justify-content: space-between;
    text-align: left;
}

.billing-and-shipping-details ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.billing-and-shipping-details ul li {
    margin: 8px 0;
}

.billing-and-shipping-details ul li strong {
    color: var(--heading-color);
    margin-right: 30px;
}

/*
 dynamic preloader css
*/

/* style 01 */
.lds-circle {
    display: inline-block;
    transform: translateZ(1px);
}

.lds-circle>div {
    display: inline-block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    background: var(--main-color-one);
    animation: lds-circle 2.4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}


@keyframes lds-circle {

    0%,
    100% {
        animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
    }

    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(1800deg);
        animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
    }

    100% {
        transform: rotateY(3600deg);
    }
}

/* style 02 */
.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid var(--main-color-one);
    border-color: var(--main-color-one) transparent var(--main-color-one) transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* style 03 */
.lds-facebook {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-facebook div {
    display: inline-block;
    position: absolute;
    left: 8px;
    width: 16px;
    background: var(--main-color-one);
    animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.lds-facebook div:nth-child(1) {
    left: 8px;
    animation-delay: -0.24s;
}

.lds-facebook div:nth-child(2) {
    left: 32px;
    animation-delay: -0.12s;
}

.lds-facebook div:nth-child(3) {
    left: 56px;
    animation-delay: 0;
}

@keyframes lds-facebook {
    0% {
        top: 8px;
        height: 64px;
    }

    50%,
    100% {
        top: 24px;
        height: 32px;
    }
}

/* style 04 */
.lds-heart {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    transform: rotate(45deg);
    transform-origin: 40px 40px;
}

.lds-heart div {
    top: 32px;
    left: 32px;
    position: absolute;
    width: 32px;
    height: 32px;
    background: var(--main-color-one);
    animation: lds-heart 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.lds-heart div:after,
.lds-heart div:before {
    content: " ";
    position: absolute;
    display: block;
    width: 32px;
    height: 32px;
    background: var(--main-color-one);
}

.lds-heart div:before {
    left: -24px;
    border-radius: 50% 0 0 50%;
}

.lds-heart div:after {
    top: -24px;
    border-radius: 50% 50% 0 0;
}

@keyframes lds-heart {
    0% {
        transform: scale(0.95);
    }

    5% {
        transform: scale(1.1);
    }

    39% {
        transform: scale(0.85);
    }

    45% {
        transform: scale(1);
    }

    60% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(0.9);
    }
}

/* style 05*/
.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid var(--main-color-one);
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: var(--main-color-one) transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*  style 06 */
.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--main-color-one);
    margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* style 07 */
.lds-default {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-default div {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--main-color-one);
    border-radius: 50%;
    animation: lds-default 1.2s linear infinite;
}

.lds-default div:nth-child(1) {
    animation-delay: 0s;
    top: 37px;
    left: 66px;
}

.lds-default div:nth-child(2) {
    animation-delay: -0.1s;
    top: 22px;
    left: 62px;
}

.lds-default div:nth-child(3) {
    animation-delay: -0.2s;
    top: 11px;
    left: 52px;
}

.lds-default div:nth-child(4) {
    animation-delay: -0.3s;
    top: 7px;
    left: 37px;
}

.lds-default div:nth-child(5) {
    animation-delay: -0.4s;
    top: 11px;
    left: 22px;
}

.lds-default div:nth-child(6) {
    animation-delay: -0.5s;
    top: 22px;
    left: 11px;
}

.lds-default div:nth-child(7) {
    animation-delay: -0.6s;
    top: 37px;
    left: 7px;
}

.lds-default div:nth-child(8) {
    animation-delay: -0.7s;
    top: 52px;
    left: 11px;
}

.lds-default div:nth-child(9) {
    animation-delay: -0.8s;
    top: 62px;
    left: 22px;
}

.lds-default div:nth-child(10) {
    animation-delay: -0.9s;
    top: 66px;
    left: 37px;
}

.lds-default div:nth-child(11) {
    animation-delay: -1s;
    top: 62px;
    left: 52px;
}

.lds-default div:nth-child(12) {
    animation-delay: -1.1s;
    top: 52px;
    left: 62px;
}

@keyframes lds-default {

    0%,
    20%,
    80%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }
}

/* style 08 */
.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--main-color-one);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

/* style 09 */
.lds-grid {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-grid div {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--main-color-one);
    animation: lds-grid 1.2s linear infinite;
}

.lds-grid div:nth-child(1) {
    top: 8px;
    left: 8px;
    animation-delay: 0s;
}

.lds-grid div:nth-child(2) {
    top: 8px;
    left: 32px;
    animation-delay: -0.4s;
}

.lds-grid div:nth-child(3) {
    top: 8px;
    left: 56px;
    animation-delay: -0.8s;
}

.lds-grid div:nth-child(4) {
    top: 32px;
    left: 8px;
    animation-delay: -0.4s;
}

.lds-grid div:nth-child(5) {
    top: 32px;
    left: 32px;
    animation-delay: -0.8s;
}

.lds-grid div:nth-child(6) {
    top: 32px;
    left: 56px;
    animation-delay: -1.2s;
}

.lds-grid div:nth-child(7) {
    top: 56px;
    left: 8px;
    animation-delay: -0.8s;
}

.lds-grid div:nth-child(8) {
    top: 56px;
    left: 32px;
    animation-delay: -1.2s;
}

.lds-grid div:nth-child(9) {
    top: 56px;
    left: 56px;
    animation-delay: -1.6s;
}

@keyframes lds-grid {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* style 10 */
.lds-hourglass {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-hourglass:after {
    content: " ";
    display: block;
    border-radius: 50%;
    width: 0;
    height: 0;
    margin: 8px;
    box-sizing: border-box;
    border: 32px solid var(--main-color-one);
    border-color: var(--main-color-one) transparent var(--main-color-one) transparent;
    animation: lds-hourglass 1.2s infinite;
}

@keyframes lds-hourglass {
    0% {
        transform: rotate(0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    50% {
        transform: rotate(900deg);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    100% {
        transform: rotate(1800deg);
    }
}

/* style 11 */
.lds-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ripple div {
    position: absolute;
    border: 4px solid var(--main-color-one);
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes lds-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}

/* style 12 */
.lds-spinner {
    color: var(--main-color-one);
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-radius: 20%;
    background: var(--main-color-one)
}

.lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}

@keyframes lds-spinner {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* feedback page */
.ratings_list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ratings_list li.selected {
    background-color: var(--main-color-two);
    color: #fff;
    font-weight: 600;
}

.ratings_list li {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 2px solid #e2e2e2;
    cursor: pointer;
}

.teastimonial-item-09 {
    margin-bottom: 60px;
    background-color: #fff;
}

.teastimonial-item-09 .bottom-content .ratings {
    margin: 0;
    padding: 0;
    list-style: none;
}

.teastimonial-item-09 .bottom-content .ratings li {
    display: inline-block;
    color: #F2B827;
}

.teastimonial-item-09 .clients-details .content .name {
    font-size: 21px;
    font-weight: 700;
    color: #313131;
    line-height: 28px;
    margin-bottom: 0px;
}

.teastimonial-item-09 .bottom-content p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
    margin-top: 10px;
    font-style: italic;
    color: #616161;
}

.single-gallery-image {
    /* height: 250px !important; */
    overflow: hidden !important;
    position: relative;
    margin-bottom: 30px;
}

.single-gallery-image .img-hover {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    visibility: hidden;
    opacity: 0;
    transition: 300ms all;
}

.single-gallery-image .img-hover a {
    transition: 300ms all;
}

.single-gallery-image .img-hover a:hover {
    color: var(--main-color-one);
    transform: scale(1.3);
}

.single-gallery-image:hover .img-hover {
    visibility: visible;
    opacity: 1;
}

/* mega menu */

.xg_mega_menu_wrapper {
    max-width: 1140px;
    width: calc(100vw - 180px);
    box-sizing: border-box;
    position: fixed;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    box-sizing: border-box;
    border-radius: 5px;
    overflow: hidden;
    z-index: 9999;
    background-color: #fff;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .06);
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    top: 130px;
}

.single-blog-grid-02 {
    display: inline-block;
}

.xg-mega-menu-container {
    padding: 40px;
}

.xg-mega-menu-single-column-wrap .mega-menu-title {
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.xg-mega-menu-single-column-wrap {
    text-align: left;
}

.xg-mega-menu-single-column-wrap ul {
    margin: 0;
    padding: 0;
}

.xg-mega-menu-single-column-wrap ul li {
    display: block !important;
    width: 100%;
    line-height: 30px !important;
    margin-left: 0 !important;
    font-weight: 400 !important;
}

.xg-mega-menu-single-column-wrap ul li a:hover {
    color: var(--main-color-one) !important;
}

.xg-mega-menu-single-column-wrap ul li a {
    color: var(--paragraph-color) !important;
    transition: 300ms all;
}

.xg-mega-menu-single-column-wrap ul li.single-mega-menu-product-item {
    display: flex !important;
    align-self: flex-start;
    margin-bottom: 20px;
}

.xg-mega-menu-single-column-wrap ul .single-mega-menu-product-item .thumbnail {
    max-width: 80px;
    margin-right: 15px;
}

.xg-mega-menu-single-column-wrap ul .single-mega-menu-product-item .title {
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    transition: 300ms all;
}

.xg-mega-menu-single-column-wrap ul .single-mega-menu-product-item .title:hover {
    color: var(--main-color-one);
}

.xg-mega-menu-single-column-wrap ul .single-mega-menu-product-item .content .price-wrap {
    font-size: 14px;
    line-height: 26px;
    font-weight: 700;
}

.xg-mega-menu-single-column-wrap ul .single-mega-menu-product-item .content .price-wrap .price {
    color: var(--heading-color);
    margin-right: 8px;
}

.xg_mega_menu_wrapper.product_mega_menu .xg-mega-menu-container {
    padding-bottom: 20px;
}

.single-donation-mega-menu-item {
    display: flex;
    align-self: flex-start;
    margin-bottom: 20px;
}

.single-donation-mega-menu-item .thubmnail {
    margin-right: 20px;
}

.single-donation-mega-menu-item .title {
    font-size: 16px;
    text-align: left;
    font-weight: 600;
    transition: 300ms all;
}

.single-donation-mega-menu-item .thumbnail {
    margin-right: 20px;
    min-width: 100px;
}

.single-donation-mega-menu-item .content .goal {
    display: flex;
    justify-content: space-between;
}

.single-donation-mega-menu-item .content {
    padding-right: 10px;
    display: flex;
    flex-direction: column;
}

.single-donation-mega-menu-item .title:hover {
    color: var(--main-color-one);
}

.single-donation-mega-menu-item .content .goal h4 {
    font-size: 12px;
    line-height: 15px;
    font-weight: 700;
    color: var(--paragraph-color);
}

.single-donation-mega-menu-item .content .boxed-btn {
    display: inline-block;
    background-color: var(--main-color-one);
    line-height: 26px;
    border-radius: 5px;
    color: #fff !important;
    font-size: 14px;
    margin-top: 10px
}

.single-donation-mega-menu-item .content .boxed-btn:hover {
    background-color: var(--main-color-two);
}

.xg_mega_menu_wrapper.donation_mega_menu .xg-mega-menu-container {
    padding-bottom: 20px;
}


/* popup builder style */
/* popup builder style */

.nx-popup-backdrop {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    content: '';
    z-index: 1;
    height: 100%;
    transition: 300ms all;
    visibility: hidden;
    opacity: 0;
}

.nx-popup-backdrop.show {
    visibility: visible;
    opacity: 1;
}

.nx-popup-wrapper.show {
    visibility: visible;
    opacity: 1;
}

.nx-popup-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
}

.only-image-modal .nx-modal-inner-content-wrapper {
    width: 700px;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.nx-popup-wrapper.notice-modal .nx-modal-inner-content-wrapper {
    background-image: url("../img/popup/notice-popup-bg.png");
}

.nx-modal-inner-content-wrapper {
    width: 700px;
    background-color: #fff;
    padding: 40px;
    position: relative;
    background-position: center;
    height: 400px;
}

.nx-popup-wrapper.notice-modal .nx-modal-inner-content-wrapper .nx-popup-close {
    background-color: #fff;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}

.nx-modal-inner-content-wrapper .nx-popup-close {
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 20px;
    line-height: 20px;
    color: #000;
    cursor: pointer;
}

.notice-modal .nx-modal-header .title {
    display: inline-block;
    background-color: red;
    padding: 10px 20px;
    border-radius: 2px;
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.notice-modal .nx-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.notice-modal .nx-modal-content {
    text-align: center;
}

.notice-modal .nx-modal-content p {
    color: #444;
    font-size: 18px;
    line-height: 28px;
}

.notice-modal .nx-modal-content .btn-wrapper {
    margin-top: 30px;
}

.notice-modal .nx-modal-content .btn-wrapper .btn-boxed {
    display: inline-block;
    padding: 10px 30px;
    background-color: rebeccapurple;
    color: #fff;
    border-radius: 3px;
    font-weight: 600;
    transition: 300ms all;
}

.notice-modal .nx-modal-content .btn-wrapper .btn-boxed:hover {
    background-color: beige;
    color: #fff;
}

/* notice popup */

.notice-modal-content-wrapper {
    text-align: left;
}

.notice-modal-content-wrapper .right-side-content {
    max-width: 320px;
}

.nx-popup-wrapper.notice-modal .nx-modal-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%
}

.notice-modal-content-wrapper .right-side-content .title {
    font-size: 50px;
    line-height: 55px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.notice-modal-content-wrapper .right-side-content p {
    font-size: 18px;
    line-height: 34px;
    color: rgba(255, 255, 255, .8);
}

/* promotional popup */
.promotional-modal-content-wrapper .left-content-warp img {
    max-width: 400px;
}

.promotional-modal-content-wrapper .left-content-warp {
    width: 50%;
    margin-right: 20px;
    text-align: left;
}

.promotional-modal-content-wrapper {
    display: flex;
    align-self: flex-start;
}

.promotional-modal-content-wrapper .right-content-warp {
    display: flex;
    align-items: center;
}

.promotional-modal-content-wrapper .right-content-warp .title {
    font-size: 60px;
    line-height: 70px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--main-color-two);
}

.promotional-modal-content-wrapper .right-content-warp p {
    font-size: 18px;
    line-height: 28px;
    color: #636363;
}

.promotional-modal-content-wrapper .right-content-warp .btn-boxed {
    display: inline-block;
    border: none;
    background-color: var(--main-color-two);
    padding: 8px 30px;
    border-radius: 5px;
    margin-top: 20px;
    color: #fff;
    font-weight: 600;
    transition: 300ms all;
}

.promotional-modal-content-wrapper .right-content-warp .btn-boxed:hover {
    background-color: var(--main-color-one);
    color: #fff;
}

.nx-popup-wrapper.promotion-modal .nx-modal-inner-content-wrapper {
    padding: 30px;
}

/* discount popup */
.nx-popup-wrapper.discount-modal .nx-modal-inner-content-wrapper {
    padding: 20px;
}

.nx-popup-wrapper.discount-modal {
    padding: 30px;
}

.discount-modal-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-self: flex-start;
}

.discount-modal-content-wrapper .left-content-wrap {
    width: 400px;
    margin-right: 20px;
}

.discount-modal-content-wrapper .left-content-warp {
    width: 330px;
}

.discount-modal-content-wrapper .right-content-warp {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discount-modal-content-wrapper .right-content-warp .title {
    font-size: 50px;
    line-height: 60px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--main-color-two);
}

.discount-modal-content-wrapper .right-content-warp p {
    font-size: 18px;
    line-height: 28px;
    color: #656565;
}

.discount-modal-content-wrapper .right-content-warp .btn-boxed {
    display: inline-block;
    background-color: var(--main-color-two);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 25px;
    border-radius: 5px;
    margin-top: 20px;
    transition: 300ms all;
}

.discount-modal-content-wrapper .right-content-warp .btn-boxed:hover {
    background-color: var(--main-color-one);
}

.discount-modal-content-wrapper #countdown {
    display: flex;
}

.discount-modal-content-wrapper .nx-singular-countdown-item {
    width: calc(100% / 4 - 10px);
    background-color: var(--main-color-one);
}

.discount-modal-content-wrapper .nx-singular-countdown-item+.nx-singular-countdown-item {
    margin-left: 10px;
}

.discount-modal-content-wrapper .nx-singular-countdown-item .time {
    display: block;
    font-size: 35px;
    font-weight: 700;
    line-height: 45px;
    color: #fff;
    margin-bottom: 0px;
}

.discount-modal-content-wrapper .nx-singular-countdown-item {
    text-align: center;
}

.discount-modal-content-wrapper .countdown-wrapper {
    margin-top: 20px;
}

.discount-modal-content-wrapper .nx-singular-countdown-item .label {
    display: block;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

/* search popup */

.search-popup.show .search-popup-inner-wrapper {
    visibility: visible;
    opacity: 1;
}

.search-popup .search-popup-inner-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
}

.search-popup-inner-wrapper .search-form-warp {
    width: 600px;
    position: relative;
}


.search-popup-inner-wrapper .search-form-warp .search-popup-close-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: var(--main-color-one);
    text-align: center;
    line-height: 30px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.search-popup-inner-wrapper .search-form-warp {
    padding: 80px 40px;
    background-color: #fff;
}

.search-popup-inner-wrapper .search-form-warp {
    display: flex;
    justify-content: space-evenly;
}

.search-popup-inner-wrapper .search-form-warp .form-group .form-control {
    border: 1px solid #e2e2e2;
    border-radius: 3px;
    height: 45px;
    font-size: 14px;
    padding: 0 10px;
}

.search-popup-inner-wrapper .search-form-warp .form-group select:focus {
    outline: none;
    box-shadow: none;
}

.search-popup-inner-wrapper .search-form-warp button {
    display: inline-block;
    border: none;
    height: 45px;
    width: 50px;
    border-radius: 3px;
    color: #fff;
    background-color: var(--main-color-two);
    transition: 300ms all;
}

.search-popup-inner-wrapper .search-form-warp button:hover {
    background-color: var(--main-color-one);
}

.search-popup-inner-wrapper .search-form-warp .form-group {
    margin-bottom: 0;
}

.search-popup-inner-wrapper .search-form-warp .form-group {
    width: calc(100% / 3);
}

.payment-gateway-wrapper ul li {
    min-width: 80px;
    margin: 5px;
}

.order-confirm-area .form-group.manual_payment_transaction_field .label,
.cart-total-wrap .form-group.manual_payment_transaction_field .label,
.order-tab-wrap .form-group.manual_payment_transaction_field .label {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.order-confirm-area .form-group.manual_payment_transaction_field .form-control,
.cart-total-wrap .form-group.manual_payment_transaction_field .form-control,
.order-tab-wrap .form-group.manual_payment_transaction_field .form-control {
    border: 1px solid #e2e2e2;
    font-size: 14px;
}

.order-confirm-area.form-group.manual_payment_transaction_field .help-info,
.cart-total-wrap .form-group.manual_payment_transaction_field .help-info,
.order-tab-wrap .form-group.manual_payment_transaction_field .help-info {
    margin-top: 20px;
    display: block;
}

.single-donor-info {
    display: flex;
    align-self: self-start;
}

.single-donor-info .thumb {
    margin-right: 20px;
}

.single-donor-info .content .title {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    margin-bottom: 0;
}

.single-donor-info .content .amount {
    font-size: 14px;
    font-weight: 700;
    color: var(--main-color-two);
}

.single-donor-info .content {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.single-donor-info {
    min-height: 80px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .2);
    padding: 20px;
    margin-bottom: 20px;
}

section.donor-list {
    margin-bottom: 10px;
}

.user-dashboard-card.style-01 {
    margin-bottom: 30px;
}

.single-contact-item .content .details {
    word-break: break-word;
}

.donation_wrapper .payment-gateway-wrapper ul li {
    background-color: #fff;
}

.user-dashboard-wrapper>ul .mobile_nav {
    display: none;
}

.single-what-we-cover-item .img-icon {
    margin-bottom: 30px;
}

/* new added after version 1.9 */
.user-dahsboard-order-info-wrap .title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
}

.user-dahsboard-order-info-wrap small {
    font-size: 14px;
}

.alert-small {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 5px;
}

small {
    margin-bottom: 10px;
}

.small-btn.btn-boxed {
    padding: 5px 20px;
}

.btn-small {
    padding: 3px 20px;
}

.account-form .submit-btn {
    width: auto;
}

.account-form .submit-btn:focus {
    outline: none;
}

#langchange option {
    color: #000;
}

.order-invoice-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    background-color: #f3f3f3f3;
    padding: 20px;
}

.order-invoice-wrapper .order_number {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 34px;
    font-weight: 700;
}

.payment-gateway-wrapper ul {
    flex-wrap: wrap;
}

.billing-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.single-events-list-item.event-order-success-page {
    display: block;
}

.single-events-list-item.event-order-success-page .thumb {
    margin: 0;
    margin-bottom: 40px;
}

.single-events-list-item.event-order-success-page .thumb img {
    width: 100%;
}

.counterdown-wrap.event-page #event_countdown {
    display: flex;
    margin-bottom: 30px;
}

.counterdown-wrap.event-page #event_countdown>div {
    width: calc(100% / 4);
    background-color: var(--main-color-one);
    margin: 5px;
    text-align: center;
    padding: 10px 10px;
}

.counterdown-wrap.event-page #event_countdown>div .label {
    display: block;
    text-transform: capitalize;
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    font-weight: 500;
    line-height: 20px;
}

.counterdown-wrap.event-page #event_countdown>div .time {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
}

.all-donor-list .title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.all-donor-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.all-donor-list li+li {
    margin-top: 15px;
}

.all-donor-list {
    background-color: #f5f5f5;
    margin-top: 30px;
    padding: 30px;
}

.single-donor .content {
    flex: 1;
}

.single-donor {
    display: flex;
    align-self: flex-start;
    width: 100%;
}

.single-donor .icon {
    margin-right: 20px;
    height: 50px;
    width: 50px;
    line-height: 52px;
    text-align: center;
    background-color: #82b782;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
}

.single-donor .content .dtitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 0;
}

.single-donor .content .bottom-part {
    display: flex;
    justify-content: space-between;
}

.single-donor .content .bottom-part {
    font-size: 12px;
    font-weight: 600;
    margin-top: 6px;
}

.product-orders-summery-warp {
    text-align: left;
}

.ordered-product-summery {
    text-align: left;
}

.ordered-product-summery .title {
    font-size: 24px;
    line-height: 34px;
}

.product-info-wrap {
    text-align: left;
}

.product-info-wrap .product-title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}

.product-info-wrap .pdetails {
    display: block;
}

.product-orders-summery-warp .extra-data ul li {
    text-transform: capitalize;
}

.product-orders-summery-warp .extra-data ul li strong {
    font-weight: 700;
    color: var(--heading-color);
}

.job-apply-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
}

.live_chat-color:hover {
    color: #ffff !important;
}

.scroll_plan_section {
    position: relative;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
    /* max-width: 100%; */
    outline: none;
    /* padding: 0 10px !important; */
    /* direction: ltr; */
    /* text-align: center; */
}

.scroll_plan_section::-webkit-scrollbar {
    width: 6px;
}

.scroll_plan_section::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.3) !important;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.scroll_plan_section::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: linear-gradient(black) !important;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

.scroll_plan_section::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(255, 0, 0, 0.4);
}

.scroll_plan_section::-webkit-scrollbar {
    width: 6px;
}

.scroll_plan_section::-webkit-scrollbar-track {
    border-radius: 50px !important;
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.scroll_plan_section::-webkit-scrollbar-thumb {
    border-radius: 50px !important;
    background: var(--main-color-one) !important;
}

.scroll_plan_section::-webkit-scrollbar-thumb:hover {
    background: var(--bg-color) !important;
}

.scroll_section {
    border-bottom: 1px solid #989898;
    margin: 20px 15px;
}

.plan_menu {
    /* color: #000; */
    padding: 6px 10px;
    font-weight: 700;
}

.plan_ul>li {
    padding: 6px 10px;
    position: relative;
    text-align: center;
    display: inline-block;
}

.plan_menu:hover {
    color: var(--main-color-one);
    border-bottom: 2px solid transparent;
    background-color: rgba(187, 187, 187, 0);
}

.plan_menu.active {
    color: white;
    border-bottom: 2px solid var(--main-color-one);
    background-color: rgba(187, 187, 187, 0);
}

.plan_ul {
    text-align: center;
    display: block;
}

.bottom_banner_area {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}

.bottom_banner_area .title {
    font-weight: 800;
}

.bottom_btn_1.btn.btn-primary,
.bottom_btn_3.btn.btn-primary,
.bottom_btn_4.btn.btn-primary {
    width: 100%;
    margin: 8px 8px;
    padding: 8px;
    background-color: var(--main-color-one);
    /* border-color: var(--main-color-two); */
    border-color: transparent;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.bottom_btn_3.btn.btn-primary {
    width: 20% !important;
}

.bottom_btn_4.btn.btn-primary {
    width: 30% !important;
}

@media screen and (max-width: 466.98px) {

    .bottom_btn_3.btn.btn-primary,
    .bottom_btn_4.btn.btn-primary {
        width: 40% !important;
    }
}

.bottom_btn_2.btn.btn-primary {
    width: 100%;
    margin: 8px 8px;
    padding: 8px;
    background-color: #1f2021;
    border-color: #1f2021;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.plan_menu_ul {
    text-align: center;
}

a.boxed-btn.view_detail_btn {
    background-color: black;
}

a.plan_number_link {
    font-size: 18px;
    color: var(--heading-color);
    font-weight: 800;
    transition: 0.3s ease-in-out;
}

a.plan_number_link:hover {
    color: var(--main-color-one);
}

a.plan_chat_link {
    font-size: 14px;
    color: var(--heading-color);
    font-weight: 800;
}

.desktop_login_area {
    display: block;
}

.mob_login_area {
    display: none !important;
}

.service_heading {
    font-weight: 800;
}

.services_points {
    list-style: none;
    padding-left: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--paragraph-color);
}

.service_icon_point {
    margin-right: 10px;
    color: var(--main-color-one);
}

.service_bg {
    background-size: cover;
}

.service_subtitle {
    color: black;
}

.overlayfloatingform {
    background: #000000a8;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    opacity: 0;
    /* visibility: hidden; */
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.floatbutton {
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    z-index: 999999 !important;
    position: fixed;
    right: -370px;
    top: 16%;
    font-size: 0;
    width: 420px;
    /* transform: translateY(-50%); */
    z-index: 999999;
}

.btns_wrap {
    position: fixed;
    right: -6px;
}

.btns_wrap .chat_wrap {
    display: block;
    position: absolute;
    right: -225px;
    width: 280px;
    background: -moz-linear-gradient(-45deg, #0d3ba6 0%, #e61b23 100%);
    /* background: -webkit-linear-gradient(
135deg
, #fcc12d 0%,#b3830c 100%); */
    /* background: linear-gradient(to right, #0a4a82 0%, #610279 100%); */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2a3db6', endColorstr='#1169cd', GradientType=1);
    top: 0;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0px 0px 40px #00000026 !important;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 3px 0px 0px 3px;
    z-index: 9999;
    background: #fff;
    border-radius: 10px 0px 0px 10px;
}

.btns_wrap a:hover {
    text-decoration: none !important;
    right: 0px;
}

.btns_wrap .chat_wrap span.icoo,
.btns_wrap .call_wrap span.icoo {
    color: #fff;
    font-size: 18px;
    padding: 15px 20px;
    /* border-right: 1px solid #ded9d9; */
    vertical-align: middle;
    display: inline-block;
    border-radius: 10px 0px 0px 10px;
    background: var(--main-color-one);
    /* background: -moz-linear-gradient(to left, #57d8f0 0%, red 100%);
    background: -webkit-linear-gradient(to left, #57d8f0 0%, red 100%);
    background: linear-gradient(to left, #57d8f0 0%, red 100%); */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0f131d', endColorstr='#e61b23', GradientType=0);
}

.btns_wrap .chat_wrap span {
    color: #000;
    font-size: 20px;
    vertical-align: middle;
    /* background: #000; */
    padding: 15px 30px 15px 15px;
}

.btns_wrap .call_wrap span {
    color: #000;
    font-size: 20px;
    vertical-align: middle;
    /* background: #000; */
    padding: 15px 30px 15px 15px;
}

.btns_wrap .call_wrap {
    width: 280px;
    position: absolute;
    right: -225px;
    background: -moz-linear-gradient(-45deg, #0d3ba6 0%, #e61b23 100%);
    /* background: -webkit-linear-gradient(
135deg
, #fcc12d 0%,#b3830c 100%); */
    /* background: linear-gradient(to right, #0a4a82 0%, #610279 100%); */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2a3db6', endColorstr='#1169cd', GradientType=1);
    top: 63px;
    border-radius: 3px 0px 0px 3px;
    overflow: hidden;
    box-shadow: 0px 0px 40px #00000026 !important;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 9999;
    background: #fff;
    border-radius: 10px 0px 0px 10px;
}

.floatbutton .clickbutton {
    border-radius: 10px 0px 0px 10px !important;
    width: 50px;
    z-index: 999;
    height: 260px;
    cursor: pointer;

    display: inline-block;
    padding-top: 0;
    vertical-align: top;
    margin-top: 125px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    box-shadow: 0px 0px 40px #00000026;
    -webkit-box-shadow: 0px 0px 40px #00000026;
    -ms-box-shadow: 0px 0px 40px #00000026;
    -o-box-shadow: 0px 0px 40px #00000026;
    background: #0d3ba6;
    background: -moz-linear-gradient(top, #0d3ba6 0%, #e61b23 100%);
    background: -webkit-linear-gradient(top, #0d3ba6 0%, #e61b23 100%);
    background: linear-gradient(to bottom, #0d3ba6 0%, #e61b23 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#14aae7', endColorstr='#3945d7', GradientType=0);
}

.floatbutton .clickbutton .crossplus {
    position: absolute;
    display: block;
    transform: rotate(-90deg);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    left: -80px;
    white-space: pre;
    bottom: 113px;
}

.banner-form {
    /*background: #fff;*/
    padding: 30px;
    position: relative;
    /* z-index: 99999 !important; */
    border-radius: 5px;
    margin: 0;
    width: 370px;
    display: inline-block;
    /* box-shadow: 0px 0px 30px #0000001f;*/
}

.banner-form h3 {
    color: #141315;
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 700;
}

.overlayfloatingform.show {
    opacity: 1;
    visibility: visible;
}

.floatbutton.active {
    right: 0;
    z-index: 9;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.ban-form input {
    width: 100%;
    margin: 0 0 0 0;
    border: 1px solid #e5e5e5;
    background: white;
    padding: 10px 15px;
    color: gray;
    font-size: 14px;
    border-radius: 3px;
    height: 50px;
    font-weight: 400;
    outline: none !important;
    margin: 0 0 15px 0;
}

.ban-form textarea {
    width: 100%;
    border: 1px solid #e5e5e5;
    background: white;
    padding: 10px 15px;
    color: gray;
    font-size: 14px;
    border-radius: 3px;
    font-weight: 400;
    height: 120px;
    outline: none !important;
    margin: 15px 0 0px 0;
    resize: none;
}

.boxed-btn:hover {
    /* transform: translateY(-0.625rem); */
    transition: all 700ms;
    box-shadow: 0 0 8px rgba(255, 255, 255, .8);
    color: #fff;
}

.btn:hover {
    transform: translateY(-0.625rem);
    transition: all 700ms;
    color: #fff;
}

.btn_start {
    background: var(--main-color-one);
    padding: 12px 28px;
    color: white;
    font-weight: 700;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.btn_start:hover {
    background: var(--bg-color);
    box-shadow: 0 0 8px rgba(255, 255, 255, .8);
    color: white;
    font-weight: 700;
}

.btn_contacts {
    color: var(--main-color-one);
    transition: all 0.3s ease-in;
}

.btn_contacts:hover {
    color: #ffffff;
}

.order_page_plan {
    padding: 0px 16px;
}

.portfolio_section {
    /* background: linear-gradient(to left, red 0%, #57d8f0 100%); */
    background: url(../img/bg/satisfied-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.color-white {
    color: white !important;
}

.count-num {
    color: white;
}

.counterup-bg {
    background: var(--main-color-one);
}

.contact-info {
    background-color: #fefcfe !important;
}

.contact-section {
    background: #fefcfe;
}

.contact-animation {
    animation: contact-anim 10s ease-in-out 0s infinite normal forwards;
}

@keyframes contact-anim {

    0%,
    100% {
        transform: translateY(0);
    }

    10%,
    30%,
    50%,
    70% {
        transform: translateY(-8px);
    }

    20%,
    40%,
    60% {
        transform: translateY(8px);
    }

    80% {
        transform: translateY(6.4px);
    }

    90% {
        transform: translateY(-6.4px);
    }
}

.form-control {
    background-color: #fff0 !important;
}

.contact-page-form .form-group .form-control:focus {
    border-bottom: 1px solid red;
}


.grecaptcha-badge {
    right: unset !important;
}

@media only screen and (max-width: 768px) and (min-width: 0px) {
    .top-bar-inner ul li a {
        font-size: 13px;
    }

    .desktop_login_area {
        display: none !important;
    }

    .mob_login_area {
        display: inline-block !important;
    }

    /* .mobile-cart {
        display: none;
    } */

    .floatbutton {
        display: none;
    }

    .hide_mob {
        /* display: none !important; */

    }

}


/***************Banner Form Code *****************/
.banner-form {
    position: relative;
    width: 92%;
    float: left;
    z-index: 0;
}

.banner-form:before {
    position: absolute;
    top: 30px;
    left: 40px;
    width: 96%;
    height: 467px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(3px);
    border-radius: 15px;
    z-index: 0;
    content: ""
}

.banner-form {
    position: relative;
    width: 92%;
    float: left
}

.banner-form form {
    width: 92%;
    background: #fff;
    color: #000;
    position: relative;
    box-shadow: #0000003b 0 11px 92px;
    float: right;
    border-radius: 15px;
    z-index: 4;
    margin-top: 43px;
    text-align: left;
    padding: 20px
}

.banner-form form:before {
    content: "LIMITED TIME OFFER";
    background: var(--bg-color);
    padding: 5px 20px;
    font-size: 12px;
    color: #fff;
    transform: rotate(-90deg);
    position: absolute;
    left: -110px;
    top: 110px;
    letter-spacing: 2px
}

section.banner h3 {
    font-size: 25px;
    letter-spacing: 1px;
    margin: 0 0 15px;
    line-height: 41px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif !important
}

section.banner h3 i {
    font-style: normal
}

section.banner h3 strong {
    display: block
}

section.banner h3 span {
    display: block;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
    text-transform: uppercase
}

.banner-form select,
.banner-form input {
    width: 100%;
    padding: 7px 17px;
    margin-bottom: 4px;
    outline: none;
    background: #f4f4f4;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    height: 36px;
    border-radius: 10px;
    box-shadow: none;
    border: 1px solid #ebe5e5;
    color: #a79e9e;
}

.banner-form-disclaimer {
    line-height: 14px;
    font-size: 13px;
    color: var(--heading-color);
}

select.error,
input.error {
    border: 1px solid #e80101 !important;
}

.banner-form textarea {
    min-height: 80px;
    width: 100%;
    padding: 10px 17px;
    margin-bottom: 10px;
    outline: none;
    font-size: 13px;
    line-height: normal;
    color: #000;
    font-weight: 500;
    border-radius: 10px;
    border: 1px solid #ebe5e5;
    font-family: 'Poppins', sans-serif;
    background: #f4f4f4
}

.submit-btn {
    border: none;
    box-shadow: none;
    padding: 10px 40px;
    border-radius: 5px;
    text-transform: capitalize;
    font-weight: 700;
    outline: none;
    letter-spacing: 1px;
    font-size: 14px;
    width: auto;
    margin: 0 auto !important;
    display: block !important;
    color: #fff !important;
    font-weight: 500;
    background: var(--main-color-one) !important;
    border-radius: 100px;
    float: left;
    cursor: pointer;
}

label.error-label-message {
    display: none;
}

.banner-form input::placeholder {
    color: #a79e9e
}

.banner-form textarea::placeholder {
    color: #a79e9e
}

.top_service_heading {
    font-weight: 800;
    color: white;
}

.top_service_subtitle {
    color: white;
}

.top_services_points {
    list-style: none;
    padding-left: 0;
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.color-white {
    color: var(--paragraph-color);
}

.m-top {
    margin-top: 60px;
}

.bottom-border {
    border-bottom: 1px solid #ffffff36 !important;
}

.my-heading {
    font-size: calc(30px +(48 - 30)*(100vw - 270px) /(1920 - 270)) !important;
    display: block;
}

.modal-content {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(18px);
    box-shadow: 0px 10px 20px 0px red;
}

.modal-body .form-control {
    color: #ffffff;
}

.modal-body .form-control:focus {
    color: #ffffff;
    border-color: #ddd;
    box-shadow: none !important;
}

.services-points {
    padding: 10px;
    background-color: var(--paragraph-color);
    text-align: center;
    transition: 0.3s ease-in-out;
    border-radius: 6px;
    cursor: pointer;

    p {
        color: var(--bg-color);
        font-weight: 600;
        transition: 0.3s ease-in-out;
    }
}

.services-points:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px -7px black;

    p {
        color: var(--main-color-one);
    }
}

.red-border-top {
    border-top: 5px solid var(--main-color-one);
}

.top-border {
    border-top: 5px solid white;
    border-left: 5px solid white;
    border-right: 5px solid white;
}

.border-down {
    border-bottom: 5px solid red;
    border-left: 5px solid red;
    border-right: 5px solid red;
}

.fo-social-links {
    font-size: 20px !important;
}

/* ---------------------------- Blogs CSS Start ---------------------------- */

.blog-body {
    margin: 28px 1px !important;
    box-shadow: 0 16px 20px -6px rgb(0, 0, 0, 0.4);
    background-color: var(--secondary-color);
    padding: 0 !important;
}

.blog-body-img {
    width: 100%;
    border-left: 4px solid red;
}

.blog-title {
    padding: 30px 5px 5px;
}

.para-border-center {
    border-bottom: 2px solid red;
    width: 100px;
    margin: 10px auto 5px;
}

.blog-title p {
    padding: 5px !important;
    font-size: small;
    color: var(--heading-color);
    margin: 0 !important;
    line-height: normal;
}

/* -------------------------------------------------------------------------- */

.blogss a {
    color: var(--heading-color) !important;
    text-decoration: underline;
    transition: 0.2s linear;
}

.blogss a:hover {
    color: var(--main-color-one) !important;
}

.blog-btn {
    color: var(--paragraph-color);
    background-color: var(--bg-color);
    border: 1px solid var(--heading-color);
    border-radius: 50px;
    padding: 6px 12px;
    transition: 0.2s ease-in-out;
}

.blog-btn:hover {
    color: red;
    background-color: white;
    box-shadow: 0 8px 20px -1px rgba(0, 0, 0, 0.2);
}

.blogss .h5 {
    color: #001E3F !important;
    font-weight: 700;
    border-left: 3px solid #a6f5ff;
    padding-left: 5px;
    border-radius: 5px;
}

.blogss .container {
    border-radius: 10px !important;
    background-color: white;
    padding-bottom: 20px;
}

.blogss p {
    line-height: normal !important;
    color: var(--heading-color);
}

.blogss h2 {
    line-height: normal;
    margin: 15px 0 0 0;
    font-weight: inherit;
}

.blogss li {
    list-style-type: square;
    line-height: 30px;
    color: var(--heading-color);
}

.blogss li::marker {
    color: red;
}

.blogss ol.ol-num-style li {
    list-style-type: decimal !important;
}

.blogss ol li:before {
    content: '';
}

.title-img img {
    border-radius: 30px !important;
    width: 100%;
    height: auto;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.5);
}

.border1 {
    margin: 20px 0 30px;
    border-bottom: 6px solid var(--heading-color);
    width: 100%;
}

.border2 {
    margin: 20px 0;
    border-bottom: 4px solid var(--main-color-one);
    width: 350px;
}

.border-sub-main-heading {
    margin: 20px auto 30px;
    border-bottom: 4px solid #001E3F;
    width: 60%;
}

.bold-heading {
    font-size: 20px;
    font-weight: 600;
    color: #3c3c3c !important;
}

.border-seperation {
    margin-top: 30px;
    border-bottom: 6px solid transparent;
    border-image: linear-gradient(to left, #fff 1%, #00B2CA 50%, #fff 100%) 100% 0 0% 0/2px 0 2px 0 stretch;
}

.border-seperation-portion {
    margin-top: 10px;
    border-bottom: 3px solid #7dc7e7;
    width: 100%;
    margin-bottom: 15px;
}

@media only screen and (max-width: 360px) {

    .border2 {
        width: 150px;
    }
}

@media only screen and (max-width: 430px) {

    .border2 {
        width: 200px;
    }
}

.heading-related {
    margin: 0;
    padding: 0 !important;
}

.border-related-h {
    margin-top: 10px;
    border-bottom: 3px solid #001E3F;
    margin-bottom: 15px;
}

.border-related {
    margin-top: 10px;
    border-bottom: 2px solid #919191;
    margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
    .ctn-scroll {
        overflow: hidden;
        overflow-y: scroll;
        max-height: 1000px;
        border-radius: 15px !important;
    }

    .ctn-scroll img {
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 767.8px) {
    .ctn-scroll {
        overflow: visible;
        text-align: center;
    }

    .ctn-scroll img {
        width: 60%;
        height: auto;
    }
}

.ctn-scroll .ctn-scroll-link:hover .h4 {
    color: #00B2CA !important;
}

.ctn-scroll::-webkit-scrollbar {
    width: 12px;
}

.ctn-scroll::-webkit-scrollbar-track {
    border-top-right-radius: 15px !important;
    border-bottom-right-radius: 15px !important;
    background: #bee4e9 !important;
}

.ctn-scroll::-webkit-scrollbar-thumb {
    border-top-right-radius: 15px !important;
    border-bottom-right-radius: 15px !important;
    background: #001E3F !important;
}

.ctn-scroll::-webkit-scrollbar-thumb:hover {
    background: #00B2CA !important;
}

.disclaimer-link {
    text-decoration: underline !important;
    transition: 0.2s linear !important;
}

.disclaimer-link:hover {
    color: var(--main-color-one) !important;
}

/* ---------------------------- Blogs CSS End ---------------------------- */