/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

# Typography
# Normalize
# Accessibility
# Globals
# Alignments
# Clearings
# Posts and pages
# Captions
# Galleries
# Unit test
# Block Color Palette Colors
# Sections
    ## navbar
    ## top_bar
    ## header_bottom
    ## banner
    ## banner_ads
    ## news
    ## video
    ## sports
    ## right_side_item
    ## topics
    ## widgets
    ## popular_stories
    ## recent-stories
    ## highlights
    ## trendy
    ## photo gallery
    ## blog-details
    ## details_tag_area
    ## details_comments
    ## details_replay
    ## author
    ## about
    ## contact
    ## 404
    ## search_area

# Elements
    ## section_title
    ## button
    ## back_top
    ## preloader
    ## search_popup
    ## sidebars
    ## social-connects
    ## tags-area
    ## categories
    ## whats_new
    ## inner-page-menu
    ## common-socials
    ## faq

--------------------------------------------------------------*/


/* Media Queries */


/*--------------------------------------------------------------
    google fonts
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/

:root {
    /*--main-color-one: #1DBF73;*/
    /*--main-color-one-rgb: 29, 191, 115;*/
    /*--main-color-two: #47C8ED;*/
    /*--main-color-three: #FF6B2C;*/
    /*--heading-color: #333333;*/
    /*--light-color: #666666;*/
    /*--extra-light-color: #999999;*/
    --main-color-one: #FF6B2C;
    --main-color-one-rgb: 255, 107, 44;
    --main-color-two: #4D77FF;
    --main-color-two-rgb: 77, 119, 255;
    --main-color-three: #FF6B2C;
    --main-color-three-rgb: 255, 107, 44;
    --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;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.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 {
    display: none;
}

.tab-content.active {
    display: block;
    -webkit-animation: 1s fade-effects;
    animation: 1s fade-effects;
}

#media_upload_modal .tab-content {
    display: block !important;
}

@-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;
}

.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;
    }
    .dashboard-right .btn-wrapper.margin-top-50.text-right {
        text-align: left !important;
    }
}

@media only screen and (max-width: 375px) {
    .btn-wrapper.margin-top-50 {
        margin-top: 30px;
    }
}

@media (min-width: 320px) and (max-width: 991.98px) {
    .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;
}


/*--------------------------------------------------------------
# Global
--------------------------------------------------------------*/

.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;
}


/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
    clear: both;
}

.wp-caption img[class*=wp-image-] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}


/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/

.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
}


/*----------------------------------------
    # Unit test
------------------------------------------*/

.wp-link-pages a {
    margin: 0 5px;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

.wp-link-pages {
    margin-bottom: 30px;
    margin-top: 25px;
}

.wp-link-pages span,
.wp-link-pages a {
    border: 1px solid #e2e2e2;
    padding: 5px 15px;
    display: inline-block;
}

.wp-link-pages .current,
.wp-link-pages a:hover {
    background-color: var(--main-color-one);
    color: #fff;
    border-color: var(--main-color-one);
}

.wp-link-pages span:first-child {
    margin-right: 5px;
}

dl,
ol,
ul {
    padding-left: 15px;
}

.post-password-form input {
    display: block;
    border: 1px solid #e2e2e2;
    height: 50px;
    border-radius: 3px;
    padding: 0 20px;
}

.post-password-form label {
    font-weight: 600;
    color: #333;
}

.post-password-form input[type=submit] {
    width: 100px;
    height: 50px;
    background-color: var(--main-color-one);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

.post-password-form input[type=submit]:hover {
    background-color: #121A2F;
}

.footer-widget .table td,
.footer-widget .table th {
    padding: 0.5rem !important;
}


/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.3.6,
* Autoprefixer: v10.3.1
* Browsers: last 4 version
*/


/*----------------------------------------------
    # Nav bar
----------------------------------------------*/

.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: auto;
    z-index: 9;
}

.navbar-area.navbar-two .nav-container .nav-right-content ul li {
    color: var(--heading-color);
}

.navbar-area.navbar-two .nav-container .nav-right-content ul li a {
    color: var(--heading-color);
}

.navbar-area.navbar-two .nav-container .nav-right-content ul li a .info-bar-item .icon:hover {
    color: var(--main-color-three);
}

.navbar-area.navbar-two .nav-container .nav-right-content ul li .info-bar-item-two .author-thumb img {
    border: 2px solid var(--main-color-three);
}

.navbar-area.navbar-two .nav-container .nav-right-content ul li .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.navbar-two .nav-container .nav-right-content {
        display: none;
    }
    .navbar-area.navbar-two .nav-container .navbar-collapse.show .navbar-nav {
        background: #F1F6FF;
        height: auto;
    }
}

