/* common css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-family: "Nunito Sans", serif;
    font-weight: 600;
    color: #181818;
}

body {
    font-family: "Nunito Sans", sans-serif;
    color: #181818;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Zilla Slab', serif;
}

.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: #F66542;
    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:hover{
    color: #fff;
    background: #f43d11;
    box-shadow: 0 3px 10px rgba(24,24,24,0.3);
    text-decoration: none;
    transition: all 300ms ease;
}
.btn_theme:after{
    position: absolute;
    content: "";
    display: block;
    border: 2px solid transparent;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-color: #f66542;
    border-radius: 3px;
}
.btn_theme: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_outline{
    background-color: transparent;
    box-shadow: 0 0 0 2px #f66542 inset;
    border: 0;
    color: #F66542;
    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: #F66542;
    box-shadow: 0 0 0 2em #f66542 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: #f66542;
    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,.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: #F66542;
    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,.1);
}
.section_heading .separator h1::after{
    content: ' ';
    width: 70px;
    margin-left: -35px;
    position: absolute;
    left: 50%;
    border-bottom: 2px solid #f66542;
    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,.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: "Nunito Sans";
}
.header_sticky {
    background-color: #fff;
    z-index: 10;
    position: fixed;
    top: -60px;
    box-shadow: 0 0 30px 0 rgba(24,24,24,.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: #fff;
    display: block;
    position: relative;
    font-weight: 700;
    line-height: 100px;
    padding: 0;
}
.header_menu_item a:hover {
    cursor: pointer;
    text-decoration: none;
    color: #F66542;
}
.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: #f66542;
}
.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,.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: #181818;
    padding: 1em 1.5em;
    box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 0 #f66542;
}
.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,.1);
}
.submenu_list li a:hover{
    box-shadow: inset 0 0 0 3px #fff, inset 5px 0 0 0 #f66542;
    transition: all ease 300ms;
}
.header_actions{
    margin-left: 40px;
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.login_link a i{
    color: #f66542;
    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: #f66542;
    transition: 0.3s;
}

/* header sticky css */
.header_sticky{
    box-shadow: 0 0 35px 0 rgba(24,24,24,.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: #181818;
}
.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: 80%;
    top: 0;
    bottom: 0;
    right: -1px;
    /* background-color: rgba(0, 0, 0, 0.5); */
    transform: translateX(100%);
    transition: transform 1s cubic-bezier(.230,1,.320,1);
}
.sidebar{
    transform: translateX(0);
}
.mobile_menu_dropdown {
    display: flex;
    flex-direction: column;
    min-width: 100%;
    min-height: 100%;
    /* padding-left: 1.5rem; */
    padding-right: 1.5rem;
    padding-bottom: 1rem;
    padding-top: 1rem;
    /* border-top-left-radius: 0.75rem;
    border-bottom-left-radius: 0.75rem; */
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    background-color: #181818;
}
.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: #181818;
} */
.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: #F66542;
    font-size: 25px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 30px;
}
.footer_box p{
    color: #181818;
    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: #181818;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.footer_links li a:hover{
    text-decoration: none;
    color: #F66542;
}
.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: #181818;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.footer_social ul .navigate a:hover{
    text-decoration: none;
    color: #F66542;
}
.footer_social ul li a{
    color: #F66542;
}
.footer_social ul li a:hover{
    color: #181818;
}
.footer_input{
    position: relative;
}
.footer_input input{
    border-radius: 3px;
    border: 2px solid rgba(24,24,24,.3);
    height: 3.125rem;
    transition: all 500ms ease;
}
.footer_input input:focus{
    box-shadow: 0 3px 10px rgba(24,24,24,.3);
    border: 2px solid rgba(24,24,24,.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: #f66542;
    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: #757575;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    border-radius: 3px;
    /* padding: 11px 15px; */
    height: 42px!important;
    border: 1px solid rgba(24,24,24,.3);
}
.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,.1);
    padding: 0.8em 1em!important;
    line-height: 1rem;
    color: #181818;
    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,.07)!important;
    color: #f66542!important;
    box-shadow: inset 3px 0 0 0 #fff, inset 5px 0 0 0 #f66542;
}
.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;
}
  
  /* Track */
