@import url('https://fonts.googleapis.com/css2?family=Capriola&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: rgb(0, 98, 126);
    --highlight-color: #ff3131;
    --s_backgound-color: #f1f5fa;
    --secondary-color: #ffffff;
    --text-color: #202020;
    --p-color: #696969;
    font-family: 'Montserrat', sans-serif;
    font-family: 'Mulish', sans-serif;
    font-family: 'Poppins', sans-serif;
    font-family: "Capriola", sans-serif;
}

html {
    scroll-behavior: smooth;
}
p {
    font-size: 15px;
}


#topbar {
    width: 100%;
    height: auto;
    padding: 15px;
    background: rgb(0, 98, 126);
}

.topbar_li {
    padding: 0;
    margin: 0;
    text-align: center;
}

.topbar_li li {
    cursor: pointer;
    display: inline-block;
    padding: 0 22.5px;
    color: var(--secondary-color) !important;
    font-size: 15px;
}

.topbar_li li:nth-last-child(-n +1) {
    border-right: none;
}

.topbar_li li a {
    font-family: "Capriola", sans-serif;
}

/* navbar  */

ol,
ul {
    padding: 0 !important;
    margin: 0 !important;
}

nav {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: #ffffff;
    border-bottom: none;
    z-index: 999;
    border-radius: 0 !important;
    padding: 2px 0;
    box-shadow: 0px 3px 6px 0px rgba(5, 37, 95, 0.1);
}

nav .navbar {
    max-width: 100%;
    width: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 !important;
    border-radius: 0 !important;
    border: none;
}

.navbar .logo a {
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

nav .navbar .nav-links {
    line-height: 70px;
    height: 100%;
}

nav .navbar .links {
    display: flex;
    align-items: center;
}

nav .navbar .links li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0 12.5px;
}

nav .navbar .links li a {
    height: 100%;
    text-decoration: none;
    white-space: nowrap;
    color: #000000;
    font-size: 15px;
    font-weight: 400;
    font-family: "Capriola", sans-serif;
}

.links li:hover .main-arrow,
.links li:hover .js-arrow {
    transform: rotate(180deg);
}

nav .navbar .links li .arrow {
    position: relative;
    left: 1px;
    height: 100%;
    width: 22px;
    line-height: initial;
    text-align: center;
    display: inline-block;
    color: #000000;
    transition: all 0.3s ease;
}

nav .navbar .links li .more-arrow {
    color: #000 !important;
}

nav .navbar .links li .sub-menu {
    position: absolute;
    top: 70px;
    left: 0;
    line-height: 35px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
    display: none;
    z-index: 2;
    padding: 0;
    margin: 0;
}

nav .navbar .links li .sub-menu li a {
    color: #000000 !important;
}

nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
    display: block;
}

.navbar .links li .sub-menu li {
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .links li .sub-menu a {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
}

.navbar .links li .sub-menu .more-arrow {
    line-height: 40px;
}

.navbar .links li .htmlCss-more-sub-menu {
    /* line-height: 40px; */
}

.navbar .links li .sub-menu .more-sub-menu {
    position: absolute;
    top: 0;
    left: auto;
    right: 100%;
    border-radius: 0 4px 4px 4px;
    z-index: 1;
    display: none;
}

.links li .sub-menu .more:hover .more-sub-menu {
    display: block;
}

.navbar .search-box {
    position: relative;
    height: 40px;
    width: 40px;
}

.navbar .search-box i {
    position: absolute;
    height: 100%;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar .search-box .input-box {
    position: absolute;
    right: calc(100% - 40px);
    top: 80px;
    height: 60px;
    width: 300px;
    background: #3E8DA8;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.navbar.showInput .search-box .input-box {
    top: 65px;
    opacity: 1;
    pointer-events: auto;
    background: #3E8DA8;
}

.search-box .input-box::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    background: #3E8DA8;
    right: 10px;
    top: -6px;
    transform: rotate(45deg);
}

.search-box .input-box input {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    height: 35px;
    width: 280px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    border: none;
}

.navbar .nav-links .sidebar-logo {
    display: none;
}

.navbar .menu-bars {
    display: none;
}

.navbar .menu-close {
    display: none;
}

.navbar .nav-links .more.dropdown_toggle>.more-sub-menu {
    display: block !important;
}

.navbar .nav-links .main_dropdown.main_dropdown_toggle>.sub-menu {
    display: block !important;
}


#logo {
    height: 65px;
    position: relative;
    top: 2.5px;
}