.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 {
    border-bottom: 4px solid var(--heading-color);
}

.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 {
    background-color: var(--heading-color);
    color: #fff;
}

.navbar-area.navbar-two .nav-container .navbar-collapse .navbar-nav li a:hover {
    color: var(--heading-color);
    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;
        z-index: 1;
    }
}

.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;
    }
}

@media (min-width: 320px) and (max-width: 991.98px) {
    .navbar-area .nav-container .nav-right-content {
        display: none;
    }
}

.navbar-area .nav-container .nav-right-content ul {
    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;
}

.navbar-area .nav-container .nav-right-content ul li {
    display: inline-block;
    margin: 0 15px;
    color: #fff;
}

.navbar-area .nav-container .nav-right-content ul li:last-child {
    margin-right: 0;
    margin-left: 0;
}

.navbar-area .nav-container .nav-right-content ul li a {
    color: #fff;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.navbar-area .nav-container .nav-right-content ul li a .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 ul li a .info-bar-item .icon {
    font-size: 24px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    margin-right: 20px;
    /* &:not(:last-child) {
      margin-right: 20px;
  }
  &:not(:first-child) {
      margin-right: 20px;
  } */
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .navbar-area .nav-container .info-bar-item .icon {
        margin-right: 10px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar-area .nav-container .info-bar-item .icon {
        margin-right: 5px;
    }
}

.navbar-area .nav-container .info-bar-item .icon.notification-icon:hover {
    color: var(--main-color-one);
}

.navbar-area .nav-container .info-bar-item .icon.notification-icon:hover .notification-number {
    background: #fff;
    color: var(--main-color-one);
}

.navbar-area .nav-container .info-bar-item .icon.notification-icon:hover .notification-number.style-02 {
    background: #fff;
    color: var(--main-color-three);
}

.navbar-area .nav-container .notification-icon {
    position: relative;
    z-index: 1;
    margin-right: 30px;
}

.notification-icon:hover .notification-list-item {
    visibility: visible;
    opacity: 1;
    top: 100%;
    background: #fff;
}

.notification-icon .notification-list-item {
    background: #141414;
    box-shadow: none;
    transition: all .2s;
}

.notification-icon .notification-list-item .list .list-order {
    border-bottom: 1px solid #2a2a2a;
    transition: .1s ease-in;
    width: 100%;
    gap: 10px;
}

.notification-icon .notification-list-item .list .list-order .order-icon i {
    font-size: 16px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    width: 24px;
    margin-right: 5px;
    background: #383838;
    color: #fff;
    transition: .1s ease-in;
}

.navbar-two .notification-icon .notification-list-item .list .list-order .order-icon i {
    background-color: var(--main-color-three);
}

.notification-icon .notification-list-item .list {
    margin: 0 !important;
    display: block !important;
}

.notification-icon .notification-list-item .list .list-order {
    display: inline-flex;
    font-size: 15px;
    font-weight: 400;
    padding: 10px 20px;
    color: var(--heading-color);
    border-bottom: 1px solid rgba(221, 221, 221, 0.7);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.notification-icon .notification-list-item .list .list-order {
    border-bottom: 1px solid #d9d9d9;
    transition: .1s ease-in;
}

.notification-icon .notification-list-item .list .list-order:hover {
    background: var(--main-color-one);
    color: #fff;
}

.notification-icon .notification-list-item .list .list-order:hover .order-icon i {
    background: #fff;
    color: #333;
    border-color: #fff;
}

.notification-icon .notification-list-item {
    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: 300px;
    background: #fff;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.2s;
    transition: 0.1s ease-in;
    display: block !important;
    margin-left: 0 !important;
}

.white .notification-icon:hover .notification-list-item {
    visibility: visible;
    opacity: 1;
    top: 100%;
}

.white .notification-icon .notification-list-item {
    background: #141414;
    box-shadow: none;
    transition: all .2s;
}

@media (max-width: 575px) {
    .white .notification-icon .notification-list-item {
        transform: translateX(0px);
    }
    .notification-icon .notification-list-item {
        transform: translateX(0px);
    }
}

@media (max-width: 480px) {
    .white .notification-icon .notification-list-item {
        transform: translateX(0px);
    }
    .notification-icon .notification-list-item {
        transform: translateX(0px);
    }
}

@media (max-width: 375px) {
    .white .notification-icon .notification-list-item {
        transform: translateX(10px);
        max-width: 290px;
    }
    .notification-icon .notification-list-item {
        transform: translateX(10px);
        max-width: 290px;
    }
}

.white .notification-icon .notification-list-item .list .list-order {
    border-bottom: 1px solid #2a2a2a;
    transition: .1s ease-in;
    gap: 10px;
}

.white .notification-icon .notification-list-item .list .list-order .order-icon i {
    font-size: 16px;
    display: inline-block;
    background-color: var(--main-color-one);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    width: 24px;
    margin-right: 5px;
    color: #fff;
    transition: .1s ease-in;
}

.white.notification-icon .notification-list-item .list {
    margin: 0 !important;
    display: block !important;
}

.white .notification-icon .notification-list-item .list .list-order {
    display: inline-flex;
    font-size: 15px;
    font-weight: 400;
    padding: 10px 20px;
    color: #fff;
    border-bottom: 1px solid #383838;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.white .notification-icon .notification-list-item .list .list-order {
    border-bottom: 1px solid #383838;
    transition: .1s ease-in;
}

.white .notification-icon .notification-list-item .list .list-order:last-child {
    border-bottom: none;
}

.white .notification-icon .notification-list-item .list .list-order:hover {
    background: var(--main-color-one);
    color: #fff;
}

.white .notification-icon .notification-list-item .list .list-order:hover .order-icon i {
    background: #fff;
    color: #333;
    border-color: #fff;
}

.white .notification-icon .notification-list-item {
    position: absolute;
    top: 130%;
    right: 0;
    background: #141414;
    color: #fff;
    z-index: 9998;
    box-shadow: none;
    max-width: 300px;
    visibility: hidden;
    opacity: 1;
    -webkit-transition: all 0.2s;
    transition: 0.1s ease-in;
    display: block !important;
    margin-left: 0 !important;
    max-height: 500px;
    overflow-y: auto;
}

.white .notification-title {
    color: #fff;
    border-color: #383838;
}

.notification-title {
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    line-height: 36px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1);
    padding: 10px 0;
}

.navbar-two .notification-icon .notification-list-item .list .list-order:hover {
    background: var(--main-color-three);
}

.notification-icon .notification-list-item.hover-color-two .list .list-order:hover {
    background: var(--main-color-two);
}

.notification-icon .notification-list-item.hover-color-three .list .list-order:hover {
    background: var(--main-color-three);
}

.notification-icon .notification-list-item.hover-color-four .list .list-order:hover {
    background: var(--main-color-four);
}

.navbar-area .nav-container .info-bar-item .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: 22px;
    width: 22px;
    border-radius: 50%;
    position: absolute;
    top: 0px;
    right: -7px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.notification-icon i {
    font-size: 30px;
}

.nav-right-content {
    display: flex;
    align-items: center;
}

.navbar-area .nav-container .info-bar-item .icon .notification-number.style-02 {
    background: var(--main-color-three);
}

.navbar-area .nav-container .info-bar-item .cart-icon {
    position: relative;
    z-index: 9;
}

.navbar-area .nav-container .info-bar-item .cart-icon.active .cart-list {
    visibility: visible;
    opacity: 1;
    top: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    z-index: 9;
}

.navbar-area .nav-container .info-bar-item .cart-icon .cart-list {
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0%;
    left: 0;
    z-index: 9;
    color: #fff;
    min-width: 150px;
    -webkit-transform: scale(0);
    transform: scale(0);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.navbar-area .nav-container .info-bar-item .cart-icon .cart-list .single-list {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    padding: 10px 20px;
    background: #000;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.navbar-area .nav-container .info-bar-item .cart-icon .cart-list .single-list:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-area .nav-container .info-bar-item .cart-icon .cart-list .single-list:hover {
    background: #fff;
    color: #000;
}

.navbar-area .nav-container .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-right-inner {
    display: flex;
    align-items: center;
}

.navbar-area .nav-container .nav-right-content {
    transition: all .3s;
}

.navbar-area .nav-container .nav-right-content.active {
    display: block;
}

@media (min-width: 300px) and (max-width: 991.98px) {
    .navbar-area .nav-container .nav-right-content {
        margin-left: auto;
        visibility: hidden;
        opacity: 0;
        margin-top: -50px;
        transition: all .4s;
    }
    .navbar-area .nav-container .nav-right-content.active {
        visibility: visible;
        opacity: 1;
        margin-top: 0;
    }
}

.show-nav-right-contents {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: var(--heading-color);
    display: none;
}

.show-nav-right-contents.white-color {
    color: rgba(255, 255, 255, 0.5);
}

.show-nav-right-contents:hover {
    color: var(--heading-color);
}

.show-nav-right-contents.white-color {
    color: #fff;
}

.show-nav-right-contents.white-color:hover {
    color: #fff;
}

@media (min-width: 300px) and (max-width: 991.98px) {
    .show-nav-right-contents {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }
}

.navbar-area .nav-container .info-bar-item-two .author-thumb {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
}

.navbar-area .nav-container .info-bar-item-two .author-thumb img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.navbar-area .nav-container .info-bar-item-two .author-nav-content .title {
    display: inline-block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.navbar-area .nav-container .info-bar-item-two .author-nav-content .title:hover {
    color: var(--main-color-one);
}

.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.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: "\f107";
    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;
}
.navbar-area .nav-container .responsive-mobile-menu .navbar-toggler {
    display: none;
}
@media only screen and (max-width: 991px) {
    .navbar-area.navbar-two .nav-container {
        padding: 20px 0px;
    }
    .navbar-area.navbar-two .nav-container .navbar-toggler {
        border: 1px solid rgba(0, 0, 0, 0.2) !important;
    }
    .navbar-area .nav-container {
        position: relative;
        z-index: 1;
        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.5);
        outline: none;
        display: block;
    }
    .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.black-color {
        border: 1px solid rgba(0, 0, 0, 0.4);
    }
    .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.black-color .navbar-toggler-icon {
        background: rgba(0, 0, 0, 0.4);
    }
    .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.4);
    }
    .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.black-color .navbar-toggler-icon.active::before,
    .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler.black-color .navbar-toggler-icon.active::after {
        background: rgba(0, 0, 0, 0.4);
    }
    .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler .navbar-toggler-icon {
        background: rgba(255, 255, 255, 0.5);
        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.5);
        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 .responsive-mobile-menu .navbar-toggler .navbar-toggler-icon.active {
        background: none;
    }
    .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler .navbar-toggler-icon.active::before,
    .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler .navbar-toggler-icon.active::after {
        background: rgba(255, 255, 255, 0.5);
        top: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler .navbar-toggler-icon.active::after {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .navbar-area .nav-container .navbar-brand {
        display: block;
    }
    .navbar-area .nav-container .navbar-brand .navbar-toggler {
        position: absolute;
        right: 10px;
        border: 1px solid #e2e2e2;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav {
        display: block;
        margin-top: 30px;
    }
    .navbar-area .nav-container .navbar-collapse.show .navbar-nav {
        background-color: #101010;
    }
    .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;
    }
}