::-webkit-scrollbar-track {
    background: #efefef; 
    border-radius: 10px;
}
   
  /* Handle */
::-webkit-scrollbar-thumb {
    background: #adadad; 
    border-radius: 10px;
}
  
  /* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #f66542; 
}

.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,.6) 10%,rgba(24,24,24,.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,.1);
}
.box_content .separator_inner h4::after {
    content: ' ';
    width: 50px;
    margin-left: -25px;
    position: absolute;
    left: 50%;
    border-bottom: 2px solid #f66542;
    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: 'Zilla Slab', serif;
    pointer-events: visible;
}
.categories_box li a:hover{
    text-decoration: none;
    color: #181818;
}
.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);
}
.image_inner_box .image_wrapper:before{
    z-index: 1;
    display: block;
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    transition: 300ms ease opacity;
    opacity: 1;
    top: 0;
    height: 80px;
    /* background: linear-gradient(to bottom,rgba(24,24,24,.6) 20%,rgba(24,24,24,0) 100%); */
}
.experience_box:hover .image_inner_box .image_wrapper:before{
    opacity: .2;
}
.image_wrapper{
    border-radius: 3px;
    overflow: hidden;
    background: rgba(24,24,24,.07);
    position: relative;
}
.image_inner_box .image_wrapper:after{
    z-index: 1;
    display: block;
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    transition: 300ms ease opacity;
    opacity: 1;
    bottom: 0;
    height: 130px;
    /* background: linear-gradient(to top,rgba(24,24,24,.75) 20%,rgba(24,24,24,.5) 60%,rgba(24,24,24,0) 100%); */
}
.experience_box:hover .image_inner_box .image_wrapper:after{
    opacity: .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;
    width: 100%;
    /* height: auto; */
    height: 290px;
    object-fit: cover;
}
.category_image_inner_box .image_wrapper .image_box img{
    height: 230px;
}
.experience_box:hover .image_inner_box .image_wrapper img {
    transform: scale(1.1);
}
.experience_box .image_inner_box .image_wrapper .overlay_wrapper{
    position: absolute;
    content: "";
    display: block;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.experience_box .image_inner_box .image_wrapper .overlay_wrapper:before{
    position: absolute;
    background: #f66542;
    content: "";
    display: block;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: 300ms ease opacity;
}
.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: #181818;
    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,.25);
    transition: 300ms ease all;
    transform: scale(.5);
}
.experience_box:hover .image_inner_box .image_wrapper .overlay_wrapper:before {
    opacity: .85;
}
.experience_box:hover .image_inner_box .image_wrapper .overlay_wrapper .eye_icon{
    opacity: 1;
    transform: scale(1);
    transition-delay: 100ms;
}
.experience_box .image_inner_box .image_wrapper .overlay_wrapper .eye_icon img{
    width: 2rem;
    height: 2rem;
}
.experience_box:hover .image_inner_box .image_wrapper .overlay_wrapper .eye_icon img{
    width: 2rem;
    height: 2rem;
}
.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 i{
    color: #f66542;
    margin-right: 2px;
}
.contact_info li a{
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
    pointer-events: visible;
}
.contact_info li a:hover{
    text-decoration: none;
}
.contact_info li .telephone:hover{
    text-decoration: none;
    color: #181818;
}
.pricing{
    background: #F66542;
    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: 20px;
}
.places_box .image_inner_box{
    width: 50%;
}
.places_box .info_places{
    width: 50%;
}
.info_places{
    pointer-events: none;
    z-index: 4;
}
.info_places .small{
    color: #181818;
    font-size: 11px;
    font-weight: 400;
    line-height: 11px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.info_places h3{
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: #181818;
}
.info_places .contact_info li a{
    color: #181818;
}
.info_places .contact_info li a:hover{
    color: #F66542;
}
.info_places .contact_info{
    margin-bottom: 0px;
}
.info_places .contact_info li i{
    margin-right: 6px;
}
.rating_box{
    list-style: none;
    margin-bottom: 5px;
}
.rating_box li{
    display: inline-block;
    color: #F66542;
    font-size: 12px;
}
.description{
    border-top: 1px solid rgba(24,24,24,.1);
    border-bottom: 1px solid rgba(24,24,24,.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;
}
.places_box .image_inner_box .image_wrapper .image_box img{
    height: 200px;
}
.listing_bottom{
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.listing_bottom .comments, .listing_bottom .ratings{
    color: rgba(24,24,24,.8);
    font-size: 12px;
    font-weight: 400;
}
.listing_bottom .comments i, .listing_bottom .ratings i{
    color: #181818;
    font-size: 14px;
    margin-right: 8px;
}
.listing_bottom .price{
    color: #F66542;
    font-size: 12px;
    font-weight: 400;
}
.listing_bottom .price i{
    color: #F66542;
    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,.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: #181818;
}
.join_card{
    display: flex;
    align-items: start;
    column-gap: 15px;
    margin-bottom: 15px;
}
.join_card img{
    width: 60px;
}
.join_content h4{
    color: #181818;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
}
.join_content p{
    color: #181818;
    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;
}
#sidebar_box {
    position:fixed;
    top:100px;
    left:0px;
    width: 40%;
    height:100%;
    box-shadow: 0 0 35px 0 rgba(24,24,24,.15);
    background:#fff;
    transition: 1000ms cubic-bezier(.230,1,.320,1) all;
}
#sidebar_box.active {
    transform: translateX(-100%);
}
#sidebar_box .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,.3);
    color: #181818;
    transition: 1000ms cubic-bezier(.230,1,.320,1) all;
    cursor: pointer;
}
#sidebar_box .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_box.active .toggle-btn span {
    transform: rotate(180deg);
    margin-left: 2px;
}
.listing_container{
    padding: 30px;
    overflow: hidden;
    overflow-y: auto;
    height: 100%;
}
.listing_form{
    border-bottom: 2px solid #181818;
    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: #181818;
    text-align: left;
    display: block;
    margin-bottom: 0;
}
.listing_search_item input {
    color: #757575;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    border-radius: 3px;
    padding: 11px 15px;
    height: 42px;
    border: 1px solid rgba(24,24,24,.3);
}
.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,.3);
    padding: 11px 15px;
}
.listing_search_item .select_category .ss-main .ss-single-selected:focus{
    border: 1px solid rgba(24,24,24,.5);
    box-shadow: 0 3px 10px rgba(24,24,24,.3);
}
.listing_search_item .ss-main .ss-single-selected .placeholder{
    color: #181818;
    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 input:focus{
    border: 1px solid rgba(24,24,24,.5);
    box-shadow: 0 3px 10px rgba(24,24,24,.3);
}
.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: .2s;
    border: 1px solid rgba(24,24,24,.3);
}
.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 2px;
    background-color: rgba(24, 24, 24, 0.1);
    transition: .2s;
}
  