.add-listing {
    padding: 8px 0 !important;
    border: none !important;
}

.add-listing:before {
    position: relative;
    padding: 5px 15px !important;
    top: 0;
    left: 0;
}

.user-login {
    top: 0;
}

.user-buttons {
    display: flex;
    align-items: center;
    position: relative;
    top: 0;
    gap: 10px;
    z-index: 9999 !important;
}

.user-login:before {
    color: rgb(0, 98, 126) !important;
}

.add {
    background: rgb(0, 98, 126) !important;
    color: #ffffff !important;
    padding: 10px 15px;
    font-family: "Capriola", sans-serif;
}

.add:hover {
    background: rgb(0, 98, 126) !important;
    color: #ffffff !important;
}

.add:focus {
    color: #ffffff !important;
}

.main_dropdown a {
    color: rgb(0, 98, 126) !important;
}

.arrow {
    color: rgb(0, 98, 126) !important;
}

.navbar .links li .sub-menu a:hover {
    color: rgb(0, 98, 126) !important;
    transition: all 0.3s ease-in;
}

@media (max-width:1400px) {

    nav .navbar {
        justify-content: space-between;
    }

    nav .navbar {
        max-width: 100%;
        padding: 0 25px;
    }

    nav .navbar .logo a {
        font-size: 27px;
    }

    nav .navbar .links li {
        padding: 0 8.5px;
        white-space: nowrap;
    }

    nav .navbar .links li a {
        font-size: 15px;
    }
}

@media (max-width:1310px) {

    nav .navbar {
        justify-content: space-between;
    }

    .navbar .logo a {
        margin-right: 0px;
    }

}

@media (max-width:1200px) {
    /* nav {
        position: relative;
    } */

    nav .navbar {
        display: block;
        padding: 0;
    }

    .navbar .menu-bars {
        display: block;
    }

    nav .navbar .nav-links {
        position: relative;
        top: 5px;
        right: 0;
        display: none;
        max-width: 100%;
        background: #ffffff !important;
        line-height: 40px;
        padding: 2.5px 10px;
        transition: all 0.5s ease;
        z-index: 1000;
    }

    nav .navbar .links {
        padding: 15px;
        background: #000000 !important;
    }

    nav {
        border-bottom: none;
    }

    .nav-toggle {
        border-bottom: none;
        padding: 2.5px 0;
    }

    nav .navbar .links li a {
        font-size: 15px;
        color: #ffffff !important;
    }

    nav .navbar .sub-menu li a {
        color: #000000 !important;
    }

    nav .navbar .links li .more .arrow {
        color: #000000 !important;
        text-align: right !important;
    }

    .navbar .nav-links .sidebar-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .sidebar-logo .logo-name {
        font-size: 25px;
        color: #fff;
    }

    .navbar .links li .sub-menu a {
        width: 100%;
    }

    nav .navbar .logo a {
        z-index: 9999 !important;
    }

    #logo {
        position: relative;
        left: 20px;
        z-index: 9999 !important;
    }

    .menu-bars {
        font-size: 38px;
        color: #000000;
        position: absolute;
        right: 25px;
        top: 20px;
        z-index: 9999 !important;
    }

    .menu-close {
        font-size: 38px;
        color: #000000;
        position: absolute;
        right: 25px;
        top: 20px;
        z-index: 9999 !important;
    }

    .sub-menu .more-arrow {
        transform: rotate(90deg);
    }

    .navbar .links li .more-sub-menu li {
        padding: 0 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .arrow {
        font-size: 20px;
        line-height: inherit !important;
    }

    nav .navbar .links {
        display: block;
        margin-top: 20px;
    }

    nav .navbar .links li .arrow {
        line-height: 40px;
        float: right;
        color: #ffffff;
    }

    nav .navbar .links li {
        display: block;
    }

    nav .navbar .links li .sub-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        display: none;
    }

    nav .navbar .links li .sub-menu li {
        border-bottom: none;
    }

    .navbar .links li .sub-menu .more-sub-menu {
        display: none;
        position: relative;
        left: 0;
    }

    .navbar .links li .sub-menu .more-sub-menu li {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .links li:hover .main-arrow,
    .links li:hover .js-arrow {
        transform: rotate(0deg);
    }

    .navbar .links li .sub-menu .more-sub-menu {
        display: none;
    }

    .navbar .links li .sub-menu .more span {
        /* background: red; */
        display: flex;
        align-items: center;
        /* justify-content: space-between; */
    }

    .links li .sub-menu .more:hover .more-sub-menu {
        display: none;
    }

    nav .navbar .links li:hover .htmlCss-sub-menu,
    nav .navbar .links li:hover .js-sub-menu {
        display: none;
    }

    .navbar .nav-links.show1 .links .htmlCss-sub-menu,
    .navbar .nav-links.show3 .links .js-sub-menu,
    .navbar .nav-links.show2 .links .more .more-sub-menu {
        display: block;
    }

    .navbar .nav-links.show1 .links .main-arrow,
    .navbar .nav-links.show3 .links .js-arrow {
        transform: rotate(180deg);
    }

    .navbar .nav-links .more.dropdown_toggle .more-arrow {
        transform: rotate(270deg);
    }

    .navbar .nav-links .main_dropdown.main_dropdown_toggle .main-arrow {
        transform: rotate(180deg);
    }

    .user-buttons {
        position: absolute;
        top: 15px;
        width: 100%;
        display: flex;
        justify-content: center;
        z-index: 99 !important;
    }
    .add{
        padding: 10px 12px;
    }

    /* .user-buttons{
        display: inline-table;
        top: 28px !important;
        margin: auto;
        position: absolute !important;
        text-align: center;
        left: 0;
        right: 0;
    } */

    .user-login:before {
        color: rgb(0, 98, 126);
        font-size: 15px;
        position: relative;
        right: 2.5px;
    }

    .add-listing:before {
        margin-left: 0;
    }

    .add-listing:before {
        font-size: 18px;
        left: 10px;
        top: 5px;
    }

    .user-buttons .add-listing {
        padding: 8px 15px;
    }

}


