/* common css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body{
    height:100%;
}

html {
    font-family: "Inter", serif;
    font-weight: 600;
    color: var(--black);
}

body {
    font-family: "Inter", sans-serif;
    color: var(--black);
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter", serif;
}

.header__container {
    width: 100%;
    z-index: 9999;
    position: sticky;
    background-color: transparent;
    top: 0;
}

.section_limited_width_big {
    width: 100%;
    max-width: 100% !important;
    padding: 0 !important;
    /* margin-top: 56px !important; */
}

.closeDesk {
    display: block;
}

.closeMb {
    display: none;
}

.btn_black {
    background-color: transparent;
    box-shadow: 0 0 0 2px #3f3f3f inset;
    border: 0;
    color: #3f3f3f;
    border-radius: 3px;
    padding: 1.0625em 1.875em;
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    position: relative;
    transition: all 300ms ease;
}

.btn_black:hover {
    color: #fff;
    background: #3f3f3f;
    box-shadow: 0 0 0 2em #3f3f3f inset, 0 3px 10px rgba(24, 24, 24, 0.3);
    text-decoration: none;
}

.btn_black:after {
    position: absolute;
    content: "";
    display: block;
    border: 2px solid transparent;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-color: #3f3f3f;
    border-radius: 3px;
}

.btn_black:hover:after {
    opacity: 0;
    left: -6px;
    top: -6px;
    bottom: -6px;
    right: -6px;
    -webkit-transition: 300ms ease all;
    -moz-transition: 300ms ease all;
    transition: 300ms ease all;
}

.btn_black_solid {
    background-color: #3f3f3f;
    box-shadow: 0 0 0 2px #3f3f3f inset;
    border: 0;
    color: #fff;
    border-radius: 3px;
    padding: 1.0625em 1.875em;
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    position: relative;
    transition: all 300ms ease;
}

.btn_black_solid:hover {
    color: #fff;
    background: #3f3f3f;
    box-shadow: 0 0 0 2em #3f3f3f inset, 0 3px 10px rgba(24, 24, 24, 0.3);
    text-decoration: none;
}

.btn_black_solid:after {
    position: absolute;
    content: "";
    display: block;
    border: 2px solid transparent;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-color: #3f3f3f;
    border-radius: 3px;
}

.btn_black_solid:hover:after {
    opacity: 0;
    left: -6px;
    top: -6px;
    bottom: -6px;
    right: -6px;
    -webkit-transition: 300ms ease all;
    -moz-transition: 300ms ease all;
    transition: 300ms ease all;
}

.btn_theme {
    background-color: var(--primary);
    color: #fff;
    border-radius: 3px;
    padding: 1.0625em 1.875em;
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    position: relative;
    border: 0;
}

.btn_theme:not(:disabled):hover {
    box-shadow: 0 18px 21px -13px var(--orange-hover);
    transition: var(--fast);
    color: #fff;
}

.btn_theme:not(:disabled):active {
    transform: Scale(1.05);
    transition: var(--fast);
}

.btn_outline {
    background-color: transparent;
    box-shadow: 0 0 0 2px var(--primary) inset;
    border: 0;
    color: var(--primary);
    border-radius: 3px;
    padding: 1.0625em 1.875em;
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    position: relative;
    transition: all 300ms ease;
}

.btn_outline:hover {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 0 0 2em var(--primary) inset, 0 3px 10px rgba(24, 24, 24, 0.3);
    text-decoration: none;
}

.btn_outline:after {
    position: absolute;
    content: "";
    display: block;
    border: 2px solid transparent;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-color: var(--primary);
    border-radius: 3px;
}

.btn_outline:hover:after {
    opacity: 0;
    left: -6px;
    top: -6px;
    bottom: -6px;
    right: -6px;
    -webkit-transition: 300ms ease all;
    -moz-transition: 300ms ease all;
    transition: 300ms ease all;
}

.btn_icon {
    background-color: #3f3f3f;
    color: #fff;
    border-radius: 3px;
    position: relative;
    border: 0;
    width: 40px;
    padding: 0;
    height: 40px;
    line-height: 40px;
}

.btn_icon:hover {
    color: #fff;
    background: #3f3f3f;
    box-shadow: 0 3px 10px rgba(24, 24, 24, 0.3);
    text-decoration: none;
    transition: all 300ms ease;
}

.btn_icon:after {
    position: absolute;
    content: "";
    display: block;
    border: 2px solid transparent;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-color: #3f3f3f;
    border-radius: 3px;
}

.btn_icon:hover:after {
    opacity: 0;
    left: -6px;
    top: -6px;
    bottom: -6px;
    right: -6px;
    -webkit-transition: 300ms ease all;
    -moz-transition: 300ms ease all;
    transition: 300ms ease all;
}

.section_space {
    padding-top: 6.25rem;
    /* padding-bottom: 6.25rem; */
}

/* .section_shadow{
    box-shadow: 0 0 50px rgba(24, 24, 24, 0.2);
} */

.inner_section_space {
    padding-bottom: 8.5rem;
}

.block_section_space {
    padding-bottom: 5.5rem;
    margin-bottom: 5.5rem;
    border-bottom: 1px solid rgba(24, 24, 24, 0.1);
}

.section_heading {
    text-align: center;
}

.section_heading h1 {
    font-size: 60px;
    line-height: 70px;
    font-weight: 400;
    margin-bottom: 21px;
}

.section_heading h1 span {
    color: var(--primary);
    font-weight: 700;
}

.separator {
    display: inline-block;
    position: relative;
    margin-bottom: 70px;
}

.section_heading .separator::after {
    content: " ";
    display: block;
    margin: 0;
    border-style: solid;
    border-width: 0 0 2px;
    border-color: rgba(24, 24, 24, 0.1);
}

.section_heading .separator h1::after {
    content: " ";
    width: 70px;
    margin-left: -35px;
    position: absolute;
    left: 50%;
    border-bottom: 2px solid var(--primary);
    bottom: 0;
}

.section_heading p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 0;
}

.section_heading_light {
    text-align: center;
}

.section_heading_light h1 {
    font-size: 60px;
    line-height: 70px;
    font-weight: 400;
    margin-bottom: 21px;
}

.section_heading_light h1 {
    color: #fff;
}

/* .separator{
    display: inline-block;
    position: relative;
    margin-bottom: 70px;
} */

.section_heading_light .separator::after {
    content: " ";
    display: block;
    margin: 0;
    border-style: solid;
    border-width: 0 0 2px;
    border-color: rgba(24, 24, 24, 0.1);
}

.section_heading_light .separator h1::after {
    content: " ";
    width: 70px;
    margin-left: -35px;
    position: absolute;
    left: 50%;
    border-bottom: 2px solid #fff;
    bottom: 0;
}

.section_heading_light p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 0;
    color: #fff;
}

.box_wrapper {
    margin-top: 4.6875rem;
}

/* header css */

.header {
    /* position: absolute;
    width: 100%;
    z-index: 11;
    transform: translateY(-40%);
    top: 40px;
    opacity: 1;
    visibility: initial;
    transition: transform 600ms ease;
    font-family: "Inter"; */
        position: fixed;
    min-height: 55px;
    width: 100%;
    z-index: 11;
    top: 0;
}

.header_sticky {
    background-color: #fff;
    z-index: 10;
    position: fixed;
    top: -60px;
    box-shadow: 0 0 30px 0 rgba(24, 24, 24, 0.05);
    transform: translateY(100%);
    transition: transform 600ms ease;
}

.header_navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
    transition: 0.15s;
}

.header_left_side {
    display: flex;
}

/* .header_logo{
    font-family: "Zilla Slab";
    font-size: 2em;
    font-weight: 800;
    line-height: 100px;
    color: #fff;
}  */

.header_logo img {
    width: 120px;
    max-width: 100%;
}

.header_logo:hover {
    color: #fff;
    text-decoration: none;
}

.right_side {
    display: flex;
    align-items: center;
    justify-content: end;
}

.header_menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 0;
}

.header_menu_item {
    padding: 0 45px 0 0;
}

.header_menu_item:last-child {
    padding: 0;
}

.header_menu_item a {
    font-size: 14px;
    color: black;
    display: block;
    position: relative;
    font-weight: 700;
    /* line-height: 100px; */
    padding: 0;
}

.header_menu_item a:hover {
    cursor: pointer;
    text-decoration: none;
    color: var(--primary);
}

.header_menu_item a.active:after {
    content: " ";
    display: block;
    position: absolute;
    z-index: 5;
    bottom: 2px;
    left: 0;
    right: 0;
    pointer-events: none;
    height: 2px;
    background-color: var(--primary);
}

.submenu_list {
    opacity: 0;
    transition: all 250ms ease 0s;
    transform: translateY(50px);
    position: absolute;
    width: 220px;
    right: 0;
    top: auto;
    left: 0;
    background-color: #fff;
    z-index: 1;
    list-style: none;
    pointer-events: none;
}

.dropdown_list {
    position: relative;
    display: inline-block;
}

.dropdown_list:hover .submenu_list {
    opacity: 1;
    box-shadow: 0 3px 5px 0 rgba(24, 24, 24, 0.1);
    transform: translateY(0);
    z-index: 2;
    pointer-events: auto;
}

.sub_menu_height {
    height: 300px;
    overflow-y: auto;
}

.submenu_list li a {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--black);
    padding: 1em 1.5em;
    box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 0 var(--primary);
}

.submenu_list li a:after {
    content: " ";
    display: block;
    position: absolute;
    left: 1.5em;
    right: 1.5em;
    bottom: 0;
    height: 1px;
    background-color: rgba(24, 24, 24, 0.1);
}

.submenu_list li a:hover {
    box-shadow: inset 0 0 0 3px #fff, inset 5px 0 0 0 var(--primary);
    transition: all ease 300ms;
}

