@charset "UTF-8";
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

# Google Fonts
# Normalize
# Global Padding
# Alignments
# Clearings
# Sections
    ## Nav bar
    ## Banner Area
    ## Category area
    ## Service area
    ## Marketplace area
    ## Professional Services
    ## Seller area
    ## Blog area
    ## WIdgets
    ## Banner Inner
    ## Category Service area
    ## Details Overview
    ## Contact Map
    ## Service Overview
    ## Join area
    ## Signup area
    ## Register Step area
    ## Service Details area
    ## Blog Details
    ## Details Tag area
    ## Contact area
    ## About area
    ## Client logo area
    ## Error area
    ## Profile
    ## Dashboard area
    ## Seller Profile Details area
    ## Seller Order View
    ## Invoice area

# Elements
    ## section_title
    ## button
    ## back_top
    ## preloader
    ## Author tag
    ## Tag list
    ## Nice Select Style
    ## inner menu
    ## Pagination
    ## Overview
    ## Checkbox
    ## Multi Step Form
    ## Faq
    ## Table Css

--------------------------------------------------------------*/
/*--------------------------------------------------------------
    google fonts
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap");
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
:root {
    --main-color-one: #1DBF73;
    --main-color-two: #47C8ED;
    --main-color-three: #FF6B2C;
    --heading-color: #333333;
    --light-color: #666666;
    --extra-light-color: #999999;
    --heading-font: "Source Sans Pro", sans-serif;
    --body-font: "Roboto", sans-serif;
}

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(--extra-light-color);
    overflow-x: hidden;
    font-family: var(--body-font);
    font-size: 14px;
}

h1 {
    font-size: 60px;
    line-height: 1.0833333333;
}

h2 {
    font-size: 45px;
    line-height: 1.4444444444;
}

h3 {
    font-size: 32px;
    line-height: 1.0833333333;
}

h4 {
    font-size: 24px;
    line-height: 1.0833333333;
}

h5 {
    font-size: 20px;
    line-height: 1.2380952381;
}

h6 {
    font-size: 18px;
    line-height: 1.2380952381;
}

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

p {
    color: var(--extra-light-color);
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    margin-bottom: 0;
    line-height: 24px;
    font-size: 14px;
}

a {
    color: inherit;
    text-decoration: none;
    color: var(--extra-light-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%;
}

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

ul li {
    list-style: none;
}

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

.desktop-center {
    text-align: center;
}

/*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;
}

.common-para {
    font-size: 14px;
    line-height: 24px;
}

.common-title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    margin-bottom: 0;
}
.common-title:hover {
    color: var(--main-color-one);
}

.common-title-two {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 36px;
}

.common-title-three {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 36px;
}

.span-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--paragraph-color);
    position: relative;
    line-height: 19px;
    padding-left: 40px;
    display: inline-block;
}
.span-title::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 30px;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: var(--main-color-one);
}
.span-title.style-02 {
    padding-left: 0;
    padding-right: 10px;
}
.span-title.style-02::before {
    left: 100%;
}

.nav-style-one {
    position: relative;
}
.nav-style-one .prev-icon,
.nav-style-one .next-icon {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -17px;
    font-size: 20px;
    cursor: pointer;
    z-index: 99;
    background: #fff;
    color: var(--main-color-one);
    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;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.nav-style-one .prev-icon:hover,
.nav-style-one .next-icon:hover {
    color: #fff;
    background: var(--main-color-one);
}
@media only screen and (max-width: 375px) {
    .nav-style-one .prev-icon,
    .nav-style-one .next-icon {
        left: -12px;
    }
}
.nav-style-one .next-icon {
    left: auto;
    right: -17px;
}
@media only screen and (max-width: 375px) {
    .nav-style-one .next-icon {
        right: -12px;
    }
}
.nav-style-one.color-2 .prev-icon,
.nav-style-one.color-2 .next-icon {
    color: var(--main-color-two);
}
.nav-style-one.color-2 .prev-icon:hover,
.nav-style-one.color-2 .next-icon:hover {
    background: var(--main-color-two);
    color: #fff;
}
.nav-style-one.color-3 .prev-icon,
.nav-style-one.color-3 .next-icon {
    color: var(--main-color-three);
}
.nav-style-one.color-3 .prev-icon:hover,
.nav-style-one.color-3 .next-icon:hover {
    background: var(--main-color-three);
    color: #fff;
}

.dot-style-one.dot-02 .slick-dots li.slick-active button {
    background: var(--main-color-one);
    width: 35px;
    border-radius: 2px;
}
.dot-style-one.dot-color-02 .slick-dots li.slick-active button {
    background: var(--main-color-two);
}
.dot-style-one .slick-dots {
    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;
    margin-top: 30px;
}
.dot-style-one .slick-dots li.slick-active button {
    background: var(--main-color-one);
}
.dot-style-one .slick-dots li button {
    text-indent: -9999px;
    height: 12px;
    width: 12px;
    background: #ddd;
    border-radius: 50%;
    display: block;
    margin: 0 5px;
    border: 0;
    outline: none;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.tab-content-item {
    display: none;
}

.tab-content-item.active {
    display: block;
    -webkit-animation: 1s fade-effects;
    animation: 1s fade-effects;
}

@-webkit-keyframes fade-effects {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}
@keyframes fade-effects {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}
.facebook-bg {
    background-color: #3b5999 !important;
}

.twitter-bg {
    background-color: #55acee !important;
}

.pintarest-bg {
    background-color: #c40014 !important;
}

.youtube-bg {
    background-color: #ff1544 !important;
}

.instagram-bg {
    background: -webkit-gradient(linear, left bottom, left top, from(#fea038), color-stop(#ff8841), color-stop(#ff704e), color-stop(#ff575f), color-stop(#ff3e71), color-stop(#fa3080), color-stop(#f12690), color-stop(#e523a0), color-stop(#d12dac), color-stop(#bb37b7), color-stop(#a140bf), to(#8347c5)) !important;
    background: linear-gradient(to top, #fea038, #ff8841, #ff704e, #ff575f, #ff3e71, #fa3080, #f12690, #e523a0, #d12dac, #bb37b7, #a140bf, #8347c5) !important;
}

.linkedin-bg {
    background-color: #326DE4 !important;
}

.footer-bg {
    background-color: #F2F3F5;
}

.navbar-bg-1 {
    background: #fff;
}

.navbar-bg-2 {
    background: #F1F6FF;
}

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

.section-bg-2 {
    background-color: #F1F6FF;
}
.section-bg-3 {
    background-color: #3136B1;
}

.gradient-bg-1 {
    background: -webkit-gradient(linear, left top, right top, from(#fdf7f0), color-stop(50%, #ffe9f7), to(#efdff4));
    background: linear-gradient(90deg, #fdf7f0 0%, #ffe9f7 50%, #efdff4 100%);
}

.gradient-bg-2 {
    background: radial-gradient(circle, #fcf4fe 0%, #ebfcfe 100%);
}

.gradient-footer {
    background: linear-gradient(135deg, #fefaf4 0%, #e3dbee 100%);
}

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

.no-margin {
    margin: 0;
}

.lr-margin-150 {
    margin: 0 150px;
}

@media screen and (max-width: 991px) {
    .lr-margin-150 {
        margin: 0 30px;
    }
}
@media screen and (max-width: 575px) {
    .lr-margin-120 {
        margin: 0 0px;
    }
}
.margin-reverse {
    margin-bottom: -28px;
}

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

.margin-reverse-30 {
    margin-top: 0 !important;
}

.mt-reverse-0 {
    margin-top: 0 !important;
}

.dashboard-padding {
    padding: 45px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .dashboard-padding {
        padding: 20px 10px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .dashboard-padding {
        padding: 30px 15px;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .dashboard-padding {
        padding: 20px;
    }
}
@media only screen and (max-width: 575.98px) {
    .dashboard-padding {
        padding: 20px 1px;
    }
}

.flex-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.border-1 {
    border: 1px solid rgba(221, 221, 221, 0.5);
}
.border-1.border-2px {
    border: 2px solid rgba(221, 221, 221, 0.5);
}
.border-1.border-3px {
    border: 3px solid rgba(221, 221, 221, 0.5);
}
.border-1.border-4px {
    border: 4px solid rgba(221, 221, 221, 0.5);
}
.border-1.border-5px {
    border: 5px solid rgba(221, 221, 221, 0.5);
}

.border-bg-1 {
    border: 1px solid var(--main-color-one);
}
.border-bg-1.border-2px {
    border: 2px solid var(--main-color-one);
}
.border-bg-1.border-3px {
    border: 3px solid var(--main-color-one);
}
.border-bg-1.border-4px {
    border: 4px solid var(--main-color-one);
}
.border-bg-1.border-5px {
    border: 3px solid var(--main-color-one);
}

.border-bg-2 {
    border: 1px solid var(--main-color-two);
}
.border-bg-2.border-2px {
    border: 2px solid var(--main-color-two);
}
.border-bg-2.border-3px {
    border: 3px solid var(--main-color-two);
}
.border-bg-2.border-4px {
    border: 4px solid var(--main-color-two);
}
.border-bg-2.border-5px {
    border: 3px solid var(--main-color-two);
}

.border-bg-3 {
    border: 1px solid var(--main-color-three);
}
.border-bg-3.border-2px {
    border: 2px solid var(--main-color-three);
}
.border-bg-3.border-3px {
    border: 3px solid var(--main-color-three);
}
.border-bg-3.border-4px {
    border: 4px solid var(--main-color-three);
}
.border-bg-3.border-5px {
    border: 3px solid var(--main-color-three);
}

@media (min-width: 320px) and (max-width: 991.98px) {
    .contents.margin-top-60 {
        margin-top: 40px;
    }
}
@media only screen and (max-width: 375px) {
    .contents.margin-top-60 {
        margin-top: 30px;
    }
}

@media (min-width: 320px) and (max-width: 991.98px) {
    .btn-wrapper.margin-top-50 {
        margin-top: 40px;
    }
}
@media only screen and (max-width: 375px) {
    .btn-wrapper.margin-top-50 {
        margin-top: 30px;
    }
}

@media (min-width: 300px) and (max-width: 991px) {
    .body-overlay {
        position: fixed;
        height: 100vh;
        width: 100%;
        top: 0;
        left: 100%;
        z-index: -1;
        visibility: hidden;
        opacity: 0;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
    }
    .body-overlay.active {
        visibility: visible;
        opacity: 1;
        z-index: 9;
        border-radius: 0;
        left: 0;
    }
}
.btn-wrapper button {
    outline: none;
}
.btn-wrapper button:focus {
    outline: none;
}

.overlays {
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
}
.overlays.active {
    visibility: visible;
    opacity: 1;
    left: 0;
    z-index: 4;
}

.nicescroll-rails {
    background: none;
}

.nicescroll-cursors {
    background-color: var(--extra-light-color) !important;
    width: 4px !important;
    border: 0 !important;
    margin-right: 3px;
}

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

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

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

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

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

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

.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;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .padding-top-70 {
        padding-top: 40px;
    }
}

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

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

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

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

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

.padding-top-100 {
    padding-top: 100px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .padding-top-100 {
        padding-top: 70px;
    }
}

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

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

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

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

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

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

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

.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;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .padding-bottom-70 {
        padding-bottom: 40px;
    }
}

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

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

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

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

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

.padding-bottom-100 {
    padding-bottom: 100px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .padding-bottom-100 {
        padding-bottom: 70px;
    }
}

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

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

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

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

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

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

.padding-bottom-140 {
    padding-bottom: 140px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .padding-bottom-140 {
        padding-bottom: 70px;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

.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-35 {
    margin-top: 35px;
}

.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-top-110 {
    margin-top: 110px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/*----------------------------------------------
    # Nav bar
----------------------------------------------*/
.white .click_show_icon {
    color: rgba(255, 255, 255, 0.8);
}

.click_show_icon {
    position: absolute;
    right: 60px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 30px;
    color: var(--heading-color);
    display: none;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .click_show_icon {
        display: block;
    }
}