@media (max-width:500px) {
    #logo {
        left: 5px !important;
    }

    .menu-bars {
        font-size: 36px;
        color: #000000;
        position: absolute;
        right: 15px;
        top: 18px;
        z-index: 9999 !important;
    }

    .menu-close {
        font-size: 38px;
        color: #000000;
        position: absolute;
        right: 20px;
        top: 20px;
        z-index: 9999 !important;
    }
}

@media (max-width:370px) {
    nav .navbar .nav-links {
        max-width: 100%;
    }
}


/* end navbar  */


.banner {
    width: 100%;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.banner::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: url(../../images/wave.png);
}
#canvas-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    background: linear-gradient(rgba(0, 98, 126, 0.35), rgba(0, 98, 126, 0.35)), url(../../images/background.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -1;
}

#canvas-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
    z-index: -1;
}

.banner_main {
    position: relative;
    z-index: 99;
}

.banner_sh {
    font-family: "Capriola", sans-serif;
    color: #cccccc;
    font-weight: 600;
    font-size: 21px;
    letter-spacing: 0.35px;
}

.banner_form {
    width: 100%;
    height: auto;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 1);
    border-radius: 100px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: 5px solid rgba(0, 98, 126, 0.35);
}

.banner_form_input {
    border-right: 1px solid rgba(0, 0, 0, 0.15);
    flex: 1;
    font-family: "Capriola", sans-serif;
    padding: 0 15px;
}

.banner_form_input:nth-child(2) {
    border-right: none;
}

.bf_input {
    font-size: 15px;
    border: none;
    background: #fff;
    margin: 0;
    padding: 0px;
    height: auto;
    box-shadow: none;
    font-family: "Capriola", sans-serif;
    font-weight: 500;
    border-radius: 0;
}

.bf_input:focus {
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.banner_form_btn {
    padding: 10px 25px;
    background: var(--primary-color);
    border: none;
    color: var(--secondary-color);
    font-family: "Capriola", sans-serif;
    font-weight: 500;
    font-size: 16px;
    border-radius: 50px;
}

/* .banner_categories {
    margin-top: 25px;
} */
.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    flex-direction: row;
}

.categories a {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
    color: var(--secondary-color) !important;
    font-family: "mulish", sans-serif;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 15px 15px !important;
}

.categories a:before {
    font-size: 26px;
    transform: rotate(0deg);
    transition: all 1s;
}

.categories a:hover {
    color: #fff !important;
    border-radius: 15px 0;
    background-color: rgb(0, 98, 126) !important;
}

.categories a:hover:before {
    transform: rotate(360deg);
    transition: all 1s;
}


/* add listing  */

#add_listing_box {
    padding: 40px 0;
    width: 100%;
    height: auto;
}

.d_logo {
    width: 125px;
    margin: auto;
}

.add_listing_h {
    font-family: "Capriola", sans-serif;
    font-weight: 700;
    color: #323232;
    text-align: center;
    letter-spacing: 0.15px;
    padding: 15px 0 !important;
}