@media only screen and (max-width: 375px) {
    .navbar-area .nav-container {
        margin: 0 5px;
    }
    .navbar-area .nav-container .logo-wrapper .logo img {
        max-width: 120px;
    }
}


/* Banner  */

.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: 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: 170px 0 120px 0;
    }
}

.banner-area.home-four-banner {
    padding: 100px 0 0px;
    z-index: 0;
}

.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: 160px 0 170px;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .banner-contents.style-02 {
        padding: 120px 0 10px;
    }
}

@media (min-width: 320px) and (max-width: 991.98px) {
    .banner-contents.style-02 {
        padding: 20px 0 10px;
    }
}

@media only screen and (max-width: 575.98px) {
    .banner-contents.style-02 {
        padding: 0px 0 10px;
    }
}

.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;
    }
}

@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;
    /*padding-right: 160px;*/
    flex-wrap: wrap;
}


@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;
    width: calc(100% / 2 - 12px);
}
@media (min-width: 1400px) and (max-width: 1699.98px) {
    .banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select {
        width: calc(100% / 2 - 12px);
    }
}

@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;
    }
    .banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select {
        width: calc(100% / 2 - 12px);
    }
}

@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: 20px;*/
/*    }*/
/*}*/

/*.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;*/
/*    }*/
/*}*/
/*@media only screen and (max-width: 480px) {*/
/*    .banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select:not(:first-child) {*/
/*        padding-left: 0px;*/
/*    }*/
/*}*/

.banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select:nth-child(2n + 2)::before {
    position: absolute;
    left: -12px;
    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: 14px;
    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: 14px;
    }
}

@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: 14px;
    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: 14px;
}

.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: 14px;
}

.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: 16px;
    font-weight: 500;
    background: var(--main-color-two);
    width: auto;
    padding: 0 30px;
    color: #fff;
    border: 0;
    outline: none;
    height: 50px;
    padding: 0 35px;
    border-radius: 10px;
    /*position: absolute;*/
    /*top: 50%;*/
    /*-webkit-transform: translateY(-50%);*/
    /*transform: translateY(-50%);*/
    /*right: 30px;*/
    cursor: pointer;
    width: 100%;
}

@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: 0px;
        margin-left: 15px;
        margin-bottom: 0;
        transform: unset;
    }
}

.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: 1px solid var(--extra-light-color);
    color: var(--paragraph-color);
    border-radius: 30px;
    padding: 5px 12px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border-color: #DDDDDD;

}

@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: 0px 0 50px 70px;
}

@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: 80px;
    font-weight: 700;
    line-height: 90px;
    text-transform: unset;
    color: var(--heading-color);
}

.banner-contents.style-03 .banner-title .color-three {
    color: var(--main-color-three);
}

@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: 100%;
}