.mobile-logo {
    display: none;
}

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

    .desktop-logo {
        display: none !important;
    }
}
.navbar-area.navbar-border .nav-container {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.navbar-area.nav-absolute {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0px;
    z-index: 9;
}
.navbar-area.navbar-two .nav-container .nav-right-content .info-bar-item .icon .single-icon {
    color: var(--heading-color);
}
.navbar-area.navbar-two .nav-container .nav-right-content .info-bar-item-two .author-nav-content .title {
    color: var(--heading-color);
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .navbar-area.navbar-two .nav-container .navbar-collapse.show .navbar-nav {
        background: #F1F6FF;
    }
}
.navbar-area.navbar-two .nav-container .navbar-collapse .navbar-nav li {
    color: var(--light-color);
}
.navbar-area.navbar-two .nav-container .navbar-collapse .navbar-nav li.current-menu-item {
    color: var(--heading-color);
    background: none;
}
.navbar-area.navbar-two .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    background-color: #fff;
    color: var(--heading-color);
}
.navbar-area.navbar-two .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
    color: #fff;
}
.navbar-area.navbar-two .nav-container .navbar-collapse .navbar-nav li a:hover {
    background: none;
}
.navbar-area.color-two .nav-container .nav-right-content .info-bar-item .icon:hover .single-icon {
    color: var(--main-color-two);
}
.navbar-area.color-two .nav-container .nav-right-content .info-bar-item .icon .single-icon {
    color: var(--heading-color);
}
.navbar-area.color-two .nav-container .nav-right-content .info-bar-item-two .author-thumb img {
    border-color: var(--main-color-two);
}
.navbar-area.color-two .nav-container .nav-right-content .info-bar-item-two .author-nav-content .title {
    color: var(--heading-color);
}
.navbar-area.color-two .nav-container .nav-right-content .info-bar-item-two .author-nav-content .title:hover {
    color: var(--main-color-two);
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .navbar-area.color-two .nav-container .navbar-collapse.show .navbar-nav {
        background: #F1F6FF;
    }
}
.navbar-area.color-two .nav-container .navbar-collapse .navbar-nav li {
    color: var(--light-color);
}
.navbar-area.color-two .nav-container .navbar-collapse .navbar-nav li:hover > a {
    color: var(--main-color-two);
}
.navbar-area.color-two .nav-container .navbar-collapse .navbar-nav li.current-menu-item {
    color: var(--heading-color);
    background: none;
}
.navbar-area.color-two .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    border-bottom: 4px solid var(--main-color-two);
}
.navbar-area.color-two .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover > a {
    background-color: var(--main-color-two);
    color: #fff;
}
.navbar-area.color-two .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    background-color: #fff;
    color: var(--heading-color);
}
.navbar-area.color-two .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
    background-color: var(--main-color-two);
    color: #fff;
}
.navbar-area.color-two .nav-container .navbar-collapse .navbar-nav li a:hover {
    color: var(--main-color-two);
    background: none;
}
.navbar-area.color-three .nav-container .nav-right-content .info-bar-item .icon:hover .single-icon {
    color: var(--main-color-three);
}
.navbar-area.color-three .nav-container .nav-right-content .info-bar-item .icon .single-icon {
    color: var(--heading-three);
}
.navbar-area.color-three .nav-container .nav-right-content .info-bar-item-two .author-thumb img {
    border-color: var(--main-color-three);
}
.navbar-area.color-three .nav-container .nav-right-content .info-bar-item-two .author-nav-content .title {
    color: var(--heading-color);
}
.navbar-area.color-three .nav-container .nav-right-content .info-bar-item-two .author-nav-content .title:hover {
    color: var(--main-color-three);
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .navbar-area.color-three .nav-container .navbar-collapse.show .navbar-nav {
        background: #F1F6FF;
    }
}
.navbar-area.color-three .nav-container .navbar-collapse .navbar-nav li {
    color: var(--light-color);
}
.navbar-area.color-three .nav-container .navbar-collapse .navbar-nav li:hover > a {
    color: var(--main-color-three);
}
.navbar-area.color-three .nav-container .navbar-collapse .navbar-nav li.current-menu-item {
    color: var(--heading-color);
    background: none;
}
.navbar-area.color-three .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    border-bottom: 4px solid var(--main-color-three);
}
.navbar-area.color-three .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover > a {
    background-color: var(--main-color-three);
    color: #fff;
}
.navbar-area.color-three .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    background-color: #fff;
    color: var(--heading-color);
}
.navbar-area.color-three .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
    background-color: var(--main-color-three);
    color: #fff;
}
.navbar-area.color-three .nav-container .navbar-collapse .navbar-nav li a:hover {
    color: var(--main-color-three);
    background: none;
}
.navbar-area .nav-container {
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 30px 0px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .navbar-area .nav-container {
        padding: 20px 0;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar-area .nav-container {
        padding: 15px 0;
    }
}
.navbar-area .nav-container .logo-wrapper .logo img {
    max-width: 200px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar-area .nav-container .logo-wrapper .logo img {
        max-width: 160px;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .navbar-area .nav-container .logo-wrapper .logo img {
        max-width: 150px;
    }
}
.navbar-area .nav-container .nav-right-content {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .navbar-area .nav-container .nav-right-content {
        visibility: hidden;
        opacity: 0;
        margin-left: auto !important;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        margin-top: -40px !important;
        background: transparent;
    }
    .navbar-area .nav-container .nav-right-content.active {
        visibility: visible;
        opacity: 1;
        margin-top: 10px !important;
    }
}
.navbar-area .nav-container .nav-right-content .info-bar-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.navbar-area .nav-container .nav-right-content .info-bar-item .icon {
    font-size: 24px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    margin-right: 20px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .navbar-area .nav-container .nav-right-content .info-bar-item .icon {
        margin-right: 10px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar-area .nav-container .nav-right-content .info-bar-item .icon {
        margin-right: 5px;
    }
}
.navbar-area .nav-container .nav-right-content .info-bar-item .icon:hover {
    color: var(--main-color-one);
}
.navbar-area .nav-container .nav-right-content .info-bar-item .icon:hover .single-icon {
    color: var(--main-color-one);
}
.navbar-area .nav-container .nav-right-content .info-bar-item .icon .single-icon {
    color: #fff;
}
.navbar-area .nav-container .nav-right-content .info-bar-item-two {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.navbar-area .nav-container .nav-right-content .info-bar-item-two .author-thumb {
    display: inline-block;
    height: 40px;
    width: 40px;
}
.navbar-area .nav-container .nav-right-content .info-bar-item-two .author-thumb img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--main-color-one);
}
.navbar-area .nav-container .nav-right-content .info-bar-item-two .author-nav-content .title {
    color: #fff;
    display: inline-block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.navbar-area .nav-container .nav-right-content .info-bar-item-two .author-nav-content .title:hover {
    color: var(--main-color-one);
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar-area .nav-container .nav-right-content .info-bar-item-two .author-nav-content .title {
        display: none;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .navbar-area .nav-container .navbar-collapse.show .navbar-nav {
        background: #000;
    }
}
.navbar-area .nav-container .navbar-collapse .navbar-nav {
    display: block;
    width: 100%;
    text-align: center;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav.desktop-center {
    text-align: center;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li {
    display: inline-block;
    font-size: 16px;
    font-family: var(--body-font);
    text-transform: capitalize;
    color: #fff;
    font-weight: 400;
    line-height: 70px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li + li {
    margin-left: 0px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .navbar-area .nav-container .navbar-collapse .navbar-nav li {
        font-size: 15px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar-area .nav-container .navbar-collapse .navbar-nav li {
        font-size: 14px;
    }
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li:hover > a {
    color: var(--main-color-one);
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.current-menu-item {
    color: var(--main-color-one);
    background: none;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
    padding-right: 0;
    position: relative;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children > a {
    padding: 10px 20px;
    position: relative;
    z-index: 0;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children > a::after {
    content: "";
    font-weight: 900;
    font-family: "Line Awesome Free";
    /* IE 9 */
    -webkit-transform: translateY(-50%);
    /* Chrome, Safari, Opera */
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    top: 1px;
    left: 4px;
    position: relative;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    position: absolute;
    text-align: left;
    min-width: 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: 992;
    border-bottom: 4px solid var(--main-color-one);
    visibility: hidden;
    opacity: 0;
    -webkit-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: 14px;
}
.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: 10px 30px;
    background-color: #fff;
    white-space: nowrap;
    color: var(--heading-color);
    -webkit-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-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu {
    left: 100%;
    top: 0px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu .sub-menu .sub-menu {
    left: auto;
    right: 100%;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu li:hover:before {
    color: #fff;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    padding: 10px 28px;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
        padding: 7px 15px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
        padding: 5px 10px;
    }
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li a:hover {
    color: var(--main-color-one);
    background: none;
}

.white .notification-icon .notification-list-wrapper {
    background: var(--heading-color) !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.white .notification-icon .notification-list-wrapper .notification-title {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.white .notification-icon .notification-list-wrapper .all-notification {
    color: #fff;
}
.white .notification-icon .notification-list-wrapper .notification-list .list {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.color-two .notification-icon.icon:hover .notification-number {
    color: var(--main-color-two);
}
.color-two .notification-icon .notification-number {
    background: var(--main-color-two);
}
.color-two .notification-icon .notification-list-wrapper .notification-list .list:hover {
    background: var(--main-color-two);
    color: #fff;
}
.color-two .notification-icon .notification-list-wrapper .notification-list .list:hover .notification-list-flex .item-icon {
    background-color: #fff;
    color: var(--main-color-two);
}
.color-two .notification-icon .notification-list-wrapper .notification-list .list .notification-list-flex .item-icon {
    background-color: var(--main-color-two);
    color: #fff;
}

.color-three .notification-icon.icon:hover .notification-number {
    color: var(--main-color-three);
}
.color-three .notification-icon .notification-number {
    background: var(--main-color-three);
}
.color-three .notification-icon .notification-list-wrapper .notification-list .list:hover {
    background: var(--main-color-three);
    color: #fff;
}
.color-three .notification-icon .notification-list-wrapper .notification-list .list:hover .notification-list-flex .item-icon {
    background-color: #fff;
    color: var(--main-color-three);
}
.color-three .notification-icon .notification-list-wrapper .notification-list .list .notification-list-flex .item-icon {
    background-color: var(--main-color-three);
    color: #fff;
}

.notification-icon {
    position: relative;
    z-index: 9;
}
.notification-icon:hover .notification-list-wrapper {
    visibility: visible;
    opacity: 1;
    top: 100%;
}
.notification-icon:hover .notification-number {
    background: #fff;
    color: var(--main-color-one);
}
.notification-icon .notification-number {
    background: var(--main-color-one);
    color: #fff;
    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;
    font-size: 9px;
    line-height: 16px;
    font-weight: 400;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    position: absolute;
    top: 0px;
    right: -7px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.notification-icon .notification-list-wrapper {
    position: absolute;
    top: 130%;
    right: 0;
    background: #fff;
    z-index: 9998;
    -webkit-box-shadow: 0 0 10px rgba(221, 221, 221, 0.2);
    box-shadow: 0 0 10px rgba(221, 221, 221, 0.2);
    width: 250px;
    background: #fff;
    padding: 20px 0;
    visibility: hidden;
    opacity: 1;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    display: block !important;
    margin-left: 0 !important;
}
@media only screen and (max-width: 575.98px) {
    .notification-icon .notification-list-wrapper {
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
    }
}
.notification-icon .notification-list-wrapper .notification-title {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    border-bottom: 1px solid rgba(221, 221, 221, 0.5);
    padding: 0px 15px 10px;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}
.notification-icon .notification-list-wrapper .all-notification {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    padding: 10px 15px 0;
    display: inline-block;
}
.notification-icon .notification-list-wrapper .notification-list {
    max-height: 250px;
    overflow-y: auto;
    padding: 0 10px 0 0;
}
.notification-icon .notification-list-wrapper .notification-list .list {
    display: block;
    padding: 5px 15px 10px;
    color: var(--heading-color);
    border-bottom: 1px solid rgba(221, 221, 221, 0.5);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    cursor: pointer;
}
.notification-icon .notification-list-wrapper .notification-list .list:hover {
    background: var(--main-color-one);
    color: #fff;
}
.notification-icon .notification-list-wrapper .notification-list .list:hover .notification-list-flex .item-icon {
    background-color: #fff;
    color: var(--main-color-one);
}
.notification-icon .notification-list-wrapper .notification-list .list .notification-list-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}
.notification-icon .notification-list-wrapper .notification-list .list .notification-list-flex .item-icon {
    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;
    height: 30px;
    width: 30px;
    font-size: 18px;
    background: var(--main-color-one);
    color: #fff;
    border-radius: 50%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.notification-icon .notification-list-wrapper .notification-list .list .notification-list-flex .notification-contents {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.notification-icon .notification-list-wrapper .notification-list .list .notification-list-flex .notification-contents .list-title {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.notification-icon .notification-list-wrapper .notification-list .list .notification-list-flex .notification-contents .list-sub {
    font-size: 14px;
    font-weight: 400;
    margin-top: 2px;
    display: block;
}

@media only screen and (max-width: 991px) {
    .navbar-area.navbar-two .nav-container {
        padding: 20px 0px;
    }
    .navbar-area .nav-container {
        position: relative;
        z-index: 0;
        min-height: 50px;
        padding: 15px 0px 25px;
    }
    .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: 0px;
        top: 50%;
        /* IE 9 */
        -webkit-transform: translateY(-50%);
        /* Chrome, Safari, Opera */
        transform: translateY(-50%);
        border: 1px solid rgba(255, 255, 255, 0.8);
        outline: none;
    }
    .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.black-color {
        border: 1px solid rgba(0, 0, 0, 0.5);
    }
    .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.black-color.active .navbar-toggler-icon::before, .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.black-color.active .navbar-toggler-icon::after {
        background: rgba(0, 0, 0, 0.5);
    }
    .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.black-color .navbar-toggler-icon {
        background: rgba(0, 0, 0, 0.5);
    }
    .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.black-color .navbar-toggler-icon::before, .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.black-color .navbar-toggler-icon::after {
        background: rgba(0, 0, 0, 0.5);
    }
    .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.active .navbar-toggler-icon {
        background: none;
    }
    .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.active .navbar-toggler-icon::before, .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.active .navbar-toggler-icon::after {
        background: rgba(255, 255, 255, 0.8);
        top: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.active .navbar-toggler-icon::after {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler .navbar-toggler-icon {
        background: rgba(255, 255, 255, 0.8);
        display: inline-block;
        width: 25px;
        height: 2px;
        margin: 10px -4px 10px;
        position: relative;
    }
    .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler .navbar-toggler-icon::before, .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler .navbar-toggler-icon::after {
        position: absolute;
        content: "";
        height: 2px;
        width: 25px;
        background: rgba(255, 255, 255, 0.8);
        top: -7px;
        left: 0;
        -webkit-transition: all 0.4s;
        transition: all 0.4s;
    }
    .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler .navbar-toggler-icon::after {
        top: auto;
        bottom: -7px;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav {
        display: block;
        margin-top: 30px;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li {
        display: block;
        text-align: left;
        line-height: 30px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
        padding: 17px 20px;
    }
    .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;
        padding-top: 10px;
    }
    .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;
        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 {
        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 rgba(255, 255, 255, 0.2);
    }
}
@media only screen and (max-width: 575px) {
    .navbar-area .nav-container {
        margin: 0 15px;
    }
    .navbar-area .nav-container .logo-wrapper .logo img {
        max-width: 140px;
    }
}
/* Banner Area  */
.banner-area {
    position: relative;
    z-index: 1;
    padding: 0;
    overflow: hidden;
}
.banner-area.home-one-banner {
    padding: 285px 0 170px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .banner-area.home-one-banner {
        padding: 180px 0 100px;
    }
}
@media only screen and (max-width: 375px) {
    .banner-area.home-one-banner {
        padding: 150px 0 80px;
    }
}
.banner-area.home-one-banner::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}
.banner-area.home-two-banner {
    padding: 140px 0 0;
}
@media only screen and (max-width: 575.98px) {
    .banner-area.home-two-banner {
        padding: 120px 0 0;
    }
}
.banner-area.home-three-banner {
    padding: 230px 0px 120px 0px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .banner-area.home-three-banner {
        padding: 200px 0 150px 0;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .banner-area.home-three-banner {
        padding: 200px 0 150px 0;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .banner-area.home-three-banner {
        padding: 150px 0 90px 0;
    }
}
@media only screen and (max-width: 575.98px) {
    .banner-area.home-three-banner {
        padding: 150px 0 70px 0;
    }
}
@media only screen and (max-width: 480px) {
    .banner-area.home-three-banner {
        padding: 140px 0 70px 0;
    }
}
.banner-area.home-four-banner {
    padding: 100px 0 0px;
}
.banner-area.home-four-banner::after {
    position: absolute;
    content: "";
    height: 120px;
    width: 100%;
    left: 0;
    bottom: 0;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(31%, rgba(254, 250, 244, 0)), to(white));
    background: linear-gradient(180deg, rgba(254, 250, 244, 0) 31%, white 100%);
    z-index: 3;
}

.banner-contents {
    position: relative;
    z-index: 9;
    padding: 0 30px;
    text-align: center;
}
@media only screen and (max-width: 575.98px) {
    .banner-contents {
        padding: 0 0;
    }
}
.banner-contents.style-02 {
    text-align: left;
    padding: 110px 0 170px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
    .banner-contents.style-02 {
        padding: 70px 0 120px;
    }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .banner-contents.style-02 {
        padding: 60px 0 90px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .banner-contents.style-02 {
        padding: 100px 0 50px;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .banner-contents.style-02 {
        padding: 20px 0 30px;
    }
}
@media only screen and (max-width: 575.98px) {
    .banner-contents.style-02 {
        padding: 0px 0 20px;
    }
}
.banner-contents.style-02 .title-top {
    color: var(--heading-color);
    padding-top: 25px;
    margin-bottom: 0;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .banner-contents.style-02 .title-top {
        padding-top: 15px;
    }
}
.banner-contents.style-02 .banner-title {
    color: var(--heading-color);
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .banner-contents.style-02 .banner-title {
        font-size: 60px;
        line-height: 70px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .banner-contents.style-02 .banner-title {
        font-size: 60px;
        line-height: 70px;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .banner-contents.style-02 .banner-title {
        line-height: 70px;
        font-size: 50px;
    }
}
@media only screen and (max-width: 575.98px) {
    .banner-contents.style-02 .banner-title {
        line-height: 60px;
        font-size: 45px;
    }
}
@media only screen and (max-width: 375px) {
    .banner-contents.style-02 .banner-title {
        line-height: 50px;
        font-size: 40px;
    }
}
.banner-contents.style-02 .banner-title:hover {
    color: var(--main-color-two);
}
.banner-contents.style-02 .banner-title .span-shape {
    position: relative;
}
.banner-contents.style-02 .banner-title .span-shape::after {
    position: absolute;
    content: "";
    bottom: -20px;
    right: 0;
    background-image: url(../img/banner/line.png);
    height: 100%;
    width: 100%;
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
    z-index: -1;
}
.banner-contents.style-02 .banner-bottom-content {
    margin-top: 40px;
}
.banner-contents.style-02 .banner-bottom-content .banner-search-form {
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    position: relative;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .banner-contents.style-02 .banner-bottom-content .banner-search-form {
        padding: 20px 15px;
    }
}
@media only screen and (max-width: 767.98px) {
    .banner-contents.style-02 .banner-bottom-content .banner-search-form {
        padding: 20px 15px;
    }
}
.banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select {
    background: none;
    font-size: 16px;
    height: 60px;
    width: unset;
    margin-right: 0;
    position: relative;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select {
        height: 50px;
        line-height: 50px;
    }
}
@media only screen and (max-width: 480px) {
    .banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select {
        margin-bottom: 0px;
    }
}
.banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select:not(:last-child) {
    padding-right: 30px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select:not(:last-child) {
        padding-right: 15px;
    }
}
@media only screen and (max-width: 767.98px) {
    .banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select:not(:last-child) {
        padding-right: 10px;
    }
}
@media only screen and (max-width: 480px) {
    .banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select:not(:last-child) {
        margin-bottom: 0px;
    }
}
.banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select:not(:first-child) {
    padding-left: 30px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select:not(:first-child) {
        padding-left: 15px;
    }
}
@media only screen and (max-width: 767.98px) {
    .banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select:not(:first-child) {
        padding-left: 10px;
    }
}
.banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select:not(:first-child)::before {
    position: absolute;
    left: 0;
    content: "";
    height: 40%;
    width: 2px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #DDDDDD;
}
@media only screen and (max-width: 480px) {
    .banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select:not(:first-child)::before {
        display: none;
    }
}
.banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select:not(:first-child) .nice-select::before {
    content: "";
}
.banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select:not(:first-child) .nice-select.open::before {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select .nice-select {
    background: none;
    font-size: 18px;
    font-weight: 500;
    color: var(--heading-color);
    height: 60px;
    line-height: 60px;
    padding-left: 0;
    padding-right: 0;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select .nice-select {
        font-size: 16px;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select .nice-select {
        height: 50px;
        line-height: 50px;
    }
}
@media only screen and (max-width: 480px) {
    .banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select .nice-select {
        margin-bottom: 10px;
    }
}
.banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select .nice-select.open::after {
    -webkit-transform: translateY(-50%) rotate(-135deg);
    transform: translateY(-50%) rotate(-135deg);
}
.banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select .nice-select:after {
    display: none;
}
.banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select .nice-select::before {
    content: "";
    font-family: "Line Awesome Free";
    font-weight: 900;
    margin-right: 10px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select .nice-select::before {
        margin-right: 5px;
    }
}
.banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select .nice-select .list {
    background: var(--main-color-two);
}
.banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select .nice-select .list .option {
    font-size: 16px;
    font-weight: 500;
}
.banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select .nice-select .list .option:hover {
    background: #fff;
    color: var(--heading-color);
}
.banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select .nice-select .list .selected {
    background: #fff;
    color: var(--heading-color);
    font-size: 16px;
}
.banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select .nice-select .list .focus {
    background: #fff;
    color: var(--heading-color);
    font-size: 16px;
}
.banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select .nice-select .nice-select-search-box {
    height: 50px;
}
.banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select .nice-select .nice-select-search {
    vertical-align: top;
}
.banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-button button {
    font-size: 18px;
    font-weight: 500;
    background: var(--main-color-two);
    width: auto;
    padding: 0 30px;
    color: #fff;
    border: 0;
    outline: none;
    height: 60px;
    padding: 0 35px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 30px;
    cursor: pointer;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-button button {
        right: 15px;
        padding: 0 30px;
    }
}
@media only screen and (max-width: 767.98px) {
    .banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-button button {
        right: 15px;
        height: 50px;
    }
}
@media only screen and (max-width: 575.98px) {
    .banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-button button {
        padding: 0 25px;
    }
}
@media only screen and (max-width: 480px) {
    .banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-button button {
        position: relative;
        margin-top: 30px;
        margin-left: 20px;
        margin-bottom: 0;
    }
}
.banner-contents.style-02 .banner-bottom-content .banner-keywords {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.banner-contents.style-02 .banner-bottom-content .banner-keywords .keyword-title {
    color: var(--heading-color);
    margin-top: 10px;
}
.banner-contents.style-02 .banner-bottom-content .banner-keywords .keyword-tag {
    padding: 0;
}
.banner-contents.style-02 .banner-bottom-content .banner-keywords .keyword-tag li {
    margin: 5px 10px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .banner-contents.style-02 .banner-bottom-content .banner-keywords .keyword-tag li {
        margin: 5px 5px;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .banner-contents.style-02 .banner-bottom-content .banner-keywords .keyword-tag li {
        margin: 5px 5px;
    }
}
.banner-contents.style-02 .banner-bottom-content .banner-keywords .keyword-tag li a {
    border-radius: 30px;
    padding: 5px 12px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border-color: rgba(0, 0, 0, 0.2);
    color: var(--extra-light-color);
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .banner-contents.style-02 .banner-bottom-content .banner-keywords .keyword-tag li a {
        padding: 5px 15px;
    }
}
.banner-contents.style-02 .banner-bottom-content .banner-keywords .keyword-tag li a:hover {
    background: var(--main-color-two);
    color: #fff;
    border-color: var(--main-color-two);
}
.banner-contents.style-03 {
    text-align: left;
    padding: 150px 0 100px 70px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
    .banner-contents.style-03 {
        padding: 0 0 0 50px;
    }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .banner-contents.style-03 {
        padding: 0;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .banner-contents.style-03 {
        padding: 70px 0 0px;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .banner-contents.style-03 {
        padding: 50px 0 0px;
    }
}
@media only screen and (max-width: 575.98px) {
    .banner-contents.style-03 {
        padding: 30px 0 0px;
    }
}
.banner-contents.style-03 .banner-title {
    font-size: 100px;
    font-weight: 700;
    line-height: 130px;
    text-transform: unset;
    color: var(--heading-color);
}
.banner-contents.style-03 .banner-title .color-three {
    color: var(--main-color-three);
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
    .banner-contents.style-03 .banner-title {
        font-size: 80px;
        line-height: 90px;
    }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .banner-contents.style-03 .banner-title {
        font-size: 70px;
        line-height: 80px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .banner-contents.style-03 .banner-title {
        font-size: 65px;
        line-height: 80px;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .banner-contents.style-03 .banner-title {
        font-size: 50px;
        line-height: 60px;
        margin: 0;
    }
}
@media only screen and (max-width: 575.98px) {
    .banner-contents.style-03 .banner-title {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 0;
    }
}
.banner-contents.style-03 .title-top {
    color: var(--heading-color);
    margin-bottom: 0;
    padding-top: 20px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .banner-contents.style-03 .title-top {
        font-size: 18px;
    }
}
.banner-contents.style-03 .banner-bottom-content {
    margin-top: 45px;
}
@media only screen and (max-width: 575.98px) {
    .banner-contents.style-03 .banner-bottom-content {
        margin-top: 30px;
    }
}
.banner-contents.style-03 .banner-search-form {
    max-width: 780px;
}
.banner-contents.style-03 .banner-search-form .banner-address-select {
    background: var(--main-color-three);
}
.banner-contents.style-03 .banner-search-form .banner-address-select .nice-select {
    background: var(--main-color-three);
}
.banner-contents.style-03 .banner-search-form .banner-address-select .nice-select .list {
    background: var(--main-color-three);
}
.banner-contents.style-03 .banner-search-form .single-input button {
    background: var(--main-color-three);
}
.banner-contents.style-03 .banner-keywords {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.banner-contents.style-03 .banner-keywords .keyword-title {
    color: var(--main-color-three);
    margin-top: 15px;
}
.banner-contents.style-03 .banner-keywords .keyword-tag li a {
    border: 1px solid #fff;
    background: #fff;
    color: var(--extra-light-color);
    border-radius: 10px;
}
.banner-contents.style-03 .banner-keywords .keyword-tag li a:hover {
    background: var(--main-color-three);
    color: #fff;
    border-color: var(--main-color-three);
}
.banner-contents .title-top {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    color: #fff;
    margin-bottom: 30px;
    display: block;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .banner-contents .title-top {
        font-size: 20px;
    }
}
@media only screen and (max-width: 767.98px) {
    .banner-contents .title-top {
        font-size: 18px;
        line-height: 26px;
    }
}
.banner-contents .banner-title {
    font-size: 80px;
    line-height: 100px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .banner-contents .banner-title {
        font-size: 60px;
        line-height: 80px;
    }
}
@media only screen and (max-width: 767.98px) {
    .banner-contents .banner-title {
        font-size: 45px;
        line-height: 60px;
    }
}
@media only screen and (max-width: 575.98px) {
    .banner-contents .banner-title {
        font-size: 40px;
        line-height: 50px;
    }
}
.banner-contents .banner-title .title-span {
    position: relative;
    color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.banner-contents .banner-title .title-span::before {
    background: var(--main-color-one);
    content: "";
    position: absolute;
    top: -2px;
    left: -10px;
    height: calc(100% + 5px);
    width: calc(100% + 20px);
    z-index: -1;
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
    border-radius: 5px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.banner-contents .banner-title:hover .title-span {
    color: var(--main-color-one);
}
.banner-contents .banner-title:hover .title-span::before {
    background: #fff;
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
}

.banner-bottom-content {
    margin-top: 80px;
}
@media only screen and (max-width: 767.98px) {
    .banner-bottom-content {
        margin-top: 50px;
    }
}
.banner-bottom-content .banner-search-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media only screen and (max-width: 480px) {
    .banner-bottom-content .banner-search-form {
        display: block;
    }
}
.banner-bottom-content .banner-search-form .banner-address-select {
    background: var(--main-color-one);
    font-size: 16px;
    height: 80px;
    width: 200px;
    font-weight: 500;
    border-radius: 10px;
    margin-right: 20px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .banner-bottom-content .banner-search-form .banner-address-select {
        height: 60px;
        line-height: 60px;
    }
}
@media only screen and (max-width: 480px) {
    .banner-bottom-content .banner-search-form .banner-address-select {
        width: 100%;
        margin-bottom: 30px;
    }
}
.banner-bottom-content .banner-search-form .banner-address-select .nice-select {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    line-height: 80px;
    font-size: 16px;
    color: #fff;
    background: var(--main-color-one);
    border: 0;
    font-size: 20px;
    font-weight: 500;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .banner-bottom-content .banner-search-form .banner-address-select .nice-select {
        height: 60px;
        line-height: 60px;
        font-size: 15px;
    }
}
@media only screen and (max-width: 480px) {
    .banner-bottom-content .banner-search-form .banner-address-select .nice-select {
        width: 100%;
    }
}
.banner-bottom-content .banner-search-form .banner-address-select .nice-select.open::after {
    -webkit-transform: translateY(-50%) rotate(-135deg);
    transform: translateY(-50%) rotate(-135deg);
}
.banner-bottom-content .banner-search-form .banner-address-select .nice-select:after {
    right: 25px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    height: 9px;
    width: 9px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    margin-top: 0;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .banner-bottom-content .banner-search-form .banner-address-select .nice-select:after {
        height: 7px;
        width: 7px;
        margin-top: -1px;
    }
}
.banner-bottom-content .banner-search-form .banner-address-select .nice-select .list {
    width: 100%;
    border-radius: 10px;
    background: var(--main-color-one);
}
.banner-bottom-content .banner-search-form .banner-address-select .nice-select .list .option {
    font-size: 16px;
    font-weight: 500;
}
.banner-bottom-content .banner-search-form .banner-address-select .nice-select .list .option:hover {
    background: #fff;
    color: var(--heading-color);
}
.banner-bottom-content .banner-search-form .banner-address-select .nice-select .list .selected {
    background: #fff;
    color: var(--heading-color);
    font-size: 16px;
}
.banner-bottom-content .banner-search-form .banner-address-select .nice-select .list .focus {
    background: #fff;
    color: var(--heading-color);
    font-size: 16px;
}
.banner-bottom-content .banner-search-form .banner-address-select .nice-select .nice-select-search-box {
    height: 50px;
}
.banner-bottom-content .banner-search-form .banner-address-select .nice-select .nice-select-search {
    vertical-align: top;
}
.banner-bottom-content .banner-search-form .single-input {
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}
.banner-bottom-content .banner-search-form .single-input .form--control {
    height: 80px;
    line-height: 80px;
    background: #fff;
    width: 100%;
    padding: 0 20px 0 70px;
    border-radius: 10px;
    border: 1px solid #fff;
    color: var(--extra-light-color);
}
.banner-bottom-content .banner-search-form .single-input .form--control::-webkit-input-placeholder {
    font-size: 16px;
    color: var(--extra-light-color);
}
.banner-bottom-content .banner-search-form .single-input .form--control::-moz-placeholder {
    font-size: 16px;
    color: var(--extra-light-color);
}
.banner-bottom-content .banner-search-form .single-input .form--control:-ms-input-placeholder {
    font-size: 16px;
    color: var(--extra-light-color);
}
.banner-bottom-content .banner-search-form .single-input .form--control::-ms-input-placeholder {
    font-size: 16px;
    color: var(--extra-light-color);
}
.banner-bottom-content .banner-search-form .single-input .form--control::placeholder {
    font-size: 16px;
    color: var(--extra-light-color);
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .banner-bottom-content .banner-search-form .single-input .form--control {
        height: 60px;
        line-height: 60px;
    }
}
@media only screen and (max-width: 575.98px) {
    .banner-bottom-content .banner-search-form .single-input .form--control {
        padding: 0 20px 0 40px;
    }
}
.banner-bottom-content .banner-search-form .single-input .icon-search {
    position: absolute;
    left: 35px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 20px;
}
@media only screen and (max-width: 575.98px) {
    .banner-bottom-content .banner-search-form .single-input .icon-search {
        left: 15px;
    }
}
.banner-bottom-content .banner-search-form .single-input button {
    position: absolute;
    right: 0;
    height: 100%;
    top: 0;
    bottom: 0;
    background: var(--main-color-one);
    color: #fff;
    font-size: 24px;
    width: 80px;
    text-align: center;
    border: 0;
    outline: none;
    cursor: pointer;
}
.banner-bottom-content .banner-keywords {
    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;
    margin-top: 25px;
}
@media only screen and (max-width: 767.98px) {
    .banner-bottom-content .banner-keywords {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}
@media only screen and (max-width: 480px) {
    .banner-bottom-content .banner-keywords {
        display: -ms-grid;
        display: grid;
    }
}
.banner-bottom-content .banner-keywords .keyword-title {
    color: var(--main-color-one);
    font-weight: 500;
    font-size: 14px;
}
@media only screen and (max-width: 767.98px) {
    .banner-bottom-content .banner-keywords .keyword-title {
        margin-top: 10px;
    }
}
@media only screen and (max-width: 480px) {
    .banner-bottom-content .banner-keywords .keyword-title {
        text-align: left;
        margin-bottom: 5px;
    }
}
.banner-bottom-content .banner-keywords .keyword-tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 10px;
}
@media only screen and (max-width: 767.98px) {
    .banner-bottom-content .banner-keywords .keyword-tag {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
@media only screen and (max-width: 480px) {
    .banner-bottom-content .banner-keywords .keyword-tag {
        margin-left: 0;
    }
}
.banner-bottom-content .banner-keywords .keyword-tag li {
    margin: 10px 10px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .banner-bottom-content .banner-keywords .keyword-tag li {
        margin: 5px 5px;
    }
}
.banner-bottom-content .banner-keywords .keyword-tag li a {
    display: inline-block;
    font-size: 14px;
    padding: 7px 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.8);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .banner-bottom-content .banner-keywords .keyword-tag li a {
        padding: 7px 10px;
    }
}
.banner-bottom-content .banner-keywords .keyword-tag li a:hover {
    background: var(--main-color-one);
    color: #fff;
    border-color: var(--main-color-one);
}

.banner-right-contents {
    position: relative;
    z-index: 2;
}
.banner-right-contents::after {
    position: absolute;
    content: "";
    height: 590px;
    width: 590px;
    background: var(--main-color-two);
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 40px;
    border-radius: 50%;
    z-index: -1;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .banner-right-contents::after {
        height: 500px;
        width: 500px;
    }
}
@media only screen and (max-width: 767.98px) {
    .banner-right-contents::after {
        height: 500px;
        width: 500px;
    }
}
@media only screen and (max-width: 575.98px) {
    .banner-right-contents::after {
        height: 450px;
        width: 450px;
    }
}
@media only screen and (max-width: 480px) {
    .banner-right-contents::after {
        height: 370px;
        width: 370px;
    }
}
@media only screen and (max-width: 375px) {
    .banner-right-contents::after {
        height: 300px;
        width: 300px;
    }
}
.banner-right-contents.style-02::after {
    position: absolute;
    content: "";
    height: calc(100% + 50px);
    width: calc(100% + 50px);
    background: rgba(255, 255, 255, 0.3);
    left: -25px;
    right: 0;
    margin: 0 auto;
    top: -25px;
    border-radius: 50%;
    z-index: -1;
}
.banner-right-contents.style-02 .banner-right-thumb img {
    border-radius: 50%;
}
.banner-right-contents.style-02 .banner-cleaning-service {
    left: 20px;
    bottom: 20px;
    top: auto;
    right: auto;
}
.banner-right-contents.style-02 .banner-cleaning-service::before {
    bottom: auto;
    right: 50px;
    left: auto;
    top: -21px;
    border-bottom: 21px solid #fff;
    border-top: 0;
}
.banner-right-contents.style-03::after {
    display: none;
}
.banner-right-contents.style-03 .banner-right-thumb .banner-dot-shape img {
    top: 180px;
    left: 50px;
}
.banner-right-contents.style-03 .banner-client {
    top: auto;
    bottom: 100px;
    right: auto;
    left: 20px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .banner-right-contents.style-03 .banner-client {
        bottom: 50px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .banner-right-contents.style-03 .banner-client {
        bottom: 0px;
    }
}
@media only screen and (max-width: 575.98px) {
    .banner-right-contents.style-03 .banner-client {
        display: none;
    }
}
.banner-right-contents.style-03 .banner-client .thumb-smile {
    text-align: center;
}
.banner-right-contents.style-03 .banner-client .smile-content {
    text-align: center;
}
.banner-right-contents.style-03 .banner-client .smile-content span {
    display: block;
}
.banner-right-contents.style-03 .banner-client .smile-content .smile-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    word-break: break-all;
    margin: 4px 0;
}
.banner-right-contents.style-03 .banner-client .smile-content .smile-para {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    word-break: break-all;
}
.banner-right-contents .banner-right-thumb img {
    width: 100%;
}
.banner-right-contents .banner-right-thumb .banner-dot-shape img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: auto;
    border-radius: 0;
}
.banner-right-contents .banner-client {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 9;
    background: var(--main-color-two);
    padding: 0 5px;
    border-radius: 20px;
    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;
    width: 150px;
    height: 150px;
}
@media only screen and (max-width: 480px) {
    .banner-right-contents .banner-client {
        height: 130px;
        width: 130px;
        top: 0;
    }
}
.banner-right-contents .banner-client .thumb-smile {
    text-align: center;
}
.banner-right-contents .banner-client .smile-content {
    text-align: center;
}
.banner-right-contents .banner-client .smile-content span {
    display: block;
}
.banner-right-contents .banner-client .smile-content .smile-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    word-break: break-all;
}
@media only screen and (max-width: 480px) {
    .banner-right-contents .banner-client .smile-content .smile-title {
        font-size: 24px;
    }
}
.banner-right-contents .banner-client .smile-content .smile-para {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    word-break: break-all;
}
@media only screen and (max-width: 480px) {
    .banner-right-contents .banner-client .smile-content .smile-para {
        font-size: 12px;
        line-height: 18px;
    }
}
.banner-right-contents .banner-cleaning-service {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
    background: #fff;
    min-width: 310px;
    border-radius: 10px;
    padding: 10px;
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 9;
}
@media only screen and (max-width: 375px) {
    .banner-right-contents .banner-cleaning-service {
        min-width: 280px;
    }
}
.banner-right-contents .banner-cleaning-service::before {
    position: absolute;
    content: "";
    left: 30px;
    bottom: -21px;
    width: 0;
    height: 0;
    border-top: 21px solid #fff;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
}
.banner-right-contents .banner-cleaning-service .icon {
    min-height: 80px;
    min-width: 80px;
    background: var(--main-color-three);
    color: #fff;
    font-size: 50px;
    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;
    border-radius: 10px;
}
@media only screen and (max-width: 375px) {
    .banner-right-contents .banner-cleaning-service .icon {
        min-height: 60px;
        min-width: 60px;
        font-size: 35px;
    }
}
.banner-right-contents .banner-cleaning-service .icon-contents .thumb-cleaning-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
}
@media only screen and (max-width: 575.98px) {
    .banner-right-contents .banner-cleaning-service .icon-contents .thumb-cleaning-title {
        font-size: 18px;
    }
}
@media only screen and (max-width: 375px) {
    .banner-right-contents .banner-cleaning-service .icon-contents .thumb-cleaning-title {
        font-size: 16px;
    }
}
.banner-right-contents .banner-cleaning-service .icon-contents .review-cleaning {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px;
}
.banner-right-contents .banner-cleaning-service .icon-contents .review-cleaning li {
    color: var(--main-color-three);
}
.banner-right-contents .banner-cleaning-service .icon-contents .review-cleaning li:not(:last-child) {
    margin-right: 3px;
}

.slick-slider-one {
    position: relative;
}
.slick-slider-one .las.la-angle-left.slick-arrow,
.slick-slider-one .las.la-angle-right.slick-arrow {
    position: absolute;
    bottom: 80px;
    left: 400px;
    font-size: 24px;
    cursor: pointer;
    z-index: 99;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.slick-slider-one .las.la-angle-left.slick-arrow:hover,
.slick-slider-one .las.la-angle-right.slick-arrow:hover {
    color: var(--main-color-one);
}
.slick-slider-one .las.la-angle-left.slick-arrow {
    left: 370px;
}

/* Category area */
.category-area {
    overflow: hidden;
}

.category-slider .slick-list {
    margin: -15px;
}
.category-slider .slick-slide:nth-child(5n+2) .single-category {
    background: #BE3EFF;
}
.category-slider .slick-slide:nth-child(5n+3) .single-category {
    background: #F86048;
}
.category-slider .slick-slide:nth-child(5n+4) .single-category {
    background: #C71F66;
}
.category-slider .slick-slide:nth-child(5n+5) .single-category {
    background: #0FC393;
}

.category-child:nth-child(6n+1) .single-category {
    background: linear-gradient(45deg, #fffefa 0%, #fff7e7 100%);
}
.category-child:nth-child(6n+2) .single-category {
    background: linear-gradient(45deg, #FAFEFD 0%, #E7F0ED 100%);
}
.category-child:nth-child(6n+3) .single-category {
    background: linear-gradient(45deg, #FCFCFF 0%, #F0EFFF 100%);
}
.category-child:nth-child(6n+4) .single-category {
    background: linear-gradient(45deg, #FFFAFB 0%, #FFE8EC 100%);
}
.category-child:nth-child(6n+5) .single-category {
    background: linear-gradient(45deg, #FBFDFE 0%, #EAF5FC 100%);
}
.category-child:nth-child(6n+6) .single-category {
    background: linear-gradient(45deg, #FFFCFB 0%, #FFF0EA 100%);
}

.single-category {
    background: #378FFF;
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    margin: 15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.single-category:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}
.single-category.style-02 {
    background: linear-gradient(45deg, #fffefa 0%, #fff7e7 100%);
    margin: 0;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .single-category.style-02 {
        padding: 20px 10px;
    }
}
.single-category.style-02 .icon {
    color: var(--heading-color);
    margin-bottom: 30px;
    font-size: 60px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .single-category.style-02 .icon {
        font-size: 50px;
        margin: 0 auto 20px;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .single-category.style-02 .icon {
        margin: 0 auto 20px;
    }
}
.single-category.style-02 .icon img {
    height: 80px;
    width: 80px;
    -o-object-fit: contain;
    object-fit: contain;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .single-category.style-02 .icon img {
        height: 60px;
        width: 60px;
    }
}
.single-category.style-02 .category-contents .category-title {
    color: var(--heading-color);
}
.single-category.style-02 .category-contents .category-para {
    color: var(--heading-color);
}
.single-category .icon {
    font-size: 50px;
    color: #fff;
}
.single-category .category-contents .category-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
@media only screen and (max-width: 480px) {
    .single-category .category-contents .category-title {
        font-size: 22px;
    }
}
.single-category .category-contents .category-para {
    font-size: 16px;
    line-height: 34px;
    color: #fff;
}
@media only screen and (max-width: 480px) {
    .single-category .category-contents .category-para {
        font-size: 14px;
        line-height: 26px;
    }
}

/* Service area */
.services-area {
    overflow: hidden;
}

.services-slider .slick-list {
    margin: -15px;
}

.service-item-all {
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (min-width: 320px) and (max-width: 1399.98px) {
    .service-item-all {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.service-item-devide {
    width: calc((100% / 5) - 0px);
    height: auto;
    margin-top: 30px;
    padding: 0 15px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
    .service-item-devide {
        width: calc(100% / 4);
        height: auto;
        padding: 0 15px;
    }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .service-item-devide {
        width: calc(100% / 3);
        height: auto;
        padding: 0 15px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .service-item-devide {
        width: calc(100% / 3);
        height: auto;
        padding: 0 15px;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .service-item-devide {
        width: calc(100% / 2);
        height: auto;
        padding: 0 15px;
    }
}
@media only screen and (max-width: 767.98px) {
    .service-item-devide {
        width: calc(100% / 1);
        height: auto;
        padding: 0 15px;
    }
}

.single-service {
    border-radius: 10px;
    background: #fff;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    margin: 15px;
    overflow: hidden;
}
.single-service.section-bg-2 {
    background: #F1F6FF;
}
.single-service.style-02 .services-contents .common-title:hover {
    color: var(--main-color-two);
}
.single-service.style-02 .services-contents .service-price .starting {
    text-align: right;
}
.single-service.style-03 .services-contents {
    padding: 0 30px 10px;
}
.single-service.style-03 .services-contents.content-padding-reverse {
    padding: 0 15px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .single-service.style-03 .services-contents.content-padding-reverse {
        padding: 0;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .single-service.style-03 .services-contents.content-padding-reverse {
        padding: 0;
    }
}
.single-service.style-03 .services-contents .common-title:hover {
    color: var(--main-color-three);
}
.single-service.style-03 .services-contents .service-price-wrapper {
    margin: 0;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .single-service.style-03 .services-contents .service-price-wrapper .service-price {
        margin-top: 0;
    }
}
.single-service.no-margin {
    margin: 0;
}
.single-service.service-two {
    margin: 0;
}
.single-service.service-padding {
    padding: 20px;
}
.single-service:hover .service-thumb img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    border-radius: 10px 10px 0 0;
}
.single-service .service-thumb {
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
}
.single-service .service-thumb img {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    border-radius: 10px 10px 0 0;
    width: 100%;
    overflow: hidden;
}
.single-service .service-thumb .award-icons {
    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;
    font-size: 18px;
    min-width: 30px;
    min-height: 30px;
    background: #fff;
    color: var(--main-color-one);
    font-size: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9;
    border-radius: 3px;
}
.single-service .service-thumb .award-icons.style-02 {
    color: var(--main-color-three);
}
.single-service .services-contents {
    padding: 0 30px 30px;
}
@media only screen and (max-width: 375px) {
    .single-service .services-contents {
        padding: 0 15px 30px;
    }
}
.single-service .services-contents .common-para {
    margin-top: 20px;
}
.single-service .services-contents .service-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin: 18px 0 13px;
}
.single-service .services-contents .service-price.style-02 {
    display: block;
    margin: 20px 0 0;
}
.single-service .services-contents .service-price.style-02 .starting {
    display: block;
}
.single-service .services-contents .service-price .starting {
    font-size: 12px;
    color: var(--light-color);
}
.single-service .services-contents .service-price .prices {
    font-size: 28px;
    font-weight: 700;
    line-height: 55px;
    color: #FF6B2C;
}
.single-service .services-contents .service-price .prices.style-02 {
    color: var(--heading-color);
}
.single-service .services-contents .service-price-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 0 -15px 0px;
}

/* Marketplace area */
.margketplace-area {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.market-shapes img {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -220px;
    z-index: -1;
}

.marketplace-child:nth-child(6n+1) .single-marketplace {
    background: rgba(101, 96, 255, 0.08);
}
.marketplace-child:nth-child(6n+1) .single-marketplace .icon {
    background: #6560FF;
}
.marketplace-child:nth-child(6n+1) .single-marketplace .marketplace-contents .common-title:hover {
    color: #6560FF;
}
.marketplace-child:nth-child(6n+2) .single-marketplace {
    background: rgba(199, 31, 102, 0.08);
}
.marketplace-child:nth-child(6n+2) .single-marketplace .icon {
    background: #C71F66;
}
.marketplace-child:nth-child(6n+2) .single-marketplace .marketplace-contents .common-title:hover {
    color: #C71F66;
}
.marketplace-child:nth-child(6n+3) .single-marketplace {
    background: rgba(55, 143, 255, 0.08);
}
.marketplace-child:nth-child(6n+3) .single-marketplace .icon {
    background: #378FFF;
}
.marketplace-child:nth-child(6n+3) .single-marketplace .marketplace-contents .common-title:hover {
    color: #378FFF;
}
.marketplace-child:nth-child(6n+4) .single-marketplace {
    background: rgba(255, 107, 44, 0.08);
}
.marketplace-child:nth-child(6n+4) .single-marketplace .icon {
    background: #FF6B2C;
}
.marketplace-child:nth-child(6n+4) .single-marketplace .marketplace-contents .common-title:hover {
    color: #FF6B2C;
}
.marketplace-child:nth-child(6n+5) .single-marketplace {
    background: rgba(15, 195, 147, 0.08);
}
.marketplace-child:nth-child(6n+5) .single-marketplace .icon {
    background: #0FC393;
}
.marketplace-child:nth-child(6n+5) .single-marketplace .marketplace-contents .common-title:hover {
    color: #0FC393;
}
.marketplace-child:nth-child(6n+6) .single-marketplace {
    background: rgba(190, 62, 255, 0.08);
}
.marketplace-child:nth-child(6n+6) .single-marketplace .icon {
    background: #BE3EFF;
}
.marketplace-child:nth-child(6n+6) .single-marketplace .marketplace-contents .common-title:hover {
    color: #BE3EFF;
}

.single-marketplace {
    background: rgba(101, 96, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .single-marketplace {
        padding: 30px 20px;
    }
}
@media only screen and (max-width: 375px) {
    .single-marketplace {
        padding: 30px 15px;
    }
}
.single-marketplace.style-02 {
    background: #fff !important;
}
.single-marketplace.style-03 {
    padding: 30px 40px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .single-marketplace.style-03 {
        padding: 30px 20px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .single-marketplace.style-03 {
        padding: 30px 20px;
    }
}
.single-marketplace.style-03 .common-title:hover {
    color: var(--main-color-three);
}
.single-marketplace.style-03 .icon {
    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;
    background: #fff;
    border-radius: 50%;
    height: 95px;
    width: 95px;
}
.single-marketplace:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}
.single-marketplace .icon {
    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;
    height: 80px;
    width: 80px;
    background: #6560FF;
    color: #fff;
    font-size: 40px;
    border-radius: 50%;
    margin: 0 auto 20px;
}
.single-marketplace .common-para {
    margin-top: 20px;
}

.marketplace-left-contents {
    padding-right: 55px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .marketplace-left-contents {
        padding-right: 0px;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .marketplace-left-contents {
        padding-right: 30px;
    }
}
@media only screen and (max-width: 575.98px) {
    .marketplace-left-contents {
        padding-right: 0px;
    }
}
.marketplace-left-contents .title {
    font-size: 65px;
    font-weight: 700;
    line-height: 85px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .marketplace-left-contents .title {
        font-size: 50px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .marketplace-left-contents .title {
        font-size: 50px;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .marketplace-left-contents .title {
        font-size: 40px;
        line-height: 50px;
    }
}
@media only screen and (max-width: 575.98px) {
    .marketplace-left-contents .title {
        font-size: 35px;
        line-height: 45px;
    }
}
@media only screen and (max-width: 375px) {
    .marketplace-left-contents .title {
        font-size: 28px;
        line-height: 32px;
    }
}
.marketplace-left-contents .market-para {
    font-size: 18px;
    line-height: 30px;
    margin-top: 35px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .marketplace-left-contents .market-para {
        font-size: 16px;
        margin-top: 20px;
    }
}
@media only screen and (max-width: 480px) {
    .marketplace-left-contents .market-para {
        font-size: 14px;
    }
}
.marketplace-left-contents .cmn-btn {
    margin-top: 50px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .marketplace-left-contents .cmn-btn {
        margin-top: 30px;
    }
}

/* Professional Services */
.professional-area {
    overflow: hidden;
}

.professional-slider .slick-list {
    margin: -15px;
}

.single-professional {
    border-radius: 10px;
    overflow: hidden;
    margin: 15px;
    position: relative;
    z-index: 1;
}
.single-professional:hover .professional-thumb::after {
    top: 0;
}
.single-professional:hover .professional-thumb img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.single-professional .professional-thumb {
    display: block;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.single-professional .professional-thumb img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.single-professional .professional-thumb::after {
    position: absolute;
    content: "";
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.99)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.99) 0%, rgba(255, 255, 255, 0) 100%);
    height: 100%;
    width: 100%;
    left: 0;
    top: 50px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.single-professional .professional-contents {
    position: absolute;
    bottom: 20px;
    left: 0px;
    right: 0;
    text-align: center;
    z-index: 9;
}
.single-professional .professional-contents .professional-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.single-professional .professional-contents .professional-title:hover {
    color: var(--main-color-one);
}

/* Seller area */
.seller-wrapper.seller-content-padding {
    padding-left: 50px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .seller-wrapper.seller-content-padding {
        padding-left: 0;
    }
}

.seller-contents {
    margin: 35px 0 0;
}
.seller-contents.style-02 .seller-list li::before {
    color: var(--main-color-two);
}
.seller-contents.style-02 .seller-list li:hover .span-list {
    color: var(--main-color-two);
}
.seller-contents .seller-list {
    padding: 0;
    margin: 0 0 35px;
}
.seller-contents .seller-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
}
@media only screen and (max-width: 375px) {
    .seller-contents .seller-list li {
        gap: 10px;
    }
}
.seller-contents .seller-list li:hover .span-list {
    color: var(--main-color-one);
}
.seller-contents .seller-list li:not(:last-child) {
    margin-bottom: 20px;
}
.seller-contents .seller-list li::before {
    content: "";
    font-family: "Line Awesome Free";
    font-weight: 900;
    color: var(--main-color-one);
}
.seller-contents .seller-list li .span-list {
    font-size: 16px;
    display: inline-block;
    color: var(--light-color);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.seller-thumbs img {
    width: 100%;
    border-radius: 10px;
}

/* Blog area */
.blog-area {
    overflow: hidden;
}

.single-blog {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    margin: 15px;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.single-blog.style-02 .common-title:hover {
    color: var(--main-color-two);
}
.single-blog.style-03 {
    margin: 0;
    background: linear-gradient(135deg, #FBFDFE 0%, #EAF5FC 100%);
}
.single-blog.style-03:hover {
    background: linear-gradient(45deg, #FBFDFE 0%, #EAF5FC 100%);
}
.single-blog.style-03 .common-title:hover {
    color: var(--main-color-three);
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .single-blog.style-03 .blog-contents {
        padding: 30px 15px;
    }
}
.single-blog.style-03 .blog-contents .tags li a:hover {
    color: var(--main-color-three);
}
.single-blog.style-03 .blog-contents .tags li a:hover i {
    color: var(--main-color-three);
}
.single-blog.no-margin {
    margin: 0;
}
.single-blog:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    background: none;
}
.single-blog:hover .blog-thumb img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.single-blog .blog-thumb {
    overflow: hidden;
    display: block;
}
.single-blog .blog-thumb img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.single-blog .blog-contents {
    padding: 30px;
}
@media only screen and (max-width: 375px) {
    .single-blog .blog-contents {
        padding: 30px 15px;
    }
}
.single-blog .blog-contents .tags {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}
.single-blog .blog-contents .tags li:not(:last-child) {
    margin-right: 30px;
}
.single-blog .blog-contents .tags li a {
    color: var(--light-color);
    font-size: 12px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.single-blog .blog-contents .tags li a:hover {
    color: var(--main-color-one);
}
.single-blog .blog-contents .tags li a:hover i {
    color: var(--main-color-one);
}
.single-blog .blog-contents .tags li a i {
    color: var(--main-color-three);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.single-blog .blog-contents .common-para {
    margin-top: 15px;
}

@media (min-width: 320px) and (max-width: 991.98px) {
    .blog-pagination.margin-top-55 {
        margin-top: 30px;
    }
}

/*--------------------------------------------------------------
	## WIdgets
--------------------------------------------------------------*/
.widget {
    margin-bottom: 30px;
}
.widget .widget-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    text-transform: capitalize;
    position: relative;
    font-family: var(--heading-font);
    color: var(--heading-color);
}
.widget .footer-inner {
    margin-top: 30px;
}
.widget .footer-inner .footer-para {
    font-size: 16px;
    color: var(--light-color);
    line-height: 28px;
}
.widget .footer-inner .footer-link-list {
    padding: 0;
}
.widget .footer-inner .footer-link-list .list::before {
    content: "";
    font-family: "Line Awesome Free";
    font-weight: 900;
    margin-right: 15px;
    color: var(--main-color-one);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.widget .footer-inner .footer-link-list .list:not(:last-child) {
    margin-bottom: 15px;
}
.widget .footer-inner .footer-link-list .list:hover:before {
    margin-right: 10px;
}
.widget .footer-inner .footer-link-list .list:hover a {
    color: var(--main-color-one);
}
.widget .footer-inner .footer-link-list .list a {
    font-size: 16px;
    font-weight: 400;
    color: var(--heading-color);
    position: relative;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.widget .footer-inner .footer-link-list .list a:hover {
    color: var(--main-color-one);
}
.widget .footer-inner .footer-link-address {
    padding: 0;
}
.widget .footer-inner .footer-link-address .list:not(:last-child) {
    margin-bottom: 15px;
}
.widget .footer-inner .footer-link-address .list .address {
    font-size: 16px;
    line-height: 26px;
    display: block;
    color: var(--light-color);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.widget .footer-inner .footer-link-address .list .address:hover {
    color: var(--main-color-one);
    letter-spacing: 1px;
}
.widget .footer-inner .footer-link-address .list .address i {
    color: var(--main-color-one);
}
.widget .footer-inner .footer-socials .footer-social-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
    padding: 0;
}
.widget .footer-inner .footer-socials .footer-social-list .lists a {
    color: var(--light-color);
    font-size: 16px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.widget .footer-inner .footer-socials .footer-social-list .lists a:hover {
    color: var(--main-color-one);
}
.widget .footer-inner .footer-socials .footer-social-list .lists:not(:last-child) a {
    margin-right: 10px;
}
.widget .footer-inner .subscribe-para {
    font-size: 16px;
    color: var(--light-color);
}
.widget .footer-inner .subscribe-form {
    margin-top: 30px;
}
.widget .footer-inner .subscribe-form .widget-form-single {
    position: relative;
}
.widget .footer-inner .subscribe-form .widget-form-single .form--control {
    width: 100%;
    height: 55px;
    line-height: 55px;
    border-radius: 5px;
    background: #fff;
    color: var(--light-color);
    border: 1px solid #fff;
    padding: 0 20px;
    -webkit-box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
.widget .footer-inner .subscribe-form .widget-form-single .form--control::-webkit-input-placeholder {
    color: var(--light-color);
    font-size: 16px;
}
.widget .footer-inner .subscribe-form .widget-form-single .form--control::-moz-placeholder {
    color: var(--light-color);
    font-size: 16px;
}
.widget .footer-inner .subscribe-form .widget-form-single .form--control:-ms-input-placeholder {
    color: var(--light-color);
    font-size: 16px;
}
.widget .footer-inner .subscribe-form .widget-form-single .form--control::-ms-input-placeholder {
    color: var(--light-color);
    font-size: 16px;
}
.widget .footer-inner .subscribe-form .widget-form-single .form--control::placeholder {
    color: var(--light-color);
    font-size: 16px;
}
.widget .footer-inner .subscribe-form .widget-form-single .form--control:focus {
    border: 1px solid rgba(255, 107, 44, 0.2);
    -webkit-box-shadow: 0 0 20px rgba(255, 107, 44, 0.1);
    box-shadow: 0 0 20px rgba(255, 107, 44, 0.1);
}
.widget .footer-inner .subscribe-form .widget-form-single button {
    outline: none;
    border: 0;
    position: absolute;
    top: 0;
    right: 0;
    height: 45px;
    width: 50px;
    background: var(--main-color-three);
    font-size: 20px;
    color: #fff;
    border-radius: 3px;
    margin: 5px;
    cursor: pointer;
}

.copyright-area {
    padding: 25px 0;
}
.copyright-area.copyright-border {
    border-top: 2px solid #ebebeb;
}
.copyright-area.style-02.copyright-border {
    border-top: 1px solid #d2d2d2;
}
.copyright-area .copyright-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
}
@media only screen and (max-width: 767.98px) {
    .copyright-area .copyright-list {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.copyright-area .copyright-list .list:not(:first-child) a {
    padding-left: 10px;
}
.copyright-area .copyright-list .list:not(:last-child) a {
    padding-right: 10px;
}
.copyright-area .copyright-list .list:not(:last-child) a::before {
    background: var(--light-color);
    position: absolute;
    content: "";
    height: 60%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 1px;
}
.copyright-area .copyright-list .list a {
    font-size: 14px;
    color: var(--light-color);
    position: relative;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.copyright-area .copyright-list .list a:hover {
    color: var(--main-color-one);
}
.copyright-area .copyright-contents {
    font-size: 14px;
    color: var(--light-color);
    text-align: center;
}
@media only screen and (max-width: 767.98px) {
    .copyright-area .copyright-contents {
        text-align: center;
        margin-top: 10px;
    }
}
.copyright-area .copyright-payment .payment-list {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .copyright-area .copyright-payment .payment-list {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-top: 10px;
    }
}
@media only screen and (max-width: 767.98px) {
    .copyright-area .copyright-payment .payment-list {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.copyright-area .copyright-payment .payment-list .list:not(:last-child) {
    margin-right: 10px;
}
.color-two .widget .footer-inner .footer-link-list .list::before {
    color: var(--main-color-two);
}
.color-two .widget .footer-inner .footer-link-list .list:hover a {
    color: var(--main-color-two);
}
.color-two .widget .footer-inner .footer-link-address .list .address:hover {
    color: var(--main-color-two);
}
.color-two .widget .footer-inner .footer-link-address .list .address i {
    color: var(--main-color-two);
}
.color-two .widget .footer-inner .footer-socials .footer-social-list .lists a {
    color: var(--light-color);
}
.color-two .widget .footer-inner .footer-socials .footer-social-list .lists a:hover {
    color: var(--main-color-two);
}
.color-two .copyright-list .list a:hover {
    color: var(--main-color-two);
}

.color-three .widget .footer-inner .footer-link-list .list::before {
    color: var(--main-color-three);
}
.color-three .widget .footer-inner .footer-link-list .list:hover a {
    color: var(--main-color-three);
}
.color-three .widget .footer-inner .footer-link-address .list .address:hover {
    color: var(--main-color-three);
}
.color-three .widget .footer-inner .footer-link-address .list .address i {
    color: var(--main-color-three);
}
.color-three .widget .footer-inner .footer-socials .footer-social-list .lists a {
    color: var(--light-color);
}
.color-three .widget .footer-inner .footer-socials .footer-social-list .lists a:hover {
    color: var(--main-color-three);
}
.color-three .copyright-list .list a:hover {
    color: var(--main-color-three);
}

/* Banner Inner */
.banner-inner-area {
    padding: 40px 0;
}

.banner-inner-contents .banner-inner-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    font-family: var(--heading-font);
    margin: 0;
    color: #f3f1f1;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .banner-inner-contents .banner-inner-title {
        font-size: 32px;
        line-height: 36px;
    }
}
@media only screen and (max-width: 575.98px) {
    .banner-inner-contents .banner-inner-title {
        font-size: 28px;
    }
}

/* Category Service area */
.category-service .title {
    font-size: 32px;
    font-weight: 600;
    line-height: 50px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .category-service .title {
        font-size: 28px;
        line-height: 32px;
    }
}
@media only screen and (max-width: 480px) {
    .category-service .title {
        font-size: 24px;
    }
}

.single-select {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}
.single-select .select-sort {
    margin-right: 10px;
    width: 80px;
}
.single-select .nice-select {
    background-color: #fff;
    border-radius: 5px;
    border: solid 1px #dddddd;
    width: 100%;
    color: var(--light-color);
    height: 48px;
    line-height: 48px;
    font-size: 14px;
}
.single-select .nice-select.open::after {
    -webkit-transform: translateY(-50%) rotate(-135deg);
    transform: translateY(-50%) rotate(-135deg);
}
.single-select .nice-select::after {
    border-bottom: 1px solid var(--light-color);
    border-right: 1px solid var(--light-color);
    height: 8px;
    margin-top: -2px;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
}
.single-select .nice-select .list {
    width: 100%;
}

/* Details Overview */
.overview-list-all .overview-list {
    margin-bottom: 50px;
}
.overview-list-all .overview-location {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .overview-list-all .overview-location {
        gap: 0px 10px;
    }
}
.overview-list-all .overview-location .single-location {
    background: #F1F6FF;
    color: var(--heading-color);
    width: calc(100% / 5 - 25px);
    text-align: center;
    padding: 40px 5px;
    border-radius: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .overview-list-all .overview-location .single-location {
        width: auto;
        padding: 30px 30px;
    }
}
@media only screen and (max-width: 575.98px) {
    .overview-list-all .overview-location .single-location {
        padding: 20px 20px;
    }
}
@media only screen and (max-width: 375px) {
    .overview-list-all .overview-location .single-location {
        padding: 15px 15px;
    }
}
.overview-list-all .overview-location .single-location.active {
    background: var(--main-color-one);
}
.overview-list-all .overview-location .single-location.active .location {
    color: #fff;
}
.overview-list-all .overview-location .single-location:hover {
    background: var(--main-color-one);
}
.overview-list-all .overview-location .single-location:hover .location {
    color: #fff;
}
.overview-list-all .overview-location .single-location .location {
    display: block;
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .overview-list-all .overview-location .single-location .location {
        font-size: 20px;
        line-height: 30px;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .overview-list-all .overview-location .single-location .location {
        font-size: 18px;
        line-height: 30px;
    }
}
@media only screen and (max-width: 480px) {
    .overview-list-all .overview-location .single-location .location {
        font-size: 16px;
        line-height: 28px;
        font-weight: 400;
    }
}

/* Contact Map */
.contact-map {
    border-radius: 10px;
    overflow: hidden;
}
.contact-map iframe {
    width: 100%;
    height: 346px;
    border: 0;
    border-radius: 0 0 10px 10px;
}
@media only screen and (max-width: 575.98px) {
    .contact-map iframe {
        height: 300px;
    }
}
@media only screen and (max-width: 375px) {
    .contact-map iframe {
        height: 250px;
    }
}
.contact-map .select-location {
    background: var(--main-color-one);
    color: #fff;
    padding: 15px 10px;
    text-align: center;
    width: 100%;
    display: block;
    font-size: 20px;
    font-weight: 500;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .contact-map .select-location {
        font-size: 18px;
    }
}
@media only screen and (max-width: 575.98px) {
    .contact-map .select-location {
        font-size: 16px;
    }
}
@media only screen and (max-width: 375px) {
    .contact-map .select-location {
        font-size: 14px;
    }
}
.contact-map .select-location::before {
    font-family: "Line Awesome Free";
    font-weight: 900;
    content: "";
}

/* Service Overview */
.overview-author {
    padding-bottom: 40px;
}
.overview-author.overview-author-border {
    border-bottom: 1px solid #dddddd;
}
.overview-author .overview-flex-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 30px;
}
@media only screen and (max-width: 575.98px) {
    .overview-author .overview-flex-author {
        display: block;
    }
}
.overview-author .overview-flex-author .overview-thumb {
    max-width: 220px;
    height: 148px;
}
@media only screen and (max-width: 480px) {
    .overview-author .overview-flex-author .overview-thumb {
        min-width: 100%;
    }
}
.overview-author .overview-flex-author .overview-thumb img {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.overview-author .overview-flex-author .overview-thumb.confirm-thumb {
    max-width: 290px;
    height: 190px;
}
.overview-author .overview-flex-author .overview-contents .overview-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .overview-author .overview-flex-author .overview-contents .overview-title {
        font-size: 20px;
        line-height: 28px;
        margin-top: 20px;
    }
}
.overview-author .overview-flex-author .overview-contents .overview-title:hover {
    color: var(--main-color-one);
}
.overview-author .overview-flex-author .overview-contents .overview-title.confirm-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 50px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .overview-author .overview-flex-author .overview-contents .overview-title.confirm-title {
        font-size: 20px;
        line-height: 28px;
    }
}
.overview-author .overview-flex-author .overview-contents .overview-review {
    display: block;
    margin-top: 30px;
    color: var(--light-color);
    font-size: 18px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .overview-author .overview-flex-author .overview-contents .overview-review {
        margin-top: 10px;
        font-size: 16px;
    }
}
.overview-author .overview-flex-author .overview-contents .overview-review i {
    color: var(--main-color-three);
}
.overview-author .overview-flex-author .overview-contents .overview-review b {
    color: var(--extra-light-color);
}

.overview-single.style-02 .overview-benefits .list:not(:last-child) {
    margin-bottom: 20px;
}
.overview-single.style-03 .overview-benefits .list:not(:last-child) {
    margin-bottom: 15px;
}
.overview-single .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .overview-single .title {
        font-size: 22px;
    }
}
@media only screen and (max-width: 575.98px) {
    .overview-single .title {
        font-size: 18px;
        line-height: 28px;
    }
}
.overview-single .include-contents .single-include:not(:first-child) {
    padding-top: 25px;
}
.overview-single .include-contents .single-include .include-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0;
}
.overview-single .include-contents .single-include .include-list .lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.overview-single .include-contents .single-include .include-list .lists .remove {
    color: var(--main-color-three);
    font-size: 14px;
    line-height: 26px;
    font-style: italic;
}
.overview-single .include-contents .single-include .include-list .lists .list-single:not(:last-child) {
    margin-right: 50px;
}
@media only screen and (max-width: 375px) {
    .overview-single .include-contents .single-include .include-list .lists .list-single:not(:last-child) {
        margin-right: 20px;
    }
}
.overview-single .include-contents .single-include .include-list .lists .list-single .rooms {
    position: relative;
    padding-left: 20px;
    font-size: 16px;
    line-height: 26px;
}
.overview-single .include-contents .single-include .include-list .lists .list-single .rooms::before {
    position: absolute;
    content: "";
    height: 7px;
    width: 7px;
    border-radius: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: var(--main-color-one);
    left: 0;
}
.overview-single .include-contents .single-include .include-list .lists .list-single .values {
    position: relative;
}
.overview-single .include-contents .single-include .include-list .lists .list-single .values::after {
    font-family: "Line Awesome Free";
    font-weight: 900;
    content: "";
}
.overview-single .include-contents .single-include .include-list .lists .list-single .value-input {
    display: inline-block;
    max-width: 40px;
    color: var(--extra-light-color);
}
.overview-single .include-contents .single-include .include-list .lists .list-single .value-input input {
    color: var(--extra-light-color);
    height: 100%;
    width: 100%;
    text-align: center;
    border: 1px solid #dddddd;
}
.overview-single .overview-extra {
    padding: 20px;
    border: 1px solid #dddddd;
    border-radius: 10px;
}
.overview-single .overview-extra.style-02 {
    border: 1px solid #1DBF73;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.overview-single .overview-extra .checkbox-inlines {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    cursor: pointer;
    gap: 10px;
}
.overview-single .overview-extra .checkbox-inlines .check-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    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;
    min-height: 18px;
    min-width: 18px;
    cursor: pointer;
    background: #fff;
    border: 1px solid #dddddd;
    border-radius: 0px;
    margin-top: 3px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.overview-single .overview-extra .checkbox-inlines .check-input::after {
    content: "";
    font-family: "Line Awesome Free";
    font-weight: 900;
    font-size: 10px;
    color: #fff;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(1.6) rotate(90deg);
    transform: scale(1.6) rotate(90deg);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.overview-single .overview-extra .checkbox-inlines .check-input:checked {
    background: var(--main-color-one);
    border-color: var(--main-color-one);
}
.overview-single .overview-extra .checkbox-inlines .check-input:checked::after {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1.2) rotate(0deg);
    transform: scale(1.2) rotate(0deg);
}
.overview-single .overview-extra .checkbox-inlines .checkbox-label {
    cursor: pointer;
    text-align: left;
    line-height: 26px;
    font-size: 18px;
    font-weight: 500;
    color: var(--heading-color);
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .overview-single .overview-extra .checkbox-inlines .checkbox-label {
        font-size: 16px;
    }
}
@media only screen and (max-width: 575.98px) {
    .overview-single .overview-extra .checkbox-inlines .checkbox-label {
        font-size: 15px;
    }
}
.overview-single .overview-extra .overview-extra-flex-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
}
.overview-single .overview-extra .overview-extra-flex-content .list-single .values {
    position: relative;
}
.overview-single .overview-extra .overview-extra-flex-content .list-single .values::after {
    font-family: "Line Awesome Free";
    font-weight: 900;
    content: "";
}
.overview-single .overview-extra .overview-extra-flex-content .list-single .value-input {
    display: inline-block;
    max-width: 40px;
    color: var(--extra-light-color);
}
.overview-single .overview-extra .overview-extra-flex-content .list-single .value-input input {
    color: var(--extra-light-color);
    height: 100%;
    width: 100%;
    text-align: center;
    border: 1px solid #dddddd;
}
.overview-single .overview-extra .overview-extra-flex-content .price-value {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--heading-font);
    line-height: 35px;
    color: var(--main-color-one);
    display: block;
}
.overview-single .overview-extra .overview-extra-thumb {
    min-width: 78px;
    height: 78px;
    border-radius: 10px;
}
.overview-single .overview-extra .overview-extra-thumb img {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.overview-single .overview-benefits {
    padding: 0;
}
.overview-single .overview-benefits .list {
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: var(--heading-color);
    padding-left: 30px;
    position: relative;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.overview-single .overview-benefits .list:not(:last-child) {
    margin-bottom: 30px;
}
@media only screen and (max-width: 375px) {
    .overview-single .overview-benefits .list:not(:last-child) {
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 375px) {
    .overview-single .overview-benefits .list {
        font-size: 14px;
        padding-left: 20px;
    }
}
.overview-single .overview-benefits .list::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    background: var(--main-color-one);
    height: 10px;
    width: 10px;
    border-radius: 50%;
}
.overview-single .overview-benefits .list:hover {
    color: var(--main-color-one);
}
.overview-single .customize-text {
    font-size: 14px;
    font-style: italic;
    line-height: 26px;
    color: var(--main-color-one);
    padding-left: 30px;
    margin-top: 15px;
    display: block;
}

.service-overview-summery {
    padding: 30px;
    border: 1px solid #dddddd;
    border-radius: 10px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .service-overview-summery {
        padding: 20px 15px;
    }
}
.service-overview-summery .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 35px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .service-overview-summery .title {
        font-size: 22px;
    }
}
@media only screen and (max-width: 575.98px) {
    .service-overview-summery .title {
        font-size: 20px;
        line-height: 28px;
    }
}

.overview-summery-contents .single-summery {
    padding-top: 20px;
}
.overview-summery-contents .single-summery .summery-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    color: var(--heading-color);
    font-family: var(--heading-font);
}
.overview-summery-contents .single-summery .summery-list-all .summery-list {
    padding-bottom: 20px;
    border-bottom: 1px solid #dddddd;
    padding-left: 0;
}
.overview-summery-contents .single-summery .summery-list-all .summery-list .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 20px;
}
.overview-summery-contents .single-summery .summery-list-all .summery-list .list .room-count::before {
    font-family: "Line Awesome Free";
    font-weight: 900;
    content: "";
    margin-right: 5px;
}
.overview-summery-contents .single-summery .summery-list-all .summery-result-list {
    padding-top: 20px;
    padding-left: 0;
}
.overview-summery-contents .single-summery .summery-list-all .summery-result-list.result-border {
    border-bottom: 1px solid #dddddd;
}
.overview-summery-contents .single-summery .summery-list-all .summery-result-list .result-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.overview-summery-contents .single-summery .summery-list-all .summery-result-list .result-list .value-count {
    color: var(--heading-color);
}
.overview-summery-contents .single-summery .summery-list-all .summery-result-list .result-list .rooms strong {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--heading-font);
    color: var(--heading-color);
}
.overview-summery-contents .btn-wrapper {
    margin-top: 25px;
}

.date-overview .single-date-overview .date-time-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .date-overview .single-date-overview .date-time-title {
        font-size: 22px;
    }
}
@media only screen and (max-width: 575.98px) {
    .date-overview .single-date-overview .date-time-title {
        font-size: 20px;
    }
}
@media only screen and (max-width: 375px) {
    .date-overview .single-date-overview .date-time-title {
        font-size: 18px;
    }
}
.date-overview .single-date-overview .date-time-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0;
}
@media only screen and (max-width: 375px) {
    .date-overview .single-date-overview .date-time-list {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.date-overview .single-date-overview .date-time-list .list {
    overflow: hidden;
}
.date-overview .single-date-overview .date-time-list .list:not(:first-child) {
    margin-left: 10px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .date-overview .single-date-overview .date-time-list .list:not(:first-child) {
        margin-left: 0;
    }
}
.date-overview .single-date-overview .date-time-list .list:not(:last-child) {
    margin-right: 10px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .date-overview .single-date-overview .date-time-list .list:not(:last-child) {
        margin-right: 10px;
    }
}
.date-overview .single-date-overview .date-time-list .list.active a {
    background: var(--main-color-one);
    color: #fff;
    border-color: inherit;
}
.date-overview .single-date-overview .date-time-list .list a {
    font-size: 16px;
    line-height: 26px;
    color: var(--extra-light-color);
    border: 1px solid #dddddd;
    display: inline-block;
    border-radius: 5px;
    padding: 6px 37px;
    font-weight: 500;
    margin: 10px 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .date-overview .single-date-overview .date-time-list .list a {
        padding: 6px 15px;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .date-overview .single-date-overview .date-time-list .list a {
        padding: 6px 15px;
        font-weight: 400;
    }
}
@media only screen and (max-width: 575.98px) {
    .date-overview .single-date-overview .date-time-list .list a {
        font-size: 14px;
    }
}
.date-overview .single-date-overview .date-time-list .list a:hover {
    background: var(--main-color-one);
    color: #fff;
    border-color: inherit;
}

.Information-overview .date-time-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 36px;
}

.single-info-overview {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
}
@media only screen and (max-width: 575.98px) {
    .single-info-overview {
        display: block;
    }
}
.single-info-overview .single-info-input {
    width: 100%;
}
@media only screen and (max-width: 575.98px) {
    .single-info-overview .single-info-input:not(:last-child) {
        margin-bottom: 30px;
    }
}
.single-info-overview .single-info-input .info-title {
    display: block;
    font-family: var(--heading-font);
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
}
.single-info-overview .single-info-input .form--control {
    font-size: 14px;
    line-height: 22px;
    color: var(--light-color);
    height: 60px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    padding: 0 20px;
    width: 100%;
}
.single-info-overview .single-info-input .form--control::-webkit-input-placeholder {
    font-size: 14px;
    color: var(--extra-light-color);
}
.single-info-overview .single-info-input .form--control::-moz-placeholder {
    font-size: 14px;
    color: var(--extra-light-color);
}
.single-info-overview .single-info-input .form--control:-ms-input-placeholder {
    font-size: 14px;
    color: var(--extra-light-color);
}
.single-info-overview .single-info-input .form--control::-ms-input-placeholder {
    font-size: 14px;
    color: var(--extra-light-color);
}
.single-info-overview .single-info-input .form--control::placeholder {
    font-size: 14px;
    color: var(--extra-light-color);
}
.single-info-overview .single-info-input .textarea--form {
    padding: 20px;
    height: 162px;
}
.single-info-overview .single-info-input .nice-select {
    width: 100%;
    height: 60px;
    line-height: 60px;
    border-radius: 1px solid #dddddd;
}
@media only screen and (max-width: 575.98px) {
    .single-info-overview .single-info-input .nice-select {
        margin-bottom: 30px;
    }
}
.single-info-overview .single-info-input .nice-select .list {
    width: 100%;
}
.single-info-overview .single-info-input .nice-select::after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    right: 20px;
    height: 8px;
    width: 8px;
}
.single-info-overview .single-info-input .nice-select .nice-select-search-box {
    height: 50px;
}
.single-info-overview .single-info-input .nice-select .nice-select-search {
    vertical-align: top;
}

.single-confirm-overview {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 30px;
}
@media only screen and (max-width: 575.98px) {
    .single-confirm-overview {
        display: block;
    }
}
.single-confirm-overview .single-confirm {
    width: 100%;
    background: rgba(29, 191, 115, 0.1);
    padding: 30px;
    border-radius: 20px;
}
@media only screen and (max-width: 575.98px) {
    .single-confirm-overview .single-confirm {
        text-align: center;
    }
}
.single-confirm-overview .single-confirm:nth-child(2n+2) {
    background: rgba(255, 107, 44, 0.1);
}
.single-confirm-overview .single-confirm .titles {
    font-size: 32px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 20px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .single-confirm-overview .single-confirm .titles {
        font-size: 28px;
        line-height: 28px;
        margin-bottom: 15px;
    }
}
@media only screen and (max-width: 575.98px) {
    .single-confirm-overview .single-confirm .titles {
        font-size: 26px;
        line-height: 28px;
        margin-bottom: 15px;
    }
}
.single-confirm-overview .single-confirm .details {
    display: block;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .single-confirm-overview .single-confirm .details {
        font-size: 17px;
        line-height: 24px;
    }
}
@media only screen and (max-width: 575.98px) {
    .single-confirm-overview .single-confirm .details {
        font-size: 15px;
    }
}

.booking-info .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 40px;
}
@media only screen and (max-width: 575.98px) {
    .booking-info .title {
        font-size: 26px;
        line-height: 28px;
        margin-bottom: 30px;
    }
}
.booking-info .booking-details .booking-list {
    padding: 0;
}
.booking-info .booking-details .booking-list.style-02 .lists:not(:last-child) {
    margin-bottom: 20px;
}
.booking-info .booking-details .booking-list .lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.booking-info .booking-details .booking-list .lists:not(:last-child) {
    margin-bottom: 40px;
}
@media only screen and (max-width: 575.98px) {
    .booking-info .booking-details .booking-list .lists:not(:last-child) {
        margin-bottom: 15px;
    }
}
.booking-info .booking-details .booking-list .lists .list-span {
    display: block;
    color: var(--extra-light-color);
    font-size: 16px;
    line-height: 26px;
    min-width: 140px;
}
@media only screen and (max-width: 575.98px) {
    .booking-info .booking-details .booking-list .lists .list-span {
        font-size: 14px;
        min-width: 80px;
    }
}
.booking-info .booking-details .booking-list .lists .list-strong {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    color: var(--heading-color);
    max-width: 390px;
}
@media only screen and (max-width: 575.98px) {
    .booking-info .booking-details .booking-list .lists .list-strong {
        font-size: 14px;
        max-width: 100%;
    }
}

.confirm-payment {
    padding: 20px 0;
}
.confirm-payment.payment-border {
    border-bottom: 1px solid #dddddd;
}
.confirm-payment .single-checkbox .checkbox-inlines {
    padding-top: 10px;
}
.confirm-payment .single-checkbox .checkbox-inlines .check-input {
    margin-top: 6px;
}
.confirm-payment .single-checkbox .checkbox-inlines .checkbox-label {
    font-size: 16px;
    line-height: 26px;
    font-family: var(--heading-font);
    font-weight: 400;
}

.bottom-checkbox {
    padding-top: 20px;
}
.bottom-checkbox .checkbox-label {
    font-size: 16px !important;
    line-height: 26px !important;
    font-family: var(--body-font);
}
.bottom-checkbox .checkbox-label a {
    color: #1492E6;
    display: inline-block;
}

/* Join area */
.join-area {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

@media only screen and (max-width: 480px) {
    .join-shapes {
        display: none;
    }
}
.join-shapes img {
    position: absolute;
    z-index: -1;
}
.join-shapes img:nth-child(1) {
    top: 100px;
    left: 180px;
    -webkit-animation: scale-updown 4s linear infinite;
    animation: scale-updown 4s linear infinite;
}
.join-shapes img:nth-child(2) {
    bottom: 60px;
    right: 180px;
    -webkit-animation: scale-updown 5s linear infinite;
    animation: scale-updown 5s linear infinite;
}
.join-shapes img:nth-child(3) {
    bottom: 70px;
    left: 110px;
    -webkit-animation: floatings 4s linear infinite;
    animation: floatings 4s linear infinite;
}
.join-shapes img:nth-child(4) {
    top: 60px;
    right: -70px;
    -webkit-animation: floatings-leftright 4s linear infinite;
    animation: floatings-leftright 4s linear infinite;
}

.join-content-wrapper {
    max-width: 970px;
    text-align: center;
    margin: 0 auto;
}
@media only screen and (max-width: 575.98px) {
    .join-content-wrapper {
        min-width: 100%;
    }
}

.join-contents .title {
    font-size: 65px;
    font-weight: 700;
    line-height: 85px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .join-contents .title {
        font-size: 55px;
        line-height: 70px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .join-contents .title {
        font-size: 50px;
        line-height: 65px;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .join-contents .title {
        font-size: 40px;
        line-height: 50px;
    }
}
@media only screen and (max-width: 767.98px) {
    .join-contents .title {
        font-size: 35px;
    }
}
@media only screen and (max-width: 375px) {
    .join-contents .title {
        font-size: 25px;
        line-height: 35px;
    }
}
.join-contents .join-para {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    margin-top: 40px;
    display: block;
    color: var(--light-color);
}
@media only screen and (max-width: 767.98px) {
    .join-contents .join-para {
        font-size: 20px;
        margin-top: 25px;
    }
}
@media only screen and (max-width: 480px) {
    .join-contents .join-para {
        font-size: 18px;
        margin-top: 20px;
        line-height: 28px;
    }
}
@media only screen and (max-width: 375px) {
    .join-contents .join-para {
        font-size: 18px;
        line-height: 24px;
    }
}

@-webkit-keyframes floatings {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }
    50% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    100% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }
}
@keyframes floatings {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }
    50% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    100% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }
}
@-webkit-keyframes floatings-leftright {
    0% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }
    50% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
    100% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }
}
@keyframes floatings-leftright {
    0% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }
    50% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
    100% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }
}
@-webkit-keyframes scale-updown {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
    }
    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}
@keyframes scale-updown {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
    }
    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}
/* Signup area */
.signup-wrapper {
    padding: 80px 100px;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    max-width: 650px;
    margin: 0 auto;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .signup-wrapper {
        padding: 70px 50px;
    }
}
@media only screen and (max-width: 575.98px) {
    .signup-wrapper {
        padding: 30px 20px;
    }
}
@media only screen and (max-width: 375px) {
    .signup-wrapper {
        padding: 30px 10px;
    }
}

.signup-contents .signup-title {
    font-size: 35px;
    line-height: 55px;
    font-weight: 700;
    text-align: center;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .signup-contents .signup-title {
        font-size: 28px;
    }
}
@media only screen and (max-width: 375px) {
    .signup-contents .signup-title {
        font-size: 25px;
    }
}

.signup-forms .single-signup .signup-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--heading-font);
    color: var(--heading-color);
    line-height: 26px;
    margin-bottom: 12px;
}
.signup-forms .single-signup .form--control {
    height: 60px;
    line-height: 60px;
    padding: 0 20px;
    border: 1px solid #F2F3F5;
    width: 100%;
    font-size: 14px;
    line-height: 22px;
    -webkit-box-shadow: 0 0 15px #fff;
    box-shadow: 0 0 15px #fff;
    border-radius: 5px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.signup-forms .single-signup .form--control:focus {
    -webkit-box-shadow: 0 0 10px rgba(29, 191, 115, 0.2);
    box-shadow: 0 0 10px rgba(29, 191, 115, 0.2);
}
.signup-forms button {
    width: 100%;
    border: 0;
    outline: none;
    background: var(--main-color-one);
    color: #fff;
    height: 60px;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 25px;
}
.signup-forms .bottom-register {
    display: block;
    font-size: 14px;
    margin-top: 20px;
}
.signup-forms .bottom-register .resgister-link {
    font-weight: 500;
    color: var(--heading-color);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.signup-forms .bottom-register .resgister-link:hover {
    color: var(--main-color-one);
}

.signup-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 20px;
}
.signup-checkbox .checkbox-inlines .checkbox-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--extra-light-color);
}
.signup-checkbox .forgot-btn .forgot-pass {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.signup-checkbox .forgot-btn .forgot-pass:hover {
    color: var(--main-color-one);
}

/* Register Step area */
.registration-seller-btn .registration-tabs {
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0;
}
@media only screen and (max-width: 480px) {
    .registration-seller-btn .registration-tabs {
        gap: 20px;
    }
}
.registration-seller-btn .registration-tabs li {
    border: 1px solid var(--main-color-three);
    padding: 7px 20px;
    border-radius: 5px;
    cursor: pointer;
    background: #fff;
    position: relative;
    z-index: 1;
    margin: 10px 0;
}
@media only screen and (max-width: 480px) {
    .registration-seller-btn .registration-tabs li {
        padding: 7px 15px;
    }
}
.registration-seller-btn .registration-tabs li.active {
    background: var(--main-color-one);
    border-color: var(--main-color-one);
}
.registration-seller-btn .registration-tabs li.active::after {
    font-family: "Line Awesome Free";
    font-weight: 900;
    content: "";
    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;
    height: 27px;
    width: 27px;
    border: 2px solid #fff;
    background: var(--main-color-one);
    color: #fff;
    font-size: 16px;
    border-radius: 50%;
    position: absolute;
    top: -14px;
    right: -13px;
}
.registration-seller-btn .registration-tabs li.active .single-tabs-registration .icon {
    background: #fff;
    color: var(--main-color-one);
}
.registration-seller-btn .registration-tabs li.active .single-tabs-registration .contents .title {
    color: #fff;
}

.single-tabs-registration {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}
@media only screen and (max-width: 480px) {
    .single-tabs-registration {
        gap: 10px;
    }
}
.single-tabs-registration .icon {
    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;
    height: 41px;
    width: 41px;
    border-radius: 50%;
    background: var(--main-color-three);
    color: #fff;
    font-size: 24px;
}
.single-tabs-registration .contents .title {
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    margin: 0;
    color: var(--main-color-three);
}
@media only screen and (max-width: 480px) {
    .single-tabs-registration .contents .title {
        font-size: 20px;
    }
}

.registration-list {
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.registration-list.step-list-two .list.active .list-click {
    background: var(--main-color-one);
    color: #fff;
    border-color: var(--main-color-one);
}
.registration-list.step-list-two .list.active .list-click::after {
    background: var(--main-color-one);
}
.registration-list .list:not(:last-child) {
    padding-right: 70px;
}
.registration-list .list:not(:last-child) .list-click::after {
    position: absolute;
    content: "";
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -55px;
    background: #ddd;
    height: 2px;
    width: 40px;
}
.registration-list .list .list-click {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--heading-font);
    color: var(--extra-light-color);
    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;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    position: relative;
}

/* Information */
.fieldset-info {
    max-width: 730px;
    margin: 0 auto;
}

.fieldset-service {
    max-width: 450px;
    margin: 0 auto;
}

.fieldset-condition {
    max-width: 360px;
    margin: 0 auto;
}

.information-all .register-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    text-align: center;
}
.information-all .info-forms {
    max-width: 730px;
    margin: 0 auto;
}
.information-all .info-service {
    max-width: 450px;
    margin: 0 auto;
}
.information-all .condition-info {
    max-width: 390px;
    margin: 0 auto;
}
.information-all .info-success {
    max-width: 360px;
    margin: 0 auto;
}

.single-forms {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}
@media only screen and (max-width: 575.98px) {
    .single-forms {
        display: block;
    }
}
.single-forms .single-content {
    width: 100%;
}
.single-forms .forms-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--heading-font);
    color: var(--heading-color);
    line-height: 26px;
    margin-bottom: 12px;
}
.single-forms .form--control {
    height: 60px;
    line-height: 60px;
    padding: 0 20px;
    border: 1px solid #F2F3F5;
    width: 100%;
    font-size: 14px;
    line-height: 22px;
    -webkit-box-shadow: 0 0 15px #fff;
    box-shadow: 0 0 15px #fff;
    border-radius: 5px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.single-forms .form--control:focus {
    -webkit-box-shadow: 0 0 10px rgba(29, 191, 115, 0.2);
    box-shadow: 0 0 10px rgba(29, 191, 115, 0.2);
}

/* Service */
.info-service {
    display: flow-root;
}
.info-service .single-info-service:not(:last-child) .single-content .nice-select {
    margin-bottom: 30px;
}
.info-service .single-info-service .single-content .forms-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
    font-family: var(--heading-font);
}
/* Terms & Condition */
.condition-info .single-condition .condition-content .checkbox-inlines {
    gap: 20px;
}
.condition-info .single-condition .condition-content .checkbox-inlines .checkbox-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--extra-light-color);
    line-height: 22px;
}

/* info Successful */
.info-success .single-success .success-content {
    text-align: center;
}
.info-success .single-success .success-content .icon {
    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;
    height: 120px;
    width: 120px;
    background: var(--main-color-one);
    color: #fff;
    font-size: 70px;
    border-radius: 50%;
    margin: 0 auto;
}
.info-success .single-success .success-content .success-title {
    font-size: 35px;
    font-weight: 700;
    line-height: 55px;
    margin-top: 35px;
}

@media (min-width: 320px) and (max-width: 991.98px) {
    .registration-step-form.margin-top-55 {
        margin-top: 30px;
    }
}

@media (min-width: 320px) and (max-width: 991.98px) {
    .information-all.margin-top-55 {
        margin-top: 30px;
    }
}

/* Service Details area */
.service-details-inner .details-thumb img {
    border-radius: 10px;
    width: 100%;
}

.details-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    border-bottom: 2px solid #ddd;
}
.details-tabs .list {
    font-size: 16px;
    font-weight: 500;
    color: var(--extra-light-color);
    padding-bottom: 20px;
    margin-bottom: -2px;
    cursor: pointer;
}
.details-tabs .list:not(:last-child) {
    margin-right: 50px;
}
@media only screen and (max-width: 480px) {
    .details-tabs .list:not(:last-child) {
        margin-right: 30px;
    }
}
@media only screen and (max-width: 375px) {
    .details-tabs .list:not(:last-child) {
        margin-right: 20px;
    }
}
.details-tabs .list.active {
    border-bottom: 2px solid var(--main-color-one);
    color: var(--heading-color);
    font-weight: 700;
}
@media only screen and (max-width: 480px) {
    .details-tabs .list {
        font-size: 15px;
    }
}

.details-content-tab .details-tap-para {
    margin-top: 30px;
    font-size: 16px;
    line-height: 26px;
    color: var(--light-color);
}

.service-details-package {
    position: sticky;
    top: 0;
}

.single-packages {
    padding: 30px;
    border: 1px solid rgba(221, 221, 221, 0.5);
    border-radius: 10px;
}
.single-packages .package-price {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.single-packages .package-price li {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    font-family: var(--heading-font);
    line-height: 34px;
}
.single-packages .details-available-price .tilte-available {
    font-weight: 600;
    line-height: 26px;
    font-size: 16px;
    margin-bottom: 18px;
}
.single-packages .details-available-price .available-list {
    padding: 0;
}
.single-packages .details-available-price .available-list li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    color: var(--light-color);
    margin-top: 12px;
}
.single-packages .details-available-price .available-list li::before {
    content: "";
    font-family: "Line Awesome Free";
    font-weight: 900;
    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;
    font-size: 14px;
    height: 18px;
    width: 18px;
    border: 1px solid var(--main-color-one);
    border-radius: 50%;
    color: var(--main-color-one);
}
.single-packages button {
    width: 100%;
    height: 50px;
    font-size: 16px;
    color: #fff;
    background-color: var(--main-color-one);
    border-radius: 10px;
    border: 0;
    outline: none;
    margin-top: 15px;
    cursor: pointer;
}

.order-pagkages .single-order {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: var(--light-color);
    background: rgba(29, 191, 115, 0.2);
    margin-top: 20px;
    height: 80px;
    border-radius: 10px;
    line-height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
}
.order-pagkages .single-order i {
    background: var(--main-color-one);
    color: #fff;
    height: 27px;
    width: 27px;
    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;
    border-radius: 50%;
    font-size: 18px;
}
.order-pagkages .single-order:nth-child(2n+2) {
    background: rgba(255, 107, 44, 0.2);
}
.order-pagkages .single-order:nth-child(2n+2) i {
    background: var(--main-color-three);
}

/* About Seller tab */
.about-seller-flex-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}
@media only screen and (max-width: 480px) {
    .about-seller-flex-content {
        display: block;
    }
}
.about-seller-flex-content.style-02 {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 40px 0;
}
@media only screen and (max-width: 575.98px) {
    .about-seller-flex-content.style-02 {
        padding: 30px 0;
    }
}
.about-seller-flex-content.style-02:not(:first-child) {
    border-top: 2px solid rgba(221, 221, 221, 0.5);
}
.about-seller-flex-content.style-03 {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.about-seller-flex-content.style-03:not(:first-child) {
    padding-top: 40px;
}
.about-seller-flex-content .about-seller-thumb {
    height: 80px;
    min-width: 80px;
    border-radius: 10px;
    display: block;
}
@media only screen and (max-width: 480px) {
    .about-seller-flex-content .about-seller-thumb {
        width: 80px;
        margin-bottom: 15px;
    }
}
.about-seller-flex-content .about-seller-thumb img {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.about-seller-flex-content .about-seller-content .title {
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
}
.about-seller-flex-content .about-seller-content .about-seller-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px;
}
.about-seller-flex-content .about-seller-content .about-seller-list .icon {
    color: var(--main-color-three);
    font-size: 12px;
}
.about-seller-flex-content .about-seller-content .about-seller-list .reviews {
    margin-left: 10px;
}
.about-seller-flex-content .about-seller-content .about-review-para {
    font-size: 16px;
    font-weight: 400;
    color: var(--light-color);
    margin-top: 20px;
    line-height: 26px;
}
.about-seller-flex-content .about-seller-content .review-date {
    margin-top: 20px;
    display: block;
}

.seller-details-box {
    border: 1px solid rgba(221, 221, 221, 0.5);
    padding: 30px;
    border-radius: 10px;
}
@media only screen and (max-width: 480px) {
    .seller-details-box {
        padding: 20px 10px;
    }
}
.seller-details-box .seller-box-list {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}
@media only screen and (max-width: 480px) {
    .seller-details-box .seller-box-list {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
}
.seller-details-box .seller-box-list .box-list {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 30px;
}
.seller-details-box .seller-box-list .box-list strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
    font-family: var(--heading-font);
    line-height: 28px;
    margin-top: 10px;
}
.seller-details-box .seller-details-para {
    font-size: 16px;
    line-height: 26px;
    color: var(--light-color);
}
@media only screen and (max-width: 480px) {
    .seller-details-box .seller-details-para {
        font-size: 14px;
    }
}
@media only screen and (max-width: 375px) {
    .seller-details-box .seller-details-para {
        font-size: 14px;
    }
}

/* Blog Details */
.single-blog-details:not(:first-child) {
    margin-top: 35px;
}
.single-blog-details .tags {
    margin-top: 30px;
}
.single-blog-details .thumb img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.single-blog-details .details-para {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    margin-top: 30px;
    color: var(--light-color);
}
@media only screen and (max-width: 767.98px) {
    .single-blog-details .details-para {
        font-size: 15px;
    }
}
@media only screen and (max-width: 375px) {
    .single-blog-details .details-para {
        font-size: 14px;
    }
}
.single-blog-details blockquote {
    background: var(--main-color-one);
    padding: 25px 80px;
    margin-top: 35px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .single-blog-details blockquote {
        padding: 20px 20px 20px 40px;
    }
}
.single-blog-details blockquote .content .blackquote-title {
    font-size: 32px;
    font-weight: 600;
    position: relative;
    line-height: 50px;
    color: #fff;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .single-blog-details blockquote .content .blackquote-title {
        font-size: 28px;
        line-height: 36px;
    }
}
@media only screen and (max-width: 767.98px) {
    .single-blog-details blockquote .content .blackquote-title {
        font-size: 26px;
    }
}
@media only screen and (max-width: 480px) {
    .single-blog-details blockquote .content .blackquote-title {
        font-size: 25px;
    }
}
@media only screen and (max-width: 375px) {
    .single-blog-details blockquote .content .blackquote-title {
        font-size: 22px;
    }
}
.single-blog-details blockquote .content .blackquote-title::before {
    font-family: "Line Awesome Free";
    font-weight: 900;
    content: "";
    margin-left: -30px;
}

.blog-details-thumb-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 30px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .blog-details-thumb-flex {
        display: block;
    }
}
.blog-details-thumb-flex .thumb {
    min-width: 540px;
    height: 340px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .blog-details-thumb-flex .thumb {
        margin-bottom: 30px;
        min-width: 100%;
        height: auto;
    }
}
@media only screen and (max-width: 575.98px) {
    .blog-details-thumb-flex .thumb {
        min-width: 100%;
        height: auto;
    }
}

/* Comment area */
.details-comment-content .single-commetns {
    width: 100%;
    margin-top: 30px;
}
.details-comment-content .single-commetns .comment-label {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    color: var(--heading-color);
    display: block;
    margin-bottom: 15px;
}
.details-comment-content .single-commetns .form--control {
    height: 60px;
    border: 1px solid rgba(221, 221, 221, 0.5);
    outline: none;
    -webkit-box-shadow: 0 0 10px #fff;
    box-shadow: 0 0 10px #fff;
    font-size: 14px;
    line-height: 22px;
    color: var(--light-color);
    padding: 0 20px;
    width: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.details-comment-content .single-commetns .form--control:focus {
    -webkit-box-shadow: 0 0 18px rgba(29, 191, 115, 0.1);
    box-shadow: 0 0 18px rgba(29, 191, 115, 0.1);
    border-color: rgba(29, 191, 115, 0.3);
}
.details-comment-content .single-commetns .form--message {
    padding: 20px 20px;
    height: 160px;
}
.details-comment-content button {
    font-size: 18px;
    font-weight: 500;
    line-height: 34px;
    background: var(--main-color-one);
    color: #fff;
    border: 0;
    outline: none;
    border-radius: 5px;
    padding: 12px 35px;
    border: 2px solid var(--main-color-one);
    cursor: pointer;
    margin-top: 35px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.details-comment-content button:hover {
    background: none;
    color: var(--main-color-one);
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .details-comment-content button {
        font-size: 16px;
        padding: 10px 30px;
    }
}

.comments-flex-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 30px;
}
@media only screen and (max-width: 575.98px) {
    .comments-flex-item {
        display: block;
    }
}

/* Details Tag area */
.social-share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
@media only screen and (max-width: 480px) {
    .social-share {
        display: block;
    }
}
.social-share .share-tiitle {
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
}
.social-share ul {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.social-share ul li a {
    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;
    height: 40px;
    width: 40px;
    font-size: 18px;
    color: #fff;
    margin-left: 15px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .social-share ul li a {
        height: 35px;
        width: 35px;
        font-size: 16px;
        margin: 5px 5px;
    }
}

.tag-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .tag-list {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}
@media only screen and (max-width: 480px) {
    .tag-list {
        display: block;
    }
}
.tag-list .tag-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .tag-list .tag-title {
        font-size: 20px;
    }
}
@media only screen and (max-width: 480px) {
    .tag-list .tag-title {
        font-size: 18px;
    }
}
.tag-list ul {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.tag-list ul li a {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    padding: 10px 35px;
    border: 1px solid rgba(221, 221, 221, 0.5);
    margin-left: 15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .tag-list ul li a {
        margin: 5px 5px;
        padding: 7px 20px;
    }
}
@media only screen and (max-width: 480px) {
    .tag-list ul li a {
        padding: 7px 20px;
    }
}
.tag-list ul li a:hover {
    background: var(--main-color-one);
    color: #fff;
}

/* Contact area */
.contact-promo-area div[class*=col]:nth-child(3n+2) .single-contacts .contact-icon {
    background: var(--main-color-one);
}
.contact-promo-area div[class*=col]:nth-child(3n+3) .single-contacts .contact-icon {
    background: var(--main-color-two);
}

.single-contacts {
    text-align: center;
    background: rgba(255, 107, 44, 0.1);
    padding: 30px;
    border-radius: 5px;
    height: 100%;
}
.single-contacts .contact-icon {
    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;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    font-size: 40px;
    color: #fff;
    background: var(--main-color-three);
    text-align: center;
    margin: 0 auto;
}
.single-contacts .contacts-contents .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    margin-top: 20px;
}
.single-contacts .contacts-contents .item-contents {
    margin-top: 15px;
}
.single-contacts .contacts-contents .item-contents .item {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--light-color);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.single-contacts .contacts-contents .item-contents .item:hover {
    color: var(--main-color-one);
}
@media only screen and (max-width: 480px) {
    .single-contacts .contacts-contents .item-contents .item {
        font-size: 15px;
    }
}
@media only screen and (max-width: 375px) {
    .single-contacts .contacts-contents .item-contents .item {
        font-size: 14px;
    }
}

/* About area */
.about-thumb-content {
    position: relative;
    z-index: 2;
    padding-right: 50px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .about-thumb-content {
        padding-right: 0;
    }
}
.about-thumb-content .about-shape img {
    position: absolute;
    left: -80px;
    top: -50px;
    z-index: -1;
}
.about-thumb-content .about-thumb {
    position: relative;
    z-index: 2;
}
.about-thumb-content .about-thumb img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}
.about-thumb-content .about-thumb .about-experience {
    background: var(--main-color-three);
    border: 5px solid #fff;
    color: #fff;
    text-align: center;
    display: inline-block;
    padding: 25px 30px 35px;
    border-radius: 10px;
    position: absolute;
    bottom: -40px;
    right: 30px;
    z-index: 9;
}
@media only screen and (max-width: 575.98px) {
    .about-thumb-content .about-thumb .about-experience {
        bottom: -5px;
    }
}
.about-thumb-content .about-thumb .about-experience .years-tiitle {
    font-size: 35px;
    font-weight: 700;
    color: #fff;
    line-height: 55px;
    margin: 0;
}
@media only screen and (max-width: 575.98px) {
    .about-thumb-content .about-thumb .about-experience .years-tiitle {
        font-size: 28px;
        line-height: 32px;
    }
}
@media only screen and (max-width: 375px) {
    .about-thumb-content .about-thumb .about-experience .years-tiitle {
        font-size: 24px;
    }
}
.about-thumb-content .about-thumb .about-experience .experience-tiitle {
    color: #fff;
    font-size: 24px;
    line-height: 36px;
    margin: 0;
}
@media only screen and (max-width: 575.98px) {
    .about-thumb-content .about-thumb .about-experience .experience-tiitle {
        font-size: 18px;
        line-height: 30px;
    }
}
@media only screen and (max-width: 375px) {
    .about-thumb-content .about-thumb .about-experience .experience-tiitle {
        font-size: 15px;
    }
}

.single-about .about-title {
    font-size: 45px;
    font-weight: 700;
    line-height: 55px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .single-about .about-title {
        font-size: 36px;
        line-height: 30px;
    }
}
@media only screen and (max-width: 575.98px) {
    .single-about .about-title {
        font-size: 32px;
    }
}
@media only screen and (max-width: 375px) {
    .single-about .about-title {
        font-size: 28px;
    }
}
.single-about .about-contents {
    padding-top: 5px;
}
.single-about .about-contents .about-para {
    margin-top: 25px;
    font-size: 16px;
    line-height: 28px;
    color: var(--light-color);
}

/* Client logo area */
.clientlogo-slider .slick-list {
    margin: -15px;
}

.single-clientlogo {
    margin: 15px;
}
.single-clientlogo .thumb img {
    margin: 0 auto;
    text-align: center;
}

/* Error area */
.error-wrapper {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}
.error-wrapper .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.error-wrapper .contents .title {
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .error-wrapper .contents .title {
        font-size: 32px;
        line-height: 36px;
    }
}
@media only screen and (max-width: 480px) {
    .error-wrapper .contents .title {
        font-size: 28px;
    }
}
@media only screen and (max-width: 375px) {
    .error-wrapper .contents .title {
        font-size: 24px;
    }
}

/* Profile */
.profile-flex-content {
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .profile-flex-content {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 20px;
    }
}
.profile-flex-content .thumb {
    height: 120px;
    min-width: 120px;
    border-radius: 10px;
}
.profile-flex-content .thumb img {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.profile-flex-content .profile-contents .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
}
.profile-flex-content .profile-contents .profiles-review {
    font-size: 16px;
    line-height: 28px;
}
.profile-flex-content .profile-contents .profiles-review .icon {
    color: var(--main-color-three);
}
.profile-flex-content .profile-contents .profiles-review .reviews b {
    color: var(--light-color);
    padding: 0 3px;
}

.profile-about {
    padding: 0;
    text-align: center;
}
.profile-about li {
    font-size: 16px;
    font-weight: 400;
}
.profile-about li:not(:last-child) {
    margin-bottom: 20px;
}
.profile-about li span {
    font-weight: 500;
    color: var(--heading-color);
    display: inline-block;
    padding-left: 10px;
}

.profile-single-achieve {
    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;
    gap: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.profile-single-achieve.style-02 {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .profile-single-achieve.style-02 {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.profile-single-achieve .single-achieve {
    background: var(--main-color-one);
    border-radius: 10px;
    height: 180px;
    min-width: 180px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    color: #fff;
}
.profile-single-achieve .single-achieve:nth-child(2n+2) {
    background: var(--main-color-three);
}
.profile-single-achieve .single-achieve:nth-child(2n+2) .icon {
    color: var(--main-color-three);
}
.profile-single-achieve .single-achieve .icon {
    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;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--main-color-one);
    font-size: 20px;
    margin: 0 auto;
}
.profile-single-achieve .single-achieve .contents .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 36px;
    color: #fff;
}
.profile-single-achieve .single-achieve .contents .ratings-span {
    line-height: 20px;
    font-size: 18px;
    color: #fff;
    display: block;
}

/* Dashboard area */
.dashboard-left-content {
    background: var(--main-color-one);
    color: #fff;
    text-align: center;
    padding: 0;
    border-radius: 20px;
    display: block;
    width: 280px;
    position: fixed;
    height: calc(100vh - 90px);
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .dashboard-left-content {
        width: 260px;
        height: calc(100vh - 40px);
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .dashboard-left-content {
        width: 260px;
        height: calc(100vh - 60px);
    }
}
@media only screen and (max-width: 480px) {
    .dashboard-left-content {
        width: 260px;
    }
}

.dashboard-top .thumb {
    height: 100px;
    width: 100px;
    margin: 0 auto;
}
.dashboard-top .thumb img {
    border-radius: 50%;
    border: 3px solid #fff;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.dashboard-top .author-content .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    color: #fff;
    margin-top: 20px;
}
.dashboard-top .author-content .small-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.dashboard-bottom {
    height: calc(100vh - 400px);
    overflow-y: auto;
    padding: 0 10px 0 0;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
    .dashboard-bottom {
        height: calc(100vh - 390px);
    }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .dashboard-bottom {
        height: calc(100vh - 340px);
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .dashboard-bottom {
        height: calc(100vh - 350px);
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .dashboard-bottom {
        height: calc(100vh - 385px);
    }
}

.dashboard-left-content .nicescroll-cursors {
    background-color: #fff !important;
    width: 4px !important;
    border: 0 !important;
}

.dashboard-list {
    padding-left: 20px;
}
.dashboard-list .list.active > a {
    background: #2BD887;
    font-weight: 500;
}
.dashboard-list .list a {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    padding: 17px 30px;
    cursor: pointer;
    border-radius: 10px 0 0 10px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.dashboard-list .list.has-children.open > a::after {
    content: "";
}
.dashboard-list .list.has-children > a {
    position: relative;
}
.dashboard-list .list.has-children > a::after {
    content: "";
    font-family: "Line Awesome Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    font-size: 18px;
}
.dashboard-list .list.show > .submenu {
    display: block;
}
.dashboard-list .list > .submenu {
    padding-left: 20px;
    display: none;
}
.dashboard-list .list > .submenu .list.has-children > a {
    font-size: 16px;
}
.dashboard-list .list > .submenu .list.selected a {
    color: var(--main-color-one);
    background: #fff;
}
.dashboard-list .list > .submenu .list a {
    font-size: 16px;
    line-height: 22px;
    padding: 5px 15px;
    position: relative;
    font-weight: 400;
    border-radius: 5px 0 0 5px;
    margin-top: 5px;
}

.dashboard-logo .logo {
    background: #0FC393;
    padding: 60px 50px;
    margin: 20px 20px 0;
    border-radius: 10px;
    display: inline-block;
}

.dashboard-right-contents {
    width: 100%;
}

.dashboard-right {
    margin-left: 340px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
    .dashboard-right {
        margin-left: 320px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .dashboard-right {
        margin-left: 300px;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .dashboard-right {
        margin-left: 0;
    }
}

.orders-child:nth-child(4n+2) .single-orders {
    background: var(--main-color-one);
}
.orders-child:nth-child(4n+2) .single-orders .icon {
    color: var(--main-color-one);
}

.orders-child:nth-child(4n+3) .single-orders {
    background: #C71F66;
}
.orders-child:nth-child(4n+3) .single-orders .icon {
    color: #C71F66;
}

.orders-child:nth-child(4n+4) .single-orders {
    background: #6560FF;
}
.orders-child:nth-child(4n+4) .single-orders .icon {
    color: #6560FF;
}

.single-orders {
    background: #FF6B2C;
    padding: 35px 30px;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    /* &::before {
      content: "";
      height: 100%;
      width: 100%;
      left: 0;
      top: 0;
      z-index: -1;
      background-image: url(../img/Dashboard/orders-shapes.png);
  } */
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .single-orders {
        padding: 20px 20px;
    }
}
.single-orders .orders-shapes img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.single-orders .orders-flex-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .single-orders .orders-flex-content {
        display: block;
        text-align: center;
    }
}
.single-orders .orders-flex-content .icon {
    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;
    height: 67px;
    width: 67px;
    font-size: 40px;
    background: #fff;
    color: var(--main-color-three);
    border-radius: 50%;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .single-orders .orders-flex-content .icon {
        margin: 0 auto;
        text-align: center;
    }
}
.single-orders .orders-flex-content .contents .order-titles {
    font-size: 35px;
    font-weight: 700;
    line-height: 55px;
    color: #fff;
    margin: 0;
}
.single-orders .orders-flex-content .contents .order-para {
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    color: #fff;
}

@media (min-width: 1400px) and (max-width: 1730px) {
    .single-orders {
        padding: 20px 20px;
    }

    .single-orders .orders-flex-content {
        display: block;
        text-align: center;
    }

    .single-orders .orders-flex-content .icon {
        margin: 0 auto;
        text-align: center;
    }
}
.dashboard-middle-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 30px;
}
.dashboard-middle-flex.marg-reverse-30 {
    margin-top: -30px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .dashboard-middle-flex {
        display: block;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .dashboard-middle-flex {
        display: block;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .dashboard-middle-flex {
        display: block;
    }
}
.dashboard-middle-flex .single-flex-middle {
    height: 100%;
    width: 50%;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .dashboard-middle-flex .single-flex-middle {
        width: 100%;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .dashboard-middle-flex .single-flex-middle {
        width: 100%;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .dashboard-middle-flex .single-flex-middle {
        width: 100%;
    }
}
.dashboard-middle-flex .single-flex-middle .single-flex-middle-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 30px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .dashboard-middle-flex .single-flex-middle .single-flex-middle-inner {
        display: block;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .dashboard-middle-flex .single-flex-middle .single-flex-middle-inner .line-charts-wrapper .single-chart-summery {
        width: 45%;
    }
}
.dashboard-middle-flex.style-02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 30px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .dashboard-middle-flex.style-02 {
        display: block;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .dashboard-middle-flex.style-02 {
        display: block;
    }
}
.dashboard-middle-flex.style-02 .single-flex-middle {
    width: 50%;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .dashboard-middle-flex.style-02 .single-flex-middle {
        width: 100%;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .dashboard-middle-flex.style-02 .single-flex-middle {
        width: 100%;
    }
}

.line-charts-wrapper {
    border: 1px solid rgba(221, 221, 221, 0.5);
    padding: 20px;
    border-radius: 20px;
    height: 100%;
}
@media only screen and (max-width: 575.98px) {
    .line-charts-wrapper {
        padding: 10px;
    }
}
@media only screen and (max-width: 375px) {
    .line-charts-wrapper {
        padding: 10px 5px;
    }
}
.line-charts-wrapper .line-top-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.line-charts-wrapper .line-top-contents .line-chart-select .nice-select {
    width: 120px;
    background: #F1F6FF;
    color: var(--heading-color);
    font-size: 14px;
    font-weight: 500;
    border: 0;
    outline: none;
    height: 40px;
    line-height: 40px;
}
@media only screen and (max-width: 375px) {
    .line-charts-wrapper .line-top-contents .line-chart-select .nice-select {
        width: 100px;
    }
}
.line-charts-wrapper .line-top-contents .line-chart-select.style-02 .nice-select {
    background: none;
    color: var(--main-color-one);
}
.line-charts-wrapper .earning-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}
.line-charts-wrapper .line-charts canvas {
    width: 100% !important;
    height: 300px !important;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .line-charts-wrapper .line-charts canvas {
        height: 100% !important;
    }
}
.line-charts-wrapper .single-checbox {
    padding: 25px 0;
    border-top: 1px solid rgba(221, 221, 221, 0.5);
}
.line-charts-wrapper .single-checbox .checkbox-inlines .checkbox-label {
    font-size: 14px;
    line-height: 20px;
    color: var(--extra-light-color);
}
.line-charts-wrapper .chart-summery-inner {
    border-top: 1px solid rgba(221, 221, 221, 0.5);
    padding-top: 10px;
}
.line-charts-wrapper .single-chart-summery {
    text-align: center;
    background: rgba(255, 107, 44, 0.2);
    display: inline-block;
    width: 46%;
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
}
.line-charts-wrapper .single-chart-summery:nth-child(4n+2) {
    background: rgba(29, 191, 115, 0.2);
}
.line-charts-wrapper .single-chart-summery:nth-child(4n+2) .icon {
    background: #1DBF73;
}
.line-charts-wrapper .single-chart-summery:nth-child(4n+3) {
    background: rgba(101, 96, 255, 0.2);
}
.line-charts-wrapper .single-chart-summery:nth-child(4n+3) .icon {
    background: #6560FF;
}
.line-charts-wrapper .single-chart-summery:nth-child(4n+4) {
    background: rgba(199, 31, 102, 0.2);
}
.line-charts-wrapper .single-chart-summery:nth-child(4n+4) .icon {
    background: #C71F66;
}
.line-charts-wrapper .single-chart-summery:nth-child(odd) {
    margin-right: 10px;
}
@media only screen and (max-width: 375px) {
    .line-charts-wrapper .single-chart-summery:nth-child(odd) {
        margin-right: 5px;
    }
}
.line-charts-wrapper .single-chart-summery:nth-child(even) {
    margin-left: 10px;
}
.line-charts-wrapper .single-chart-summery .icon {
    background: #FF6B2C;
    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;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    font-size: 20px;
    color: #fff;
    margin: 0 auto;
}
.line-charts-wrapper .single-chart-summery .contents {
    margin-top: 10px;
}
.line-charts-wrapper .single-chart-summery .contents .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin: 0;
}
.line-charts-wrapper .single-chart-summery .contents .title-para {
    font-size: 14px;
    line-height: 20px;
    color: var(--heading-color);
}

.chart-details-top-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0;
    border-bottom: 1px solid rgba(221, 221, 221, 0.5);
    padding: 20px 0 10px;
}
.chart-details-top-list .list {
    font-size: 14px;
    font-weight: 500;
    color: var(--heading-color);
    line-height: 22px;
}

.chart-details-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0;
}
.chart-details-list .list-detail {
    display: block;
}
.chart-details-list .list-detail .list {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: var(--light-color);
    padding: 5px 10px;
    margin: 18px 0;
    border-radius: 5px;
}
.chart-details-list .list-detail .list.completed {
    background: rgba(29, 191, 115, 0.1);
    color: #1DBF73;
    text-align: center;
}
.chart-details-list .list-detail .list.canceled {
    background: rgba(255, 23, 71, 0.1);
    color: #FF1747;
    text-align: center;
}
.chart-details-list .list-detail .list.pending {
    background: rgba(255, 179, 7, 0.1);
    color: #FFB307;
    text-align: center;
}

.group-bar-charts canvas {
    width: 100% !important;
    height: 300px !important;
}

/* Dashboard Profile */
.dashboard-profile .thumb-ad img {
    width: 100%;
}

.profile-info-dashboard .profile-btn-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .profile-info-dashboard .profile-btn-flex {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.dashboards-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 36px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .dashboards-title {
        font-size: 28px;
    }
}
@media only screen and (max-width: 480px) {
    .dashboards-title {
        font-size: 26px;
    }
}
@media only screen and (max-width: 375px) {
    .dashboards-title {
        font-size: 24px;
    }
}

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

.dashboard-profile-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 50px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .dashboard-profile-flex {
        display: block;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .dashboard-profile-flex {
        display: block;
    }
}
.dashboard-profile-flex .thumbs {
    height: 200px;
    min-width: 200px;
    position: relative;
    z-index: 1;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .dashboard-profile-flex .thumbs {
        width: 220px;
        margin-bottom: 30px;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .dashboard-profile-flex .thumbs {
        width: 220px;
        margin-bottom: 30px;
    }
}
.dashboard-profile-flex .thumbs img {
    border-radius: 10px;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.dashboard-profile-flex .thumbs .edit-thumb {
    position: absolute;
    left: 50%;
    bottom: -18px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 9;
}
.dashboard-profile-flex .thumbs .edit-thumb i {
    color: #fff;
    background: var(--main-color-three);
    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;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    font-size: 20px;
}

.dashboard-address-details {
    width: 100%;
}
.dashboard-address-details .details-list {
    padding: 0;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}
@media only screen and (max-width: 575.98px) {
    .dashboard-address-details .details-list {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
}
.dashboard-address-details .details-list.column-count-one {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
}
.dashboard-address-details .details-list.column-count-one .lists {
    padding-top: 25px;
}
.dashboard-address-details .details-list.column-count-one .lists .list-strong {
    font-size: 16px;
    font-weight: 400;
    line-height: 34px;
    color: var(--heading-color);
    max-width: 680px;
}
@media only screen and (max-width: 480px) {
    .dashboard-address-details .details-list.column-count-one .lists .list-strong {
        font-size: 15px;
        line-height: 30px;
    }
}
.dashboard-address-details .details-list.column-count-one .lists .list-strong b {
    display: block;
    font-weight: 400;
    padding-top: 30px;
}
.dashboard-address-details .details-list .lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.dashboard-address-details .details-list .lists:not(:last-child) {
    margin-bottom: 25px;
}
.dashboard-address-details .details-list .lists .list-span {
    display: block;
    color: var(--extra-light-color);
    font-size: 16px;
    line-height: 26px;
    min-width: 140px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .dashboard-address-details .details-list .lists .list-span {
        min-width: 120px;
    }
}
@media only screen and (max-width: 767.98px) {
    .dashboard-address-details .details-list .lists .list-span {
        min-width: 80px;
    }
}
@media only screen and (max-width: 480px) {
    .dashboard-address-details .details-list .lists .list-span {
        font-size: 14px;
    }
}
.dashboard-address-details .details-list .lists .list-strong {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    color: var(--heading-color);
    max-width: 390px;
}
@media only screen and (max-width: 480px) {
    .dashboard-address-details .details-list .lists .list-strong {
        font-size: 14px;
    }
}

.single-dashboard-input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .single-dashboard-input {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: unset;
    }
}
@media only screen and (max-width: 575.98px) {
    .single-dashboard-input {
        display: block;
    }
}
.single-dashboard-input .single-info-input {
    width: 100%;
}
.single-dashboard-input .single-info-input .info-title {
    display: block;
    font-family: var(--heading-font);
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
}
.single-dashboard-input .single-info-input .form--control {
    font-size: 14px;
    line-height: 22px;
    color: var(--light-color);
    height: 60px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    padding: 0 20px;
    width: 100%;
}
.single-dashboard-input .single-info-input .form--control::-webkit-input-placeholder {
    font-size: 14px;
    color: var(--extra-light-color);
}
.single-dashboard-input .single-info-input .form--control::-moz-placeholder {
    font-size: 14px;
    color: var(--extra-light-color);
}
.single-dashboard-input .single-info-input .form--control:-ms-input-placeholder {
    font-size: 14px;
    color: var(--extra-light-color);
}
.single-dashboard-input .single-info-input .form--control::-ms-input-placeholder {
    font-size: 14px;
    color: var(--extra-light-color);
}
.single-dashboard-input .single-info-input .form--control::placeholder {
    font-size: 14px;
    color: var(--extra-light-color);
}
.single-dashboard-input .single-info-input .textarea--form {
    padding: 20px;
    height: 162px;
}
.single-dashboard-input .single-info-input .nice-select {
    width: 100%;
    height: 60px;
    line-height: 60px;
    border-radius: 1px solid #dddddd;
}
@media only screen and (max-width: 575.98px) {
    .single-dashboard-input .single-info-input .nice-select {
        margin-bottom: 30px;
    }
}
.single-dashboard-input .single-info-input .nice-select .list {
    width: 100%;
}
.single-dashboard-input .single-info-input .nice-select::after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    right: 20px;
    height: 8px;
    width: 8px;
}
.single-dashboard-input .single-info-input .nice-select .nice-select-search-box {
    height: 50px;
}
.single-dashboard-input .single-info-input .nice-select .nice-select-search {
    vertical-align: top;
}

/* Dashboard Settings */
/* Order Status */
.dashboard-status-list .status-order-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
}
.dashboard-status-list .status-order-list li {
    background: #F1F6FF;
    color: var(--heading-color);
    height: 55px;
    padding: 0 30px;
    border-radius: 5px;
    font-size: 16px;
    line-height: 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .dashboard-status-list .status-order-list li {
        height: 50px;
        padding: 0 20px;
        font-size: 15px;
        margin: 0px;
    }
}
@media only screen and (max-width: 375px) {
    .dashboard-status-list .status-order-list li {
        padding: 0 12px;
    }
}
.dashboard-status-list .status-order-list li.active {
    background: var(--main-color-one);
    color: #fff;
}
.dashboard-status-list .status-order-list li.active .numbers {
    background: #fff;
    color: var(--main-color-one);
}
.dashboard-status-list .status-order-list li .numbers {
    font-size: 14px;
    font-weight: 600;
    background: var(--main-color-one);
    color: #fff;
    border-radius: 50%;
    display: inline-block;
    padding: 6px 5px;
    margin-left: 10px;
    line-height: 1;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .dashboard-status-list .status-order-list li .numbers {
        font-size: 12px;
    }
}

.custom--table {
    border-collapse: separate;
    border-spacing: 0 18px;
}
.custom--table thead {
    border-bottom: 1px solid rgba(221, 221, 221, 0.5);
    line-height: 50px;
}
.custom--table thead tr th {
    border-bottom: 1px solid rgba(221, 221, 221, 0.5);
}
.custom--table tbody tr td.completed {
    background: rgba(29, 191, 115, 0.1);
    color: #1DBF73;
    text-align: center;
    border-radius: 5px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .custom--table tbody tr td.completed {
        text-align: right;
    }
}
.custom--table tbody tr td.canceled {
    background: rgba(255, 23, 71, 0.1);
    color: #FF1747;
    text-align: center;
    border-radius: 5px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .custom--table tbody tr td.canceled {
        text-align: right;
    }
}
.custom--table tbody tr td.pending {
    background: rgba(255, 179, 7, 0.1);
    color: #FFB307;
    text-align: center;
    border-radius: 5px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .custom--table tbody tr td.pending {
        text-align: right;
    }
}
.custom--table tbody tr td .icon {
    padding: 0 5px;
}
.custom--table tbody tr td .icon.eye-icon {
    color: var(--main-color-one);
}
.custom--table tbody tr td .icon.print-icon {
    color: var(--main-color-three);
}
.custom--table tbody tr td .icon.color-three {
    color: var(--main-color-three);
    font-size: 18px;
}

/* [data-label*="Summary"] {
    @include responsive(vxxs) {
    }
} */
/* Order Pending */
.dashboard-order-single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border: 1px solid rgba(221, 221, 221, 0.5);
    border-radius: 10px;
    padding: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .dashboard-order-single {
        display: block;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .dashboard-order-single {
        display: block;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .dashboard-order-single {
        display: block;
    }
}
@media only screen and (max-width: 575.98px) {
    .dashboard-order-single {
        padding: 10px;
    }
}
.dashboard-order-single .dashboard-thumb-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}
@media only screen and (max-width: 767.98px) {
    .dashboard-order-single .dashboard-thumb-flex {
        gap: 10px;
    }
}
@media only screen and (max-width: 575.98px) {
    .dashboard-order-single .dashboard-thumb-flex {
        display: block;
    }
}
.dashboard-order-single .dashboard-thumb-flex .thumb {
    height: 200px;
    min-width: 280px;
}
@media only screen and (max-width: 767.98px) {
    .dashboard-order-single .dashboard-thumb-flex .thumb {
        min-width: 220px;
        width: 220px;
    }
}
@media only screen and (max-width: 575.98px) {
    .dashboard-order-single .dashboard-thumb-flex .thumb {
        min-width: 300px;
        width: 300px;
    }
}
@media only screen and (max-width: 375px) {
    .dashboard-order-single .dashboard-thumb-flex .thumb {
        min-width: 100%;
        width: 100%;
    }
}
.dashboard-order-single .dashboard-thumb-flex .thumb img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    -o-object-fit: cover;
    object-fit: cover;
}
@media only screen and (max-width: 575.98px) {
    .dashboard-order-single .dashboard-thumb-flex .contents {
        margin-top: 20px;
    }
}
.dashboard-order-single .dashboard-thumb-flex .contents .title {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
}
.dashboard-order-single .dashboard-thumb-flex .contents .orders {
    font-size: 18px;
    font-weight: 500;
    color: var(--light-color);
    line-height: 32px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .dashboard-order-single .single-oreder-request {
        margin-top: 20px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .dashboard-order-single .single-oreder-request {
        margin-top: 20px;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .dashboard-order-single .single-oreder-request {
        margin-top: 20px;
    }
}
.dashboard-order-single .single-oreder-request .title {
    font-size: 35px;
    font-weight: 700;
    line-height: 55px;
    margin: 0;
}
.dashboard-order-single .single-oreder-request .title.color-three {
    color: var(--main-color-three);
}
.dashboard-order-single .single-oreder-request .orders {
    font-size: 14px;
    font-weight: 500;
    color: var(--light-color);
    line-height: 22px;
}
.dashboard-order-single .single-oreder-request .checkbox-inlines .checkbox-label {
    font-size: 14px;
    color: var(--light-color);
}

.dashboard-order-request {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .dashboard-request-cancel {
        margin-top: 20px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .dashboard-request-cancel {
        margin-top: 20px;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .dashboard-request-cancel {
        margin-top: 20px;
    }
}
.dashboard-request-cancel .dashboard-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .dashboard-request-cancel .dashboard-icons {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .dashboard-request-cancel .dashboard-icons {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .dashboard-request-cancel .dashboard-icons {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
    }
}
.dashboard-request-cancel .dashboard-icons .icon {
    font-size: 18px;
}
.dashboard-request-cancel .dashboard-icons .icon.eye-icon {
    color: var(--main-color-one);
}
.dashboard-request-cancel .dashboard-icons .icon.delete-icon {
    color: var(--main-color-three);
}

/* Dashboard Services */
.dashboard-service-single-item {
    padding: 20px;
    border-radius: 10px;
}
.dashboard-service-single-item.border-1 {
    border: 1px solid rgba(221, 221, 221, 0.5);
}
@media only screen and (max-width: 575.98px) {
    .dashboard-service-single-item {
        padding: 10px;
    }
}

.dash-single-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .dash-single-inner {
        display: block;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .dash-single-inner {
        display: block;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .dash-single-inner {
        display: block;
    }
}

.dashboar-flex-services {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .dashboar-flex-services {
        gap: 30px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .dashboar-flex-services {
        gap: 10px;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .dashboar-flex-services {
        gap: 20px;
    }
}
.dashboar-flex-services .thumb {
    height: 100%;
    min-width: 280px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .dashboar-flex-services .thumb {
        min-width: 260px;
        width: 260px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .dashboar-flex-services .thumb {
        min-width: 220px;
        width: 220px;
        height: 180px;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .dashboar-flex-services .thumb {
        min-width: 240px;
        width: 240px;
    }
}
.dashboar-flex-services .thumb img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
}
.dashboar-flex-services .thumb-contents .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
}
.dashboar-flex-services .thumb-contents .service-review {
    display: inline-block;
    margin-top: 10px;
    color: var(--light-color);
    font-size: 18px;
}
.dashboar-flex-services .thumb-contents .service-review.style-02 {
    margin-left: 30px;
}
.dashboar-flex-services .thumb-contents .service-review.style-02 i {
    color: var(--main-color-one);
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .dashboar-flex-services .thumb-contents .service-review {
        margin-top: 10px;
        font-size: 16px;
    }
}
.dashboar-flex-services .thumb-contents .service-review i {
    color: var(--main-color-three);
}
.dashboar-flex-services .thumb-contents .service-review b {
    color: var(--extra-light-color);
}

.service-bottom-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .service-bottom-flex {
        gap: 10px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .service-bottom-flex {
        gap: 10px;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .service-bottom-flex {
        gap: 10px;
    }
}

.dashboard-service-bottom-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 10px 20px;
    border-radius: 5px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .dashboard-service-bottom-flex {
        gap: 10px;
        padding: 10px 15px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .dashboard-service-bottom-flex {
        gap: 10px;
        padding: 10px 15px;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .dashboard-service-bottom-flex {
        gap: 10px;
        padding: 8px 12px;
    }
}
.dashboard-service-bottom-flex.color-1 {
    background: rgba(199, 31, 102, 0.2);
}
.dashboard-service-bottom-flex.color-1 .icon {
    background: #C71F66;
}
.dashboard-service-bottom-flex.color-2 {
    background: rgba(29, 191, 115, 0.2);
}
.dashboard-service-bottom-flex.color-2 .icon {
    background: #1DBF73;
}
.dashboard-service-bottom-flex.color-3 {
    background: rgba(255, 107, 44, 0.2);
}
.dashboard-service-bottom-flex.color-3 .icon {
    background: #FF6B2C;
}
.dashboard-service-bottom-flex .icon {
    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;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: var(--main-color-one);
    color: #fff;
}
.dashboard-service-bottom-flex .content .num {
    color: var(--heading-color);
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
}
.dashboard-service-bottom-flex .content .queue {
    display: block;
    color: var(--light-color);
    font-size: 14px;
    line-height: 20px;
}

.dashboard-switch-flex-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 30px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .dashboard-switch-flex-content {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        gap: 50px;
        margin-top: 30px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .dashboard-switch-flex-content {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        gap: 50px;
        margin-top: 30px;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .dashboard-switch-flex-content {
        margin-top: 30px;
    }
}
.dashboard-switch-flex-content .dashboard-switch-single .dashboard-starting {
    font-size: 16px;
    font-weight: 700;
    color: var(--extra-light-color);
}
.dashboard-switch-flex-content .dashboard-switch-single .title-price {
    font-size: 35px;
    line-height: 55px;
    font-weight: 700;
    margin-top: 7px;
}
.dashboard-switch-flex-content .dashboard-switch-single .title-price.color-3 {
    color: var(--main-color-three);
}
.dashboard-switch-flex-content .dashboard-switch-single .dash-icon {
    font-size: 24px;
    color: var(--extra-light-color);
    margin: 0 10px;
}
.dashboard-switch-flex-content .dashboard-switch-single .dash-icon.color-1 {
    color: var(--main-color-one);
}
.dashboard-switch-flex-content .dashboard-switch-single .dash-icon.color-3 {
    color: var(--main-color-three);
}

.custom-switch {
    height: 0;
    width: 0;
    visibility: hidden;
}
.custom-switch:checked + label {
    background: var(--main-color-one);
}
.custom-switch:checked + label::after {
    left: calc(100% - 5px);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.switch-label {
    cursor: pointer;
    text-indent: -9999px;
    width: 60px;
    height: 30px;
    background: #DDDDDD;
    display: block;
    border-radius: 100px;
    position: relative;
    margin-top: 20px;
}
.switch-label.active::after {
    width: 30px;
}
.switch-label::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 30px;
    height: 20px;
    background: #fff;
    border-radius: 60px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.file-choose-area {
    text-align: center;
    padding: 40px 20px 50px;
    border: 3px dashed rgba(221, 221, 221, 0.5);
    display: block;
}
.file-choose-area .icon {
    color: var(--main-color-one);
    font-size: 60px;
}
.file-choose-area .drop-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
}
.file-choose-area .drop-title .color-1 {
    color: var(--main-color-one);
}
.file-choose-area .file-size-list {
    padding: 0;
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.file-choose-area .file-size-list li {
    font-size: 14px;
    line-height: 22px;
    color: var(--extra-light-color);
}
.file-choose-area .file-size-list li:not(:last-child)::after {
    content: ",";
    padding: 0 5px 0 0;
}

.edit-service-wrappers .dashboard-edit-thumbs img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
}
.edit-service-wrappers .content-edit .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
}
.edit-service-wrappers .content-edit .edit-para {
    font-size: 14px;
    line-height: 26px;
    color: var(--light-color);
    margin-top: 30px;
}

/* Seller Dashboard Close */
@media (min-width: 320px) and (max-width: 991.98px) {
    .dashboard-left-content {
        z-index: 1;
        position: absolute;
        left: -100%;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
        z-index: 99;
        -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        background: var(--main-color-one);
        color: #fff;
        width: 280px;
        text-align: center;
        padding: 0;
        border-radius: 10px;
        display: block;
        transition: all 0.5s;
    }
    .dashboard-left-content.active {
        visibility: visible;
        opacity: 1;
        left: 0;
    }
}
@media only screen and (min-width: 320px) and (max-width: 991.98px) and (max-width: 480px) {
    .dashboard-left-content {
        min-width: 260px;
    }
}
.dashboard-left-content .close-bars {
    position: absolute;
    right: 0px;
    top: 0;
    font-size: 24px;
    color: #fff;
    background: var(--main-color-one);
    -webkit-box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
    box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40px;
    width: 40px;
    -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;
    border-radius: 5px;
    display: none;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .dashboard-left-content .close-bars {
        display: block;
    }
}

.dashboard-icon {
    display: none;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .dashboard-icon {
        display: block;
        margin-bottom: 30px;
    }
}
.dashboard-icon .sidebar-icon {
    font-size: 24px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40px;
    width: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--main-color-one);
    -webkit-box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
    box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
    z-index: 95;
    border-radius: 5px;
    color: #fff;
}

@media (min-width: 1400px) and (max-width: 1875px) {
    .dashboard-middle-flex {
        display: block;
    }

    .dashboard-middle-flex .single-flex-middle {
        width: 75%;
    }
}
/* Seller Profile Details area */
.seller-dashboard-list {
    padding: 0;
}
.seller-dashboard-list .list a {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    padding: 17px 25px;
    cursor: pointer;
    border-radius: 10px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .seller-dashboard-list .list a {
        padding: 15px 22px;
        gap: 10px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .seller-dashboard-list .list a {
        padding: 15px 18px;
        font-size: 17px;
        gap: 5px;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .seller-dashboard-list .list a {
        font-size: 15px;
        gap: 10px;
        padding: 15px 10px;
        border-radius: 5px;
    }
}
.seller-dashboard-list .list:not(:last-child) a {
    margin-bottom: 10px;
}
.seller-dashboard-list .list.active a {
    background: #2BD887;
    font-weight: 500;
    color: #fff;
}
.seller-dashboard-list .list:hover a {
    background: #2BD887;
    font-weight: 500;
    color: #fff;
}

.seller-profile-details-wrapper .seller-profile-edit-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.seller-edits-profile {
    font-size: 18px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
@media only screen and (max-width: 480px) {
    .seller-edits-profile {
        font-size: 16px;
    }
}
.seller-edits-profile.color-1 {
    color: var(--main-color-one);
}
.seller-edits-profile:hover {
    letter-spacing: 1px;
}
.seller-edits-profile:hover i {
    padding-right: 5px;
}
.seller-edits-profile i {
    padding-right: 10px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
@media only screen and (max-width: 480px) {
    .seller-edits-profile i {
        padding-right: 0;
    }
}

.title-seller {
    font-size: 32px;
    line-height: 36px;
    font-weight: 700;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .title-seller {
        font-size: 28px;
    }
}
@media only screen and (max-width: 480px) {
    .title-seller {
        font-size: 24px;
    }
}
@media only screen and (max-width: 375px) {
    .title-seller {
        font-size: 22px;
    }
}

/* Seller Order Status  */
@media only screen and (max-width: 575.98px) {
    .seller-order-status-wrapper .single-seller-status .title {
        text-align: center;
    }
}

.single-seller-status {
    padding: 30px;
    border-radius: 10px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .single-seller-status {
        padding: 20px 20px;
    }
}
@media only screen and (max-width: 767.98px) {
    .single-seller-status {
        padding: 20px 10px;
    }
}
.single-seller-status .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
}

.seller-status-flex-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media only screen and (max-width: 575.98px) {
    .seller-status-flex-content {
        display: block;
    }
}
@media only screen and (max-width: 575.98px) {
    .seller-status-flex-content .status-flex-single {
        text-align: center;
    }
}
@media only screen and (max-width: 575.98px) {
    .seller-status-flex-content .status-flex-single:not(:last-child) {
        margin-bottom: 20px;
    }
}
.seller-status-flex-content .status-flex-single .price-title {
    font-size: 35px;
    line-height: 55px;
    font-weight: 700;
    margin: 0;
}
.seller-status-flex-content .status-flex-single .price-title.color-3 {
    color: var(--main-color-three);
}
.seller-status-flex-content .status-flex-single .date-titles {
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
}
.seller-status-flex-content .status-flex-single .checkbox-inlines {
    margin-top: 20px;
}
@media only screen and (max-width: 575.98px) {
    .seller-status-flex-content .status-flex-single .checkbox-inlines {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 5px;
    }
}
.seller-status-flex-content .status-flex-single .checkbox-inlines .checkbox-label {
    font-size: 16px;
    line-height: 28px;
    color: var(--light-color);
    margin: 0;
    font-weight: 400;
}
.seller-status-flex-content .status-flex-single .order-titles {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
}
.seller-status-flex-content .status-flex-single .reviews {
    display: inline-block;
    color: var(--main-color-three);
    font-size: 20px;
}
.seller-status-flex-content .status-flex-single .seller-status-icons {
    text-align: center;
}
.seller-status-flex-content .status-flex-single .seller-status-icons .icon {
    text-align: center;
    padding: 0 5px;
    font-size: 20px;
}

.icon.color-1 {
    color: var(--main-color-one);
}
.icon.color-2 {
    color: var(--main-color-two);
}
.icon.color-3 {
    color: var(--main-color-three);
}

/* Seller Dashboard Close */
@media (min-width: 320px) and (max-width: 991.98px) {
    .dashboard-close {
        background: #fff;
        position: relative;
        z-index: 1;
        position: absolute;
        left: -100%;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
        z-index: 99;
        width: 280px;
        height: 100vh;
        -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
    }
    .dashboard-close.active {
        visibility: visible;
        opacity: 1;
        left: 0;
    }
}
.dashboard-close .close-bars {
    position: absolute;
    right: 0px;
    top: 0;
    font-size: 24px;
    color: #fff;
    background: var(--main-color-one);
    -webkit-box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
    box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40px;
    width: 40px;
    -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;
    border-radius: 5px;
    display: none;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .dashboard-close .close-bars {
        display: block;
    }
}

.dashboard-icon {
    display: none;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .dashboard-icon {
        display: block;
    }
}
.dashboard-icon .sidebar-icon {
    font-size: 24px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40px;
    width: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--main-color-one);
    -webkit-box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
    box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
    z-index: 95;
    border-radius: 5px;
    color: #fff;
}

/* Seller Order View  */
.seller-order-view-all {
    border-radius: 10px;
    padding: 30px;
}
@media only screen and (max-width: 480px) {
    .seller-order-view-all {
        padding: 20px 10px;
    }
}

/* Invoice area */
.invoice-wrapper {
    padding: 100px;
    -webkit-box-shadow: 0 0 15px rgba(221, 221, 221, 0.5);
    box-shadow: 0 0 15px rgba(221, 221, 221, 0.5);
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .invoice-wrapper {
        padding: 50px 30px;
    }
}
@media only screen and (max-width: 575.98px) {
    .invoice-wrapper {
        padding: 40px 10px 50px;
    }
}

.invoice-flex-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.invoice-logo img {
    max-width: 180px;
}
@media only screen and (max-width: 480px) {
    .invoice-logo img {
        max-width: 150px;
    }
}
@media only screen and (max-width: 375px) {
    .invoice-logo img {
        max-width: 130px;
    }
}

.invoice-top {
    text-align: right;
}
.invoice-top .invoice {
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .invoice-top .invoice {
        font-size: 32px;
        line-height: 36px;
    }
}
@media only screen and (max-width: 480px) {
    .invoice-top .invoice {
        font-size: 28px;
    }
}
@media only screen and (max-width: 375px) {
    .invoice-top .invoice {
        font-size: 24px;
    }
}
.invoice-top .invoice.color-1 {
    color: var(--main-color-one);
}
.invoice-top .small-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .invoice-top .small-title {
        font-size: 16px;
        line-height: 24px;
    }
}
@media only screen and (max-width: 480px) {
    .invoice-top .small-title {
        font-size: 14px;
        line-height: 20px;
    }
}
@media only screen and (max-width: 375px) {
    .invoice-top .small-title {
        font-size: 13px;
    }
}

.invoice-contents.borders {
    border-bottom: 1px solid rgba(221, 221, 221, 0.5);
    padding-bottom: 15px;
}
.invoice-contents .invoice-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 50px;
    max-width: 700px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .invoice-contents .invoice-title {
        font-size: 30px;
        line-height: 36px;
    }
}
@media only screen and (max-width: 480px) {
    .invoice-contents .invoice-title {
        font-size: 26px;
    }
}
@media only screen and (max-width: 375px) {
    .invoice-contents .invoice-title {
        font-size: 24px;
    }
}

.invoice-single-contents .title {
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
}
.invoice-single-contents .names {
    font-size: 16px;
    font-weight: 500;
    color: var(--light-color);
    line-height: 28px;
    display: block;
}
.invoice-single-contents .invoice-address-list {
    padding: 0;
    margin-top: 10px;
}
.invoice-single-contents .invoice-address-list .list {
    font-size: 14px;
    line-height: 30px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.invoice-single-contents .invoice-address-list .list:hover {
    color: var(--main-color-one);
}

.invoice-summery .invoice-contents-summery {
    padding: 30px 30px 20px;
    border-radius: 10px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .invoice-summery .invoice-contents-summery {
        padding: 20px 20px;
        overflow-x: scroll;
    }
}
@media only screen and (max-width: 575.98px) {
    .invoice-summery .invoice-contents-summery {
        padding: 20px 10px;
        overflow-x: scroll;
    }
}

.total-count {
    text-align: right;
}
.total-count .total-amount {
    font-size: 16px;
    font-weight: 500;
    color: var(--light-color);
    padding: 5px 0;
    display: block;
}

.invoice-summery-list {
    padding: 0;
}
.invoice-summery-list.borders-bottom {
    border-bottom: 2px solid rgba(221, 221, 221, 0.5);
    padding-bottom: 20px;
}
.invoice-summery-list .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
}
.invoice-summery-list .list:not(:last-child) {
    margin-bottom: 10px;
}
.invoice-summery-list .list .list-single {
    font-size: 16px;
    line-height: 26px;
    color: var(--light-color);
}
@media only screen and (max-width: 575.98px) {
    .invoice-summery-list .list .list-single {
        font-size: 14px;
    }
}
.invoice-summery-list .list .list-single.list-heading {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--light-color);
    font-size: 18px;
    line-height: 28px;
}
@media only screen and (max-width: 575.98px) {
    .invoice-summery-list .list .list-single.list-heading {
        font-size: 14px;
    }
}

.total-count-list {
    padding: 0;
}
.total-count-list .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.total-count-list .list .total {
    font-size: 16px;
    line-height: 26px;
    color: var(--heading-color);
    font-weight: 500;
    text-align: right;
    display: block;
    padding: 10px 0;
}
.total-count-list .list .total:not(:last-child) {
    padding-right: 100px;
}
.total-count-list .list .total.color-1 {
    color: var(--main-color-one);
}
.total-count-list .list.borders-bottom {
    border-bottom: 2px solid rgba(221, 221, 221, 0.5);
}

.summery-heading {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    font-style: italic;
}

.invoice-bottom-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media only screen and (max-width: 767.98px) {
    .invoice-bottom-flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}
.invoice-bottom-flex .invoice-patment-list .checkbox-inlines .checkbox-label {
    font-size: 14px;
    color: var(--light-color);
}

.invoice-download-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .invoice-download-contents {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
@media only screen and (max-width: 575.98px) {
    .invoice-download-contents {
        gap: 10px;
    }
}
.invoice-download-contents .invoice-icon {
    padding: 18px;
    font-size: 16px;
    background: #F1F6FF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 5px;
    color: var(--main-color-three);
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .invoice-download-contents .invoice-icon {
        font-size: 15px;
        padding: 15px;
    }
}
@media only screen and (max-width: 575.98px) {
    .invoice-download-contents .invoice-icon {
        font-size: 14px;
        padding: 10px;
    }
}
.invoice-download-contents .invoice-icon .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.invoice-download-contents .invoice-icon i {
    font-size: 24px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .invoice-download-contents .invoice-icon i {
        font-size: 20px;
    }
}
@media only screen and (max-width: 575.98px) {
    .invoice-download-contents .invoice-icon i {
        font-size: 18px;
    }
}
.invoice-download-contents .invoice-icon.color-one {
    background: var(--main-color-one);
    color: #fff;
}
.invoice-download-contents .invoice-icon.color-three {
    background: var(--main-color-three);
    color: #fff;
}

/*-------------------------
    Section Title
-------------------------*/
.section-title {
    text-align: center;
}
.section-title.text-left {
    text-align: left;
}
.section-title.text-left .section-para {
    padding: 0;
}
.section-title .title {
    font-size: 45px;
    font-weight: 700;
    line-height: 55px;
    margin: -10px 0 0;
    color: var(--heading-color);
}
.section-title .title .title-color {
    color: var(--main-color-one);
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .section-title .title {
        font-size: 38px;
        line-height: 45px;
    }
}
@media only screen and (max-width: 575.98px) {
    .section-title .title {
        font-size: 30px;
        line-height: 35px;
    }
}
.section-title .section-para {
    display: block;
    font-size: 16px;
    line-height: 28px;
    color: var(--light-color);
    margin-top: 30px;
    padding: 0 30px;
}
.section-title .section-para.extra-padding {
    padding: 0 120px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .section-title .section-para.extra-padding {
        padding: 0 60px;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .section-title .section-para.extra-padding {
        padding: 0 100px;
    }
}
@media only screen and (max-width: 767.98px) {
    .section-title .section-para.extra-padding {
        padding: 0 20px;
    }
}
@media only screen and (max-width: 575.98px) {
    .section-title .section-para.extra-padding {
        padding: 0 35px;
    }
}
@media only screen and (max-width: 480px) {
    .section-title .section-para.extra-padding {
        padding: 0 0px;
    }
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .section-title .section-para {
        padding: 0 40px;
        margin-top: 25px;
    }
}
@media only screen and (max-width: 767.98px) {
    .section-title .section-para {
        padding: 0 20px;
    }
}
@media only screen and (max-width: 575.98px) {
    .section-title .section-para {
        font-size: 14px;
        padding: 0 30px;
    }
}
@media only screen and (max-width: 480px) {
    .section-title .section-para {
        padding: 0 0px;
    }
}
.section-title.style-02 .title {
    font-size: 16px;
    font-weight: 500;
    color: var(--paragraph-color);
    position: relative;
    z-index: 1;
    padding-left: 32px;
}
.section-title.style-02 .title::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    background: var(--main-color-one);
    margin-right: 35px;
}

.section-title-two {
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 20px;
}
.section-title-two::before {
    position: absolute;
    content: "";
    height: 4px;
    width: 65px;
    background: var(--main-color-three);
    left: 0;
    bottom: -3px;
    border-radius: 10px;
}
.section-title-two .title {
    font-size: 32px;
    font-weight: 600;
    font-family: var(--heading-font-two);
    line-height: 46px;
    margin: -10px 0 0;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .section-title-two .title {
        font-size: 24px;
        line-height: 32px;
    }
}
@media only screen and (max-width: 375px) {
    .section-title-two .title {
        font-size: 22px;
        line-height: 32px;
    }
}

.section-title-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}
.section-title-wrapper .section-title-two {
    border-bottom: none;
    margin-bottom: 0;
}

.section-title-three {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    padding: 3px 0;
}
.section-title-three .title {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--heading-font-two);
    line-height: 46px;
    margin: 0;
}

/*---------------------------------------
    ## Button
---------------------------------------*/
.btn-wrapper {
    display: block;
}
.btn-wrapper .cmn-btn {
    color: var(--paragraph-color);
    font-size: 16px;
    font-weight: 500;
    font-family: var(--body-font);
    display: inline-block;
    border-radius: 5px;
    text-transform: capitalize;
    text-align: center;
    cursor: pointer;
    line-height: 34px;
    padding: 8px 35px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
@media only screen and (max-width: 575.98px) {
    .btn-wrapper .cmn-btn {
        padding: 10px 25px;
        font-size: 15px;
    }
}
@media only screen and (max-width: 375px) {
    .btn-wrapper .cmn-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
}
.btn-wrapper .cmn-btn.btn-bg-1 {
    background: var(--main-color-one);
    color: #fff;
    border: 2px solid var(--main-color-one);
}
.btn-wrapper .cmn-btn.btn-bg-1:hover {
    background: none;
    color: var(--main-color-one);
}
.btn-wrapper .cmn-btn.btn-bg-2 {
    background: var(--main-color-two);
    color: #fff;
    border: 2px solid var(--main-color-two);
}
.btn-wrapper .cmn-btn.btn-bg-2:hover {
    background: none;
    color: var(--main-color-two);
}
.btn-wrapper .cmn-btn.btn-bg-3 {
    background: var(--main-color-three);
    color: #fff;
    border: 2px solid var(--main-color-three);
}
.btn-wrapper .cmn-btn.btn-bg-3:hover {
    background: none;
    color: var(--main-color-three);
}
.btn-wrapper .cmn-btn.btn-appoinment {
    width: 100%;
}
.btn-wrapper .cmn-btn.btn-outline-1 {
    border: 2px solid var(--main-color-one);
    color: var(--main-color-one);
}
.btn-wrapper .cmn-btn.btn-outline-1:hover {
    background: var(--main-color-one);
    color: #fff;
}
.btn-wrapper .cmn-btn.btn-outline-2 {
    border: 2px solid var(--main-color-two);
    color: var(--main-color-two);
}
.btn-wrapper .cmn-btn.btn-outline-2:hover {
    background: var(--main-color-two);
    color: #fff;
}
.btn-wrapper .cmn-btn.btn-outline-3 {
    border: 2px solid var(--main-color-three);
    color: var(--main-color-three);
}
.btn-wrapper .cmn-btn.btn-outline-3:hover {
    color: #fff;
    background: var(--main-color-three);
}
.btn-wrapper .cmn-btn.btn-small {
    padding: 4px 12px;
    font-size: 15px;
}
.btn-wrapper .cmn-btn.btn-medium {
    padding: 8px 25px;
    font-size: 15px;
}
.btn-wrapper .cmn-btn.btn-small-height {
    padding: 3px 35px;
}
.btn-wrapper .cmn-btn.pending {
    background: rgba(255, 179, 7, 0.1);
    color: #FFB307;
    text-align: center;
    border-radius: 5px;
}
.btn-wrapper .cmn-btn.pending:hover {
    background: #FFB307;
    color: #fff;
}
.btn-wrapper .cmn-btn.completed {
    background: rgba(29, 191, 115, 0.1);
    color: #1DBF73;
    text-align: center;
    border-radius: 5px;
}
.btn-wrapper .cmn-btn.completed:hover {
    background: #1DBF73;
    color: #fff;
}
.btn-wrapper .cmn-btn.canceled {
    background: rgba(255, 23, 71, 0.1);
    color: #FF1747;
    text-align: center;
    border-radius: 5px;
}
.btn-wrapper .cmn-btn.canceled:hover {
    background: #FF1747;
    color: #fff;
}

.cmn-button {
    border: 0;
    outline: none;
    color: var(--paragraph-color);
    font-size: 16px;
    font-weight: 500;
    font-family: var(--body-font);
    display: inline-block;
    border-radius: 5px;
    text-transform: capitalize;
    text-align: center;
    cursor: pointer;
    line-height: 34px;
    padding: 10px 35px;
}
.cmn-button.btn-bg-1 {
    background: var(--main-color-one);
    color: #fff;
}
.cmn-button.btn-bg-2 {
    background: var(--main-color-two);
    color: #fff;
}
.cmn-button.btn-bg-3 {
    background: var(--main-color-three);
    color: #fff;
}

.section-btn {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    color: var(--heading-color);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.section-btn:hover {
    color: var(--main-color-three);
}
.section-btn::after {
    content: "";
    font-family: "Line Awesome Free";
    font-weight: 900;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .section-btn {
        font-size: 16px;
    }
}
@media only screen and (max-width: 375px) {
    .section-btn {
        font-size: 14px;
    }
}

.explore-btn {
    margin: 50px auto 0;
}

.btn-subscribe {
    padding: 15px 40px;
    border: 0;
    outline: none;
    cursor: pointer;
    font-size: 16px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.submit-btn {
    font-size: 16px;
    outline: none;
    border: none;
    background: var(--main-color-one);
    color: #fff;
    padding: 10px 30px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.submit-btn:focus {
    outline: none;
}

.btn-see-more {
    font-size: 18px;
    font-weight: 700;
    color: var(--main-color-one);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.btn-see-more.style-02 {
    font-size: 14px;
    font-weight: 500;
}
.btn-see-more.style-02::before {
    font-size: 12px;
    border: 1px solid #FF6B2C;
    border-radius: 50%;
    top: 0;
}
.btn-see-more.color-3 {
    color: var(--main-color-three);
}
.btn-see-more.color-3::before {
    color: var(--main-color-three);
}
.btn-see-more.color-3:hover {
    color: var(--main-color-three);
}
.btn-see-more:hover {
    color: var(--main-color-one);
}
.btn-see-more::before {
    font-family: "Line Awesome Free";
    font-weight: 900;
    content: "";
    color: var(--main-color-one);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 20px;
    position: relative;
    top: 1px;
}

.btn-replay {
    position: relative;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.btn-replay:hover {
    color: var(--main-color-one);
}
.btn-replay::before {
    font-family: "Line Awesome Free";
    font-weight: 900;
    content: "";
    color: var(--main-color-one);
}

.color-one {
    background: var(--main-color-one);
    color: #fff;
}

.btn-rounded {
    border-radius: 30px;
}

.no-bg {
    background: none !important;
}

.desktop-center {
    text-align: center;
}

.desktop-left {
    text-align: left;
}

.desktop-right {
    text-align: right;
}

/*---------------------------------------
    ## Back Top
---------------------------------------*/
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--main-color-one);
    color: #fff;
    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;
}
.back-to-top.style-02 {
    background: var(--main-color-two);
}
.back-to-top.style-03 {
    background: var(--main-color-three);
}

/*-------------------------
    ## Preloader Css
---------------------------*/
.preloader-inner {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    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;
}

.loader_bars {
    width: 130px;
    height: 130px;
    border-right: 4px solid #1dbf73;
    border-radius: 100%;
    -webkit-animation: spinRight 800ms linear infinite;
    animation: spinRight 800ms linear infinite;
}
.loader_bars:before, .loader_bars:after {
    content: "";
    width: 100px;
    height: 100px;
    display: block;
    position: absolute;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    border-left: 3px solid #1dbf73;
    border-radius: 100%;
    -webkit-animation: spinLeft 800ms linear infinite;
    animation: spinLeft 800ms linear infinite;
}
.loader_bars:after {
    width: 70px;
    height: 70px;
    top: calc(50% - 35px);
    left: calc(50% - 35px);
    border: 0;
    border-right: 2px solid #1dbf73;
    -webkit-animation: none;
    animation: none;
}
.loader_bars span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #1dbf73;
}

@-webkit-keyframes spinLeft {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(720deg);
        transform: rotate(720deg);
    }
}

@keyframes spinLeft {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(720deg);
        transform: rotate(720deg);
    }
}
@-webkit-keyframes spinRight {
    from {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
@keyframes spinRight {
    from {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
/* Author tag */
.author-tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 25px 0 20px;
    padding-left: 0;
}
.author-tag.style-02 {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.author-tag.style-02 .tag-list:not(:last-child) {
    margin-right: 80px;
}
@media only screen and (max-width: 480px) {
    .author-tag.style-02 .tag-list:not(:last-child) {
        margin-right: 50px;
    }
}
.author-tag .tag-list .authors {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}
.author-tag .tag-list .authors .thumb {
    position: relative;
    z-index: 1;
    display: inline-block;
    height: 30px;
    width: 30px;
}
.author-tag .tag-list .authors .thumb img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}
.author-tag .tag-list .authors .thumb .notification-dot {
    display: inline-block;
    height: 10px;
    width: 10px;
    border-radius: 50px;
    background: var(--main-color-one);
    position: absolute;
    bottom: 0;
    right: 0;
    border: 2px solid #fff;
}
.author-tag .tag-list .authors .author-title {
    font-size: 14px;
    color: var(--light-color);
}
.author-tag .tag-list .icon {
    font-size: 14px;
    color: #FF6B2C;
    margin-right: 7px;
}
.author-tag .tag-list .reviews {
    font-size: 12px;
}

/* Tag list */
.tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
}
.tags .list {
    font-size: 16px;
    line-height: 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.tags .list:not(:last-child) {
    margin-right: 30px;
}
.tags .list:hover {
    color: var(--main-color-one);
}
.tags .list:hover i {
    color: var(--main-color-one);
}
.tags .list i {
    color: var(--main-color-three);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

/* Nice Select Style */
.nice-select {
    width: 100%;
    height: 55px;
    line-height: 55px;
    font-size: 14px;
    font-weight: 400;
    color: var(--extra-light-color);
    border: 1px solid #ddd;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.nice-select:focus {
    border: 1px solid #ddd;
}
.nice-select .nice-select-search-box {
    /* height: 100%; */
}
.nice-select .nice-select-search-box .nice-select-search {
    vertical-align: top;
}
.nice-select:after {
    border-bottom: 2px solid var(--extra-light-color);
    border-right: 2px solid var(--extra-light-color);
    height: 8px;
    margin-top: -5px;
    right: 20px;
    width: 8px;
}
@media only screen and (max-width: 375px) {
    .nice-select:after {
        right: 10px;
    }
}
.nice-select.open {
    border: 1px solid #ddd;
}
.nice-select .list {
    width: 100%;
}

/* inner menu */
.inner-menu {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 5px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .inner-menu {
        margin-bottom: 25px;
    }
}
@media only screen and (max-width: 575.98px) {
    .inner-menu {
        margin-bottom: 15px;
    }
}
.inner-menu .list {
    position: relative;
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 34px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.inner-menu .list:hover {
    color: var(--main-color-three);
}
.inner-menu .list:not(:last-child) {
    padding-right: 15px;
}
@media only screen and (max-width: 375px) {
    .inner-menu .list:not(:last-child) {
        padding-right: 10px;
    }
}
.inner-menu .list:not(:first-child) {
    padding-left: 15px;
}
@media only screen and (max-width: 375px) {
    .inner-menu .list:not(:first-child) {
        padding-left: 10px;
    }
}
.inner-menu .list:not(:first-child)::before {
    position: absolute;
    content: "";
    height: 40%;
    width: 1px;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: var(--heading-color);
}
@media only screen and (max-width: 575.98px) {
    .inner-menu .list {
        font-size: 16px;
        line-height: 24px;
    }
}
@media only screen and (max-width: 375px) {
    .inner-menu .list {
        font-size: 14px;
    }
}

/* Pagination */
.service-pagination {
    margin-top: 50px;
}
@media only screen and (max-width: 480px) {
    .service-pagination {
        margin-top: 30px;
    }
}

.pagination-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.pagination-list.color-two::before, .pagination-list.color-two::after {
    background: var(--main-color-two);
}
.pagination-list.color-two li.active a {
    background: var(--main-color-two);
    color: #fff;
}
.pagination-list.color-two li a:hover {
    background: var(--main-color-two);
    color: #fff;
}
.pagination-list.color-three::before, .pagination-list.color-three::after {
    background: var(--main-color-three);
}
.pagination-list.color-three li.active a {
    background: var(--main-color-three);
    color: #fff;
}
.pagination-list.color-three li a:hover {
    background: var(--main-color-three);
    color: #fff;
}
.pagination-list::before {
    content: "Prev";
}
.pagination-list::after {
    content: "Next";
}
.pagination-list::before, .pagination-list::after {
    cursor: pointer;
    background: var(--main-color-one);
    color: #fff;
    font-size: 16px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 10px 20px;
    display: inline-block;
    border-radius: 5px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .pagination-list::before, .pagination-list::after {
        font-size: 15px;
        padding: 7px 15px;
    }
}
@media only screen and (max-width: 480px) {
    .pagination-list::before, .pagination-list::after {
        font-size: 14px;
        padding: 5px 10px;
    }
}
.pagination-list li {
    margin: 5px 10px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .pagination-list li {
        margin: 5px 5px;
    }
}
.pagination-list li.active a {
    background: var(--main-color-one);
    color: #fff;
}
.pagination-list li a {
    background: #fff;
    color: var(--light-color);
    font-size: 16px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 10px 20px;
    display: inline-block;
    border-radius: 5px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.pagination-list li a:hover {
    background: var(--main-color-one);
    color: #fff;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .pagination-list li a {
        font-size: 15px;
        padding: 7px 15px;
    }
}
@media only screen and (max-width: 480px) {
    .pagination-list li a {
        font-size: 14px;
        padding: 5px 10px;
    }
}

/* Overview */
.overview-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .overview-list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
.overview-list.step-list .list.active {
    color: var(--main-color-one);
}
.overview-list .list.active .list-click {
    color: var(--heading-color);
}
.overview-list .list.active .list-click::after {
    color: var(--main-color-one);
}
.overview-list .list.active .list-click .list-number {
    background: none;
    border-color: var(--main-color-one);
    color: var(--main-color-one);
}
.overview-list .list:not(:first-child) .list-click {
    padding-left: 15px;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .overview-list .list:not(:first-child) .list-click {
        padding-left: 0;
    }
}
.overview-list .list:not(:last-child) .list-click::after {
    font-family: "Line Awesome Free";
    font-weight: 900;
    content: "";
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .overview-list .list:not(:last-child) .list-click {
        padding-right: 15px;
    }
}
@media only screen and (max-width: 575.98px) {
    .overview-list .list:not(:last-child) .list-click {
        padding-right: 5px;
    }
}
.overview-list .list .list-click {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: var(--extra-light-color);
    font-family: var(--heading-font);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .overview-list .list .list-click {
        margin: 10px 0;
        font-size: 18px;
    }
}
@media only screen and (max-width: 575.98px) {
    .overview-list .list .list-click {
        font-size: 15px;
        gap: 5px;
    }
}
.overview-list .list .list-click:hover {
    color: var(--heading-color);
}
.overview-list .list .list-click:hover .list-number {
    background: none;
    border-color: var(--main-color-one);
    color: var(--main-color-one);
}
.overview-list .list .list-click .list-number {
    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;
    height: 40px;
    width: 40px;
    background: #dddddd;
    border: 1px solid #dddddd;
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 600;
    font-family: var(--heading-font);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .overview-list .list .list-click .list-number {
        font-size: 18px;
        height: 30px;
        width: 30px;
    }
}

/* Checkbox */
.checkbox-inlines {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    cursor: pointer;
    gap: 10px;
}
.checkbox-inlines .check-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    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;
    min-height: 18px;
    min-width: 18px;
    cursor: pointer;
    background: #fff;
    border: 1px solid #dddddd;
    border-radius: 0px;
    margin-top: 3px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.checkbox-inlines .check-input::after {
    content: "";
    font-family: "Line Awesome Free";
    font-weight: 900;
    font-size: 10px;
    color: #fff;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(1.6) rotate(90deg);
    transform: scale(1.6) rotate(90deg);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.checkbox-inlines .check-input:checked {
    background: var(--main-color-one);
    border-color: var(--main-color-one);
    background: var(--main-color-one);
}
.checkbox-inlines .check-input:checked::after {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1.2) rotate(0deg);
    transform: scale(1.2) rotate(0deg);
}
.checkbox-inlines .checkbox-label {
    cursor: pointer;
    text-align: left;
    line-height: 26px;
    font-size: 18px;
    font-weight: 500;
    color: var(--heading-color);
}
@media only screen and (max-width: 575.98px) {
    .checkbox-inlines .checkbox-label {
        font-size: 15px;
    }
}

/* Multi Step Form */
.msform {
    position: relative;
}

.msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

@media (min-width: 320px) and (max-width: 991.98px) {
    fieldset.padding-top-50 {
        padding-top: 20px;
    }
}

@media (min-width: 320px) and (max-width: 991.98px) {
    .single-location.margin-top-30 {
        margin-top: 10px;
    }
}

.form-card {
    text-align: left;
}

.msform fieldset:not(:first-of-type) {
    display: none;
}

.msform .action-button {
    background: var(--main-color-one);
    font-weight: 500;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 25px;
    margin: 40px 0px 5px 10px;
    float: right;
    border: 1px solid var(--main-color-one);
}

.msform .action-button:hover,
.msform .action-button:focus {
    background: var(--main-color-one);
}

.msform .action-button-previous {
    background: 0;
    font-weight: 500;
    color: var(--heading-color);
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 25px;
    margin: 40px 10px 5px 0px;
    float: right;
    border: 1px solid var(--main-color-one);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.msform .action-button-previous:hover,
.msform .action-button-previous:focus {
    background-color: var(--main-color-one);
    color: #fff;
}

.successful-card .title-step {
    font-size: 50px;
    font-weight: 700;
    text-align: center;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .successful-card .title-step {
        font-size: 40px;
    }
}
.successful-card .succcess-icon {
    font-size: 200px;
    color: var(--main-color-one);
    text-align: center;
    line-height: 1.2;
    display: block;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .successful-card .succcess-icon {
        line-height: 1;
        font-size: 150px;
    }
}

/* Faq */
.faq-contents .faq-item.open .faq-title {
    background: var(--main-color-one);
    color: #fff;
}
.faq-contents .faq-item.open .faq-title::after {
    content: "";
    color: #fff;
}
.faq-contents .faq-item.active .faq-panel {
    display: block;
}
.faq-contents .faq-item:not(:first-child) {
    margin-top: 30px;
}
.faq-contents .faq-item .faq-title {
    font-size: 18px;
    color: var(--light-color);
    line-height: 24px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 25px;
    background: #fff;
    cursor: pointer;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .faq-contents .faq-item .faq-title {
        font-size: 16px;
        line-height: 20px;
    }
}
@media only screen and (max-width: 480px) {
    .faq-contents .faq-item .faq-title {
        font-size: 15px;
        padding: 15px 10px;
    }
}
.faq-contents .faq-item .faq-title::after {
    font-family: "Line Awesome Free";
    font-weight: 900;
    margin-right: 10px;
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 18px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
@media only screen and (max-width: 480px) {
    .faq-contents .faq-item .faq-title::after {
        right: 0;
    }
}
.faq-contents .faq-item .faq-panel {
    display: none;
    padding: 15px 0 0;
}
.faq-contents .faq-item .faq-panel .faq-para {
    font-size: 16px;
    line-height: 28px;
    color: var(--light-color);
}
@media (min-width: 320px) and (max-width: 991.98px) {
    .faq-contents .faq-item .faq-panel .faq-para {
        font-size: 15px;
    }
}
@media only screen and (max-width: 480px) {
    .faq-contents .faq-item .faq-panel .faq-para {
        font-size: 14px;
    }
}

/*=========================================================
          [ Table Css ]
=========================================================*/
.custom--table {
    width: 100%;
    color: inherit;
    vertical-align: middle;
    font-weight: 400;
    text-align: center;
}

.custom--table thead {
    font-weight: 700;
    font-size: 18px;
    background: inherit;
    color: inherit;
}

.custom--table tbody {
    border-top: 0;
    overflow: hidden;
    border-radius: 10px;
}

.custom--table tbody tr:nth-child(odd) {
    background-color: inherit;
}

.custom--table tbody tr:nth-child(even) {
    background-color: inherit;
}

.custom--table tr th {
    font-size: 16px;
    font-weight: 500;
    color: var(--light-color);
}

.custom--table tr td {
    font-size: 16px;
    color: var(--heading-color);
    padding: 10px 0;
    line-height: 22px;
}

[data-label] {
    position: relative;
}

[data-label]::before {
    position: absolute;
    content: attr(data-label);
    font-weight: 700;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    padding: 8px 20px;
    display: none;
    font-size: 13px;
}

/* @media (max-width: 767.98px) {
    .table-responsive.table-responsive-sm thead {
        display: none;
    }
    .table-responsive.table-responsive-sm [data-label]::before {
        display: block;
    }
    .table-responsive.table-responsive-sm tr td {
        display: block;
        text-align: right;
        padding-right: 5px;
    }
    .table-responsive [data-label]::before {
        padding: 8px 10px 8px 5px;
    }
} */
@media (max-width: 991px) {
    .table-responsive thead {
        display: none;
    }

    .table-responsive [data-label]::before {
        display: block;
    }

    .table-responsive tr td {
        display: block;
        text-align: right;
        padding-right: 5px;
    }

    .table-responsive [data-label]::before {
        padding: 8px 10px 8px 5px;
    }
}
@media (max-width: 1199.98px) {
    .table-responsive.table-responsive-lg thead {
        display: none;
    }

    .table-responsive.table-responsive-lg [data-label]::before {
        display: block;
    }

    .table-responsive.table-responsive-lg tr td {
        display: block;
        text-align: right;
        padding-right: 5px;
    }
}
@media (max-width: 1399.98px) {
    .table-responsive.table-responsive-xl thead {
        display: none;
    }

    .table-responsive.table-responsive-xl [data-label]::before {
        display: block;
    }

    .table-responsive.table-responsive-xl tr td {
        display: block;
        text-align: right;
        padding-right: 5px;
    }
}
/*new-css*/
.full-width,
.full-width >* {
    width: 100%;
}
.border-16{
    border-radius: 16px;
}
.full-height,
.full-height >* {
    height: 100%;
}
/* Section Title */
.second-title {
    font-size: 36px;
    line-height: 1.25;
    font-weight: 500;
    color: #271212;
    margin-bottom: 0;
}
/* overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000004F;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    border-radius: inherit;
}
/* SVG Icons */
.fs-24 {
    font-size: 24px;
}
.custom-switch-icon {
    display: inline-block;
    width: 28px;
    height: 14px;
    border-radius: 100px;
    background-color: #BEBEC5;
    transition: all 0.3s ease;
    position: relative;
    &::after {
        content: "";
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #fff;
        position: absolute;
        top: 2px;
        left: 2px;
        transition: all 0.3s ease;
    }
    &.active {
        background-color: #00D54F;
        &::after {
            left: calc(100% - 12px);
        }
    }
}
.verified-icon {
    height: 18px;
    width: 18px;
    background-color: #08BC8D;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 12px;
}
.svg-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    line-height: inherit;
    background-color: currentColor;
    mask-image: var(--svg);
    mask-repeat: no-repeat ;
    mask-size: 100% 100%;
    vertical-align: middle;
}
.list-icon {
    --svg: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M3%2011C3%207.25027%203%205.3754%203.95491%204.06107C4.26331%203.6366%204.6366%203.26331%205.06107%202.95491C6.3754%202%208.25027%202%2012%202C15.7497%202%2017.6246%202%2018.9389%202.95491C19.3634%203.26331%2019.7367%203.6366%2020.0451%204.06107C21%205.3754%2021%207.25027%2021%2011V13C21%2016.7497%2021%2018.6246%2020.0451%2019.9389C19.7367%2020.3634%2019.3634%2020.7367%2018.9389%2021.0451C17.6246%2022%2015.7497%2022%2012%2022C8.25027%2022%206.3754%2022%205.06107%2021.0451C4.6366%2020.7367%204.26331%2020.3634%203.95491%2019.9389C3%2018.6246%203%2016.7497%203%2013V11Z%22%20stroke%3D%22%23919191%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M16%209.5H8M13.5%2014.5H10.5%22%20stroke%3D%22%23919191%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
}
.cart-icon {
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M2.29623 11.395L2.57016 9.84142C2.89392 8.0052 3.0558 7.08714 3.69685 6.54357C4.33792 6 5.25878 6 7.1005 6H10.8995C12.7412 6 13.6621 6 14.3032 6.54357C14.9442 7.08714 15.106 8.0052 15.4298 9.84142L15.7038 11.395C16.1518 13.9358 16.3758 15.2063 15.686 16.0406C14.9962 16.875 13.7219 16.875 11.1734 16.875H6.82657C4.27804 16.875 3.00378 16.875 2.314 16.0406C1.62421 15.2063 1.84822 13.9358 2.29623 11.395Z' stroke='%23BEBEC5' stroke-width='1.125'/%3E%3Cpath d='M5.625 6L5.75086 4.48963C5.89168 2.79979 7.3043 1.5 9 1.5C10.6957 1.5 12.1083 2.79979 12.2491 4.48963L12.375 6' stroke='%23BEBEC5' stroke-width='1.125'/%3E%3Cpath d='M11.25 8.25C11.1525 9.30983 10.1743 10.125 9 10.125C7.82572 10.125 6.84751 9.30983 6.75 8.25' stroke='%23BEBEC5' stroke-width='1.125' stroke-linecap='round'/%3E%3C/svg%3E");
}
.calender-icon {
    --svg: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M12%201.5V4.5M6%201.5V4.5%22%20stroke%3D%22%233136B1%22%20stroke-width%3D%221.125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M9.75%203H8.25C5.42157%203%204.00736%203%203.12868%203.87868C2.25%204.75736%202.25%206.17157%202.25%209V10.5C2.25%2013.3284%202.25%2014.7427%203.12868%2015.6213C4.00736%2016.5%205.42157%2016.5%208.25%2016.5H9.75C12.5784%2016.5%2013.9927%2016.5%2014.8713%2015.6213C15.75%2014.7427%2015.75%2013.3284%2015.75%2010.5V9C15.75%206.17157%2015.75%204.75736%2014.8713%203.87868C13.9927%203%2012.5784%203%209.75%203Z%22%20stroke%3D%22%233136B1%22%20stroke-width%3D%221.125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M2.25%207.5H15.75%22%20stroke%3D%22%233136B1%22%20stroke-width%3D%221.125%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M8.99662%2010.5H9.00338M8.99662%2013.5H9.00338M11.9933%2010.5H12M6%2010.5H6.00673M6%2013.5H6.00673%22%20stroke%3D%22%233136B1%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
}
.location-icon {
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M10.2133 16.0253C9.88807 16.3298 9.4533 16.5 9.00082 16.5C8.54835 16.5 8.11365 16.3298 7.78838 16.0253C4.80977 13.2195 0.81807 10.0852 2.7647 5.53475C3.81722 3.07437 6.34375 1.5 9.00082 1.5C11.6579 1.5 14.1845 3.07437 15.237 5.53475C17.1812 10.0795 13.1992 13.2292 10.2133 16.0253Z' stroke='%23BEBEC5' stroke-width='1.125'/%3E%3Cpath d='M11.625 8.25C11.625 9.69975 10.4497 10.875 9 10.875C7.55025 10.875 6.375 9.69975 6.375 8.25C6.375 6.80025 7.55025 5.625 9 5.625C10.4497 5.625 11.625 6.80025 11.625 8.25Z' stroke='%23BEBEC5' stroke-width='1.125'/%3E%3C/svg%3E");
}
.clock-icon {
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z' stroke='%23919191' stroke-width='2'/%3E%3Cpath d='M12 8V12L14 14' stroke='%23919191' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
}
.offer-icon {
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M5.76878 14.7121C6.21205 14.7121 6.43369 14.7121 6.6356 14.787C6.66365 14.7973 6.69129 14.8088 6.71848 14.8213C6.91423 14.9111 7.07095 15.0678 7.38439 15.3812C8.10585 16.1027 8.46652 16.4634 8.91037 16.4966C8.97 16.5011 9.03 16.5011 9.08963 16.4966C9.53348 16.4634 9.89423 16.1027 10.6156 15.3812C10.9291 15.0678 11.0857 14.9111 11.2815 14.8213C11.3087 14.8088 11.3363 14.7973 11.3644 14.787C11.5664 14.7121 11.788 14.7121 12.2312 14.7121H12.313C13.4439 14.7121 14.0094 14.7121 14.3607 14.3607C14.7121 14.0094 14.7121 13.4439 14.7121 12.313V12.2312C14.7121 11.788 14.7121 11.5664 14.787 11.3644C14.7973 11.3363 14.8088 11.3087 14.8213 11.2815C14.9111 11.0857 15.0678 10.9291 15.3812 10.6156C16.1027 9.89423 16.4634 9.53348 16.4966 9.08963C16.5011 9.03 16.5011 8.97 16.4966 8.91037C16.4634 8.46652 16.1027 8.10585 15.3812 7.38439C15.0678 7.07095 14.9111 6.91423 14.8213 6.71848C14.8088 6.69129 14.7973 6.66365 14.787 6.6356C14.7121 6.43369 14.7121 6.21205 14.7121 5.76878V5.68702C14.7121 4.55609 14.7121 3.99062 14.3607 3.63929C14.0094 3.28795 13.4439 3.28796 12.313 3.28796H12.2312C11.788 3.28796 11.5664 3.28795 11.3644 3.21304C11.3363 3.20263 11.3087 3.19118 11.2815 3.17871C11.0857 3.08891 10.9291 2.93219 10.6156 2.61875C9.89423 1.89733 9.53348 1.53661 9.08963 1.50335C9.03 1.49888 8.97 1.49888 8.91037 1.50335C8.46652 1.53661 8.10585 1.89733 7.38439 2.61875C7.07095 2.93219 6.91423 3.08891 6.71848 3.17871C6.69129 3.19118 6.66365 3.20263 6.6356 3.21304C6.43369 3.28795 6.21205 3.28796 5.76878 3.28796H5.68702C4.55609 3.28796 3.99062 3.28795 3.63929 3.63929C3.28795 3.99062 3.28796 4.55609 3.28796 5.68702V5.76878C3.28796 6.21205 3.28795 6.43369 3.21304 6.6356C3.20263 6.66365 3.19118 6.69129 3.17871 6.71848C3.08891 6.91423 2.93219 7.07095 2.61875 7.38439C1.89733 8.10585 1.53661 8.46652 1.50335 8.91037C1.49888 8.97 1.49888 9.03 1.50335 9.08963C1.53661 9.53348 1.89733 9.89423 2.61875 10.6156C2.93219 10.9291 3.08891 11.0857 3.17871 11.2815C3.19118 11.3087 3.20263 11.3363 3.21304 11.3644C3.28795 11.5664 3.28796 11.788 3.28796 12.2312V12.313C3.28796 13.4439 3.28795 14.0094 3.63929 14.3607C3.99062 14.7121 4.55609 14.7121 5.68702 14.7121H5.76878Z' stroke='%23BEBEC5' stroke-width='1.125'/%3E%3Cpath d='M11.25 6.75L6.75 11.25' stroke='%23BEBEC5' stroke-width='1.125' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.25 11.25H11.2419M6.75807 6.75H6.75' stroke='%23BEBEC5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.eye-on-icon {
    --svg: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M16.158%208.28375C16.386%208.60348%2016.5%208.76338%2016.5%209C16.5%209.23662%2016.386%209.39652%2016.158%209.71625C15.1334%2011.1529%2012.5169%2014.25%209%2014.25C5.48309%2014.25%202.86657%2011.1529%201.84203%209.71625C1.61401%209.39652%201.5%209.23662%201.5%209C1.5%208.76338%201.61401%208.60348%201.84203%208.28375C2.86657%206.84708%205.48309%203.75%209%203.75C12.5169%203.75%2015.1334%206.84708%2016.158%208.28375Z%22%20stroke%3D%22%23BEBEC5%22%20stroke-width%3D%221.125%22/%3E%3Cpath%20d%3D%22M11.25%209C11.25%207.75732%2010.2427%206.75%209%206.75C7.75732%206.75%206.75%207.75732%206.75%209C6.75%2010.2427%207.75732%2011.25%209%2011.25C10.2427%2011.25%2011.25%2010.2427%2011.25%209Z%22%20stroke%3D%22%23BEBEC5%22%20stroke-width%3D%221.125%22/%3E%3C/svg%3E");
}
.pencile-edit-icon {
    --svg: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M16.4249%204.60509L17.4149%203.6151C18.2351%202.79497%2019.5648%202.79497%2020.3849%203.6151C21.205%204.43524%2021.205%205.76493%2020.3849%206.58507L19.3949%207.57506M16.4249%204.60509L9.76558%2011.2644C9.25807%2011.772%208.89804%2012.4078%208.72397%2013.1041L8%2016L10.8959%2015.276C11.5922%2015.102%2012.228%2014.7419%2012.7356%2014.2344L19.3949%207.57506M16.4249%204.60509L19.3949%207.57506%22%20stroke%3D%22%23BEBEC5%22%20stroke-width%3D%222%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M18.9999%2013.5C18.9999%2016.7875%2018.9999%2018.4312%2018.092%2019.5376C17.9258%2019.7401%2017.7401%2019.9258%2017.5375%2020.092C16.4312%2021%2014.7874%2021%2011.4999%2021H11C7.22876%2021%205.34316%2021%204.17159%2019.8284C3.00003%2018.6569%203%2016.7712%203%2013V12.5C3%209.21252%203%207.56879%203.90794%206.46244C4.07417%206.2599%204.2599%206.07417%204.46244%205.90794C5.56879%205%207.21252%205%2010.5%205%22%20stroke%3D%22%23BEBEC5%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
}
.delete-icon {
    --svg: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M19.5%205.5L18.8803%2015.5251C18.7219%2018.0864%2018.6428%2019.3671%2018.0008%2020.2879C17.6833%2020.7431%2017.2747%2021.1273%2016.8007%2021.416C15.8421%2022%2014.559%2022%2011.9927%2022C9.42312%2022%208.1383%2022%207.17905%2021.4149C6.7048%2021.1257%206.296%2020.7408%205.97868%2020.2848C5.33688%2019.3626%205.25945%2018.0801%205.10461%2015.5152L4.5%205.5%22%20stroke%3D%22%23BEBEC5%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M3%205.5H21M16.0557%205.5L15.3731%204.09173C14.9196%203.15626%2014.6928%202.68852%2014.3017%202.39681C14.215%202.3321%2014.1231%202.27454%2014.027%202.2247C13.5939%202%2013.0741%202%2012.0345%202C10.9688%202%2010.436%202%209.99568%202.23412C9.8981%202.28601%209.80498%202.3459%209.71729%202.41317C9.32164%202.7167%209.10063%203.20155%208.65861%204.17126L8.05292%205.5%22%20stroke%3D%22%23BEBEC5%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M9.5%2016.5V10.5%22%20stroke%3D%22%23BEBEC5%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3Cpath%20d%3D%22M14.5%2016.5V10.5%22%20stroke%3D%22%23BEBEC5%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3C/svg%3E");
}
.toggle-on-icon {
    --svg: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M19%2012C19%2013.6569%2017.6569%2015%2016%2015C14.3431%2015%2013%2013.6569%2013%2012C13%2010.3431%2014.3431%209%2016%209C17.6569%209%2019%2010.3431%2019%2012Z%22%20stroke%3D%22%23BEBEC5%22%20stroke-width%3D%222%22/%3E%3Cpath%20d%3D%22M16%206H8C4.68629%206%202%208.68629%202%2012C2%2015.3137%204.68629%2018%208%2018H16C19.3137%2018%2022%2015.3137%2022%2012C22%208.68629%2019.3137%206%2016%206Z%22%20stroke%3D%22%23BEBEC5%22%20stroke-width%3D%222%22/%3E%3C/svg%3E");
}
.phone-icon {
    --svg: url("data:image/svg+xml,%3Csvg%20width%3D%2210%22%20height%3D%2210%22%20viewBox%3D%220%200%2010%2010%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M3.57913%201.85611L3.3778%201.40312C3.24616%201.10694%203.18034%200.95884%203.0819%200.845505C2.95854%200.70347%202.79773%200.59897%202.61784%200.543925C2.47429%200.5%202.31223%200.5%201.9881%200.5C1.51395%200.5%201.27688%200.5%201.07786%200.591145C0.843434%200.69851%200.631719%200.93164%200.547364%201.1753C0.475754%201.38214%200.496269%201.59471%200.537289%202.01985C0.973954%206.5451%203.45491%209.02605%207.98013%209.4627C8.40528%209.50375%208.61788%209.52425%208.82468%209.45265C9.06838%209.3683%209.30148%209.15655%209.40888%208.92215C9.49998%208.7231%209.49998%208.48605%209.49998%208.0119C9.49998%207.68775%209.49998%207.5257%209.45608%207.38215C9.40103%207.20225%209.29653%207.04145%209.15448%206.9181C9.04118%206.81965%208.89308%206.75385%208.59688%206.6222L8.14388%206.42085C7.82313%206.2783%207.66273%206.20705%207.49978%206.19155C7.34378%206.1767%207.18653%206.1986%207.04053%206.25545C6.88798%206.31485%206.75318%206.4272%206.48348%206.6519C6.21508%206.8756%206.08088%206.98745%205.91688%207.04735C5.77148%207.10045%205.57928%207.12015%205.42618%207.09755C5.25343%207.0721%205.12118%207.00145%204.85663%206.86005C4.03363%206.42025%203.57976%205.9664%203.13993%205.14335C2.99857%204.87885%202.92789%204.74655%202.90243%204.57385C2.87987%204.4207%202.89954%204.2285%202.95265%204.08315C3.01256%203.91914%203.1244%203.78493%203.34809%203.5165C3.57281%203.24684%203.68517%203.11201%203.74457%202.95945C3.80142%202.81347%203.82331%202.6562%203.80847%202.50024C3.79297%202.33726%203.72169%202.17688%203.57913%201.85611Z%22%20stroke%3D%22%233136B1%22%20stroke-linecap%3D%22round%22/%3E%3C/svg%3E");
}
.chat-icon{
    --svg: url("data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M11%205.78335C11%208.42495%208.7611%2010.5667%206%2010.5667C5.67535%2010.5671%205.3516%2010.5371%205.0327%2010.4773C4.80317%2010.4341%204.68839%2010.4125%204.60827%2010.4248C4.52814%2010.437%204.41459%2010.4974%204.1875%2010.6182C3.54507%2010.9599%202.79598%2011.0805%202.07556%2010.9465C2.34937%2010.6097%202.53638%2010.2056%202.61889%209.7724C2.66889%209.5074%202.545%209.25%202.35945%209.06155C1.51667%208.20575%201%207.05255%201%205.78335C1%203.14178%203.23889%201%206%201C8.7611%201%2011%203.14178%2011%205.78335Z%22%20stroke%3D%22%233136B1%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M5.99775%206H6.00225M7.9955%206H8M4%206H4.00449%22%20stroke%3D%22%233136B1%22%20stroke-width%3D%221.33333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
}
.info-icon {
    --svg: url("data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M11%206C11%203.23858%208.7614%201%206%201C3.23858%201%201%203.23858%201%206C1%208.7614%203.23858%2011%206%2011C8.7614%2011%2011%208.7614%2011%206Z%22%20stroke%3D%22%233136B1%22/%3E%3Cpath%20d%3D%22M6.12109%208.5V6C6.12109%205.7643%206.12109%205.64645%206.04784%205.5732C5.97464%205.5%205.85679%205.5%205.62109%205.5%22%20stroke%3D%22%233136B1%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M5.99609%204H6.00209%22%20stroke%3D%22%233136B1%22%20stroke-width%3D%221.33333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
}
/*new button*/
.yellow-btn {
    display: inline-block;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    padding: 20px 55px;
    color: #003DA5;
    background: #D6EE3E;
    border-radius: 8px;
}
.media-signup-option-btn{
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 12px;
    transition: all 0.3s linear;
    &:hover{
        color: initial;
    }
}
/* input */
/* custom label and input */
.custom-label {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #271212;
    margin-bottom: 24px;
    display: inline-block;
    & .required {
        color: #DC2626;
    }
}
.custom-input {
    padding: 23px 30px;
    border-radius: 8px;
    border: 1px solid #E7E1E1;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #767474;
    &.nice-select {
        height: auto;
    }
}
.input-with-icon-end {
    position: relative;
    input {
        padding-right: 55px;
    }
    .input-icon {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 30px;
        font-size: 18px;
    }
}
.custom-radio {
    accent-color: black;
    cursor: pointer;
}
.custom-form-wraper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
/* icon */
.fvt-icon-wraper {
    font-size: 20px;
    cursor: pointer;
    color: #BEBEC5;
    transition: all 0.3s linear;
    &.style-two {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid #EDEDF1;
    }
    &.active {
        color: #FF1F1F;
    }
}
/*Entites*/
.background-gray {
    background-color: #EBEBEB;
}
.entites-wraper {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.entites {
    .entites-title{
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 6px 12px;
        border: 1px solid #D3D3DB;
        border-radius: 6px;
        color: #0B43A0;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        cursor: pointer;
    }
    .entites-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: auto;
        background-color: #fff;
        padding: 8px 14px;
        border: 1px solid #D3D3DB;
        border-radius: 8px;
        transition: all 0.3s;
        span {
            color: #0B43A0;
            display: inline-block;
            white-space: nowrap;
        }
    }
    &:hover .entites-content {
        display: block;
    }
}
.sidebar-filter-toggle-btn {
    padding: 8px 24px;
    border: 1px solid #D3D3DB;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0B43A0;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    background: #fff;
    transition: all 0.3s;
    &:hover {
        background: #0B43A0;
        color: #fff;
    }
    &:focus {
        box-shadow: none;
        outline: none;
    }
}
.banner-inner-area.style-02 .list, .banner-inner-area.style-02 .banner-inner-title{
    color: #fff;
}
.banner-inner-area.style-02 .list:not(:last-child){
    color: rgba(255, 255, 255, 0.5);
}
.banner-inner-area.style-02 .list:not(:first-child)::before{
    background-color: rgba(255, 255, 255);
    transform: translateY(-50%) rotate(35deg);
    transform-origin: center center;
}
/*serviceList page*/
.sidebar-filter-wraper-toogle {
    background: #fff;
}
.provider-location-search-bar {
    display: flex;
    align-items: center;
    margin: 0 auto;
}
.location-search-wraper,
.provider-search-wraper {
    position: relative;
    flex: 1;
    input {
        width: 100%;
        padding: 24px 24px 24px 52px;
        border: 1px solid #D3D3DB;
        border-right: 0;
        font-size: 18px;
        font-weight: 500;
        line-height: 26px;
        color: #101010;
        &::placeholder {
            color: #ACA1A1;
        }
    }
    .search-icon {
        position: absolute;
        left: 24px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
        font-weight: 500;
        line-height: 26px;
        color: #ACA1A1;
    }
}
.provider-search-wraper input{
    border-radius: 8px 0 0 8px;
}
.search-btn-big {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    padding: 22px 82px;
    border: 1px solid #D3D3DB;
    border-radius: 0 8px 8px 0;
    background-color: #D6EE3E;
    color: #3136B1;
}
.sidebar-fitler-wraper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    border: 1px solid #D3D3DB;
    border-radius: 8px;
    background: #fff;
    .nice-select {
        float: none;
        color: #101010;
    }
    .sidebar-filter {
        background: #F7F7F7;
        border-radius: 8px;
        padding: 16px;
        margin-bottom: 10px;
        margin-top: 10px;
        h4 {
            color: #101010;
            font-weight: 600;
            line-height: 26px;
            font-size: 20px;
            display: flex;
            gap: 8px;
            margin-bottom: 0;
        }
        .form-select {
            margin-top: 16px;
        }
    }
}
.sidebar-fitler-wraper + .sidebar-fitler-wraper {
    margin-top: 24px;
}
.service-list-map-wraper {
    iframe {
        width: 100%;
        height: 486px;
        border: 0;
        border-radius: 12px;
    }
}
.sidebar-fitler-wraper.style-two {
    border: none;
    background: #E5E6F7;
    .creat-job-wraper {
        padding: 16px;
        background: #fff;
        border-radius: 8px;
        h4 {
            color: #101010;
            font-weight: 600;
            line-height: 26px;
            font-size: 20px;
            display: flex;
            gap: 8px;
            margin-bottom: 0;
        }
        p {
            font-size: 14px;
            font-weight: 400;
            line-height: 24px;
            color: #919191;
        }
        .create-job-btn {
            margin-top: 12px;
            padding: 12px 24px;
            border-radius: 8px;
            background-color: #3136B1;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
        }
    }
}
/*service list card*/
.varified-icon {
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background-color: #08BC8D;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}
.custon-small-badge {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 100px;
    &.red{
        color: #fff;
        background-color: #DA4C4A;
    }
    &.green{
        color: #fff;
        background-color: #40B179;
    }
}
.service-list-wraper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.service-list-card {
    font-size: 16px;
    line-height: 1.5;
    padding: 16px 24px;
    border: 1px solid #D3D3DB;
    border-radius: 16px;
    .upper-part {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        padding-bottom: 16px;
        border-bottom: 1px solid #E9E9ED;
        margin-bottom: 16px;
        .img-part {
            width: 200px;
            height: 120px;
            border-radius: 8px;
            overflow: hidden;
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 8px;
            }
        }
        .content-part {
            display: flex;
            flex-direction: column;
            gap: 8px;
            .icon {
                color: #003DA5;
                font-size: 18px;
            }
        }
        .service-title {
            color: #271212;
            font-weight: 500;
            line-height: 30px;
            font-size: 28px;
            display: flex;
            gap: 16px;
        }
        .varified-icon {
            margin-top: 4px;
        }
    }
    .lower-part {
        .footer-part {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            margin-top: 24px;
        }
        .review {
            display: flex;
            gap: 12px;
            color: #003DA5;
            font-weight: 500;
            .review-icon-list {
                display: flex;
                gap: 4px;
                color: #FFBF42;
            }
        }
        .addition-info-wraper {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            .info-title {
                display: flex;
                align-items: center;
                gap: 8px;
                padding: 6px 12px;
                border: 1px solid #D3D3DB;
                border-radius: 6px;
                color: #0B43A0;
                font-size: 14px;
                font-weight: 500;
                line-height: 20px;
                cursor: pointer;
                i {
                    color: #ACA1A1;
                    font-size: 14px;
                }
            }
            .info-content {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: auto;
                background-color: #fff;
                padding: 8px 14px;
                border: 1px solid #D3D3DB;
                border-radius: 8px;
                transition: all 0.3s;
                span {
                    color: #0B43A0;
                    display: inline-block;
                    white-space: nowrap;
                }
                span + span {
                    margin-top: 8px;
                }
            }
            .info-wraper:hover .info-content {
                display: block;
            }
        }
    }
}
/*service details page*/
.service-image-wraper {
    .video-part {
        position: relative;
        border-radius: 16px;
        height: 100%;
        .video {
            width: 100%;
            height: 100%;
            border-radius: 16px;
            a {
                display: block;
                height: 100%;
                border-radius: 16px;
                overflow: hidden;
                position: relative;
                .overlay {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background-color: rgba(0, 0, 0, 0.25);
                }
                iframe, video {
                    width: 100%;
                    height: 100%;
                    border-radius: 16px;
                }
            }
        }
    }
}
.service-details-image-wraper {
    display: grid;
    grid-template-columns: auto auto;
    gap: 16px;
    .service-img {
        /* max-width: 310px; */
        border-radius: 16px;
        a {
            border-radius: inherit;
        }
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 16px;
        }
        &:nth-child(3) {
            position: relative;
            grid-column: 1 / 3;
        }
    }
}
.service-details-header-wraper {
    max-width: 788px;
    .header {
        display: flex;
        gap: 16px;
        justify-content: space-between;
    }
    .header .service-name {
        font-size: 36px;
        font-weight: 500;
        line-height: 46px;
        color: #271212;
        margin: 0;
        display: flex;
        gap: 8px;
        .varified-icon {
            flex-shrink: 0;
            margin-top: 12px;
        }
    }
    .header .location {
        display: flex;
        font-size: 16px;
        font-weight: 700;
        line-height: 22px;
        color: #897F7F;
        margin-top: 12px;
        gap: 8px;
        i {
            color: #003DA5;
            font-size: 20px;
            line-height: 1;
        }
    }
    .rating {
        gap: 8px;
        font-size: 16px;
        color: #003DA5;
        font-weight: 500;
    }
    .review-icon-list {
        display: flex;
        gap: 4px;
        color: #FFBF42;
    }
    .service-details-header-entites {
        margin-top: 30px;
    }
}
.another-service-suggestion {
    max-width: 1194px;
}
/* Provider job list page */
.provider-job-list-wraper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.provider-job-list-card {
    padding: 24px;
    border-radius: 16px;
    background: #FAF9F7;
    color: #838383;
    font-size: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    .top-part {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
        .left-part {
            font-size: 18px;
            line-height: 26px;
            color: #00190F;
        }
        .price {
            font-weight: 500;
            color: #3136B1;
        }
    }
    .title {
        font-size: 24px;
        font-weight: 600;
        line-height: 30px;
        color: #3136B1;
        margin-top: 8px;
        margin-bottom: 6px;
    }
    .body-part {
        margin-top: 12px;
    }
    .footer {
        font-size: 14px;
        font-weight: 500;
        line-height: 24px;
        color: #00190F;
        margin-top: 16px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
}
.get-connected-now-wraper {
    max-width: 645px;
    margin: 0 auto;
    text-align: center;
}
.section-title .title.style-two {
    color: #080808;
}
.get-started-btn-wraper {
    margin-top: 40px;
}
/* Provider-job details page design */
.job-details-part {
    .top-part {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
        .job-post-date {
            font-size: 16px;
            font-style: italic;
            font-weight: 400;
            line-height: 1.5;
            color: #838383;
        }
    }
    .provider-job-details-title {
        font-size: 36px;
        font-weight: 500;
        line-height: 1.25;
        color: #271212;
        margin-top: 6px;
        margin-bottom: 12px;
    }
    .budget {
        font-size: 18px;
        line-height: 1.3;
        color: #00190F;
        .price {
            font-weight: 500;
            color: #3136B1;
        }
    }
    .store-location-wraper {
        margin-top: 12px;
        display: flex;
        gap: 16px;
        font-size: 14px;
        line-height: 1.5;
        color: #00190F;
        font-weight: 500;
        i {
            color: #BEBEC5;
            font-size: 20px;
            line-height: 1;
        }
    }
    .provider-job-details-des {
        max-width: 780px;
        color: #838383;
        font-size: 16px;
        line-height: 1.5;
        margin-top: 24px;
    }
    .send-request-modal {
        .modal-header {
            border-bottom: none;
        }
        .modal-footer {
            border-top: none;
        }
    }
    .map-location {
        max-width: 1194px;
        height: 500px;
        margin-top: 46px;
        iframe {
            width: 100%;
            height: 100%;
            border-radius: 12px;
            border: 0;
        }
    }
    .date-schedual {
        display: flex;
        gap: 16px;
        margin-top: 80px;
        color: #271212;
        .title {
            color: #271212;
            font-weight: 500;
        }
        .date-time {
            display: flex;
            gap: 24px;
            font-size: 18px;
            font-weight: 500;
            line-height: 1.5;
            color: #000000;
            margin-top: 16px;
        }
    }
}
/*trusted client*/
@keyframes scrollAnimations {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-100%);
    }
}
.trusted-by-clients-wraper {
    max-width: 1170px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
    .title {
        font-size: 24px;
        font-weight: 700;
        line-height: 34px;
        color: #797979;
        margin-bottom: 40px;
    }
    .trusted-clients-wraper {
        display: flex;
        align-items: center;
        animation: scrollAnimations 20s linear infinite;
    }
    .trusted-client-inner {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        .trusted-client {
            padding: 0 50px;
            flex-shrink: 0;
        }
    }
}
/* Registration Page */
.provider-registration-page-head {
    background: #FAFAFA;
    border-bottom: 1px solid #F2F2F2;
}
.provider-registration-page-head-inner {
    padding: 26px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    .cancle-icon {
        cursor: pointer;
        border-radius: 50%;
        border: 2px solid #767676;
        color: #767676;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 33px;
        width: 33px;
        font-size: 16px;
        font-weight: 500;
    }
}
.provider-registration-page-inner {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    .welcome-back {
        .title {
            font-size: 60px;
            font-weight: 600;
            line-height: 1.10;
            color: #3136B1;
            margin-top: 40px;
        }
    }
}
.media-signup-option-wraper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin: 60px 0;
}
.google-signup {
    color: #000;
    background-color: #EEEEEE;
    flex-grow: 1
}
.facebook-signup {
    color: #fff;
    background-color: #4167B2;
    flex-grow: 1 ;
}

.forget-pass-text {
    font-size: 16px;
    line-height: 1.5;
    color: #767474;
    a {
        text-decoration: underline;
    }
}
.already-account {
    font-size: 18px;
    color: #271212;
    font-weight: 500;
    a {
        color: #767474;
        text-decoration: underline;
    }
}
/* Provider page inner */
.action-btn-wraper {
    display: flex;
    gap: 16px;
    .action-btn {
        padding: 22px 24px;
        border: 1px solid #CACBC6 ;
        border-radius: 8px;
        display: flex;
        gap: 8px;
        font-size: 18px;
        line-height: 1;
        color: #767474;
        transition: all 0.3s ease-in-out;
        cursor: pointer;
        &.yellow-btn {
            color: #3136B1;
            border-color: transparent;
        }
        &:hover {
            color: #3136B1;
        }
    }
}
.provider-registration-process-page-inner,
.provider-create-job-page-inner {
    max-width: 980px;
    margin-inline: auto;
    .title {
        margin-bottom: 60px;
    }
    .custom-form {
        .custom-label {
            margin-bottom: 12px;
        }
    }
    .form-group-wraper {
        display: flex;
        gap: 24px;
        .form-group{
            flex: 1 1 220px;
        }
    }
    .availability-wraper {
        font-size: 16px;
        line-height: 24px;
        color: #5D6A7B;
    }
}
.image-upoader-wraper {
    height: 185px;
    width: 258px;
    border-radius: 12px;
    border: 1px dashed #8A8A8A;
    background: #FAFAFA;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-align: center;
    .add-image {
        font-size: 12px;
        font-weight: 500;
        color: #303030;
        padding: 6px 12px;
        border-radius: 8px;
        background-color: #FFFFFF;
        box-shadow: 0 1px 0 0 #E3E3E3;
        text-align: center;
        display: inline-block;
        cursor: pointer;
    }
}

.form-group{
    .img-wrap{
        .rmv-span{
            position: absolute;
            right: 0;
            top: 0;
            z-index: 2;
            width: 30px;
            height: 30px;
            text-align: center;
            line-height: 30px;
            background-color: #b15b5b;
            color: #fff;
            cursor: pointer;
        }
    }
}
/* User job list page */
.user-job-list-wraper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(385px, 1fr));
    gap: 24px;
}
.user-job-listing-card {
    padding: 24px;
    border-radius: 16px;
    background-color: #FAF9F7;
    color: #00190F;
    .top-part {
        display: flex;
        gap: 16px;
        justify-content: space-between;
        font-size: 16px;
        color: #838383;
        .icon-action-btn-wraper {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .icon-action-btn i{
            font-size: 22px;
            padding: 0;
        }
    }
    .title {
        font-size: 24px;
        font-weight: 600;
        line-height: 30px;
        color: #3136B1;
        margin-top: 8px;
        margin-bottom: 12px;
    }
    .count-wraper {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        font-size: 18px;
        .count-item {
            display: flex;
            gap: 8px;
            i {
                margin-top: 3px;
            }
        }
        .count-number {
            color: #3136B1;
            font-weight: 500;
        }
    }
    .footer-card {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: space-between;
        align-items: center;
        margin-top: 24px;
        .location {
            font-size: 14px;
            line-height: 1.1;
            font-weight: 500;
        }
        .budget {
            font-size: 18px;
            line-height: 1.3;
            .price {
                font-weight: 500;
                color: #3136B1;
            }
        }
    }
    i {
        color: #BEBEC5;
    }
}
/* user job details page */
.job-details-part .action-icon-wraper {
    display: flex;
    gap: 16px;
    align-items: center;
    .action-btn {
        height: 54px;
        width: 54px;
        border-radius: 50%;
        border: 1px solid #EDEDF1;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        color: #3136B1;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        .custom-switch-icon.active {
            background-color: #3136B1;
        }
    }
}
.job-details-entites-wraper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    gap: 16px;
    .job-entites {
        font-size: 14px;
        line-height: 1;
        color: #00190F;
        font-weight: 500;
        .svg-icon {
            color: #3136B1;
        }
    }
}
.offer-card-wraper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(302px, 1fr));
    gap: 24px;
    margin-top: 26px;
}
.offer-card {
    background-color: #F6F6F6;
    border-radius: 12px;
    overflow: hidden;
    .top-part {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        padding: 24px 24px 8px 24px;
        .price {
            color: #3136B1;
            font-size: 24px;
            font-weight: 600;
            line-height: 1;
        }
    }
    .down-part {
        padding: 12px 24px;
        background-color: #EFEFEF;
        display: flex;
        gap: 12px;
    }
    .image-part{
        width: 58px;
        height: 58px;
        border-radius: 12px;
        overflow: hidden;
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    .text-part {
        flex: 1;
    }
    .upper-part {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        .name {
            font-size: 18px;
            color: #271212;
            cursor: pointer;
        }
        .rating {
            font-size: 14px;
            color: #271212;
            i {
                color: #FFBF42;
            }
        }
    }
    .bottom-part {
        margin-top: 8px;
        display: flex;
        gap: 12px;
        justify-content: space-between;
    }
    .location {
        color: #897F7F;
        i{
            margin-top: -2px;
        }
    }
    .action-icon-wraper {
        display: flex;
        gap: 6px;
        align-items: center;
        .action-btn {
            height: 22px;
            width: 22px;
            border-radius: 50%;
            border: 1px solid #D3D3DB;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #3136B1;
            font-size: 12px;
            cursor: pointer;
        }
    }
}
/* user-job-details modal */
.modal-dialog:has( .user-job-details ){
    max-width: 979px;
    .modal-content-wraper {
        border-radius: 16px;
    }
}
.modal .user-job-details {
    border: none;
    border-radius: 16px;
    .modal-content-wraper {
        max-width: 979px;
        padding: 24px;
        padding-right: 66px;
        background-color: #FFFFFF;
        position: relative;
    }
    .modal-close-btn{
        position: absolute;
        top: 18px;
        right: 18px;
        cursor: pointer;
        height: 24px;
        width: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background-color: #E6E6E6;
        font-size: 12px;
        color: #00190F;
    }
    .top-part {
        display: flex;
        gap: 12px;
        .image {
            width: 66px;
            height: 66px;
            border-radius: 12px;
            overflow: hidden;
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
        .text-part {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 16px;
            justify-content: space-between;
            .name {
                font-size: 24px;
                font-weight: 500;
                line-height: 1.2;
                color: #271212;
            }
            .text-left{
                .loaction-rating{
                    gap: 16px;
                    .rating {
                        font-size: 14px;
                        color: #271212;
                        i {
                            color: #FFBF42;
                        }
                    }
                }
            }
            .text-right {
                font-size: 18px;
                line-height: 1.4;
                color: #00190F;
                .price {
                    color: #3136B1;
                    font-weight: 500;
                }
            }
        }
    }
    .des {
        font-size: 16px;
        line-height: 1.5;
        color: #838383;
        margin: 24px 0;
    }
    .hire-btn {
        padding: 16px 37px;
        font-size: 18px;
    }
    .reject-btn {
        background: rgba(255, 23, 71, 0.1);
        padding: 16px 37px;
        font-size: 18px;
        color: #FF1747;
    }
}
/* Price plan */
.price-plan-card {
    padding: 40px;
    border-radius: 24px;
    background-color: #EBEBEB;
    color: #4D4D4D;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    gap: 40px;
    .price-plan-top-part {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .price-plan-card-head {
        text-align: center;
        border-bottom: 1px solid #D4D4D4;
        padding-bottom: 42px;
        .offer {
            display: inline-block;
            font-size: 28px;
            font-weight: 400;
            line-height: 1;
            padding: 8px;
            border-radius: 16px;
            color: #fff;
            background: #3136B1;
            margin-bottom: 24px;
        }
        .price-plan-title {
            font-size: 48px;
            font-weight: 500;
            line-height: 1.25;
            color: #4D4D4D;
            margin-bottom: 12px;
            transition: all 0.3s ease-in-out;
        }
        .price {
            font-size: 16px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5px;
        }
        .sign {
            opacity: .5;
            font-size: 24px;
            font-weight: 500;
        }
        .money {
            font-size: 28px;
            font-weight: 500;
            line-height: 1.25;
        }
        .time{
            opacity: .5;
        }
    }
    .price-plan-card-body {
        ul {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        li {
            font-size: 18px;
            line-height: 1.6;
            position: relative;
            display: flex;
            gap: 10px;
            &::before {
                content: "";
                font-family: "Line Awesome Free";
                font-weight: 900;
                display: flex;
                justify-content: center;
                align-items: center;
                font-size: 20px;
                line-height: 1;
                width: 28px;
                height: 28px;
                border-radius: 50%;
                background-color: #3136B1;
                color: #fff;
                flex-shrink: 0;
            }
            .ht {
                color: #080808;
                font-weight: 500;
            }
        }
    }
    .plan-btn {
        padding: 16px;
        border-radius: 8px;
        font-size: 18px;
        font-weight: 500;
        line-height: 1.2;
        text-align: center;
        color: #fff;
        background-color: #3136B1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease-in-out;
    }
    &:hover,
    &.active{
        color: #fff;
        background-color: #2A2B4D;
        .price-plan-title {
            color: #fff;
        }
        .price-plan-card-body {
            li {
                &::before {
                    background-color: #fff;
                    color: #3136B1;
                }
                .ht {
                    color: #3136B1;
                }
            }
        }
    }
}
.bg-gray {
    background-color: #F2F4F7;
}
/* provider list details */
.title-icon-wraper {
    display: flex;
    gap: 16px;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.1;
    color: #271212;
    .icon {
        color: #919191;
    }
}
.privider-listing-details-body-inner{
    margin-top: 56px;
    height: fit-content;
    position: sticky;
    top: 0;
    .info-wraper{
        .nav-tabs {
            display: flex;
            justify-content: space-between;
            gap: 24px;
        }
        .tab-content {
            margin-top: 0px;
        }
    }
    .opening-hour-wraper {
        .opening-hour-inner {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 24px;
            max-width: 260px;
        }
        .opening-hour-inner .day-hour {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 18px;
            line-height: 1.5;
            color: #4E4E4E;
            gap: 16px;
            .date {
                font-weight: 500;
                color: #271212;
            }
        }
    }
}
.new-cmn-btn {
    all: unset;
    cursor: pointer;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
}
.send-request-btn {
    background-color: #3136B1;
    color: #fff;
    &:focus{
        outline: none;
    }
}
.cancel-btn {
    background-color: #EBEBEB;
    color: #271212;
}
.white-card {
    padding: 24px;
    border-radius: 16px;
    background-color: #ffffff;
}
.info-nav-btn {
    display: inline-flex;
    padding: 14px 24px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    color: #271212;
    position: relative;
    &:hover {
        color: initial;
    }
    &::after {
        content: "";
        display: block;
        width: 100%;
        height: 2px;
        background-color: transparent;
        position: absolute;
        bottom: 0;
        left: 0;
    }
    &.active::after {
        background-color: #FFBF42;
    }
}
/* Portfolio-card */
.portfolio-wraper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.pointr-event-none {
    pointer-events: none;
}
.portfolio-card {
    padding: 24px;
    border-radius: 16px;
    background-color: #ffffff;
    color: #767474;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    .media-part {
        overflow: hidden;
        margin-bottom: 24px;
        width: 100%;
        aspect-ratio: 3/2;
        &:has(iframe),
        &:has(video) {
            height: 100%;
        }
        .media {
            width: 100%;
            height: 100%;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            a {
                display: block;
                width: 100%;
                height: 100%;
                overflow: hidden;
                border-radius: 8px;
                position: relative;
            }
            .overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: #0000004F;
                display: flex;
                justify-content: center;
                align-items: center;
                color: #fff;
                font-size: 36px;
                cursor: pointer;
            }
            img,
            video,
            iframe {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    }
    .media-part {
        display: grid;
        gap: 2px;
    }

    /* 1 image */
    .media-part:has(.media:nth-child(1):nth-last-child(1)) {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }

    /* 2 images - stacked vertically */
    .media-part:has(.media:nth-child(2):nth-last-child(1)) {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }

    /* 3 images - 1 on top, 2 below */
    .media-part:has(.media:nth-child(3):nth-last-child(1)) {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 1fr 1fr;
    }
    .media-part:has(.media:nth-child(3):nth-last-child(1)) .media:nth-child(1) {
        grid-column: 1 / span 2;
    }

    /* 4 images - 2x2 grid */
    .media-part:has(.media:nth-child(4):nth-last-child(1)) {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }

    /* 5 images - top 2, bottom 3 */
    .media-part:has(.media:nth-child(5):nth-last-child(1)) {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr 1fr;
    }
    .media-part:has(.media:nth-child(5):nth-last-child(1)) .media:nth-child(1) {
        grid-column: 1 / span 2;
    }
    .media-part:has(.media:nth-child(5):nth-last-child(1)) .media:nth-child(2) {
        grid-column: 3;
    }

    .content-part {
        .title {
            font-size: 24px;
            color: #00190F;
            line-height: 28px;
            margin-bottom: 8px;
        }
        .date {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 12px;
        }
        .date i{
            color: #003DA5;
        }
    }
}
/* new container */
.container-1600{
    max-width: 1640px;
    margin: 0 auto;
    padding: 0 20px;
}
@media only screen and (max-width: 1700px) {
    .container-1600{
        max-width: 1440px;
    }
}
@media only screen and (max-width: 1500px) {
    .container-1600{
        max-width: 1320px;
    }
}
@media only screen and (max-width: 1399.98px) {
    .container-1600{
        max-width: 1140px;
    }
}
@media only screen and (max-width: 1199.98px) {
    .container-1600{
        max-width: 960px;
    }
    .search-btn-big {
        padding: 16px 40px;
        font-size: 16px;
        line-height: 24px;
    }
    .service-list-map-wraper {
        iframe {
            height: 290px;
        }
    }
    .location-search-wraper,
    .provider-search-wraper {
        position: relative;
        input {
            padding: 16px 16px 16px 50px;
            font-size: 16px;
            line-height: 24px;
        }
    }
    .provider-job-list-wraper {
        grid-template-columns: repeat(1, 1fr);
    }
    /* Price Plan */
    .price-plan-card {
        gap: 24px;
        padding: 24px;
        border-radius: 12px;
        .price-plan-top-part {
            gap: 24px;
        }
        .price-plan-card-head {
            padding-bottom: 24px;
            .offer {
                font-size: 18px;
            }
            .price-plan-title {
                font-size: 24px;
            }
            .sign {
                font-size: 18px;
            }
            .money {
                font-size: 18px;
            }
        }
        .price-plan-card-body {
            li {
                font-size: 14px;
                &::before {
                    font-size: 14px;
                    width: 18px;
                    height: 18px;
                }
            }
        }
    }
}
@media only screen and (max-width: 991.98px) {
    .container-1600{
        max-width: 720px;
    }
    .sidebar-filter-wraper-toogle {
        position: absolute;
        left: -200%;
        z-index: 10;
        transition: all 0.3s;
        &.active {
            left: 10px;
        }
    }
}
@media only screen and (max-width: 767.98px) {
    .container-1600{
        max-width: 540px;
    }
    .privider-listing-details-body-inner {
        margin-top: 0;
        margin-bottom: 30px;
    }
}
@media only screen and (max-width: 575.98px) {
    .container-1600{
        max-width: 100%;
    }
    .provider-location-search-bar {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .location-search-wraper, .provider-search-wraper {
        width: 100%;
        input {
            border: 1px solid #D3D3DB;
            border-radius: 8px;
        }
    }
    .search-btn-wraper {
        width: 100%;
    }
    .search-btn-big {
        width: 100%;
        border-radius: 8px;
    }
    .service-list-card {
        & .upper-part {
            .img-part {
                height: 220px;
                width: 100%;
            }
        }
    }
    /* User job list page */
    .user-job-list-wraper,
    .offer-card-wraper {
        grid-template-columns: 1fr;
    }
}