@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&amp;display=swap");

.our-register {
    background-color: #f1f1f1;
}
.our-login {
    background-color: #f1f1f1;
}

ul li .mobile-befo-menu-text {
    color: #000;
}
ul li .mobile-befo-menu-text:hover {
    color: #00cedc;
}

.innerdashboard {
    background-color: #e5e5e54d;
}

.main-category-page-hm {
    padding: 30px 0 20px 0;
    background-color: #eeeeeec7;
}
.sli-subcate-title {
    font-size: 15px;
    color: #000;
}
.sli-subcate-title:hover {
    font-size: 15px;
    color: #008992;
}

/* Variables */
:root {
    --title-font-family: var(--artdeco-reset-typography-font-family-sans);
    --body-font-family: var(--artdeco-reset-typography-font-family-sans);

    --artdeco-reset-typography-font-family-sans: -apple-system, system-ui,
        BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Fira Sans",
        Ubuntu, "Oxygen", "Oxygen Sans", Cantarell, "Droid Sans",
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Emoji",
        "Segoe UI Symbol", "Lucida Grande", Helvetica, Arial, sans-serif;

    --icon-font-family: "Font Awesome 6 Pro";
    --icon-font-family2: "Flaticon";
    --container-width: 1460px;
    --divder-space: 200px;
    --headings-color: #222222;
    --body-text-color: #6b7177;
    --primary-color: #1f1f1f;
    --hover-color: #008992;
}

/* Banner Text Styles */
.banner-link {
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.banner-link .arrow-icon {
    transition: transform 0.3s ease;
    font-size: 14px;
    opacity: 0.7;
}

.banner-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    text-decoration: none;
    color: white !important;
}

.banner-link:hover .arrow-icon {
    transform: translateX(4px);
    opacity: 1;
}

.banner-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: 0.5s;
}

.banner-link:hover::before {
    left: 100%;
}

/* Typography Styles */
html,
body {
    scroll-behavior: auto !important;
}

body {
    background-color: #ffffff;
    font-family: var(--body-font-family);
    font-size: 15px;
    font-weight: 400;
    color: var(--body-text-color);
    line-height: 28px;
    -webkit-font-smoothing: antialiased;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

a,
.btn {
    color: var(--headings-color);
    text-decoration: none;
    outline: none;
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
a:hover,
.btn:hover {
    color: #00cedc;
}
a:active,
a:focus,
a:hover,
a:visited,
.btn:active,
.btn:focus,
.btn:hover,
.btn:visited {
    text-decoration: none;
    outline: none;
}

button,
.btn {
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

iframe {
    border: none;
    width: 100%;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
    font-family: var(--title-font-family);
    color: var(--headings-color);
    line-height: 1.3125;
}

.h1,
h1,
.h2,
h2,
.h3,
h3 {
    font-weight: 700;
}

.h4,
h4,
.h5,
h5,
.h6,
h6 {
    font-weight: 500;
}

p {
    margin: 0 0 15px 0;
    color: var(--body-text-color);
    line-height: 1.85;
    font-weight: 400;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
    font-size: inherit;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", "Fira Sans", Ubuntu, "Oxygen", "Oxygen Sans",
        Cantarell, "Droid Sans", "Apple Color Emoji", "Segoe UI Emoji",
        "Segoe UI Symbol", "Lucida Grande", Helvetica, Arial, sans-serif;
    font-weight: inherit;
    line-height: inherit;
}

.h1,
h1 {
    font-size: 45px;
}

.h2,
h2 {
    font-size: 32px;
}

.h3,
h3 {
    font-size: 24px;
}

.h4,
h4 {
    font-size: 20px;
}

.h5,
h5 {
    font-size: 17px;
}

.h6,
h6 {
    font-size: 15px;
}

li {
    list-style-type: none;
}

@media (max-width: 575.98px) {
    .h2,
    h2 {
        font-size: 20px;
    }
}
/*	Header Styles  */
.login-info {
    font-size: 15px;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.header-top-home11 {
    background-color: #cce8ca;
    position: relative;
}

.header-top-home12 {
    background-color: #eafac1;
    position: relative;
}

.ht-close-icon {
    color: var(--headings-color);
    position: absolute;
    right: 30px;
    top: 10px;
}

/*	All Type Of Footer Styles  */
.footer-style1 {
    background-color: var(--headings-color);
}
.footer-style1.at-home5 {
    background-color: #f1fcfa;
}
.footer-style1.at-home6 {
    background-color: #1f4b3f;
}
.footer-style1.at-home7,
.footer-style1.at-home8 {
    background-color: #ffffff;
}
.footer-style1.at-home10 {
    border-radius: 16px 16px 0 0;
}
.footer-style1.at-home11 {
    background-color: #1d6362;
}
.footer-style1.at-home15 {
    background-color: #168882;
    border-radius: 30px 30px 0 0;
}
.footer-style1.at-home18 {
    background-color: transparent;
    background-image: url(../images/background/home18-footer-bg.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    border-radius: 30px;
    overflow: hidden;
}

.home2-footer-radius {
    border-radius: 0 90px 0 0;
}

.footer-widget {
    position: relative;
}

.app-widget {
    position: relative;
}
.app-widget .app-info {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 30px 10px 20px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.app-widget .app-info .flex-shrink-0 {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.app-widget .app-info:hover {
    background-color: #00cedc;
}
.app-widget .app-info.light-style {
    background-color: #222222;
}
.app-widget .app-info.light-style:hover {
    background-color: #00cedc;
}
.app-widget .app-info.light-style:hover .app-text {
    color: #ffffff;
}
.app-widget.at-home6 .app-info {
    background-color: #1f4b3f;
    border-radius: 8px;
    font-size: 14px;
    padding: 8px 20px 10px;
}
.app-widget.at-home6 .app-info .flex-shrink-0 {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 20px;
}
.app-widget.at-home6 .app-info .flex-grow-1 {
    padding-left: 20px;
}
.app-widget.at-home6 .app-info .app-text {
    color: #ffffff;
}
.app-widget.at-home7 .app-info {
    border-radius: 0;
}
.app-widget.at-home8 .app-info {
    background-color: #f1fcfa;
}
.app-widget.at-home9 .app-info {
    padding: 7px 30px;
}
.app-widget.at-home12 .app-info {
    background-color: #222222;
    border-radius: 120px;
    font-size: 14px;
}
.app-widget.at-home12 .app-info .flex-shrink-0 {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 20px;
}
.app-widget.at-home12 .app-info .flex-grow-1 {
    padding-left: 20px;
}
.app-widget.at-home12 .app-info .app-text {
    color: #ffffff;
}
.app-widget.at-home16 .app-info {
    background-color: #222222;
    font-size: 14px;
}
.app-widget.at-home16 .app-info .flex-shrink-0 {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 20px;
}
.app-widget.at-home16 .app-info .flex-grow-1 {
    padding-left: 20px;
}
.app-widget.at-home16 .app-info .app-text {
    color: #ffffff;
}
.app-widget.at-home20 .app-info {
    background-color: #f0efec;
    font-size: 14px;
}

.mailchimp-style1 {
    position: relative;
}
.mailchimp-style1 .form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    height: 60px;
    outline: none;
    padding-left: 20px;
}
.mailchimp-style1 .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 400;
}
.mailchimp-style1 .form-control:focus {
    border: none;
    box-shadow: none;
    outline: none;
}
.mailchimp-style1 button {
    background-color: transparent;
    border: none;
    color: #ffffff;
    font-family: var(--title-font-family);
    font-weight: 500;
    font-size: 15px;
    position: absolute;
    right: 25px;
    top: 15px;
}
.mailchimp-style1.white-version .form-control {
    background-color: #ffffff;
}
.mailchimp-style1.white-version .form-control::placeholder {
    color: var(--headings-color);
    font-size: 14px;
    font-weight: 400;
}
.mailchimp-style1.white-version button {
    font-size: 15px;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
}
.mailchimp-style1.at-home4 {
    border-radius: 4px;
    border: 1px solid #e9e9e9;
}
.mailchimp-style1.at-home4 .form-control {
    height: 60px;
    color: var(--headings-color);
}
.mailchimp-style1.at-home4 .form-control::placeholder {
    color: var(--headings-color);
}
.mailchimp-style1.at-home4 button {
    background-color: transparent;
    color: var(--headings-color);
}
.mailchimp-style1.at-home7 {
    border: 1px solid #e9e9e9;
    border-radius: 4px;
}
.mailchimp-style1.at-home7 .form-control {
    border-radius: 4px;
    color: rgba(34, 34, 34, 0.7);
    height: 60px;
}
.mailchimp-style1.at-home7 .form-control::placeholder {
    color: rgba(34, 34, 34, 0.7);
}
.mailchimp-style1.at-home7 button {
    color: #222222;
    display: block;
    height: 40px;
    line-height: 35px;
    right: 20px;
    top: 10px;
    width: 40px;
}
.mailchimp-style1.at-home8 .form-control {
    background-color: #f1fcfa;
    color: var(--headings-color);
}
.mailchimp-style1.at-home8 .form-control::placeholder {
    color: var(--headings-color);
}
.mailchimp-style1.at-home8 button {
    color: var(--headings-color);
}
.mailchimp-style1.at-home9 .form-control {
    border-radius: 60px;
    height: 70px;
    line-height: 70px;
    padding-left: 30px;
}
.mailchimp-style1.at-home9 button {
    color: #00cedc;
    top: 20px;
}
.mailchimp-style1.at-home11 .form-control {
    background-color: #ffffff;
    color: var(--headings-color);
    border-radius: 16px;
}
.mailchimp-style1.at-home11 .form-control::placeholder {
    color: var(--headings-color);
    font-size: 14px;
    font-weight: 400;
}
.mailchimp-style1.at-home11 button {
    font-size: 15px;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
}
.mailchimp-style1.at-home15 {
    overflow: hidden;
}
.mailchimp-style1.at-home15 .form-control {
    background-color: #ffffff;
    color: var(--headings-color);
    border-radius: 16px;
}
.mailchimp-style1.at-home15 .form-control::placeholder {
    color: var(--headings-color);
    font-size: 14px;
    font-weight: 400;
}
.mailchimp-style1.at-home15 button {
    font-size: 15px;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
}
.mailchimp-style1.at-home20 .form-control {
    background-color: #f0efec;
    color: var(--headings-color);
}
.mailchimp-style1.at-home20 .form-control::placeholder {
    color: var(--headings-color);
}
.mailchimp-style1.at-home20 button {
    color: var(--headings-color);
}

.mailchimp-style2 {
    position: relative;
}
.mailchimp-style2 .form-control {
    background-color: #ffffff;
    border: none;
    border-radius: 12px;
    color: var(--headings-color);
    font-size: 14px;
    font-weight: 400;
    height: 70px;
    padding-left: 30px;
}
.mailchimp-style2 .form-control:placeholder {
    color: var(--headings-color);
    font-size: 14px;
    font-weight: 400;
}
.mailchimp-style2 .form-control:focus {
    border: none;
    box-shadow: none;
    outline: none;
}
.mailchimp-style2 button {
    height: 50px;
    position: absolute;
    right: 10px;
    top: 10px;
}

.link-style1 a {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    font-family: var(--title-font-family);
    line-height: 35px;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.link-style1 a:hover {
    color: #ffffff;
    text-decoration: underline;
}
.link-style1.light-style a {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 400;
}
.link-style1.at-home8 a {
    color: rgba(34, 34, 34, 0.7);
}
.link-style1.at-home9 a:hover {
    color: #00cedc;
}
.link-style1.at-home11 a {
    color: #ffffff;
}
.link-style1.at-home11 a:hover {
    color: #00cedc;
}

.footer_bottom_right_btns .bootstrap-select .btn,
.footer_bottom_right_btns .bootstrap-select .btn-light {
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--title-font-family);
    font-weight: 400;
    font-size: 14px;
    height: 40px;
    line-height: 25px;
}
.footer_bottom_right_btns .bootstrap-select .btn:focus,
.footer_bottom_right_btns .bootstrap-select .btn-light:focus {
    outline: none !important;
    outline-offset: initial;
}
.footer_bottom_right_btns .bootstrap-select .dropdown-item.active,
.footer_bottom_right_btns .bootstrap-select .dropdown-item:active {
    background-color: #f1fcfa;
    color: #00cedc;
}
.footer_bottom_right_btns .bootstrap-select .dropdown-item.active span,
.footer_bottom_right_btns .bootstrap-select .dropdown-item:active span {
    color: #00cedc;
}
.footer_bottom_right_btns .bootstrap-select .dropdown-item span {
    color: var(--headings-color);
}
.footer_bottom_right_btns.at-home8
    .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
        .input-group-btn
    )
    .btn,
.footer_bottom_right_btns.at-home8
    .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
        .input-group-btn
    )
    .btn-light {
    border-radius: 4px;
    border: 1px solid #e9e9e9;
    color: var(--headings-color);
    height: 40px;
    line-height: 30px;
    padding: 5px 25px;
}
.footer_bottom_right_btns.at-home9
    .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
        .input-group-btn
    )
    .btn,
.footer_bottom_right_btns.at-home9
    .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
        .input-group-btn
    )
    .btn-light {
    border-radius: 60px;
    height: 40px;
    line-height: 30px;
    padding: 5px 25px;
}
.footer_bottom_right_btns.at-home15
    .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
        .input-group-btn
    )
    .btn,
.footer_bottom_right_btns.at-home15
    .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
        .input-group-btn
    )
    .btn-light {
    border-radius: 12px;
}
.footer_bottom_right_btns.at-home15 .bootstrap-select .btn,
.footer_bottom_right_btns.at-home15 .bootstrap-select .btn-light {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    padding: 5px 15px;
}
.footer_bottom_right_btns.at-home20
    .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
        .input-group-btn
    )
    .btn,
.footer_bottom_right_btns.at-home20
    .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
        .input-group-btn
    )
    .btn-light {
    border-radius: 12px;
    border: 1px solid #e9e9e9;
    color: var(--headings-color);
    height: 40px;
    line-height: 30px;
    padding: 5px 25px;
}

/*	All styles about breadcumb  */
.breadcumb-section {
    padding: 20px 0;
}

.breadcumb-section2 {
    align-items: center;
    background-image: url(../images/background/about-page-bg.html);
    background-size: cover;
    background-position: center;
    display: flex;
    height: 450px;
}

.breadcumb-section3 {
    align-items: center;
    background-image: url(../images/background/compare-bg.html);
    background-size: cover;
    background-position: center;
    display: flex;
    height: 450px;
}
@media (max-width: 991.98px) {
    .breadcumb-section3 {
        height: 250px;
        position: relative;
    }
}

.breadcumb-style1 {
    position: relative;
}
.breadcumb-style1 .title {
    letter-spacing: 0.02em;
}
.breadcumb-style1 .breadcumb-list {
    position: relative;
}
.breadcumb-style1 .breadcumb-list a {
    color: #00cedc;
    display: inline-block;
    font-size: 14px;
    position: relative;
    margin-right: 25px;
}
.breadcumb-style1 .breadcumb-list a:after {
    content: "/";
    font-size: 14px;
    position: absolute;
    right: -20px;
}
.breadcumb-style1 .breadcumb-list a:last-child {
    color: var(--headings-color);
}
.breadcumb-style1 .breadcumb-list a:last-child:after {
    display: none;
}

/*  Dashboard Style Code Here  */
.dashboard_header {
    transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.dashboard_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 100;
}

.header_right_widgets {
    position: relative;
}
.header_right_widgets .notif {
    background-color: #f7f7f7;
    border-radius: 50%;
    height: 44px;
    line-height: 44px;
    text-align: center;
    width: 44px;
}
.header_right_widgets a {
    display: block;
    width: 44px;
    margin-top: 14px;
}
.header_right_widgets li:last-child a {
    height: auto;
    line-height: initial;
    margin: 0;
    padding: 0 0 0 5px;
    width: auto;
}

.user_setting {
    position: relative;
}
.user_setting .dropdown-menu {
    padding: 0;
}
.user_setting .dropdown-menu.show {
    border: 1px solid #e9e9e9;
    border-radius: 4px;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    padding: 10px 10px;
    width: 250px;
    transform: translate(-110px, 55px) !important;
}
.user_setting .dropdown-menu .dropdown-item {
    border-radius: 4px;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
    overflow: hidden;
    font-size: 15px;
    padding: 8px 0px;
    -webkit-transition: all 0.3s ease 0s ease;
    -moz-transition: all 0.3s ease 0s ease;
    -ms-transition: all 0.3s ease 0s ease;
    -o-transition: all 0.3s ease 0s ease;
    transition: all 0.3s ease 0s ease;
}

.dashboard_dd_menu_list .dropdown-toggle:after {
    display: none;
}
.dashboard_dd_menu_list .dropdown-menu {
    border-radius: 4px;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    width: 360px;
}
.dashboard_dd_menu_list .dboard_notific_dd .img-2 {
    width: 50px;
}
.dashboard_dd_menu_list .dboard_notific_dd p {
    line-height: 24px;
}

.user_setting .dropdown-menu .dropdown-item.active,
.user_setting .dropdown-menu .dropdown-item.active span,
.user_setting .dropdown-menu .dropdown-item:hover,
.user_setting .dropdown-menu .dropdown-item:hover span {
    background-color: #fff;
    color: #00cedc;
}

.dashboard_sidebar_list .sidebar_list_item a:hover,
.dashboard_sidebar_list .sidebar_list_item a:active,
.dashboard_sidebar_list .sidebar_list_item a:focus,
.dashboard_sidebar_list .sidebar_list_item a.-is-active {
    background-color: #222222;
    color: #ffffff;
}

.dashboard_sidebar_list .sidebar_list_item a {
    align-items: center;
    display: flex;
    border-radius: 0 4px 4px 0;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
    padding: 14.5px 20px;
    -webkit-transition: all 0.3s ease 0s ease;
    -moz-transition: all 0.3s ease 0s ease;
    -ms-transition: all 0.3s ease 0s ease;
    -o-transition: all 0.3s ease 0s ease;
    transition: all 0.3s ease 0s ease;
}

.dashboard_sidebar_list .sidebar_list_item a i {
    font-size: 20px;
}

.dashboard {
    display: flex;
}
.dashboard.dsh_board_sidebar_hidden .dashboard__sidebar {
    transform: translateX(-100%);
}
@media (max-width: 991.98px) {
    .dashboard.dsh_board_sidebar_hidden .dashboard__sidebar {
        transform: translateX(0);
    }
}
.dashboard.dsh_board_sidebar_hidden .dashboard__main {
    padding-left: 0;
}
@media (max-width: 991.98px) {
    .dashboard.dsh_board_sidebar_hidden .dashboard__main:after {
        background-color: rgba(4, 30, 66, 0.5);
        content: "";
        bottom: 0;
        left: 0;
        opacity: 1;
        position: fixed;
        right: 0;
        top: 0;
        z-index: 0;
        pointer-events: auto;
        transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    }
}
.dashboard .dashboard__sidebar {
    will-change: transform;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: 9;
}
@media (max-width: 991.98px) {
    .dashboard .dashboard__sidebar {
        transform: translateX(-100%);
    }
}
.dashboard .dashboard__main {
    will-change: padding-left;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.dashboard__sidebar {
    background-color: #ffffff;
    flex-shrink: 0;
    height: calc(100% - 90px);
    left: 0;
    margin-top: 80px;
    overflow-y: scroll;
    padding: 30px 30px 30px 0;
    padding-bottom: 40px;
    position: fixed;
    width: 300px;
}
.dashboard__sidebar::-webkit-scrollbar {
    height: 4px;
    width: 4px;
}
.dashboard__sidebar::-webkit-scrollbar-thumb {
    background-color: #e9e9e9;
    border-radius: 4px;
}

.dashboard .dashboard__main {
    will-change: padding-left;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.dashboard__main {
    margin-top: 85px;
    padding-left: 300px;
    width: 100%;
}
@media (max-width: 991.98px) {
    .dashboard__main {
        margin-top: 0px;
    }
}

.dashboard__content {
    border-radius: 4px;
    padding: 60px 60px 20px;
    width: 100%;
}
@media (max-width: 767.98px) {
    .dashboard__content {
        padding: 40px 30px;
    }
}
@media (max-width: 1199.98px) {
    .dashboard__content.property-page {
        padding: 60px 30px 20px;
    }
}
@media (max-width: 1399.98px) {
    .dashboard__content.message-page {
        padding: 50px 30px;
    }
}
@media (max-width: 1440px) {
    .dashboard__content {
        padding: 60px 15px 20px;
    }
}

.dashboard_title_area {
    position: relative;
}

.statistics_funfact {
    background-color: #ffffff;
    border-radius: 4px;
    margin-bottom: 30px;
    padding: 32px 50px 32px 30px;
    position: relative;
}
.statistics_funfact .icon {
    color: #1f4b3f;
    font-size: 40px;
    position: relative;
    z-index: 0;
}
.statistics_funfact .icon:before {
    background-color: #fbf7ed;
    border-radius: 50%;
    bottom: -10px;
    content: "";
    height: 40px;
    position: absolute;
    right: -20px;
    width: 40px;
    z-index: -1;
}
.statistics_funfact .title {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
    font-size: 36px;
    line-height: 54px;
}

.application_statics,
.dashboard_product_list,
.dashboard_setting_box {
    background-color: #fff;
    border-radius: 16px;
    margin-bottom: 30px;
    padding: 30px 30px 25px 0;
    position: relative;
    -webkit-box-shadow: 0px 5px 20px rgba(91, 187, 123, 0.15);
    -moz-box-shadow: 0px 5px 20px rgba(91, 187, 123, 0.15);
    -o-box-shadow: 0px 5px 20px rgba(91, 187, 123, 0.15);
    box-shadow: 0px 5px 20px rgba(91, 187, 123, 0.15);
}

.dashboard-timeline-label {
    position: relative;
}

.dashboard-timeline-label .timeline-item {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.dashboard-timeline-label .child-timeline-label {
    color: var(--headings-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0em;
    width: 55px;
    flex-shrink: 0;
    position: relative;
}

.dashboard-timeline-label:before {
    background-color: #e9e9e9;
    border-radius: 8px;
    bottom: 0;
    content: "";
    left: 52px;
    position: absolute;
    top: 20px;
    width: 3px;
}

.dashboard-timeline-label .timeline-badge {
    color: #663259;
    border-radius: 100%;
    font-size: 16px;
    justify-content: center;
    margin-left: -7px;
    margin-top: -3px;
    position: relative;
    z-index: 1;
}

.dashboard-timeline-label .timeline-badge.color3 {
    color: #f64e60;
}

.dashboard-timeline-label .timeline-badge.color4 {
    color: #3699ff;
}

.dashboard-timeline-label .timeline-badge.color5 {
    color: #ef6327;
}

.dashboard-timeline-label .timeline-badge.color6 {
    color: #8950fc;
}

.dashboard-timeline-label .timeline-item .ra_pcontent .title {
    color: var(--headings-color);
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
}

.dashboard-timeline-label .timeline-item .ra_pcontent .subtitle {
    color: var(--headings-color);
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
}

.pending-style {
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 6px;
}
.pending-style.style1 {
    background-color: #fff4de;
    color: #ffa800;
}
.pending-style.style2 {
    background-color: #f1faff;
    color: #00a3ff;
}
.pending-style.style3 {
    background-color: #fff5f8;
    color: #f1416c;
}
.pending-style.style4 {
    background-color: var(--body-text-color);
    color: #ffffff;
}
.pending-style.style5 {
    background-color: #ffede8;
    color: #222222;
}
.pending-style.style6 {
    background-color: #f1faff;
    color: #00a3ff;
}

.table-action {
    background-color: #ffede8;
    border-radius: 5px;
    padding: 11px 20px;
}

.dashboard-img-service {
    position: relative;
}
.dashboard-img-service .listing-style1:hover {
    box-shadow: none;
}
.dashboard-img-service .listing-style1:hover .img-2 {
    transform: scale(1);
}
.dashboard-img-service .listing-style1.list-style .list-thumb {
    width: 122px;
}
.dashboard-img-service .list-title {
    line-height: 28px;
}

.profile-box .tag-delt {
    background-color: #ffede8;
    border-radius: 4px;
    color: var(--headings-color);
    font-size: 13px;
    height: 40px;
    line-height: 40px;
    position: relative;
    text-align: center;
    width: 40px;
}
.profile-box .upload-btn {
    background-color: #fbf7ed;
    border-radius: 4px;
    color: #1f4b3f;
    display: block;
    font-family: var(--title-font-family);
    font-weight: 500;
    font-size: 15px;
    line-height: 28px;
    padding: 6px 30px;
}

.upload-img {
    background-color: #ffede8;
    border: 1px dashed #1f4b3f;
    border-radius: 4px;
    color: #1f4b3f;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    padding: 30px 80px;
}

.del-edit {
    position: absolute;
    right: 0;
}
@media (max-width: 375px) {
    .del-edit {
        margin-bottom: 15px;
        position: relative;
    }
}
.del-edit .icon {
    background-color: #ffede8;
    border-radius: 4px;
    color: #1f4b3f;
    display: block;
    height: 40px;
    line-height: 45px;
    text-align: center;
    width: 40px;
}

/* DashBoard Message Styles */
.message_container {
    background-color: #ffffff;
    border-radius: 4px;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.message_container .user_heading {
    background-color: #ffffff;
    border-bottom: 1px solid #e9e9e9;
    padding: 30px;
    position: relative;
}
.message_container .user_heading img {
    float: left;
    margin-right: 10px;
    border-radius: 50%;
}
.message_container .user_heading .preview {
    color: #697488;
    font-size: 13px;
    font-family: var(--title-font-family);
    font-weight: 400;
    margin-bottom: 0;
}
.message_container .user_heading .name {
    font-size: 14px;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
}
.message_container .message_input {
    background-color: #f9fafc;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
}
.message_container .message_input input.form-control {
    color: #626974;
    border-bottom: none;
    border-left: none;
    border-right: none;
    border-top: 1px solid #f3f5f6;
    height: 100px;
    padding: 20px 30px;
    width: 100%;
}
.message_container .message_input button.btn {
    flex: 1;
    height: 50px;
    position: absolute;
    right: 20px;
    top: 20px;
}

.inbox_chatting_box {
    height: auto;
    margin-right: 10px;
    max-height: 575px !important;
    overflow-y: scroll;
    overflow-x: hidden;
    position: relative;
}
.inbox_chatting_box::-webkit-scrollbar {
    background: transparent;
    border-radius: 10px;
    padding-right: 10px;
    width: 4px;
}
.inbox_chatting_box::-webkit-scrollbar-thumb {
    background-color: #e9e9e9;
    border-radius: 10px;
}
.inbox_chatting_box .chatting_content {
    display: inline-block;
    padding: 15px 30px 0 30px;
    position: relative;
    width: 100%;
}
.inbox_chatting_box .chatting_content li {
    display: block;
    padding: 25px 0 5px;
    margin-bottom: 0;
    clear: both;
}
.inbox_chatting_box .chatting_content li p {
    background-color: #f1fcfa;
    border-radius: 8px;
    color: var(--headings-color);
    font-size: 14px;
    padding: 15px 20px;
    max-width: 456px;
}
.inbox_chatting_box .chatting_content li.reply {
    margin: -15px 0;
}
.inbox_chatting_box .chatting_content li.reply p {
    background-color: rgba(91, 187, 123, 0.05);
    border-radius: 8px;
    color: #00cedc;
    max-width: 450px;
    padding: 15px 30px;
    text-align: right;
}
.inbox_chatting_box .title {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
}
.inbox_chatting_box small {
    color: #697488;
    font-family: var(--title-font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0em;
}

.inbox_user_list {
    display: inline-block;
    padding: 30px 10px 25px 30px;
    width: 100%;
}
.inbox_user_list .iu_heading {
    padding-bottom: 25px;
}
.inbox_user_list .preview {
    font-size: 13px;
    font-family: var(--title-font-family);
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
}
.inbox_user_list .m_notif {
    background-color: #1967d2;
    border: 1px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    font-size: 8px;
    font-weight: bold;
    line-height: 15px;
    height: 16px;
    position: absolute;
    right: 10px;
    text-align: center;
    top: 33px;
    width: 16px;
}
@media (max-width: 575.98px) {
    .inbox_user_list .m_notif {
        position: relative;
        right: auto;
        top: 0;
    }
}
.inbox_user_list .m_notif.online {
    background-color: #34a853;
}
.inbox_user_list .m_notif.away {
    background-color: #f9ab00;
}
.inbox_user_list .m_notif.busy {
    background-color: #e74c3c;
}

.chat-member-list {
    height: 620px;
    overflow-y: scroll;
}
.chat-member-list::-webkit-scrollbar {
    background: transparent;
    border-radius: 10px;
    padding-right: 10px;
    width: 4px;
}
.chat-member-list::-webkit-scrollbar-thumb {
    background-color: #e9e9e9;
    border-radius: 10px;
    height: 250px;
}
.chat-member-list img {
    width: 50px;
}
.chat-member-list .list-item {
    padding: 15px 0;
}

.chat_user_search {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.chat_user_search button {
    background-color: #f7f7f7;
    border-radius: 0;
    border: none;
    color: var(--headings-color);
    height: 50px;
    line-height: 45px;
    width: 50px;
}
.chat_user_search input.form-control {
    background-color: #f7f7f7;
    border: none;
    border-radius: 0;
    height: 50px;
    margin-right: 0 !important;
    position: absolute;
    left: 50px;
    padding-left: 0;
    padding-right: 0;
    right: 30px;
    width: 100%;
}

.iul_notific small {
    display: block;
    font-size: 13px;
    font-family: var(--title-font-family);
    font-weight: 400;
    position: absolute;
    right: 10px;
    top: 10px;
}
@media (max-width: 575.98px) {
    .iul_notific small {
        position: relative;
        right: auto;
        top: 0;
    }
}

/*	Messages Styles  */
/*	Listings Styles  */
.listing-style1 {
    background-color: #ffffff;
    border-radius: 4px;
    border: 1px solid #e9e9e9;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.listing-style1 .list-thumb {
    overflow: hidden;
    position: relative;
}
.listing-style1 img {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.listing-style1 .listing-fav {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    color: var(--headings-color);
    border-radius: 50%;
    height: 36px;
    line-height: 36px;
    position: absolute;
    right: 20px;
    top: 20px;
    text-align: center;
    width: 36px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.listing-style1 .list-content {
    padding: 25px 30px;
    position: relative;
}
@media (max-width: 1199.98px) {
    .listing-style1 .list-content {
        padding: 25px 20px;
    }
}
@media (max-width: 340px) {
    .listing-style1 .list-content {
        padding: 25px 10px;
    }
}
.listing-style1 .list-title {
    margin-bottom: 15px;
}
.listing-style1 .list-title a {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.listing-style1 .list-title a:hover {
    text-decoration: underline;
    text-decoration-color: #00cedc;
}
.listing-style1 .online-badge {
    background-color: #00cedc;
    border-radius: 50%;
    outline: 1px solid #ffffff;
    height: 7px;
    position: absolute;
    right: 0;
    width: 7px;
}
.listing-style1 hr {
    background-color: #e9e9e9;
    opacity: 1;
}
.listing-style1:hover {
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}
.listing-style1 .list-agent {
    position: absolute;
    right: 30px;
    top: -40px;
}
@media (max-width: 479px) {
    .listing-style1 .list-agent {
        position: relative;
        right: auto;
        top: auto;
        margin-bottom: 10px;
    }
}
.listing-style1 .tag-del {
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    border-radius: 50%;
    color: #1f4b3f;
    font-size: 14px;
    height: 36px;
    line-height: 40px;
    position: absolute;
    right: 20px;
    text-align: center;
    top: 20px;
    width: 36px;
    z-index: 1;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.listing-style1:hover .list-thumb img {
    transform: scale(1.1) rotate(-1deg);
}
.listing-style1:hover .listing-thumbIn-slider:before {
    opacity: 1;
}
.listing-style1.style2 {
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    border: none;
}
.listing-style1.style3 {
    border-radius: 16px;
}
.listing-style1.style4 {
    box-shadow: none;
}
.listing-style1.style4 .list-thumb {
    border-radius: 4px;
    overflow: hidden;
    margin: 10px;
}
.listing-style1.style4 .list-content {
    padding-top: 0;
}
.listing-style1.style5 {
    box-shadow: none;
    border: none;
}
.listing-style1.style5 .list-thumb {
    border-radius: 4px;
    overflow: hidden;
}
.listing-style1.style5 .list-content {
    padding-top: 10px;
}
@media (max-width: 1366px) {
    .listing-style1.list-style .list-thumb {
        width: 45%;
    }
}
@media (max-width: 1199.98px) {
    .listing-style1.list-style .list-thumb {
        width: auto;
    }
}
.listing-style1.list-style .list-content,
.listing-style1.listi-style2 .list-content {
    padding: 20px;
}
.listing-style1.list-style .listing-fav,
.listing-style1.listi-style2 .listing-fav {
    border: 1px solid #e9e9e9;
    right: 10px;
    top: -10px;
}
@media (max-width: 1366px) {
    .listing-style1.list-style .listing-fav,
    .listing-style1.listi-style2 .listing-fav {
        top: 10px;
    }
}
.listing-style1.list-style .listing-thumbIn-slider,
.listing-style1.listi-style2 .listing-thumbIn-slider {
    max-width: 329px;
}
@media (max-width: 1199.98px) {
    .listing-style1.list-style .listing-thumbIn-slider,
    .listing-style1.listi-style2 .listing-thumbIn-slider {
        max-width: initial;
    }
}
.listing-style1.listi-style2 .listing-fav {
    top: 10px;
}
.listing-style1.style8 {
    box-shadow: none;
}
.listing-style1.style8 .list-thumb {
    border-radius: 0;
    overflow: hidden;
}
.listing-style1.style8 .list-title {
    line-height: 28px;
}
.listing-style1.style8 .list-content {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 15px;
}
.listing-style1.listing-type {
    border-radius: 4px;
    display: flex;
}
@media (max-width: 767.98px) {
    .listing-style1.listing-type {
        display: block;
    }
}
.listing-style1.listing-type .list-content {
    padding: 30px;
}
.listing-style1.listing-type .list-text2 {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-size: 13px;
    font-weight: normal;
}
.listing-style1.listing-type img {
    height: 100%;
}
.listing-style1.style12 {
    border-radius: 4px;
}
.listing-style1.sidebar-style1 {
    box-shadow: none;
}
.listing-style1.sidebar-style1 .list-thumb {
    border-radius: 8px;
}
.listing-style1.mini-style {
    border-radius: 4px;
    -webkit-box-shadow: 0px 25px 70px rgba(1, 33, 58, 0.07);
    -moz-box-shadow: 0px 25px 70px rgba(1, 33, 58, 0.07);
    -o-box-shadow: 0px 25px 70px rgba(1, 33, 58, 0.07);
    box-shadow: 0px 25px 70px rgba(1, 33, 58, 0.07);
    left: 40px;
    max-width: 305px;
    position: absolute;
    top: -223px;
    width: 100%;
}
@media (max-width: 991.98px) {
    .listing-style1.mini-style {
        position: relative;
        top: 0;
    }
}
@media (max-width: 425px) {
    .listing-style1.mini-style {
        left: 0;
    }
}
.listing-style1.mini-style .btn {
    padding: 0;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
}
.listing-style1.mini-style .btn i {
    margin-left: 10px;
    transform: rotate(-30deg);
}
.listing-style1.mini-style .list-content {
    padding: 30px;
}
.listing-style1.at-home9-hero .list-content {
    padding: 35px 20px 20px;
}
.listing-style1.dashboard-style {
    box-shadow: none;
}
.listing-style1.dashboard-style .list-thumb {
    border-radius: 4px;
    height: 90px;
    max-width: 110px;
}
.listing-style1.dashboard-style img {
    border-radius: 4px;
}
.listing-style1.dashboard-style .list-text {
    margin-bottom: 0px;
}

.tag-del {
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    border-radius: 50%;
    color: #1f4b3f;
    font-size: 14px;
    height: 36px;
    line-height: 40px;
    padding: 0;
    position: absolute;
    right: 20px;
    text-align: center;
    top: 20px;
    width: 36px;
    z-index: 1;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.listing-thumbIn-slider:before {
    background: linear-gradient(
        180deg,
        rgba(34, 34, 34, 0) 51.22%,
        rgba(34, 34, 34, 0.6) 100%
    );
    bottom: 0;
    content: "";
    height: 80%;
    left: 0;
    position: absolute;
    right: 0;
    opacity: 0;
    z-index: 1;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.apartment-style1 {
    background-color: #ffffff;
    border-radius: 4px;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}
.apartment-style1 .apartment-content {
    padding: 20px;
}

.apartment-style2 {
    position: relative;
}
.apartment-style2 .apartment-content {
    bottom: 0;
    left: 0;
    position: absolute;
    padding-top: 40px;
    right: 0;
    top: 0;
}

.pagination_page_count {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 400;
}

.page_control_shorting {
    position: relative;
}
.page_control_shorting
    .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
        .input-group-btn
    ) {
    width: auto;
}
.page_control_shorting .dropdown-item.active,
.page_control_shorting .dropdown-item:focus {
    background-color: rgba(91, 187, 123, 0.07);
    color: var(--headings-color);
}
.page_control_shorting .pcs_dropdown span {
    color: #697488;
    margin-right: -8px;
}
.page_control_shorting .btn.btn-light {
    background-color: transparent;
    border: none;
    height: auto;
    width: auto;
    outline: none !important;
}
.page_control_shorting .btn.btn-light:focus {
    box-shadow: none;
    outline: none !important;
}
.page_control_shorting a {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.page_control_shorting a:hover {
    font-weight: 500;
    text-decoration: underline;
}

.half_map_area_content {
    height: 850px;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 0 15px 20px;
}
.half_map_area_content::-webkit-scrollbar {
    background: transparent;
    border-radius: 3px;
    padding-right: 10px;
    width: 5px;
}
.half_map_area_content::-webkit-scrollbar-thumb {
    background-color: #f7f7f7;
    border-radius: 3px;
    height: 200px;
}

.map-canvas.half_style {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}
@media (max-width: 1199.98px) {
    .map-canvas.half_style {
        height: 400px;
        position: relative;
    }
}

/* Property Signle CSS */
.property-action .icon {
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    display: block;
    height: 35px;
    line-height: 35px;
    text-align: center;
    width: 35px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.property-action .icon:hover {
    border: 1px solid #222222;
    color: #222222;
}
.property-action .price {
    font-size: 26px;
    letter-spacing: 0.02em;
}
.property-action .space {
    letter-spacing: 0.02em;
}
.property-action.dark-version .icon {
    color: #ffffff;
}
.property-action.dark-version .icon:hover {
    background-color: #ffffff;
    color: var(--headings-color);
}

.sp-img-content {
    position: relative;
}
.sp-img-content .preview-img-1 {
    border-radius: 12px 0 0 12px;
    height: 558px;
}
@media (max-width: 1199.98px) {
    .sp-img-content .preview-img-1 {
        height: 430px;
    }
}
@media (max-width: 991.98px) {
    .sp-img-content .preview-img-1 {
        border-radius: 0;
        height: auto;
    }
}
@media (max-width: 1199.98px) {
    .sp-img-content .preview-img-1.sp-v3 {
        height: auto;
    }
}
.sp-img-content.at-sp-v10 .preview-img-1 {
    height: 680px;
}
@media (max-width: 991.98px) {
    .sp-img-content.at-sp-v10 .preview-img-1 {
        height: auto;
    }
}
.sp-img-content.at-sp-v10 .preview-img-2 {
    height: 220px;
}
@media (max-width: 991.98px) {
    .sp-img-content.at-sp-v10 .preview-img-2 {
        height: auto;
    }
}
.sp-img-content .preview-img-3 {
    border-radius: 0 12px 0 0;
}
@media (max-width: 991.98px) {
    .sp-img-content .preview-img-3 {
        border-radius: 0;
    }
}
.sp-img-content .preview-img-5 {
    border-radius: 0 0 12px 0;
}
@media (max-width: 991.98px) {
    .sp-img-content .preview-img-5 {
        border-radius: 0;
    }
}
.sp-img-content .all-tag {
    background-color: #ffffff;
    border-radius: 8px;
    bottom: 20px;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
    display: block;
    padding: 7px 20px;
    position: absolute;
    right: 20px;
}
.sp-img-content .all-tag.style2 {
    border-radius: 50%;
    height: 65px;
    line-height: 55px;
    left: 0;
    margin: 0 auto;
    right: 0;
    top: 40%;
    width: 65px;
}
.sp-img-content .sp-img {
    display: block;
    overflow: hidden;
    position: relative;
}
.sp-img-content .sp-img img {
    height: 100%;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.sp-img-content .sp-img:hover img {
    transform: scale(1.1) rotate(-1deg);
}

.overview-element {
    position: relative;
}
.overview-element .icon {
    border: 1px solid #e9e9e9;
    border-radius: 4px;
    color: var(--headings-color);
    display: block;
    font-size: 17px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    width: 50px;
}
.overview-element.dark-version .icon {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}
.overview-element.dark-version .icon:hover {
    background-color: #ffffff;
    color: var(--headings-color);
}

.property_video {
    background-image: url(../images/listings/listing-single-6.html);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    align-items: center;
    display: flex;
    height: 350px;
    position: relative;
}
.property_video .video_popup_btn {
    background-color: #ffffff;
    border-radius: 50%;
    color: var(--headings-color);
    display: block;
    height: 54px;
    line-height: 54px;
    outline: 1px solid #ffffff;
    outline-offset: 15px;
    text-align: center;
    width: 54px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.property_video .video_popup_btn:hover {
    outline-offset: 7px;
}

.nearby {
    position: relative;
}
.nearby .rating {
    background-color: #ffffff;
    border-radius: 50%;
    display: block;
    height: 44px;
    line-height: 44px;
    outline: 3px solid #c4c640;
    text-align: center;
    width: 44px;
}
.nearby .rating.style2 {
    outline: 3px solid #eb6753;
}
.nearby .blog-single-review {
    top: 13px;
}
@media (max-width: 767.98px) {
    .nearby .blog-single-review {
        top: 0;
    }
}

.walkscore {
    position: relative;
}
.walkscore .icon {
    background-color: rgba(91, 187, 123, 0.07);
    border-radius: 50%;
    color: #00cedc;
    display: block;
    font-size: 30px;
    height: 70px;
    line-height: 80px;
    text-align: center;
    width: 70px;
}

.calculator-chart-percent {
    border-radius: 12px;
    height: 12px;
    overflow: hidden;
}
.calculator-chart-percent .principal-interest-st,
.calculator-chart-percent .property-tax-st,
.calculator-chart-percent .home-insurance-st {
    height: 12px;
}
.calculator-chart-percent .principal-interest-st {
    background-color: #82ddd0;
    width: 56.2748%;
}
.calculator-chart-percent .property-tax-st {
    background-color: #80a1cc;
    width: 32.7942%;
}
.calculator-chart-percent .home-insurance-st {
    background-color: #f5dd86;
    width: 10.931%;
}

.list-result-calculator li {
    width: calc(50% - 30px);
    margin-bottom: 15px;
}
.list-result-calculator li:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #82ddd0;
    margin-right: 12px;
}
@media (max-width: 767.98px) {
    .list-result-calculator li {
        width: auto;
    }
}
.list-result-calculator .name-result + span {
    color: var(--headings-color);
    margin-left: auto;
}

.chart-container {
    position: relative;
    margin: auto;
    height: 100%;
    width: 100%;
}

.sp-v5-property-details {
    margin-top: -180px;
    position: relative;
    z-index: 1;
}
.sp-v5-property-details .sp-lg-title,
.sp-v5-property-details .text,
.sp-v5-property-details .price,
.sp-v5-property-details a {
    color: #ffffff;
}
@media (max-width: 1199.98px) {
    .sp-v5-property-details .sp-lg-title,
    .sp-v5-property-details .text,
    .sp-v5-property-details .price,
    .sp-v5-property-details a {
        color: inherit;
    }
}
.sp-v5-property-details .icon:hover {
    background-color: #00cedc;
    border-color: #00cedc;
    color: #ffffff;
}
@media (max-width: 1199.98px) {
    .sp-v5-property-details {
        margin-top: 0;
    }
}

.tab-map-sp-v5 {
    position: relative;
}
.tab-map-sp-v5:before {
    background-color: rgba(34, 34, 34, 0.3);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}
@media (max-width: 1199.98px) {
    .tab-map-sp-v5:before {
        display: none;
    }
}

.sp-v9-forn {
    left: 20px;
    max-width: 390px;
    position: absolute;
    top: 20px;
    width: 100%;
}

.categories_list_section {
    border-bottom: 1px solid #e9e9e9;
    padding: 7px 0 3px;
}

.listings_category_nav_list_menu {
    position: relative;
}
.listings_category_nav_list_menu ul {
    width: 1265px;
}
.listings_category_nav_list_menu li {
    padding: 0 25px 0 0;
}
.listings_category_nav_list_menu li:last-child {
    margin-right: 0;
    padding-right: 0;
}
.listings_category_nav_list_menu a {
    display: block;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 40px;
    position: relative;
}
.listings_category_nav_list_menu a.active {
    font-weight: 500;
}
.listings_category_nav_list_menu a:before {
    background-color: var(--headings-color);
    bottom: -3px;
    content: "";
    height: 2px;
    left: 50%;
    position: absolute;
    width: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.listings_category_nav_list_menu a.active:before,
.listings_category_nav_list_menu a:hover:before {
    left: 0;
    right: 0;
    width: 100%;
}
@media (max-width: 1199.98px) {
    .listings_category_nav_list_menu {
        overflow-x: auto;
    }
}
.listings_category_nav_list_menu.at-home4 a:before {
    bottom: 0;
}

/* About Pages Design Content Styles */
.about-box-1 {
    position: relative;
}
.about-box-1 .list-style1 li {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
}

.about-box2 {
    background-color: rgba(91, 187, 123, 0.07);
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
    padding: 60px 60px 160px;
    position: relative;
}
@media (max-width: 991.98px) {
    .about-box2 {
        padding: 40px 30px;
    }
}
.about-box2 .title {
    font-size: 22px;
    line-height: 33px;
    letter-spacing: 0.02em;
}
.about-box2 .img-1 {
    position: absolute;
    right: 0;
    bottom: 0;
}
@media (max-width: 991.98px) {
    .about-box2 .img-1 {
        display: none;
    }
}

.freelancer-widget {
    background-color: #ffffff;
    border-radius: 4px;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    margin-bottom: 30px;
    max-width: 345px;
    padding: 40px;
    position: relative;
}
@media (max-width: 1199.98px) {
    .freelancer-widget {
        padding: 40px 20px;
    }
}
.freelancer-widget .title {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
}

.exclusive-agent-single {
    background-color: #ffffff;
    bottom: -90px;
    border-radius: 4px;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    max-width: 250px;
    padding: 20px;
    position: absolute;
    right: 70px;
    bottom: -60px;
    right: 30px;
}
.exclusive-agent-single .agent-img {
    border-radius: 4px;
    overflow: hidden;
}
@media (max-width: 991.98px) {
    .exclusive-agent-single {
        bottom: -20px;
    }
}
@media (max-width: 767.98px) {
    .exclusive-agent-single {
        bottom: 0;
        position: relative;
        right: 0;
    }
}

.left-top-img {
    position: absolute;
    left: -60px;
    top: 0;
}
@media (max-width: 767.98px) {
    .left-top-img {
        width: 40%;
    }
}

.right-bottom-img {
    bottom: -50px;
    position: absolute;
    right: 0;
}
@media (max-width: 767.98px) {
    .right-bottom-img {
        width: 50%;
    }
}

.service-v1-vector {
    bottom: -10px;
    position: absolute;
    right: 5%;
}
.service-v1-vector.at-job {
    bottom: 0;
}

.vector-v12 {
    bottom: 0;
    position: absolute;
    right: 6.6%;
    top: 0;
}

.service-v3-vector {
    bottom: 0;
    position: absolute;
    right: 5%;
}

.imgbox-about-page .img-1 {
    bottom: 500px;
    position: absolute;
    right: -100px;
}
.imgbox-about-page .img-2 {
    left: 230px;
    opacity: 0.2;
    position: absolute;
    top: -100px;
}
.imgbox-about-page .img-3 {
    left: -100px;
    opacity: 0.2;
    position: absolute;
    top: -100px;
}
.imgbox-about-page .img-4 {
    bottom: 500px;
    left: -100px;
    position: absolute;
}
.imgbox-about-page .img-5 {
    position: absolute;
    right: 60px;
    top: -60px;
}

.imgbox-1 {
    position: relative;
}
.imgbox-1 .img-1 {
    bottom: 0;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
}
@media (max-width: 400px) {
    .imgbox-1 .img-1 {
        width: 100%;
    }
}

.floating-img-1 {
    position: absolute;
    left: -150px;
    top: -150px;
}

.floating-img-2 {
    position: absolute;
    right: 0;
    top: -50px;
}

.floating-img-3 {
    position: absolute;
    right: -150px;
}

.home4-about-1 {
    position: relative;
}
.home4-about-1 .iconbox-small1 {
    top: -35px;
    top: 0;
}
.home4-about-1 .iconbox-small2 {
    top: 0;
    right: 0;
}
.home4-about-1 .img-1 {
    bottom: -30px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.home5-floating-img-1 {
    position: absolute;
    right: 4%;
}

@media (max-width: 767.98px) {
    .video-button-home8 {
        margin-bottom: -40%;
        margin-top: 40%;
    }
}

.video-button-home11 {
    background: #ffffff;
    border-radius: 50%;
    color: var(--headings-color);
    font-size: 17px;
    height: 80px;
    left: 0;
    line-height: 80px;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 35%;
    text-align: center;
    width: 80px;
}
.video-button-home11.at-home13 {
    top: 40%;
}

.listbox-style1 {
    max-width: 330px;
    position: relative;
    z-index: 1;
}

/*	Hero Styles All Type Of  */
/*	Home 1 Banner */
.home1-banner-content {
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 25%;
    width: 80%;
    z-index: 1;
}
@media (max-width: 1199.98px) {
    .home1-banner-content {
        top: 30%;
    }
}
@media (max-width: 767.98px) {
    .home1-banner-content {
        top: 25%;
        width: 100%;
    }
}
.home1-banner-content.at-home9 {
    top: 25%;
}
@media (max-width: 767.98px) {
    .home1-banner-content.at-home9 {
        top: 8%;
    }
}

/*	Home 2 Banner  */
/*	Home 3 Banner */
.home3-hero {
    background-image: url(../images/background/home3-bg.png);
    align-items: center;
    display: flex;
    height: 670px;
}

.home3-hero-content .title {
    font-size: 45px;
    line-height: 59px;
}
@media (max-width: 767.98px) {
    .home3-hero-content .title {
        font-size: 30px;
        line-height: 45px;
    }
}

.home3-hero-img {
    bottom: -400px;
    position: absolute;
    right: -90px;
}
@media (max-width: 1600px) {
    .home3-hero-img {
        right: 0;
    }
}

.home3-hero-partner img {
    filter: contrast(0.1);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.home3-hero-partner img:hover {
    filter: contrast(1);
}

/*	Home 4 Banner Content */
/*	Home 5 Slider Content */
.slider-slide-item {
    align-items: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    height: 900px;
    position: relative;
}
.slider-slide-item:before {
    background-color: rgba(34, 34, 34, 0.6);
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}
@media (max-width: 1199.98px) {
    .slider-slide-item {
        height: 500px;
    }
}

.thumbimg-countnumber-carousel .slider-subtitle {
    font-family: var(--title-font-family);
    font-weight: 600;
    margin: 0 0 10px;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}
@media (max-width: 991.98px) {
    .thumbimg-countnumber-carousel .slider-subtitle {
        font-size: 26px;
    }
}
.thumbimg-countnumber-carousel .slider-title {
    font-family: var(--title-font-family);
    font-weight: 600;
    font-size: 52px;
    margin: 0;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}
@media (max-width: 991.98px) {
    .thumbimg-countnumber-carousel .slider-title {
        font-size: 36px;
    }
}
.thumbimg-countnumber-carousel .slider-text {
    font-family: var(--title-font-family);
    font-weight: 400;
    font-size: 15px;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}
.thumbimg-countnumber-carousel .slider-btn {
    border-color: transparent;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}
.thumbimg-countnumber-carousel .active .slider-subtitle {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
.thumbimg-countnumber-carousel .active .slider-title {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
.thumbimg-countnumber-carousel .active .slider-text {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.thumbimg-countnumber-carousel .active .slider-btn {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

/*	Home 2 Banner */
.hero-home2 {
    background-image: url(../images/background/home2-hero-bg.jpg);
    background-position: center bottom;
    background-size: cover;
    align-items: end;
    display: flex;
    height: 860px;
}
@media (max-width: 1399.98px) {
    .hero-home2 {
        align-items: center;
    }
}
@media (max-width: 1199.98px) {
    .hero-home2 {
        height: auto;
    }
}
.main-img-home2 {
    bottom: 0;
    left: -100px;
    position: absolute;
}
@media (max-width: 1400px) {
    .main-img-home2 {
        left: 0;
        width: 100%;
    }
}

.home2-hero-content .img-1 {
    left: -50px;
    position: absolute;
    top: 365px;
}
.home2-hero-content .iconbox-small1 {
    border-radius: 16px;
    padding: 20px 30px 20px 20px;
    top: 0;
}
.home2-hero-content .iconbox-small1 .icon {
    background-color: rgba(91, 187, 123, 0.15);
    color: #00cedc;
    left: 0;
    position: relative;
    top: 0;
}
.home2-hero-content .iconbox-small1:hover .icon {
    background-color: rgba(91, 187, 123, 0.15);
    color: #00cedc;
}
.home2-hero-content .iconbox-small2 {
    border-radius: 16px;
    padding: 20px 30px 20px 20px;
    right: -90px;
    top: 300px;
}
@media (max-width: 1500px) {
    .home2-hero-content .iconbox-small2 {
        right: 0;
    }
}
@media (max-width: 1400px) {
    .home2-hero-content .iconbox-small2 {
        right: -60px;
        top: 200px;
    }
}
.home2-hero-content .iconbox-small2 .icon {
    background-color: rgba(31, 75, 63, 0.1);
    color: #1f4b3f;
    left: 0;
    position: relative;
    top: 0;
}
.home2-hero-content .iconbox-small2:hover .icon {
    background-color: rgba(31, 75, 63, 0.1);
    color: #1f4b3f;
}

/*	Home 3 Banner */
/*	Home 4 Banner */
/*	Home 5 Banner */
.hero-home5 {
    align-items: center;
    background: linear-gradient(
        180deg,
        #fbf7ed 0%,
        rgba(251, 247, 237, 0) 100%
    );
    display: flex;
    height: 760px;
    margin-top: -80px;
}
@media (max-width: 991.98px) {
    .hero-home5 {
        padding-top: 120px;
    }
}

.home5-hero-content {
    position: relative;
}
.home5-hero-content .img-1 {
    bottom: 150px;
    position: absolute;
    top: auto;
    z-index: 1;
}
@media (max-width: 1199.98px) {
    .home5-hero-content .img-1 {
        bottom: 0;
    }
}
.home5-hero-content .iconbox-small1 {
    top: 200px;
}
.home5-hero-content .iconbox-small1 .icon {
    background-color: #1f4b3f;
}
.home5-hero-content .iconbox-small1:hover .icon {
    background-color: #f5cb77;
}
.home5-hero-content .iconbox-small2 {
    bottom: 200px;
    top: auto;
}
.home5-hero-content .iconbox-small2 .icon {
    background-color: #1f4b3f;
}
.home5-hero-content .iconbox-small2:hover .icon {
    background-color: #f5cb77;
}

/*	Home 6 Banner */
.hero-home6:before {
    background-color: #faf7ee;
    bottom: 0;
    content: "";
    height: 115%;
    position: absolute;
    right: 0;
    top: -80px;
    width: 29.5%;
    z-index: -1;
}

.home6-hero-content {
    position: relative;
}
.home6-hero-content .img-1 {
    position: absolute;
    top: 30%;
}
.home6-hero-content .img-2 {
    position: absolute;
    right: 0;
    top: 20px;
}
.home6-hero-content .img-3 {
    position: absolute;
    right: -10px;
    top: 50%;
}
.home6-hero-content .img-4 {
    position: absolute;
    left: 90px;
    top: 100px;
}
.home6-hero-content .img-5 {
    position: absolute;
    right: 160px;
    top: -10px;
}
.home6-hero-content .iconbox-small1 {
    bottom: 170px;
    top: auto;
}
.home6-hero-content .iconbox-small1 .icon {
    background-color: #1f4b3f;
}
.home6-hero-content .iconbox-small1:hover .icon {
    background-color: #f1ab88;
}
.home6-hero-content .iconbox-small2 {
    bottom: 70px;
    top: auto;
}
.home6-hero-content .iconbox-small2 .icon {
    background-color: #1f4b3f;
}
.home6-hero-content .iconbox-small2:hover .icon {
    background-color: #f1ab88;
}

.home6-newslatter {
    background-image: url(../images/background/home6-newslatter-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

/*	Home 7 Banner */
.hero-home7 {
    align-items: center;
    display: flex;
    height: 650px;
    position: relative;
}
@media (max-width: 1199.98px) {
    .hero-home7 {
        height: auto;
    }
}
.hero-home7:before {
    background-color: #f1fcfa;
    content: "";
    height: 513px;
    position: absolute;
    right: 0;
    top: 70px;
    width: 513px;
}
@media (max-width: 991.98px) {
    .hero-home7:before {
        display: none;
    }
}

.home7-hero-slide {
    position: relative;
}
.home7-hero-slide .details {
    position: absolute;
    left: 30px;
    top: 30px;
}

.home7-hero-slider:before {
    background-color: #ffede8;
    bottom: -50px;
    content: "";
    height: 277px;
    left: -50px;
    position: absolute;
    right: -50px;
}
@media (max-width: 1199.98px) {
    .home7-hero-slider:before {
        bottom: -30px;
        left: -30px;
        right: -30px;
    }
}

/*	Home 8 Banner */
.hero-home8 {
    background-image: url(../images/background/home8-hero-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    align-items: center;
    display: flex;
    height: 800px;
    position: relative;
}

.home8-hero-img {
    position: absolute;
    right: 0;
    top: 80px;
}
/*	Home 9 Banner */
.home9-hero-content .banner-style-one .slide {
    display: flex;
    height: 780px;
    align-items: center;
}
@media (max-width: 767.98px) {
    .home9-hero-content .banner-style-one .slide {
        height: 650px;
    }
}

.home9-tags a {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: inline-block;
    font-family: var(--title-font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    margin-right: 10px;
    padding: 5px 24px;
}
.home9-tags a:last-child {
    margin-right: 0;
}
.home9-tags.at-home12 a {
    background-color: #ffffff;
    color: #222222;
}
.home9-tags.at-home16 a {
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    color: #222222;
}
.home9-tags.at-home16 a:hover {
    background-color: #fbf7ed;
}
.home9-tags.at-home18 a {
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    color: #222222;
}
.home9-tags.at-home18 a:hover {
    background-color: #ffede8;
}

/*	Home 10 Banner */
.home10-hero-content .banner-style-one .slide {
    display: flex;
    height: 700px;
    align-items: center;
}
@media (max-width: 767.98px) {
    .home10-hero-content .banner-style-one .slide {
        height: 500px;
    }
}
.home10-hero-content .navi_pagi_bottom_center.owl-theme .owl-nav {
    bottom: 45px;
}
.home10-hero-content .navi_pagi_bottom_center.owl-theme .owl-dots {
    bottom: 23px;
}

/*	Home 11 Banner */
.home11-hero-content {
    position: relative;
}
.home11-hero-content .tag {
    background-color: #ffede8;
    border-radius: 12px;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
    font-size: 13px;
    padding: 5px 17px;
}
.home11-hero-content .title {
    font-size: 55px;
    line-height: 72px;
}
@media (max-width: 767.98px) {
    .home11-hero-content .title {
        font-size: 30px;
        line-height: 45px;
    }
}

.home11-hero-img {
    position: relative;
}
.home11-hero-img .iconbox-small1 {
    border-radius: 16px;
    padding: 20px 30px 20px 20px;
    bottom: 0;
    -webkit-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    -moz-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    -o-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    top: auto;
}
@media (max-width: 767.98px) {
    .home11-hero-img .iconbox-small1 {
        position: absolute;
    }
}
.home11-hero-img .iconbox-small1 .icon {
    background-color: #222222;
    color: #ffffff;
    left: 0;
    position: relative;
    top: 0;
}
.home11-hero-img .iconbox-small1:hover .icon {
    background-color: #eafac1;
    color: #222222;
}
.home11-hero-img .iconbox-small2 {
    border-radius: 16px;
    -webkit-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    -moz-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    -o-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    padding: 20px 30px 20px 20px;
    right: -90px;
    top: 300px;
}
@media (max-width: 1500px) {
    .home11-hero-img .iconbox-small2 {
        right: 0;
    }
}
@media (max-width: 1400px) {
    .home11-hero-img .iconbox-small2 {
        right: -30px;
        top: 200px;
    }
}
@media (max-width: 767.98px) {
    .home11-hero-img .iconbox-small2 {
        position: absolute;
        right: 0;
    }
}
.home11-hero-img .iconbox-small2 .icon {
    background-color: #eafac1;
    color: #222222;
    left: 0;
    position: relative;
    top: 0;
}
.home11-hero-img .iconbox-small2:hover .icon {
    background-color: #eafac1;
    color: #222222;
}

/*	Home 12 Banner */
.hero-home12 {
    background-image: url(../images/background/home12-hero-bg.png);
    display: flex;
    align-items: center;
    height: 860px;
}

.home12-hero-content {
    position: relative;
}
.home12-hero-content .tag {
    background-color: #eafac1;
    border-radius: 120px;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
    font-size: 13px;
    padding: 5px 17px;
}

.home12-hero-img .img-0 {
    bottom: 0;
    position: absolute;
}
.home12-hero-img .img-1 {
    left: 70px;
    position: absolute;
    top: 0;
}
.home12-hero-img .img-2 {
    right: -100px;
    position: absolute;
    top: 100px;
    width: 108px;
    z-index: 1;
}
@media (max-width: 1500px) {
    .home12-hero-img .img-2 {
        right: 0;
        top: 0;
    }
}
.home12-hero-img .img-3 {
    position: absolute;
    right: -100px;
    top: 450px;
    width: 80px;
    z-index: 1;
}
@media (max-width: 1500px) {
    .home12-hero-img .img-3 {
        right: 0;
    }
}
.home12-hero-img .iconbox-small1 {
    border-radius: 16px;
    -webkit-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    -moz-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    -o-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    margin-left: 4%;
    padding: 20px 30px 20px 20px;
    bottom: 50px;
    top: auto;
}
@media (max-width: 767.98px) {
    .home12-hero-img .iconbox-small1 {
        position: absolute;
    }
}
.home12-hero-img .iconbox-small1 .icon {
    background-color: #cef9d6;
    color: #222222;
    left: 0;
    position: relative;
    top: 0;
}
.home12-hero-img .iconbox-small1:hover .icon {
    background-color: #cef9d6;
    color: #222222;
}
.home12-hero-img .iconbox-small2 {
    border-radius: 16px;
    -webkit-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    -moz-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    -o-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    bottom: 250px;
    padding: 20px 30px 20px 20px;
    right: 200px;
    top: auto;
}
@media (max-width: 1500px) {
    .home12-hero-img .iconbox-small2 {
        right: 0;
    }
}
@media (max-width: 767.98px) {
    .home12-hero-img .iconbox-small2 {
        position: absolute;
        right: 0;
    }
}
.home12-hero-img .iconbox-small2 .icon {
    background-color: #222222;
    color: #ffffff;
    left: 0;
    position: relative;
    top: 0;
}
.home12-hero-img .iconbox-small2:hover .icon {
    background-color: #222222;
    color: #ffffff;
}

/*	Home 13 Banner */
.hero-home13 {
    background-image: url(../images/background/home13-hero-bg.png);
    display: flex;
    align-items: center;
    height: 860px;
}
@media (max-width: 1199.98px) {
    .hero-home13 {
        height: auto;
        padding-bottom: 60px;
    }
}
.hero-home13.at-home17 {
    background-image: url(../images/background/home17-hero-bg.png);
}
.hero-home13.at-home18 {
    background-image: url(../images/background/home18-hero-bg.png);
    border-radius: 30px;
}
.hero-home13.at-home20 {
    background-image: url(../images/background/home20-hero-bg.png);
    background-position: center;
    background-repeat: no-repeat;
}

.home13-hero-content {
    position: relative;
}
.home13-hero-content .tag {
    background-color: #222222;
    border-radius: 120px;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
    font-size: 13px;
    padding: 5px 17px;
}

.home13-hero-img .img-4 {
    bottom: -18px;
    position: absolute;
    right: 30px;
}
.home13-hero-img .iconbox-small1 {
    border-radius: 16px;
    -webkit-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    -moz-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    -o-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    padding: 20px 30px 20px 20px;
    right: -40%;
    top: 40%;
}
@media (max-width: 1600px) {
    .home13-hero-img .iconbox-small1 {
        right: 0;
    }
}
@media (max-width: 767.98px) {
    .home13-hero-img .iconbox-small1 {
        position: absolute;
    }
}
.home13-hero-img .iconbox-small1 .icon {
    background-color: #cef9d6;
    color: #222222;
    left: 0;
    position: relative;
    top: 0;
}
.home13-hero-img .iconbox-small1:hover .icon {
    background-color: #cef9d6;
    color: #222222;
}

/*	Home 14 Banner */
.home14-hero-content {
    position: relative;
}
.home14-hero-content .title {
    font-size: 55px;
}
.home14-hero-content .title span {
    position: relative;
}
.home14-hero-content .title span:before {
    background-color: #f4fea8;
    content: "";
    bottom: 5px;
    height: 19px;
    left: -5px;
    position: absolute;
    width: 100%;
    z-index: -1;
}
@media (max-width: 767.98px) {
    .home14-hero-content .title {
        font-size: 30px;
    }
}

.home14-ctaimg-1 {
    position: relative;
}
.home14-ctaimg-1 .iconbox-small1 {
    border-radius: 16px;
    padding: 20px 30px 20px 20px;
    bottom: 0;
    -webkit-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    -moz-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    -o-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    top: auto;
}
@media (max-width: 767.98px) {
    .home14-ctaimg-1 .iconbox-small1 {
        position: absolute;
    }
}
.home14-ctaimg-1 .iconbox-small1 .icon {
    background-color: #cef9d6;
    color: #222222;
    left: 0;
    position: relative;
    top: 0;
}
.home14-ctaimg-1 .iconbox-small1:hover .icon {
    background-color: #cef9d6;
    color: #222222;
}
.home14-ctaimg-1 .iconbox-small2 {
    border-radius: 16px;
    -webkit-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    -moz-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    -o-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    padding: 20px 30px 20px 20px;
    right: 50px;
    top: 300px;
}
@media (max-width: 1500px) {
    .home14-ctaimg-1 .iconbox-small2 {
        right: 0;
    }
}
@media (max-width: 1400px) {
    .home14-ctaimg-1 .iconbox-small2 {
        right: -30px;
        top: 200px;
    }
}
@media (max-width: 767.98px) {
    .home14-ctaimg-1 .iconbox-small2 {
        position: absolute;
        right: 0;
    }
}
.home14-ctaimg-1 .iconbox-small2 .icon {
    background-color: rgba(31, 75, 63, 0.1);
    color: #1f4b3f;
    left: 0;
    position: relative;
    top: 0;
}
.home14-ctaimg-1 .iconbox-small2:hover .icon {
    background-color: #eafac1;
    color: #222222;
}

.home13-hero-img .img-1 {
    position: absolute;
    top: 8%;
}

/*	Home 15 Banner */
.hero-home15 {
    border-radius: 0px 0px 20px 20px;
}

.home15-hero-img .iconbox-small1 {
    border-radius: 0 30px 30px 30px;
    -webkit-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    -moz-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    -o-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    padding: 20px 30px 20px 20px;
    right: -20%;
    top: 40%;
}
@media (max-width: 1600px) {
    .home15-hero-img .iconbox-small1 {
        right: 0;
    }
}
@media (max-width: 767.98px) {
    .home15-hero-img .iconbox-small1 {
        position: absolute;
    }
}
.home15-hero-img .iconbox-small1 .icon {
    background-color: #f6cc77;
    color: #222222;
    left: 0;
    position: relative;
    top: 0;
}
.home15-hero-img .iconbox-small1:hover .icon {
    background-color: #cef9d6;
    color: #222222;
}
.home15-hero-img .iconbox-small2 {
    border-radius: 30px 0 30px 30px;
    -webkit-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    -moz-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    -o-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    bottom: 10%;
    left: -10%;
    right: auto;
    padding: 20px 30px 20px 20px;
    top: auto;
}
@media (max-width: 767.98px) {
    .home15-hero-img .iconbox-small2 {
        position: absolute;
    }
}
.home15-hero-img .iconbox-small2 .icon {
    background-color: #168882;
    color: #ffffff;
    left: 0;
    position: relative;
    top: 0;
}
.home15-hero-img .iconbox-small2:hover .icon {
    background-color: #cef9d6;
    color: #222222;
}

/*	Home 16 Banner */
.hero-home16 {
    background-image: url(../images/background/home16-hero-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home16-hero-fltimg {
    max-height: 740px;
    max-width: 840px;
    position: absolute;
    right: 0;
    top: -100px;
    z-index: -1;
}
.home16-hero-fltimg.at-home19 {
    max-height: 800px;
    max-width: 900px;
}

/*	Home 17 Banner */
.home17-hero-content {
    position: relative;
}
.home17-hero-content .btn-1 {
    background-color: #3f5d56;
    color: #97fcc4;
}
.home17-hero-content .btn-2 {
    background-color: #97fcc4;
    border: 1px solid #e9e9e9;
    color: #222222;
}

.home17-hero-img {
    position: relative;
}
.home17-hero-img .iconbox-small1 {
    background-color: #2d62dc;
    border-radius: 120px;
    bottom: -40px;
    padding: 20px 30px 20px 20px;
    top: auto;
    right: -60px;
}
@media (max-width: 1600px) {
    .home17-hero-img .iconbox-small1 {
        right: -50px;
    }
}
@media (max-width: 1440px) {
    .home17-hero-img .iconbox-small1 {
        right: 0px;
    }
}
.home17-hero-img .iconbox-small1 .icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    left: 0;
    position: relative;
    top: 0;
}
.home17-hero-img .img-1 {
    left: -30px;
    position: absolute;
    top: 45%;
}

/*	Home 18 Banner */
.home18-hero-content {
    position: relative;
}
.home18-hero-content .btn-1 {
    background-color: #f9fcaa;
    color: #222222;
}
.home18-hero-content .btn-2 {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: transparent;
    border-style: solid;
    border-width: 2px;
    color: #ffffff;
}

.home18-hero-img {
    position: relative;
}
.home18-hero-img .detail {
    left: 140px;
    position: absolute;
    top: 120px;
}
@media (max-width: 1200px) {
    .home18-hero-img .detail {
        left: 30px;
    }
}
.home18-hero-img .iconbox-small1 {
    background-color: #f9fcaa;
    border-radius: 120px;
    bottom: 300px;
    padding: 20px 30px 20px 20px;
    top: auto;
    right: -150px;
}
@media (max-width: 1600px) {
    .home18-hero-img .iconbox-small1 {
        right: -50px;
    }
}
@media (max-width: 1440px) {
    .home18-hero-img .iconbox-small1 {
        right: 0px;
    }
}
.home18-hero-img .iconbox-small1 .icon {
    background-color: #3a473c;
    color: #f9fcaa;
    left: 0;
    position: relative;
    top: 0;
}
.home18-hero-img .img-1 {
    bottom: 40px;
    left: -100px;
    position: absolute;
}
.home18-hero-img .img-2 {
    left: 100px;
    position: absolute;
    top: 30px;
}
.home18-hero-img .img-3 {
    opacity: 0.15;
    left: auto;
    position: absolute;
    right: 30px;
    top: 50px;
}

/*	Home 19 Banner */
.home19-hero-fltimg {
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    z-index: -1;
}

.home19-hero-fltimg-2 {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    z-index: -1;
}

/*	Home 20 Banner */
.home20-hero-content {
    position: relative;
}
.home20-hero-content .title {
    font-size: 55px;
}
@media (max-width: 991.98px) {
    .home20-hero-content .title {
        font-size: 36px;
    }
}
@media (max-width: 767.98px) {
    .home20-hero-content .title {
        font-size: 30px;
    }
}

.home20-hero-imgs-left .img-1 {
    left: 6%;
    position: absolute;
    top: 21%;
}
.home20-hero-imgs-left .img-2 {
    left: 24%;
    position: absolute;
    top: 6%;
}
.home20-hero-imgs-left .img-3 {
    left: 18%;
    position: absolute;
    top: 36%;
}
.home20-hero-imgs-left .img-4 {
    bottom: 27%;
    left: 15%;
    position: absolute;
}

.home20-hero-imgs-right .img-1 {
    right: 6%;
    position: absolute;
    top: 21%;
}
.home20-hero-imgs-right .img-2 {
    right: 24%;
    position: absolute;
    top: 6%;
}
.home20-hero-imgs-right .img-3 {
    right: 18%;
    position: absolute;
    top: 36%;
}
.home20-hero-imgs-right .img-4 {
    bottom: 27%;
    right: 15%;
    position: absolute;
}

/*	ALl Blogs Styles Here	*/
.blog-style1 {
    background-color: #ffffff;
    border-radius: 4px;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    margin-bottom: 30px;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.blog-style1 .blog-img {
    overflow: hidden;
}
.blog-style1 .blog-img img {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.blog-style1 .blog-content {
    padding: 30px;
    position: relative;
}
.blog-style1 .date {
    color: var(--body-text-color);
    font-family: var(--title-font-family);
    font-weight: 400;
    font-size: 14px;
}
.blog-style1 .title {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.blog-style1:hover .blog-img img {
    transform: scale(1.1) rotate(-1deg);
}
.blog-style1:hover .title,
.blog-style1:hover .title a {
    color: #00cedc;
    text-decoration: underline;
}
.blog-style1.large-size {
    border-radius: 4px;
    box-shadow: none;
    overflow: hidden;
}
.blog-style1.large-size .blog-img {
    border-radius: 0;
    overflow: hidden;
}
.blog-style1.large-size .title {
    font-size: 28px;
}
.blog-style1.list-style {
    border-radius: 4px;
    box-shadow: none;
    overflow: hidden;
}
.blog-style1.list-style .blog-img {
    border-radius: 4px;
    position: relative;
}
.blog-style1.list-style .title {
    font-size: 28px;
}
.blog-style1.at-home5 {
    border-radius: 8px;
    box-shadow: none;
}
.blog-style1.at-home5.active,
.blog-style1.at-home5:hover {
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}
.blog-style1.at-home6 {
    box-shadow: none;
}
.blog-style1.at-home7 {
    box-shadow: none;
}
.blog-style1.at-home7:hover {
    border: 1px solid #222222;
    -webkit-box-shadow: 10px 10px 0px #ffede8;
    -moz-box-shadow: 10px 10px 0px #ffede8;
    -o-box-shadow: 10px 10px 0px #ffede8;
    box-shadow: 10px 10px 0px #ffede8;
}
.blog-style1.at-home8 {
    box-shadow: none;
}
.blog-style1.at-home8 .blog-content {
    padding: 20px 0;
}

.custom_bsp_grid,
.list-style-type-bullet {
    position: relative;
}
.custom_bsp_grid li,
.list-style-type-bullet li {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 46px;
    list-style-type: disc;
}
.custom_bsp_grid li::marker,
.list-style-type-bullet li::marker {
    color: #1f4b3f;
}
.custom_bsp_grid.dashboard-style li,
.list-style-type-bullet.dashboard-style li {
    line-height: 28px;
}

.blog_post_share span {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
    font-size: 15px;
    line-height: 23px;
}
.blog_post_share a {
    border-radius: 50%;
    color: var(--headings-color);
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    width: 40px;
}
.blog_post_share a:hover {
    background-color: rgba(34, 34, 34, 0.05);
}

.bsp_tags a {
    background-color: #ffede8;
    border-radius: 60px;
    color: var(--headings-color);
    display: block;
    font-family: var(--body-font-family);
    font-weight: 500;
    font-size: 13px;
    line-height: 28px;
    padding: 6px 17px;
}

.blog-single-review {
    position: absolute;
    right: 0;
    top: 5px;
}
@media (max-width: 767.98px) {
    .blog-single-review {
        position: relative;
    }
}

.review_cansel_btns a {
    color: #697488;
    font-family: var(--title-font-family);
    line-height: 26px;
    letter-spacing: 0em;
    margin-right: 30px;
}
.review_cansel_btns a:last-child {
    margin-right: 0;
}
.review_cansel_btns a:hover {
    color: var(--headings-color);
}
.review_cansel_btns i {
    padding-right: 10px;
}

.total-review-box {
    background-color: #ffede8;
    border-radius: 4px;
    height: 250px;
    position: relative;
    width: 300px;
}
.total-review-box .t-review {
    font-weight: 600;
    font-size: 60px;
    line-height: 1;
    color: #e1c03f;
}

.review-list .list-number {
    white-space: nowrap;
    font-weight: 500;
    color: var(--headings-color);
    padding-right: 10px;
    min-width: 55px;
}
.review-list .progress {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-shrink: 0;
    height: 5px;
    width: 300px;
}
@media (max-width: 575.98px) {
    .review-list .progress {
        width: 200px;
    }
}
.review-list .progress-bar {
    background-color: #e1c03f;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
    transition: width 0.6s ease;
    width: 67%;
}
.review-list .value {
    display: inline-block;
    font-size: 14px;
    width: 40px;
    padding-left: 10px;
}

/*	Brands  */
/*  Commons Styles of Template  */
section {
    padding: 60px 0;
    position: relative;
}
@media (max-width: 991.98px) {
    section {
        padding: 60px 0;
    }
}

.main-title,
.main-title2 {
    position: relative;
    margin-bottom: 40px;
}
@media (max-width: 991.98px) {
    .main-title,
    .main-title2 {
        margin-bottom: 30px;
    }
}
.main-title .title,
.main-title2 .title {
    font-style: normal;
}
.main-title .paragraph,
.main-title2 .paragraph {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-size: 18px;
}

@media (max-width: 991.98px) {
    .main-title2 {
        margin-bottom: 30px;
    }
}

.ui-content {
    position: relative;
    margin-bottom: 30px;
}
.ui-content .title {
    margin-bottom: 30px;
}

.mouse_scroll {
    bottom: 0;
    position: absolute;
    right: 50px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
@media (max-width: 991.98px) {
    .mouse_scroll {
        right: 15px;
    }
}
@media (max-width: 575.98px) {
    .mouse_scroll {
        display: none;
    }
}
.mouse_scroll.at-home8 {
    bottom: 110px;
    right: 0;
    left: 0;
}

.list-style1 {
    position: relative;
}
.list-style1 li {
    align-items: center;
    display: flex;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 400;
    list-style-type: none;
    margin-bottom: 20px;
}
.list-style1 i {
    border-radius: 50%;
    font-size: 8px;
    height: 18px;
    left: 0;
    line-height: 18px;
    position: absolute;
    text-align: center;
    width: 18px;
}

.list-style2 {
    position: relative;
}
.list-style2 li {
    align-items: center;
    display: flex;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 400;
    list-style-type: none;
    margin-bottom: 20px;
}
.list-style2 i {
    border-radius: 50%;
    font-size: 16px;
    height: 18px;
    left: 0;
    line-height: 18px;
    position: absolute;
    text-align: center;
    width: 18px;
}
.list-style2.light-style li,
.list-style2.light-style i {
    color: #ffffff;
}

.list-style3 {
    position: relative;
}
.list-style3 li {
    align-items: center;
    display: flex;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 400;
    list-style-type: none;
    margin-bottom: 20px;
    padding-left: 5px;
}
.list-style3 i {
    border-radius: 50%;
    font-size: 10px;
    height: 25px;
    left: 0;
    line-height: 25px;
    position: absolute;
    text-align: center;
    width: 25px;
}

.skill-list-style1 a {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 40px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.skill-list-style1 a:hover {
    color: #00cedc;
    text-decoration: underline;
}

/* Custom Search Sugguestions Code Start */
.advance-search-tab.at-home3 {
    border: 1px solid #397e62;
}

.advance-search-tab.at-home6 {
    border: 1px solid #1f4b3f;
}
.advance-search-tab.at-home7 {
    border: 1px solid #222222;
    -webkit-box-shadow: 10px 10px 0px #ffede8;
    -moz-box-shadow: 10px 10px 0px #ffede8;
    -o-box-shadow: 10px 10px 0px #ffede8;
    box-shadow: 10px 10px 0px #ffede8;
}

.advance-search-field .box-search .icon {
    bottom: 13px;
    color: var(--headings-color);
    font-size: 16px;
    left: 20px;
    position: absolute;
}
.advance-search-field .box-search input {
    border: none;
    font-size: 15px;
    font-family: var(--title-font-family);
    outline: none;
    padding-left: 50px;
}
.advance-search-field .box-search input:focus {
    border: none;
    outline: none;
}
.advance-search-field .box-search input::placeholder {
    color: var(--headings-color);
}
.advance-search-field .search-suggestions {
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 4px;
    left: 0;
    overflow: hidden;
    opacity: 0;
    position: absolute;
    top: 70px;
    visibility: hidden;
    width: 100%;
    z-index: 99;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.advance-search-field .search-suggestions.show {
    opacity: 1;
    visibility: visible;
}
.advance-search-field .box-suggestions {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
}
.advance-search-field .box-suggestions li {
    overflow: hidden;
    padding: 8px 30px;
    font-family: var(--title-font-family);
    font-weight: 400;
}
.advance-search-field .box-suggestions li:hover {
    background-color: #f0efec;
}
.advance-search-field .box-suggestions li:last-child {
    border-bottom: none;
}
.advance-search-field .item_title {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
}

/* Custom Search Sugguestions Code End */
.preloader {
    background-color: #eaeaea;
    background-image: url("../images/preloader.gif");
    background-position: center center;
    background-repeat: no-repeat;
    height: 100%;
    left: 0px;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 99999;
}

.scrollToHome {
    background-color: rgba(34, 34, 34, 0.05);
    border: 1px solid rgba(34, 34, 34, 0.05);
    border-radius: 50%;
    bottom: -45px;
    color: #222222;
    display: block;
    height: 50px;
    line-height: 50px;
    opacity: 0;
    position: fixed;
    right: 45px;
    text-align: center;
    text-decoration: none;
    width: 50px;
    z-index: 9;
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -ms-transform: scale(0.3);
    -o-transform: scale(0.3);
    transform: scale(0.3);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.scrollToHome:hover {
    color: #ffffff;
}
.scrollToHome.at-home2 {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.scrollToHome:hover {
    background-color: #1f4b3f;
    color: #ffffff;
}

.scrollToHome.show {
    bottom: 45px;
    right: 45px;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.animate-up-1,
.animate-up-2,
.animate-up-3,
.animate-up-4,
.animate-up-5 {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.animate-up-1 {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.animate-up-2 {
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.animate-up-3 {
    -webkit-animation-duration: 0.9s;
    animation-duration: 0.9s;
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

.animate-up-4 {
    -webkit-animation-duration: 1.1s;
    animation-duration: 1.1s;
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s;
}

.animate-up-5 {
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-delay: 1.3s;
    animation-delay: 1.3s;
}

.line-clamp1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.line-clamp2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

/*	Contact Styles  */
.home8-map {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}
.home8-map.contact-page {
    height: 550px;
}
@media (max-width: 991.98px) {
    .home8-map.contact-page {
        height: 350px;
        position: relative;
    }
}

.contact-page-map {
    border-radius: 16px;
    height: 510px;
}

.contact-page-form {
    margin-top: -200px;
}
@media (max-width: 991.98px) {
    .contact-page-form {
        margin-top: 0;
    }
}

/*	All CTA Styles Here  */
.cta-service-v1 {
    background-image: url(../images/background/cta-service-v1-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 200px;
}
@media (max-width: 767.98px) {
    .cta-service-v1.freelancer-single-style {
        height: auto;
    }
}
.cta-service-v1.freelancer-single-v1 {
    height: auto;
}
.cta-service-v1.freelancer-single-v1 .left-top-img,
.cta-service-v1.freelancer-single-v1 .right-bottom-img {
    width: 15%;
}

.cta-service-v2 {
    background-image: url(../images/background/cta-service-v2-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
}

.cta-service-v3 {
    background-image: url(../images/background/cta-service-v3-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
}

.cta-service-v4 {
    background-image: url(../images/background/cta-service-v4-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
}

.cta-service-v6 {
    background-image: url(../images/background/cta-service-v6-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
}
@media (max-width: 767.98px) {
    .cta-service-v6 {
        height: auto;
    }
}

.cta-service-single {
    background-image: url(../images/background/cta-service-signle-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
}
@media (max-width: 767.98px) {
    .cta-service-single {
        height: auto;
    }
}

.cta-employee-single {
    background-image: url(../images/background/cta-employee-list-v1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
}
@media (max-width: 767.98px) {
    .cta-employee-single {
        height: auto;
    }
}

.cta-job-v1 {
    background-image: url(../images/background/cta-job-list-v1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
}
@media (max-width: 767.98px) {
    .cta-job-v1 {
        height: auto;
    }
}

.cta-commmon-v1 {
    height: 300px;
}
@media (max-width: 991.98px) {
    .cta-commmon-v1 {
        height: 200px;
    }
}

.cta-about-v1 {
    background-image: url(../images/background/cta-about-banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
}

.cta-home3-last {
    background-image: url(../images/background/home3-cta-last.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.cta-style1 {
    position: relative;
}
.cta-style1 .cta-title {
    letter-spacing: 0.02em;
}
.cta-style1 .cta-text {
    font-size: 15px;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 400;
}
@media (max-width: 991.98px) {
    .cta-style1 {
        margin-bottom: 20px;
    }
}

@media (max-width: 575.98px) {
    .cta-btns-style1 .ud-btn {
        width: 100%;
    }
    .cta-btns-style1 .ud-btn:first-child {
        margin-bottom: 12px;
    }
}

.our-cta2 {
    margin-bottom: -150px;
    z-index: 1;
}

.cta-banner2 {
    position: relative;
}

.cta-banner3 .cta-banner3-img {
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
}
@media (max-width: 1199.98px) {
    .cta-banner3 .cta-banner3-img {
        height: auto;
        left: 15px;
        position: relative;
        right: 15px;
        width: 96%;
    }
}
.cta-banner3.at-home8:before {
    left: 0;
    right: auto;
}
.cta-banner3.at-home8:before {
    left: 0;
    right: auto;
    height: 93%;
}

.cta-style2 {
    position: relative;
}
.cta-style2 .cta-title {
    letter-spacing: 0.02em;
}
.cta-style2 .cta-title,
.cta-style2 .cta-text {
    color: #ffffff;
}
.cta-style2 .cta-text {
    font-size: 15px;
    font-family: var(--title-font-family);
    font-weight: 400;
}
.cta-style2 img {
    left: auto;
    right: 0;
    position: absolute;
    top: -65px;
}

.cta-style3 .cta-title {
    font-family: var(--body-font-family);
}
.cta-style3 .cta-text {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 400;
}

.cta-banner4 {
    background-attachment: fixed;
    background-image: url(../images/background/cta-bg-1.html);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
}

@media (max-width: 575.98px) {
    .cta-style4 .cta-title {
        font-size: 30px;
    }
}

.cta-img {
    bottom: -90px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    z-index: 1;
}
@media (max-width: 991.98px) {
    .cta-img {
        bottom: -60px;
    }
}
@media (max-width: 767.98px) {
    .cta-img {
        position: relative;
    }
}

.our-cta3 {
    background-color: #f8f8ff;
}

.cta-banner5:before {
    background-image: url(../images/about/about-7.jpg);
    background-size: cover;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 51%;
}
@media (max-width: 767.98px) {
    .cta-banner5:before {
        display: none;
    }
}

.cta-style5 .app-tag {
    background-color: #fffbf2;
    border-radius: 60px;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 400;
    display: block;
    height: 34px;
    text-align: center;
    line-height: 34px;
    width: 128px;
}
.cta-style5 .cta-text {
    color: #140342;
    font-family: var(--title-font-family);
    font-weight: 400;
}

.cta-banner6:before {
    background-image: url(../images/about/cta-side-bg-3.html);
    background-size: cover;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 51%;
}
@media (max-width: 1199.98px) {
    .cta-banner6:before {
        display: none;
    }
}

.cta-style6 .cta-title {
    color: var(--headings-color);
    font-family: var(--body-font-family);
    font-size: 32px;
}
.cta-style6 .cta-text {
    color: #1f4b3f;
}

.cta-about2-img {
    position: absolute;
    right: 0;
}
.cta-about2-img.at-home8-2 {
    top: 0;
}
.cta-about2-img.at-home10 {
    left: 0;
    right: auto;
}

.home2-cta-img,
.home6-cta-img,
.home10-cta-img {
    border-radius: 0 0 0 90px;
    bottom: 0;
    position: absolute;
    right: 13%;
    z-index: -1;
}
@media (max-width: 1199.98px) {
    .home2-cta-img,
    .home6-cta-img,
    .home10-cta-img {
        right: 0;
        top: 10%;
        width: 45%;
    }
}
@media (max-width: 991.98px) {
    .home2-cta-img,
    .home6-cta-img,
    .home10-cta-img {
        bottom: 0;
        left: 0;
        margin: 0 auto;
        right: 0;
        max-width: 350px;
        top: auto;
        width: 100%;
    }
}

.home6-cta-img {
    border-radius: 0;
    z-index: 0;
}

.cta-banner-about2 {
    align-items: center;
    display: flex;
    height: 900px;
}
@media (max-width: 1199.98px) {
    .cta-banner-about2 {
        height: auto;
    }
}
.cta-banner-about2:before {
    background-color: #f1fcfa;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 71%;
}
@media (max-width: 1199.98px) {
    .cta-banner-about2:before {
        width: 100%;
    }
}
.cta-banner-about2.at-home2 {
    height: 720px;
}
.cta-banner-about2.at-home2:before {
    display: none;
}
@media (max-width: 991.98px) {
    .cta-banner-about2.at-home2 {
        display: block;
        height: auto;
    }
}
.cta-banner-about2.at-home8 {
    height: 750px;
}
@media (max-width: 1199.98px) {
    .cta-banner-about2.at-home8 {
        height: 600px;
    }
}
@media (max-width: 991.98px) {
    .cta-banner-about2.at-home8 {
        display: block;
        height: auto;
    }
}
.cta-banner-about2.at-home8:before {
    background-color: #fbf7ed;
    left: auto;
    right: 0;
    width: 91%;
}
@media (max-width: 1199.98px) {
    .cta-banner-about2.at-home8:before {
        right: auto;
        left: 0;
        width: 100%;
    }
}
.cta-banner-about2.at-home8-2 {
    height: 790px;
}
@media (max-width: 1199.98px) {
    .cta-banner-about2.at-home8-2 {
        height: 700px;
    }
}
@media (max-width: 991.98px) {
    .cta-banner-about2.at-home8-2 {
        display: block;
        height: auto;
    }
}
.cta-banner-about2.at-home8-2:before {
    background-color: #102c2d;
    left: 0;
    right: auto;
    width: 91%;
}
@media (max-width: 1199.98px) {
    .cta-banner-about2.at-home8-2:before {
        right: auto;
        left: 0;
        width: 100%;
    }
}
.cta-banner-about2.at-home10:before {
    left: auto;
    right: 0;
}
.cta-banner-about2.at-home10-2 {
    height: 800px;
}
@media (max-width: 1199.98px) {
    .cta-banner-about2.at-home10-2 {
        height: auto;
    }
}
.cta-banner-about2.at-home10-2:before {
    background-color: #ffede8;
    border-radius: 24px;
}
.cta-banner-about2.at-home10-2.at-home6 {
    border-radius: 0;
}
.cta-banner-about2.at-home17 {
    height: 800px;
}
@media (max-width: 1199.98px) {
    .cta-banner-about2.at-home17 {
        height: auto;
    }
}
.cta-banner-about2.at-home17:before {
    background-color: #fbf7ed;
    border-radius: 24px;
}
.cta-banner-about2.at-home18:before {
    background-color: #ffede8;
    border-radius: 24px;
}

.cta-home4 {
    height: 500px;
}
@media (max-width: 991.98px) {
    .cta-home4 {
        height: auto;
    }
}
.cta-home4.at-home12 {
    background-image: url(../images/background/home12-cta-1.png);
}
.cta-home4.at-home13 {
    background-image: url(../images/background/home13-cta-1.png);
}

.cta-home5-style {
    border-radius: 12px 0 0 0;
}

.cta-banner-home7 {
    position: relative;
}
.cta-banner-home7:before {
    background-color: #f1fcfa;
    border-radius: 4px;
    content: "";
    height: 321px;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    z-index: -1;
}
@media (max-width: 767.98px) {
    .cta-banner-home7:before {
        width: 95%;
    }
}

.cta-home8 {
    background: linear-gradient(
        90deg,
        #f0efec -0.44%,
        rgba(251, 247, 237, 0.7) 101.75%
    );
    height: 500px;
}
@media (max-width: 991.98px) {
    .cta-home8 {
        height: auto;
    }
}

.cta-img-home8 {
    position: absolute;
    bottom: -115px;
}
.cta-img-home8.at-home7 {
    bottom: -90px;
}
.cta-img-home8.at-home12 {
    right: 0px;
}

.home8-cta-img {
    left: 0;
    position: absolute;
    width: 45%;
    top: 0;
}
@media (max-width: 991.98px) {
    .home8-cta-img {
        position: relative;
        width: 100%;
        margin-bottom: 30px;
    }
}

.home8-cta-img2 {
    right: 0;
    position: absolute;
    width: 45%;
    top: 0;
}
@media (max-width: 1199.98px) {
    .home8-cta-img2 {
        top: 22%;
    }
}
@media (max-width: 767.98px) {
    .home8-cta-img2 {
        left: 15%;
        position: relative;
        width: 60%;
        margin-bottom: 30px;
    }
}
@media (max-width: 575.98px) {
    .home8-cta-img2 {
        left: 5px;
        width: 96%;
    }
}

.home10-cta-img {
    right: 8%;
    top: 5%;
    z-index: 0;
}
@media (max-width: 1199.98px) {
    .home10-cta-img {
        right: 0;
        top: 15%;
    }
}
@media (max-width: 991.98px) {
    .home10-cta-img {
        bottom: 0;
        top: auto;
    }
}

.home11-cta-2 {
    background-image: url(../images/background/home11-cta-2.png);
}

.home11-cta-3 {
    background-image: url(../images/background/home11-cta-3.png);
    display: flex;
    align-items: center;
    height: 500px;
}
@media (max-width: 767.98px) {
    .home11-cta-3 {
        height: auto;
    }
}
.home11-cta-3.at-home13 {
    background-image: url(../images/background/home13-cta-1.png);
}
.home11-cta-3.at-home15 {
    background-image: inherit;
}
.home11-cta-3.at-home20 {
    background-color: #00cedc;
    background-image: inherit;
}

.home11-ctaimg-v3 {
    bottom: 0;
    position: absolute;
}
.home11-ctaimg-v3.at-home15 {
    z-index: 1;
}

.home13-ctaimg-v1 {
    position: absolute;
    top: -60px;
}

.home15-ctaimg-v2 {
    position: absolute;
    top: -100px;
    z-index: 0;
}
.home15-ctaimg-v2.at-home17 {
    right: 70px;
    top: 0;
    transform: rotate(55deg);
}
.home15-ctaimg-v2.at-home20 {
    margin-left: -40px;
    top: -30px;
    z-index: 0;
}

/*	Error Pages Styles  */
.error_page_content .erro_code {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 700;
    line-height: 289px;
    font-size: 200px;
}
@media (max-width: 575.98px) {
    .error_page_content .erro_code {
        font-size: 150px;
    }
}

/*	Iconbox Styles  */
.iconbox-style1 {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 3px;
    padding: 10px 10px 10px;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.iconbox-style1 .icon {
    color: #00cedc;
    display: inline-block;
    font-size: 20px;
    position: relative;
    z-index: 1;
}
.iconbox-style1 .icon:before {
    background-color: #fbf7ed;
    border-radius: 50%;
    bottom: -6px;
    content: "";
    height: 40px;
    position: absolute;
    right: -11px;
    width: 40px;
    z-index: -1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.iconbox-style1 .thumb img {
    max-height: 160px;
}
.iconbox-style1 .title {
    margin-bottom: 5px;
}
.iconbox-style1:hover {
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}
.iconbox-style1.contact-style {
    border: none;
    padding: 0;
}
.iconbox-style1.contact-style .details {
    padding-left: 35px;
}
.iconbox-style1.contact-style:hover {
    box-shadow: none;
}
.iconbox-style1.border-less {
    border: none;
}
.iconbox-style1.border-less:hover {
    box-shadow: none;
}
.iconbox-style1.at-home4 .icon {
    border-radius: 50%;
    -webkit-box-shadow: 0px 25px 70px rgba(1, 33, 58, 0.07);
    -moz-box-shadow: 0px 25px 70px rgba(1, 33, 58, 0.07);
    -o-box-shadow: 0px 25px 70px rgba(1, 33, 58, 0.07);
    box-shadow: 0px 25px 70px rgba(1, 33, 58, 0.07);
    display: inline-block;
    height: 110px;
    line-height: 120px;
    margin-bottom: 20px;
    width: 110px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.iconbox-style1.at-home4:hover {
    box-shadow: none;
}
.iconbox-style1.at-home4:hover .icon {
    background-color: #00cedc;
    box-shadow: none;
    color: #ffffff;
}
.iconbox-style1.at-home5:hover {
    box-shadow: none;
}
.iconbox-style1.at-home6 .icon {
    color: #cbefd2;
}
.iconbox-style1.at-home7 {
    border-radius: 0;
}
.iconbox-style1.at-home7:hover {
    border: 1px solid #222222;
    -webkit-box-shadow: 10px 10px 0px #ffede8;
    -moz-box-shadow: 10px 10px 0px #ffede8;
    -o-box-shadow: 10px 10px 0px #ffede8;
    box-shadow: 10px 10px 0px #ffede8;
}
.iconbox-style1.at-home11 .icon {
    background-color: #e5f0e3;
    border-radius: 50%;
    color: #325854;
    display: inline-block;
    font-size: 30px;
    height: 70px;
    line-height: 80px;
    margin-bottom: 20px;
    width: 70px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.iconbox-style1.at-home11:hover {
    box-shadow: none;
}
.iconbox-style1.at-home11:hover .icon {
    background-color: #325854;
    box-shadow: none;
    color: #e5f0e3;
}
.iconbox-style1.at-home11-v2 .icon:before {
    background-color: #f9fbfa;
}
.iconbox-style1.at-home11-v2:hover {
    background-color: #266464;
}
.iconbox-style1.at-home11-v2:hover .icon {
    color: #ffffff;
}
.iconbox-style1.at-home11-v2:hover .icon:before {
    background-color: rgba(255, 255, 255, 0.07);
}
.iconbox-style1.at-home11-v2:hover .text,
.iconbox-style1.at-home11-v2:hover .title {
    color: #ffffff;
}
.iconbox-style1.at-home12 .icon {
    background-color: transparent;
    border: 1px solid #e9e9e9;
    border-radius: 50%;
    display: inline-block;
    height: 110px;
    line-height: 120px;
    margin-bottom: 20px;
    width: 110px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.iconbox-style1.at-home12:hover {
    box-shadow: none;
}
.iconbox-style1.at-home12:hover .icon {
    background-color: #222222;
    box-shadow: none;
    color: #ffffff;
}
.iconbox-style1.at-home12-v2 {
    box-shadow: none;
}
.iconbox-style1.at-home12-v2:hover .icon:before {
    background-color: #eafac1;
}
.iconbox-style1.at-home13-v1 {
    box-shadow: none;
}
.iconbox-style1.at-home13-v1 .icon:before {
    display: none;
}
.iconbox-style1.at-home14-v1 {
    box-shadow: none;
}
.iconbox-style1.at-home14-v1 .icon:before {
    display: none;
}
.iconbox-style1.at-home14-v1:before {
    background-color: #222222;
    content: "";
    height: 3px;
    left: 50%;
    position: absolute;
    top: 0;
    width: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.iconbox-style1.at-home14-v1:hover:before {
    left: 0;
    width: 100%;
}
.iconbox-style1.at-home14-v2 .icon {
    background-color: #ffede8;
    border-radius: 50%;
    display: inline-block;
    height: 110px;
    line-height: 120px;
    margin-bottom: 20px;
    width: 110px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.iconbox-style1.at-home14-v2:hover {
    box-shadow: none;
}
.iconbox-style1.at-home14-v2:hover .icon {
    background-color: #222222;
    box-shadow: none;
    color: #ffffff;
}
.iconbox-style1.after_style {
    position: relative;
}
.iconbox-style1.after_style:before {
    background-color: #e9e9e9;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    right: -28%;
    width: 160px;
    top: 25%;
    z-index: 1;
}
@media (max-width: 1199.98px) {
    .iconbox-style1.after_style:before {
        display: none;
    }
}
.iconbox-style1.at-home15:hover {
    background-color: #168882;
}
.iconbox-style1.at-home15:hover .icon:before {
    background-color: rgba(255, 255, 255, 0.1);
}
.iconbox-style1.at-home15:hover .icon,
.iconbox-style1.at-home15:hover p,
.iconbox-style1.at-home15:hover .title {
    color: #ffffff;
}
.iconbox-style1.at-home17-v1 .icon {
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 50%;
    display: inline-block;
    height: 110px;
    line-height: 120px;
    margin-bottom: 20px;
    width: 110px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.iconbox-style1.at-home17-v1:hover {
    box-shadow: none;
}
.iconbox-style1.at-home17-v1:hover .icon {
    background-color: #222222;
    box-shadow: none;
    color: #ffffff;
}
.iconbox-style1.at-home17-v2 {
    background-color: #ffede8;
}
.iconbox-style1.at-home17-v2 .icon:before {
    background-color: #f9fbfa;
}
.iconbox-style1.at-home17-v2:hover {
    background-color: #222222;
}
.iconbox-style1.at-home17-v2:hover .icon {
    color: #ffffff;
}
.iconbox-style1.at-home17-v2:hover .icon:before {
    background-color: rgba(255, 255, 255, 0.07);
}
.iconbox-style1.at-home17-v2:hover .text,
.iconbox-style1.at-home17-v2:hover .title {
    color: #ffffff;
}
.iconbox-style1.at-home19:hover {
    background-color: #f1fcfa;
    border: 1px solid transparent;
    box-shadow: none;
}

.iconbox-small1 {
    background-color: #ffffff;
    border-radius: 4px;
    padding: 25px 55px 20px 35px;
    position: absolute;
    top: 130px;
    z-index: 1;
}
@media (max-width: 575.98px) {
    .iconbox-small1 {
        position: relative;
        top: 0;
    }
}
.iconbox-small1 .icon {
    background-color: #00cedc;
    border-radius: 50%;
    color: #ffffff;
    display: inline-block;
    font-size: 24px;
    height: 50px;
    left: -25px;
    line-height: 60px;
    position: absolute;
    text-align: center;
    top: -25px;
    width: 50px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.iconbox-small1:hover .icon {
    background-color: #1f4b3f;
}
.iconbox-small1.at-home1 {
    left: -45px;
}
@media (max-width: 1550px) {
    .iconbox-small1.at-home1 {
        left: -10px;
    }
}
@media (max-width: 1440px) {
    .iconbox-small1.at-home1 {
        left: 0;
    }
}

.iconbox-small2 {
    background-color: #ffffff;
    border-radius: 4px;
    padding: 25px 55px 20px 35px;
    position: absolute;
    right: -30px;
    top: 200px;
    z-index: 1;
}
@media (max-width: 991.98px) {
    .iconbox-small2 {
        right: 0;
    }
}
@media (max-width: 575.98px) {
    .iconbox-small2 {
        position: relative;
        top: 30px;
    }
}
.iconbox-small2 .icon {
    background-color: #00cedc;
    border-radius: 50%;
    color: #ffffff;
    display: inline-block;
    font-size: 24px;
    height: 50px;
    left: -25px;
    line-height: 60px;
    position: absolute;
    text-align: center;
    top: -25px;
    width: 50px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.iconbox-small2:hover .icon {
    background-color: #1f4b3f;
}

.iconbox-style2 {
    background-color: #ffffff;
    border-radius: 4px;
    margin-bottom: 30px;
    padding: 60px 35px 20px;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
@media (max-width: 991.98px) {
    .iconbox-style2 {
        padding: 60px 25px 20px;
    }
}
.iconbox-style2.active,
.iconbox-style2:hover {
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}
.iconbox-style2 .icon {
    margin-bottom: 25px;
}
.iconbox-style2 .title {
    margin-bottom: 12px;
}
.iconbox-style2 .text {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 400;
    margin-bottom: 25px;
}

.iconbox-style3 {
    background-color: #ffffff;
    border-radius: 4px;
    margin-bottom: 30px;
    padding: 60px 35px 20px;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
@media (max-width: 991.98px) {
    .iconbox-style3 {
        padding: 60px 25px 20px;
    }
}
.iconbox-style3.active,
.iconbox-style3:hover {
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}
.iconbox-style3 img {
    max-height: 150px;
}
.iconbox-style3 .icon {
    margin-bottom: 25px;
}
.iconbox-style3 .title {
    margin-bottom: 12px;
}
.iconbox-style3 .text {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 400;
    margin-bottom: 25px;
}

.iconbox-style4 {
    background-color: #ffffff;
    border-radius: 4px;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    margin-bottom: 30px;
    padding: 30px;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.iconbox-style4 .icon {
    background-color: rgba(91, 187, 123, 0.07);
    border-radius: 50%;
    color: var(--headings-color);
    display: block;
    font-size: 30px;
    height: 70px;
    line-height: 75px;
    margin-bottom: 15px;
    text-align: center;
    width: 70px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.iconbox-style4 .title {
    margin-bottom: 5px;
}
.iconbox-style4:hover {
    background-color: #00cedc;
}
.iconbox-style4:hover .title,
.iconbox-style4:hover .text,
.iconbox-style4:hover .icon {
    color: #ffffff;
}
.iconbox-style4:hover .icon {
    background-color: rgba(255, 255, 255, 0.1);
}

.iconbox-style5 {
    background-color: #ffffff;
    bottom: 20px;
    border-radius: 4px;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    max-width: 210px;
    padding: 20px;
    position: absolute;
    right: -50px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
@media (max-width: 991.98px) {
    .iconbox-style5 {
        right: -10px;
    }
}
.iconbox-style5 .icon {
    background-color: #00cedc;
    border-radius: 50%;
    color: #ffffff;
    display: block;
    font-size: 24px;
    height: 60px;
    line-height: 65px;
    text-align: center;
    width: 60px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.iconbox-style5 .title {
    margin-bottom: 5px;
}
.iconbox-style5:hover {
    background-color: #00cedc;
}
.iconbox-style5:hover .title,
.iconbox-style5:hover .text,
.iconbox-style5:hover .icon {
    color: #ffffff;
}
.iconbox-style5:hover .icon {
    background-color: rgba(255, 255, 255, 0.1);
}

.iconbox-style6 {
    border: 1px solid #e9e9e9;
    border-radius: 4px;
    margin-bottom: 30px;
    padding: 45px 30px 20px;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.iconbox-style6 .title {
    color: #00cedc;
}
.iconbox-style6 .icon {
    color: #00cedc;
    font-size: 36px;
    position: absolute;
    right: 30px;
    top: 17px;
}
.iconbox-style6 .iconbox-text {
    font-family: var(--title-font-family);
    font-weight: 400;
    font-size: 13px;
}
.iconbox-style6:hover {
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}

.iconbox-style7 {
    background-color: #ffffff;
    bottom: 20px;
    border-radius: 4px;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    max-width: 210px;
    padding: 20px;
    position: absolute;
    right: -50px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
@media (max-width: 991.98px) {
    .iconbox-style7 {
        right: -10px;
    }
}
.iconbox-style7 .icon {
    background-color: #222222;
    border-radius: 50%;
    color: #ffffff;
    display: block;
    font-size: 24px;
    height: 60px;
    line-height: 65px;
    text-align: center;
    width: 60px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.iconbox-style7 .title {
    margin-bottom: 5px;
}
.iconbox-style7:hover {
    background-color: #00cedc;
}
.iconbox-style7:hover .title,
.iconbox-style7:hover .text,
.iconbox-style7:hover .icon {
    color: #ffffff;
}
.iconbox-style7:hover .icon {
    background-color: rgba(255, 255, 255, 0.1);
}

.iconbox-style9 {
    background-color: #ffffff;
    border-radius: 4px;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    position: relative;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.iconbox-style9 .icon {
    color: #1f4b3f;
    display: block;
    font-size: 40px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.apartment-category {
    background-color: #f7f7f7;
    border: 1px solid #f7f7f7;
    border-radius: 70px;
    margin-bottom: 30px;
    padding: 10px 30px 10px 10px;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.apartment-category .icon {
    background-color: #ffffff;
    border-radius: 50%;
    color: var(--headings-color);
    font-size: 20px;
    height: 50px;
    line-height: 55px;
    text-align: center;
    width: 50px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.apartment-category .title {
    margin-left: 12px;
}
.apartment-category:hover {
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}
.apartment-category:hover .icon {
    background-color: #00cedc;
    color: #ffffff;
}

.feature-style1 {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.feature-style1 .feature-img {
    position: relative;
}
.feature-style1 img {
    transform: scale(1);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.feature-style1 .feature-content {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.feature-style1 .title,
.feature-style1 .text,
.feature-style1 .ud-btn2 {
    color: #ffffff;
}
.feature-style1 .ud-btn2 {
    font-size: 14px;
    font-weight: 400;
}
.feature-style1 .top-area {
    padding-left: 30px;
    position: absolute;
    top: 35px;
}
.feature-style1:hover .feature-content {
    background-color: rgba(34, 34, 34, 0.6);
}
.feature-style1:hover img {
    transform: scale(1.1) rotate(-1deg);
}
.feature-style1:hover.at-home13 .feature-content {
    background-color: transparent;
}
.feature-style1.at-home13 .feature-content .review {
    position: absolute;
    right: 30px;
    top: 40px;
}

.feature-style2 {
    position: relative;
}
.feature-style2 .feature-img {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.feature-style2 img {
    transform: scale(1);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.feature-style2 .title,
.feature-style2 .text {
    color: var(--headings-color);
    font-family: var(--title-font-family);
}
.feature-style2:hover img {
    transform: scale(1.1) rotate(-1deg);
}

.feature-style3 {
    position: relative;
}
.feature-style3 .feature-img {
    overflow: hidden;
    position: relative;
}
.feature-style3 img {
    transform: scale(1);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.feature-style3 .feature-content {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.feature-style3:hover img {
    transform: scale(1.1) rotate(-1deg);
}

.why-chose-list {
    position: relative;
}
.why-chose-list .list-one {
    position: relative;
}
.why-chose-list .list-one .list-icon {
    color: #1f4b3f;
    display: block;
    font-size: 30px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.why-chose-list.style2 .list-one:hover .list-icon {
    background-color: rgba(91, 187, 123, 0.6);
    color: #ffffff;
}
.why-chose-list.style2 .list-icon {
    color: var(--headings-color);
}
.why-chose-list.style3 .list-icon {
    background-color: #f7f7f7;
}
.why-chose-list.style3 .list-icon {
    color: var(--headings-color);
}
.why-chose-list.at-home5 .list-icon:after {
    background-color: #fbf7ed;
    border-radius: 50%;
    content: "";
    height: 30px;
    position: absolute;
    width: 30px;
    left: 10px;
    z-index: -1;
    top: 10px;
}

.home9-city-style {
    position: relative;
    padding: 20px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.home9-city-style:hover {
    border-radius: 4px;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}

/*	All Type Of Forms Styles  */
.form-style1 {
    position: relative;
}
.form-style1 .form-control {
    border-radius: 8px;
    border: 1px solid #e9e9e9;
    box-shadow: none;
    font-size: 15px;
    height: 40px;
    outline: none;
    padding-left: 15px;
}
.form-style1 .form-control::placeholder {
    color: #697488;
    font-family: var(--title-font-family);
}
.form-style1 .form-control.active,
.form-style1 .form-control:focus {
    border: 2px solid #1f4b3f;
    color: var(--headings-color);
}
.form-style1 .form-label {
    font-family: var(--title-font-family);
}
.form-style1 .custom_checkbox {
    line-height: 26px;
}
.form-style1 .custom_checkbox .checkmark {
    top: 6px;
}

.form-style2 {
    position: relative;
}
.form-style2 .form-control {
    border-radius: 8px;
    border: 1px solid #e9e9e9;
    box-shadow: none;
    height: 50px;
    outline: none;
    padding-left: 15px;
}
.form-style2 .form-control:placeholder {
    color: #697488;
    font-family: var(--title-font-family);
}
.form-style2 .form-control.active,
.form-style2 .form-control:focus {
    border: 2px solid var(--headings-color);
}
.form-style2 .form-label {
    font-family: var(--title-font-family);
}

textarea {
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    height: auto;
    width: 100%;
    padding: 25px 20px;
}

.form-control {
    border-radius: 8px;
    border: 2px solid transparent;
    box-shadow: none;
    height: 55px;
    outline: 1px solid #e9e9e9;
    padding-left: 20px;
}
.form-control:placeholder {
    color: #697488;
    font-family: var(--title-font-family);
}
.form-control:focus {
    border: 2px solid var(--headings-color);
    box-shadow: none;
}

.bootselect-multiselect {
    position: relative;
}
.bootselect-multiselect
    .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
        .input-group-btn
    ) {
    width: 100%;
}
.bootselect-multiselect .btn,
.bootselect-multiselect .btn-light {
    border-radius: 4px;
    height: 55px;
    line-height: 40px;
    overflow: hidden;
    padding-left: 15px;
    width: 100%;
}
.bootselect-multiselect .btn:focus,
.bootselect-multiselect .btn-light:focus {
    border: 2px solid var(--headings-color);
    outline: none;
    outline-offset: initial;
}
.bootselect-multiselect .btn.dropdown-toggle,
.bootselect-multiselect .btn-light.dropdown-toggle {
    width: 100%;
}
.bootselect-multiselect .btn.dropdown-toggle:focus,
.bootselect-multiselect .btn-light.dropdown-toggle:focus {
    box-shadow: none;
    outline: none !important;
}
.bootselect-multiselect .bootstrap-select.dropdown-toggle.bs-placeholder {
    color: var(--headings-color);
}
.bootselect-multiselect .dropdown-menu {
    padding: 10px 15px;
}
.bootselect-multiselect .dropdown-menu .inner {
    padding: 10px;
}
.bootselect-multiselect .dropdown-menu .dropdown-item {
    padding: 10px;
}
.bootselect-multiselect .dropdown-menu .dropdown-item.active,
.bootselect-multiselect .dropdown-menu .dropdown-item:hover,
.bootselect-multiselect .dropdown-menu .dropdown-item:focus {
    background-color: rgba(91, 187, 123, 0.07);
    color: var(--headings-color);
    outline: none;
}
.bootselect-multiselect .btn-light {
    background-color: #ffffff;
}
.bootselect-multiselect .btn-light:hover,
.bootselect-multiselect .btn-light:focus {
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    outline: none;
}
.bootselect-multiselect .btn-light::placeholder {
    color: var(--headings-color);
}

.inquiry-form .form-control {
    font-size: 14px;
    font-family: var(--title-font-family);
    font-weight: 400;
}
.inquiry-form .dropdown-menu {
    padding: 0;
}

.agent-single-form {
    margin-top: -150px;
}
@media (max-width: 991.98px) {
    .agent-single-form {
        margin-top: 30px;
    }
}

.popup-search-field {
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    display: flex;
    height: 100px;
}
.popup-search-field .form-control {
    border: none;
}
.popup-search-field .form-control:focus {
    border: none;
    outline: none;
}
.popup-search-field input::placeholder {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 400;
}
.popup-search-field.search_area .form-control {
    padding-left: 57px;
    outline: none;
}
.popup-search-field.search_area label {
    color: var(--headings-color);
    font-size: 16px;
    left: 30px;
    right: auto;
    top: initial;
}
.popup-search-field button {
    position: absolute;
    right: 20px;
}

.search_widgets {
    position: relative;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}
.search_widgets input::placeholder {
    color: var(--headings-color);
    font-size: 15px;
    font-weight: 400;
}
.search_widgets .search-btn {
    color: var(--headings-color);
    position: absolute;
    right: 10px;
    top: 8px;
}

/*	Gallery Styles  */
.gallery-item {
    align-items: center;
    display: flex;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.gallery-item .del-edit {
    left: 0;
    margin: 0 auto;
    right: 0;
    transform: scale(0);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    visibility: 0;
}
.gallery-item .icon {
    background-color: #ffffff;
    color: #1f4b3f;
}
.gallery-item:hover .del-edit {
    opacity: 1;
    transform: scale(1);
}

/*  Packages And Pricing Tables  */
.pricing_table_switch_slide {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(91, 187, 123, 0.1);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.pricing_table_switch_slide:before {
    bottom: 5px;
    content: "";
    height: 20px;
    left: 5px;
    position: absolute;
    width: 20px;
    background-color: white;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.pricing_table_switch_slide.round {
    border-radius: 30px;
}
.pricing_table_switch_slide.round:before {
    border-radius: 50%;
}

.pricing_packages_top .switch input:checked + .pricing_table_switch_slide {
    background-color: #00cedc;
}

.pricing_packages_top
    .toggle-btn
    .switch
    input:focus
    + .pricing_table_switch_slide {
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}

.pricing_packages_top
    .switch
    input:checked
    + .pricing_table_switch_slide:before {
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
}

.pricing_packages_top .toggle-btn input,
.pricing_packages_top .toggle-btn label {
    display: inline-block;
    vertical-align: middle;
}
.pricing_packages_top .toggle-btn .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}
.pricing_packages_top .toggle-btn .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.pricing_packages_top .pricing_save1,
.pricing_packages_top .pricing_save2 {
    margin: 12px;
}
.pricing_packages_top .pricing_save3 {
    background-color: #ffede8;
    border-radius: 60px;
    color: #00cedc;
    font-family: var(--body-font-family);
    font-size: 13px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0em;
    padding: 8px 17px;
}

.pricing_packages {
    border: 1px solid transparent;
    margin-bottom: 30px;
    padding: 50px 30px;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
@media (max-width: 991.98px) {
    .pricing_packages {
        padding: 40px 30px;
    }
}
.pricing_packages.active,
.pricing_packages .heading {
    position: relative;
}
.pricing_packages.active .btn-dark-border {
    background-color: #222222;
    border: 2px solid #222222;
    color: #ffffff;
}
.pricing_packages.active .btn-dark-border:before {
    background-color: #222222;
}
.pricing_packages.active .btn-thm-border {
    background-color: #00cedc;
    border: 2px solid #00cedc;
    color: #ffffff;
}
.pricing_packages.active .btn-thm-border:hover {
    background-color: #00cedc;
    border: 2px solid #00cedc;
}
.pricing_packages.active.at-home2 .ud-btn {
    border-radius: 90px;
    background-color: #00cedc;
    color: #ffffff;
}
.pricing_packages.active.at-home2 .ud-btn:hover {
    background-color: #00cedc;
    border: 2px solid #00cedc;
}
.pricing_packages .price-icon {
    position: absolute;
    right: 0;
    top: -10px;
}
.pricing_packages .text1,
.pricing_packages .text2 {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 0;
}
.pricing_packages .text1 small,
.pricing_packages .text2 small {
    color: var(--body-text-color);
    font-family: var(--title-font-family);
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 28px;
    text-align: center;
}
.pricing_packages .pricing-list li {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 28px;
}
.pricing_packages.active,
.pricing_packages:hover {
    border: 1px solid #e9e9e9;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}
.pricing_packages.at-home2 .ud-btn {
    border-radius: 90px;
}

/*	Testimonials Styles  */
.testimonial-style1 {
    background-color: #ffffff;
    border-radius: 4px;
    margin-bottom: 15px;
    padding: 45px 40px 30px;
}
.testimonial-style1 .testimonial-content {
    border-bottom: 1px solid #e9e9e9;
    margin-bottom: 20px;
    padding-bottom: 30px;
}
.testimonial-style1 .icon {
    color: #f1fcfa;
    font-size: 36px;
    position: absolute;
    right: 60px;
    top: 30px;
}
.testimonial-style1 .title {
    margin-bottom: 25px;
}
.testimonial-style1 .t_content {
    line-height: 35px;
}
.testimonial-style1.at-home19 {
    background-color: #333333;
}
.testimonial-style1.at-home19 .icon {
    color: #ffffff;
}
.testimonial-style1.at-home19 .testimonial-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-style2 {
    position: relative;
}
.testimonial-style2 .tab-content {
    height: auto;
}
.testimonial-style2 .testi-text {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 700;
    font-size: 28px;
    line-height: 45px;
    margin-bottom: 40px;
}
.testimonial-style2 .icon {
    color: #00cedc;
    font-size: 60px;
    margin-bottom: 45px;
}
.testimonial-style2 .design {
    font-family: var(--title-font-family);
    font-size: 13px;
    margin-bottom: 30px;
}
@media (max-width: 575.98px) {
    .testimonial-style2 .nav-link {
        padding-right: 0;
    }
}
@media (max-width: 575.98px) {
    .testimonial-style2 .nav-link img {
        max-height: 50px;
    }
}
@media (max-width: 339px) {
    .testimonial-style2 .nav-link img {
        max-width: 45px;
    }
}
.testimonial-style2 .nav-link.active {
    background-color: transparent;
}
.testimonial-style2 .nav-link.active img {
    border-radius: 50%;
    outline: 2px solid #00cedc;
    outline-offset: 10px;
}
.testimonial-style2.at-about2 .testi-text {
    margin: 0 auto 55px;
    max-width: 922px;
}
@media (max-width: 991.98px) {
    .testimonial-style2.at-about2 .testi-text {
        font-size: 20px;
        line-height: inherit;
    }
}
.testimonial-style2.at-home12 .icon {
    color: #f0efec;
}
.testimonial-style2.at-home12 .nav-link.active {
    background-color: transparent;
}
.testimonial-style2.at-home12 .nav-link.active img {
    border-radius: 50%;
    outline: 2px solid #222222;
    outline-offset: 10px;
}

.testimonial-style3 {
    background-color: #ffffff;
    outline: 1px solid #e9e9e9;
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
    padding: 60px 60px 55px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
@media (max-width: 991.98px) {
    .testimonial-style3 {
        padding: 40px 30px 35px;
    }
}
.testimonial-style3 .icon {
    color: #f7f7f7;
    font-size: 100px;
    line-height: initial;
    position: absolute;
    right: 60px;
    top: 15px;
}
.testimonial-style3 .text {
    font-size: 15px;
}
.testimonial-style3:before {
    background-color: #00cedc;
    bottom: 0;
    content: "";
    height: 12px;
    position: absolute;
    left: 50%;
    width: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.testimonial-style3:hover:before {
    left: 0;
    right: 0;
    width: 100%;
}

.testimonial-style4 {
    padding: 55px 0 30px 70px;
}
@media (max-width: 1399.98px) {
    .testimonial-style4 {
        padding: 25px 0 30px 40px;
    }
}
@media (max-width: 991.98px) {
    .testimonial-style4 {
        padding: 25px 0 30px 0;
    }
}
.testimonial-style4 .title {
    line-height: 35px;
}
.testimonial-style4 .desig {
    color: #697488;
    font-family: var(--title-font-family);
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0em;
}

/*	Team Styles  */
.team-style1 {
    position: relative;
}
.team-style1 .team-img {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.team-style1 img {
    transform: scale(1);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.team-style1:hover img {
    transform: scale(1.1) rotate(-1deg);
}

.agency-style1 {
    position: relative;
}
.agency-style1 .tag {
    background-color: #00cedc;
    border-radius: 6px;
    color: #ffffff;
    font-family: var(--title-font-family);
    font-weight: 600;
    font-size: 12px;
    left: 20px;
    padding: 0 6px;
    position: absolute;
    top: 20px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.agency-style1:hover .tag {
    transform: translateY(30px);
    opacity: 0;
}

/* .freelancer-style1 {
    background-color: #ffffff;
    border-radius: 4px;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    padding: 30px;
    position: relative;
    width: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.freelancer-style1 .meta {
    color: var(--headings-color);
}
.freelancer-style1.about-page-style {
    margin-left: 280px;
    margin-top: -270px;
    z-index: 1;
    max-width: 329px;
}
@media (max-width: 1199.98px) {
    .freelancer-style1.about-page-style {
        margin-left: 210px;
    }
}
@media (max-width: 767.98px) {
    .freelancer-style1.about-page-style {
        margin-left: 0;
        margin-top: 0;
    }
}
.freelancer-style1.service-single {
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 4px;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    max-width: inherit;
}
.freelancer-style1.hover-box-shadow {
    box-shadow: none;
}
.freelancer-style1.hover-box-shadow:hover {
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}
.freelancer-style1.at-home7:hover {
    border: 1px solid #222222;
    -webkit-box-shadow: 10px 10px 0px #ffede8;
    -moz-box-shadow: 10px 10px 0px #ffede8;
    -o-box-shadow: 10px 10px 0px #ffede8;
    box-shadow: 10px 10px 0px #ffede8;
} */

.tag {
    background-color: #ffede8;
    border-radius: 60px;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
    display: inline-block;
    padding: 5px 17px;
    font-style: normal;
    font-size: 13px;
    line-height: 28px;
}

.online,
.online2,
.online-badge2,
.online-badge,
.online-badges {
    background-color: #28a745;
    border: 2px solid #ffffff;
    border-radius: 50%;
    height: 16px;
    position: absolute;
    right: 0;
    top: 8px;
    width: 16px;
}

.online2 {
    right: 10px;
}

.online-badge,
.online-badges {
    right: 3px;
    top: -9px;
    height: 9px;
    width: 9px;
}
@media (max-width: 575.98px) {
    .online-badge,
    .online-badges {
        right: 0;
    }
}

.online-badges {
    top: 0;
}

.online-badge2 {
    height: 9px;
    right: 0;
    width: 9px;
}

@media (max-width: 575.98px) {
    .freelancer-single-style .online {
        top: -30px;
    }
}

.job-list-style1 {
    background-color: #ffffff;
    border-radius: 4px;
    margin-bottom: 30px;
    padding: 30px;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.job-list-style1 .fav-icon {
    background-color: #ffffff;
    border-radius: 50%;
    color: #00cedc;
    font-size: 20px;
    height: 36px;
    line-height: 45px;
    position: absolute;
    right: 20px;
    text-align: center;
    top: 20px;
    width: 36px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.job-list-style1:hover {
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}
.job-list-style1:hover .fav-icon {
    background-color: #f1fcfa;
}
.job-list-style1.at-home7 {
    border-radius: 8px;
}
.job-list-style1.at-home7:hover {
    border: 1px solid #222222;
    -webkit-box-shadow: 10px 10px 0px #ffede8;
    -moz-box-shadow: 10px 10px 0px #ffede8;
    -o-box-shadow: 10px 10px 0px #ffede8;
    box-shadow: 10px 10px 0px #ffede8;
}
.job-list-style1.at-dashboard:hover {
    box-shadow: none;
}

/*  Different Styles Of Animations  */
.scale-infini {
    animation-name: myanimation;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

@keyframes myanimation {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -o-transform: scale(2);
        -ms-transform: scale(2);
        transform: scale(2);
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}
.bounce-y {
    transform: translatey(0px);
    animation: bounceY 6s ease-in-out infinite;
}

@keyframes bounceY {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-20px);
    }
    100% {
        transform: translatey(0px);
    }
}
.bounce-x {
    transform: translatey(0px);
    animation: bounceX 6s ease-in-out infinite;
}

@keyframes bounceX {
    0% {
        transform: translatex(0px);
    }
    50% {
        transform: translatex(-20px);
    }
    100% {
        transform: translatex(0px);
    }
}
.spin-right {
    animation: spin-right 14s infinite linear;
}

@keyframes spin-right {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.spin-left {
    animation: spin-left 14s infinite linear;
}

@keyframes spin-left {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}
/*	Different Accordion Styles	*/
.accordion-style1 {
    position: relative;
    margin-bottom: 30px;
}
.accordion-style1 .accordion-item {
    border: none;
    border-radius: 4px;
    overflow: hidden;
}
.accordion-style1 .accordion-header {
    border: none;
}
.accordion-style1 .accordion-button {
    background-color: transparent;
    box-shadow: none;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
    font-size: 17px;
    line-height: 50px;
    padding-bottom: 4px;
    padding-left: 40px;
    padding-right: 30px;
    padding: 30px 30px 4px 40px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.accordion-style1 .accordion-button:before {
    color: #041e42;
    content: "+";
    font-family: var(--icon-font-family);
    font-size: 16px;
    font-weight: bold;
    right: 40px;
    position: absolute;
}
.accordion-style1 .accordion-button:after {
    display: none;
}
.accordion-style1 .accordion-button.collapsed:before {
    content: "+";
}
.accordion-style1 .accordion-button:not(.collapsed) {
    background-color: #f1fcfa;
}
.accordion-style1 .accordion-button:not(.collapsed):before {
    content: "";
}
.accordion-style1 .accordion-body {
    background-color: #f1fcfa;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 400;
    padding: 15px 30px 35px 40px;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
}
.accordion-style1.faq-page .accordion-body {
    max-width: initial;
}
.accordion-style1.style2 .accordion-item {
    border: none;
    padding: 0;
}
.accordion-style1.style2 .accordion-item.active {
    box-shadow: none;
}
.accordion-style1.style2 .accordion-header {
    border: none;
    border-bottom: 1px solid #e9e9e9;
}
.accordion-style1.style2 .accordion-body {
    max-width: initial;
    padding: 0;
}

.feature-accordion {
    position: relative;
}
.feature-accordion .accordion-button {
    background-color: transparent;
    box-shadow: none;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
    outline: none;
}

.agent-single-accordion .accordion-button {
    background-color: transparent;
    box-shadow: none;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 600;
    font-size: 14px;
    text-decoration-line: underline;
}
.agent-single-accordion .accordion-button:after {
    display: none;
}

.accordion-style2 {
    position: relative;
    margin-bottom: 30px;
}
.accordion-style2 .accordion-item {
    padding: 0;
}
.accordion-style2 .accordion-item.active .accordion-button:before {
    content: "";
}
.accordion-style2 .accordion-header {
    border: none;
}
.accordion-style2 .accordion-button {
    background-color: transparent;
    box-shadow: none;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
    font-size: 17px;
    padding-left: 0;
    padding-bottom: 0;
    padding-top: 0;
}
.accordion-style2 .accordion-button:before {
    color: #041e42;
    content: "";
    font-family: var(--icon-font-family);
    font-size: 14px;
    font-weight: bold;
    right: 10px;
    position: absolute;
}
.accordion-style2 .accordion-button:after {
    display: none;
}
.accordion-style2 .accordion-body {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 400;
    padding: 20px 0 0;
}

/*	Different Styles of Alart	*/
.message-alart-style1 {
    position: relative;
}
.message-alart-style1 .alert {
    border-radius: 4px;
    font-family: var(--title-font-family);
    font-weight: 500;
    padding: 23px 30px;
    position: relative;
}
.message-alart-style1 .btn-close {
    cursor: pointer;
    right: 12px;
    top: 5px;
    font-size: 16px;
    opacity: 1;
    background: transparent;
}
.message-alart-style1 .alart_style_one {
    background-color: rgba(205, 233, 246, 0.5);
    color: #4780aa;
}
.message-alart-style1 .alart_style_one .btn-close {
    color: #4780aa;
}
.message-alart-style1 .alart_style_two {
    background-color: rgba(247, 243, 215, 0.5);
    color: #927238;
}
.message-alart-style1 .alart_style_two .btn-close {
    color: #927238;
}
.message-alart-style1 .alart_style_three {
    background-color: rgba(236, 200, 197, 0.5);
    color: #ab3331;
}
.message-alart-style1 .alart_style_three .btn-close {
    color: #ab3331;
}
.message-alart-style1 .alart_style_four {
    background-color: rgba(222, 242, 215, 0.5);
    color: #5b7052;
}
.message-alart-style1 .alart_style_four .btn-close {
    color: #5b7052;
}

.search-modal .modal-header {
    border: none;
    padding: 30px 30px 0;
}
.search-modal .btn-close {
    background: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    height: 40px;
    opacity: 1;
    padding: 0;
    text-align: center;
    width: 40px;
}
.search-modal .btn-close:focus {
    box-shadow: none;
    outline: none;
}
.search-modal .modal-content {
    background-color: transparent;
    border: none;
}
.search-modal .modal-body {
    padding: 15px 30px 30px;
}

.log-reg-form .hr_content {
    overflow: hidden;
    position: relative;
}
.log-reg-form .hr_top_text {
    background-color: #ffffff;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-size: 16px;
    height: 40px;
    left: 0;
    letter-spacing: 0em;
    line-height: 40px;
    margin: 0 auto;
    right: 0;
    text-align: center;
    top: -5px;
    width: 40px;
    position: absolute;
}

.modal-backdrop {
    z-index: 0;
}

/*	blockquote Styles	*/
.blockquote-style1 {
    background-color: #ffede8;
    border-left: 3px solid var(--headings-color);
    padding: 45px 60px 20px;
    position: relative;
}
.blockquote-style1 .fst-italic {
    max-width: 645px;
    width: 100%;
}

/*	All kind Of btns Styles  */
.ud-btn {
    /* width: 100%; */
    border-radius: 4px;
    display: inline-block;
    font-family: var(--title-font-family);
    font-weight: 700;
    font-size: 15px;
    font-style: normal;
    letter-spacing: 0em;
    padding: 5px 10px;
    position: relative;
    overflow: hidden;
    text-align: center;
    z-index: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.ud-btn i {
    margin-left: 10px;
    font-size: 16px;
    transform: rotate(-45deg);
}
.ud-btn:hover,
.ud-btn:focus,
.ud-btn:active {
    outline: none;
    box-shadow: none;
}

@media (max-width: 767.98px) {
    .ud-btn {
        padding: 13px 25px !important;
    }
}

@media (max-width: 339px) {
    .ud-btn {
        padding: 13px 25px;
    }
}

.ud-btn2 {
    font-family: var(--title-font-family);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.ud-btn2 i {
    margin-left: 10px;
    font-size: 16px;
}
.ud-btn2:hover {
    outline: none;
}

.ud-btn3 {
    font-family: var(--title-font-family);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.ud-btn3 i {
    margin-left: 10px;
    font-size: 16px;
    transform: rotate(-45deg);
}
.ud-btn3:hover {
    outline: none;
}

.btn-thm {
    background-color: #fff;
    border: 2px solid #1f1f1f;
    color: #000000;
}

.btn-dark {
    background-color: var(--headings-color);
    border: 1px solid var(--headings-color);
    color: #ffffff;
}

.double-border {
    border-width: 2px !important;
}
.double-border:hover {
    border-width: 2px;
}

.ud-btn:before,
.btn-gray:before,
.btn-dark:before,
.btn-thm:before,
.btn-light-thm:before,
.btn-light-white:before,
.btn-thm2:before,
.btn-home3:before,
.btn-thm3:before,
.btn-thm4:before,
.btn-thm-border:before,
.btn-dark-border:before,
.btn-white:before,
.btn-light-gray:before,
.btn-transparent:before,
.btn-transparent2:before {
    background-color: #00cedc;
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    width: 0;
    z-index: -1;
    -webkit-transform: skew(50deg);
    -moz-transform: skew(50deg);
    -o-transform: skew(50deg);
    transform: skew(50deg);
    -webkit-transition: width 0.6s;
    -moz-transition: width 0.6s;
    -o-transition: width 0.6s;
    transition: width 0.6s;
    transform-origin: top left;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.ud-btn:hover,
.btn-gray:hover,
.btn-dark:hover,
.btn-thm:hover,
.btn-light-thm:hover,
.btn-light-white:hover,
.btn-thm2:hover,
.btn-home3:hover,
.btn-thm3:hover,
.btn-thm4:hover,
.btn-thm-border:hover,
.btn-dark-border:hover,
.btn-white:hover,
.btn-light-gray:hover,
.btn-transparent:hover,
.btn-transparent2:hover {
    color: #ffffff;
}
.ud-btn:hover:before,
.btn-gray:hover:before,
.btn-dark:hover:before,
.btn-thm:hover:before,
.btn-light-thm:hover:before,
.btn-light-white:hover:before,
.btn-thm2:hover:before,
.btn-home3:hover:before,
.btn-thm3:hover:before,
.btn-thm4:hover:before,
.btn-thm-border:hover:before,
.btn-dark-border:hover:before,
.btn-white:hover:before,
.btn-light-gray:hover:before,
.btn-transparent:hover:before,
.btn-transparent2:hover:before {
    height: 100%;
    width: 200%;
}

.btn-gray {
    background-color: #f7f7f7;
    border: 1px solid transparent;
    color: var(--headings-color);
    font-size: 13px;
    font-weight: 400;
    height: 50px;
    padding: 10px 30px;
}

.btn-dark:hover {
    background-color: #00cedc;
    border: 1px solid #00cedc;
}

.btn-thm-border {
    background-color: #ffffff;
    border: 2px solid #00cedc;
    color: #000000;
}
.btn-thm-border:hover {
    background-color: #00cedc;
    border: 2px solid #00cedc;
}

.btn-dark-border {
    background-color: #ffffff;
    border: 2px solid #222222;
    color: #222222;
}
.btn-dark-border:hover {
    background-color: #222222;
    border: 2px solid #222222;
}
.btn-dark-border:hover:before {
    background-color: #222222;
}

.btn-thm:hover {
    border: 2px solid #1f1f1f;
}
.btn-thm:hover:before {
    background-color: #1f1f1f;
}

.btn-light-thm {
    background-color: rgba(91, 187, 123, 0.1);
    color: #00cedc;
}

.btn-light-white {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.btn-thm2 {
    background-color: #1f4b3f;
    border: none;
    color: #ffffff;
}
.btn-thm2:hover {
    background-color: #00cedc;
    border-color: #1f4b3f;
}

.btn-home3 {
    background-color: #397e62;
    border: 1px solid #397e62;
    color: #ffffff;
}

.btn-thm3 {
    background-color: #ffffff;
    border: 1px solid #00cedc;
    color: #00cedc;
}

.btn-thm4 {
    background-color: #266464;
    color: #ffffff;
}

.btn-white,
.btn-white2 {
    background-color: #ffffff;
    border: 2px solid #ffffff;
}
.btn-white:hover,
.btn-white2:hover {
    border: 2px solid #00cedc;
}

.btn-white2 {
    border: 2px solid var(--headings-color);
}
.btn-white2:before {
    background-color: #222222;
}
.btn-white2:hover {
    border: 2px solid #222222;
}

.btn-light-gray,
.btn-transparent {
    background-color: #f7f7f7;
    border: 2px solid var(--headings-color);
}
.btn-light-gray:hover,
.btn-transparent:hover {
    border: 2px solid #00cedc;
}

.btn-transparent,
.btn-transparent2 {
    background-color: transparent;
}

.btn-transparent2 {
    border: 2px solid #ffffff;
    color: #ffffff;
}
.btn-transparent2:hover,
.btn-transparent2:focus,
.btn-transparent2:active {
    border: 2px solid #ffffff;
    color: #00cedc;
}
.btn-transparent2:hover:before,
.btn-transparent2:focus:before,
.btn-transparent2:active:before {
    background-color: #ffffff;
}

.add-joining {
    font-size: 15px;
    font-family: var(--title-font-family);
    font-weight: 500;
    height: 40px;
    padding: 5px 30px;
}
.add-joining:hover {
    color: #ffffff;
}
.add-joining.at-home10 {
    border-width: 2px;
}
.add-joining.at-home10:hover {
    border-width: 2px;
}

.menu-btn {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}
.menu-btn:hover {
    background-color: #00cedc;
    border: 1px solid #00cedc;
}

.search-modal .btn-google,
.search-modal .btn-fb,
.search-modal .btn-apple {
    padding-left: 38px;
}
.search-modal .btn-google i,
.search-modal .btn-fb i,
.search-modal .btn-apple i {
    font-size: 14px;
    margin-left: 0;
    left: 18px;
    transform: rotate(0deg);
    position: absolute;
    top: 12px;
}

.btn-fb {
    background-color: #ffffff;
    border: 1px solid #3a77ea;
    color: #3a77ea;
}
.btn-fb:hover {
    border-color: #00cedc;
}

.btn-google {
    background-color: #ffffff;
    border: 1px solid #d93025;
    color: #d93025;
}
.btn-google:hover {
    border-color: #00cedc;
}

.btn-apple {
    background-color: #ffffff;
    border: 1px solid #041e42;
    color: #041e42;
}
.btn-apple:hover {
    border-color: #00cedc;
}

.radio-element {
    position: relative;
}
.radio-element .form-check-input {
    border: 1px solid #1f4b3f;
    height: 16px;
    margin-top: 0;
    width: 16px;
}
.radio-element .form-check-input:focus {
    border: 1px solid #1f4b3f;
    box-shadow: none;
    outline: none;
}
.radio-element .form-check-input:checked {
    background-color: #008992;
}
.radio-element .form-check-label {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 400;
    font-size: 15px;
    padding-left: 10px;
}

.right-tags {
    color: var(--body-text-color);
    font-family: var(--title-font-family);
    font-weight: 400;
    font-size: 15px;
    position: absolute;
    right: 0;
}

.checkbox-style1 {
    position: relative;
}

.custom_checkbox {
    display: block;
    cursor: pointer;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 40px;
    letter-spacing: 0em;
    position: relative;
    padding-left: 28px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.custom_checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.custom_checkbox input:checked ~ .checkmark {
    background-color: #008992;
}
.custom_checkbox .checkmark {
    border: 1px solid #041e42;
    border-radius: 4px;
    position: absolute;
    top: 10px;
    left: 0;
    height: 16px;
    width: 16px;
}
.custom_checkbox .checkmark:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.switch-style1 input.form-check-input {
    background-color: rgba(91, 187, 123, 0.1);
    border: none;
    height: 30px;
    width: 55px;
}
.switch-style1 .form-check-input {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-3 -3 6 6'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
    background-position: left center;
    transition: background-position 0.15s ease-in-out;
}
.switch-style1 .form-check-input:checked {
    background-color: #00cedc;
    box-shadow: none;
}
.switch-style1 .form-check-input:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-3 -3 6 6'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
    box-shadow: none;
    outline: none;
}
.switch-style1 label.form-check-label {
    color: var(--headings-color);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0em;
    line-height: 30px;
    margin-left: 17px;
}

.bselect-style1 .bootstrap-select .dropdown-toggle {
    border: none;
    font-size: 15px;
    height: 55px;
    line-height: 40px;
    outline: none;
}
.bselect-style1 .bootstrap-select .dropdown-toggle:hover {
    color: var(--headings-color);
}
.bselect-style1 .bootstrap-select .dropdown-toggle:focus {
    border: none;
    outline-offset: 0;
}
.bselect-style1 .bootstrap-select .dropdown-menu {
    margin-top: 13px !important;
    padding-bottom: 7px;
}
.bselect-style1 .bootstrap-select .dropdown-menu.show {
    border: 1px solid #e9e9e9;
}
.bselect-style1 .bootstrap-select .dropdown-menu.inner.show {
    border: none;
}
.bselect-style1 .bootstrap-select .dropdown-item {
    font-size: 15px;
    padding-left: 30px;
    padding-right: 30px;
}
.bselect-style1 .bootstrap-select .dropdown-item:hover,
.bselect-style1 .bootstrap-select .dropdown-item.active {
    background-color: #f0efec;
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
        .input-group-btn
    ) {
    width: 100%;
}
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
        .input-group-btn
    )
    .btn,
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
        .input-group-btn
    )
    .btn-light {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
        .input-group-btn
    )
    .dropdown-toggle:focus {
    box-shadow: none;
    outline: none !important;
}

.form-style1
    .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
        .input-group-btn
    ) {
    width: 100%;
}
.form-style1
    .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
        .input-group-btn
    )
    .btn,
.form-style1
    .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
        .input-group-btn
    )
    .btn-light {
    border: 1px solid #e9e9e9;
}

.bootstrap-select.show-tick .dropdown-menu .selected span {
    color: var(--headings-color);
}

.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
    right: 25px;
}

.video-icon {
    background-color: #ffffff;
    border-radius: 50%;
    color: var(--headings-color);
    display: block;
    height: 54px;
    line-height: 54px;
    outline: 1px solid #ffffff;
    outline-offset: 7px;
    text-align: center;
    width: 54px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.video-icon:hover {
    background-color: #00cedc;
    color: #ffffff;
    outline-offset: 10px;
    outline: 1px solid #ffffff;
}

.video-btn {
    background-color: #ffffff;
    border-radius: 50%;
    color: var(--headings-color);
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 40px;
}

.btn:focus {
    box-shadow: none;
    outline: none;
}

.add-more-btn .icon {
    background-color: #ffede8;
    border-radius: 50%;
    color: var(--headings-color);
    font-size: 10px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    width: 25px;
}

/*  Funfact Styles  */
.funfact-floating-img1 {
    bottom: 0;
    position: absolute;
    right: 0;
}

.funfact-floating-img2 {
    position: absolute;
    left: 0;
    top: 0;
}

.funfact_one {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.funfact_one .timer,
.funfact_one span {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 700;
    font-size: 38px;
    line-height: 49px;
}
.funfact_one.at-home2-hero .timer,
.funfact_one.at-home2-hero span {
    color: #ffffff;
    font-size: 28px;
}
.funfact_one.at-home5 {
    border-radius: 12px;
    padding: 50px 0;
}
.funfact_one.at-home5:hover {
    background-color: #ffffff;
}
.funfact_one.at-home5 .icon,
.funfact_one.at-home5 .timer,
.funfact_one.at-home5 span {
    color: #1f4b3f;
}
.funfact_one.at-home5-hero .timer,
.funfact_one.at-home5-hero span {
    color: #1f4b3f;
    font-size: 28px;
}
.funfact_one.at-home14-hero-1 {
    background-color: #f7f7f7;
    border-radius: 30px 0 0 30px;
    overflow: hidden;
}
.funfact_one.at-home14-hero-2 {
    background-color: #eef7d0;
    border-radius: 0 30px 30px 0;
    overflow: hidden;
}
.funfact_one.at-home15-hero-1 {
    background-color: #168882;
    border-radius: 30px;
    max-width: 220px;
    overflow: hidden;
}

.funfact-style1 {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    margin-bottom: 30px;
    max-width: 280px;
    padding: 60px 15px 35px;
    position: relative;
}
@media (max-width: 991.98px) {
    .funfact-style1 {
        padding: 30px 15px 25px;
    }
}
@media (max-width: 575.98px) {
    .funfact-style1 {
        max-width: initial;
    }
}
.funfact-style1 .title,
.funfact-style1 span {
    color: var(--headings-color);
    font-family: var(--body-font-family);
    font-size: 45px;
    font-weight: 700;
    line-height: 59px;
    letter-spacing: 0em;
}
@media (max-width: 991.98px) {
    .funfact-style1 .title,
    .funfact-style1 span {
        font-size: 35px;
    }
}
.funfact-style1.at-home5 {
    padding: 40px 15px 30px;
}

.home11-funfact {
    background-image: url(../images/background/home11-cta-1.png);
    background-size: cover;
}

/*	Menu Style  */
header.nav-innerpage-style {
    background-color: #ffffff;
    border-bottom: 1px solid #e9e9e9;
    padding: 7px 0;
}
header.nav-innerpage-style .ace-responsive-menu .sub-menu {
    background-color: #ffffff;
    border-radius: 12px;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    padding: 15px 0;
    z-index: 9999;
    width: 260px;
}
header.nav-innerpage-style .ace-responsive-menu .sub-menu li {
    border-left: 2px solid transparent;
    padding: 0 30px;
    width: 260px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
header.nav-innerpage-style .ace-responsive-menu .sub-menu li:hover {
    background-color: #f0efec;
    border-left: 2px solid #00cedc;
}
header.nav-innerpage-style .ace-responsive-menu .sub-menu a {
    line-height: 40px;
}
header.nav-innerpage-style
    .ace-responsive-menu
    .megamenu_style
    .mega_menu_list {
    padding-left: 0;
}
header.nav-innerpage-style .ace-responsive-menu .megamenu_style .sub-menu li {
    padding-left: 0;
}
header.nav-innerpage-style
    .ace-responsive-menu
    .megamenu_style
    .sub-menu
    li:hover {
    background-color: transparent;
}
header.nav-innerpage-style
    .ace-responsive-menu
    .megamenu_style
    .sub-menu
    a:hover {
    text-decoration: underline;
}
header.nav-innerpage-style
    .ace-responsive-menu
    .megamenu_style:hover
    .dropdown-megamenu {
    border-radius: 12px;
    left: auto;
    max-width: 600px;
    overflow: hidden;
    padding: 30px;
    width: 100%;
    z-index: 99999;
}
header.nav-innerpage-style
    .ace-responsive-menu
    .megamenu_style
    .dropdown-megamenu
    .sub-menu {
    border: none;
    box-shadow: none;
    display: block !important;
    float: left;
    left: auto !important;
    margin: 0;
    padding: 0;
    position: relative;
}
header.nav-innerpage-style
    .ace-responsive-menu
    .megamenu_style
    .mega_menu_list {
    float: left;
    width: 33.33%;
}
header.nav-innerpage-style .ace-responsive-menu .megamenu_style a.list-item,
header.nav-innerpage-style .ace-responsive-menu .visible_list a.list-item {
    border-radius: 60px;
    text-align: center;
    padding: 7px 13px;
}
header.nav-innerpage-style
    .ace-responsive-menu
    .megamenu_style
    a.list-item:hover,
header.nav-innerpage-style
    .ace-responsive-menu
    .visible_list
    a.list-item:hover {
    color: #00cedc;
}
@media (max-width: 1399.98px) {
    header.nav-innerpage-style .ace-responsive-menu .megamenu_style a.list-item,
    header.nav-innerpage-style .ace-responsive-menu .visible_list a.list-item {
        padding: 7px 11px;
    }
}
@media (max-width: 1199.98px) {
    header.nav-innerpage-style .ace-responsive-menu .megamenu_style a.list-item,
    header.nav-innerpage-style .ace-responsive-menu .visible_list a.list-item {
        padding: 7px 8px;
    }
}
header.nav-innerpage-style
    .ace-responsive-menu
    .megamenu_style
    a.list-item:hover,
header.nav-innerpage-style
    .ace-responsive-menu
    .visible_list
    a.list-item:hover {
    background-color: transparent;
}
header.nav-innerpage-style
    .ace-responsive-menu
    .megamenu_style
    a.list-item:hover:before,
header.nav-innerpage-style
    .ace-responsive-menu
    .visible_list
    a.list-item:hover:before {
    width: 100%;
}
header.nav-innerpage-style
    .ace-responsive-menu
    .megamenu_style
    a.list-item:before,
header.nav-innerpage-style
    .ace-responsive-menu
    .visible_list
    a.list-item:before {
    background-color: #00cedc;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    top: -18px;
    width: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
header.nav-innerpage-style .ace-responsive-menu a {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
}
header.nav-innerpage-style.menu-home4 {
    box-shadow: none;
    border-bottom: none;
    padding: 18px 0;
}
header.nav-innerpage-style.at-home3 {
    background-color: #fff8f6;
}
header.nav-innerpage-style.style2 {
    box-shadow: none;
}
header.nav-innerpage-style.at-home15 {
    background-color: #fbf7ed;
}
header.nav-innerpage-style .custom-container {
    padding-left: 110px;
    padding-right: 110px;
}
header.menu-home10 {
    box-shadow: none;
    border-bottom: none;
    padding: 0;
}
header.menu-home10 .ace-responsive-menu .sub-menu {
    margin-top: 1px;
}
header.menu-home10 .ace-responsive-menu .megamenu_style a.list-item,
header.menu-home10 .ace-responsive-menu .visible_list a.list-item {
    border-radius: 0px;
    line-height: 72px;
    position: relative;
}
header.menu-home10 .ace-responsive-menu .megamenu_style a.list-item:hover,
header.menu-home10 .ace-responsive-menu .visible_list a.list-item:hover {
    background-color: transparent;
}
header.menu-home10
    .ace-responsive-menu
    .megamenu_style
    a.list-item:hover:before,
header.menu-home10 .ace-responsive-menu .visible_list a.list-item:hover:before {
    width: 100%;
}
header.menu-home10 .ace-responsive-menu .megamenu_style a.list-item:before,
header.menu-home10 .ace-responsive-menu .visible_list a.list-item:before {
    background-color: #00cedc;
    content: "";
    position: absolute;
    height: 2px;
    left: 0;
    width: 0;
    top: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
header.menu-home10.stricky.stricky-fixed
    .ace-responsive-menu
    .megamenu_style
    a.list-item:before,
header.menu-home10.stricky.stricky-fixed
    .ace-responsive-menu
    .visible_list
    a.list-item:before {
    background-color: #222222;
}
header.nav-homepage-style {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 7px 0;
    position: fixed;
    width: 100%;
    z-index: 3;
}
header.nav-homepage-style .ace-responsive-menu .sub-menu {
    background-color: #ffffff;
    border-radius: 4px;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    padding: 15px 0;
    z-index: 9999;
    width: 260px;
}
header.nav-homepage-style .ace-responsive-menu .sub-menu li {
    border-left: 2px solid transparent;
    padding: 0 30px;
    width: 260px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
header.nav-homepage-style .ace-responsive-menu .sub-menu li:hover {
    background-color: #f0efec;
    border-left: 2px solid #00cedc;
}
header.nav-homepage-style .ace-responsive-menu .sub-menu a {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 400;
    line-height: 40px;
}
header.nav-homepage-style .ace-responsive-menu .megamenu_style .mega_menu_list {
    padding-left: 0;
}
header.nav-homepage-style .ace-responsive-menu .megamenu_style .sub-menu li {
    padding-left: 0;
}
header.nav-homepage-style
    .ace-responsive-menu
    .megamenu_style
    .sub-menu
    li:hover {
    background-color: transparent;
}
header.nav-homepage-style
    .ace-responsive-menu
    .megamenu_style
    .sub-menu
    a:hover {
    text-decoration: underline;
}
header.nav-homepage-style
    .ace-responsive-menu
    .megamenu_style:hover
    .dropdown-megamenu {
    border-radius: 4px;
    left: auto;
    max-width: 600px;
    overflow: hidden;
    padding: 30px;
    width: 100%;
    z-index: 99999;
}
header.nav-homepage-style
    .ace-responsive-menu
    .megamenu_style
    .dropdown-megamenu
    .sub-menu {
    border: none;
    box-shadow: none;
    display: block !important;
    float: left;
    left: auto !important;
    margin: 0;
    padding: 0;
    position: relative;
}
header.nav-homepage-style .ace-responsive-menu .megamenu_style .mega_menu_list {
    float: left;
    width: 33.33%;
}
header.nav-homepage-style .ace-responsive-menu .megamenu_style a.list-item,
header.nav-homepage-style .ace-responsive-menu .visible_list a.list-item {
    border-radius: 60px;
    text-align: center;
    padding: 7px 14px;
}
header.nav-homepage-style
    .ace-responsive-menu
    .megamenu_style
    a.list-item:hover,
header.nav-homepage-style .ace-responsive-menu .visible_list a.list-item:hover {
    background-color: rgba(255, 255, 255, 0.07);
}
@media (max-width: 1399.98px) {
    header.nav-homepage-style .ace-responsive-menu .megamenu_style a.list-item,
    header.nav-homepage-style .ace-responsive-menu .visible_list a.list-item {
        padding: 7px 9px;
    }
}
header.nav-homepage-style
    .ace-responsive-menu
    .megamenu_style
    a.list-item:hover,
header.nav-homepage-style .ace-responsive-menu .visible_list a.list-item:hover {
    background-color: transparent;
}
header.nav-homepage-style
    .ace-responsive-menu
    .megamenu_style
    a.list-item:hover:before,
header.nav-homepage-style
    .ace-responsive-menu
    .visible_list
    a.list-item:hover:before {
    width: 100%;
}
header.nav-homepage-style
    .ace-responsive-menu
    .megamenu_style
    a.list-item:before,
header.nav-homepage-style
    .ace-responsive-menu
    .visible_list
    a.list-item:before {
    background-color: #00cedc;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    top: -18px;
    width: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
header.nav-homepage-style .ace-responsive-menu a {
    color: #ffffff;
    font-family: var(--title-font-family);
    font-weight: 600;
}
header.nav-homepage-style .ace-responsive-menu a:hover {
    color: #00cedc;
    font-family: var(--title-font-family);
    font-weight: 600;
}
header.nav-homepage-style .header-logo.logo2 {
    display: none;
}
header.nav-homepage-style .btn-mega {
    color: #ffffff;
}
header.nav-homepage-style .sidemenu-btn,
header.nav-homepage-style .login-info {
    color: #ffffff;
}
header.nav-homepage-style.stricky.stricky-fixed {
    background-color: #ffffff;
    border-bottom: 1px solid #e9e9e9;
    -webkit-box-shadow: 0px 5px 20px rgba(91, 187, 123, 0.15);
    -moz-box-shadow: 0px 5px 20px rgba(91, 187, 123, 0.15);
    -o-box-shadow: 0px 5px 20px rgba(91, 187, 123, 0.15);
    /* box-shadow: 0px 5px 20px #00cedc36; */
    z-index: 9;
    top: 0;
}
header.nav-homepage-style.stricky.stricky-fixed .ace-responsive-menu a {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
}
header.nav-homepage-style.stricky.stricky-fixed .sidemenu-btn,
header.nav-homepage-style.stricky.stricky-fixed .login-info,
header.nav-homepage-style.stricky.stricky-fixed .btn-mega {
    color: var(--headings-color);
}
header.nav-homepage-style.stricky.stricky-fixed .header-logo.logo1 {
    display: none;
}
header.nav-homepage-style.stricky.stricky-fixed .header-logo.logo2 {
    display: block;
}
header.nav-homepage-style.stricky.stricky-fixed .menu-btn,
header.nav-homepage-style.stricky.stricky-fixed .btn-transparent2 {
    border: 1px solid var(--headings-color);
    color: var(--headings-color);
}
header.nav-homepage-style.stricky.stricky-fixed .menu-btn:hover {
    background-color: #00cedc;
    border: 1px solid #00cedc;
}
header.nav-homepage-style.at-home2,
header.nav-homepage-style.at-home5 {
    border-bottom: none;
}
header.nav-homepage-style.at-home3 .ace-responsive-menu a {
    color: var(--headings-color);
}
header.nav-homepage-style.at-home3 .sidemenu-btn,
header.nav-homepage-style.at-home3 .login-info {
    color: var(--headings-color);
}
header.nav-homepage-style.at-home5 .ace-responsive-menu .sub-menu {
    margin-top: 1px;
}
header.nav-homepage-style.at-home5
    .ace-responsive-menu
    .megamenu_style
    a.list-item,
header.nav-homepage-style.at-home5
    .ace-responsive-menu
    .visible_list
    a.list-item {
    border-radius: 0px;
    position: relative;
}
header.nav-homepage-style.at-home5
    .ace-responsive-menu
    .megamenu_style
    a.list-item:hover,
header.nav-homepage-style.at-home5
    .ace-responsive-menu
    .visible_list
    a.list-item:hover {
    background-color: transparent;
}
header.nav-homepage-style.at-home5
    .ace-responsive-menu
    .megamenu_style
    a.list-item:hover:before,
header.nav-homepage-style.at-home5
    .ace-responsive-menu
    .visible_list
    a.list-item:hover:before {
    width: 100%;
}
header.nav-homepage-style.at-home5
    .ace-responsive-menu
    .megamenu_style
    a.list-item:before,
header.nav-homepage-style.at-home5
    .ace-responsive-menu
    .visible_list
    a.list-item:before {
    background-color: #ffffff;
    bottom: 0;
    content: "";
    position: absolute;
    height: 2px;
    left: 0;
    width: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
header.nav-homepage-style.at-home5.stricky.stricky-fixed
    .ace-responsive-menu
    .megamenu_style
    a.list-item:before,
header.nav-homepage-style.at-home5.stricky.stricky-fixed
    .ace-responsive-menu
    .visible_list
    a.list-item:before {
    background-color: #222222;
}
header.nav-homepage-style.at-home17.stricky.stricky-fixed .home18-sign-btn {
    border: 1px solid #e9e9e9;
}
header.nav-homepage-style.at-home18 {
    margin-top: 30px;
}
header.nav-homepage-style.at-home18.stricky.stricky-fixed {
    margin-top: 0;
}
header.nav-homepage-style.at-home18.stricky.stricky-fixed .home18-sign-btn {
    border: 1px solid #e9e9e9;
}

.home17-join-btn {
    background-color: #97fcc4;
    border: transparent;
    border-style: solid;
    border-width: 2px;
}

.home18-sign-btn {
    border: 1px solid #ffffff;
}

.home18-join-btn {
    background-color: #f9fcaa;
}

.home20-join-btn {
    background-color: #00cedc;
    border: transparent;
    border-style: solid;
    border-width: 2px;
}

/*== Mobile Menu Css ==*/
.header.innerpage-style {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 5px 20px rgba(91, 187, 123, 0.15);
    -moz-box-shadow: 0px 5px 20px rgba(91, 187, 123, 0.15);
    -o-box-shadow: 0px 5px 20px rgba(91, 187, 123, 0.15);
    box-shadow: 0px 5px 20px rgba(91, 187, 123, 0.15);
    height: 65px;
    line-height: 65px;
}

.mm-panel {
    background-color: #ffffff;
    background: #ffffff;
}

.mm-listitem:after {
    display: none;
}

.mm-navbar {
    background-color: #fff;
    color: var(--headings-color);
    font-weight: 500;
    font-size: 20px;
    line-height: 29px;
    height: 60px;
}

.mm-navbar__title {
    color: var(--headings-color);
    background-color: #f1f1f1;
}

.mm-wrapper__blocker {
    background-color: rgba(34, 34, 34, 0.5);
}

.mm-panel ul.mm-listview li:first-child.mm-listitem {
    margin-top: 30px;
}

.mm-panel ul.mm-listview li.mm-listitem.cl_btn {
    border-bottom: none;
    margin: 50px auto;
    max-width: 90%;
}

.mm-panel ul.mm-listview li.mm-listitem.cl_btn a.btn {
    color: #ffffff;
    font-family: var(--title-font-family);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

a.mm-listitem__text,
a.mm-btn.mm-btn_next.mm-listitem__btn.mm-listitem__text {
    color: var(--headings-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

a.mm-listitem__text:hover,
a.mm-btn.mm-btn_next.mm-listitem__btn.mm-listitem__text:hover {
    background: #f1f1f1;
    color: #000;
    transition: all 0.3s ease;
}

li.mm-listitem:hover,
li.mm-listitem:active,
li.mm-listitem:focus {
    color: #ffffff;
}

.mm-btn_prev:before {
    background-color: transparent;
}

.hsidebar-content {
    padding: 30px 0;
    position: relative;
}

.modal-lg {
    max-width: 662px;
}

.modal:before {
    background: rgba(34, 34, 34, 0.7);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0px;
    top: 0px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.hiddenbar-body-ovelay {
    background: rgba(34, 34, 34, 0.7);
    height: 100%;
    opacity: 0;
    position: fixed;
    right: 0px;
    top: 0px;
    width: 100%;
    visibility: hidden;
    z-index: 9990;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.menu-hidden-sidebar-content .hiddenbar-body-ovelay {
    opacity: 1;
    visibility: visible;
}
.menu-hidden-sidebar-content .lefttside-hidden-bar {
    opacity: 1;
    left: 0px;
    visibility: visible;
}

.signin-hidden-sidebar-content .rightside-hidden-bar {
    opacity: 1;
    right: 0px;
    visibility: visible;
}
.signin-hidden-sidebar-content .hiddenbar-body-ovelay {
    opacity: 1;
    visibility: visible;
}

.rightside-hidden-bar {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    position: fixed;
    right: -400px;
    top: 0px;
    width: 400px;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
@media (max-width: 575.98px) {
    .rightside-hidden-bar {
        max-width: 300px;
    }
}
.rightside-hidden-bar .hsidebar-header {
    border-bottom: 1px solid #e9e9e9;
    padding: 25px 20px 15px 30px;
    display: block;
    position: relative;
}
.rightside-hidden-bar .hsidebar-header .title {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
}
.rightside-hidden-bar .hsidebar-header .sidebar-close-icon {
    background-color: #f7f7f7;
    border-radius: 50%;
    cursor: pointer;
    color: var(--headings-color);
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    position: absolute;
    right: 20px;
    text-align: center;
    top: 20px;
    width: 40px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
@media (max-width: 575.98px) {
    .rightside-hidden-bar .hsidebar-header .sidebar-close-icon {
        right: 10px;
    }
}
.rightside-hidden-bar::-webkit-scrollbar {
    width: 8px;
}
.rightside-hidden-bar::-webkit-scrollbar-track {
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    border-radius: 12px;
}
.rightside-hidden-bar::-webkit-scrollbar-thumb {
    background-color: #e9e9e9;
    border-radius: 12px;
}

.lefttside-hidden-bar {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    height: 100%;
    opacity: 0;
    position: fixed;
    right: -360px;
    top: 0px;
    visibility: hidden;
    width: 360px;
    z-index: 99999;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.lefttside-hidden-bar .hsidebar-header {
    padding: 25px 20px 25px 30px;
    display: block;
    position: relative;
}
.lefttside-hidden-bar .sidebar-close-icon {
    background-color: #f1fcfa;
    border-radius: 8px;
    cursor: pointer;
    color: var(--headings-color);
    font-size: 12px;
    height: 40px;
    line-height: 40px;
    position: absolute;
    right: 30px;
    text-align: center;
    top: 20px;
    width: 40px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
@media (max-width: 400px) {
    .lefttside-hidden-bar .sidebar-close-icon {
        right: 30px;
    }
}
.lefttside-hidden-bar:-webkit-scrollbar {
    width: 3px;
}
.lefttside-hidden-bar .hsidebar-content {
    padding: 0 30px 30px;
    position: relative;
    max-height: 750px;
    overflow-y: scroll;
}
.lefttside-hidden-bar .hsidebar-content::-webkit-scrollbar {
    background: transparent;
    border-radius: 10px;
    padding-right: 10px;
    width: 10px;
}
.lefttside-hidden-bar .hsidebar-content::-webkit-scrollbar-thumb {
    background-color: #f1fcfa;
    border-radius: 10px;
}
.lefttside-hidden-bar.map-page .hsidebar-content {
    max-height: 900px;
}

.lefttside-hidden-bar {
    left: -350px;
    right: auto;
    width: 350px;
}
@media (max-width: 400px) {
    .lefttside-hidden-bar {
        width: 300px;
    }
}

.hiddenbar_navbar_menu {
    margin-bottom: 200px;
    padding-top: 30px;
    position: relative;
}
.hiddenbar_navbar_menu .navbar-nav .nav-item {
    padding-left: 2px solid transparent;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.hiddenbar_navbar_menu .navbar-nav .nav-item .nav-link {
    border-left: 2px solid transparent;
    line-height: 51px;
    letter-spacing: 0em;
    position: relative;
    padding: 0 30px;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.hiddenbar_navbar_menu .navbar-nav .nav-item .nav-link:hover,
.hiddenbar_navbar_menu .navbar-nav .nav-item .nav-link:active,
.hiddenbar_navbar_menu .navbar-nav .nav-item .nav-link:focus {
    background-color: rgba(91, 187, 123, 0.07);
    border-left: 2px solid #00cedc;
    color: #00cedc;
}
.hiddenbar_navbar_menu .navbar-nav .nav-item .nav-link i {
    line-height: 60px;
    position: absolute;
    right: 30px;
    -webkit-transition: all ease 0.2s;
    -moz-transition: all ease 0.2s;
    -o-transition: all ease 0.2s;
    transition: all ease 0.2s;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}
.hiddenbar_navbar_menu .navbar-nav .nav-item .nav-link.collapsed i {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}

.body_content_wrapper:before {
    background: rgba(4, 30, 66, 0.5);
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.body_content_wrapper.before_active:before {
    opacity: 1;
    z-index: 9;
}

.hiddenbar_navbar_menu .navbar-nav .nav-item .nav-link:hover i,
.hiddenbar_navbar_menu .navbar-nav .nav-item .nav-link:active i,
.hiddenbar_navbar_menu .navbar-nav .nav-item .nav-link:focus i {
    color: #443297;
}

.hiddenbar_navbar_menu
    .navbar-nav
    .nav-item
    .collapse
    .nav
    .nav-item
    .nav-link:after {
    display: none;
}

.mobile_menu_close_btn {
    background-color: #f7f7f7;
    border-radius: 8px;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    cursor: pointer;
    color: var(--headings-color);
    font-size: 10px;
    height: 40px;
    left: -15px;
    line-height: 40px;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 15px;
    width: 40px;
    z-index: -1;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.advance-search-menu {
    -webkit-box-shadow: 0px 5px 20px rgba(91, 187, 123, 0.15);
    -moz-box-shadow: 0px 5px 20px rgba(91, 187, 123, 0.15);
    -o-box-shadow: 0px 5px 20px rgba(91, 187, 123, 0.15);
    box-shadow: 0px 5px 20px rgba(91, 187, 123, 0.15);
}
.advance-search-menu.style2 {
    background-color: #222222;
}

.advance-search-list li .search-field {
    border-radius: 40px;
    height: 44px;
    padding-left: 20px;
    width: 470px;
}
@media (max-width: 767.98px) {
    .advance-search-list li .search-field {
        margin-bottom: 15px;
        width: auto;
    }
}
.advance-search-list li:last-child .open-btn {
    background-color: #f7f7f7;
    border: 1px solid #222222;
}
.advance-search-list li .open-btn {
    border: 1px solid #e9e9e9;
}
.advance-search-list.no-box-shadow .open-btn {
    box-shadow: none;
}

/*button Mega Menu Css Code*/
/* Menu Mega Code Start */
#mega-menu {
    cursor: pointer;
    height: 50px;
    line-height: 50px;
    max-width: 180px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
@media (max-width: 1199.98px) {
    #mega-menu {
        max-width: 120px;
    }
}
#mega-menu .menu {
    border-radius: 4px 0 0 4px;
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    opacity: 0;
    position: relative;
    top: 20px;
    z-index: 90;
    width: 330px;
    visibility: hidden;
    -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
@media (max-width: 1199.98px) {
    #mega-menu .menu {
        width: 310px;
    }
}
#mega-menu .menu li {
    background-color: #ffffff;
    border-left: 2px solid transparent;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#mega-menu .menu li:hover {
    background-color: #f0efec;
    border-left: 2px solid #00cedc;
}
#mega-menu .menu li:hover .drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(1.8%);
}
#mega-menu .menu li a {
    border-left: 2px solid transparent;
    padding: 5px 20px;
    display: block;
    position: relative;
}
@media (max-width: 1199.98px) {
    #mega-menu .menu li a {
        padding: 5px 15px;
    }
}
#mega-menu .menu li a.dropdown:after {
    content: "";
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    right: 30px;
    font-size: 14px;
    color: var(--headings-color);
}
#mega-menu .menu li:first-child {
    border-radius: 4px 0 0 0;
}
#mega-menu .menu li:last-child {
    border-radius: 0 0 0 4px;
}
#mega-menu .menu .menu-icn {
    color: #1f4b3f;
    font-size: 22px;
    margin-right: 8px;
    min-width: 30px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
}
#mega-menu .menu .menu-title {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
    font-size: 15px;
    line-height: 50px;
}
#mega-menu .drop-menu {
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 0 4px 4px 0;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    height: 493px;
    opacity: 0;
    visibility: hidden;
    padding: 30px;
    position: absolute;
    top: -1px;
    left: 316px;
    width: 650px;
    z-index: -1;
    transform: translateX(-1%);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
@media (max-width: 1199.98px) {
    #mega-menu .drop-menu {
        left: 298px;
        width: 530px;
    }
}
#mega-menu .drop-menu .cat-title {
    color: var(--headings-color);
    margin-bottom: 10px;
}
#mega-menu .drop-menu li {
    background-color: transparent;
}
#mega-menu .drop-menu li:hover {
    background-color: transparent;
    border-color: transparent;
}
#mega-menu .drop-menu li a {
    border-bottom: none;
    color: var(--body-text-color);
    font-size: 14px;
    font-family: var(--title-font-family);
    font-weight: 400;
    line-height: 32px;
    padding: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#mega-menu .drop-menu li a:hover {
    color: var(--headings-color);
}
#mega-menu:hover .menu {
    display: block;
    opacity: 1;
    top: 10px;
    visibility: visible;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.home1_style.at-home2 #mega-menu {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-left: 15px;
}

.home1_style.at-home18 #mega-menu {
    background-color: #5e6d5f;
    border-radius: 120px;
}

.home1_style.at-home19 #mega-menu {
    background-color: #ffede8;
    border-radius: 12px;
    margin-left: 15px;
}

/* Menu Mega Code End */
/*	Nav & Tabs Styles  */
.navpill-style1 {
    position: relative;
}
.navpill-style1 .nav-item {
    margin-right: 10px;
}
.navpill-style1 .nav-item:last-child {
    margin-right: 0;
}
.navpill-style1 .nav-link {
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 7px 17px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.navpill-style1 .nav-link.active,
.navpill-style1 .nav-link:hover {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    border-radius: 32px;
    border: 1px solid #e9e9e9;
    color: #00cedc;
}
.navpill-style1.payout-style .nav-pills {
    background-color: #ffede8;
    border-radius: 60px;
    height: 45px;
    width: 350px;
}
.navpill-style1.payout-style .nav-pills .nav-link {
    color: #1f4b3f;
    font-size: 14px;
    padding: 4px 17px;
}
.navpill-style1.payout-style .nav-pills .nav-link:hover,
.navpill-style1.payout-style .nav-pills .nav-link.active {
    color: var(--headings-color);
    height: 35px;
    line-height: initial;
}

.navpill-style2 {
    position: relative;
}
.navpill-style2 .nav-item {
    margin-right: 10px;
}
.navpill-style2 .nav-item:last-child {
    margin-right: 0;
}
.navpill-style2 .nav-link {
    border: 1px solid transparent;
    border-radius: 6px;
    color: #222222;
    padding: 7px 17px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.navpill-style2 .nav-link.active,
.navpill-style2 .nav-link:hover {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    border-radius: 4px;
    border: 1px solid #e9e9e9;
    color: var(--headings-color);
}
.navpill-style2.at-home6 .nav-item {
    margin-right: 0;
}
.navpill-style2.at-home6 .nav-link.active,
.navpill-style2.at-home6 .nav-link:hover {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    border-radius: 4px;
    border: 1px solid #e9e9e9;
    color: #00cedc;
}
.navpill-style2.at-home9 .nav-item {
    margin-right: 0;
}
.navpill-style2.at-home9 .nav-link.active,
.navpill-style2.at-home9 .nav-link:hover {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    border-radius: 32px;
    border: 1px solid #e9e9e9;
    color: #00cedc;
}

.navtab-style1,
.navtab-style2 {
    position: relative;
}
.navtab-style1 .nav-tabs,
.navtab-style2 .nav-tabs {
    border-bottom: 1px solid #e9e9e9;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.navtab-style1 .nav-link,
.navtab-style2 .nav-link {
    border: 2px solid transparent;
    color: #697488;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.navtab-style1 .nav-link:hover,
.navtab-style2 .nav-link:hover {
    border: 2px solid transparent;
}
.navtab-style1 .nav-link.active,
.navtab-style2 .nav-link.active {
    border: 2px solid transparent;
    border-bottom: 2px solid var(--headings-color);
    color: #222222;
}

.navtab-style1.blog-page-style {
    overflow-x: auto;
}
.navtab-style1.blog-page-style nav {
    width: 1400px;
}

.navtab-style2 .nav-tabs {
    border-bottom: none;
}

.dark-light-navtab {
    position: relative;
}
.dark-light-navtab .nav-link {
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--headings-color);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-right: 10px;
    padding: 6px 17px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dark-light-navtab .nav-link.active {
    background-color: #ffffff;
    border: 1px solid var(--headings-color);
    color: var(--headings-color);
}
.dark-light-navtab.style2 .nav-item:last-child .nav-link {
    margin-right: 0;
}
.dark-light-navtab.style2 .nav-link {
    color: var(--headings-color);
}
.dark-light-navtab.style2 .nav-link.active {
    background-color: var(--headings-color);
    color: #ffffff;
}
.dark-light-navtab.style3 .nav-link {
    background-color: rgba(255, 255, 255, 0.07);
    border: none;
    color: #ffffff;
}
.dark-light-navtab.style3 .nav-link.active {
    background-color: #ffffff;
    border: none;
    color: #00cedc;
}
.dark-light-navtab.style4 .nav-link {
    border: none;
    border-radius: 0;
    color: var(--headings-color);
    margin-right: 0;
}
.dark-light-navtab.style4 .nav-link.active {
    border-bottom: 2px solid var(--headings-color);
}

.tab-content {
    height: auto;
}
.tab-content .active {
    height: auto;
}

.ps-navtab .nav-link {
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 4px;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    padding: 10px 40px;
}
.ps-navtab .nav-link.active {
    background-color: #f7f7f7;
    border: 1px solid var(--headings-color);
    color: var(--headings-color);
}

.ps-v4-hero-tab .nav-pills {
    position: absolute;
    right: 30px;
    top: 30px;
    z-index: 9;
}
.ps-v4-hero-tab .nav-link {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 4px;
    height: 54px;
    line-height: 60px;
    padding: 0;
    width: 54px;
}
.ps-v4-hero-tab .nav-link.active {
    background-color: #00cedc;
}
.ps-v4-hero-tab.at-v5 .nav-pills {
    right: 0;
}
.ps-v4-hero-tab.at-v5 .nav-link {
    background-color: rgba(255, 255, 255, 0.1);
}
.ps-v4-hero-tab.at-v5 .nav-link.active {
    background-color: #00cedc;
}

.terms_condition_widget .nav-tabs {
    border-bottom: none;
}
.terms_condition_widget .nav-link {
    border: none;
    border-left: 1px solid #e9e9e9;
    border-radius: 0;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
    font-size: 15px;
    line-height: 45px;
    padding: 0 0 0 20px;
    width: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.terms_condition_widget .nav-link.active {
    border-left: 2px solid #00cedc;
    color: #00cedc;
}

.vertical-tab .nav-tabs {
    border-bottom: none;
}
.vertical-tab .nav-link {
    border: none;
    border-radius: 0;
    color: var(--body-text-color);
    font-family: var(--title-font-family);
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 25px;
    padding: 0;
    width: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.vertical-tab .nav-link span {
    border-bottom: 2px solid transparent;
    padding-bottom: 10px;
}
.vertical-tab .nav-link.active span {
    border-bottom: 2px solid #222222;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
}

.home2_testimonial_tabs .thumb {
    padding: 10px;
}
.home2_testimonial_tabs img {
    width: 70px;
}
@media (max-width: 991.98px) {
    .home2_testimonial_tabs img {
        width: 40px;
    }
}
.home2_testimonial_tabs .title {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
}
.home2_testimonial_tabs .title small {
    color: var(--body-text-color);
    font-family: var(--title-font-family);
    font-weight: 400;
    font-size: 14px;
}
.home2_testimonial_tabs .nav-link {
    border: 1px solid #e9e9e9;
    border-radius: 100px;
    margin: 0 15px;
    padding: 0;
    width: 350px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
@media (max-width: 1399.98px) {
    .home2_testimonial_tabs .nav-link {
        margin-bottom: 10px;
    }
}
@media (max-width: 1199.98px) {
    .home2_testimonial_tabs .nav-link {
        max-width: initial;
    }
}
@media (max-width: 1399.98px) {
    .home2_testimonial_tabs .nav-link {
        margin: 0 5px 10px;
        width: 250px;
    }
}
@media (max-width: 991.98px) {
    .home2_testimonial_tabs .nav-link {
        width: 220px;
    }
}
.home2_testimonial_tabs .nav-link.active {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}

.extra-service-tab .nav-tabs {
    border-bottom: none;
}
.extra-service-tab .nav-link {
    border: 2px solid transparent;
    outline: 1px solid #e9e9e9;
    border-radius: 4px;
    margin-bottom: 20px;
    padding: 26px 30px 35px;
    position: relative;
}
.extra-service-tab .nav-link.active {
    border: 2px solid #1f4b3f;
}
.extra-service-tab .text-bottom {
    display: block;
    line-height: initial;
}
.extra-service-tab .price {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-size: 28px;
    font-weight: 700;
    position: absolute;
    right: 30px;
    top: 45px;
}
@media (max-width: 575.98px) {
    .extra-service-tab .price {
        right: 20px;
        top: 10px;
    }
}

.home9-navtab-style .nav-link {
    border-bottom: none;
    color: rgba(34, 34, 34, 0.3);
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    padding-top: 0;
    padding-left: 0;
    margin-right: 40px;
}
.home9-navtab-style .nav-link:last-child {
    margin-right: 0;
}
.home9-navtab-style .nav-link.active,
.home9-navtab-style .nav-link:hover,
.home9-navtab-style .nav-link:focus,
.home9-navtab-style .nav-link:visited {
    color: #222222;
    border-bottom: none;
}

/*  Paginations Styles  */
.mbp_pagination ul {
    margin: 0;
    padding: 0;
}
.mbp_pagination .page_navigation {
    margin-bottom: 0;
    text-align: center;
    width: 100%;
}
.mbp_pagination .page-item {
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.mbp_pagination .page-item:hover {
    background-color: #f1fcfa;
}
.mbp_pagination .page-item:first-child {
    border: 1px solid #e9e9e9;
}
.mbp_pagination .page-item:last-child {
    border: 1px solid #222222;
}
.mbp_pagination .page-item.active .page-link {
    background-color: #00cedc;
    color: #ffffff;
}
.mbp_pagination .page-link {
    background-color: transparent;
    border: none;
    border-radius: 50%;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
    font-size: 15px;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    padding: 0;
    text-align: center;
    width: 40px;
}

/*	ProgressBar Styles  */
.progressbar-style1 {
    position: relative;
}
.progressbar-style1 .progressbar-bg {
    background-color: #f1fcfa;
    border-radius: 10px;
    height: 10px;
    width: 100%;
}
.progressbar-style1 .progressd-bar {
    background-color: #e1c03f;
    border-radius: 10px;
    position: absolute;
    height: 10px;
    top: 0;
}
.progressbar-style1 .progressd-bar span {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    right: 0;
    top: -25px;
    position: absolute;
}

.range-slider-style1,
.range-slider-style2 {
    max-width: 300px;
    position: relative;
    width: 100%;
}

span.ui-slider-handle.ui-corner-all.ui-state-default,
span.ui-slider-handle.ui-corner-all.ui-state-default:active,
span.ui-slider-handle.ui-corner-all.ui-state-default:focus,
span.ui-slider-handle.ui-corner-all.ui-state-default:hover,
span.ui-slider-handle.ui-corner-all.ui-state-default:focus-visible {
    border: 2px solid #00cedc;
    border-radius: 50%;
    height: 14px;
    margin-left: 0;
    outline: none;
    top: -6px;
    width: 14px;
}

.ui-slider-range.ui-corner-all.ui-widget-header {
    background-color: #00cedc;
    height: 4px;
}

.slider-range.ui-slider.ui-corner-all.ui-slider-horizontal.ui-widget.ui-widget-content {
    background-color: #e9e9e9;
    border: 1px solid transparent;
    border-radius: 6px;
    height: 4px;
}

input.amount {
    text-align: start;
}
input.amount,
input.amount2,
input.amount3,
input.amount4 {
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 6px;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-size: 14px;
    font-weight: 400;
    height: 45px;
    line-height: 22px;
    padding: 0 10px;
    width: 85px;
}
@media (max-width: 1199.98px) {
    input.amount,
    input.amount2,
    input.amount3,
    input.amount4 {
        max-width: 100px;
    }
}
input::placeholder {
    color: var(--headings-color);
}
input:focus-visible {
    border: none;
    outline: none;
}

#slider-range-value1,
#slider-range-value2 {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0em;
    padding: 5px;
}

#slider-range-value1,
#slider-range-value3 {
    float: left;
}

#slider-range-value2 {
    float: right;
}

.slider-labels {
    margin-top: 15px;
}

.noUi-target,
.noUi-target * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -ms-touch-action: none;
    touch-action: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.noUi-target {
    position: relative;
}

.noUi-base {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.noUi-origin {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.noUi-handle {
    position: relative;
    z-index: 1;
}
.noUi-handle .noUi-handle {
    z-index: 10;
}
.noUi-handle .noUi-origin {
    -webkit-transition: left 0.3s, top 0.3s;
    transition: left 0.3s, top 0.3s;
}

.noUi-state-drag * {
    cursor: inherit !important;
}

.noUi-base,
.noUi-handle {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.noUi-horizontal .noUi-handle {
    background-color: #ffffff;
    border: 2px solid #00cedc;
    border-radius: 50%;
    height: 10px;
    left: 0;
    top: -7px;
    width: 10px;
}

.noUi-background {
    background-color: #f7f7f7;
    border-radius: 30px;
    height: 3px;
}

.noUi-connect {
    background-color: #00cedc;
    border-radius: 30px;
    -webkit-transition: background 450ms;
    transition: background 450ms;
}

.noUi-draggable {
    cursor: w-resize;
}

.noUi-vertical .noUi-draggable {
    cursor: n-resize;
}

.noUi-handle {
    cursor: default;
    -webkit-box-sizing: content-box !important;
    -moz-box-sizing: content-box !important;
    box-sizing: content-box !important;
}
.noUi-handle:active {
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
}

/*	Shop Styles  */
.shop-item {
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    margin-bottom: 30px;
    padding: 10px 30px 20px;
    position: relative;
    -webkit-transition: all 0.3s ease 0s ease;
    -moz-transition: all 0.3s ease 0s ease;
    -ms-transition: all 0.3s ease 0s ease;
    -o-transition: all 0.3s ease 0s ease;
    transition: all 0.3s ease 0s ease;
}
.shop-item:hover {
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}

/*	Shop Single Page	*/
.shop-single .nav-link {
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    padding: 0;
}
.shop-single .nav-link.active {
    background-color: transparent;
    border: 1px solid #222222;
}
.shop-single .shop-single-item {
    max-width: 643px;
}

.shop-single-content .price {
    font-weight: 700;
}

/*	Cart Page	*/
.cart-img {
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    height: 100px;
    line-height: 100px;
    margin-right: 22px;
    text-align: center;
    width: 100px;
}

.shopping_cart_table thead {
    height: 70px;
    line-height: 70px;
}
.shopping_cart_table th {
    background-color: #f1fcfa;
    padding: 0;
}
.shopping_cart_table .table_body {
    padding-left: 30px;
}
.shopping_cart_table .table_body td {
    border-bottom: 1px solid #e9e9e9;
    padding: 30px 0;
    vertical-align: middle;
}

.shopping_cart_table .coupon_input {
    width: 270px;
}
@media (max-width: 1199.98px) {
    .shopping_cart_table .coupon_input {
        width: auto;
    }
}

.quantity-arrow-minus,
.quantity-arrow-plus {
    background-color: transparent;
    border: none;
    border-radius: 6px;
    box-sizing: border-box;
    color: var(--headings-color);
    font-size: 10px;
    height: 25px;
    line-height: 20px;
    left: 10px;
    outline: none;
    position: absolute;
    text-align: center;
    width: 25px;
    top: 15px;
}

.quantity-arrow-plus {
    left: auto;
    right: 10px;
}

.quantity-num {
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 15px;
    height: 56px;
    max-width: 140px;
    outline: none;
    padding: 0;
    text-align: center;
    width: 100%;
}

.quantity-block {
    border: 1px solid #e9e9e9;
    border-radius: 4px;
    height: 60px;
    position: relative;
    vertical-align: middle;
    width: 140px;
}

.cart-delete {
    background-color: #ffede8;
    border-radius: 4px;
    color: #1f4b3f;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 40px;
}

/*	Shop Order  */
.order_complete_message {
    position: relative;
}
.order_complete_message .icon {
    border-radius: 50%;
    font-size: 30px;
    height: 80px;
    line-height: 80px;
    margin: 0 auto 20px;
    width: 80px;
}
.order_complete_message .title {
    font-size: 28px;
}

.shop_order_box {
    position: relative;
}
.shop_order_box .order_list_raw {
    background-color: #ffede8;
    border: 2px dashed #222222;
    border-radius: 8px;
    margin-bottom: 60px;
    padding: 35px 80px;
}
@media (max-width: 575.98px) {
    .shop_order_box .order_list_raw {
        padding: 40px 30px;
    }
}
.shop_order_box .order_details {
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    padding: 50px 60px 70px;
}
@media (max-width: 575.98px) {
    .shop_order_box .order_details {
        padding: 40px 30px;
    }
}

.checkout_form
    .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
        .input-group-btn
    ) {
    width: 100%;
}
.checkout_form
    .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
        .input-group-btn
    )
    .btn,
.checkout_form
    .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
        .input-group-btn
    )
    .btn-light {
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 4px;
}

.checkout_coupon {
    position: relative;
}

.order_sidebar_widget {
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    padding: 30px;
    position: relative;
}
.order_sidebar_widget .title {
    margin-bottom: 28px;
}

.payment_widget {
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    margin-bottom: 30px;
    padding: 30px;
    position: relative;
}
.payment_widget .title {
    margin-bottom: 28px;
}
.payment_widget .form-check-label {
    font-weight: 500;
}

/*	Shop Details Pages Styles */
.service-single-sldier {
    position: relative;
}
.service-single-sldier:after {
    background-color: #404040;
    border-radius: 4px;
    bottom: 130px;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
}
@media (max-width: 767.98px) {
    .service-single-sldier:after {
        bottom: 0;
    }
}
.service-single-sldier.vam_nav_style.owl-theme .owl-nav button.owl-prev {
    left: 30px;
}
@media (max-width: 767.98px) {
    .service-single-sldier.vam_nav_style.owl-theme .owl-nav button.owl-prev {
        font-size: 12px;
        height: 35px;
        line-height: 35px;
        left: 10px;
        width: 35px;
    }
}
.service-single-sldier.vam_nav_style.owl-theme .owl-nav button.owl-next {
    right: 30px;
}
@media (max-width: 767.98px) {
    .service-single-sldier.vam_nav_style.owl-theme .owl-nav button.owl-next {
        font-size: 12px;
        height: 35px;
        line-height: 35px;
        right: 10px;
        width: 35px;
    }
}
.service-single-sldier button.owl-dot {
    border-radius: 4px;
    height: 114px;
    margin-right: 10px;
    width: 150px;
}
.service-single-sldier button.owl-dot:first-child {
    background-image: url(../images/listings/service-details-s-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
    .service-single-sldier button.owl-dot:first-child {
        display: none;
    }
}
.service-single-sldier button.owl-dot:nth-child(2) {
    background-image: url(../images/listings/service-details-s-2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
    .service-single-sldier button.owl-dot:nth-child(2) {
        display: none;
    }
}
.service-single-sldier button.owl-dot:nth-child(3) {
    background-image: url(../images/listings/service-details-s-3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
    .service-single-sldier button.owl-dot:nth-child(3) {
        display: none;
    }
}

/*	Employee Single Styles */
.employee-single-slider.vam_nav_style.owl-theme .owl-nav button.owl-prev {
    left: 30px;
}
@media (max-width: 767.98px) {
    .employee-single-slider.vam_nav_style.owl-theme .owl-nav button.owl-prev {
        font-size: 12px;
        height: 35px;
        line-height: 35px;
        left: 10px;
        width: 35px;
    }
}
.employee-single-slider.vam_nav_style.owl-theme .owl-nav button.owl-next {
    right: 30px;
}
@media (max-width: 767.98px) {
    .employee-single-slider.vam_nav_style.owl-theme .owl-nav button.owl-next {
        font-size: 12px;
        height: 35px;
        line-height: 35px;
        right: 10px;
        width: 35px;
    }
}
.employee-single-slider button.owl-dot {
    border-radius: 4px;
    height: 114px;
    margin-right: 10px;
    width: 150px;
}
.employee-single-slider button.owl-dot:first-child {
    background-image: url(../images/about/employee-single-2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
    .employee-single-slider button.owl-dot:first-child {
        display: none;
    }
}
.employee-single-slider button.owl-dot:nth-child(2) {
    background-image: url(../images/about/employee-single-3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
    .employee-single-slider button.owl-dot:nth-child(2) {
        display: none;
    }
}
.employee-single-slider button.owl-dot:nth-child(3) {
    background-image: url(../images/about/employee-single-4.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
    .employee-single-slider button.owl-dot:nth-child(3) {
        display: none;
    }
}

/*	Social Styles  */
.social-style1 i {
    color: #ffffff;
    border-radius: 50%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 40px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.social-style1 i:hover {
    background-color: rgba(255, 255, 255, 0.05);
}
.social-style1.light-style i {
    color: var(--headings-color);
}
.social-style1.light-style i:hover {
    background-color: var(--headings-color);
    color: #ffffff;
}
.social-style1.light-style2 i {
    color: var(--headings-color);
}
.social-style1.light-style2 i:hover {
    background-color: #f7f7f7;
    color: var(--headings-color);
}
.social-style1.at-home15 i:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.app-list .app-title,
.app-list i {
    color: rgba(255, 255, 255, 0.7);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.app-list:hover .app-title,
.app-list:hover i {
    color: #ffffff;
}
.app-list.light-style i {
    color: rgba(34, 34, 34, 0.7);
}
.app-list.light-style i:hover {
    background-color: var(--headings-color);
    color: #ffffff;
}
.app-list.light-style .app-title {
    color: rgba(34, 34, 34, 0.7);
}

/*	Sliders Styles  */
.thumbimg-countnumber-carousel .owl-dots {
    position: absolute;
    right: 340px;
    top: 300px;
    width: 60px;
}
@media (max-width: 1399.98px) {
    .thumbimg-countnumber-carousel .owl-dots {
        right: 50px;
    }
}
@media (max-width: 1199.98px) {
    .thumbimg-countnumber-carousel .owl-dots {
        bottom: 0;
        left: 30px;
        top: auto;
        width: auto;
    }
}
@media (max-width: 575.98px) {
    .thumbimg-countnumber-carousel .owl-dots {
        display: none;
    }
}

.banner-wrapper .owl-dot {
    display: grid;
    position: relative;
    z-index: 991;
}
.banner-wrapper .owl-dot span {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
    border-radius: 50%;
    height: 50px;
    margin: 0 0 15px;
    opacity: 0.7;
    width: 50px;
    transition: all 0.4s ease;
}
.banner-wrapper .owl-dot:last-child {
    margin-bottom: 0;
}
.banner-wrapper .owl-dot.active span {
    opacity: 1;
    outline: 2px solid #ffffff;
    outline-offset: 5px;
}
.banner-wrapper .carousel-control-block {
    align-items: center;
    background-color: #ffffff;
    border-radius: 16px;
    bottom: 0;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    max-width: 160px;
    padding: 15px 20px;
    position: absolute;
    right: 20px;
    width: 100%;
    z-index: 999;
}
.banner-wrapper .carousel-btn-block {
    display: flex;
    flex-direction: column;
    border-left: 1px solid #e9e9e9;
    padding-left: 20px;
}
.banner-wrapper .carousel-btn-block span {
    font-size: 30px;
    color: var(--headings-color);
    cursor: pointer;
    line-height: 0.6em;
}
.banner-wrapper .carousel-btn-block span + span {
    margin-top: 7px;
}
.banner-wrapper .slider-number-count {
    font-weight: 400;
    color: var(--headings-color);
    display: flex;
}
.banner-wrapper .sep {
    margin-left: 10px;
    margin-right: 10px;
}
.banner-wrapper .sep,
.banner-wrapper .current-number {
    color: #00cedc;
    font-weight: 600;
}

.nav_none.owl-theme.owl-carousel .owl-nav {
    display: none !important;
}

.dots_none.owl-theme.owl-carousel .owl-dots {
    display: none !important;
}

.navi_pagi_top_right.owl-theme .owl-dots,
.navi_pagi_bottom_left.owl-theme .owl-dots,
.navi_pagi_bottom_center.owl-theme .owl-dots {
    display: block;
    text-align: center;
    width: 100px;
}
.navi_pagi_top_right.owl-theme .owl-nav,
.navi_pagi_bottom_left.owl-theme .owl-nav,
.navi_pagi_bottom_center.owl-theme .owl-nav {
    display: block;
    width: 140px;
    position: absolute;
}
.navi_pagi_top_right.owl-theme .owl-nav .owl-prev,
.navi_pagi_bottom_left.owl-theme .owl-nav .owl-prev,
.navi_pagi_bottom_center.owl-theme .owl-nav .owl-prev {
    left: 0;
    right: auto;
}
.navi_pagi_top_right.owl-theme .owl-nav .owl-next,
.navi_pagi_bottom_left.owl-theme .owl-nav .owl-next,
.navi_pagi_bottom_center.owl-theme .owl-nav .owl-next {
    left: auto;
    right: 0;
}
.navi_pagi_top_right.owl-theme .owl-nav .owl-prev,
.navi_pagi_top_right.owl-theme .owl-nav .owl-next,
.navi_pagi_bottom_left.owl-theme .owl-nav .owl-prev,
.navi_pagi_bottom_left.owl-theme .owl-nav .owl-next,
.navi_pagi_bottom_center.owl-theme .owl-nav .owl-prev,
.navi_pagi_bottom_center.owl-theme .owl-nav .owl-next {
    background-color: transparent;
    border: none;
    color: var(--headings-color);
    font-size: 14px;
    height: auto;
    line-height: initial;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    width: auto;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.navi_pagi_top_right.owl-theme .owl-nav .owl-prev:hover,
.navi_pagi_top_right.owl-theme .owl-nav .owl-prev:active,
.navi_pagi_top_right.owl-theme .owl-nav .owl-prev:focus,
.navi_pagi_top_right.owl-theme .owl-nav .owl-next:hover,
.navi_pagi_top_right.owl-theme .owl-nav .owl-next:active,
.navi_pagi_top_right.owl-theme .owl-nav .owl-next:focus,
.navi_pagi_bottom_left.owl-theme .owl-nav .owl-prev:hover,
.navi_pagi_bottom_left.owl-theme .owl-nav .owl-prev:active,
.navi_pagi_bottom_left.owl-theme .owl-nav .owl-prev:focus,
.navi_pagi_bottom_left.owl-theme .owl-nav .owl-next:hover,
.navi_pagi_bottom_left.owl-theme .owl-nav .owl-next:active,
.navi_pagi_bottom_left.owl-theme .owl-nav .owl-next:focus,
.navi_pagi_bottom_center.owl-theme .owl-nav .owl-prev:hover,
.navi_pagi_bottom_center.owl-theme .owl-nav .owl-prev:active,
.navi_pagi_bottom_center.owl-theme .owl-nav .owl-prev:focus,
.navi_pagi_bottom_center.owl-theme .owl-nav .owl-next:hover,
.navi_pagi_bottom_center.owl-theme .owl-nav .owl-next:active,
.navi_pagi_bottom_center.owl-theme .owl-nav .owl-next:focus {
    background-color: transparent;
    color: var(--headings-color);
}
.navi_pagi_top_right.owl-theme .owl-nav .owl-prev i,
.navi_pagi_bottom_left.owl-theme .owl-nav .owl-prev i,
.navi_pagi_bottom_center.owl-theme .owl-nav .owl-prev i {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.navi_pagi_top_right.owl-theme .owl-nav .owl-prev:hover i,
.navi_pagi_bottom_left.owl-theme .owl-nav .owl-prev:hover i,
.navi_pagi_bottom_center.owl-theme .owl-nav .owl-prev:hover i {
    transform: translateX(-5px) scale(1.25);
}
.navi_pagi_top_right.owl-theme .owl-nav .owl-next i,
.navi_pagi_bottom_left.owl-theme .owl-nav .owl-next i,
.navi_pagi_bottom_center.owl-theme .owl-nav .owl-next i {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.navi_pagi_top_right.owl-theme .owl-nav .owl-next:hover i,
.navi_pagi_bottom_left.owl-theme .owl-nav .owl-next:hover i,
.navi_pagi_bottom_center.owl-theme .owl-nav .owl-next:hover i {
    transform: translateX(5px) scale(1.25);
}
.navi_pagi_top_right.owl-theme .owl-dots button.owl-dot:hover span,
.navi_pagi_top_right.owl-theme .owl-dots button.owl-dot.active span,
.navi_pagi_bottom_left.owl-theme .owl-dots button.owl-dot:hover span,
.navi_pagi_bottom_left.owl-theme .owl-dots button.owl-dot.active span,
.navi_pagi_bottom_center.owl-theme .owl-dots button.owl-dot:hover span,
.navi_pagi_bottom_center.owl-theme .owl-dots button.owl-dot.active span {
    background-color: #222222;
    border-radius: 50%;
    height: 8px;
    width: 8px;
}
.navi_pagi_top_right.owl-theme .owl-dots button.owl-dot span,
.navi_pagi_bottom_left.owl-theme .owl-dots button.owl-dot span,
.navi_pagi_bottom_center.owl-theme .owl-dots button.owl-dot span {
    background-color: #c0c0c0;
    border-radius: 50%;
    height: 6px;
    position: relative;
    width: 6px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
@media (max-width: 919px) {
    .navi_pagi_top_right.owl-theme .owl-dots button.owl-dot:nth-child(4),
    .navi_pagi_top_right.owl-theme .owl-dots button.owl-dot:nth-child(5),
    .navi_pagi_top_right.owl-theme .owl-dots button.owl-dot:nth-child(7),
    .navi_pagi_top_right.owl-theme .owl-dots button.owl-dot:nth-child(8),
    .navi_pagi_top_right.owl-theme .owl-dots button.owl-dot:nth-child(9),
    .navi_pagi_top_right.owl-theme .owl-dots button.owl-dot:nth-child(10),
    .navi_pagi_top_right.owl-theme .owl-dots button.owl-dot:nth-child(11),
    .navi_pagi_top_right.owl-theme .owl-dots button.owl-dot:nth-child(12),
    .navi_pagi_top_right.owl-theme .owl-dots button.owl-dot:nth-child(13),
    .navi_pagi_top_right.owl-theme .owl-dots button.owl-dot:nth-child(14),
    .navi_pagi_bottom_left.owl-theme .owl-dots button.owl-dot:nth-child(4),
    .navi_pagi_bottom_left.owl-theme .owl-dots button.owl-dot:nth-child(5),
    .navi_pagi_bottom_left.owl-theme .owl-dots button.owl-dot:nth-child(7),
    .navi_pagi_bottom_left.owl-theme .owl-dots button.owl-dot:nth-child(8),
    .navi_pagi_bottom_left.owl-theme .owl-dots button.owl-dot:nth-child(9),
    .navi_pagi_bottom_left.owl-theme .owl-dots button.owl-dot:nth-child(10),
    .navi_pagi_bottom_left.owl-theme .owl-dots button.owl-dot:nth-child(11),
    .navi_pagi_bottom_left.owl-theme .owl-dots button.owl-dot:nth-child(12),
    .navi_pagi_bottom_left.owl-theme .owl-dots button.owl-dot:nth-child(13),
    .navi_pagi_bottom_left.owl-theme .owl-dots button.owl-dot:nth-child(14),
    .navi_pagi_bottom_center.owl-theme .owl-dots button.owl-dot:nth-child(4),
    .navi_pagi_bottom_center.owl-theme .owl-dots button.owl-dot:nth-child(5),
    .navi_pagi_bottom_center.owl-theme .owl-dots button.owl-dot:nth-child(7),
    .navi_pagi_bottom_center.owl-theme .owl-dots button.owl-dot:nth-child(8),
    .navi_pagi_bottom_center.owl-theme .owl-dots button.owl-dot:nth-child(9),
    .navi_pagi_bottom_center.owl-theme .owl-dots button.owl-dot:nth-child(10),
    .navi_pagi_bottom_center.owl-theme .owl-dots button.owl-dot:nth-child(11),
    .navi_pagi_bottom_center.owl-theme .owl-dots button.owl-dot:nth-child(12),
    .navi_pagi_bottom_center.owl-theme .owl-dots button.owl-dot:nth-child(13),
    .navi_pagi_bottom_center.owl-theme .owl-dots button.owl-dot:nth-child(14) {
        display: none;
    }
}

.navi_pagi_vertical_right.owl-theme .owl-dots {
    position: absolute;
    right: 30px;
    text-align: center;
    top: 40%;
    width: 20px;
}
@media (max-width: 767.98px) {
    .navi_pagi_vertical_right.owl-theme .owl-dots {
        bottom: 10px;
        height: 30px;
        left: 0;
        margin: 0 auto;
        position: absolute;
        right: 0;
        text-align: center;
        top: auto;
        width: 120px;
    }
}
.navi_pagi_vertical_right.owl-theme .owl-nav {
    bottom: 0;
    height: 20px;
    left: auto;
    position: absolute;
    right: -27px;
    top: 44%;
    transform: rotate(90deg);
    width: 140px;
}
@media (max-width: 767.98px) {
    .navi_pagi_vertical_right.owl-theme .owl-nav {
        bottom: 13px;
        left: 0;
        position: absolute;
        right: 0;
        top: auto;
        transform: inherit;
        width: 140px;
        margin: 0 auto;
    }
}
.navi_pagi_vertical_right.owl-theme .owl-nav .owl-prev {
    left: 0;
    right: auto;
}
.navi_pagi_vertical_right.owl-theme .owl-nav .owl-next {
    left: auto;
    right: 0;
}
.navi_pagi_vertical_right.owl-theme .owl-nav .owl-prev,
.navi_pagi_vertical_right.owl-theme .owl-nav .owl-next {
    background-color: transparent;
    border: none;
    color: var(--headings-color);
    font-size: 14px;
    height: auto;
    line-height: initial;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    width: auto;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.navi_pagi_vertical_right.owl-theme .owl-nav .owl-prev:hover,
.navi_pagi_vertical_right.owl-theme .owl-nav .owl-prev:active,
.navi_pagi_vertical_right.owl-theme .owl-nav .owl-prev:focus,
.navi_pagi_vertical_right.owl-theme .owl-nav .owl-next:hover,
.navi_pagi_vertical_right.owl-theme .owl-nav .owl-next:active,
.navi_pagi_vertical_right.owl-theme .owl-nav .owl-next:focus {
    background-color: transparent;
    color: var(--headings-color);
}
.navi_pagi_vertical_right.owl-theme .owl-nav .owl-prev i {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.navi_pagi_vertical_right.owl-theme .owl-nav .owl-prev:hover i {
    transform: translateX(-5px) scale(1.25);
}
.navi_pagi_vertical_right.owl-theme .owl-nav .owl-next i {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.navi_pagi_vertical_right.owl-theme .owl-nav .owl-next:hover i {
    transform: translateX(5px) scale(1.25);
}
.navi_pagi_vertical_right.owl-theme .owl-dots button.owl-dot:hover span,
.navi_pagi_vertical_right.owl-theme .owl-dots button.owl-dot.active span {
    background-color: #222222;
    border-radius: 50%;
    height: 8px;
    width: 8px;
}
.navi_pagi_vertical_right.owl-theme .owl-dots button.owl-dot span {
    background-color: #c0c0c0;
    border-radius: 50%;
    height: 6px;
    position: relative;
    width: 6px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
@media (max-width: 919px) {
    .navi_pagi_vertical_right.owl-theme .owl-dots button.owl-dot:nth-child(4),
    .navi_pagi_vertical_right.owl-theme .owl-dots button.owl-dot:nth-child(5),
    .navi_pagi_vertical_right.owl-theme .owl-dots button.owl-dot:nth-child(7),
    .navi_pagi_vertical_right.owl-theme .owl-dots button.owl-dot:nth-child(8),
    .navi_pagi_vertical_right.owl-theme .owl-dots button.owl-dot:nth-child(9),
    .navi_pagi_vertical_right.owl-theme .owl-dots button.owl-dot:nth-child(10),
    .navi_pagi_vertical_right.owl-theme .owl-dots button.owl-dot:nth-child(11),
    .navi_pagi_vertical_right.owl-theme .owl-dots button.owl-dot:nth-child(12),
    .navi_pagi_vertical_right.owl-theme .owl-dots button.owl-dot:nth-child(13),
    .navi_pagi_vertical_right.owl-theme .owl-dots button.owl-dot:nth-child(14) {
        display: none;
    }
}

.dots_nav_light.owl-theme .owl-dots button.owl-dot:hover span,
.dots_nav_light.owl-theme .owl-dots button.owl-dot.active span,
.dots_nav_light.owl-theme .owl-dots button.owl-dot:active span,
.dots_nav_light.owl-theme .owl-dots button.owl-dot:focus span,
.dots_nav_light.owl-theme .owl-dots button.owl-dot:visited span {
    background-color: #ffffff;
}
.dots_nav_light.owl-theme .owl-dots button.owl-dot span {
    background-color: rgba(255, 255, 255, 0.6);
}
.dots_nav_light.owl-theme .owl-nav .owl-prev,
.dots_nav_light.owl-theme .owl-nav .owl-next {
    color: #ffffff;
}
.dots_nav_light.owl-theme .owl-nav .owl-prev:hover i,
.dots_nav_light.owl-theme .owl-nav .owl-prev.active i,
.dots_nav_light.owl-theme .owl-nav .owl-prev:active i,
.dots_nav_light.owl-theme .owl-nav .owl-prev:focus i,
.dots_nav_light.owl-theme .owl-nav .owl-prev:visited i,
.dots_nav_light.owl-theme .owl-nav .owl-next:hover i,
.dots_nav_light.owl-theme .owl-nav .owl-next.active i,
.dots_nav_light.owl-theme .owl-nav .owl-next:active i,
.dots_nav_light.owl-theme .owl-nav .owl-next:focus i,
.dots_nav_light.owl-theme .owl-nav .owl-next:visited i {
    color: #ffffff;
}

.navi_pagi_bottom_center.owl-theme .owl-nav {
    margin: 0 auto;
    bottom: 0;
    left: 0;
    right: 0;
}
@media (max-width: 991.98px) {
    .navi_pagi_bottom_center.owl-theme .owl-nav {
        bottom: 20px;
    }
}
.navi_pagi_bottom_center.owl-theme .owl-dots {
    bottom: -20px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
}
@media (max-width: 991.98px) {
    .navi_pagi_bottom_center.owl-theme .owl-dots {
        bottom: 0;
    }
}

.navi_pagi_bottom_left.owl-theme .owl-dots {
    bottom: -18px;
    left: 20px;
    margin: 0 auto;
    position: absolute;
}
@media (max-width: 991.98px) {
    .navi_pagi_bottom_left.owl-theme .owl-dots {
        position: relative;
    }
}
.navi_pagi_bottom_left.owl-theme .owl-nav {
    bottom: 0;
    position: absolute;
}
@media (max-width: 991.98px) {
    .navi_pagi_bottom_left.owl-theme .owl-nav {
        position: relative;
    }
}

.navi_pagi_top_right.owl-theme .owl-dots {
    position: absolute;
    right: 20px;
    top: -90px;
    width: 100px;
}
@media (max-width: 991.98px) {
    .navi_pagi_top_right.owl-theme .owl-dots {
        left: 20px;
        position: relative;
        right: 0;
        top: -7px;
    }
}
.navi_pagi_top_right.owl-theme .owl-nav {
    right: 0;
    top: -83px;
}
@media (max-width: 991.98px) {
    .navi_pagi_top_right.owl-theme .owl-nav {
        position: relative;
        top: 0;
    }
}

.vam_nav_style.owl-theme .owl-nav {
    display: block;
    margin-top: 0;
}
.vam_nav_style.owl-theme .owl-nav button.owl-prev {
    left: -30px;
    right: auto;
}
@media (max-width: 579px) {
    .vam_nav_style.owl-theme .owl-nav button.owl-prev {
        left: -10px;
    }
}
.vam_nav_style.owl-theme .owl-nav button.owl-next {
    left: auto;
    right: -30px;
}
@media (max-width: 579px) {
    .vam_nav_style.owl-theme .owl-nav button.owl-next {
        right: -10px;
    }
}
.vam_nav_style.owl-theme .owl-nav button.owl-prev,
.vam_nav_style.owl-theme .owl-nav button.owl-next {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 10px 35px rgba(5, 16, 54, 0.1);
    -moz-box-shadow: 0px 10px 35px rgba(5, 16, 54, 0.1);
    -o-box-shadow: 0px 10px 35px rgba(5, 16, 54, 0.1);
    box-shadow: 0px 10px 35px rgba(5, 16, 54, 0.1);
    border: none;
    border-radius: 50%;
    color: #051036;
    display: inline-block;
    height: 60px;
    line-height: 60px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 38%;
    width: 60px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.vam_nav_style.owl-theme .owl-nav button.owl-prev:hover,
.vam_nav_style.owl-theme .owl-nav button.owl-prev:active,
.vam_nav_style.owl-theme .owl-nav button.owl-prev:focus,
.vam_nav_style.owl-theme .owl-nav button.owl-next:hover,
.vam_nav_style.owl-theme .owl-nav button.owl-next:active,
.vam_nav_style.owl-theme .owl-nav button.owl-next:focus {
    background-color: #00cedc;
    color: #ffffff;
}

.nav_left_bottom.owl-theme .owl-nav button.owl-prev {
    left: 0px;
    right: auto;
}
@media (max-width: 579px) {
    .nav_left_bottom.owl-theme .owl-nav button.owl-prev {
        left: -10px;
    }
}
.nav_left_bottom.owl-theme .owl-nav button.owl-next {
    left: 60px;
    right: auto;
}
@media (max-width: 579px) {
    .nav_left_bottom.owl-theme .owl-nav button.owl-next {
        right: -10px;
    }
}
.nav_left_bottom.owl-theme .owl-nav button.owl-prev,
.nav_left_bottom.owl-theme .owl-nav button.owl-next {
    background-color: #ffffff;
    box-shadow: none;
    bottom: -70px;
    border: none;
    border-radius: 50%;
    color: #051036;
    display: inline-block;
    height: 50px;
    line-height: 50px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: auto;
    width: 50px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.nav_left_bottom.owl-theme .owl-nav button.owl-prev:hover,
.nav_left_bottom.owl-theme .owl-nav button.owl-prev:active,
.nav_left_bottom.owl-theme .owl-nav button.owl-prev:focus,
.nav_left_bottom.owl-theme .owl-nav button.owl-next:hover,
.nav_left_bottom.owl-theme .owl-nav button.owl-next:active,
.nav_left_bottom.owl-theme .owl-nav button.owl-next:focus {
    background-color: #222222;
    color: #ffffff;
}

.slider-outer-dib,
.testimonial-slider {
    position: relative;
}
.slider-outer-dib .owl-stage-outer,
.testimonial-slider .owl-stage-outer {
    display: inline-block;
}

.property-city-slider.style2.vam_nav_style.owl-theme .owl-nav button.owl-prev,
.property-city-slider.style2.vam_nav_style.owl-theme .owl-nav button.owl-next {
    top: 25%;
}

.feature-listing-slider .listing-style1 {
    margin-bottom: 60px;
}

.feature-listing-slider2.owl-theme .owl-nav .owl-prev,
.feature-listing-slider2.owl-theme .owl-nav .owl-next {
    top: 25%;
}

.home3-testimonial-slider {
    position: relative;
}
.home3-testimonial-slider.owl-theme .owl-nav {
    bottom: 20px;
    left: -165px;
    margin: 0 auto;
    position: absolute;
}
@media (max-width: 1199.98px) {
    .home3-testimonial-slider.owl-theme .owl-nav {
        left: 85px;
    }
}
@media (max-width: 991.98px) {
    .home3-testimonial-slider.owl-theme .owl-nav {
        left: 0;
        right: 0;
    }
}
@media (max-width: 767.98px) {
    .home3-testimonial-slider.owl-theme .owl-nav {
        bottom: 0;
    }
}
.home3-testimonial-slider.owl-theme .owl-dots {
    bottom: 0px;
    left: -175px;
}
@media (max-width: 1199.98px) {
    .home3-testimonial-slider.owl-theme .owl-dots {
        left: 75px;
    }
}
@media (max-width: 991.98px) {
    .home3-testimonial-slider.owl-theme .owl-dots {
        left: 0;
    }
}
@media (max-width: 767.98px) {
    .home3-testimonial-slider.owl-theme .owl-dots {
        bottom: -20px;
    }
}

.home6-listing-single-slider.owl-theme .owl-nav {
    bottom: 20px;
    left: 40px;
}
.home6-listing-single-slider.owl-theme .owl-dots {
    bottom: 2px;
    left: 50px;
}
@media (max-width: 991.98px) {
    .home6-listing-single-slider.owl-theme .owl-dots {
        position: absolute;
    }
}

.home8-property-slider
    .swiper-pagination-progressbar.swiper-pagination-horizontal {
    height: 1px;
    left: 20px;
    right: auto;
    width: 70%;
}
.home8-property-slider .swiper-pagination-progressbar-fill {
    height: 3px;
}

.swpr_paginations {
    max-width: 330px;
    position: relative;
    width: 100%;
}
.swpr_paginations .slideactive {
    position: absolute;
    left: 0;
    top: -3px;
}
.swpr_paginations .slidetotal {
    position: absolute;
    right: 0;
    top: -3px;
}

.main-banner-wrapper {
    overflow: hidden;
    position: relative;
}
.main-banner-wrapper .carousel-btn-block {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 1;
}
@media (max-width: 1600px) {
    .main-banner-wrapper .carousel-btn-block {
        top: auto;
        bottom: 80px;
    }
}
@media (max-width: 575.98px) {
    .main-banner-wrapper .carousel-btn-block {
        display: none;
    }
}
.main-banner-wrapper .carousel-btn {
    background-color: transparent;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-size: 22px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    width: 70px;
    z-index: 1;
    -webkit-box-shadow: 0px 10px 35px rgba(17, 33, 55, 0.1);
    -moz-box-shadow: 0px 10px 35px rgba(17, 33, 55, 0.1);
    -o-box-shadow: 0px 10px 35px rgba(17, 33, 55, 0.1);
    box-shadow: 0px 10px 35px rgba(17, 33, 55, 0.1);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    vertical-align: middle;
}
.main-banner-wrapper .carousel-btn:hover {
    background-color: #ffffff;
    color: var(--headings-color);
    opacity: 1;
}
.main-banner-wrapper .carousel-btn.left-btn {
    position: absolute;
    left: 30px;
}
.main-banner-wrapper .carousel-btn.right-btn {
    left: auto;
    position: absolute;
    right: 30px;
}
@media (max-width: 1600px) {
    .main-banner-wrapper .carousel-btn.right-btn {
        left: 100px;
    }
}
@media (max-width: 1199.98px) {
    .main-banner-wrapper .carousel-btn.right-btn {
        top: auto;
    }
}
.main-banner-wrapper.home10_style .carousel-btn.left-btn,
.main-banner-wrapper.home10_style .carousel-btn.right-btn {
    left: auto;
    right: 18%;
}
@media (max-width: 1199.98px) {
    .main-banner-wrapper.home10_style .carousel-btn.right-btn {
        top: auto;
        left: auto;
        right: 13%;
    }
}
@media (max-width: 991.98px) {
    .main-banner-wrapper.home10_style .carousel-btn.right-btn {
        right: 10%;
    }
}
@media (max-width: 767.98px) {
    .main-banner-wrapper.home10_style .carousel-btn.right-btn {
        right: 8%;
    }
}
@media (max-width: 575.98px) {
    .main-banner-wrapper.home10_style .carousel-btn.right-btn {
        right: 5px;
    }
}

.banner-style-one.home10_style .slide {
    height: 700px;
}
@media (max-width: 1199.98px) {
    .banner-style-one.home10_style .slide {
        height: 600px;
    }
}
.banner-style-one .slide {
    align-items: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    height: 860px;
}
@media (max-width: 1199.98px) {
    .banner-style-one .slide {
        height: 680px;
    }
}
.banner-style-one .sub-title {
    color: #ffffff;
    font-size: 36px;
    font-family: var(--title-font-family);
    line-height: 60px;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}
@media (max-width: 1199.98px) {
    .banner-style-one .sub-title {
        font-size: 48px;
        line-height: initial;
    }
}
@media (max-width: 991.98px) {
    .banner-style-one .sub-title {
        font-size: 36px;
    }
}
.banner-style-one .banner-title {
    color: #ffffff;
    font-size: 2.4rem;
    font-family: var(--title-font-family);
    line-height: 1.2;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}
@media (max-width: 1199.98px) {
    .banner-style-one .banner-title {
        font-size: 36px;
        line-height: initial;
    }
}
@media (max-width: 575.98px) {
    .banner-style-one .banner-title {
        font-size: 26px;
    }
}
.banner-style-one .banner-text {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}
.banner-style-one .banner-btn {
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.banner-style-one .banner-content {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}
.banner-style-one .active .banner-title,
.banner-style-one .active .sub-title,
.banner-style-one .active .banner-text,
.banner-style-one .active .banner-btn,
.banner-style-one .active .banner-content {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.banner-title {
    color: #ffffff;
    font-size: 45px;
    font-family: var(--title-font-family);
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 20px;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}
@media (max-width: 1199.98px) {
    .banner-title {
        font-size: 36px;
        line-height: initial;
    }
}
@media (max-width: 575.98px) {
    .banner-title {
        font-size: 26px;
    }
}

@media (max-width: 767.98px) {
    .home1_style .banner-style-one .slide {
        height: 500px;
    }
}

.ps-v4-hero-slider.owl-carousel .owl-stage-outer {
    display: inline;
}
.ps-v4-hero-slider.vam_nav_style.owl-theme .owl-nav button.owl-prev,
.ps-v4-hero-slider.vam_nav_style.owl-theme .owl-nav button.owl-next {
    top: 45%;
}
.ps-v4-hero-slider.vam_nav_style.owl-theme .owl-nav button.owl-prev {
    left: -100px;
}
@media (max-width: 1399.98px) {
    .ps-v4-hero-slider.vam_nav_style.owl-theme .owl-nav button.owl-prev {
        left: -30px;
    }
}
@media (max-width: 767.98px) {
    .ps-v4-hero-slider.vam_nav_style.owl-theme .owl-nav button.owl-prev {
        left: 0;
    }
}
.ps-v4-hero-slider.vam_nav_style.owl-theme .owl-nav button.owl-next {
    right: -100px;
}
@media (max-width: 1399.98px) {
    .ps-v4-hero-slider.vam_nav_style.owl-theme .owl-nav button.owl-next {
        right: -30px;
    }
}
@media (max-width: 767.98px) {
    .ps-v4-hero-slider.vam_nav_style.owl-theme .owl-nav button.owl-next {
        right: 0px;
    }
}
@media (max-width: 575.98px) {
    .ps-v4-hero-slider .owl-item img {
        height: 250px;
    }
}

.ps-v4-hero-slider2.vam_nav_style.owl-theme .owl-nav button.owl-prev,
.ps-v4-hero-slider2.vam_nav_style.owl-theme .owl-nav button.owl-next {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    top: 45%;
}
.ps-v4-hero-slider2.vam_nav_style.owl-theme .owl-nav button.owl-prev:hover,
.ps-v4-hero-slider2.vam_nav_style.owl-theme .owl-nav button.owl-next:hover {
    background-color: #ffffff;
    color: var(--headings-color);
}
.ps-v4-hero-slider2.vam_nav_style.owl-theme .owl-nav button.owl-prev {
    left: 100px;
}
@media (max-width: 1199.98px) {
    .ps-v4-hero-slider2.vam_nav_style.owl-theme .owl-nav button.owl-prev {
        left: 30px;
    }
}
.ps-v4-hero-slider2.vam_nav_style.owl-theme .owl-nav button.owl-next {
    right: 100px;
}
@media (max-width: 1199.98px) {
    .ps-v4-hero-slider2.vam_nav_style.owl-theme .owl-nav button.owl-next {
        right: 30px;
    }
}
@media (max-width: 575.98px) {
    .ps-v4-hero-slider2 .owl-item img {
        height: 200px;
    }
}

.ps-v6-slider.owl-theme .owl-dots .owl-dot:first-child {
    background-image: url(../images/listings/listing-single-6-1.html);
    background-position: center;
    background-size: cover;
}
.ps-v6-slider.owl-theme .owl-dots .owl-dot:nth-child(2) {
    background-image: url(../images/listings/listing-single-6-2.html);
    background-position: center;
    background-size: cover;
}
.ps-v6-slider.owl-theme .owl-dots .owl-dot:nth-child(3) {
    background-image: url(../images/listings/listing-single-6-3.html);
    background-position: center;
    background-size: cover;
}
.ps-v6-slider.owl-theme .owl-dots .owl-dot:nth-child(4) {
    background-image: url(../images/listings/listing-single-6-4.html);
    background-position: center;
    background-size: cover;
}
.ps-v6-slider button.owl-dot {
    background-color: aliceblue;
    border-radius: 4px;
    height: 83.33px;
    margin-bottom: 5px;
    margin-right: 10px;
    width: 90px;
}

.listing-thumbIn-slider.owl-theme .owl-nav {
    bottom: 27px;
    z-index: 1;
}
.listing-thumbIn-slider.owl-theme .owl-nav button.owl-prev,
.listing-thumbIn-slider.owl-theme .owl-nav button.owl-next {
    color: #ffffff;
}
.listing-thumbIn-slider.owl-theme .owl-nav button.owl-prev:hover,
.listing-thumbIn-slider.owl-theme .owl-nav button.owl-prev:focus,
.listing-thumbIn-slider.owl-theme .owl-nav button.owl-next:hover,
.listing-thumbIn-slider.owl-theme .owl-nav button.owl-next:focus {
    color: #ffffff;
}
.listing-thumbIn-slider.owl-theme .owl-dots {
    bottom: 8px;
    z-index: 1;
}
.listing-thumbIn-slider.owl-theme .owl-dots button.owl-dot span {
    background-color: rgba(255, 255, 255, 0.6);
}
.listing-thumbIn-slider.owl-theme .owl-dots button.owl-dot:hover span,
.listing-thumbIn-slider.owl-theme .owl-dots button.owl-dot:focus span,
.listing-thumbIn-slider.owl-theme .owl-dots button.owl-dot.active span {
    background-color: #ffffff;
}

@media (max-width: 991.98px) {
    .testimonial-slider2.navi_pagi_bottom_center.owl-theme .owl-nav,
    .team-slider-home10.navi_pagi_bottom_center.owl-theme .owl-nav {
        bottom: 0px;
    }
    .testimonial-slider2.navi_pagi_bottom_center.owl-theme .owl-dots,
    .team-slider-home10.navi_pagi_bottom_center.owl-theme .owl-dots {
        bottom: -20px;
    }
}

@media (max-width: 360px) {
    .category-slider-home10 .iconbox-style1 {
        padding: 40px 20px 30px;
    }
}

.testimonial-slider-home8.navi_pagi_bottom_left.owl-theme .owl-dots {
    bottom: -20px;
    margin: initial;
}
@media (max-width: 991.98px) {
    .testimonial-slider-home8.navi_pagi_bottom_left.owl-theme .owl-dots {
        bottom: 10px;
    }
}

.testimonial-slider-home11.vam_nav_style.owl-theme .owl-nav button.owl-prev {
    left: -60px;
}
@media (max-width: 1600px) {
    .testimonial-slider-home11.vam_nav_style.owl-theme
        .owl-nav
        button.owl-prev {
        left: -30px;
    }
}
@media (max-width: 575.98px) {
    .testimonial-slider-home11.vam_nav_style.owl-theme
        .owl-nav
        button.owl-prev {
        left: 0;
        top: 30%;
    }
}
.testimonial-slider-home11.vam_nav_style.owl-theme .owl-nav button.owl-next {
    right: -60px;
}
@media (max-width: 1600px) {
    .testimonial-slider-home11.vam_nav_style.owl-theme
        .owl-nav
        button.owl-next {
        right: -30px;
    }
}
@media (max-width: 575.98px) {
    .testimonial-slider-home11.vam_nav_style.owl-theme
        .owl-nav
        button.owl-next {
        right: 0;
        top: 30%;
    }
}
.testimonial-slider-home11.vam_nav_style.owl-theme .owl-nav button.owl-prev,
.testimonial-slider-home11.vam_nav_style.owl-theme .owl-nav button.owl-next {
    border: 1px solid #e9e9e9;
    box-shadow: none;
}

.testimonial-slider-home13.vam_nav_style.owl-theme .owl-nav button.owl-prev {
    bottom: 0;
    left: 50%;
    top: auto;
}
@media (max-width: 1400px) {
    .testimonial-slider-home13.vam_nav_style.owl-theme
        .owl-nav
        button.owl-prev {
        bottom: -15px;
        left: 51%;
    }
}
@media (max-width: 1199.98px) {
    .testimonial-slider-home13.vam_nav_style.owl-theme
        .owl-nav
        button.owl-prev {
        bottom: 0;
        left: auto;
        right: 70px;
    }
}
.testimonial-slider-home13.vam_nav_style.owl-theme .owl-nav button.owl-next {
    bottom: 0;
    right: 40%;
    top: auto;
}
@media (max-width: 1400px) {
    .testimonial-slider-home13.vam_nav_style.owl-theme
        .owl-nav
        button.owl-next {
        bottom: -15px;
        right: 37%;
    }
}
@media (max-width: 1199.98px) {
    .testimonial-slider-home13.vam_nav_style.owl-theme
        .owl-nav
        button.owl-next {
        bottom: 0;
        right: 0;
    }
}
.testimonial-slider-home13.vam_nav_style.owl-theme .owl-nav button.owl-prev,
.testimonial-slider-home13.vam_nav_style.owl-theme .owl-nav button.owl-next {
    border: 1px solid #e9e9e9;
    box-shadow: none;
}
.testimonial-slider-home13.vam_nav_style.owl-theme
    .owl-nav
    button.owl-prev:hover,
.testimonial-slider-home13.vam_nav_style.owl-theme
    .owl-nav
    button.owl-next:hover {
    background-color: #222222;
}

/*	Sidebar Styles  */
.mobile-filter-btn {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 5px 20px rgba(91, 187, 123, 0.15);
    -moz-box-shadow: 0px 5px 20px rgba(91, 187, 123, 0.15);
    -o-box-shadow: 0px 5px 20px rgba(91, 187, 123, 0.15);
    box-shadow: 0px 5px 20px rgba(91, 187, 123, 0.15);
    border-radius: 60px;
    display: block;
    height: 40px;
    line-height: 40px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 98px;
}
.mobile-filter-btn span {
    padding-right: 8px;
}
@media (max-width: 575.98px) {
    .mobile-filter-btn {
        top: 35px;
    }
}
.mobile-filter-btn.map-page {
    border-radius: 4px;
    height: 55px;
    line-height: 55px;
    padding-left: 50px;
    right: auto;
    top: 30px;
    width: 169px;
    z-index: 1;
}
.mobile-filter-btn.map-page span {
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-block;
    height: 55px;
    left: 0;
    padding: 0;
    line-height: 55px;
    position: absolute;
    width: 55px;
}

.blog-sidebar,
.shop-sidebar {
    max-width: 430px;
}

.widget-wrapper {
    margin-bottom: 30px;
    position: relative;
}
.widget-wrapper .list-title {
    margin-bottom: 15px;
}
.widget-wrapper .form-check-label,
.widget-wrapper .custom_checkbox {
    font-size: 15px;
}
.widget-wrapper .custom_checkbox {
    line-height: 35px;
}

.search_area {
    position: relative;
}
.search_area .form-control {
    padding-left: 20px;
}
.search_area input {
    font-size: 15px;
}
.search_area input::placehoder {
    color: var(--headings-color);
}
.search_area label {
    color: var(--headings-color);
    font-size: 16px;
    position: absolute;
    right: 20px;
    top: 15px;
}
.search_area.dashboard-style .form-control {
    font-size: 14px;
    width: 600px;
}
@media (max-width: 1399.98px) {
    .search_area.dashboard-style .form-control {
        width: 500px;
    }
}
.search_area.dashboard-style .form-control::placeholder {
    color: #222222;
}

.room-list {
    display: flex;
}
@media (max-width: 1199.98px) {
    .room-list {
        display: inherit;
    }
}
.room-list a {
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
    height: 45px;
    line-height: 45px;
    margin-right: -1px;
    text-align: center;
    width: 47px;
}
@media (max-width: 1199.98px) {
    .room-list a {
        display: inline-block;
        margin-bottom: 10px;
    }
}
.room-list a:first-child {
    border: 2px solid #222222;
    border-radius: 12px 0 0 12px;
    margin-right: 0;
}
.room-list a:last-child {
    border-radius: 0 12px 12px 0;
    margin-right: 0;
}

.location-area {
    position: relative;
}
.location-area .btn {
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    height: 50px;
    line-height: 35px;
    padding-left: 15px;
    background-color: #ffffff;
    height: 50px;
}
.location-area .btn:before,
.location-area .btn:after {
    display: none;
}

.space-area .form-control {
    max-width: 130px;
    height: 50px;
}

.feature-button {
    align-items: center;
    display: flex;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
    position: relative;
}
.feature-button span {
    background-color: #f7f7f7;
    border-radius: 50%;
    color: var(--headings-color);
    height: 40px;
    line-height: 45px;
    margin-right: 10px;
    text-align: center;
    width: 40px;
}

.reset-button {
    align-items: center;
    display: flex;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 400;
}
.reset-button span {
    display: flex;
    font-size: 16px;
    padding-right: 10px;
    line-height: initial;
}

.dropdown-lists {
    position: relative;
}
.dropdown-lists .dropdown-toggle:after {
    display: none;
}
.dropdown-lists .open-btn {
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 4px;
    cursor: pointer;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 400;
    font-weight: 500;
    letter-spacing: 0em;
    padding: 7px 20px;
}
.dropdown-lists .open-btn:hover {
    background-color: #f1fcfa;
}
.dropdown-lists .drop_content,
.dropdown-lists .drop_content2,
.dropdown-lists .drop_content3,
.dropdown-lists .drop_content4 {
    background-color: #ffffff;
    border-top: 1px solid #e9e9e9;
    border-radius: 8px;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    display: none;
    left: 0px;
    padding: 30px;
    position: absolute;
    top: 50px;
    width: 300px;
    z-index: 9;
}
.dropdown-lists .drop_content:before,
.dropdown-lists .drop_content2:before,
.dropdown-lists .drop_content3:before,
.dropdown-lists .drop_content4:before {
    border-color: transparent transparent #ffffff transparent;
    border-style: solid;
    border-width: 0 5px 5px 5px;
    content: "";
    height: 0;
    left: 30px;
    position: absolute;
    top: -5px;
    width: 0;
}
.dropdown-lists .dropdown-menu {
    padding: 30px;
    width: 300px;
}
.dropdown-lists .drop_content3,
.dropdown-lists .drop_content4 {
    width: 330px;
}
.dropdown-lists .dropdown-menu.price {
    width: 350px;
}
.dropdown-lists.project-list-v2 .open-btn {
    border-radius: 12px;
}

.agent-page-meta .form-control {
    border-radius: 40px;
    height: 44px;
    max-width: 300px;
    width: 100%;
}
.agent-page-meta .open-btn {
    border: 1px solid #e9e9e9;
    box-shadow: none;
    padding: 8px 20px;
}

.list-news-style .news-img {
    border-radius: 8px;
    overflow: hidden;
}
.list-news-style .title span {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 400;
}
.list-news-style .list-meta a {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 400;
}
.list-news-style .new-text {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
}

.sidebar-widget {
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    padding: 30px;
    position: relative;
}

.search_area input::placeholder {
    font-size: 14px;
}

.category-list a {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    margin-bottom: 20px;
}
.category-list a:last-child {
    margin-bottom: 0;
}

.tag-list a {
    background-color: #f1fcfa;
    border-radius: 60px;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 6px 20px;
}
.tag-list a:hover {
    color: #1f4b3f;
}

.sidebar-accordion .card,
.list-sidebar-style1 .card {
    border: none;
    border-bottom: 1px solid #e9e9e9;
    margin-top: 10px;
}
.sidebar-accordion .card:last-child,
.list-sidebar-style1 .card:last-child {
    border-bottom: none;
}
.sidebar-accordion .card-header,
.list-sidebar-style1 .card-header {
    background-color: transparent;
    border: none;
    padding: 0;
}
.sidebar-accordion .card-header.active:before,
.list-sidebar-style1 .card-header.active:before {
    content: "";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.sidebar-accordion .card-header:before,
.list-sidebar-style1 .card-header:before {
    color: #222222;
    content: "";
    font-family: "Font Awesome 6 Pro";
    font-size: 14px;
    font-weight: 900;
    float: right;
    line-height: 35px;
    margin-top: 0;
}
.sidebar-accordion .btn-link,
.list-sidebar-style1 .btn-link {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
}

.share-save-widget .icon {
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 50%;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    height: 36px;
    line-height: 36px;
    text-align: center;
    width: 36px;
}

.price-widget {
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 4px;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    margin-bottom: 30px;
    padding: 15px 30px 30px;
    position: relative;
}
.price-widget .price {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 10px;
}
.price-widget .widget-title {
    font-size: 28px;
    font-weight: 700;
}

.widget-mt-minus {
    margin-top: -185px;
}
@media (max-width: 1199.98px) {
    .widget-mt-minus {
        margin-top: 0;
    }
}

.educational-quality {
    padding-left: 50px;
    position: relative;
}
.educational-quality .m-circle {
    background-color: #f1fcfa;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    height: 30px;
    line-height: 30px;
    left: 0;
    position: absolute;
    text-align: center;
    width: 30px;
}
.educational-quality .m-circle:before {
    border-left: 1px dashed #00cedc;
    bottom: 0;
    content: "";
    height: 140px;
    position: absolute;
    left: 15px;
    top: 40px;
    width: 1px;
}
.educational-quality .tag {
    background-color: #ffede8;
    border-radius: 60px;
    display: inline-block;
    font-size: 13px;
    padding: 5px 20px;
    color: var(--headings-color);
}

.project-attach {
    background-color: rgba(91, 187, 123, 0.1);
    border-radius: 4px;
    margin-bottom: 30px;
    padding: 20px 20px 1px 20px;
    position: relative;
}
.project-attach .icon {
    color: rgba(91, 187, 123, 0.15);
    bottom: 10px;
    font-size: 30px;
    position: absolute;
    right: 10px;
}

/*	Table Styles  */
.table-style1 {
    position: relative;
}
.table-style1 .table thead tr {
    background-color: #f1fcfa;
    overflow: hidden;
}
.table-style1 .table th {
    color: #222222;
    line-height: 55px;
    padding-left: 27px;
}
.table-style1 .table th:first-child {
    border-radius: 8px 0 0 8px;
}
.table-style1 .table th:last-child {
    border-radius: 0 8px 8px 0;
}
.table-style1 .table td {
    border-bottom: 1px solid #e9e9e9;
    font-family: var(--title-font-family);
    line-height: 52px;
    padding-left: 27px;
}

.table-style2 {
    position: relative;
}
.table-style2 .table .t-head th {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    padding-bottom: 30px;
    padding-top: 30px;
    vertical-align: baseline;
}
.table-style2 .table .t-head small {
    font-family: var(--title-font-family);
    font-weight: 400;
    font-size: 15px;
    color: #697488;
}
.table-style2 .t-body th {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0em;
    padding: 30px;
}
.table-style2 .t-body tr {
    border-top: 1px solid #e9e9e9;
}
.table-style2 .t-body td {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 400;
    padding-bottom: 30px;
    padding-top: 30px;
}
.table-style2 .t-body .check_circle {
    border-radius: 50%;
    color: #ffffff;
    display: block;
    font-size: 8px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    width: 25px;
}

.table-style2 table.table > :not(caption) > * > * {
    border-bottom-width: 0;
}

.table-style3.table {
    border-spacing: inherit;
    border-collapse: separate;
}
.table-style3 .t-head {
    background-color: #f1fcfa;
    border-radius: 4px;
}
.table-style3 .t-head th {
    border: 0;
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
    font-size: 17px;
    padding: 20px 30px;
}
.table-style3 .t-body th {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
    font-size: 15px;
    padding: 30px;
    vertical-align: middle;
}
.table-style3 .t-body td {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 400;
    padding: 30px;
    vertical-align: middle;
}
.table-style3 .t-body tr:last-child {
    border-color: transparent;
}
.table-style3 .icon {
    background-color: #ffede8;
    border-radius: 4px;
    color: #1f4b3f;
    display: block;
    height: 40px;
    line-height: 45px;
    text-align: center;
    width: 40px;
}
.table-style3.at-savesearch .t-body tr:last-child {
    border-color: #e9e9e9;
}

.invoice_table {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    border-radius: 8px;
    position: relative;
}
.invoice_table .wrapper {
    padding: 120px 100px;
}
@media (max-width: 991.98px) {
    .invoice_table .wrapper {
        padding: 60px 30px;
    }
}
.invoice_table .tblh_row {
    background-color: #f1fcfa;
    border-radius: 8px;
}
.invoice_table .tblh_row th {
    color: var(--headings-color);
}
.invoice_table .tbleh_title,
.invoice_table .tbl_title,
.invoice_table .tblpr_title,
.invoice_table .tblp_title {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 500;
    font-size: 17px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-top: 25px;
}
.invoice_table .tbl_title,
.invoice_table .tblpr_title {
    font-size: 15px;
    font-weight: 400;
}

.invoice_footer {
    background-color: #ffffff;
    border-radius: 0 0 6px 6px;
    border-top: 1px solid #e9e9e9;
    padding: 45px 0 40px;
}

/*	Essential utility classes  */
.ff-heading {
    font-family: var(--title-font-family);
    font-size: 18px;
}

.highlight-brand {
    background: linear-gradient(178deg, #00cedc, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.text-white {
    color: #ffffff;
}

.bgc-white {
    background-color: #ffffff;
}

.hover-bgc-color {
    background-color: #f0efec;
}

.bgc-transparent {
    background-color: transparent;
}

.text-gray {
    color: #bebdbd;
}

.text-gray-2 {
    color: #f0efec;
}

.bgc-gray-3 {
    background-color: #f6f8fa;
}

.bgc-gray {
    background-color: #bebdbd;
}

.dark-color,
.heading-color,
.title-color {
    color: var(--headings-color);
}

.dark-color2 {
    color: #140342;
}

.bgc-dark {
    background-color: var(--headings-color);
}

.body-light-color {
    color: #697488;
}

.text-thm {
    color: #00cedc;
}

.text-thm2 {
    color: #00cedc;
}

.text-thm3 {
    color: #f1fcfa;
}

.text-thm4 {
    color: #ffede8;
}

.text-thm5 {
    color: #fff8f6;
}

.text-thm6 {
    color: #443297;
}

.bgc-thm {
    background-color: #00cedc;
}

.bgc-thm2 {
    background-color: #1f4b3f;
}

.bgc-thm3 {
    background-color: #f1fcfa;
}

.bgc-thm4 {
    background-color: #ffede8;
}

.bgc-thm5 {
    background-color: #fff8f6;
}

.bgc-thm7 {
    background-color: #e0f1e0;
}

.bgc-f7 {
    background-color: #f7f7f7;
}

.bgc-71 {
    background-color: #697488;
}

.text-thm3 {
    color: #00cedc;
}

.bgc-thm-light {
    background-color: rgba(91, 187, 123, 0.05);
}

.bgc-thm3-light {
    background-color: rgba(91, 187, 123, 0.15);
}

.review-color {
    color: #e1c03f;
}

.review-color2 {
    color: #c4c640;
}

.review-color3 {
    color: #c8973b;
}

.bgc-review-color2 {
    background-color: #c8973b;
}

.text-light-yellow {
    color: #fbf7ed;
}

.bgc-light-yellow {
    background-color: #fbf7ed;
}

.text-red {
    color: #e8543e;
}

.bgc-red {
    background-color: #e8543e;
}

.bgc-violet {
    background-color: #eae7fd;
}

/*== Fonts Size, Font Weights, Display & Position ==*/
.fz0 {
    font-size: 0px;
}

.fz6 {
    font-size: 6px;
}

.fz7 {
    font-size: 7px;
}

.fz8 {
    font-size: 8px;
}

.fz9 {
    font-size: 9px;
}

.fz10 {
    font-size: 10px;
}

.fz11 {
    font-size: 11px;
}

.fz12 {
    font-size: 12px;
}

.fz13 {
    font-size: 13px;
}

.fz14 {
    font-size: 14px;
}

.fz15 {
    font-size: 15px;
}

.fz16 {
    font-size: 16px;
}

.fz17 {
    font-size: 17px;
}

.fz18 {
    font-size: 18px;
}

.fz19 {
    font-size: 19px;
}

.fz20 {
    font-size: 20px;
}

.fz24 {
    font-size: 24px;
}

.fz26 {
    font-size: 26px;
}

.fz28 {
    font-size: 28px;
}

.fz30 {
    font-size: 30px;
}

.fz40 {
    font-size: 40px;
}

.fz45 {
    font-size: 45px;
}

.fz48 {
    font-size: 48px;
}

.fz50 {
    font-size: 50px;
}

.fz55 {
    font-size: 55px;
}

.fz60 {
    font-size: 60px;
}

.fz72 {
    font-size: 72px;
}

.fz100 {
    font-size: 100px;
}

.lh0 {
    line-height: 0px;
}

.lh30 {
    line-height: 30px;
}

.h510 {
    height: 510px;
}

.h550 {
    height: 550px;
}

.h580 {
    height: 580px;
}

.h600 {
    height: 600px;
}

.h250 {
    height: 250px;
}

.wa {
    width: auto;
}

.w60 {
    width: 60px;
}

.w90 {
    width: 90px;
}

.w100 {
    width: 100%;
}

.maxw100 {
    max-width: 100%;
}

.maxw140 {
    max-width: 140px;
}

.maxw1400 {
    max-width: 1400px;
}

.maxw1600 {
    max-width: 1600px;
}

.maxw1700 {
    max-width: 1700px;
}

.maxw1800 {
    max-width: 1800px;
}

.maxw1850 {
    max-width: 1850px;
}

.fw300 {
    font-weight: 300;
}

.fw400 {
    font-weight: 400;
}

.fw500 {
    font-weight: 500;
}

.fw600 {
    font-weight: 600;
}

.fw700 {
    font-weight: 700;
}

.fw800 {
    font-weight: 800;
}

.fw900 {
    font-weight: 900;
}

.fwn {
    font-weight: normal;
}

.fwb {
    font-weight: bold;
}

.db {
    display: block;
}

.dib {
    display: inline-block;
}

.dif {
    display: inline-flex;
}

.df {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.dfr {
    display: flow-root;
}

.dn {
    display: none;
}

/* .ovh {
    overflow: hidden;
} */

.ovv {
    overflow: visible;
}

.posa {
    position: absolute;
}

.posr {
    position: relative;
}

.vam {
    vertical-align: middle;
}

.zi0 {
    z-index: 0;
}

.zi1 {
    z-index: 1;
}

.zi2 {
    z-index: 2;
}

.zi9 {
    z-index: 9;
}

.zi-1 {
    z-index: -1;
}

.curp {
    cursor: pointer;
}

.bdr1 {
    border: 1px solid #e9e9e9;
}

.bdr1-dark {
    border: 1px solid #222222;
}

.bdr1-white {
    border: 1px solid #ffffff;
}

.bdr2 {
    border: 2px solid #222222;
}

.bdrb1 {
    border-bottom: 1px solid #e9e9e9;
}

.bb-white-light {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.br-white-light {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.bdrb2-dark {
    border-bottom: 2px solid #222222;
}

.bdrt1 {
    border-top: 1px solid #e9e9e9;
}

.bdrl1 {
    border-left: 1px solid #e9e9e9;
}

.bdrl-eunry {
    border-left: 1px solid #d5aca1;
}

.bdrr1 {
    border-right: 1px solid #e9e9e9;
}

.border-title-color {
    border: 1px solid #222222;
}

.bbn {
    border-bottom: none;
}

.border-none,
.no-border {
    border: none;
}

.white-bdrt1 {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gray-bdrb1 {
    border-bottom: 1px solid #ecedf2;
}

.gray-bdrt1 {
    border-top: 1px solid #ecedf2;
}

.bdrs0 {
    border-radius: 0;
}

.bdrs4 {
    border-radius: 4px;
}

.bdrs6 {
    border-radius: 6px;
}

.bdrs8 {
    border-radius: 8px;
}

.bdrs12 {
    border-radius: 5px;
}

.bdrs16 {
    border-radius: 16px;
}

.bdrs24 {
    border-radius: 24px;
}

.bdrs20 {
    border-radius: 20px;
}

.bdrs30 {
    border-radius: 30px;
}

.bdrs32 {
    border-radius: 32px;
}

.bdrs50 {
    border-radius: 50px;
}

.bdrs60 {
    border-radius: 60px;
}

.bdrs90 {
    border-radius: 90px;
}

.bdrs120 {
    border-radius: 120px;
}

.bdrs12-right-y {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.before-none:before {
    display: none;
}

.after-none:after {
    display: none;
}

.wa {
    width: auto !important;
}

.text-white-light {
    color: rgba(255, 255, 255, 0.7);
}

.text-dark-light {
    color: rgba(34, 34, 34, 0.7);
}

.text {
    color: var(--headings-color);
    font-family: var(--title-font-family);
    font-weight: 400;
}

.default-box-shadow1 {
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}

.hover-default-box-shadow1:hover {
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}

.default-box-shadow2 {
    -webkit-box-shadow: 0px 5px 20px rgba(91, 187, 123, 0.15);
    -moz-box-shadow: 0px 5px 20px rgba(91, 187, 123, 0.15);
    -o-box-shadow: 0px 5px 20px rgba(91, 187, 123, 0.15);
    box-shadow: 0px 5px 20px rgba(91, 187, 123, 0.15);
}

.default-box-shadow3 {
    -webkit-box-shadow: 0px 25px 70px rgba(1, 33, 58, 0.07);
    -moz-box-shadow: 0px 25px 70px rgba(1, 33, 58, 0.07);
    -o-box-shadow: 0px 25px 70px rgba(1, 33, 58, 0.07);
    box-shadow: 0px 25px 70px rgba(1, 33, 58, 0.07);
}

.default-box-shadow4 {
    -webkit-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    -moz-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    -o-box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
    box-shadow: 10px 10px 40px rgba(34, 34, 34, 0.05);
}

.default-box-shadow5 {
    -webkit-box-shadow: 0px 10px 35px rgba(5, 16, 54, 0.1);
    -moz-box-shadow: 0px 10px 35px rgba(5, 16, 54, 0.1);
    -o-box-shadow: 0px 10px 35px rgba(5, 16, 54, 0.1);
    box-shadow: 0px 10px 35px rgba(5, 16, 54, 0.1);
}

.default-box-shadow6 {
    -webkit-box-shadow: 10px 10px 0px #ffede8;
    -moz-box-shadow: 10px 10px 0px #ffede8;
    -o-box-shadow: 10px 10px 0px #ffede8;
    box-shadow: 10px 10px 0px #ffede8;
}

.default-box-shadow7 {
    -webkit-box-shadow: 0px 40px 30px rgba(25, 25, 46, 0.04);
    -moz-box-shadow: 0px 40px 30px rgba(25, 25, 46, 0.04);
    -o-box-shadow: 0px 40px 30px rgba(25, 25, 46, 0.04);
    box-shadow: 0px 40px 30px rgba(25, 25, 46, 0.04);
}

.box-shadow-none {
    box-shadow: none;
}

@media (max-width: 767.98px) {
    .bdrrn-sm {
        border-right: none;
    }

    .bb1-md {
        border-bottom: 1px solid #e9e9e9;
    }

    .wa-md {
        width: auto;
    }
}
@media (max-width: 767.98px) {
    .slider-dib-sm.owl-theme .owl-stage-outer {
        display: inline-block;
    }

    .bb1-sm {
        border-bottom: 1px solid #e9e9e9;
    }
}
hr {
    background-color: #e9e9e9;
}

@media (max-width: 1199.98px) {
    h1 {
        font-size: 36px;
    }
}

/* ############################### */
.top-navbar {
    background-color: #222222 !important;
    padding: 1px 1px;
}

.top-navbar a {
    color: #fff;
    /* margin-right: 20px; */
    font-size: 14px;
    text-decoration: none;
}

.top-navbar a:hover {
    color: #00cedc;
}

.marquee-box {
    max-width: 600px;
    overflow: hidden;
}

@media (max-width: 767.98px) {
    .top-navbar {
        display: none !important;
    }
}

.alshhh-sea {
    width: 100%;
    position: relative;
    display: flex;
}

.searTermalsddddd {
    width: 100%;
    border: 2px solid #ececec !important;
    border-right: none !important;
    padding: 5px !important;
    border-radius: 5px 0 0 5px !important;
    outline: none;
}

.searTermalsddddd:focus {
    color: #000;
    border: 2px solid #ececec;
}

.searchButtonal-shbtnddd {
    width: 40px;
    border: 2px solid #ececec;
    background: transparent;
    text-align: center;
    color: #000;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 15px;
}
.searchButtonal-shbtnddd:hover {
    width: 40px;
    border: 2px solid #ececec;
    background: transparent;
    text-align: center;
    color: #00cedc;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 15px;
}

.searTermalsddddd::placeholder {
    color: #6b7177;
}

/*Resize the wrap to see the search bar change!*/
.after-login-search-headdddd {
    width: 30%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.custom-dashboard-menu {
    position: relative;
    background-color: #fff;
    border-bottom: 1px solid #e9e9e9;
}

.menu-link {
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.menu-link:hover {
    color: #00cedc;
}

.dropdown-wrapper {
    position: relative;
}

.dropdown-menu-box {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    min-width: 180px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    z-index: 99;
    padding: 10px 0;
}

.dropdown-menu-box a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

.dropdown-menu-box a:hover {
    background-color: #f2f2f2;
}

/* Show dropdown on hover */
.dropdown-wrapper:hover .dropdown-menu-box {
    display: block;
}

/* Settings dropdown align to right */
.dropdown-wrapper.dropdown-right .dropdown-menu-box {
    left: auto;
    right: 0;
}

/* Hide on mobile */
@media (max-width: 767.98px) {
    .custom-dashboard-menu {
        display: none !important;
    }
}

.notif-badge {
    position: absolute;
    width: 18px;
    height: 18px;
    top: -10px;
    right: 9px;
    background: #bc5b5b;
    color: white;
    font-size: 11px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.mail-badge {
    position: absolute;
    top: -10px;
    right: 7px;
    width: 18px;
    height: 18px;
    background: #bc5b5b;
    color: white;
    font-size: 11px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 1;
}

.like-badge {
    position: absolute;
    top: -10px;
    right: 6px;
    width: 18px;
    height: 18px;
    background: #bc5b5b;
    color: white;
    font-size: 11px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 1;
}

.submenu-items {
    background-color: #f8f9fa; /* Light grey */
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-radius: 4px;
}

.innerOrders-Completed-text {
    color: #6c757d;
    font-size: 18px;
    font-weight: 600;
}
.innerOrders-Completed-number {
    color: #00cedc;
    font-size: 18px;
    font-weight: 600;
}

.inner-nav-tab .nav-link {
    background-color: #f1f1f1;
    border: none;
    color: #333;
    margin-right: 8px;
    font-weight: 500;
    border-radius: 5px;
}

.inner-nav-tab .nav-link:hover {
    background-color: #e0e0e0;
    color: #008992;
}

.inner-nav-tab .nav-link.active {
    background-color: #00cedc;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
    border: none;
}

.share-save-widget:hover {
    background-color: transparent;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.share-save-widget:hover .icon,
.share-save-widget:hover .h6 {
    color: #00cedc; /* blue color on hover */
}

.hover-opacity:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.single-proposal-price-colo {
    color: #00cedc !important;
}

/* afterloginpage css start */
.aftldashboard {
    display: flex;
}
.buyerpage-postjobheading {
    font-size: 28px;
}
.aftlsidebar {
    width: 300px;
    background: #fff;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    border-right: 1px solid #ddd;
    height: 100vh;
    overflow-y: auto;
    position: sticky;
    top: 0;
}

@media (max-width: 767.98px) {
    .aftlsidebar {
        display: none !important;
    }
}

.aftlsidebar a i {
    margin-right: 10px;
}

.main-wrapper {
    flex: 1;
    padding: 20px;
    background-color: #f1f1f1;
}

@media (max-width: 767.98px) {
    .main-wrapper {
        width: 100%;
        padding: 20px 20px 70px 20px;
        box-sizing: border-box;
    }
}

.aftlsidebar a.active {
    background: #f1f1f1;
    color: #000;
    border-radius: 8px;
}

.aftlsidebar a.active i {
    color: #000;
}

.aftlsidebar h2 {
    font-size: 25px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0px;
}

.aftlsidebar p {
    font-size: 16px;
    margin-bottom: 0px;
}

.aftlsidebar a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 10px 0;
}

.aftlsidebar a:hover {
    background: #f1f1f1;
    color: #000;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.tab-buttons {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
    gap: 10px;
}

@media (max-width: 768px) {
    .tab-buttons {
        display: none;
    }
}

.tab-buttons button.active {
    background: #1f1f1f;
    color: #ffffff;
    font-weight: 600;
}

.usernameaftl {
    color: #008992;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 15px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #666;
}

.table-wrapper,
.faq {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #eee;
}

th {
    background: #f1f3f5;
}

.badge {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 12px;
}

.stats-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-card {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    flex: 1 1 250px;
    max-width: 350px;
    box-sizing: border-box;
}

.stat-card h3 {
    margin: 0;
    color: #00cedc;
    font-size: 24px;
    font-weight: 600;
}
.stat-card h4 {
    color: #6c757d;
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 600px) {
    .stats-grid {
        gap: 15px;
    }

    .stat-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.accordion button {
    width: 100%;
    text-align: left;
    background: #f1f3f5;
    border: none;
    padding: 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 5px;
}

.accordion-content {
    display: none;
    padding: 10px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.current-membershipaftl span {
    color: #f80d0d;
}

.bookmark-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
    align-items: center;
    gap: 10px;
}

.bookmark-popup i {
    margin-right: 8px;
}

.swi-selebtn i {
    transform: rotate(0deg);
}

.hire-animated-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.hire-animated-box {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.hire-animated-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.hire-icon {
    font-size: 28px;
    color: #00cedc;
    margin-bottom: 15px;
}

.hire-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hire-desc {
    font-size: 14px;
    color: #555;
}

@media screen and (max-width: 768px) {
    .hire-animated-wrapper {
        flex-direction: column;
    }
}

.manage-services-filters {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 15px;
}

.btn-status-tab {
    background: #ffffff;
    border: 1px solid #ccc;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-status-tab:hover {
    background: #00cedc;
    color: #fff;
}

.btn-status-tab.active {
    background: #00cedc;
    color: #fff;
    font-weight: 600;
}

.count-badge {
    background: #f1fcfa;
    padding: 3px 6px;
    border-radius: 10%;
    color: #000;
    margin-left: 5px;
    font-size: 12px;
}

.service-img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    margin-right: 8px;
    vertical-align: middle;
    border-radius: 6px;
}

.status-label {
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    width: 100%;
    color: #000;
    display: inline-block;
    text-align: center;
}

.status-label.completed {
    background-color: #28a7452b;
    /* green */
}

.status-label.pending {
    background-color: #007bff21;
    /* blue */
}

.status-label.in-progress {
    background-color: #fd7e141a;
    /* orange */
}

.status-label.cancelled {
    background-color: #dc354526;
    /* red */
}

.status-label.delivered {
    background-color: #6f42c121;
    /* purple */
}

.pagination-controls {
    text-align: center;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.freelancers-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.rising-freelancer-box {
    flex: 0 0 calc(50% - 10px); /* 2 cards per row with gap */
    box-sizing: border-box;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
}
/* Mobile: full width */
@media (max-width: 768px) {
    .rising-freelancer-box {
        flex: 0 0 100%;
    }
}

.freelancer-info {
    display: flex;
    /* align-items: center; */
    gap: 15px;
}

.freelancer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00cedc;
}

.freelancer-details {
    max-width: 600px;
}

.freelancer-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.freelancer-skills {
    font-size: 14px;
    color: #666;
    margin: 4px 0;
}

.freelancer-rating {
    font-size: 13px;
    margin: 3px 0;
}

.freelancer-price {
    font-size: 14px;
    font-weight: 500;
    margin: 5px 0;
}

.freelancer-hire-btn {
    background-color: #00cedc;
    border: none;
    color: white;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.freelancer-hire-btn:hover {
    background-color: #00b3c6;
}
/* afterloginpage css end */

/* selector-skills-page strat */

.seller-sec {
    background-color: #f5f5f5; /* light grey background */
    padding: 60px 20px;
    min-height: 100vh;
}

/* Mobile view ke liye */
@media (max-width: 768px) {
    .seller-sec {
        padding: 20px;
    }
}

.selle-skill-page {
    max-width: 1280px;
    margin: auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* Mobile view ke liye */
@media (max-width: 768px) {
    .selle-skill-page {
        padding: 15px;
    }
}

.seller-text-para-skill {
    text-align: left;
}

.skills-sele-heading {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    color: #222;
    text-align: left;
}

/* Mobile view ke liye */
@media (max-width: 768px) {
    .skills-sele-heading {
        font-size: 20px;
    }
}

.seller-skill-logo-wrap {
    text-align: center;
}

.seller-skill-logo {
    max-height: 70px;
}

.seller-skill-wrapper {
    max-width: 1200px;
    margin: auto;
}

.seller-skill-header {
    text-align: center;
    margin-bottom: 30px;
}

.seller-skill-columns {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.seller-skill-box {
    flex: 1;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    min-height: 300px;
    max-height: 400px;
    overflow-y: auto;
}

#categoryBox {
    max-height: 260px;
    /* limit to approx 6 categories */
    overflow-y: auto;
}

.seller-skill-box h3 {
    font-size: 16px;
    margin-bottom: 15px;
}

.seller-skill-item,
.seller-skill-selected {
    padding: 10px 14px;
    margin-bottom: 6px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #000;
}

.seller-skill-item:hover {
    background-color: #f1f9ff;
    border-color: #00cedc;
}

.seller-skill-search:focus {
    outline: none;
    border: 2px solid #00cedc;
    box-shadow: 0 0 0 2px rgba(0, 206, 220, 0.2);
}
.seller-name-input:focus {
    outline: none;
    border: 2px solid #00cedc;
    box-shadow: 0 0 0 2px rgba(0, 206, 220, 0.2);
}
.seller-bio-input:focus {
    outline: none;
    border: 2px solid #00cedc;
    box-shadow: 0 0 0 2px rgba(0, 206, 220, 0.2);
}
.seller-bio-textarea:focus {
    outline: none;
    border: 2px solid #00cedc;
    box-shadow: 0 0 0 2px rgba(0, 206, 220, 0.2);
}
.seller-lang-input:focus {
    outline: none;
    border: 2px solid #00cedc;
    box-shadow: 0 0 0 2px rgba(0, 206, 220, 0.2);
}
.seller-lang-date:focus {
    outline: none;
    border: 2px solid #00cedc;
    box-shadow: 0 0 0 2px rgba(0, 206, 220, 0.2);
}

.seller-skill-icon {
    font-weight: bold;
    font-size: 18px;
    color: #00cedc;
}

.seller-skill-icon.checked {
    color: #28a745; /* Bootstrap-style green */
}

.seller-skill-selected {
    display: inline-block;
    margin: 4px 5px 4px 0;
    background: #f5f5f5;
    color: #000;
}

.seller-skill-selected span {
    margin-left: 6px;
    color: #00cedc;
    cursor: pointer;
}

.seller-skill-search {
    width: 100%;
    padding: 10px;
    /* margin-bottom: 20px; */
    border-radius: 6px;
    border: 1px solid #ccc;
}

.seller-skill-next-btn {
    margin-top: 30px;
    display: block;
    background: #00cedc;
    color: white;
    font-weight: bold;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.disabled {
    background: #ccc !important;
    cursor: not-allowed;
}

/* Middle Skills Box */
#skillsBox {
    max-height: 260px;
    /* same as category box */
    overflow-y: auto;
}

/* Right Selected Skills Box */
#selectedBox {
    max-height: 260px;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .seller-skill-columns {
        flex-direction: column;
    }
}

/* selector-skills-page end */

/* seller name css start */

.seller-name-body {
    background: #f5f5f5;
    margin: 0;
    padding: 0;
}

.seller-name-container {
    max-width: 600px;
    margin: 80px auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.seller-name-icon {
    width: 120px;
    height: 120px;
    background: #f0f0f0;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #888;
    position: relative;
}

.seller-name-upload-btn {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #00cedc;
    color: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
}

.seller-name-heading {
    font-size: 32px;
    font-weight: 700;
    color: #222;
}

.seller-name-subtext {
    color: #666;
    margin-bottom: 20px;
}

.seller-name-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.seller-name-btn-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.seller-name-btn {
    flex: 1;
    padding: 12px;
    font-weight: bold;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.seller-name-btn-back {
    background: #e0e0e0;
}

.seller-name-btn-next {
    background: #00cedc;
    color: white;
}

/* seller name css end */
/* seller about your self css strat */
.seller-bio-body {
    background: #f5f5f5;
    font-family: "Segoe UI", sans-serif;
    margin: 0;
    padding: 0;
}

.seller-bio-container {
    max-width: 600px;
    margin: 80px auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.seller-bio-icon {
    font-size: 42px;
    color: #00cedc;
    text-align: center;
    margin-bottom: 10px;
}

.seller-bio-heading {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    text-align: center;
}

.seller-bio-subtext {
    color: #666;
    font-size: 14px;
    text-align: center;
    margin-bottom: 30px;
}

.seller-bio-label {
    font-weight: bold;
    display: block;
    margin: 12px 0 6px;
}

.seller-bio-input,
.seller-bio-textarea {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.seller-bio-textarea {
    resize: vertical;
    min-height: 120px;
}

.seller-bio-btn-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.seller-bio-btn {
    flex: 1;
    padding: 12px;
    font-weight: bold;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.seller-bio-btn-back {
    background: #e0e0e0;
}

.seller-bio-btn-next {
    background: #00cedc;
    color: white;
}
/* seller about your self css end */
/* seller language css start */

.seller-lang-body {
    background: #f5f5f5;
    font-family: "Segoe UI", sans-serif;
    margin: 0;
}

.seller-lang-container {
    max-width: 600px;
    margin: 80px auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.seller-lang-icon {
    font-size: 42px;
    color: #00cedc;
    text-align: center;
    margin-bottom: 10px;
}

.seller-lang-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
    text-align: center;
}

.seller-lang-subtext {
    color: #666;
    font-size: 14px;
    text-align: center;
    margin-bottom: 30px;
}

.seller-lang-label {
    font-weight: bold;
    display: block;
    margin: 16px 0 8px;
}

.seller-lang-input,
.seller-lang-date {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.seller-lang-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.seller-lang-tag {
    background-color: #00cedc;
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    display: flex;
    align-items: center;
}

.seller-lang-tag span {
    margin-left: 8px;
    cursor: pointer;
}

.seller-lang-btn-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.seller-lang-btn {
    flex: 1;
    padding: 12px;
    font-weight: bold;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.seller-lang-btn-back {
    background: #e0e0e0;
}

.seller-lang-btn-next {
    background: #00cedc;
    color: white;
}
/* seller language css end */
/* seller email verify css start */

.seller-email-body {
    background: #f5f5f5;
    font-family: "Segoe UI", sans-serif;
    margin: 0;
    padding: 0;
}

.seller-email-container {
    max-width: 600px;
    margin: 80px auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.seller-email-icon {
    font-size: 64px;
    color: #00cedc;
    margin-bottom: 30px;
}

.seller-email-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.seller-email-message {
    font-size: 16px;
    color: #444;
    margin-bottom: 30px;
}

.seller-email-address {
    font-weight: bold;
    font-size: 18px;
    color: #222;
    margin-bottom: 20px;
}

.seller-email-actions a {
    display: inline-block;
    margin: 6px 12px;
    font-weight: bold;
    color: #00cedc;
    text-decoration: none;
    font-size: 15px;
}

.seller-email-btn-back {
    margin-top: 30px;
    background: #e0e0e0;
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
}

/* seller email verify css End */
/* select roll css start  */

.roleSelect-radio {
    display: none;
}

.roleSelect-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0 auto;
}

.roleSelect-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.25s ease;
    text-decoration: none;
    display: block;
    text-align: center;
    cursor: pointer;
}

.roleSelect-card:hover {
    border-color: #00cedc;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 206, 220, 0.12);
}

/* selected state: highlight whole card and fill radio */
.roleSelect-card.selected {
    border-color: #00c8d2;
}

.roleSelect-radio-circle {
    position: absolute;
    top: 0rem;
    right: 0rem;
    width: 22px;
    height: 22px;
    border: 2px solid #00c8d2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* inner filled dot (hidden by default) */
.roleSelect-radio-circle::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #00c8d2;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

/* fill the radio indicator when card is selected or input is checked */
.roleSelect-card.selected .roleSelect-radio-circle,
.roleSelect-card
    input.roleSelect-radio:checked
    + .card-content
    .roleSelect-radio-circle {
    /* box-shadow: 0 0 0 4px rgba(0, 200, 210, 0.2); */
    border-color: #00c8d2;
}

/* reveal inner dot when selected */
.roleSelect-card.selected .roleSelect-radio-circle::before,
.roleSelect-card
    input.roleSelect-radio:checked
    + .card-content
    .roleSelect-radio-circle::before {
    opacity: 1;
}

.roleSelect-card input.roleSelect-radio {
    display: none;
}

.roleSelect-card div[style] i {
    font-size: 32px;
    color: #00cedc;
    width: 80px;
    height: 80px;
    background: #e1f8f9;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.icon-container.company {
    background: #fff0e6;
}

.icon-container.company i {
    color: #ff6b00;
}

.icon-container.partner {
    background: #e1f8f9;
}

.icon-container.partner i {
    color: #00cedc;
}

.roleSelect-card strong,
.roleSelect-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.roleSelect-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.wp-badge-style {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f1f5f9;
    font-size: 12px;
    color: #334155;
    border: 1px solid #e2e8f0;
}

.roleSelect-subtext {
    margin-top: 10px;
    color: #666;
    font-size: 13px;
    opacity: 0;
    text-align: center;
    transition: opacity 0.25s ease;
}

.roleSelect-subtext.show {
    opacity: 1;
}

@media (max-width: 768px) {
    .roleSelect-options {
        grid-template-columns: 1fr;
    }
}

/* RoleSelect Button */
.roleSelect-btn {
    padding: 10px 28px;
    background: #fff;
    border: 2px solid #1f1f1f;
    border-radius: 8px;
    color: #1f1f1f;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    /* display: none; */
    width: 28%;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: all 0.4s ease;
}

@media (max-width: 768px) {
    .roleSelect-btn {
        width: 70%;
    }
}

.roleSelect-btn.show {
    display: inline-block;
}

.roleSelect-btn:before {
    background-color: #1f1f1f;
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    width: 0;
    z-index: -1;
    transform: skew(50deg);
    transform-origin: top left;
    transition: width 0.6s ease;
}

.roleSelect-btn:hover {
    color: #fff;
    border: 2px solid #1f1f1f;
}

.roleSelect-btn:hover:before {
    width: 200%;
}

.roleSelect-login {
    margin-top: 25px;
    font-size: 14px;
}

.roleSelect-login a {
    color: #00cedc;
    text-decoration: none;
    font-weight: bold;
}

.choose-your-role-btn-bu-se {
    display: flex;
    justify-content: center;
}

/* select roll css End  */
/* header hire by category start  */
#uniqueCategoryToggleBtn {
    background: #fff;
    border: none;
    color: #000;
    padding: 5px 15px;
    font-size: 16px;
    border: 2px solid #dfdfdf;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

#uniqueCategoryToggleBtn #uniqueToggleIcon {
    font-size: 20px;
    line-height: 1;
}

.unique-hire-cat-dropdown {
    position: absolute;
    top: 54px;
    left: 215px;
    width: 100%;
    max-width: 1000px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    display: flex;
    border: 1px solid #ddd;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 9999;
}

.unique-hire-cat-dropdown.show {
    visibility: visible;
    opacity: 1;
}

/* Sidebar - categories list */
.unique-category-sidebar {
    width: 330px;
    max-height: 440px;
    overflow-y: auto;
    border-right: 1px solid #eee;
    padding: 0px 0;
    box-sizing: border-box;
}

/* Shared scrollbar styles for sidebar and submenu */
.unique-category-sidebar,
.unique-submenu-container {
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #888 #e5e5e54d; /* thumb and track */
}

/* WebKit browsers */
.unique-category-sidebar::-webkit-scrollbar,
.unique-submenu-container::-webkit-scrollbar {
    width: 4px;
}

.unique-category-sidebar::-webkit-scrollbar-track,
.unique-submenu-container::-webkit-scrollbar-track {
    background: #ccc; /* grey track */
}

.unique-category-sidebar::-webkit-scrollbar-thumb,
.unique-submenu-container::-webkit-scrollbar-thumb {
    background-color: #888; /* darker grey thumb */
    border-radius: 10px;
    border: 1px solid #ccc; /* optional: border for nicer thumb */
}

.unique-category-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0 0px;
}

.unique-category-sidebar ul li {
    padding: 20px 0px 20px 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-left: 3px solid transparent;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
    position: relative;
    font-weight: 500;
    color: #222;
}

/* Icons with Font Awesome before each item */
.unique-category-sidebar ul li[data-submenu="uniqueSubmenu1"]::before {
    content: "\f121";
    /* font-family: "Font Awesome 6 Free"; */
    font-weight: 900;
    position: absolute;
    left: 10px;
    font-size: 16px;
    color: #000;
}

.unique-category-sidebar ul li[data-submenu="uniqueSubmenu2"]::before {
    content: "\f1fc";
    /* font-family: "Font Awesome 6 Free"; */
    font-weight: 900;
    position: absolute;
    left: 10px;
    font-size: 16px;
    color: #000;
}

.unique-category-sidebar ul li[data-submenu="uniqueSubmenu3"]::before {
    content: "\f3c7";
    /* font-family: "Font Awesome 6 Free"; */
    font-weight: 900;
    position: absolute;
    left: 10px;
    font-size: 16px;
    color: #000;
}

.unique-category-sidebar ul li[data-submenu="uniqueSubmenu4"]::before {
    content: "\f319";
    /* font-family: "Font Awesome 6 Free"; */
    font-weight: 900;
    position: absolute;
    left: 10px;
    font-size: 16px;
    color: #000;
}

.unique-category-sidebar ul li[data-submenu="uniqueSubmenu5"]::before {
    content: "\f130";
    /* font-family: "Font Awesome 6 Free"; */
    font-weight: 900;
    position: absolute;
    left: 10px;
    font-size: 16px;
    color: #000;
}

.unique-category-sidebar ul li[data-submenu="uniqueSubmenu6"]::before {
    content: "\f03d";
    /* font-family: "Font Awesome 6 Free"; */
    font-weight: 900;
    position: absolute;
    left: 10px;
    font-size: 16px;
    color: #000;
}

.unique-category-sidebar ul li[data-submenu="uniqueSubmenu7"]::before {
    content: "\f1ad";
    /* font-family: "Font Awesome 6 Free"; */
    font-weight: 900;
    position: absolute;
    left: 10px;
    font-size: 16px;
    color: #000;
}

.unique-category-sidebar ul li[data-submenu="uniqueSubmenu8"]::before {
    content: "\f1ec";
    /* font-family: "Font Awesome 6 Free"; */
    font-weight: 900;
    position: absolute;
    left: 10px;
    font-size: 16px;
    color: #000;
}

/* Hover styles */
.unique-category-sidebar ul li:hover,
.unique-category-sidebar ul li.active {
    background-color: #e0f8fa;
    border-left-color: #00cedc;
    border-radius: 5px;
    color: #000;
}

/* Right submenu container - 3 columns x 2 rows grid with scroll */
.unique-submenu-container {
    flex: 1;
    padding: 20px 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: min-content;
    gap: 30px 40px;
    max-height: 440px;
    overflow-y: auto;
}

/* Each submenu block - display:block for grid children */
.unique-category-submenu {
    display: none;
    min-width: 0;
}

/* Show active submenu */
.unique-category-submenu.active {
    display: contents;
    /* allows direct children to be grid items */
}

/* Each submenu column */
.unique-submenu-column {
    flex: none;
    min-width: 0;
}

.unique-submenu-column h4 {
    font-weight: 500;
    color: #222;
    margin-bottom: 10px;
    font-size: 15px;
}

.unique-submenu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.unique-submenu-column ul li {
    padding: 6px 0;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    transition: color 0.2s;
}

.unique-submenu-column ul li:hover {
    color: #00aebc;
}

/* Hide dropdown on mobile */
@media (max-width: 768px) {
    .unique-hire-cat-dropdown {
        display: none !important;
    }
}
/* header hire by category End  */

/* hire expert css start */

.HAE-filter-sidebar {
    max-width: 400px;
    margin: 0 auto;
}

.HAE-filter-container {
    /* border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    background-color: #fff; */
}

.HAE-accordion {
    width: 100%;
}

.HAE-card {
    margin-bottom: 1rem;
    background: transparent;
    border: none;
}

.HAE-card-header {
    padding: 0.5rem 0;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

.HAE-btn-link {
    background: none;
    border: none;
    padding: 0;
    font-size: 16px;
    color: #222;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    text-align: left;
}

.HAE-btn-link:focus {
    outline: none;
    color: #00cedc;
}

.HAE-card-body {
    padding: 0 10px 10px;
    display: block;
}

.HAE-card-body.active {
    display: block;
}

/* Scrollable checkbox list ONLY for Skills */
.HAE-checkbox-list-skills {
    max-height: 260px;
    overflow-y: auto;
    padding-right: 10px;
}

.HAE-checkbox-list-skills::-webkit-scrollbar {
    width: 6px;
}

.HAE-checkbox-list-skills::-webkit-scrollbar-thumb {
    background-color: #bbb;
    border-radius: 10px;
}

.HAE-checkbox-list-skills {
    scrollbar-width: thin;
    scrollbar-color: #bbb transparent;
}

/* Non-scroll checkbox list for others */
.HAE-checkbox-list {
    max-height: none;
    overflow: visible;
    padding-right: 0;
}

.HAE-checkbox-wrap {
    display: block;
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    color: #333;
}

.HAE-checkbox-wrap input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.HAE-checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #eee;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.HAE-checkbox-wrap:hover input ~ .HAE-checkmark {
    background-color: #ccc;
}

.HAE-checkbox-wrap input:checked ~ .HAE-checkmark {
    background-color: #00cedc;
    border-color: #00b9c9;
}

.HAE-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.HAE-checkbox-wrap input:checked ~ .HAE-checkmark:after {
    display: block;
}

.HAE-checkbox-wrap .HAE-checkmark:after {
    left: 6px;
    top: 3px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.HAE-link {
    font-size: 14px;
    color: #00cedc;
    cursor: pointer;
    display: inline-block;
    margin-top: 8px;
    text-decoration: none;
}

.HAE-link:hover {
    text-decoration: underline;
}

/* hire expert css End */

/* cate-fillllllllllllll start */

/* Filter Bar container */
.cate-fil-app-filter-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Filters container for desktop */
.cate-fil-app-filters-row {
    display: flex;
    gap: 12px;
    flex: 1 1 auto;
    flex-wrap: nowrap;
}

/* Sort by container */
.cate-fil-app-sort-wrapper {
    flex: 0 0 auto;
}

/* Filter buttons common */
.cate-fil-app-filter-btn {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    padding: 15px 13px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 150px;
    user-select: none;
    transition: background-color 0.25s ease;
    justify-content: space-between;
}

.cate-fil-app-filter-btn:hover {
    background-color: #00cddc25;
}

.cate-fil-app-filter-btn svg {
    width: 30px;
    height: 25px;
    fill: #444;
    transition: transform 0.3s ease;
}

.cate-fil-app-filter-btn.active svg {
    transform: rotate(180deg);
}

/* Dropdown wrapper */
.cate-fil-app-dropdown-wrapper {
    position: relative;
    /* This is important for dropdown positioning */
    display: inline-block;
}

/* Dropdown menus desktop */
.cate-fil-app-dropdown-menu {
    position: absolute;
    top: 100%;
    /* right below the button */
    left: 0;
    min-width: 300px;
    max-width: 320px;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    padding: 20px 22px;
    display: none;
    z-index: 9999;
    box-sizing: border-box;
    margin-top: 6px;
}

.cate-fil-app-dropdown-menu.show {
    display: block;
}

/* Dropdown content */
.cate-fil-app-dropdown-section {
    margin-bottom: 20px;
}

.cate-fil-app-dropdown-section:last-child {
    margin-bottom: 0;
}

.cate-fil-app-dropdown-section h5 {
    margin: 0 0 14px 0;
    font-weight: 700;
    font-size: 16px;
    color: #222;
}

.cate-fil-app-dropdown-item {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.cate-fil-app-dropdown-item:last-child {
    margin-bottom: 0;
}

.cate-fil-app-dropdown-item input[type="checkbox"],
.cate-fil-app-dropdown-item input[type="radio"] {
    accent-color: #000;
    cursor: pointer;
    width: 16px;
    height: 16px;
}

.cate-fil-app-budget-inputs {
    display: flex;
    gap: 14px;
    flex-direction: column;
}

.cate-fil-app-budget-inputs input {
    flex: 1;
    padding: 9px 14px;
    font-size: 14px;
    border-radius: 10px;
    border: 1px solid #bbb;
}

.cate-fil-app-apply-btn {
    margin-top: 14px;
    width: 100%;
    background-color: #2563eb;
    color: #fff;
    font-weight: 700;
    border: none;
    padding: 12px 0;
    font-size: 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cate-fil-app-apply-btn:hover {
    background-color: #1d4ed8;
}

/* Sort select */
.cate-fil-app-sort-select {
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    padding: 12px 13px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    user-select: none;
    transition: background-color 0.25s ease;
    justify-content: space-between;
}

/* All Filter button for mobile */
.cate-fil-app-all-filter-btn-mobile {
    display: none;
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    color: #000;
    padding: 15px 18px;
    width: 45%;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.cate-fil-app-all-filter-btn-mobile:hover {
    background-color: #00cddc25;
}

.cate-fil-app-all-filter-btn-mobile img {
    height: 20px;
    width: 20px;
}

/* Sidebar for mobile All Filter */
.cate-fil-app-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: 3px 0 20px rgba(0, 0, 0, 0.15);
    padding: 24px 20px;
    overflow-y: auto;
    transition: left 0.3s ease;
    z-index: 15000;
    display: flex;
    flex-direction: column;
}

.cate-fil-app-sidebar.open {
    left: 0;
}

.cate-fil-app-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.cate-fil-app-sidebar-header h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.cate-fil-app-sidebar-close-btn {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    color: #444;
}

/* Sidebar vertical filters */
.cate-fil-app-sidebar-filter-section {
    margin-bottom: 28px;
}

.cate-fil-app-sidebar-filter-section h4 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 14px;
    color: #111;
}

.cate-fil-app-sidebar-filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 15px;
    color: #333;
    cursor: pointer;
}

.cate-fil-app-sidebar-filter-item input[type="checkbox"],
.cate-fil-app-sidebar-filter-item input[type="radio"] {
    accent-color: #000;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.cate-fil-app-sidebar-budget-inputs {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    flex-direction: column;
}

.cate-fil-app-sidebar-budget-inputs input {
    flex: 1;
    padding: 10px 14px;
    font-size: 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
}

/* Responsive: Desktop vs Mobile */
@media (max-width: 768px) {
    .cate-fil-app-filter-bar {
        display: none;
        /* Hide desktop filters */
    }

    .cate-fil-app-all-filter-btn-mobile {
        display: flex;
        /* Show mobile All Filter button */
    }
}

.onlmobivie {
    display: none; /* Default: hide on desktop */
}

@media only screen and (max-width: 768px) {
    .onlmobivie {
        display: block; /* Show on mobile */
    }
}
.mobile-filllt-bestse {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.mobile-filllt-bestse-hire-expert {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* cate-fillllllllllllll end */

.freelan-skils-hire-dropdown {
    position: relative;
    width: 280px;
    font-family: Arial, sans-serif;
}

.freelan-skils-hire-btn {
    width: 100%;
    padding: 15px 13px;
    font-weight: 600;
    font-size: 15px;
    color: #222;
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.freelan-skils-hire-arrow {
    /* font-size: 12px; */
    width: 30px;
    height: 25px;
    color: #444;
    transition: transform 0.3s ease;
}

.freelan-skils-hire-btn[aria-expanded="true"] .freelan-skils-hire-arrow {
    transform: rotate(180deg);
}

.freelan-skils-hire-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 444px;
    max-width: 320px;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    padding: 20px 22px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    z-index: 10000;
}

.freelan-skils-hire-menu.show {
    display: flex;
}

.freelan-skils-hire-search {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    outline: none;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.freelan-skils-hire-search:focus {
    border: 2px solid #00cedc;
    box-shadow: 0 0 0 2px rgba(0, 206, 220, 0.2);
}

.freelan-skils-hire-list {
    overflow-y: auto;
    max-height: 220px;
    padding: 10px 14px;
}

.freelan-skils-hire-list label {
    display: block;
    padding: 6px 0;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
}

.freelan-skils-hire-list input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
    accent-color: #000;
    width: 16px;
    height: 16px;
}

.freelan-skils-hire-show-online-wrapper {
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    padding: 15px 13px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 150px;
    user-select: none;
    transition: background-color 0.25s ease;
    justify-content: space-between;
}

.freelan-skils-hire-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #000;
}

.freelan-skils-hire-label {
    cursor: pointer;
    flex: 1;
    color: #000000;
}

.favourite-icon {
    cursor: pointer;
    font-size: 18px;
    color: #999;
    transition: color 0.3s ease;
}

.favourite-icon.active {
    color: red !important; /* red */
}

.d-flex.gap-2 > .ud-btn {
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.chat-btn {
    background-color: #00cedc;
    border: none;
    color: white;
}

.verified-icon {
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
    user-select: none;
}

.member-since-tetx {
    color: #000;
}
.member-sinc-date {
    color: #6b7177;
    font-size: 16px;
}

.feee-skil-lancer-wrapper {
    overflow: hidden;
    width: 100% !important; /* adjust as per design */
    margin-bottom: 20px !important;
}
.feee-skil-lancer-wrapper-buyer-secaft {
    overflow: hidden;
    margin-bottom: 20px !important;
}

.feee-skil-lancer {
    transition: transform 0.5s ease;
    white-space: nowrap;
}

.feee-skil-lancer-item {
    display: inline-block;
    width: 100% !important; /* adjust as per design */
    padding: 10px 15px;
    user-select: none;
    border-radius: 6px;
}

.bott-menu-fix-every-page {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 99999;

    /* Start hidden */
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

/* Show menu on scroll */
.bott-menu-fix-every-page.show {
    transform: translateY(0);
}

.bott-menu-fix-every-page i.fas {
    color: #222; /* Sab icons ka ek jaisa color */
}

.bott-menu-fix-every-page .notif-badge {
    background-color: #e74c3c;
    color: white;
    font-weight: 600;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 12px;
    position: absolute;
    top: 5px;
    right: 10px;
}

.bott-menu-fix-every-page a {
    position: relative;
    color: white;
    font-size: 24px;
    text-decoration: none;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Badge style */
.bott-menu-fix-every-page a .notif-badge {
    position: absolute;
    top: 5px;
    right: 8px;
    background: #e74c3c;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 50%;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.custom-badge {
    position: absolute;
    width: 22px;
    height: 22px;
    top: 15px;
    right: -5px;
    background: #bc5b5b;
    color: white;
    font-size: 11px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.mobilemenu-user {
    position: relative;
    cursor: pointer;
}

.dropdown-menu-custom {
    display: none;
    position: absolute;
    top: 96%;
    right: 0;
    left: 0;
    width: auto;
    min-width: 220px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    padding: 5px 0;
}

.dropdown-menu-custom.show {
    display: block;
}

.dropdown-item-custom:hover {
    background-color: #f8f9fa;
    color: #000;
}

.submenu-toggle-btn {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 8px 15px;
    font-size: 14px;
    cursor: pointer;
}

.submenu-items-custom {
    padding-left: 20px;
}

.submenu-item {
    padding: 6px 15px;
    font-size: 13px;
}

.dropdown-user-info {
    padding: 6px 15px;
    gap: 10px;
    font-size: 14px;
}

.dropdown-user-info i {
    color: #333;
    font-size: 18px;
}

.badge.bg-info {
    font-size: 12px;
    font-weight: 600;
    padding: 7px 20px;
    border-radius: 5px;
}

.dropdown-item-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 15px;
    color: #333;
    font-size: 14px;
    line-height: 40px;
    text-decoration: none;
    transition: background-color 0.2s ease;
    white-space: nowrap;
    margin: 0; /* ensure koi extra margin na ho */
}

.dropdown-item-custom + .dropdown-item-custom {
    margin-top: 2px; /* thoda chhota gap items ke beech */
}

.dropdown-item-custom:hover {
    background-color: #f1f1f1;
    color: #000;
}
.logout-item {
    cursor: pointer;
    margin-top: 8px; /* thoda kam kiya */
    padding: 10px 15px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
}

/* ##################### */

@media (max-width: 768px) {
    .only-desktop-viewmssss {
        display: none !important;
    }
}

.aftlo-mobile-ms {
    display: none; /* Desktop par hide */
    padding: 0;
}
@media (max-width: 768px) {
    .aftlo-mobile-ms {
        display: block; /* Mobile par show */
    }
}

.aftlo-mobile-ms .service-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 0.1);
    margin-bottom: 15px;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.service-card .top-row {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.service-card .top-row img {
    width: 85px;
    height: 85px;
    border-radius: 5%;
    object-fit: cover;
    flex-shrink: 0;
}

.service-card .top-row .summary-and-seller {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    color: #333;
    font-size: 14px;
}

.service-card .top-row .summary {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 6px;
}

.service-card .top-row .summary-and-seller div {
    margin-bottom: 3px;
    font-weight: 500;
}

.slc-statuslab {
    display: flex;
    justify-content: space-between;
    background: #e5e5e54d;
    padding: 10px 15px;
    align-items: center;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 10px;
}

.order-status {
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #000;
    text-align: center;
    width: 40%;
}

.order-status.completed {
    background-color: #28a7452b; /* green */
}

.order-status.pending {
    background-color: #007bff21; /* blue */
}

.order-status.in-progress {
    background-color: #fd7e141a; /* orange */
}

.order-status.cancelled {
    background-color: #dc354526; /* red */
}

.order-status.delivered {
    background-color: #6f42c121; /* purple */
}

/* ##################### */

.manage-services-heading-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0 20px 0;
}

.manage-services-heading-wrapper .section-title {
    margin: 0;
    font-weight: 700;
    font-size: 24px;
}

.manage-services-heading-wrapper .arrows {
    display: flex;
    gap: 12px;
}

.manage-services-heading-wrapper .arrows button {
    font-size: 28px;
    background: #00cddc25;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    padding: 6px 12px;
    user-select: none;
}

/* Slider container */
.mob-aft-log-sli-manas {
    position: relative;
    padding: 0px 0 20px 0;
    max-width: 100%;
    overflow: hidden;
}

@media (min-width: 769px) {
    .manage-services-heading-wrapper,
    .mob-aft-log-sli-manas {
        display: none !important;
    }
}

/* Show slider only on mobile */
@media (max-width: 768px) {
    .mob-aft-log-sli-manas {
        display: block;
    }
}

/* Hide slider on desktop */
@media (min-width: 769px) {
    .mob-aft-log-sli-manas {
        display: none;
    }
}

.mob-aft-log-sli-manas .slider-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 5px;
    user-select: none;
}

.mob-aft-log-sli-manas .slider-track::-webkit-scrollbar {
    display: none;
}

.mob-aft-log-sli-manas .btn-status-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 8px 18px;
    border-radius: 25px;
    border: 1.5px solid #00cedc;
    background: #fff;
    color: #444444;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    /* box-shadow: 0 2px 6px rgb(0 123 255 / 0.15); */
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.mob-aft-log-sli-manas .btn-status-tab.active,
.mob-aft-log-sli-manas .btn-status-tab:hover {
    background-color: #00cedc;
    color: #fff;
    /* box-shadow: 0 4px 10px rgb(0 123 255 / 0.3); */
}

.mob-aft-log-sli-manas .count-badge {
    background-color: #008992;
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 12px;
    color: #fff;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
}

.consult-card {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 5px;
    padding: 16px 20px;
    border: 1px solid #e9e9e9;
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    gap: 20px;
}
.consult-image {
    flex-shrink: 0;
}
.consult-image img {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    object-fit: contain;
}
.consult-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.consult-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #111;
}
.consult-details {
    display: flex;
    align-items: center;
    gap: 50px;
    color: #555;
    font-size: 15px;
}
.consult-details svg {
    width: 18px;
    height: 18px;
    fill: #555;
}
.consult-details span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.consult-time {
    color: #0066cc;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}
.consult-time svg {
    width: 16px;
    height: 16px;
    fill: #0066cc;
}
.consult-tag {
    display: inline-block;
    background: #f1fcfa;
    color: #444;
    padding: 5px 12px;
    font-size: 13px;
    border-radius: 20px;
    width: fit-content;
}
.consult-btn {
    background: none;
    border: 2px solid #2e7d32;
    color: #2e7d32;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.consult-btn:hover {
    background-color: #2e7d32;
    color: white;
}

#manageOrdersSlider.dragging {
    cursor: grabbing;
    cursor: -webkit-grabbing;
}

/* Desktop visible, mobile hidden */
.rbj-desktop-view-seller {
    display: block;
}
.rbj-mobile-view-seller {
    display: none;
}

/* Mobile view toggle */
@media (max-width: 768px) {
    .rbj-desktop-view-seller {
        display: none;
    }
    .rbj-mobile-view-seller {
        display: block;
    }
}

/* Mobile cards styling */
.seller-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 16px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
}
.seller-card div {
    margin-bottom: 10px;
}
.seller-card strong {
    color: #6b7177;
    width: 90px;
    display: inline-block;
}
.btn-view {
    background: #00cedc;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.3s ease;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    /* width: 40%; */
}
.btn-view:hover {
    background: #bec1c6;
    color: #fff !important;
}

/* ##### seller profile setting starting## */

body.seller-profile-page-aftl-body {
    background-color: #f9fafb;
    margin: 20px;
    font-family: var(--body-font-family);
}

.seller-profile-page-aftl-container {
    /* max-width: 900px; */
    background: #f5f5f5;
    margin: auto;
    border-radius: 6px;
    padding: 30px 35px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.seller-profile-page-aftl-heading {
    font-weight: 700;
    font-size: 28px;
    color: #222;
    margin-bottom: 15px;
}

.seller-profile-page-aftl-subheading {
    font-size: 18px;
    font-weight: 600;
    color: #444;
    margin-bottom: 20px;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 10px;
}

.seller-profile-page-aftl-alert {
    background-color: #d4edda;
    color: #155724;
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 15px;
    margin-bottom: 25px;
    border: 1px solid #c3e6cb;
}

.seller-profile-page-aftl-form {
    display: grid;
    gap: 15px 30px;
}

.seller-profile-page-aftl-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.seller-profile-page-aftl-input,
.seller-profile-page-aftl-select,
.seller-profile-page-aftl-textarea {
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
    border: 1.5px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    transition: 0.3s border-color ease;
}

.seller-profile-page-aftl-input:focus,
.seller-profile-page-aftl-select:focus,
.seller-profile-page-aftl-textarea:focus {
    outline: none;
    border-color: #00cedc;
    box-shadow: 0 0 5px #00cedc;
}

.seller-profile-page-aftl-file-preview {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.seller-profile-page-aftl-file-preview img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.seller-profile-page-aftl-full-width {
    grid-column: 1 / -1;
}

.seller-profile-page-aftl-textarea {
    resize: vertical;
    min-height: 100px;
}

.seller-profile-page-aftl-help-text {
    font-size: 12px;
    color: #666;
    margin-top: 3px;
}

.seller-profile-page-aftl-button {
    grid-column: 1 / -1;
    background-color: #fff;
    border: 2px solid #00cedc;
    color: #000000;
    font-size: 17px;
    font-weight: 600;
    padding: 9px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.seller-profile-page-aftl-button:hover {
    background-color: #bec1c6;
    border: 2px solid #bec1c6;

    color: #fff;
}

@media (max-width: 720px) {
    .seller-profile-page-aftl-form {
        grid-template-columns: 1fr;
    }

    .seller-profile-page-aftl-full-width {
        grid-column: 1;
    }
}

.seller-profile-page-aftl-button svg,
.seller-profile-page-aftl-button i {
    vertical-align: middle;
    margin-right: 6px;
    font-size: 17px;
}

/* ##### seller profile setting endg## */

/* new page add work form  */
:root {
    --pri: #6c5ce7;
    --bg: #f7f7fb;
    --txt: #1f2430;
    --mut: #60697b;
    --radius: 14px;
}

.apply-shell {
    background: var(--bg);
    padding: 28px 16px 56px;
}
.apply-card {
    width: min(100%, 1100px);
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    padding: 28px;
}
.apply-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 6px;
}
.apply-sub {
    color: var(--mut);
    margin-bottom: 18px;
}
.apply-alert {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    padding: 10px 12px;
    border-radius: 10px;
    margin-bottom: 14px;
}

.apply-form {
    margin-top: 8px;
}
.apply-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}
@media (min-width: 900px) {
    .apply-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.f-col2 {
    grid-column: 1 / -1;
}

.f-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.f-label {
    font-weight: 600;
}
.f-label span {
    color: #ef4444;
}
.f-input,
.f-select,
.f-textarea,
.f-file {
    width: 100%;
    padding: 12px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    background: #fff;
}
.f-input:focus,
.f-select:focus,
.f-textarea:focus {
    border-color: var(--pri);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
}
.is-invalid {
    border-color: #ef4444 !important;
}
.f-error {
    color: #b91c1c;
}
.f-help {
    color: var(--mut);
    font-size: 0.9rem;
}

.f-check {
    align-items: center;
}
.f-checkLabel {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    margin-top: 14px;
    background: var(--pri);
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.05s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
    box-shadow: 0 10px 24px rgba(108, 92, 231, 0.3);
}
.btn-primary:active {
    transform: translateY(1px);
}

/* new page add work form end  */

/* looking-form-css sytart */
.im-lf-w-root {
    margin: 0;
    color: #111;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    font-family: var(--body-font-family);
}

/* links */
.im-lf-w-root a {
    color: #111;
    text-decoration: none;
}
.im-lf-w-root a:hover {
    text-decoration: underline;
}

/* layout */
.im-lf-w-shell {
    width: 80%;
}
.im-lf-w-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

/* card */
.im-lf-w-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
}
.im-lf-w-header {
    padding: 22px 22px 0 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.im-lf-w-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #111;
}
.im-lf-w-h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
    margin: 0;
}
.im-lf-w-sub {
    margin: 4px 0 0;
    color: #555;
    font-size: 13px;
}
.im-lf-w-content {
    padding: 20px 22px 22px;
}
.im-lf-w-grid {
    display: flex;
    gap: 14px;
}
@media (min-width: 880px) {
    .im-lf-w-grid {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: start;
    }
}

/* form */
#signupForm {
    width: 65%;
    display: grid;
    gap: 14px;
}
.im-lf-w-field {
    display: grid;
    gap: 8px;
}
.im-lf-w-label {
    /* color: #111; */
    color: var(--headings-color);
    font-weight: 500;
    font-size: 15px;

    font-family: var(--title-font-family);
    /* margin-bottom: 0.5rem; */
}

.im-lf-w-input {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #dcdcdc;
    padding: 12px 14px;
    border-radius: 10px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.im-lf-w-input i {
    color: #666;
}
.im-lf-w-input:focus-within {
    border-color: #111;
    border: 1px solid #00cedc;
}
.im-lf-w-input input,
.im-lf-w-input select {
    width: 100%;
    background: transparent;
    border: 0;
    outline: none;
    color: #111;
    font-size: 15px;
}

.im-lf-w-muted {
    color: #6b7177;
    font-weight: 600;
    font-size: 15px;
}
.im-lf-w-muted-dd {
    color: #6b7177;
    font-weight: 600;
    font-size: 24px;
}

.im-lf-w-row {
    display: grid;
    gap: 12px;
}

.ndcjhdcb {
    width: 50%;
}

@media (min-width: 540px) {
    .im-lf-w-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* password */
.im-lf-w-pwd-wrap {
    display: grid;
    gap: 8px;
}
.im-lf-w-pwd-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.im-lf-w-toggle-eye {
    cursor: pointer;
    color: #555;
}
.im-lf-w-strength {
    height: 8px;
    background: #eee;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
}
.im-lf-w-strength > span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ef4444, #f59e0b, #16a34a);
    transition: width 0.25s;
}
.im-lf-w-strength-text {
    font-size: 12px;
    color: #555;
}

input[type="checkbox" i] {
    background-color: #00cedc;
}

/* terms + actions */
.im-lf-w-terms {
    display: flex;
    gap: 10px;
    font-size: 13px;
    align-items: center;
    color: #111;
}
.im-lf-w-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 2px;
}
.im-lf-w-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 50%;
    padding: 12px 16px;
    border-radius: 4px;
    border: 1px solid #111;
    background: #00cedc;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s, filter 0.1s;
}
.im-lf-w-btn:hover {
    background-color: #00cedc;
    filter: brightness(0.92);
}
.im-lf-w-btn:disabled {
    /* opacity: 0.6; */
    cursor: not-allowed;
}
.im-lf-w-secondary {
    background: #00cedc;
    color: white !important;
}

/* oauth */
.im-lf-w-oauth {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.im-lf-w-oauth .im-lf-w-btn {
    background: #fff;
    color: #111;
}
.im-lf-w-oauth .im-lf-w-btn:hover {
    background: #f2f2f2;
}
.im-lf-w-btn:hover {
    border-color: #00cedc;
    /* color: #00cedc; */
}

.im-lf-w-input input::placeholder {
    color: #9ca3af; /* Light gray */
    opacity: 1;
}

/* Facebook & Google icons stay straight */
.btn-fb i,
.btn-google i {
    transform: none !important;
}

/* side */
.im-lf-w-side {
    padding-left: 16px;
    /* padding-top: 16px; */
    border-left: 1px solid #00cedc;
    height: 90vh;
    width: 30%;
}
.im-lf-w-kpis {
    display: grid;
    gap: 12px;
    margin-top: 8px;
}
.im-lf-w-chip {
    background: #e5e5e54d;
    border: 1px solid #e5e5e5;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    color: #111;
}

/* modal */
.im-lf-w-modal {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    padding: 20px;
    z-index: 99;
    background: rgba(0, 0, 0, 0.4);
}
.im-lf-w-modal.im-lf-w-open {
    display: grid;
}

.im-lf-w-modal-card {
    width: min(520px, 100%);
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    color: #111;
}
.im-lf-w-h3 {
    margin: 6px 0 6px;
    font-size: 18px;
}

.im-lf-w-otp-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin: 12px 0;
}
.im-lf-w-otp-row input {
    text-align: center;
    font-size: 18px;
    padding: 10px 0;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    background: #fff;
    color: #111;
}
.im-lf-w-method {
    font-size: 13px;
    color: #555;
    margin-bottom: 2px;
}
.im-lf-w-method b {
    color: #111;
}

.im-lf-w-resend {
    font-size: 12px;
    color: #111;
    cursor: pointer;
    text-decoration: underline;
}

.im-lf-w-modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 6px;
}

/* small helpers */
.im-lf-w-visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* looking-form-css end */

/* ======= RESPONSIVE OVERRIDES (drop-in) ======= */

/* Shell max width + center */
.im-lf-w-shell {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Base (mobile-first): stack everything */
.im-lf-w-grid {
    flex-direction: column;
}
#signupForm {
    width: 100%;
}
.im-lf-w-side {
    width: 100%;
    height: auto;
    padding-left: 0;
    padding-top: 16px;
    border-left: 0;
    border-top: 1px solid #00cedc;
}

/* Inputs & rows spacing on small screens */
.im-lf-w-row {
    grid-template-columns: 1fr;
}

/* Action buttons: full width on mobile */
.im-lf-w-actions {
    flex-direction: column;
}
.im-lf-w-actions .ndcjhdcb {
    width: 100%;
}

/* Social buttons: full width on mobile, 50/50 on md+ */
.d-md-flex.justify-content-center.gap-3 {
    display: flex;
    gap: 12px;
}

/* Desktop (>=768px): 50%-50% */
@media (min-width: 768px) {
    .d-md-flex.justify-content-center.gap-3 .ud-btn {
        flex: 1 1 calc(50% - 6px);
        max-width: 100%;
    }
}
/* .d-md-flex.justify-content-center.gap-3 .ud-btn {
    flex: 1 1 100%;
} */

/* OTP boxes: comfy on small screens */
.im-lf-w-otp-row {
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}
@media (max-width: 420px) {
    .im-lf-w-otp-row input {
        font-size: 16px;
        padding: 8px 0;
    }
}

/* Keep FB/Google icons straight; others can stay rotated (-45deg elsewhere) */
.btn-fb i,
.btn-google i {
    transform: none !important;
}

/* Prevent layout break by long text */
.im-lf-w-card,
.im-lf-w-side,
.im-lf-w-input input {
    word-break: break-word;
}

/* ===== Breakpoints ===== */

/* ≥540px: two inputs per row, actions side-by-side */
@media (min-width: 540px) {
    .im-lf-w-row {
        grid-template-columns: 1fr 1fr;
    }
    .im-lf-w-actions {
        flex-direction: row;
    }
    .im-lf-w-actions .ndcjhdcb {
        width: 50%;
    }
}

/* ≥768px: little more breathing room */
@media (min-width: 768px) {
    .im-lf-w-header {
        padding: 24px 24px 0;
    }
    .im-lf-w-content {
        padding: 20px 24px 24px;
    }
}

/* ≥880px: split form (65%) + side (35%), side border left */
@media (min-width: 880px) {
    .im-lf-w-grid {
        flex-direction: row;
    }
    #signupForm {
        width: 65%;
    }
    .im-lf-w-side {
        width: 35%;
        border-top: 0;
        border-left: 1px solid #00cedc;
        padding-left: 16px;
        padding-top: 0;
        height: 100%;
    }
}

/* ≥992px: slightly larger paddings */
@media (min-width: 992px) {
    .im-lf-w-header {
        padding: 26px 26px 0;
    }
    .im-lf-w-content {
        padding: 22px 26px 26px;
    }
}

/* ===== Polishes (keep as-is if you like) ===== */

/* Placeholder color (uniform) */
.im-lf-w-input input::placeholder,
.im-lf-w-input select::placeholder {
    color: #9ca3af;
    opacity: 1;
}

/* Focus state already set; add subtle shadow */
.im-lf-w-input:focus-within {
    box-shadow: 0 0 0 3px rgba(0, 206, 220, 0.12);
}

/* Social icons spacing */
.pr10 {
    margin-right: 10px;
}

/* ==== beforehomefindwo dropdown visibility fixes ==== */

/* keep it above other headers */
.beforehomefindwo {
    position: relative;
    z-index: 500;
}

/* menu look + always visible text */
.beforehomefindwo-menu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 220px;
    margin-top: 0px;
    padding: 10px;
    background: #ffffff !important;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(2, 8, 20, 0.14);
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    visibility: hidden;
    z-index: 9999;
    /* sit on top */
}

/* open on hover/focus */
.beforehomefindwo:hover .beforehomefindwo-menu,
.beforehomefindwo:focus-within .beforehomefindwo-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
}

/* caret rotate on open */
.beforehomefindwo-caret {
    transition: transform 0.18s ease;
}

.beforehomefindwo:hover .beforehomefindwo-caret,
.beforehomefindwo:focus-within .beforehomefindwo-caret {
    transform: rotate(180deg);
}

/* ensure link text is dark even if navbar sets white */
.beforehomefindwo-menu .beforehomefindwo-link {
    display: block;
    padding: 10px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #0b1b20 !important;
    /* <-- force dark text */
    font-size: 14px;
}

.beforehomefindwo-menu .beforehomefindwo-link:hover {
    /* background: #bec1c6; */
    color: #00cedc !important;
}

/* if your nav/header has overflow hidden, un-hide just for dropdown */
.beforehomefindwo,
.beforehomefindwo-menu {
    overflow: visible;
}

/* (optional) make the toggle text visible on any bg */
.beforehomefindwo-toggle .title {
    color: inherit;
}

/* keeps whatever your nav uses */

/* Chat widget */
.chat-fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1f1f1f;
    color: #fff;
    font-size: 22px;
    border: none;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    cursor: pointer;
}

.chat-panel {
    position: fixed;
    right: 20px;
    bottom: 86px;
    width: min(360px, 95vw);
    max-height: 70vh;
    display: none;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
    z-index: 9999;
}

.chat-panel.active {
    display: flex;
}

.chat-head {
    padding: 10px 12px;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-body {
    padding: 12px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.msg {
    padding: 8px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    max-width: 80%;
}

.msg.me {
    align-self: flex-end;
    background: #e6fbfd;
    border-color: #b7eff5;
}

.msg.sys {
    background: #f1f5f9;
    border-style: dashed;
}

.msg .sub {
    display: block;
    font-size: 12px;
    color: #7a8591;
    margin-top: 4px;
}

.chat-foot {
    display: flex;
    gap: 8px;
    padding: 10px;
    border-top: 1px solid #e5e7eb;
}

/* --- Force ALL form fields to 90% width globally --- */
.input,
input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="file"],
input[type="search"],
input[type="tel"],
input[type="url"],
select,
textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

.input,
input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="file"],
input[type="search"],
input[type="tel"],
input[type="url"],
select,
textarea {
    display: block;
    margin-left: 0;
}

.input {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    font: inherit;
}

/* Custom Button Style */
.btn-custom1 {
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 28px;
    background: #fff;
    border: 2px solid #1f1f1f;
    color: #1f1f1f;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: all 0.4s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-custom1:before {
    background-color: #1f1f1f;
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    width: 0;
    z-index: -1;
    transform: skew(50deg);
    transform-origin: top left;
    transition: width 0.6s ease;
}

.btn-custom1:hover {
    color: #fff;
    border: 2px solid #1f1f1f;
}

.btn-custom1:hover:before {
    width: 200%;
}

/* ##################################################################################################### */
/* Enhanced Card Styling */
.freelancer-style1 {
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.freelancer-style1:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #e1e1e1;
}

/* Profile Section */
.freelancer-style1 .thumb {
    /* border: 2px solid #f0f0f0; */
    padding: 2px;
}

.freelancer-style1 .online {
    background: #1dbf73;
    border: 2px solid #fff;
}

.freelancer-style1 .title {
    color: #1b1b1b;
    font-weight: 600;
}

/* Skills and Badges */
.skills-badge {
    font-size: 12px;
    padding: 0px 14px;
    background: #f8f9fa;
    border-radius: 20px;
    color: #000000;
    /* margin: 0 6px 8px 0;s */
    display: inline-block;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

/* Success Metrics */
.success-badge {
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    margin: 0 8px 8px 0;
    display: inline-block;
    font-weight: 500;
}

.success-badge.success {
    background: #e6f7ed;
    color: #1dbf73;
}

.success-badge.info {
    background: #e6f3ff;
    color: #0d6efd;
}

.success-badge i {
    margin-right: 5px;
}

/* Rating and Level */
.seller-level {
    background: #fff8e6;
    color: #ffc107;
    padding: 0px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    border: 1px solid #ffe69c;
}

.seller-level i {
    font-size: 11px;
    margin-right: 5px;
}

/* Reviews and Stats */
.reviews-count {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.projects-count {
    font-size: 13px;
    color: #444;
    margin-bottom: 15px;
    padding: 8px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    display: inline-block;
}

.projects-count i {
    color: #1dbf73;
}

/* Member Since */
.member-since-tetx {
    font-size: 12px;
    color: #666;
}

.member-sinc-date {
    color: #1dbf73;
    font-weight: 500;
}

/* Skills Container */
.skill-tags {
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Metrics Layout */
.metrics-container {
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Location and Rate */
.location-rate {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.location-rate i {
    color: #666;
    margin-right: 5px;
}

/* Description Text */
.freelancer-desc {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 12px 0;
}
.freelancer-style1 {
    padding: 20px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.freelancer-style1:hover {
    transform: translateY(-5px);
}

.success-badge {
    font-size: 12px;
    padding: 0px 15px;
    border-radius: 15px;
    margin: 0 5px 5px 0;
    display: inline-block;
}

.success-badge.success {
    background: #e6f7ed;
    color: #1dbf73;
}

.success-badge.info {
    background: #e6f3ff;
    color: #0d6efd;
}

.reviews-count {
    font-size: 13px;
    color: #777;
}

.skill-tags {
    margin: 15px 0;
}

.metrics-container {
    margin: 15px 0;
}

/* ====== Profile page refined UI (keeps your existing classes) ====== */

/* Layout: sidebar + main */
.profile-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 18px;
    margin-top: 10px;
}

@media (max-width: 1000px) {
    .profile-layout {
        grid-template-columns: 1fr;
    }
}

.profile-sidebar {
    position: sticky;
    top: 84px;
    height: fit-content;
    background: #fff;
    border: 1px solid #eef1f4;
    border-radius: 14px;
    padding: 12px;
}

@media (max-width: 768px) {
    .profile-sidebar {
        display: none;
    }
}

.profile-main {
    min-width: 0;
}

/* Sidebar nav */
.step-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.step-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 10px;
    border: 1px solid transparent;
    color: #1f2937;
    text-decoration: none;
}

.step-link .dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid #dfe5ea;
    font-size: 12px;
    color: #6b7280;
    background: #fff;
}

.step-link:hover {
    background: #f7fafc;
}

.step-link.active {
    background: #f0fbfc;
    border-color: #00cedc;
    color: #0b1b20;
    font-weight: 700;
}

.step-link.active .dot {
    border-color: #00cedc;
    color: #007a84;
}

/* Section wrappers look like neat cards */
.seller-profile-page-aftl-form section[data-section],
.seller-profile-page-aftl-form section[data-step] {
    border: 1px solid #eef1f4;
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    /* margin: 18px 0; */
    box-shadow: 0 1px 0 rgba(18, 23, 29, 0.02);
}

/* Section titles compact */
.seller-profile-page-aftl-form
    section[data-section]
    > .seller-profile-page-aftl-heading,
.seller-profile-page-aftl-form
    section[data-step]
    > .seller-profile-page-aftl-heading {
    font-size: 22px;
    line-height: 1.2;
    margin: 0 0 12px 0;
    font-weight: 700;
    border-bottom: 1px dashed #edf2f7;
    padding-bottom: 8px;
}

/* Inner cards (Edu/Exp/Project rows) */
.seller-profile-page-aftl-form .card {
    border: 1px solid #edf2f7 !important;
    border-radius: 12px !important;
    padding: 14px !important;
    background: #fafafa;
}

.seller-profile-page-aftl-form .card + .card {
    margin-top: 10px;
}

/* Inputs focus like your theme */
.seller-profile-page-aftl-input,
.seller-profile-page-aftl-select,
.seller-profile-page-aftl-textarea {
    transition: box-shadow 0.15s, border-color 0.15s;
}

.seller-profile-page-aftl-input:focus,
.seller-profile-page-aftl-select:focus,
.seller-profile-page-aftl-textarea:focus {
    outline: none;
    border-color: #00cedc;
    box-shadow: 0 0 0 3px rgba(0, 206, 220, 0.18);
}

/* Labels a bit bolder for readability */
.seller-profile-page-aftl-label {
    font-weight: 600;
    color: #1f2937;
}

/* Add buttons – soft, subtle */
#addEducation,
#addExperience,
#addProject {
    background: #f6f9fb;
    color: #0b1b20;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

#addEducation:hover,
#addExperience:hover,
#addProject:hover {
    background: #eef2f7;
}

/* Remove buttons – neutral with gentle hover */
.btn-remove {
    background: #fff !important;
    color: #111 !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 10px !important;
}

.btn-remove:hover {
    background: #fee2e2 !important;
    border-color: #fecaca !important;
}

/* LinkedIn button look */
#btnLinkedIn {
    color: #fff;
    border: none;
    border-radius: 10px;
}

#btnLinkedIn:hover {
    filter: brightness(0.95);
}

/* Certificates preview thumbnails polished */
.seller-profile-page-aftl-file-preview img {
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

/* Tiny polish */
.req-star {
    margin-left: 4px;
}

.seller-profile-page-aftl-help-text {
    color: #6b7280;
}

/* ======= Custom Modal Styles ======= */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.modal.show {
    display: block;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.2s ease-out;
}

.modal-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 600px;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.3s ease-out forwards;
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h3 {
    margin: 0;
    font-size: 22px;
    color: #111827;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s;
}

.close-btn:hover {
    background: #f3f4f6;
    color: #111827;
}

.modal-body {
    padding: 24px;
}

.modal-subtitle {
    color: #6b7280;
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.5;
}

.choice-boxes {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.choice-box {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.choice-box:hover {
    border-color: #00cedc;
    background: #f0fbfc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 206, 220, 0.12);
}

.choice-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f0fbfc;
    color: #00cedc;
    display: grid;
    place-items: center;
    font-size: 24px;
}

.choice-content {
    min-width: 0;
}

.choice-content h4 {
    margin: 0 0 8px;
    font-size: 16px;
    color: #111827;
    font-weight: 600;
}

.choice-content p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.choice-arrow {
    color: #9ca3af;
    font-size: 20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.2s;
}

.choice-box:hover .choice-arrow {
    opacity: 1;
    transform: translateX(0);
    color: #00cedc;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.whbar {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.whbar-form {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 6px;
    box-shadow: 0 6px 24px rgba(2, 8, 20, 0.06);
}

.whbar-input {
    flex: 1;
    height: 48px;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 16px;
    color: #0b1b20;
    padding: 0 14px;
}

.whbar-input::placeholder {
    color: #9aa4ad;
}

.whbar-input:focus {
    box-shadow: none;
}

.whbar-btn {
    width: 54px;
    height: 48px;
    border-radius: 12px;
    background: #1f1f1f;
    color: #fff;
    border: 2px solid #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: filter 0.15s ease;
}

.whbar-btn:hover {
    filter: brightness(0.92);
}

.whbar,
.whbar-form {
    overflow: visible;
}