.header_actions {
    margin-left: 40px;
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.login_link a i {
    color: var(--primary);
    margin-right: 5px;
}

.login_link a {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
}

.login_link a:hover {
    text-decoration: none;
    color: var(--primary);
    transition: 0.3s;
}

/* header sticky css */

.header_sticky {
    box-shadow: 0 0 35px 0 rgba(24, 24, 24, 0.15);
}

.header_sticky .header_navbar .header_left_side a {
    line-height: calc(100px * 0.6);
    font-size: 1.5em;
}

.header_sticky .header_navbar .right_side .header_menu .header_menu_item a {
    line-height: calc(100px * 0.6);
    color: var(--black);
}

.header_sticky .header_navbar .right_side .header_menu .header_menu_item .submenu_list li a {
    line-height: 20px;
}

.header_sticky .header_navbar .header_logo .dark_logo {
    width: 100px;
}

/* header mobile menu css */

.mobile_menu_dropdown_wrapper {
    overflow: auto;
    position: fixed;
    z-index: 1;
    width: 100%;
    top: 0;
    bottom: 0;
    right: -1px;
    /* background-color: rgba(0, 0, 0, 0.5); */
    /* transform: translateX(100%); */
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.sidebar {
    transform: translateX(0);
}

/* .mobile_menu_dropdown {
    display: flex;
    flex-direction: column;
    min-width: 100%;
    min-height: 100%;
    padding-right: 1.5rem;
    padding-bottom: 1rem;
    padding-top: 1rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    background-color: var(--black);
} */

.close_div {
    display: flex;
    flex-direction: row-reverse;
}

.dropdown_button {
    background-color: transparent;
    border: none;
}

.dropdown_button svg path {
    fill: #fff;
}

.mobile_menu {
    display: none;
}

.mobile_menu_button_small {
    height: 2rem;
    width: auto;
}

.mobile_nav {
    margin-top: 50px;
}

.dropdown_nav_list a {
    font-size: 14px;
    color: #fff;
    display: block;
    position: relative;
    font-weight: 700;
    line-height: 1.1;
    padding: 1em 0 1em 2em;
}

.dropdown_nav_list a:hover {
    text-decoration: none;
}

.dropdown_nav_menu {
    display: none;
}

.dropdown_nav_menu li a {
    padding-left: 2.5rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.arrow {
    border: solid #fff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    position: absolute;
    right: 8px;
    top: 15px;
    transition: 300ms ease all;
}

.dropdown_nav_list .selected.arrow {
    transform: rotate(225deg);
    top: 20px;
}

.multilevel li a {
    padding: 1em 0 1em 4em;
}

/* Footer */

/* .footer_logo{
    font-family: "Zilla Slab";
    font-size: 2em;
    font-weight: 800;
    line-height: 70px;
    color: var(--black);
} */

.footer_logo img {
    width: 180px;
    max-width: 100%;
}

.footer_block {
    padding: 60px 0;
    border-top: 2px solid rgba(24, 24, 24, 0.1);
    border-bottom: 2px solid rgba(24, 24, 24, 0.1);
}

.footer_box h4 {
    color: var(--primary);
    font-size: 25px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 30px;
}

.footer_box p {
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 20px;
}

.footer_links {
    list-style: none;
}

.footer_links li {
    margin-bottom: 10px;
}

.footer_links li a {
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.footer_links li a:hover {
    text-decoration: none;
    color: var(--primary);
}

.footer_copyright {
    padding: 60px 0px;
}

.copyright img {
    width: 40px;
    margin-right: 10px;
}

.footer_social {
    text-align: right;
}

.footer_social ul {
    list-style: none;
}

.footer_social ul li {
    display: inline-block;
    margin-right: 20px;
}

.footer_social ul .navigate a {
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.footer_social ul .navigate a:hover {
    text-decoration: none;
    color: var(--primary);
}

.footer_social ul li a {
    color: var(--primary);
}

.footer_social ul li a:hover {
    color: var(--black);
}

.footer_input {
    position: relative;
}

.footer_input input {
    border-radius: 3px;
    border: 2px solid rgba(24, 24, 24, 0.3);
    height: 3.125rem;
    transition: all 500ms ease;
}

.footer_input input:focus {
    box-shadow: 0 3px 10px rgba(24, 24, 24, 0.3);
    border: 2px solid rgba(24, 24, 24, 0.5);
}

.footer_input a {
    position: absolute;
    right: 1px;
    top: 1px;
    color: #3f3f3f;
    padding: 12px 20px;
    transition: all 300ms ease;
}

.footer_input a:hover {
    color: #fff;
    background: #f43d11;
    box-shadow: 0 3px 10px rgba(24, 24, 24, 0.3);
    transition: all 300ms ease;
}

/* banner section css */

.header_banner_main {
    position: relative;
    /* background-image: url(../images/banner.jpg); */
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.header_banner {
    width: 100%;
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
    text-align: center;
    color: #fff;
    z-index: 1;
}

.header_content {
    margin-top: 9.375rem;
}

.banner_heading h1 {
    font-size: 75px;
    line-height: 86px;
    font-weight: 400;
    margin-bottom: 0;
}

.banner_heading h1 span {
    color: var(--primary);
    font-weight: 700;
}

.banner_heading p {
    font-size: 22.5px;
    line-height: 34px;
    font-weight: 400;
    color: #fff;
    margin-top: 1em;
    margin-bottom: 0;
}

.search_wrapper {
    margin-top: 3.75rem;
}

.search_item {
    position: relative;
}

.search_bottom_action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.search_bottom_action p {
    margin-bottom: 0;
}

.search_item label {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #fff;
    text-align: left;
    display: block;
    margin-bottom: 1em;
}

.search_item input {
    color: #757575;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    border-radius: 3px;
    padding: 14px 15px;
    height: 3.125rem;
    border-width: 2px;
}

.select_category .select2-container--default .select2-selection--single {
    width: 100% !important;
    color: var(--grey-500);
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    border-radius: 10px;
    /* padding: 11px 15px; */
    height: 50px !important;
    border: 1px solid var(--grey-200);
    display: flex;
    align-items: center;
}

.select_category .select2-container {
    width: 100% !important;
}

.select_category .select2-selection__rendered {
    margin: 3% !important;
}

.select2-results__option {
    transition: 300ms ease all;
    border-bottom: 1px solid rgba(24, 24, 24, 0.1);
    padding: 0.8em 1em !important;
    line-height: 1rem;
    color: var(--black);
    font-size: 15px;
}

.select2-results__option--group {
    padding: 0 !important;
}

.select2-results__options--nested li {
    padding: 0.8em 1.7em !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: rgba(24, 24, 24, 0.07) !important;
    color: var(--orange) !important;
    box-shadow: inset 3px 0 0 0 #fff, inset 5px 0 0 0 var(--orange);
}

.select2-container--default .select2-results__option--selected {
    background-color: transparent !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border-radius: 3px;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus-visible {
    outline: none !important;
}

.home_select_category .select2-container--default .select2-selection--single {
    height: 3.125rem !important;
    border: 1px solid #ced4da;
    border-width: 2px;
}

.home_select_category .select2-selection__rendered {
    text-align: left;
    font-size: 16px;
}

.select2-container--default .select2-results__group {
    padding: 0 !important;
}

/* width */

::-webkit-scrollbar {
    width: 8px;
}

@media screen and (max-width: 576px) {
    ::-webkit-scrollbar {
        width: 0px;
    }
}

/* Track */

::-webkit-scrollbar-track {
    background: #efefef;
    border-radius: 10px;
}

/* Handle */

::-webkit-scrollbar-thumb {
    background: var(--grey-500);
    border-radius: 10px;
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.search_item input:focus {
    border-color: #ced4da;
    box-shadow: none;
}

.search_item img {
    position: absolute;
    top: 54px;
    right: 15px;
    width: 15px;
}

.search_actions {
    column-gap: 10px;
}

.search_actions button {
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
}

.search_actions button img {
    width: 15px;
    margin-right: 6px;
}

.search_btn i {
    margin-right: 10px;
}

.category_wrapper {
    margin-top: 6.5rem;
}

.category_box a:hover {
    text-decoration: none;
}

.category_box a img {
    width: 50px;
}

.category_box a h6 {
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    margin-top: 1.25rem;
    margin-bottom: 0;
}

.category_box p {
    color: #fff;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    margin-top: 1em;
    margin-bottom: 0;
}

/* explore section css */

.explore_box {
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 3px;
}

.explore_inner_box {
    display: block;
    position: relative;
}

.explore_inner_box img {
    width: 100%;
    border-radius: 3px;
    transform: scale3d(1, 1, 1);
    transition: transform 350ms ease-in-out, filter 350ms ease-in-out;
}

.explore_box:hover img {
    transform: scale3d(1.1, 1.1, 1.1);
}

.image_content {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top,
            rgba(24, 24, 24, 0.6) 10%,
            rgba(24, 24, 24, 0.4) 20%,
            rgba(24, 24, 24, 0) 50%);
}

.image_content_flex {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 1em;
}

.box_content {
    width: 100%;
    display: block;
    text-align: center;
}

.box_content h4 {
    color: #fff;
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}

.separator_inner {
    display: inline-block;
    position: relative;
    margin-bottom: 50px;
}

.separator_inner::after {
    content: " ";
    display: block;
    margin: 0;
    border-style: solid;
    border-width: 0 0 2px;
    border-color: rgba(24, 24, 24, 0.1);
}

.box_content .separator_inner h4::after {
    content: " ";
    width: 50px;
    margin-left: -25px;
    position: absolute;
    left: 50%;
    border-bottom: 2px solid var(--primary);
    bottom: 0;
}

/* experience section css */

.home_exp_row {
    row-gap: 12px;
}

.home_exp_row-20 {
    row-gap: 20px;
}

.exp_row {
    /* row-gap: 30px; */
}

.experience_box {
    position: relative;
}

.image_inner_box {
    position: relative;
}

.navigate_link {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    z-index: 2;
}

.categories_top {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    padding: 18px 20px;
    display: flex;
    flex-direction: row;
    flex-flow: row wrap;
    align-content: flex-start;
    align-items: center;
    pointer-events: none;
}

.categories_top ul {
    margin-bottom: 0;
}

.categories_box li {
    display: inline-block;
}

.categories_box li a {
    font-size: 11px;
    font-weight: 400;
    line-height: 11px;
    color: #fff;
    text-transform: uppercase;
    font-family: "Inter", serif;
    pointer-events: visible;
}

.categories_box li a:hover {
    text-decoration: none;
    color: var(--black);
}

.categories_box li:last-child:before {
    display: inline-block;
    width: 3px;
    height: 3px;
    content: "";
    background: #fff;
    margin: 0 4px;
    border-radius: 50%;
    transform: translateY(-2px);
}

.experience_box:hover .image_inner_box .image_wrapper:before {
    opacity: 0.2;
}

.image_wrapper {
    border-radius: 3px;
    overflow: hidden;
    background: rgba(24, 24, 24, 0.07);
    position: relative;
    min-width: 100%;
}

.experience_box:hover .image_inner_box .image_wrapper:after {
    opacity: 0.35;
}

/* .image_box{
    margin: -10px -10px 0;
} */

.image_inner_box .image_wrapper .image_box img {
    position: relative;
    display: block;
    transform: scale(1);
    transition: 300ms ease all;
    min-width: 100%;
    aspect-ratio: 3/2;
    /* height: auto; */
    /* height: 290px; */
    object-fit: cover;
}

.category_image_inner_box .image_wrapper .image_box img {
    /* height: 230px; */
}

.experience_box .image_inner_box .image_wrapper .overlay_wrapper .eye_icon {
    font-size: 2rem;
    display: block;
    width: 3.625rem;
    height: 3.625rem;
    line-height: 3.625rem;
    text-align: center;
    background: #fff;
    color: var(--black);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 45%;
    margin: -1.8125rem 0 0 -1.8125rem;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    box-shadow: 0 3px 20px rgba(24, 24, 24, 0.25);
    transition: 300ms ease all;
    transform: scale(0.5);
}

.experience_info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 20px 16px;
    display: flex;
    pointer-events: none;
    z-index: 4;
    flex-direction: column;
}

.experience_info .small {
    font-size: 11px;
    font-weight: 400;
    line-height: 11px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.experience_info h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: #fff;
}

.contact_info {
    /* display: flex;
  align-items: center;
  column-gap: 20px; */
    list-style: none;
}

.contact_info li a:hover {
    text-decoration: none;
}

.contact_info li .telephone:hover {
    text-decoration: none;
    color: var(--black);
}

.pricing {
    background: var(--primary);
    border-radius: 3px 3px 0 0;
    color: #fff;
    position: absolute;
    right: 10px;
    bottom: 0;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
}

.button_group {
    margin-top: 50px;
    text-align: center;
}

.button_group .btn_outline {
    margin-right: 5px;
}

/* great places css section */

.places_box {
    display: flex;
    align-items: start;
    column-gap: 15px;
}

.places_box .image_inner_box {
    width: 40%;
    /* aspect-ratio: 3/2; */
}

.places_box .info_places {
    width: 60%;
    text-decoration: none;
}

.info_places {
    /* pointer-events: none; */
    z-index: 4;
}

.info_places .small {
    color: #8b8899;
    font-size: 11px;
    font-weight: 400;
    line-height: 11px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.info_places h3 {
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 5px;
    /* 24px */
}

.info_places .contact_info li a {
    color: var(--black);
}

.contact_info li a img {
    width: 10px;
    margin-right: 5px;
}

.info_places .contact_info li a:hover {
    color: var(--primary);
}

.info_places .contact_info {
    margin-bottom: 5px;
}

.info_places .contact_info li i {
    margin-right: 6px;
}

.rating_box {
    list-style: none;
    margin-bottom: 5px;
}

.rating_box li {
    display: inline-block;
    color: var(--primary);
    font-size: 12px;
}

.description {
    border-top: 1px solid rgba(24, 24, 24, 0.1);
    border-bottom: 1px solid rgba(24, 24, 24, 0.1);
    margin-top: 10px;
    margin-bottom: 10px;
}

.description p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 14px;
    margin-top: 14px;
    color: #8b8899;
}

.text-gray {
    color: #8b8899;
    font-size: 0.875rem;
}

.price_tag {
    font-weight: 700;
    font-size: 1rem;
}

.group {
    font-weight: 400;
    font-size: 1rem;
}

.listing_bottom {
    display: flex;
    align-items: flex-end;
    /* column-gap: 20px; */
    flex-direction: column;
}

.listing_bottom .comments,
.listing_bottom .ratings {
    color: rgba(24, 24, 24, 0.8);
    font-size: 12px;
    font-weight: 400;
}

.listing_bottom .comments i,
.listing_bottom .ratings i {
    color: var(--black);
    font-size: 14px;
    margin-right: 8px;
}

.listing_bottom .price {
    color: var(--primary);
    font-size: 12px;
    font-weight: 400;
}

.listing_bottom .price i {
    color: var(--primary);
    font-size: 14px;
    margin-right: 8px;
}

.places_box .image_inner_box .image_wrapper .overlay_wrapper .eye_icon {
    top: 50%;
}

/* our works section css */

.bg_banner {
    background-image: url(../images/banner1.jpg);
    margin-bottom: 6.25rem;
}

.our_works {
    padding: 100px 0px 75px;
}

.works_card {
    text-align: center;
    padding: 0px 25px;
}

.works_card img {
    width: 50px;
    margin-bottom: 0.625rem;
}

.works_card h4 {
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    color: #ffffff;
    margin-bottom: 0.6em;
}

.works_card p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

/* visit section css */

.visit_box {
    box-shadow: 0 0 20px rgba(24, 24, 24, 0.15);
}

.visit_info {
    padding: 20px;
    position: relative;
}

.visit_box .image_inner_box .image_wrapper {
    border-radius: 3px 3px 0 0;
}

/* join section css */

.join_section {
    background: linear-gradient(5deg, #bebebe 0%, #f1f1f1 20%, #ffffff 50%);
    /* padding: 100px 0 0; */
}

.join_box {
    padding-bottom: 80px;
}

.join_box .section_heading {
    text-align: left;
}

.join_box .section_heading .separator h1::after {
    margin-left: 0;
    left: 0;
}

.join_row {
    align-items: end;
}

.join_info {
    margin-top: 40px;
}

.join_info p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 3rem;
    color: var(--black);
}

.join_card {
    display: flex;
    align-items: start;
    column-gap: 15px;
    margin-bottom: 15px;
}

.join_card img {
    width: 60px;
}

.join_content h4 {
    color: var(--black);
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
}

.join_content p {
    color: var(--black);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 0;
}

.join_actions {
    margin-top: 2.5rem;
}

.join_actions .btn_outline {
    margin-right: 5px;
}

.side_image img {
    max-width: 100%;
    height: auto;
}

/* app section css */

.app_section {
    padding: 100px 0 100px;
    background-image: url(../images/mobil-app.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.join_actions .btn_black {
    margin-right: 5px;
}

/* Search results page css */

.results_wrapper {
    padding-top: 6.25rem;
    position: relative;
    z-index: 1;
}

#update_search_box {
    width: 100%;
    /* position: fixed;
    left: 0;
    top: 124px; */
    /* height: fit-content;
  min-height: 952px; */
    background: #fff;
    z-index: 2;
}

.filter-wrapper {
    /* margin-top: 40px; */
    width: 205px;
    display: flex;
    justify-content: center;
    margin: 6px auto 0 auto;
    /* background: #fff; */
    max-width: 94%;
}

.update_search_btn {
    width: 100%;
    justify-content: center;
    display: flex;
}

.update_search_btn .search_btn {
    width: 205px !important;
}

#sidebar_box {
    /* position: absolute;
    top: 0;
    left: 20%;
    min-width: 30%;
    max-width: 600px;
    min-height: 952px; */
    /* height: 100%; */
    /* box-shadow: 0 0 35px 0 rgba(24, 24, 24, .15); */
    /* height: 100vh; */
    position: static;
    width: 66%;
    /* max-width: 600px; */
    background: #fff;
    transition: 1000ms cubic-bezier(0.23, 1, 0.32, 1) all;
    z-index: 1;
}

#sidebar_box .header-wrapper-success {
    margin-top: 40px;
}

#sidebar_box .header-wrapper-success h3 {
    color: #161032;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    margin: 0 !important;
}

#sidebar_box .header-wrapper-error {
    margin-top: 40px;
    height: 72px;
    border-radius: 10px;
    border: 1px solid #e8e7eb;
    display: flex;
    align-items: center;
}

#sidebar_box .header-wrapper-error h3 {
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
    color: #d23e29;
}

#sidebar_box.active {
    /* height: 0%; */
    /* overflow: hidden;
  width: 100%; */
    /* display: none; */
    /* min-width: 0; */
    /* width: 100%; */
    /* display: none; */
    /* visibility: visible; */
    /* opacity: 0; */
    /* position: fixed; */
    transform: translateX(-100%);
    /* z-index: 1;
  transition: 1000ms cubic-bezier(0.23, 1, 0.32, 1) all; */
}

/* #sidebar_box.active .listing_container {
  visibility: hidden;
  opacity: 0;
} */

#sidebar_box.active .header-wrapper-success {
    visibility: hidden;
    opacity: 0;
}