.listing_form_box {
    width: 100%;
    height: auto;
    background: var(--secondary-color);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 40px;
}

.lfb_h {
    background: var(--primary-color);
    padding: 20px !important;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.lfb_h i {
    padding: 8px;
    background: var(--secondary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 18px;
}



.lfb_p {
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    letter-spacing: 0.35px;
    color: var(--text-color);
    font-weight: 400;
    line-height: 29px;
}

.lfb_p a {
    color: var(--highlight-color) !important;
    cursor: pointer;
}

.modal-header {
    background: var(--primary-color);
}

.modal-title {
    font-family: "Capriola", sans-serif;
    font-weight: 500;
    color: var(--secondary-color);
}

.modal {
    background: rgba(0, 0, 0, 0.5);
}

.modal-body {
    padding: 20px;
}

.modal-dialog {
    top: 12%;
}

.close {
    font-size: 26px;
    color: var(--secondary-color);
    opacity: 1;
    font-weight: 500;
}

.close:hover {
    color: var(--secondary-color);
    opacity: 1;
}


/* Tabs */

.tabs {
    width: 100%;
}

ul.tabs {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 15px;
}

ul.tabs li {
    width: 50%;
    text-align: center;
    cursor: pointer;
    background: rgba(0, 98, 126, 0.15);
    padding: 15px;
    font-family: "Nunito", sans-serif;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.35px;
}
ul.tabs li a{
    display: block;
}

.tab_box.active {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transition: all 0.3s ease;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}

ul.tabs li.current {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.remember_forgot {
    margin-top: 20px;
}

.form-content {
    display: none;
    margin-top: 30px;
}

.remember_forgot label {
    margin-left: 5px;
}

.form-content.current {
    display: block;
}

.lr_input {
    height: auto;
    margin-top: 20px;
    padding: 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.lr_input:focus {
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.check-label {
    font-family: "Nunito", sans-serif;
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0px;
}

.check {
    padding: 10px !important;
}

.forgot {
    float: right;
    font-family: "Nunito", sans-serif;
    color: var(--highlight-color);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0px;
}

.signin {
    background-color: var(--primary-color);
    padding: 15px;
    width: 100%;
    color: var(--secondary-color);
    margin-top: 25px;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 18px;
}

.input_radio {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.input_radio label {
    font-family: 'Mulish', sans-serif;
    color: #707070;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 20px;
    padding-top: 10px;
}

:focus {
    outline: none;
}

.radio {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    background: #fff;
    width: 25px;
    height: 25px;
    background-clip: content-box;
    border-radius: 50%;
    accent-color: var(--primary-color);
    background-color: var(--primary-color);
}

.radio[type="radio"]:checked {
    accent-color: var(--primary-color) !important;
}

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

.add_listing_details {
    display: grid;
    flex-wrap: wrap;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.al_label {
    font-family: 'Mulish', sans-serif;
    color: #707070;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0px;
}

.al_input {
    height: auto;
    margin-top: 5px;
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Mulish', sans-serif;
    color: var(--text-color);
    letter-spacing: 0.15px;
}

.al_input::placeholder {
    font-family: 'Mulish', sans-serif;
    font-weight: 500;
    color: #707070;
    letter-spacing: 0.15px;
}

.required_inp {
    margin-top: 10px !important;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.required_inp .al_box {
    width: 95%;
}

.inputRemove {
    position: relative;
    top: 2.5px;
    width: 30px;
    height: 30px;
    font-size: 20px;
    background: none;
    border: 1px solid var(--highlight-color);
    color: var(--highlight-color);
}

.al_add_btn {
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-family: "Nunito", sans-serif;
    border: none;
    font-weight: 600;
    margin-top: 15px;
    border-radius: 2.5px;
}

.al_form_btn {
    padding: 15px 30px;
    background: var(--highlight-color);
    color: var(--secondary-color);
    font-family: "Nunito", sans-serif;
    border: none;
    font-weight: 600;
    font-size: 20px;
    margin-top: 10px;
    border-radius: 5px;
}

/* add listing  */


.business_categories {
    width: 100%;
    height: auto;
    background: #000;
    padding-bottom: 80px;
    position: relative;
}
.business_categories::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: url(../../images/wave.png);
}
.listing_box {
    width: 100%;
    max-width: 320px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    /* background: var(--secondary-color); */
    transition: all 0.3s ease;
    box-shadow: 0px 0px 15px 0px rgba(0, 98, 126, 0.35);
    transform: scale(0.92);
    margin: auto;
    margin-top: 40px;
}
.dark{
    background: rgba(255, 255, 255, 0.125);
}
.light{
    background: rgba(255, 255, 255, 1);
}

.listing_box_inner {
    position: relative;
    overflow: hidden;
}

.listing_box_image img {
    position: relative;
    border-radius: 50%;
    width: 100%;
    z-index: 9;
    background: var(--secondary-color);
}

.listing_box_content {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-radius: 50%;
    z-index: 9;
    overflow: hidden;
}

.lbc_h {
    font-family: "Capriola", sans-serif;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 18px;
}

.ribbon {
    color: #fff;
    background: rgb(0, 98, 126);
    position: relative;
    z-index: 600;
    height: 25px;
    margin-top: 10px;
    padding: 2px 5px 0 5px;
    font-family: "Capriola", sans-serif;
    font-size: 14px;
    display: inline-block;
    white-space: nowrap;
    text-align: center
}

.ribbon:before,
.ribbon:after {
    content: '';
    position: absolute;
    height: 0;
    border: 12.5px solid transparent;
    top: 0;
    width: 0;
    border-top-color: rgb(0, 98, 126);
    border-bottom-color: rgb(0, 98, 126);
    z-index: -1
}

.ribbon:before {
    left: -11px
}

.ribbon:after {
    right: -11px
}

.list_border {
    padding: 15px;
}

.list_border::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url(../../images/spiral.gif);
    background-position: center center;
    background-size: cover;
    z-index: -1;
    margin: 0;
    opacity: 0;
}

.listing_box:hover .list_border::before {
    z-index: 1;
    margin: 0;
    opacity: .14;
    transition: all 0.3s ease;
}

.listing_box:hover {
    background: var(--primary-color);
    transition: all 1s ease;
    transform: scale(1);
}
.listing_box_details{
    width: 100%;
    height: auto;
    padding: 20px 15px;
    text-align: center;
}
.lbd_icon{
    color: var(--secondary-color);
    font-size: 26px;
}
.listing_box_details a{
    font-family: "Capriola", sans-serif;
    font-weight: 600;
    color: var(--secondary-color) !important;
    letter-spacing: 0.15px;
}
.lbd_p{
    font-family: "Capriola", sans-serif;
    border-top: 1px dashed rgba(255, 255, 255, .5);
    padding: 10px !important;
    margin-top: 15px !important;
    color: var(--secondary-color);
    font-weight: 300;
    font-size: 14px;
}


/* business listing  */

.business_listing{
    width: 100%;
    height: auto;
    padding-bottom: 80px;
    background: var(--secondary-color);
    position: relative;
}
.business_listing::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: url(../../images/wave_dark.png);
}
.heading{
    margin-top: 80px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}
.main_heading{
    font-family: 'Capriola', sans-serif;
    position: relative;
    margin-top: 0;
    padding-bottom: 18px !important;
    left: 0;
    font-size: 36px;
    font-weight: 500;
}
.main_heading::after{
    content: "";
    position: absolute;
    width: 95%;
    bottom: 0;
    right: 0;
}
.bb_p::after{
    border-bottom: 1px dashed rgba(0, 98, 126, 0.4);
}
.bb_w::after{
    border-bottom: 1px dashed rgba(255, 255, 255, .4);
}
.bb_p::before{
    border-right: 1px dashed rgba(0, 98, 126, 0.4);
}
.bb_w::before{
    border-right: 1px dashed rgba(255, 255, 255, .4);
}
.c_p{
    color: var(--primary-color);
}
.c_w{
    color: var(--secondary-color);
}
.main_heading::before{
    font-family: 'icon';
    position: absolute;
    top: 100%;
    left: 14px;
    margin-top: -28px;
    font-size: 45px;
    width: 55px;
    padding-right: 10px;
    text-align: center;
}
.icon_location::before{
    content: "\ea7a";
}
.icon_fire::before{
    content: "\e938";
}
.icon_flash::before{
    content: "\eab9";
}

.business_listing_box{
    width: 100%;
    height: auto;
    margin-top: 40px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
}
.blb_title{
    padding: 30px 15px;
    /* background: url(../../images/advertise.jpg); */
    background: var(--primary-color);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.blbt_h{
    font-family: 'Capriola', sans-serif;
    color: var(--secondary-color);
    font-size: 19px;
    text-align: center;
    font-weight: 700;
}
.blb_list{
    padding: 25px 25px;
    height: 260px;
    overflow-x: scroll;
    margin-bottom: 25px;
    padding-bottom: 0;
}
.blbl_li{
    padding: 0;
    margin: 0;
}
.blbl_li li{
    list-style: none;
    color: var(--primary-color);
    line-height: 30px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.blbl_li li:nth-last-child(-n +1){
    border-bottom: none;
}
.blbl_li li a{
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    align-items: center;
    font-family: 'mulish', sans-serif;
    font-weight: bold;
}
.blbl_li li a i{
    font-size: 20px;
}

/* business listing  */


.featured_business{
    width: 100%;
    height: auto;
    padding-bottom: 80px;
    background: var(--secondary-color);
    position: relative;
}
.featured_business::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: url(../../images/wave_primary.png);
}

/* footer  */

.footer{
    width: 100%;
    height: auto;
    position: relative;
}
.footer_top{
    width: 100%;
    height: auto;
    padding: 40px 0;
    background: var(--primary-color);
    position: relative;
}
.footer_top::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: url(../../images/wave3.png);
}
.footer_top_box{
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    align-items: center;
}
.ftb{
    width: 25%;
}
.ftb i{
    color: var(--secondary-color);
    font-size: 23px;
}
.footer_p{
    font-family: 'Capriola', sans-serif;
    font-size: 15px;
    color: var(--secondary-color);
    padding-top: 6px !important;
}
.footer_social{
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    justify-content: center;
}
.footer_social li{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    border-radius: 50px;
    border: 5px solid rgba(0, 98, 126, .7);
    line-height: 0;
    transform: rotate(0deg);
    transition: all 1s;
}
.footer_social li i{
    color: var(--primary-color) !important;
    font-size: 20px;
}
.footer_social li:hover{
    transform: rotate(360deg);
    transition: all 1s;
}
.footer_links{
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.footer_links li{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    font-family: 'Capriola', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--secondary-color);
    letter-spacing: 0.15px;
}
.footer_bottom{
    width: 100%;
    height: auto;
    padding: 40px 0;
    background: #333;
    position: relative;
    text-align: center;
}
.footer_logo{
    margin: auto;
    height: 100px;
}
.copy_p{
    font-family: 'poppins', sans-serif;
    font-size: 14px;
    padding-top: 10px !important;
    color: #888;
    font-weight: 400;
    letter-spacing: 0.15px;
}

/* footer  */


/* listings page  */

.bredcum{
    width: 100%;
    height: auto;
    padding: 60px 20px; 
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    box-shadow: 0 1000px rgba(0, 0, 0, 0.6) inset;
    text-align: center;
    position: relative;
}
.bredcum::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: url(../../images/wave.png);
}
.cafe_img{
    background: url(../../images/cafe.jpg);
}
.blog_img{
    background: url(../../images/readingimage.jpg);
}
.bredcum_icon{
    color: var(--secondary-color);
    font-size: 56px;
}
.bredcum_h{
    font-family: 'Capriola', sans-serif;
    color: var(--secondary-color);
    line-height: inherit;
}
.bredcum_li{
    padding: 0;
    margin: 0;
    position: absolute;
    left: 40px;
    top: 40px;
    font-family: 'Capriola', sans-serif;
}
.bredcum_li li{
    display: inline-block;
    font-family: 'Capriola', sans-serif;
    color: var(--secondary-color);
}
.bredcum_li li i{
    font-size: 12px;
}
.dark .lbd_icon{
    color: var(--primary-color);
}
.dark a{
    color: var(--primary-color) !important;
}
.dark .lbd_p{
    color: var(--p-color);
    border-top: 1px dashed rgba(0, 98, 126, .6);
}
.bredcum_flag{
    position: absolute;
    bottom: 0;
    left: 15px;
    width: 50px;
    height: 40px;
    line-height: 50px;
    text-align: center;
    color: rgb(0, 98, 126);
    background: #fff;
    z-index: 10;
    font-size: 26px;
    border-radius: 8px 8px 0 0;
}
.listing_count_number{
    padding: 20px 0;
}
.lcn_h{
    font-family: 'Capriola', sans-serif;
    color: var(--primary-color);
    font-size: 36px;
    letter-spacing: 0.35px;
}
.lcn_h span{
    font-size: 20px;
}

/* listings page  */


/* listing details page  */

.listing_bredcum{
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: var(--secondary-color);
    position: relative;
}
.listing_bredcum::after{
    content: "";
    position: absolute;
    bottom: -31px;
    left: 0;
    width: 100%;
    height: 18px;
    background: url(../../images/wave2.png);
    z-index: 9;
}
.listing_bredcum_li{
    padding: 0;
    margin: 0;
    position: absolute;
    left: 25px;
    top: 25px;
    font-family: 'Capriola', sans-serif;
}
.listing_bredcum_li li{
    display: inline-block;
    color: var(--primary-color);
    font-weight: bold;
}
.listing_bredcum_li li a{
    font-family: 'Capriola', sans-serif;
}
.listing_bredcum_li li i{
    font-size: 12px;
    color: var(--primary-color);
}
.listing_bredcum_heading{
    text-align: center;
}
.listing_bredcum_h{
    display: inline-block;
    font-family: 'Capriola', sans-serif;
    color: var(--primary-color);
    line-height: inherit;
    border-top: 1px dashed rgba(0, 98, 126, .6);
    border-bottom: 1px dashed rgba(0, 98, 126, .6);
    padding: 5px 0;
}
.lb_rating{
    display: inline-block;
    position: relative;
    bottom: 7px;
    font-family: 'Capriola', sans-serif;
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    border-radius: 50px;
    font-size: 15px;
    text-align: center;
    line-height: 33px;
    letter-spacing: 0.35px;
    font-weight: bolder;
    color: var(--secondary-color) !important;
    transform: rotate(0deg);
    transition: all 1s;
}
.lb_rating:hover{
    transform: rotate(360deg);
    transition: all 1s;
    color: var(--secondary-color) !important;
}
.lb_map{
    font-size: 14px;
    font-family: 'Capriola', sans-serif;
    position: relative;
    bottom: 15px;
}

.listing_details_gallery{
    width: auto;
    height: auto;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: none;
    font-size: 0 !important;
    position: relative;
    cursor: grab;
}
.magnific-img{
    width: 30%;
}
.thumbnail{
    padding: 0;
    border: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none !important;
}

.listing_details_content{
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: var(--secondary-color);
    position: relative;
}
.listing_details_content::before{
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 18px;
    background: url(../../images/wave.png);
    z-index: 9;
}
.listing_dc_divider{
    width: 100%;
    height: auto;
    border: 1px dashed rgba(0, 98, 126, .35);
    position: relative;
}
.listing_dc_icon{
    width: 52px;
    height: 52px;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 30px;
    border-radius: 50px;
    margin: auto;
    box-shadow: 0px 0px 10px 0px rgba(0, 98, 126, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    bottom: 26px;
}

.listing_details_content_left{
    width: 100%;
    height: auto;
    padding: 20px 15px;
    border-right: 1px dashed rgba(0, 98, 126, .35);
}
.ldcl_image{
    width: 100%;
    max-width: 220px;
    height: auto;
    position: relative;
    margin: auto;
}
.ldcl_image img{
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0px 0px 10px 0px rgba(0, 98, 126, .3);
    margin: auto;
}
.ldcl_image i{
    min-width: 40px;
    min-height: 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 21px;
    border-radius: 50px;
    margin: auto;
    box-shadow: 0px 0px 10px 0px rgba(0, 98, 126, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 25px;
}
.ldcl_ribbon{
    text-align: center;
    padding: 15px 0;
}
.ribbon{
    color: #fff;
    background: rgb(0, 98, 126);
    position: relative;
    z-index: 600;
    height: 26px;
    padding: 2px 15px 0 15px;
    font-family: 'Capriola', sans-serif;
    font-size: 15px;
    display: inline-block;
    white-space: nowrap;
    text-align: center;
}
.ribbon:before, .ribbon:after {
    content: '';
    position: absolute;
    height: 0;
    border: 13px solid transparent;
    top: 0;
    width: 0;
    border-top-color: rgb(0, 98, 126);
    border-bottom-color: rgb(0, 98, 126);
    z-index: -1;
}
.ldcl_tl_divider{
    width: 100%;
    height: auto;
    border: 1px dashed rgba(0, 98, 126, .35);
    margin: 25px 0;
}
.ldcl_tr_divider{
    width: 100%;
    height: auto;
    border: 1px dashed rgba(0, 98, 126, .35);
    margin: 40px 0;
}
.sdcl_social{
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}
.sdcl_social li{
    list-style: none;
    font-size: 23px;
    color: var(--primary-color);
    transform: rotate(0deg);
    transition: all 1s;
}
.sdcl_social li:hover{
    transform: rotate(360deg);
    transition: all 1s;
}
.ldclt_p{
    font-family: 'Capriola', sans-serif;
    font-size: 15px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 15px !important;
    word-break: break-word;
}
.ldclt_p i{
    font-size: 22px;
    font-weight: 600;
}
.ldclt_p a{
    font-family: 'Capriola', sans-serif;
    display: inline-block;
}
.listing_details_content_right{
    width: 100%;
    height: auto;
    padding: 20px 0px;
}
.ldcr_description{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    background: rgba(0, 98, 126, .1);
    padding: 20px;
}
.ld_d{
    width: 75%;
    border-right: 1px dashed rgba(0, 98, 126, .35);
}
.ldcr_d_heading{
    font-family: 'Capriola', sans-serif;
    color: var(--primary-color);
    font-size: 26px;
    line-height: inherit;
}
.ldcr_d_heading::after{
    content: "\"";
}
.ldcr_d_heading::before{
    content: "\"";
}
.ldcr_d_p{
    font-family: 'poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 28px;
    padding-top: 10px !important;
}
.ldcr_d_p::first-letter{
    font-size: 36px;
}
.ldcr_d_sp{
    font-family: 'Capriola', sans-serif;
    color: var(--primary-color);    
    line-height: 30px;
}
.ldcr_c_list{
    width: 100%;
    height: auto;
    position: relative;
}
.ldcr_l_h{
    font-family: 'Capriola', sans-serif;
    color: var(--primary-color);    
    line-height: inherit;
    font-size: 18px;
}
.ldcr_list_li{
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 20px !important;
}
.ldcr_list_li li{
    font-family: 'Capriola', sans-serif;
    color: var(--primary-color);
    list-style: none;
    padding: 5px 15px;
    margin-top: 5px;
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    box-shadow: 0px 0px 5px 0px rgba(0, 98, 126, .5);
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.ldcr_list_li li:hover{
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}
.faqs_h{
    font-family: 'Capriola', sans-serif;
    color: var(--primary-color);    
    line-height: inherit;
}

.panel-title {
    font-family: 'Capriola', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.35px;
    color: var(--primary-color);
}
.panel-default{
    border: none;
    background: none;
    border: none !important;
}
.panel-default>.panel-heading {
    /* background: rgba(39, 43, 107, 0.85); */
    /* background: rgba(0, 164, 140, 0.85); */
    background: var(--secondary-color);
    box-shadow: 0px 0px 5px 0px rgba(1, 92, 136, 0.35);
}

#faq .panel .panel-heading a .panel-title span {
    float: right;
    width: 40px;
}

#faq .panel .panel-heading a .panel-title span:after {
    content: "\2014";
    color: #1B5062;
    font-size: 20px;
    color: var(--primary-color) !important;
}

#faq .panel .panel-heading a.collapsed .panel-title span:after {
    content: "+";
}

#faq .panel {
    margin-top: 30px !important;
    box-shadow: none;
}

#faq .panel-heading {
    padding: 15px 15px;
    border-radius: 25px;
}

#faq .panel-default>.panel-heading+.panel-collapse>.panel-body {
    padding: 20px 15px;
    font-family: 'poppins', sans-serif;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: 0.15px;
    color: var(--text-color);
    background: none;
    border: none;
}

/* listing details page  */

/* blog page  */

.blog_h{
    font-family: 'Capriola', sans-serif;
    color: var(--primary-color);
    line-height: inherit;
    padding-top: 15px !important;
}
.blog_p{
    font-family: 'poppins', sans-serif;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: 0px;
    color: var(--text-color);
    padding-top: 10px !important;
}


/* blog page  */

.marquee {
    overflow-x: clip;
    white-space: nowrap;
    position: relative;
    width: 100%;
    cursor: pointer;
    background: rgba(0, 0, 0, 1);
}

.marquee_inner {
    display: flex;
    align-items: center;
    will-change: transform;
}

.marquee_list {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.marquee_list li {
    margin-left: 20px;
    list-style: none;
    font-family: 'mulish', sans-serif;
    flex-shrink: 0;
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.15px;
    will-change: transform;
    padding: 6px 20px !important;
    transition: all 0.3s ease-in;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 20px;
}

/* category Page  */

.category_box{
    width: 100%;
    margin-top: 40px;
    position: relative;
    border-radius: 30px 0;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.cb_inner{
    width: 100%;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}
.cb_h{
    font-family: 'Capriola', sans-serif;
    color: var(--secondary-color);
    line-height: inherit;
    padding-top: 15px !important;
}
.category_box:hover .cb_inner{
    background: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}


/* category Page  */