input:checked + .slider {
    background-color: #fff;
}
input:focus + .slider {
    box-shadow: none;
} 
input:checked + .slider:before {
    transform: translateX(28px);
    background-color: #f66542;
    box-shadow: 0 1px 3px rgba(24,24,24,.5);
}
.slider.round {
    border-radius: 34px;
}
.slider.round:before {
    border-radius: 50%;
}
.search_listing_actions a{
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    padding: 17px 12px;
}
.product_listing{
    margin-top: 20px;
}
.result_text{
    color: #181818;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.selectBox {
    position: relative;
    cursor: pointer;
    border-radius: 3px;
    padding: 11px 15px;
    height: 42px;
    border: 1px solid rgba(24,24,24,.3);
    width: 200px;
}
.selectBox_value {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    color: #181818;
    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: 100%;
    /* max-height: 250px; */
    z-index: -1;
    overflow-y: auto;
    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: #181818;
    cursor: pointer;
    padding: 0.8em 1em;
    line-height: 20px;
    margin: 0;
    transition: 300ms ease all;
    border-bottom: 1px solid rgba(24,24,24,.1);
}
.dropdown-items:last-child{
    border-bottom: 0;
}
.dropdown-items:hover{
    background: rgba(24,24,24,.07);
    color: #f66542;
    box-shadow: inset 3px 0 0 0 #fff, inset 5px 0 0 0 #f66542;
    text-decoration: none;
}
.filter_box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(24,24,24,.1);
    padding-bottom: 1rem;
}
.sort_filter{
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin-bottom: 0;
}
.product_listing_view{
    margin-top: 10px;
}
.product_tabs{
    column-gap: 10px;
    justify-content: end;
    align-items: center;
}
.product_tabs .view_as{
    color: #181818;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}
.product_tabs li .nav-link{
    color: #181818;
    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: #f66542;
    opacity: 1;
    background-color: transparent;
}
.product_tabs li .nav-link i{
    margin-right: 6px;
}
.product_tab_content{
    margin-top: 10px;
    margin-bottom: 120px;
}
.like_icon{
    background-color: #f66542;
    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 #f66542; */
}
.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: 6px;
    border-radius: 5px;
    background: #fff; 
    outline: none;
    padding: 0;
    margin: 18px 0 0;
}
#range-slider__range::-webkit-slider-thumb {
    appearance: none;
    width: 17px;
    height: 17px;
    border-radius: 100%;
    background: #f66542;
    cursor: pointer;
    transition: 0.15s ease-in-out;
  }