.left_side_wrapper {
    width: 332px;
    transition: 1000ms cubic-bezier(0.23, 1, 0.32, 1) all;
}

.left_side_wrapper .toggle-btn {
    display: block;
    position: absolute;
    right: -3.75rem;
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    background: #fff;
    top: 50%;
    margin-top: -4.5625rem;
    box-shadow: 0 2px 5px rgba(24, 24, 24, 0.3);
    color: var(--black);
    transition: 1000ms cubic-bezier(0.23, 1, 0.32, 1) all;
    cursor: pointer;
}

.toggle-btn-map {
    display: block;
    position: absolute;
    left: 42%;
    width: 2.125rem;
    height: 2.125rem;
    border-radius: 19%;
    background: #fff;
    top: 140px;
    margin-top: -6.5625rem;
    box-shadow: 0 2px 5px rgba(24, 24, 24, 0.3);
    color: var(--black);
    transition: 1000ms cubic-bezier(0.23, 1, 0.32, 1) all;
    cursor: pointer;
    z-index: 99;
}

.toggle-btn-map span {
    display: block;
    width: 24px;
    height: 24px;
    line-height: unset;
    text-align: center;
    pointer-events: none;
    position: absolute;
    left:50%;
    top:50%;
    transform:translate(-50%, -50%);
   
    transition: 200ms ease all;
}
.toggle-btn-map span svg{
    position: absolute;
    left: 0;
    top: 0;
}
.leftright {
    left: 32px !important;
    transform: rotate(180deg);
}

.left_side_wrapper .toggle-btn span {
    display: block;
    width: 100%;
    height: 3.125rem;
    line-height: 3.125rem;
    font-size: 2rem;
    text-align: center;
    pointer-events: none;
    margin-left: -2px;
    transition: 200ms ease all;
}

.sidebar_activated .toggle-btn span {
    transform: rotate(180deg);
    margin-left: 2px;
}

.sidebar_activated {
    width: 332px;
    transform: translateX(0%);
    transition: 1000ms cubic-bezier(0.23, 1, 0.32, 1) all;
}

.sidebar_activated .left_inner_wrapper {
    width: 332px;
    transform: translateX(0%);
    transition: 1000ms cubic-bezier(0.23, 1, 0.32, 1) all;
}

.left_inner_wrapper {
    transition: 1000ms cubic-bezier(0.23, 1, 0.32, 1) all;
}

.left_side_wrapper .toggle-btn {
    top: calc(3.75rem + 41px);
    border-radius: 4px;
    width: 30px;
    height: 30px;
}