.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(--paragraph-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: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #fff;
    margin-bottom: 30px;
    display: block;
}

@media (min-width: 320px) and (max-width: 375px) {
    .banner-contents .title-top {
        display: none;
    }
}

@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 (min-width: 320px) and (max-width: 575.98px) {
    .banner-contents .banner-title {
        font-size: 34px;
        line-height: 44px;
    }
}

.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;
    gap: 24px;

}

/*@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: 50px;
    min-width: 180px;
    font-weight: 500;
    border-radius: 10px;
}

@media (min-width: 320px) and (max-width: 991.98px) {
    .banner-bottom-content .banner-search-form .banner-address-select {
        height: 50px;
        line-height: 50px;
        max-width: 150px;
    }
    .banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select {
        max-width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .banner-bottom-content .banner-search-form .banner-address-select {
        width: 100%;
    }
    .banner-contents.style-03 .banner-search-form .banner-address-select {
        flex: unset;
    }
    .header_03_form_select_wrap .banner-address-select {
        margin-bottom: 0 !important;
    }
}

@media only screen and (max-width: 415px) {
    .banner-contents.style-03 .banner-search-form .header_03_form_select_wrap {
        flex-wrap: wrap;
    }
    .banner-contents.style-03 .banner-search-form .banner-address-select {
        margin-right: 0 !important;
    }
    .banner-contents.style-03 .banner-search-form .banner-address-select:last-child {
        margin-bottom: 0px !important;
    }
}

.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: 14px;
    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: 14px;
}

.banner-bottom-content .banner-search-form .banner-address-select .nice-select .list .focus {
    background: #fff;
    color: var(--heading-color);
    font-size: 14px;
}

.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%;
    flex: 1;
}
@media screen and (max-width: 1199.98px) {
    .banner-bottom-content .banner-search-form {
        flex-wrap: wrap;
    }
    .banner-bottom-content .banner-search-form .banner-address-select {
        width: 100%;
        flex: 1;
        max-width: 100%;
    }
    .banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select {
        flex: unset;
    }
    .banner-bottom-content .banner-search-form .single-input {
        flex: unset;
    }
}
@media screen and (max-width: 767.98px) {
    .banner-bottom-content .banner-search-form {
        flex-wrap: wrap;
    }
    .banner-bottom-content .banner-search-form .banner-address-select {
        width: 100%;
        flex: 1;
        max-width: 100%;
    }
    .banner-bottom-content .banner-search-form .single-input {
        flex: unset;
    }
}
@media screen and (max-width: 480px) {
    .banner-contents.style-02 .banner-bottom-content .banner-search-form .banner-address-select {
        flex: 1;
    }
}
.banner-bottom-content .banner-search-form .single-input .form--control {
    height: 50px;
    line-height: 50px;
    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;
        top: 15px;
        transform: translateY(0);
    }
}

.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: 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 var(--extra-light-color);
    color: #d6d6d6;
    -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 {
        bottom: 0;
    }
}

.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: 140px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@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: 60px;
    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: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -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) - 25px);
    height: auto;
    margin-top: 30px;
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .service-item-devide {
        width: calc(100% / 4);
        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.dot-color-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 {
        display: block;
    }
}

@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: var(--main-color-three);
}

.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: var(--main-color-three);
}

.marketplace-child:nth-child(6n+4) .single-marketplace .marketplace-contents .common-title:hover {
    color: var(--main-color-three);
}

.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: 30px;
    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.dot-color-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: 20px 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: 375px) {
    .single-blog .blog-contents .common-para {
        margin-top: 10px;
    }
}

@media (min-width: 320px) and (max-width: 991.98px) {
    .blog-pagination.margin-top-55 {
        margin-top: 30px;
    }
}


/*--------------------------------------------------------------
	## WIdgets
--------------------------------------------------------------*/