#range-slider__range:active::-webkit-slider-thumb {
    background: #f66542;
    border: 2px solid #f43d11;
}
#range-slider__value {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #181818;
}

/* right sidebar on map marker click css */
#sidebar_info {
    position:fixed;
    top:100px;
    right:0px;
    width: 20%;
    height:100%;
    box-shadow: 0 0 35px 0 rgba(24,24,24,.15);
    background:#fff;
    transition: 1000ms cubic-bezier(.230,1,.320,1) all;
    transform: translateX(100%);
}
#sidebar_info.active {
    transform: translateX(0);
    transition: 1000ms cubic-bezier(.230,1,.320,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,.1);
    font-size: 2em;
    color: #f66542;
    transition: 200ms ease all;
}
.marker_list li a p{
    font-size: .6875rem;
    font-weight: 400;
    color: #181818;
    text-transform: uppercase;
    opacity: .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,.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: #181818;
    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: #f66542;
}
.contact_block_list li i{
    color: #f66542;
    font-size: 1rem;
    width: 2rem;
}
.contact_block_list li span{
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #181818;
    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: #181818;
}
.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: #f66542;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 0;
}
.reviews_user li article .user_info .ratings_user i{
    color: #f66542;
    font-size: .8125rem;
}
.reviews_user li article .commentText .comment{
    font-size: .875rem;
    line-height: 1.4236em;
    color: #181818;
    font-weight: 400;
}
.write_review{
    text-align: center;
}
.write_review a:first-child{
    padding-right: 15px;
}
.write_review a{
    color: #181818;
    font-size: 14px;
    font-weight: 700;
}
.write_review a i{
    margin-right: .625rem;
}
.working_days{
    display: flex;
    align-items: center;
    column-gap: 4px;
}
.working_days small{
    color: #181818;
    font-size: 12px;
    opacity: .5;
    text-transform: uppercase;
    cursor: pointer;
}
.working_days small span{
    color: #181818;
    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: #181818;
    font-size: 14px;
    font-weight: 600;
}
.show_days dd{
    color: #181818;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
}