.left_side_wrapper .toggle-btn span {
    width: 30px;
    height: 30px;
    margin-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-btn span svg {
    vertical-align: top;
}

.listing_container {
    padding: 10px;
    overflow: hidden;
    /* overflow-y: auto; */
    /* height: 100%; */
}

.listing_form {
    /* border-bottom: 1px solid var(--grey-200); */
    padding-bottom: 8px;
}

.listing_search_item {
    position: relative;
    /* margin-bottom: 1rem; */
}

.listing_search_item label {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: var(--black);
    text-align: left;
    /* display: block; */
    margin-left: 0px;
    margin-bottom: 0;
}

.listing_search_item img {
    position: absolute;
    top: 34px;
    right: 15px;
    width: 15px;
}

.listing_search_item .select_category .ss-main .ss-single-selected {
    height: 42px;
    border: 1px solid rgba(24, 24, 24, 0.3);
    padding: 11px 15px;
}

.listing_search_item .select_category .ss-main .ss-single-selected:focus {
    border: 1px solid rgba(24, 24, 24, 0.5);
    box-shadow: 0 3px 10px rgba(24, 24, 24, 0.3);
}

.listing_search_item .ss-main .ss-single-selected .placeholder {
    color: var(--black);
    font-size: 14px;
}

.listing_search_item .select_category .ss-main .ss-content .ss-list .ss-option {
    font-size: 14px;
}

.listing_search_item .select_category .ss-main .ss-content .ss-search input {
    font-size: 14px;
}

.listing_search_item .ss-main .ss-content {
    margin: 0;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    margin-top: 6px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
    border: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    transition: 0.2s;
    border: 1px solid rgba(24, 24, 24, 0.3);
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 2px;
    background-color: rgba(24, 24, 24, 0.1);
    transition: 0.2s;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    /* border-radius: 0%; */
    background-color: transparent;
    transition: 200ms ease all;
    box-shadow: 0 0 0 1px rgba(24, 24, 24, 0.3) inset;
}

input:checked+.slider {
    background-color: #fff;
}

input:focus+.slider {
    box-shadow: none;
}

input:checked+.slider:before {
    transform: translateX(28px);
    background-color: var(--primary);
    box-shadow: 0 1px 3px rgba(24, 24, 24, 0.5);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.search_listing_actions a {
    color: #fff;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    padding: 16px 12px;
    height: 50px;
    text-transform: uppercase;
    font-family: Inter;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    align-self: start;
}

.product_listing {
    /* margin-top: 20px; */
}

.result_text {
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.selectBox {
    position: relative;
    cursor: pointer;
    border-radius: 3px;
    padding: 11px 15px;
    height: 50px;
    border: 1px solid var(--grey-200);
    width: 100% !important;
    color: var(--grey-500);
}

.selectBox_value {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    color: var(--black);
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

.selectBox:after {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: all 0.2s ease-in-out;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.001' height='8.165' viewBox='0 0 14.001 8.165'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23212121;%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M13.861,60.224l-.7-.7a.441.441,0,0,0-.645,0L7,65.036,1.487,59.522a.441.441,0,0,0-.645,0l-.7.7a.441.441,0,0,0,0,.645l6.537,6.538a.441.441,0,0,0,.645,0l6.538-6.538a.442.442,0,0,0,0-.645Z' transform='translate(0 -59.382)'/%3E%3C/svg%3E");
}

.selectBox .dropdown-menu {
    transition: all 0.2s ease-in-out;
    opacity: 0;
    display: block;
    top: 100%;
    width: 119%;
    /* max-height: 250px; */
    z-index: -1;
    overflow-y: auto;
    padding: 10px 10px 10px 5px !important;
    transform: translateY(-15%);
    visibility: hidden;
}

.selectBox.show {
    background-color: #fff;
}

.selectBox.show:after {
    transform: translateY(-50%) rotate(180deg);
}

.selectBox.show .dropdown-menu {
    transition: all 0.2s ease-in-out;
    visibility: visible;
    opacity: 1;
    z-index: 11;
    transform: translateY(0);
    padding: 0;
    border-radius: 0;
}

.dropdown-items {
    display: block;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
    cursor: pointer;
    padding: 0.8em 1em;
    line-height: 20px;
    margin: 0;
    transition: 300ms ease all;
    border-bottom: 1px solid rgba(24, 24, 24, 0.1);
}

.dropdown-items:last-child {
    border-bottom: 0;
}

.dropdown-items:hover {
    background: rgba(24, 24, 24, 0.07);
    color: var(--primary);
    box-shadow: inset 3px 0 0 0 #fff, inset 5px 0 0 0 var(--primary);
    text-decoration: none;
}

.product_listing_view {
    margin-top: 10px;
}

.product_tabs {
    column-gap: 10px;
    justify-content: end;
    align-items: center;
}

.product_tabs .view_as {
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

.product_tabs li .nav-link {
    color: var(--black);
    opacity: 0.6;
    transition: 200ms ease all;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    padding: 0;
}

.product_tabs li .nav-link:hover {
    opacity: 1;
}

.product_tabs li .nav-link.active {
    color: var(--primary);
    opacity: 1;
    background-color: transparent;
}

.product_tabs li .nav-link i {
    margin-right: 6px;
}

.product_tab_content {
    /* margin-top: 10px; */
    margin-bottom: 0;
    min-height: 500px;
}

.like_icon {
    background-color: var(--primary);
    display: block;
    position: absolute;
    z-index: 2;
    border-radius: 50%;
    padding: 1px;
    width: 36px;
    height: 36px;
    line-height: 30px;
    text-align: center;
    left: -20px;
    top: 13px;
    /* pointer-events: none; */
}

.like_icon img {
    width: 20px;
    max-width: 100%;
}

.search_exp_box .image_inner_box .image_wrapper .image_box img {
    /* border: 5px solid var(--primary); */
    /* max-width: 270px; */
}

.load_more {
    margin-top: 50px;
    text-align: center;
}

/* distance range slider csss */

.distance_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#range-slider__range {
    appearance: none;
    /* width: calc(100% - (73px)); */
    width: 100%;
    height: 0px;
    border-radius: 5px;
    background: var(--black);
    outline: none;
    padding: 0;
    margin: 23px 0 0;
    border: 0.5px solid var(--black);
}

#range-slider__range::-webkit-slider-thumb {
    appearance: none;
    width: 17px;
    height: 17px;
    border-radius: 100%;
    background: var(--primary);
    cursor: pointer;
    transition: 0.15s ease-in-out;
}

#range-slider__range:active::-webkit-slider-thumb {
    background: var(--primary);
    border: 2px solid #f43d11;
}

#range-slider__value {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: var(--black);
}

/* right sidebar on map marker click css */

#sidebar_info {
    position: absolute;
    /* top: 100px; */
    right: 0px;
    bottom: 0;
    width: 292px;
    min-width: 292px;
    /* height: 100%; */
    box-shadow: 0 0 35px 0 rgba(24, 24, 24, 0.15);
    background: #fff;
    transition: 1000ms cubic-bezier(0.23, 1, 0.32, 1) all;
    transform: translateX(100%);
}

#sidebar_info.active {
    transform: translateX(0);
    transition: 1000ms cubic-bezier(0.23, 1, 0.32, 1) all;
}

.information_container {
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
}

.product_info_box .image_wrapper {
    border-radius: 0;
}

.product_info_box .image_wrapper .image_box img {
    height: 260px;
}

.product_info_box .experience_info h3 {
    font-size: 24px;
}

.close_box {
    position: absolute;
    z-index: 4;
    cursor: pointer;
    right: 20px;
    top: 18px;
}

.close_box img {
    max-width: 15px;
}

.product_details_data {
    padding: 30px;
    margin-bottom: 120px;
}

.marker_list {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(24, 24, 24, 0.1);
    padding-bottom: 16px;
}

.marker_list li {
    /* display: inline-block; */
    text-align: center;
}

.marker_list li a:hover {
    text-decoration: none;
}

.marker_list li a i {
    width: 2em;
    height: 2em;
    line-height: 2em;
    text-align: center;
    border-radius: 50%;
    background: rgba(24, 24, 24, 0.1);
    font-size: 2em;
    color: var(--primary);
    transition: 200ms ease all;
}

.marker_list li a p {
    font-size: 0.6875rem;
    font-weight: 400;
    color: var(--black);
    text-transform: uppercase;
    opacity: 0.5;
    line-height: 1;
    padding-top: 0.727em;
    transition: 200ms ease all;
    margin-bottom: 0;
}

.marker_list li a:hover i {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 2px 5px rgba(24, 24, 24, 0.3);
}

.marker_list li a:hover p {
    opacity: 1;
}

.product_excert {
    border-bottom: 1px solid rgba(24, 24, 24, 0.1);
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.product_excert p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--black);
    margin-bottom: 0;
}

.product_contact_info {
    border-bottom: 1px solid rgba(24, 24, 24, 0.1);
    padding-bottom: 1px;
    margin-bottom: 16px;
}

.contact_block_list {
    list-style: none;
}

.contact_block_list li {
    margin-bottom: 15px;
    display: flex;
    align-items: start;
}

.open_hours {
    justify-content: space-between;
}

.contact_block_list li a {
    display: flex;
    column-gap: 5px;
    align-items: start;
}

.contact_block_list li a:hover {
    text-decoration: none;
}

.contact_block_list li a:hover span {
    color: var(--primary);
}

.contact_block_list li i {
    color: var(--primary);
    font-size: 1rem;
    width: 2rem;
}

.contact_block_list li span {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--black);
    width: 100%;
}

.view_details {
    text-align: center;
    border-bottom: 1px solid rgba(24, 24, 24, 0.1);
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.user_reviews {
    border-bottom: 1px solid rgba(24, 24, 24, 0.1);
    margin-bottom: 16px;
}

.user_reviews h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: var(--black);
}

.reviews_user {
    list-style: none;
    margin-top: 20px;
}

.reviews_user li {
    margin: 0 0 1rem;
}

.reviews_user li article {
    display: flex;
}

.reviews_user li article .avatar {
    padding: 0 10px 0 0;
}

.reviews_user li article .avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.reviews_user li article .commentText {
    flex: 1 1 100%;
}

.reviews_user li article .user_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reviews_user li article .user_info h5 {
    color: var(--primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 0;
}

.reviews_user li article .user_info .ratings_user i {
    color: var(--primary);
    font-size: 0.8125rem;
}

.reviews_user li article .commentText .comment {
    font-size: 0.875rem;
    line-height: 1.4236em;
    color: var(--black);
    font-weight: 400;
}

.write_review {
    text-align: center;
}

.write_review a:first-child {
    padding-right: 15px;
}

.write_review a {
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
}

.write_review a i {
    margin-right: 0.625rem;
}

.working_days {
    display: flex;
    align-items: center;
    column-gap: 4px;
}

.working_days small {
    color: var(--black);
    font-size: 12px;
    opacity: 0.5;
    text-transform: uppercase;
    cursor: pointer;
}

.working_days small span {
    color: var(--black);
    font-size: 12px;
}

.working_days i {
    color: #000 !important;
    font-size: 1.3rem !important;
    cursor: pointer;
    width: auto !important;
    transition: 300ms ease all;
}

.working_days.on .fa-angle-down {
    transform: rotate(180deg);
    transform: scaleY(-1);
}

#open_Hours {
    height: 0;
    opacity: 0;
    pointer-events: none;
    transition: 500ms ease all;
    margin: 0;
}

#open_Hours.active {
    height: auto;
    opacity: 1;
    pointer-events: auto;
    margin: 0 0 15px 0;
    transition: 500ms ease all;
}

.show_days {
    display: flex;
    align-content: flex-start;
    justify-content: space-between;
    padding: 0px 10px;
}

.show_days dt {
    color: var(--black);
    font-size: 14px;
    font-weight: 600;
}

.show_days dd {
    color: var(--black);
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
}

/* google map csss */

.map_container {
    /* height: 936px; */
    /* height: calc(100vh - 100px); */
    height: calc(100vh - 154px);
    overflow: hidden;
    position: relative;

    width: 100%;
    transition: 1000ms cubic-bezier(0.23, 1, 0.32, 1) all;
}

/* #sidebar_box.active ~ .map_container {
  width: 80%;
} */

.sidebar_activated~.map_container {
    width: 80%;
}

.sidebar_activated #update_search_box {
    width: 100%;
}

#map {
    margin: 0 auto;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.map_label {
    background: var(--grey-500);
    bottom: 30px;
    position: absolute;
    z-index: 111;
    left: 56%;
    padding: 10px 30px;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
}

.map_label a {
    color: #fff;
    text-decoration: underline;
}

/* abouts us page cssss */

.about_wrapper {
    padding-top: 6.25rem;
    position: relative;
}

.about_wrapper .image_overlay {
    position: relative;
    z-index: 1;
}

.about_image {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-size: cover !important;
    transition-duration: 0;
    transition-delay: 0;
    background-attachment: scroll !important;
    background-position: 50% 5% !important;
    opacity: 0.25;
}

.about_banner_content {
    padding-bottom: 4em;
    padding-top: 4em;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 111;
    position: relative;
}

.about_content_holder {
    text-align: center;
}

.about_content_holder .separator-line {
    display: inline-block;
    position: relative;
}

.about_content_holder .separator-line:before {
    content: " ";
    display: block;
    margin: 0;
    border-style: solid;
    border-width: 0 0 2px;
    border-color: rgba(24, 24, 24, 0.1);
}

.about_content_holder .separator-line h1:before {
    content: " ";
    width: 70px;
    margin-left: -35px;
    position: absolute;
    left: 50%;
    border-bottom: 2px solid var(--primary);
    top: 0;
}

.about_content_holder .separator-line h1 {
    font-size: 40px;
    line-height: 46px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--black);
    margin-top: 10px;
}

.about_content_holder h4 {
    color: var(--black);
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 14px;
}

.page_breadcrumb {
    list-style: none;
    margin-bottom: 0;
}

.page_breadcrumb li {
    display: inline-block;
    margin-bottom: 15px;
    margin-right: 5px;
}

.page_breadcrumb li a {
    color: var(--black);
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}

.page_breadcrumb li a:hover {
    text-decoration: none;
    color: var(--primary);
}

.page_breadcrumb li:first-child:before {
    display: none;
}

.page_breadcrumb li:before {
    display: inline-block;
    width: 5px;
    height: 5px;
    content: "";
    background: var(--black);
    margin: 0 4px;
    border-radius: 50%;
    transform: translateY(-2px);
    margin-right: 10px;
}

.about_content_holder p {
    max-width: 768px;
    margin-bottom: 0;
    margin-top: 10px;
    color: var(--black);
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}

.common_separator .section_heading {
    text-align: left;
}

.common_separator .section_heading .separator h1::after {
    margin-left: 0;
    left: 0;
}