.widget {
    margin-bottom: 30px;
}

.widget.style-02 .footer-inner .footer-link-list .list::before {
    color: var(--main-color-three);
}

.widget.style-02 .footer-inner .footer-link-list .list:hover a {
    color: var(--main-color-three);
}

.widget.style-02 .footer-inner .footer-link-address .list .address:hover {
    color: var(--main-color-three);
}

.widget.style-02 .footer-inner .footer-link-address .list .address i {
    color: var(--main-color-three);
}

.widget.style-02 .footer-inner .footer-socials .footer-social-list .lists a {
    color: var(--light-color);
}

.widget.style-02 .footer-inner .footer-socials .footer-social-list .lists a:hover {
    color: var(--main-color-three);
}

.color-two .widget .footer-inner .footer-link-list .list::before {
    color: var(--main-color-three);
}

.color-two .widget .footer-inner .footer-link-list .list:hover a {
    color: var(--main-color-three);
}

.color-two .widget .footer-inner .footer-link-address .list .address:hover {
    color: var(--main-color-three);
}

.color-two .widget .footer-inner .footer-link-address .list .address i {
    color: var(--main-color-three);
}

.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-three);
}

.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 #dddddd;
}

.copyright-area.style-02.copyright-border {
    border-top: 1px solid #d2d2d2;
}

.copyright-area.style-02 .copyright-list .list a:hover {
    color: var(--main-color-three);
}

.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;
}


/* Banner Inner */

.banner-inner-contents .banner-inner-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    font-family: var(--heading-font);
}

@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: 30px 20px;
    }
}

.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;
    }
    .select_city_area_country {
        max-width: 100%;
    }
}

@media only screen and (max-width: 575.98px) {
    .overview-list-all .overview-location .single-location {
        padding: 20px 20px;
    }
    .select_city_area_country {
        width: 100%;
    }
}

@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;
    }
}

.location_relative {
    position: relative;
    z-index: 1;
}

.select_city_area_country {
    flex-grow: 1;
}
.country_city_location {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.country_city_location .single_location {
    font-size: 12px;
    display: inline-block;
    color: #fff;
    background-color: var(--main-color-one);
    padding: 5px 10px;
    border-radius: 5px;
}

.color-three.country_city_location .single_location {
    background-color: var(--main-color-three);
}


/* 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 .service_quantity_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: 25px;
}

@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: 20px;
    font-weight: 500;
    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 (min-width:300px) and (max-width: 991.98px) {
    .booking-info .booking-details .booking-list .lists:not(:last-child) {
        margin-bottom: 20px;
    }
}

@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: 0px 50px;
    padding-bottom: 70px;
    /*-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: 0px 50px;
        padding-bottom: 70px;
    }
}

@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: 730px;  /*450*/ 
    margin: 0 auto;
}

.information-all .condition-info {
    max-width: 730px; /*390*/ 
    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);
    word-break: break-all;
}

.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;
}

.about-review-tab .about-seller-flex-content.style-02 {
    padding: 0;
}
.about-review-tab .about-seller-flex-content .about-seller-content .review-date {
    margin-top: 10px;
}
.about-review-tab .about-seller-flex-content .about-seller-content .about-review-para {
    margin-top: 10px;
}

.about-seller-flex-content.style-02:last-child {
    padding-bottom: 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;
    font-size: 42px;
}

@media only screen and (max-width: 480px) {
    .single-blog-details blockquote .content .blackquote-title::before {
        position: absolute;
        top: -35px;
        margin-left: 0;
    }
    .single-blog-details blockquote .content .blackquote-title {
        margin-top: 35px;
    }
}

.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: 15px 35px;
    cursor: pointer;
    margin-top: 35px;
}

@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-ali