/* google map csss */
.map_container{
    height: calc(100vh - 100px);
    position: relative;
    width: 100%;
}
#map {
    margin:0 auto;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.map_label{
    background: #F66542;
    bottom: 30px;
    position: absolute;
    z-index: 111;
    left: 50%;
    padding: 10px 10px;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
}
.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: .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,.1);
}
.about_content_holder .separator-line h1:before{
    content: ' ';
    width: 70px;
    margin-left: -35px;
    position: absolute;
    left: 50%;
    border-bottom: 2px solid #f66542;
    top: 0;
}
.about_content_holder .separator-line h1 {
    font-size: 40px;
    line-height: 46px;
    font-weight: 700;
    margin-bottom: 0;
    color: #181818;
    margin-top: 10px;
}
.about_content_holder h4{
    color: #181818;
    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: #181818;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}
.page_breadcrumb li a:hover{
    text-decoration: none;
    color: #f66542;
}
.page_breadcrumb li:first-child:before{
    display: none;
}
.page_breadcrumb li:before{
    display: inline-block;
    width: 5px;
    height: 5px;
    content: "";
    background: #181818;
    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: #181818;
    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: #181818;
    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,.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,.1);
}
.team_info h4{
    color: #181818;
    font-weight: 400;
    font-size: 17.5px;
    line-height: 20px;
    margin-bottom: 17px;
}
.team_info h1{
    color: #181818;
    font-weight: 400;
    font-size: 40px;
    line-height: 46px;
    margin-bottom: 30px;
}
.team_info h1 span{
    color: #F66542;
}
.team_info p{
    color: #181818;
    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: .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,.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,.15);
    background: #fff;
    transition: 1000ms cubic-bezier(.230,1,.320,1) all;
    transform: translateX(-100%);
    z-index: 11;
}
#sidebar_contact.active {
    transform: translateX(0);
    transition: 1000ms cubic-bezier(.230,1,.320,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: #f66542;
    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: #181818;
}
.contact_add_map .contact_block_list li span{
    color: #F66542;
}
.contact_add_map .contact_block_list li a:hover span{
    color: #181818;
}
.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: #181818; */
    line-height: 2em;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 0 0 1em #181818 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 #181818 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: #181818;
}
.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: .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,.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: #181818;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 10px;
}
.how_works_info p{
    color: #181818;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}
.how_works_icon svg{
    box-shadow: 0 0 0 1em #f66542 inset;
    /* background: #f66542;
    border: 2px solid #f66542; */
    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 #f66542 inset;
    background-color: #ffffff;
}
.how_works_icon svg path{
    fill: #fff;
}
.how_works_block:hover .how_works_icon svg path{
    fill: #f66542;
}
.how_works_block:hover .how_works_icon svg circle{
    fill: #fff;
}
.works_image{
    box-shadow: 0 5px 20px rgba(24,24,24,.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: #181818;
    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: #181818;
}
.visitor_icon svg circle{
    stroke: #181818;
}
.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: #181818;
}
.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,.15);
    text-align: center;
}
.package_card h3{
    color: #F66542;
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    padding: 1rem 1.25rem;
}
.package_card p{
    color: #181818;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    padding: 0px 25px;
}
.package_card h1{
    color: #181818;
    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: #181818;
    font-size: 22px;
    line-height: 22px;
    font-weight: 700;
    font-family: "Nunito Sans", 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 #F66542;
    margin-top: -55px;
}
.active_package h3{
    background-color: #F66542;
    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: #181818;
}
.package_list{
    list-style: none;
    margin-bottom: 0;
}
.package_list li{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #181818;
    padding-left: 1em;
}
.package_list li span{
    margin-right: 10px;
}
.package_list li span i{
    color: #fff;
    background-color: #F66542;
    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: .25;
}
.advantage_wrapper{
    overflow-x: clip;
}
.bg_theme{
    background-color: #F66542;
}
.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,.1);
    margin-top: 40px;
    margin-bottom: 40px;
}
.advantage_header h4{
    color: #181818;
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}
.advantage_header p{
    color: #181818;
    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: "Nunito Sans", serif;
    color: #181818;
}
.counter_card p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 0px;
    color: #181818;
}
.advantage_header .btn_theme{
    margin-top: 20px;
}

.pac-container .pac-item .pac-item-query .pac-matched{
    color: #F66542;
}
.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: "Nunito Sans", sans-serif;
    transition: 300ms ease all;
    padding: 3px 12px;
}
.pac-item:hover{
    background: rgba(24,24,24,.07)!important;
    box-shadow: inset 3px 0 0 0 #fff, inset 5px 0 0 0 #f66542;
}
.pac-icon{
    background: transparent !important;
    position: relative;
    margin-top: 0!important;
}
.pac-icon:before {
    font-family: FontAwesome;
    content: "\f041";
    color: #f66542;
    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: #181818;
    text-transform: uppercase;
}
.language_item:hover{
    color: #181818;
    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;
}