.common_separator .section_heading h1 {
    font-size: 47px;
    line-height: 55px;
    font-weight: 400;
    margin-bottom: 21px;
}

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

.common_separator .section_heading p {
    font-size: 18px;
}

.block_data {
    margin-top: 40px;
}

.block_data p {
    color: var(--black);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 0;
}

.infographic_wrapper img {
    width: 100%;
}

.infographic_block {
    opacity: 0;
    transition: transform 650ms ease-in-out, opacity 650ms ease-in-out;
    transform: scale3d(1, 1, 0.99);
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
}

.infographic_content {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1em;
}

.infographic_wrapper:hover .infographic_block {
    transform: scale3d(1, 1, 1);
    opacity: 1;
}

.infographic_content a {
    pointer-events: all;
}

.team_box {
    position: relative;
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 50%;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.team_box .team_inner_box img {
    width: 100%;
    border-radius: 50%;
    filter: grayscale(0%);
    transform: scale3d(1, 1, 1);
    transition: transform 350ms ease-in-out, filter 350ms ease-in-out;
}

.team_box:hover img {
    transform: scale3d(1.1, 1.1, 1.1);
    filter: grayscale(100%);
}

.team_info {
    text-align: center;
    border-bottom: 1px dashed rgba(24, 24, 24, 0.1);
}

.team_info h4 {
    color: var(--black);
    font-weight: 400;
    font-size: 17.5px;
    line-height: 20px;
    margin-bottom: 17px;
}

.team_info h1 {
    color: var(--black);
    font-weight: 400;
    font-size: 40px;
    line-height: 46px;
    margin-bottom: 30px;
}

.team_info h1 span {
    color: var(--primary);
}

.team_info p {
    color: var(--black);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}

.team_social_media {
    text-align: center;
}

.team_social_media ul {
    list-style: none;
    margin-top: 20px;
}

.team_social_media ul li {
    display: inline-block;
}

.team_social_media ul li i {
    font-size: 0.875rem;
    width: 2em;
    height: 2em;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 2em;
    border: 1px solid transparent;
}

.team_social_media ul li i.fa-facebook {
    background-color: #3b5998;
    transition: color 200ms ease;
}

.team_social_media ul li i.fa-facebook:hover {
    color: #3b5998;
    background-color: #fff;
    border: 1px solid #3b5998;
}

.team_social_media ul li i.fa-twitter {
    background-color: #1da1f2;
    transition: color 200ms ease;
}

.team_social_media ul li i.fa-twitter:hover {
    color: #1da1f2;
    background-color: #fff;
    border: 1px solid #1da1f2;
}

.team_social_media ul li i.fa-pinterest-p {
    background-color: #bd081b;
    transition: color 200ms ease;
}

.team_social_media ul li i.fa-pinterest-p:hover {
    color: #bd081b;
    background-color: #fff;
    border: 1px solid #bd081b;
}

.team_social_media ul li i.fa-youtube-play {
    background-color: #e21c2d;
    transition: color 200ms ease;
}

.team_social_media ul li i.fa-youtube-play:hover {
    color: #e21c2d;
    background-color: #fff;
    border: 1px solid #e21c2d;
}

.team_social_media ul li i.fa-linkedin {
    background-color: #007bb5;
    transition: color 200ms ease;
}

.team_social_media ul li i.fa-linkedin:hover {
    color: #007bb5;
    background-color: #fff;
    border: 1px solid #007bb5;
}

.team_social_media ul li i.fa-instagram {
    background: radial-gradient(circle at 33% 100%,
            #fed373 10%,
            #f15245 35%,
            #d92e7f 62%,
            #9b36b7 85%,
            #515ecf);
    transition: color 200ms ease;
    border: 1px solid #d92e7f;
}

.team_social_media ul li i.fa-instagram:hover {
    color: #ac38a2;
    background: #fff;
    border: 1px solid #ac38a2;
}

.team_spacer {
    border-bottom: 1px solid rgba(24, 24, 24, 0.1);
    margin-bottom: 75px;
    margin-top: 75px;
}

.team_info_small h4 {
    font-size: 15px;
    line-height: 20px;
}

.team_info_small h1 {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 20px;
}

.team_box_small {
    width: 160px;
    margin-left: auto;
    margin-right: auto;
}

/* contact page cssss */

.contact_bg {
    margin-bottom: 0;
}

.contact_card h4 {
    font-size: 18px;
    line-height: 21px;
}

.contact_card p {
    line-height: 21px;
    font-size: 14px;
}

.contact_map_container {
    /* height: calc(90vh - 100px); */
}

#sidebar_contact {
    position: absolute;
    top: 100px;
    left: -2px;
    width: 20%;
    margin: 16px 0px;
    /* height: calc(90vh - 132px); */
    box-shadow: 0 0 35px 0 rgba(24, 24, 24, 0.15);
    background: #fff;
    transition: 1000ms cubic-bezier(0.23, 1, 0.32, 1) all;
    transform: translateX(-100%);
    z-index: 11;
}

#sidebar_contact.active {
    transform: translateX(0);
    transition: 1000ms cubic-bezier(0.23, 1, 0.32, 1) all;
    left: 20%;
}

.contact_inner_box {
    position: relative;
    background-color: #fff;
    padding: 16px;
}

.contact_info_image {
    position: relative;
}

.contact_info_image img {
    width: 100%;
    height: 300px;
    border-radius: 5px;
    object-fit: cover;
}

.contact_info_image:after {
    position: absolute;
    background: var(--primary);
    content: "";
    display: block;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.contact_separator .section_heading h1 {
    font-size: 30px;
    margin-bottom: 17px;
    line-height: 36px;
    margin-top: 20px;
}

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

.contact_separator .section_heading p {
    font-size: 16px;
    line-height: 24px;
    word-break: break-all;
}

.contact_add_map {
    margin-top: 20px;
    border: 0;
    margin-bottom: 0;
}

.contact_add_map .contact_block_list li:last-child {
    margin-bottom: 0;
}

.contact_add_map .contact_block_list li a.marker span {
    color: var(--black);
}

.contact_add_map .contact_block_list li span {
    color: var(--primary);
}

.contact_add_map .contact_block_list li a:hover span {
    color: var(--black);
}

.contact_add_map .contact_block_list {
    margin-bottom: 0;
}

.contact_add_map .contact_block_list li {
    display: block;
}

.contact_add_map .contact_block_list li .icon_block {
    /* background: var(--black); */
    line-height: 2em;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 0 0 1em var(--black) inset;
    width: 2em;
    height: 2em;
    transition: all 280ms ease;
}

.contact_add_map .contact_block_list li a:hover .icon_block {
    background: #fff;
    box-shadow: 0 0 0 1px var(--black) inset;
    line-height: 2em;
    border-radius: 50%;
    text-align: center;
    width: 2em;
    height: 2em;
}

.contact_add_map .contact_block_list li a.marker {
    pointer-events: none;
}

.contact_add_map .contact_block_list li a:hover .icon_block i {
    color: var(--black);
}

.contact_add_map .contact_block_list li i {
    color: #fff;
    /* font-size: 14px;
    width: 39px;
    background: #000;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 50%; */
    font-size: 0.875rem;
}

.contact_add_map .contact_block_list li a {
    align-items: center;
    column-gap: 10px;
}

/* how it works page cssss */

/* .works_row{
    padding-top: 100px;
    background-image: url("http://protedo.com/wp-content/uploads/2017/08/bgn-bello-how-it-works.jpg");
    background-attachment: scroll;
    background-position: 0% -56%;
    background-repeat: no-repeat;
    background-size: contain;
} */

.works_row {
    padding-top: 100px;
    background-image: url(http://protedo.com/wp-content/uploads/2017/08/bgn-bello-how-it-works.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.work_inner_row {
    padding-bottom: 4.5rem;
    margin-bottom: 4.5rem;
    border-bottom: 1px solid rgba(24, 24, 24, 0.1);
}

.how_works_block {
    display: flex;
    align-items: start;
    justify-content: end;
    column-gap: 20px;
}

.how_works_info {
    text-align: right;
}

.how_works_info h6 {
    color: var(--black);
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 10px;
}

.how_works_info p {
    color: var(--black);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}

.how_works_icon svg {
    box-shadow: 0 0 0 1em var(--primary) inset;
    /* background: var(--primary);
    border: 2px solid var(--primary); */
    text-align: center;
    width: 2em;
    height: 2em;
    font-size: 3.4rem;
    line-height: 2em;
    border-radius: 50%;
    padding: 15px;
    transition: all 280ms ease;
}

.how_works_block:hover .how_works_icon svg {
    box-shadow: 0 0 0 2px var(--primary) inset;
    background-color: #ffffff;
}

.how_works_icon svg path {
    fill: #fff;
}

.how_works_block:hover .how_works_icon svg path {
    fill: var(--primary);
}

.how_works_block:hover .how_works_icon svg circle {
    fill: #fff;
}

.works_image {
    box-shadow: 0 5px 20px rgba(24, 24, 24, 0.15);
}

.works_image img {
    width: 100%;
    border-radius: 5px;
}

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

.try_section {
    padding-bottom: 5.5rem;
}

.try_heading h1 {
    font-size: 40px;
    line-height: 46px;
    margin-bottom: 17px;
}

.try_heading p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 20px;
}

.our_visitors {
    padding: 100px 0px 0px;
}

.visitor_slider {
    position: relative;
}

.visitor_slider .item {
    padding: 0rem 20rem;
}

.visitor_slider .owl-nav .owl-next {
    background: url(../images/left-arrow.png);
    color: transparent;
    width: 100px;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 20%;
}

.visitor_slider .owl-nav .owl-prev {
    background: url(../images/right-arrow.png);
    color: transparent;
    width: 100px;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 13%;
}

.visitor_box {
    display: flex;
    align-items: start;
    column-gap: 20px;
}

.visitor_icon svg {
    background: #fff;
    border: 2px solid #fff;
    color: var(--black);
    text-align: center;
    width: 2em;
    height: 2em;
    font-size: 1.6rem;
    line-height: 2em;
    border-radius: 50%;
    transition: all 280ms ease;
    padding: 8px;
}

.visitor_icon svg .nc-icon-wrapper {
    stroke: var(--black);
}

.visitor_icon svg circle {
    stroke: var(--black);
}

.visitor_info h4 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.visitor_info p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 0px;
    color: #fff;
}

.visitor_box:hover .visitor_icon svg {
    background: var(--black);
}

.visitor_box:hover .visitor_icon svg .nc-icon-wrapper {
    stroke: #fff;
}

.visitor_box:hover .visitor_icon svg path {
    fill: #fff;
}

.visitor_box:hover .visitor_icon svg circle {
    fill: #fff;
}

.visitor_image {
    margin-top: 40px;
}

.visitor_image img {
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.packages_section {
    padding-top: 6.5rem;
    padding-bottom: 8.5rem;
}

.package_card {
    border-radius: 3px;
    background-color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 5px 20px rgba(24, 24, 24, 0.15);
    text-align: center;
}

.package_card h3 {
    color: var(--primary);
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    padding: 1rem 1.25rem;
}

.package_card p {
    color: var(--black);
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    padding: 0px 25px;
}

.package_card h1 {
    color: var(--black);
    font-size: 64px;
    line-height: 64px;
    font-weight: 700;
    margin-bottom: 35px;
    display: flex;
    align-items: start;
    justify-content: center;
}

.package_card h1 span {
    color: var(--black);
    font-size: 22px;
    line-height: 22px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    margin-top: 12px;
}

.package_card ul {
    list-style: none;
    margin-bottom: 0;
}

.package_card ul li {
    padding: 16px;
}

.package_card ul li:nth-child(even) {
    background: rgba(24, 24, 24, 0.07);
}

.active_package {
    border: 2px solid var(--primary);
    margin-top: -55px;
}

.active_package h3 {
    background-color: var(--primary);
    color: #fff;
}

.package_wrapper {
    margin-top: 140px;
}

.package_action {
    text-align: center;
    margin-top: 75px;
}

.package_btn i {
    margin-left: 10px;
}

/* packages page csss */

.over_world {
    margin-bottom: 20px;
}

.package_box .section_heading {
    text-align: left;
}

.package_box .section_heading .separator h1::after {
    margin-left: 0;
    left: 0;
}

.package_info {
    margin-top: 40px;
}

.package_info p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--black);
}

.package_list {
    list-style: none;
    margin-bottom: 0;
}

.package_list li {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--black);
    padding-left: 1em;
}

.package_list li span {
    margin-right: 10px;
}

.package_list li span i {
    color: #fff;
    background-color: var(--primary);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    text-align: center;
    line-height: 18px;
    font-size: 12px;
}

/* advantages page csss */

.advantage_image {
    background: url(http://protedo.com/wp-content/uploads/2017/08/bgn-08.jpg);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-size: cover !important;
    transition-duration: 0;
    transition-delay: 0;
    background-attachment: scroll !important;
    background-position: 50% 5% !important;
    opacity: 0.25;
}

.advantage_wrapper {
    overflow-x: clip;
}

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

.bg_light {
    background: linear-gradient(5deg, #f1f1f1 10%, #ffffff 100%);
}

.advantage_box {
    max-width: 600px;
    padding-top: 150px;
    padding-right: 25px;
}

.right-align {
    margin-left: auto;
}

.advantage_box .section_heading_light {
    text-align: left;
}

.advantage_box .section_heading_light h1 {
    font-size: 50px;
    line-height: 60px;
}

.advantage_box .section_heading_light .separator h1::after {
    margin-left: 0;
    left: 0;
}

.advantage_box .section_heading_light p {
    font-size: 18px;
    margin-bottom: 40px;
}

.advantage_box .section_heading_light .separator {
    margin-bottom: 50px;
}

.advantage_box img {
    width: 100%;
}

.advantage_content {
    max-width: 600px;
    padding-left: 25px;
    padding-bottom: 40px;
}

.left-align {
    margin-right: auto;
}

.text-separator {
    border-bottom: 1px solid rgba(24, 24, 24, 0.1);
    margin-top: 40px;
    margin-bottom: 40px;
}

.advantage_header h4 {
    color: var(--black);
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.advantage_header p {
    color: var(--black);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 0px;
}

.right_shift {
    text-align: right;
    padding-left: 0px;
    padding-right: 25px;
}

.left_shift {
    text-align: left;
    padding-left: 25px;
    padding-right: 0px;
}

.advantage_box .section_heading {
    text-align: left;
}

.advantage_box .section_heading h1 {
    font-size: 50px;
    line-height: 60px;
}

.advantage_box .section_heading .separator h1::after {
    margin-left: 0;
    left: 0;
}

.advantage_box .section_heading p {
    font-size: 18px;
    margin-bottom: 40px;
}

.advantage_box .section_heading .separator {
    margin-bottom: 50px;
}

.counter_card {
    text-align: center;
}

.counter_card h2 {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 17px;
    font-weight: 400;
    font-family: "Inter", serif;
    color: var(--black);
}

.counter_card p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 0px;
    color: var(--black);
}

.advantage_header .btn_theme {
    margin-top: 20px;
}

.pac-container .pac-item .pac-item-query .pac-matched {
    color: var(--primary);
}

.pac-container {
    /* outline: 2px solid #ced4da; */
    outline: 2px solid #fff;
    margin-left: 2px;
    /* display: block!important; */
    border-top: 0 !important;
    margin-top: 1px;
    border-radius: 2px;
}

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

.hdpi.pac-logo:after {
    display: none;
}

.pac-item:first-child {
    border-top: 0 !important;
}

.pac-item {
    font-family: "Inter", sans-serif;
    transition: 300ms ease all;
    padding: 3px 12px;
}

.pac-item:hover {
    background: rgba(24, 24, 24, 0.07) !important;
    box-shadow: inset 3px 0 0 0 #fff, inset 5px 0 0 0 var(--primary);
}

.pac-icon {
    background: transparent !important;
    position: relative;
    margin-top: 0 !important;
}

.pac-icon:before {
    font-family: FontAwesome;
    content: "\f041";
    color: var(--primary);
    font-size: 16px;
    position: absolute;
    left: 5px;
    top: 0;
}

.hide-desktop {
    display: none;
}

.video_player {
    padding-bottom: 70px;
}

/* container custom cssss */

.container {
    max-width: 1260px;
    margin: auto;
    width: 100%;
    padding: 0 30px;
}

@media screen and (max-width: 1280px) {
    .container {
        max-width: 1024px;
    }

    .visitor_slider .item {
        padding: 0rem 10rem;
    }
}

@media screen and (max-width: 1024px) {
    .container {
        max-width: 768px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        max-width: 640px;
        padding-right: 2rem;
        padding-left: 2rem;
    }
}

@media screen and (max-width: 640px) {
    .container {
        max-width: none;
        padding: 0 15px;
    }
}

@media screen and (max-width: 576px) {
    .container {
        max-width: none;
        padding: 0 15px;
    }
}

@media screen and (max-width: 420px) {
    .container {
        max-width: none;
        margin-right: auto;
        margin-left: auto;
        padding: 0 15px;
    }
}

.spacing-row-10 {
    margin-right: -10px;
    margin-left: -10px;
}

.spacing-10 {
    padding-left: 10px;
    padding-right: 10px;
}

.spacing-row-6 {
    margin-right: -6px;
    margin-left: -6px;
}

.spacing-6 {
    padding-left: 6px;
    padding-right: 6px;
}

.same-row {
    margin-top: 3.7rem;
}

/* language and countries dropdown cssss */

.language_option {
    position: relative;
}

.header_flag {
    height: 24px;
    width: 24px;
}

.menu_heading h3 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0px;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.dropdown-menus {
    /* min-width: 100%; */
    width: 14.45rem;
    background: #fff;
    display: none;
    position: absolute;
    z-index: 999;
    top: 63px;
    margin: auto;
    right: 0;
    border-radius: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
        0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color),
        0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
        var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.dropdown-menus.open {
    display: block;
}

.dropdown-menus ul {
    list-style: none;
    margin-bottom: 0;
}

.language_item {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.language_item img {
    margin-right: 1rem;
}

.language_item span {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--black);
    text-transform: uppercase;
}

.language_item:hover {
    color: var(--black);
    text-decoration: none;
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}

.header_sticky .right_side .header_menu .language_option .dropdown-menus {
    top: 43px;
}

.filter_box {
    margin: 20px auto 0 auto;
    width: 80%;
    /* display: flex;
    justify-content: center; */
    /* border-bottom: 1px solid rgba(24, 24, 24, .1); */
    padding-bottom: 0;
}

.filters_list li label.active {
    font-weight: 600;
}

.filters_list input[type="range"] {
    -webkit-appearance: none;
    width: 50%;
    height: 2px;
    background: #ddd;
    /* Track color */
    /* border-radius: 5px; */
    outline: none;
}

.filters_list input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 11px;
    width: 11px;
    /* Thumb height */
    background: var(--primary);
    /* Thumb color */
    /* border: 2px solid #fff; */
    /* Thumb border */
    border-radius: 50%;
    /* Round the thumb */
    cursor: pointer;
}
.filters_list input[type="range"]::-moz-range-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 11px;
    width: 11px;
    /* Thumb height */
    background: var(--primary);
    /* Thumb color */
    /* border: 2px solid #fff; */
    /* Thumb border */
    border-radius: 50%;
    /* Round the thumb */
    cursor: pointer;
}

.outlined_button.active {
    margin: 1rem auto;
    max-width: 205px;
    box-sizing: border-box;
    /* margin-top: 2rem; */
    display: flex;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--primary);
    background: transparent !important;
    height: 50px;
}

.outlined_button {
    margin: 1rem auto;
    max-width: 205px;
    box-sizing: border-box;
    /* margin-top: 2rem; */
    display: flex;
    justify-content: center;
    border-radius: 10px;
    color: #9d9c9c;
    height: 50px;
   
}

.outlined_button button {
    font-size: 16px !important;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 150%;
    border-radius:10px;
    width: 100%;
    opacity: 1 !important;
    border: 1px solid #E8E7EB !important;
    color: #E8E7EB !important;
    background: #fff !important;

    /* 24px */
}

.outlined_button.active button {
    color: var(--primary) !important;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 150%;
    width: 100%;
    /* 24px */
}
.update_search_btn.active .search_btn{
    background: var(--primary) !important;
    color:#fff !important;
}

.show_more_btn button {
    color: #161032;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    /* 21px */
}

.selectBox_value label {
    display: inline;
}

.sort_filter .dropdown-items {
    border-bottom: none;
    padding: 7px 0.5em;
}

.sort_filter .dropdown-items img {
    margin-right: 5px;
    width: 20px !important;
    height: 20px !important;
    /* transform: scale(0.8); */
}

.selectBox_value img {
    margin-right: 5px;
    width: 20px !important;
    height: 20px !important;
}

.sort_filter .dropdown-menu {
    border: none !important;
}

.input-value {
    color: #8b8899;
    /* text-align: right; */
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    display: flex;
    justify-content: space-between;
    /* 21px */
}

.input-value .inputs {
    max-width: 80px;
    height: 50px;
    border-radius: 10px;
    border: 1px solid #e8e7eb;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-value .inputs label {
    width: 100%;
    display: flex;
    align-items: center;
    /* overflow: hidden; */
    margin: 0;
    padding: 4px;
    padding-left: 20px;
    color: #8b8899;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
}

.input-value .inputs label input {
    border: none;
    outline: none;
    width: 100%;
    color: #8b8899;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
}

.sort_filter {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    margin-bottom: 0;
    width: 100%;
    /* 24px */
}

.sort_filter label {
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.header-wrap .ratings {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 5px;
    margin-left: -3px;
}

.rating_icon {
    display: flex;
    align-items: center;
}

.reviews_ratings {
    color: var(--Black, #161032);
    font-size: 10px;
    font-weight: 400;
    line-height: 150%;
    /* 15px */
}

.contact_info li p {
    color: #000;
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 5px;
}

.contact_info li.exact_address p {
    color: #000;
    font-weight: 600;
}

.contact_info li i {
    color: var(--primary);
    margin-right: 2px;
}

.contact_info li a {
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
    pointer-events: visible;
}

.services_included h6 {
    color: #000;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    margin-bottom: 0 !important;
    /* margin-top: 10px; */
    /* 15px */
}

.services_included .service-wrapper span {
    color: #000;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-transform: capitalize;
    /* 18px */
}

.services_included .service-wrapper span.success {
    color: var(--primary);
    text-transform: none;
}

.listing_bottom .comments {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.image_inner_box .owl-nav {
    font-size: 3rem;
    color: gray;
}

.image_inner_box .owl-nav button {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #fff !important;
    box-shadow: 8px 4px 12px rgba(139, 136, 153, 0.63);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.image_inner_box .owl-nav .owl-prev {
    left: -0.75rem;
    box-shadow: -2px 4px 12px rgba(75, 73, 80, 0.63);
}

.image_inner_box .owl-nav .owl-next {
    right: -0.75rem;
    box-shadow: 2px 4px 12px rgba(75, 73, 80, 0.63);
}

.experience_box .image_inner_box .image_wrapper .overlay_wrapper {
    position: absolute;
    display: none;
    right: 10px;
    bottom: 10px;
}

.show_all_rooms {
    margin-top: 14px;
}

.show_all_rooms .update_search_btn {
    max-width: 205px;
    float: inline-end;
    float: right;
}

.pagination_wrapper .arrows button {
    /* color: #E8E7EB !important; */
    fill: #e8e7eb;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #fff !important;
    box-shadow: 8px 4px 12px rgba(139, 136, 153, 0.63);
    position: absolute;
    top: 50%;
}

.pagination_wrapper .arrows button.active {
    color: #161032 !important;
}

.pagination_wrapper .arrows button.left-arrow {
    left: -0.75rem;
    box-shadow: -2px 4px 12px rgba(75, 73, 80, 0.63);
    transform: translate(-100%, -50%);
}

.pagination_wrapper .arrows button.right-arrow {
    right: -0.75rem;
    box-shadow: 2px 4px 12px rgba(75, 73, 80, 0.63);
    transform: translate(100%, -50%);
}

#distance:focus {
    text-align: left !important;
}

.locationContainer {
    width: 150% !important;
    /* bottom: 2rem !important; */
    top: 65px;
    position: absolute;
    background: #fff;
    border-radius: 10px;
    /* padding-top: 23px; */
    text-align: left;
    box-shadow: none;
    /* box-shadow: 3px 0 15px 6px #00000026; */
    z-index: 9999;
    padding-top: 10px;
    padding-bottom: 10px;
    height: auto;
    border: 1px solid #e8e7eb;
}

.icon-xs {
    width: 16px;
    /* height: 16px; */
}

/* style relted to age_band start here */

/* .actions_body__dropdown {
    display: none;
    max-height: 400px;
    overflow-y: auto;
} */

/* .actions_body__dropdown.age_band {
    padding: 0rem 1.5rem 1.5rem;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    min-width: 320px;
    background-color: #fff;
    border: 1px solid var(--grey-200);
    border-radius: 0.625rem;
    z-index: 9999;
} */

.age_band {
    margin-bottom: 10px;
    list-style-type: none;
    line-height: 1.5;
}

.age_band__content {
    margin-bottom: 1rem;
    margin-top: 20px;
}

/* .actions_body__dropdown.active {
    display: block !important;

    overflow-x: hidden;
} */
.actions_body__dropdown.active {
    display: block !important;
    overflow-x: hidden;
    position: absolute;
    top: 51px;
    left: 0;
    background: #fff;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.actions_body__dropdown.age_band .col-md-12 {
    display: none;
}

.age_item__room_title {
    display: flex;
    justify-content: space-between;
    color: #8b8899;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.age_band__select_add_room,
.remove-room-btn {
    color: var(--primary);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    text-decoration-line: underline;
}

.header_banner_main .age_band__select_add_room, .header_banner_main .remove-room-btn {
    color: var(--orange);
}

.age_band__select_add_room {
    font-size: 16px;
}

.age_band_container {
    display: flex;
    justify-content: space-between;
    padding: 0.2rem 1rem;
    padding: 0.2rem 0;
    width: 100%;
}

.age_band_input {
    width: 100%;
}

.age_item:not(:last-child) {
    margin-bottom: 0.5rem;
}

.age_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.age_band__select {
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.age_item__participants_container {
    display: flex;
    justify-content: start;
    flex-direction: column;
}

.age_band .qty-container {
    display: flex;
    align-items: center;
}

.qty-container {
    display: flex;
    column-gap: 5px;
}

.age_item__participants_container a {
    display: block;
    margin-bottom: 0.313rem;
    font-size: 0.875rem;
    color: var(--black);
    font-weight: 400;
}

.max_min {
    display: flex;
    align-items: center;
}

.max_min span:first-child {
    margin-right: 0.625rem;
}

.max_min span {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--grey-500);
}

.max_min span,
.age_heading {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
}

.age_band__select {
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.age_band__select_value {
    display: block;
    cursor: pointer;
    border-radius: 10px;
    border: 1px solid #e8e7eb;
    background: #fff;
    padding: 14px 20px;
    font-size: 0.875rem;
    text-align: left;
}

.age_band__select_dropdown {
    /* position: absolute; */
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 240px;
    overflow-y: auto;
    display: none;
    border-radius: 10px;
    border: 1px solid #e8e7eb;
    background: #fff;
    background-color: #fff;
    z-index: 1;
}

.selected-ages {
    position: relative;
    z-index: 1;
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
}

.selected-age {
    display: flex;
    align-items: center;
    border: 1px solid #161032;
    padding: 10px;
    margin-right: 5px;
    margin-bottom: 15px;
    border-radius: 10px;
    /* margin-top: 15px; */
}

.selected-age-option {
    font-size: 0.875rem;
}

.remove-age {
    margin-left: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: none;
    background: none;
    padding: 0;
    color: #333;
}

.age_band__select_option {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 0.875rem;
}

.age_band__select_add_room,
.remove-room-btn {
    color: var(--primary);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    text-decoration-line: underline;
}

.header_banner_main .age_band__select_add_room, .header_banner_main .remove-room-btn {
    color: var(--orange);
}

.age_band__select_add_room {
    font-size: 16px;
}

#addRoomBtn {
    width: 100%;
    text-align: right;
}

.select_btn__container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-right: 12px;
}

.age_band .btn-shift-right {
    display: none;
}

.btn-shift-right {
    width: 205px;
    height: 50px;
    display: flex;
    justify-content: flex-end;
    border-radius: 10px;
}

.btn-shift-right button {
    text-align: right;
    width: 100%;
}

.btn-shift-right button {
    text-align: right;
    width: 100%;
}

button {
    background-color: transparent;
    cursor: pointer;
    outline: none;
    border: transparent;
    font-family: "Inter", sans-serif;
}

.selected-age-option {
    font-size: 0.875rem;
}

.remove-age {
    margin-left: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: none;
    background: none;
    padding: 0;
    color: #333;
}

/* style related to age_band ends here */

.primary-btn {
    width: 100%;
    background-color: var(--primary);
    border-color: transparent;
    border-radius: 10px;
    cursor: pointer;
    padding: 1rem 0;
    transition: var(--fast);
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    font-weight: 600;
}

.pricerange_wrapper {
    display: flex;
    margin-top: 10px;
    margin-left: -18px;
}

.when_where_wrapper {
    /* z-index: 1000; */
    display: flex;
    justify-content: center;
    padding: 0 20px 7px;
    border: 1px solid #e8e7eb;
}

.close_button {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    z-index: 99999;
}

.when_where_wrapper .row .col-md-3 {
    /* padding-left: 0; */
    z-index: 2;
    max-width: 23%;
}

.when_where_wrapper .row .col-md-3.guest {
    /* padding-left: 0; */
    z-index: 2;
    width: 100% !important;
    /* height: 67% !important; */
}

.when_where_wrapper .search_btn {
    background-color: var(--primary);
    width: 100%;
    border-radius: 10px;
}

.header_banner_main .search_btn {
    background-color: var(--orange);
}

.when_where_wrapper .search_btn:hover {
    color: #fff !important;
}

.listing_form {
    /* width: 60%; */
}

.age_item {
    display: flex;
    justify-content: space-between;
}

.age_header {
    color: #8b8899;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 18px */
}

.date_picker_wrapper {
    position: absolute;
    display: none;
    /* top: 80px; */
    left: 0;
    /* left: 50%;
    transform: translate(-50%); */
    z-index: 2;
    gap: 0.25rem;
    background: #fff;
}

.listing_search_item label {
    /* color: #757575; */
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    /* padding: 15px; */
    border: 1px solid rgba(24, 24, 24, 0.3);
    color: #161032;
    line-height: 150%;
}

.listing_search_item label img {
    position: unset;
    margin-left: 15px;
    height: 20px !important;
    width: 20px !important;
}

.listing_search_item input:focus {
    /* border: 1px solid rgba(24, 24, 24, 0.5); */
    border: none;
    /* box-shadow: 0 3px 10px rgba(24, 24, 24, 0.3); */
    outline: none;
}

.listing_search_item input {
    border: none;
    outline: none;
    padding: 15px 0 15px 10px;
    height: 100%;
    border-radius: 10px;
    max-width: 75%;
    flex-grow: 1;
}

.arrowIcon {
    position: relative;
}

.arrowIcon:after {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: all 0.2s ease-in-out;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.001' height='8.165' viewBox='0 0 14.001 8.165'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23212121;%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M13.861,60.224l-.7-.7a.441.441,0,0,0-.645,0L7,65.036,1.487,59.522a.441.441,0,0,0-.645,0l-.7.7a.441.441,0,0,0,0,.645l6.537,6.538a.441.441,0,0,0,.645,0l6.538-6.538a.442.442,0,0,0,0-.645Z' transform='translate(0 -59.382)'/%3E%3C/svg%3E");
}

.left_side_wrapper {
    /* height: calc(100vh - 127px); */
    position: relative;
    z-index: 9999;
    background: #fff;
    /* overflow-y: auto;
  overflow-x: hidden; */
}

@media screen and (max-width: 576px) {
    .left_side_wrapper {
        position: absolute;
        z-index: 9999;
    }
}

.left_inner_wrapper {
    height: calc(100vh - 154px);
    overflow-y: scroll;
    overflow-x: hidden;
}

/* .left_inner_wrapper::-webkit-scrollbar {
  display: none;
} */

/* Hide scrollbar for IE, Edge and Firefox */
/* .left_inner_wrapper { */
/* -ms-overflow-style: none;   */
/* IE and Edge */
/* scrollbar-width: none;   */
/* Firefox */
/* } */
.search_button_wrapper {
    /* display: none; */
    align-items: center;
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    /* box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow); */
    /* padding: 0.25rem 0.2rem 0.25rem 1rem; */
    padding: 0.25rem;
    background: none;
    z-index: 1;
    border-radius: 10px;
    border: 1px solid var(--grey-200);
}

.owl-dots button.owl-dot {
    margin-left: 4px;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    background-color: #e8e7eb;
}

.owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
}

.owl-dots button.owl-dot.active {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
}

.daterangepicker {
    z-index: 10;
    margin-top: 16px;
    border-radius: 10px;
    border: 1px solid #e8e7eb;
    /* display: flex !important; */
    flex-direction: column;
}

.daterangepicker {
    position: absolute;
    color: inherit;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #ddd;
    /* width: 278px; */
    max-width: none;
    padding: 0;
    margin-top: 7px;
    top: 100px;
    left: 20px;
    z-index: 3001;
    display: none;
    font-family: arial;
    font-size: 15px;
    line-height: 1em;
}

.daterangepicker td.disabled,
.daterangepicker option.disabled {
    text-decoration: none !important;
    cursor: not-allowed !important;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: #8b8899 !important;
    color: white !important;
}

.daterangepicker .drp-calendar.left {
    padding: 16px 0 16px 16px;
}

.daterangepicker .calendar-table td {
    height: 66px;
    font-size: 16px;
    font-weight: 400;
    width: 40px;
}

.drp-calendar {
    /* width: 100% !important; */
    max-width: initial !important;
    font-family: "Inter", "sans-serif";
}

.daterangepicker .drp-calendar {
    display: none;
    max-width: 270px;
}

.daterangepicker .drp-calendar.right {
    padding: 16px;
}

.daterangepicker .calendar-table {
    border: 1px solid #fff;
    border-radius: 4px;
    background-color: #fff;
}

.daterangepicker .calendar-table table {
    width: 100%;
    margin: 0;
    border-spacing: 0;
    border-collapse: collapse;
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
    min-width: 32px;
    /* width: 32px; */
    /* height: 24px; */
    line-height: 24px;
    /* font-size: 12px; */
    border-radius: 0;
    border: 1px solid transparent;
    white-space: nowrap;
    cursor: pointer;
}

.daterangepicker td.start-date {
    border-radius: 4px 0 0 4px;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: #357ebd;
    border-color: transparent;
    color: #fff;
}

.daterangepicker td.start-date {
    border-radius: 8px 0 0 8px;
}

.daterangepicker td.off.available {
    visibility: hidden;
    opacity: 0;
}

.daterangepicker td.in-range {
    background-color: var(--grey-200);
    color: black;
}

.daterangepicker .drp-buttons {
    /* display: none !important; */
}

.footer__list {
    margin: 25px 0 !important;
}

.footer_head {
    margin: 0 0px 36px 0px !important;
}

/* Adding CSS for for show more and show less */
.show_more_btn {
    padding-bottom: 15px;
}

.header-wrapper h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    font-family: Inter;
    padding-left: 10px;
}

/* 24-02-2024 */
.services_included {
    line-height: 1;
    width: 100%;
}

.listing_bottom .comments {
    line-height: 28px;
    padding-bottom: 1px;
    width: 100%;
    flex-direction: row-reverse;
    align-items: baseline;
}

/* #loaderCont{
  position: relative;
  width:100%;
  z-index: 99;
} */
#loaderCont, #loaderContMap {
    position: absolute;
    width: 100%;
    z-index: 99999;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    display: none;
    justify-content: center;
    padding-top:10%;
}

.loaderContImg {
    color: var(--primary);

    font-size: 10px;
    width: 108px;
    height: 108px;
    display: block;
    border-radius: 50%;
    position: relative;
    background-image: url("/assets/img/spinner.gif");
    background-size: cover;
    margin: 20% auto 0;
}

#loaderCont h3, #loaderContMap h3 {
    font-family: Inter;
    font-size: 16px;
    font-weight: 700;
    line-height:25px;
    letter-spacing: 0em;
    text-align: center;
    color: #000;
}
.update_search_btn .search_btn{
    background: #E8E7EB !important;
 color:#fff !important;
}
/* .owl-carousel .owl-stage-outer {
  transform: translate3d(0,0,0);
  width: 244.609px;
} */
/* #sidebar_info .owl-carousel .owl-stage-outer {
    transform: translate3d(0, 0, 0);
    width: 260px;
} */

.amount-group {
    margin-bottom: 2px;
}

.daynights {
    margin-top: 10px;
    margin-right: 10px;
    font-size: 12px;
}

#sidebar_info .info_places_top {
    margin-top: 15px;
}

#sidebar_info .amount-group+div {
    font-size: 10px;
    margin-right: 10px;
}

#sidebar_info .services_included {
    line-height: 1;
}

.service-wrapper.food_service {
    margin: 5px 0;
}

#sidebar_info .listing_bottom .comments {
    line-height: 22px;
    padding-bottom: 0;
}

#showLess svg {
    transform: rotate(180deg);
    top: 2px;
    position: relative;
}

.errorMsg {
    font-size: 16px;
    text-align: left;
    margin: 20px auto;
    color: #d23e29;
    font-weight: 400;
    border: 1px solid #e8e7eb;
    padding: 0 26px;
    border-radius: 10px;
    height: 72px;
    line-height: 72px;
    background: #fff;
}

.no_availability_container .owl-carousel.image_inner_box .owl-item {
    position: relative;
}

.no_availability_container .owl-carousel.image_inner_box .owl-nav,
.no_availability_container .listing_bottom,
.no_availability_container .show_all_rooms {
    display: none;
}

.no_availability_container .owl-carousel.image_inner_box .owl-item a img {
    opacity:0.5;
}
/* .no_availability_container .owl-carousel.image_inner_box .owl-item:after {
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(255, 255, 255, 0.6);
    display: block;
    top: 0;
    left: 0;
    position: absolute;
    border-radius: 8px;
} */

.soldOut {
    color: #8b8899;
    text-align: right;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 24px */
    margin-top: 20px;
    text-transform: uppercase;
}

/* Styles for the price input container */
.price-input-container {
    width: 100%;
}

.price-input .price-field {
    max-width: 80px;
    height:49px;
    border-radius: 10px;
    border: 1px solid #e8e7eb;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .price-field span { 
	margin-right: 10px; 
	margin-top: 6px; 
	font-size: 17px; 
  font-size: 14px;
  color: #8b8899;
     
} */
.price-field label {
    display: flex;
    margin:0;   
}

.price-field label span {
    font-size: 14px;
    color: #8b8899;
    font-size: 14px;
    color: #8b8899;
    font-weight: normal;
}

.price-field input {
    /* height: 50px; */
    border-radius: 10px;
    display: flex;
    align-items: center;
    text-align: left;
    justify-content: center;
    font-size: 14px;
    color: #8b8899;
    width: 60px;
    outline: 0;
    border: none;
    background: transparent;
}

/* .price-field::before {
  content: "$";
  font-size: 14px;
  position: absolute;
  top: 14px;
  left: 13px;
  color: #8b8899;
} */
.price-input {
    width: 100%;
    font-size: 19px;
    color: #555;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

/* Remove Arrows/Spinners */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.slider-container {
    width: 100%;
}

.slider-container {
    height: 2px;
    position: relative;
    background: #e4e4e4;
    border-radius: 5px;
    margin-top: 18px;
}

.slider-container .price-slider {
    height: 100%;
    left: 25%;
    right: 15%;
    position: absolute;
    border-radius: 5px;
    background: #e4e4e4;
}

.range-input {
    position: relative;
}

.range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    background: none;
    top: -5px;
    pointer-events: none;
    cursor: pointer;
    -webkit-appearance: none;
}

/* Styles for the range thumb in WebKit browsers */
.range-input input[type="range"]::-webkit-slider-thumb {
    height: 11px;
    width: 11px;
    border-radius: 70%;
    /* background: #555;  */
    background: var(--primary);
    position: relative;
    top: 2px;
    pointer-events: auto;
    -webkit-appearance: none;
}
.range-input input[type="range"]::-moz-range-thumb {
    height: 11px;
    width: 11px;
    border-radius: 70%;
    /* background: #555;  */
    background: var(--primary);
    position: relative;
    top: 2px;
    pointer-events: auto;
    border:none;
    -webkit-appearance: none;
}
.image_inner_box.owl-reponsive.owl .owl-stage {
    min-width: 10317px;
}

.errorNoResult {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.errorNoResult svg {
    margin: auto;
}

.errorNoResult h4 {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: 0em;
    text-align: center;
    margin: 1rem 0;
}

.errorNoResult p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
}

.modal_head_main {
    color: var(--Black, #161032);
    font-size: 14px;
    font-weight: 700;
    line-height: 150%;
    padding: 10px 20px 0;
    margin-bottom:21px;
}

.error_field {
    border-color: #d23e29 !important;
}

.error_text, .error_text_price {
    font-size: 14px;
    font-weight: 400;
    display: none;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: left;
    color: #d80027;
}

.error_text_price {
    margin-top: -10px;
    display: none;
}

.rightWrapper {
    position: relative;
    width: calc(100% - 100px);
}

#sidebar_box {
    width: 40%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    height: calc(100vh - 154px);
    overflow-y: auto;
    padding-top: 29px;
}

.taxcont {
    background: #fff;
    box-shadow: 0px 0px 5px 0 rgba(0, 0, 0, 0.4);
    display: none;
    position: absolute;
    padding: 15px;
    width: 200px;
    height: auto;
    border-radius: 16px;
    top: 35px;
    right: 0;
}
.taxcont .incl, .taxcontmap .incl{
    order:1 !important;
}
.taxcont .excl, .taxcontmap .excl{
    order:2 !important;
}
.taxcont h1,
.taxcontmap h1 {
    font-family: Inter;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #000;
    margin: 0;
}

.taxcont p,
.taxcontmap p {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: left;
    color: #000;
    margin-bottom: 0;
}

.taxcont p+h1,
.taxcontmap p+h1 {
    margin-top: 20px;
}

.group:hover+.taxcont,.group:active+.taxcont,
.group:hover+.taxcontmap, .group:active+.taxcontmap {
    display: flex;
    flex-direction:column;
    gap: 15px;
}

.taxcontmap {
    background: #fff;
    box-shadow: 0px 0px 5px 0 rgba(0, 0, 0, 0.4);
    display: none;
    position: absolute;
    padding: 15px;
    width: 200px;
    height: auto;
    border-radius: 16px;
    top: -84px;
    right: 0;
}

.listing_search_item_container {
    padding: 0;
    margin-right: 30px;
}

.listing_search_item_container:last-child {
    padding: 0;
    margin-right: 0;
}

.modal_head {
    display: none;
}

.update_search_btn a[disabled="disabled"] {
    pointer-events: none;
    cursor: default;
}

.update_search_btn a:not[disabled="disabled"] {
    pointer-events: none;
    cursor: default;
}

@keyframes shine {
    to {
        background-position-x: -200%;
    }
}

.loadingScreen {
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    animation: 1s shine linear infinite;
    height: 21px;
    background-size: 200% 100%;
    width: 50%;
    margin-bottom: 3px;
}

.loadingScreen.amount-group {
    width: 25%;
}
.actions_body__btn_field {
   
    margin-bottom: 0;
    margin-top: 11px;
    border:1px solid rgba(24, 24, 24, 0.3)
}
.actions_body__btn_field img {
    position: unset;
    margin-left: 15px;
    height: 20px !important;
    width: 20px !important;
}
.actions_body__btn_field span {
    padding-left:7px;
    font-size: 14px;
}
.actions_body__btn_field_wrapper.calendar_wrapper {
    z-index: 10;
    margin-right: 30px;
}
.actions_body__btn_field__calendar:after,
.participant-icon:after,
.header_banner_search_container-when .search_popup_item:after {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: all 0.2s ease-in-out;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.001' height='8.165' viewBox='0 0 14.001 8.165'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23212121;%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M13.861,60.224l-.7-.7a.441.441,0,0,0-.645,0L7,65.036,1.487,59.522a.441.441,0,0,0-.645,0l-.7.7a.441.441,0,0,0,0,.645l6.537,6.538a.441.441,0,0,0,.645,0l6.538-6.538a.442.442,0,0,0,0-.645Z' transform='translate(0 -59.382)'/%3E%3C/svg%3E");
}

.header_banner_search_container-when .search_popup_item:after {
    position: relative;
    right: 10px;
    transform: translateY(-50%) rotate(0deg);
    transition: all 0.2s ease-in-out;
    top: 12px;
    padding-right: 2px;
}

/* .header_banner_search_container-when .search_popup_item:after {
    top: 56%;
    right: 13%;
} */

#actions_body__btn_field_span_daterange {
    border: none;
    cursor: pointer;
    outline: none;
    width: 100%;
    font-size: 14px;
    font-family: 'Inter';
}
.actions_body__btn_field_span {
    max-width: 75%;
}
.actions_body__btn_field,.participant-icon {
    
    position: relative;
}
.actions_body__btn_field {
    
    padding: 0.625rem 0 !important;
}
[data-field="participants"] {
    margin-bottom:0;
}
.experience_box:hover{
    z-index: 9 !important;
}

.dropdown-items.selected{
    font-weight: 700;
}
/* Chrome, Safari, Edge, Opera */
input.max-input::-webkit-outer-spin-button,input.min-input::-webkit-outer-spin-button, input.min-input::-webkit-inner-spin-button
input.max-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input.max-input[type=number], input.min-input[type=number], #location_in[type=number] {
  -moz-appearance: textfield;
}