@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&family=Roboto:wght@300;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    outline: 0;
}

body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

ul,
ol {
    list-style: none;
}

a {
    display: inline-block;
    text-decoration: none;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
ol,
li,
span {
    margin: 0;
    padding: 0;
    color: var(--colorBlack);
}

span,
p {
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    color: #505873f2;
}

:root {
    --colorPrimary: #2046DA;
    --colorSecondary: #ff5a5f;
    --colorOrange: #FE9F10;
    --colorWhite: #fff;
    --colorBlack: #061035;
    --ratingColor: #EC8C0F;
    --lightBg: #F5F8FE;
    --paraColor: #505873f2;
    --borderColor: #ddd;
}

/*====================
   COMMON CSS START
=====================*/
.common_btn {
    font-size: 16px;
    color: var(--colorWhite);
    padding: 15px 30px;
    border: 1px solid var(--colorWhite);
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-transform: capitalize;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.common_btn i {
    font-size: 10px;
    margin-left: 5px;
}

.common_btn:hover {
    background: var(--colorBlack);
    color: var(--colorWhite);
    border-color: var(--colorBlack);
}

.read_btn {
    font-size: 16px;
    color: var(--colorWhite);
    background: var(--colorPrimary);
    border-radius: 4px;
    padding: 10px 20px;
    text-transform: capitalize;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.read_btn::after {
    position: absolute;
    content: "";
    background: #dddddd26;
    width: 20px;
    height: 100px;
    transform: rotate(25deg);
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    -o-transform: rotate(25deg);
    top: -30px;
    left: -35px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.read_btn:hover {
    color: var(--colorWhite);
}

.read_btn:hover::after {
    left: 120%;
}

.hire_btn {
    font-size: 16px;
    font-weight: 500;
    color: #05152f;
    font-family: 'Poppins', sans-serif;
    border: 1px solid var(--colorPrimary);
    border-radius: 3px;
    padding: 7px 15px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    text-transform: capitalize;
}

.hire_btn:hover {
    color: #284CD3;
}

.small_heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--colorPrimary);
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
}

.medium_heading {
    font-size: 30px;
    font-weight: 700;
    color: var(--colorBlack);
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    margin: 30px 0px 25px 0px;
}

/*====================
   COMMON CSS END
=====================*/


/*====================
   TOPBAR PART START
=====================*/
#wsus__topbar {
    width: 100%;
    height: 40px;
    background: #CED8FF;
    position: relative;
    z-index: 99;
}

.wsus__topbar_left {
    display: flex;
    line-height: 40px;
}

.wsus__topbar_left li {
    margin-right: 20px;
}

.wsus__topbar_left li a {
    color: var(--colorPrimary);
    font-size: 15px;
    font-weight: 400;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.wsus__topbar_left li a i {
    margin-right: 5px;
}

.wsus__topbar_left li a:hover {
    color: var(--colorBlack);
}


.wsus__topbar_right {
    display: flex;
    line-height: 40px;
    justify-content: flex-end;
}

.wsus__topbar_right li {
    margin-left: 20px;
}

.wsus__topbar_right li:first-child {
    margin-left: 0;
}

.wsus__topbar_right li a {
    font-size: 15px;
    color: var(--colorPrimary);
    text-transform: capitalize;
    font-weight: 600;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.wsus__topbar_right li a:hover {
    color: var(--colorBlack);
}

.wsus__topbar_login {
    padding: 0px 12px !important;
    background: var(--colorPrimary);
    color: var(--colorWhite) !important;
    width: auto !important;
    border-radius: 1px;
}

.wsus__topbar_login i {
    margin-right: 5px;
}

.wsus__topbar_login:hover {
    background: var(--colorBlack);
}

/*====================
   TOPBAR PART END
=====================*/

/*====================
 LOG IN POPUP START
=====================*/
.modal-title {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
}

.modal-header .btn-close {
    margin: 0;
    border: 2px solid var(--borderColor);
    padding: 8px;
    outline: none;
    border-radius: 50%;
    font-size: 14px;
}

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

#wsus__login_popup #pills-tab {
    width: 100%;
    margin-bottom: 25px !important;
}

#wsus__login_popup #pills-tab .nav-item {
    width: 33.33%;
}

#wsus__login_popup .nav-pills .nav-link {
    width: 95%;
    border: none;
    text-transform: capitalize;
    font-size: 13px;
    font-weight: 600;
    outline: none;
    background: var(--lightBg);
    border-radius: 3px;
}

#wsus__login_popup form input {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid var(--borderColor);
    border-radius: 5px;
    margin-bottom: 20px;
}

#wsus__login_popup form button {
    border: none;
    float: right;
}

#wsus__login_popup .nav-pills .nav-link.active,
#wsus__login_popup .nav-pills .show>.nav-link {
    color: var(--colorWhite);
    background: var(--colorPrimary) !important;
}

/*====================
  LOG IN POPUP END
=====================*/


/*===================
    MENU PART START
=====================*/
.main_menu {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px !important;
    background: var(--colorWhite);
    z-index: 9;
}

.main_menu li {
    position: relative;
}

.main_menu li a {
    font-size: 16px;
    font-weight: 400;
    color: var(--colorBlack);
    text-transform: capitalize;
    font-family: 'Roboto', sans-serif;
    margin: 0px 7px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.main_menu li a i {
    font-size: 12px;
    margin-right: 3px;
}

.main_menu .nav-item:hover>a,
.main_menu li a.active {
    color: var(--colorPrimary);
}

.right_menu {
    width: 130px;
    display: flex;
    justify-content: flex-end;
}

.right_menu li a {
    font-size: 14px;
    color: var(--colorBlack);
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 10px;
}

.right_menu .signin {
    color: var(--colorBlack);
    border: 1px solid var(--colorPrimary);
    border-radius: 5px;
}

.right_menu .signin a:hover {
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

.right_menu .signin a:hover,
.right_menu .signin a.active {
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

.right_menu .dropdown {
    background: var(--colorPrimary);
    color: var(--colorWhite);
    border-radius: 5px;
    margin-left: 43px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.right_menu .dropdown:hover {
    background: var(--colorBlack);
    color: var(--colorWhite);
}

.right_menu .dropdown a {
    color: var(--colorWhite);
}

.main_menu .dropdown-menu {
    border-radius: 5px;
    padding: 0;
    overflow: hidden;
}

.dropdown-menu li a {
    color: var(--colorWhite) !important;
    text-transform: uppercase;
}

.dropdown-menu li a:focus,
.dropdown-menu li a:hover {
    background: var(--colorPrimary);
    color: var(--colorWhite) !important;
}

#navbarDropdown:hover {
    color: var(--colorWhite);
}

.menu_fix {
    position: fixed;
    width: 100%;
    left: 0px;
    top: 0 !important;
    z-index: 999;
    animation: menu_animate 1s;
    background: var(--colorWhite);
    border-bottom: 1px solid var(--borderColor);
    height: 65px;
}

@keyframes menu_animate {
    from {
        transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
    }

    to {
        transform: translateY(0%);
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
    }
}

.menu_droapdown {
    position: absolute;
    width: 250px;
    padding: 0;
    top: 130%;
    left: 0;
    background: var(--colorWhite);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    border-top: 1px solid var(--colorPrimary);
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
    z-index: 999;
}

.menu_droapdown li {
    margin: 0;
    border-bottom: 1px solid var(--borderColor);
    padding: 0;
}

.menu_droapdown li:last-child {
    border: none;
}

.menu_droapdown li a {
    margin: 0;
    padding: 12px 20px !important;
    display: block;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
    font-weight: 400 !important;
}

.menu_droapdown li a:hover,
.menu_droapdown li a.droap_active {
    color: var(--colorPrimary);
}

.menu_droapdown li a.droap_active {
    color: var(--colorPrimary);
}

.main_menu li:hover .menu_droapdown {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

/*===================
    MENU PART END
=====================*/


/*===================
   BANNER PART START
=====================*/
#wsus__banner {
    background: url(../images/banner_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.wsus__banner_overlay {
    padding: 190px 0px 435px 0px;
    background: rgba(0, 0, 0, 0.6);
}

.wsus__banner_text {
    color: var(--colorWhite);
    text-align: center;
}

.wsus__banner_text h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 60px;
    color: var(--colorWhite);
}

.wsus__banner_text p {
    font-size: 20px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    margin: 27px 0px 45px 0px;
    color: var(--colorWhite);
}

#wsus__banner form {
    padding: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.wsus__search_area input {
    width: 100%;
    padding: 17px 20px;
    border-radius: 4px;
    border: 1px solid var(--borderColor);
}

.wsus__search_area .read_btn {
    width: 100%;
    padding: 17px 20px;
    border: none;
    display: flex;
    justify-content: center;
}

/*===================
   BANNER PART END
=====================*/


/*========================
  CATEGORY SLIDER START
========================*/
.wsus__category_slider_area {
    padding: 20px;
    background: var(--colorWhite);
    border-radius: 5px;
    padding-bottom: 0px;
    border: 1px solid var(--borderColor);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: relative;
    margin: -235px 0px;
}

.wsus__category_single_slider {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 5px;
    padding: 20px 10px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.color_1 {
    background: #F39893;
}

.color_2 {
    background: #7C87A5;
}

.color_3 {
    background: #F5A572;
}

.color_4 {
    background: #ABD194;
}

.color_5 {
    background: #21898C;
}

.color_6 {
    background: #B88CBF;
}

.color_7 {
    background: #53BBB4;
}

.color_8 {
    background: #53BBB4;
}

.color_9 {
    background: #3079AC;
}

.color_10 {
    background: #F26944;
}

.wsus__category_single_slider i {
    font-size: 40px;
    color: var(--colorWhite);
    margin-top: 5px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.wsus__category_single_slider p {
    text-transform: capitalize;
    font-size: 14px;
    color: var(--colorWhite);
    font-weight: 600;
    margin-top: 10px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.wsus__category_single_slider:hover {
    background: #9192FF;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

/*========================
  CATEGORY SLIDER END
========================*/


/*========================
	FEATURES PART START
========================*/
#wsus__features {
    background: url(../images/features_bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 335px 0px 100px 0px;
}

.wsus__heading_area {
    text-align: center;
    margin-bottom: 30px;
}

.wsus__heading_area i {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 34px;
    border: 2px solid var(--colorBlack);
    border-radius: 50%;
    font-size: 20px;
    color: var(--colorBlack);
}

.wsus__heading_area h2 {
    font-size: 35px;
    font-weight: 600;
    margin: 15px 0px 40px 0px;
    position: relative;
    color: var(--colorBlack);
    text-transform: capitalize;
}

.wsus__heading_area h2::after {
    position: absolute;
    content: "";
    background: var(--colorPrimary);
    width: 100px;
    height: 2px;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.wsus__heading_area h2::before {
    position: absolute;
    content: "";
    background: var(--colorPrimary);
    width: 13px;
    height: 13px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.wsus__heading_area p {
    font-size: 16px;
    font-weight: 400;
    color: #505873f2;
}

.wsus__feature_single {
    padding: 50px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    position: relative;
    margin-left: 15px;
    margin-top: 45px;
    background: var(--colorPrimary);
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.wsus__feature_single_text {
    position: relative;
    z-index: 1;
}

.wsus__feature_single i {
    color: var(--colorWhite);
    font-size: 40px;
    width: 70px;
    height: 70px;
    border: 2px solid var(--colorWhite);
    border-radius: 5px;
    line-height: 65px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.wsus__feature_single h5 {
    color: var(--colorWhite);
    text-transform: capitalize;
    font-weight: 600;
    font-size: 25px;
    margin: 15px 0px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.wsus__feature_single p {
    color: var(--colorWhite);
    font-size: 16px;
    font-weight: 400;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.wsus__feature_single span {
    font-size: 30px;
    font-weight: 800;
    color: var(--colorPrimary);
    width: 70px;
    height: 70px;
    display: inline-block;
    position: absolute;
    top: -15px;
    left: -15px;
    line-height: 60px;
    border: 5px solid var(--colorPrimary);
    border-radius: 50%;
    background: var(--colorWhite);
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.wsus__feature_single:hover {
    background: var(--colorPrimary);
}

.wsus__feature_single:hover span {
    color: var(--colorWhite);
    border-color: var(--colorWhite);
    background: var(--colorPrimary);
}

/*========================
	FEATURES PART END
========================*/


/*========================
  COUNTER PART START
========================*/
#wsus__counter {
    background: url(../images/counter_bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.wsus__counter_overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 100px 0px;
}

#wsus__counter .wsus__heading_area {
    margin-bottom: 60px;
}

.wsus__single_counter {
    background: var(--colorWhite);
    text-align: center;
    padding: 40px 20px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

#wsus__counter .wsus__heading_area i,
#wsus__counter .wsus__heading_area h2,
#wsus__counter .wsus__heading_area p {
    border-color: var(--colorWhite);
    color: var(--colorWhite);
}

.wsus__counter_top_text h5 {
    font-size: 35px;
    color: var(--colorWhite);
    font-weight: 600;
    margin-bottom: 60px;
    text-align: center;
}

.wsus__counter_top_video {
    display: flex;
    align-items: center;
    color: var(--colorWhite);
    border: 1px solid var(--colorWhite);
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.wsus__counter_top_video a {
    width: 50px !important;
    height: 50px;
    border: 3px solid var(--colorWhite);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 46px;
    font-size: 16px;
    color: var(--colorWhite);
    border-radius: 50%;
    animation: animate 2s linear infinite;
    background: var(--colorPrimary);
}

@keyframes animate {
    0% {
        box-shadow: 0 0 0 0 rgba(7, 52, 255, 0.7);
    }

    40% {
        box-shadow: 0 0 0 50px rgba(255, 193, 7, 0);
    }

    80% {
        box-shadow: 0 0 0 50px rgba(255, 193, 7, 0);
    }

    100% {
        box-shadow: 0 0 0 rgba(255, 193, 7, 0);
    }
}

.wsus__counter_single span {
    color: var(--colorWhite);
    font-size: 35px;
    font-weight: 700;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.wsus__counter_single p {
    color: var(--colorWhite);
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

/*========================
  COUNTER PART END
========================*/


/*========================
    OUR CATEGORY START
========================*/
#wsus__categoryes {
    background: url(../images/category_bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.wsus__categorye_overlay {
    padding: 100px 0px 95px 0px;
    background: rgba(255, 255, 255, 0.9);
}

#wsus__categoryes .wsus__heading_area {
    margin-bottom: 40px;
}

.wsus__category_single {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    width: 100%;
    height: 280px;
}

.wsus__category_img {
    width: 100%;
    height: 100%;
}

.wsus__category_img img {
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
    height: 100%;
    object-fit: cover;
}

.wsus__category_img img {
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.wsus__category_text {
    position: absolute;
    z-index: 111;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(11, 44, 61, 0.76) 20%, transparent 100%);
}

.wsus__category_text_center {
    display: flex;
    justify-content: space-between;
    color: var(--colorWhite);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: end;
    padding: 10px;
}

.wsus__category_text_center i {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    color: var(--colorWhite);
    border-radius: 5px;
    font-size: 20px;
    text-align: center;
    background: var(--colorPrimary);
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.wsus__category_text_center p {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 20px;
    margin: 0;
    color: var(--colorWhite) !important;
}

.wsus__category_text_center span {
    display: inline-block;
    background: var(--colorWhite);
    padding: 3px 10px;
    font-size: 13px;
    text-transform: capitalize;
    font-weight: 400;
    border-radius: 3px;
    color: var(--colorWhite);
}

.wsus__category_text_center .green {
    background: var(--colorPrimary);
}

.wsus__category_text_center .red {
    background: red;
}

.wsus__category_text_center .purple {
    background: #9102FF;
}

.wsus__category_single:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

#wsus__categoryes .read_btn {
    margin-top: 35px;
}

/*========================
     OUR CATEGORY END
========================*/


/*===================
  OUR LOCATION START
=====================*/
#wsus__location {
    background: url(../images/location_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.wsus__location_overlay {
    background: rgba(255, 255, 255, 0.85);
    padding: 100px 0px 95px 0px;
}

.wsus__location_filter {
    margin-top: 30px;
}

.wsus__location_filter button {
    border: none;
    background: none;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
    color: var(--colorBlack);
    margin: 0px 5px;
    outline: none;
    padding: 7px 20px;
    border-radius: 30px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.wsus__location_filter button.active,
.wsus__location_filter button:hover {
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

.wsus__single_location {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-top: 30px;
    height: 415px;
}

.wsus__single_location img {
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.wsus__location_text {
    background: linear-gradient(0deg, rgba(11, 44, 61, 0.76) 20%, transparent 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wsus__location_text i {
    color: var(--colorWhite);
    font-size: 20px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border: 2px solid var(--colorWhite);
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
}

.wsus__location_text p {
    color: var(--colorWhite);
    text-transform: capitalize;
    font-weight: 400;
    padding-bottom: 3px;
    font-size: 20px;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    border: 1px solid var(--colorWhite);
    padding: 0px 10px;
    border-radius: 5px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.wsus__location_text span {
    display: inline-block;
    padding: 3px 10px;
    text-transform: capitalize;
    border-radius: 3px;
    color: var(--colorWhite);
    font-size: 13px;
    font-weight: 400;
    position: absolute;
    top: 20px;
    right: 20px;
}

.wsus__location_text .green {
    background: var(--colorPrimary);
}

.wsus__location_text .red {
    background: red;
}

.wsus__location_text .purple {
    background: #9102FF;
}

.wsus__single_location:hover img {
    transform: scale(1.1) rotate(3deg);
    -webkit-transform: scale(1.1) rotate(3deg);
    -moz-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    -o-transform: scale(1.1) rotate(3deg);
}

.wsus__single_location:hover p {
    background: var(--colorWhite);
    color: var(--colorBlack);
}

/*===================
   OUR LOCATION END
=====================*/


/*===================
FEATURED LISTING START
=====================*/
#wsus__featured_listing {
    padding: 100px 0px 130px 0px;
    background: url(../images/listing_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wsus__featured_single {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--colorWhite);
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
    margin: 30px 12px;
}

.wsus__featured_single .list_images {
    position: relative;
    display: block;
    height: 305px;
    overflow: hidden;
}

.wsus__featured_single .small_text {
    display: inline-block;
    padding: 3px 10px;
    text-transform: capitalize;
    border-radius: 3px;
    color: var(--colorWhite);
    font-size: 13px;
    font-weight: 400;
    position: absolute;
    top: -25px;
    left: 15px;
}

.wsus__featured_single .small_text a {
    color: var(--colorWhite);
}

.wsus__featured_single .location {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background: var(--colorPrimary);
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    color: var(--colorWhite);
    padding: 0;
    line-height: 35px;
    border-radius: 3px;
}

.wsus__featured_single .green {
    background: var(--colorPrimary);
}

.wsus__featured_single .red {
    background: red;
}

.wsus__featured_single .purple {
    background: #9102FF;
}

.wsus__featured_single a .love {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 35px;
    height: 35px;
    background: var(--colorWhite);
    text-align: center;
    line-height: 36px;
    border-radius: 5px;
    font-size: 16px;
    color: var(--colorPrimary);
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.wsus__featured_single .map {
    position: absolute;
    top: 55px;
    left: 10px;
    width: 35px !important;
    height: 35px;
    background: var(--colorWhite);
    text-align: center;
    line-height: 36px;
    border-radius: 5px;
    font-size: 16px;
    color: var(--colorPrimary);
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.wsus__featured_single a .love:hover {
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

.wsus__featured_single .map:hover {
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

.wsus__featured_single_text {
    padding: 25px 20px 20px 20px;
    text-align: center;
    position: relative;
}

.wsus__featured_single_text .list_rating {
    position: relative;
    width: 100%;
    overflow: hidden;
    font-size: 14px;
    color: var(--ratingColor);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.wsus__featured_single_text .list_rating span {
    font-size: 14px;
    text-transform: capitalize;
    margin-left: 5px;
    color: #505873f2;
    width: auto;
    height: auto;
}

.wsus__featured_single_text h6 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.wsus__featured_single_text .address {
    font-size: 14px;
    font-weight: 500;
    color: #505873f2;
}

.wsus__featured_single:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

#wsus__featured_listing .slick-dots {
    position: absolute;
    display: flex !important;
    justify-content: center;
    bottom: -33px;
}

#wsus__featured_listing .slick-dots li button {
    font-size: 0;
    width: 30px;
    height: 5px;
    background: var(--colorPrimary);
    border: none;
    border-radius: 10px;
    margin: 0 5px;
    outline: 0;
}

#wsus__featured_listing .slick-dots li.slick-active button {
    background: #829AF9;
}

#wsus__map_popup .modal-dialog {
    max-width: 1var(--colorWhite)px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#wsus__map_popup .modal-body {
    position: relative;
}

#wsus__map_popup .popup_close {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #d73032;
    color: var(--colorWhite);
    text-align: center;
    line-height: 30px;
    top: -10px;
    right: -10px;
    border-radius: 50%;
    font-size: 20px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
    z-index: 1;
    opacity: 1;
}

#wsus__map_popup .popup_close:hover {
    background: var(--colorPrimary);
}

.map_popup_text {
    padding: 15px 15px 7px 15px;
    overflow: hidden;
}

.map_popup_text span {
    display: inline-block;
    background: #04A8E8;
    color: var(--colorWhite);
    padding: 0px 20px;
    margin-right: 10px;
    font-size: 12px;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 3px;
}

.map_popup_text span i {
    margin-right: 10px;
}

.map_popup_text .red {
    background: #00AF3C;
}

.map_popup_content {
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--borderColor);
}

.map_popup_content img {
    max-height: 230px;
    object-fit: cover;
}

.map_popup_text h5 {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 20px;
    margin: 15px 0px 15px 0px;
}

.map_popup_text p {
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.map_popup_text .call,
.map_popup_text .mail {
    display: block;
    color: var(--colorBlack);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.map_popup_text .call i,
.map_popup_text .mail i {
    margin-right: 10px;
}

.map_popup_text .call:hover,
.map_popup_text .mail:hover {
    color: var(--colorPrimary);
}

.map_popup_content_map {
    border: 1px solid var(--borderColor);
    width: 100%;
    height: 250px;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 25px;
}

.list_view .list_rating {
    justify-content: start;
}

/*===================
FEATURED LISTING  END
=====================*/


/*===================
   OUR PACKAGE START
=====================*/
#wsus__package {
    background: url(../images/package_bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.wsus__package_overlay {
    background: rgba(255, 255, 255, 0.3);
    padding: 100px 0px 100px 0px;
}

.member_price {
    padding: 32px 35px 30px 35px;
    text-align: center;
    border-radius: 5px;
    border-bottom: 5px solid var(--colorPrimary);
    position: relative;
    overflow: hidden;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    border: 1px solid var(--borderColor);
    margin-top: 30px;
    background: var(--colorWhite);
}

.member_price h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--colorWhite);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    margin-bottom: 25px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
    display: inline-block;
    background: var(--colorPrimary);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid transparent;
}

.member_price h5 {
    font-size: 30px;
    font-weight: 700;
    color: var(--colorPrimary);
    font-family: 'Poppins', sans-serif;
    position: relative;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.member_price span {
    display: block;
    font-size: 14px;
    color: var(--colorPrimary);
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.member_price p {
    font-size: 15px;
    font-weight: 400;
    color: var(--colorBlack);
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.member_price a {
    font-size: 16px;
    font-weight: 500;
    color: var(--colorPrimary);
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    border: 1px solid #2344ca;
    padding: 6px 20px;
    border-radius: 5px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
    margin-top: 20px;
}

.member_price:hover a {
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

.member_price:hover h4 {
    border-color: var(--colorPrimary);
    color: var(--colorPrimary);
    background: var(--colorWhite);
}

.member_price:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

/*===================
   OUR PACKAGE END
=====================*/


/*===================
    BLOG PART START
=====================*/
#blog_part {
    background: url(../images/blog_bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.blog_part_overlay {
    background: rgba(255, 255, 255, 0.97);
    padding: 100px 0px;
}

.single_blog {
    padding: 15px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    background: var(--colorWhite);
    border-radius: 5px;
    overflow: hidden;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
    margin-top: 30px;
}

.single_blog a {
    display: block;
}

.single_blog .read_btn {
    display: inline-block;
}

.single_blog img {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin-bottom: 25px;
    height: 255px;
}

.single_blog span {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: var(--colorBlack);
    font-weight: 400;
    text-transform: capitalize;
    margin-right: 25px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.single_blog span i {
    color: var(--colorBlack);
    margin-right: 5px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.single_blog h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--colorBlack);
    font-family: 'Poppins', sans-serif;
    margin: 20px 0px 17px 0px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.single_blog p {
    font-size: 16px;
    font-weight: 400;
    color: #646464;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 26px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.single_blog .read_btn::after {
    display: none;
}

.read_btn i {
    font-size: 10px;
    margin-left: 5px;
}

.single_blog:hover {
    background: var(--colorPrimary);
}

.single_blog:hover span,
.single_blog:hover span i,
.single_blog:hover h4,
.single_blog:hover p {
    color: var(--colorWhite);
}

.single_blog:hover .read_btn {
    background: var(--colorWhite);
    color: var(--colorPrimary) !important;
}

.single_blog .read_btn:hover {
    background: #162253;
    color: var(--colorWhite) !important;
}

/*===================
    BLOG PAR END
=====================*/


/*===================
   SUBSCRIBE START
=====================*/
#subscribe {
    background: url(../images/subs_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 50px 0px;
}

.subs_text h3 {
    font-size: 30px;
    font-weight: 700;
    color: var(--colorWhite);
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.subs_text p {
    font-size: 16px;
    font-weight: 400;
    color: var(--colorWhite);
}

.subs_form form {
    position: relative;
}

.subs_form form input {
    width: 100%;
    padding: 20px 30px;
    border: none;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 400;
    color: #646464;
    font-family: 'Poppins', sans-serif;
}

.subs_form form button {
    padding: 16.5px 30px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--colorWhite);
    background: var(--colorBlack);
    font-family: 'Poppins', sans-serif;
    position: absolute;
    top: 3px;
    right: 3px;
    outline: none;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
    border-radius: 40px;
}

.subs_form form button:hover {
    background: var(--colorPrimary);
}

/*===================
   SUBSCRIBE END
=====================*/


/*===================
TESTIMONIAL PART START
=====================*/
#wsus__testimonial {
    background: url(../images/cat_bg.jpg);
    background-repeat: repeat;
    background-position: center;
    background-attachment: fixed;
}

.wsus__test_overlay {
    background: #ced8fff5;
    padding: 100px 0px;
}

.wsus__single_clients {
    padding: 30px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    background: var(--colorWhite);
    border-radius: 10px;
    overflow: hidden;
    margin: 30px 15px 0px 15px;
}

.wsus__single_clients p {
    text-align: left;
    margin-bottom: 32px;
    position: relative;
    border: 1px solid #eee;
    padding: 20px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding-left: 50px;
    height: 180px;
    overflow: hidden;
}

.wsus__single_clients p i {
    position: absolute;
    top: 10px;
    left: 10px;
    color: var(--colorBlack);
    font-size: 30px;
}

.wsus__single_clients img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50%;
    float: left;
    margin-right: 20px;
    margin-left: 50px;
}

.wsus__single_clients .c_name {
    display: block;
    color: #0B2C3D;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
    margin-top: 45px;
}

.wsus__single_clients .c_det {
    text-transform: capitalize;
    font-weight: 400;
    font-size: 15px;
    color: var(--colorBlack);
}

#wsus__testimonial button {
    display: none;
}

/*===================
TESTIMONIAL PART END
=====================*/


/*===================
  FOOTER PART START
=====================*/
footer {
    background: #061035;
    padding-top: 95px;
}

footer h3 {
    font-size: 24px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 38px;
    text-transform: capitalize;
    color: var(--colorWhite);
}

.footer_text p {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 30px;
    color: var(--colorWhite);
}

.footer_icon li {
    float: left;
    margin-right: 8px;
}

.footer_icon li a {
    color: var(--colorWhite);
    font-size: 16px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
    width: 30px;
    height: 30px;
    border: 1px solid #d9d9d9;
    text-align: center;
    line-height: 30px;
}

.footer_icon li a:hover {
    color: var(--colorWhite);
    background: var(--colorPrimary);
    border-color: var(--colorPrimary);
}

.footer_link li {
    margin-bottom: 15px;
}

.footer_link li a {
    font-size: 16px;
    color: var(--colorWhite);
    font-weight: 400;
    text-transform: capitalize;
    font-family: 'Roboto', sans-serif;
    margin-left: -12px;
    width: 100%;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.footer_link li a i {
    font-size: 10px;
    opacity: 0;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.footer_link li a:hover {
    color: var(--colorPrimary);
    margin-left: -12px;
}

.footer_link li a:hover i {
    opacity: 1;
    margin-left: 12px;
}

.footer_bottom {
    width: 100%;
    padding: 20px;
    background: var(--colorWhite);
    color: var(--colorWhite);
    margin-top: 95px;
}

.footer_bottom p {
    font-size: 16px;
    font-weight: 400;
    color: var(--colorBlack);
    font-family: 'Roboto', sans-serif;
}

.footer_bottom p a {
    color: var(--colorPrimary);
}

.footer_contact ul li {
    border-bottom: 1px solid #ffffff29;
    padding-bottom: 10px;
    margin-bottom: 0px;
}

.footer_contact ul li p {
    margin: 0;
}

.footer_contact ul li a {
    margin-left: 0 !important;
    display: block;
    width: 100%;
    padding: 5px 0px;
}

.footer_contact ul li:last-child {
    border-bottom: 0px;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.footer_contact ul li a,
.footer_contact ul li p {
    padding-left: 30px;
    position: relative;
}

.footer_contact ul li a i,
.footer_contact ul li p i {
    position: absolute;
    top: 9px;
    left: 0;
    font-size: 16px;
    opacity: 1;
}

.footer_contact ul li a i,
.footer_contact ul li p i {
    margin-left: 0px !important;
}

.footer_bottom_link {
    display: flex;
    list-style: disc;
    justify-content: end;
    align-items: center;
}

.footer_bottom_link li {
    margin-right: 20px;
}

.footer_bottom_link li:last-child {
    margin-right: 0;
}

.footer_bottom_link li a {
    font-size: 16px;
    color: #505873f2;
    text-transform: capitalize;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.footer_bottom_link li a:hover {
    color: var(--colorPrimary);
}

/*===================
  FOOTER PART END
=====================*/

.scroll_btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: var(--colorWhite);
    right: 15px;
    bottom: 20px;
    font-size: 14px;
    position: fixed;
    cursor: pointer;
    z-index: 98;
    display: none;
    background: var(--colorPrimary);
    border-radius: 50%;
}


/*===================
 BREADCRUMB PART START
=====================*/
#breadcrumb_part {
    background: url(../images/breadcroumb_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.bread_overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 85px 0px 75px 0px;
}

#breadcrumb_part h4 {
    font-size: 50px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    color: var(--colorWhite);
}

#breadcrumb_part nav {
    display: flex;
    justify-content: center;
    margin-top: 38px;
}

#breadcrumb_part li {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: var(--colorWhite);
    text-transform: capitalize;
}

#breadcrumb_part li a {
    color: var(--colorWhite);
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    color: var(--colorWhite);
    content: ">>";
    padding-left: 5px;
    padding-right: 13px;
}

/*===================
BREADCRUMB PART END
=====================*/


/*===================
PAGINATION PART START
=====================*/
#pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

#pagination .page-item .page-link {
    color: var(--colorBlack);
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    background-color: var(--colorWhite);
    border: 1px solid var(--borderColor);
    margin-right: 10px !important;
    border-radius: 3px;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    padding: 0;
}

#pagination .page-item.active .page-link {
    z-index: 3;
    color: var(--colorWhite);
    background: var(--colorPrimary);
}

#pagination .page-item .page-link:hover {
    color: var(--colorWhite);
    background-color: #2344ca;
}

/*===================
PAGINATION PART END
=====================*/


/*===================
  ABOUT PAGE START
=====================*/
#about_page {
    padding: 100px 0px;
    background: var(--colorWhite)9F7;
}

.about_text {
    margin-top: 35px;
}

.about_text h4 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 25px;
}

.about_text p span {
    display: block;
    margin-top: 20px;
}

.about_img {
    margin-top: 35px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.about_img .venobox {
    position: absolute;
    top: 50%;
    left: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: var(--colorWhite);
    width: 100%;
    height: 100%;
    display: block;
    transform: translate(-50%, -50%);
}

.about_img .venobox i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 47px;
    background: var(--colorPrimary);
    font-size: 20px;
    animation: animate 2s linear infinite;
    border: 2px solid var(--colorWhite);
    border-radius: 50%;
}

@keyframes animate {
    0% {
        box-shadow: 0 0 0 0 rgba(7, 52, 255, 0.7);
    }

    40% {
        box-shadow: 0 0 0 50px rgba(255, 193, 7, 0);
    }

    80% {
        box-shadow: 0 0 0 50px rgba(255, 193, 7, 0);
    }

    100% {
        box-shadow: 0 0 0 rgba(255, 193, 7, 0);
    }
}

.about_page_features_mar {
    padding-top: 100px !important;
}

#about_page_category_slider {
    padding: 50px 0px;
    background: var(--colorWhite)9F7;
}

.about_slider_single {
    border: 1px solid var(--borderColor);
    border-radius: 5px;
    overflow: hidden;
    display: block;
    margin: 0px 12px;
}

/*===================
  ABOUT PAGE END
=====================*/


/*===================
 GET IN TOUCH  START
=====================*/
#get_in_touch {
    padding-top: 100px;
}

#get_in_touch h2 {
    text-transform: capitalize;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact_box {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    text-align: center;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact_box_icon {
    width: 30%;
    float: left;
    text-align: center;
    padding: 44px;
    border-right: 1px solid var(--borderColor);
}

.contact_box_icon i {
    font-size: 35px;
    color: var(--colorPrimary);
    font-weight: 900;
}

.contact_box_text {
    width: 70%;
    float: left;
    padding: 0px 25px;
}

.contact_box_text a,
.contact_box_text p {
    display: block;
    color: var(--colorPrimary);
    font-size: 16px;
    font-weight: 500;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
    text-align: left;
}

.contact_box_text a:hover {
    color: var(--colorWhite);
}

.contact_input input,
.contact_input textarea {
    width: 100%;
    border: 1px solid var(--borderColor);
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 400;
    color: var(--colorBlack);
    resize: none;
}

.contact_input button {
    border: none;
}

.contact_map {
    border: 1px solid var(--borderColor);
    overflow: hidden;
    border-radius: 5px;
    margin: 70px 0px 100px 0px;
}

/*===================
 GET IN TOUCH  END
=====================*/

/*===================
  LISTING PAGE START
=====================*/
#listing_grid {
    padding: 100px 0px 70px 0px;
}

.listing_grid_sidbar {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 25px;
    border-radius: 5px;
    position: relative;
}

.sidebar_line form {
    position: relative;
}

.sidebar_line input {
    width: 100%;
    border: 1px solid var(--borderColor);
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 25px;
}

.sidebar_line button {
    background: none;
    border: none;
    position: absolute;
    top: 27px;
    right: 40px;
    color: #9f9f9f;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.sidebar_line button:hover {
    color: var(--colorBlack);
}

.sidebar_line_select {
    margin-bottom: 25px;
}

.listing_grid_sidbar .form-check {
    margin: 10px 0px;
}

.listing_grid_sidbar .form-check input {
    width: 16px;
    border: 1px solid var(--colorPrimary);
    height: 16px;
    padding: 0;
    margin-right: 0;
    margin-top: 2px;
}

.listing_grid_sidbar .form-check-input:focus {
    box-shadow: none;
}

.listing_grid_sidbar button {
    border: none;
    margin-top: 15px;
}

.wsus__property_topbar {
    background: var(--colorWhite);
    position: relative;
    display: flex;
    justify-content: space-between;
    /* margin: 0px 11px; */
}

.wsus__property_topbar.mar {
    margin-bottom: 30px;
}

.wsus__property_topbar::after {
    position: absolute;
    content: "";
    background: var(--borderColor);
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
}

.wsus__property_topbar::before {
    position: absolute;
    content: "";
    background: var(--borderColor);
    width: 100%;
    height: 1px;
    left: 0;
    top: 0;
}

.wsus__property_topbar_left {
    display: flex;
}

.wsus__property_topbar_left ul {
    display: flex;
}

.wsus__property_topbar_left ul li a {
    width: 57px;
    height: 57px;
    border: 1px solid var(--borderColor);
    text-align: center;
    line-height: 57px;
    font-size: 20px;
    color: #093B55;
    border-right: 0;
}

.wsus__property_topbar_left ul li:last-child a {
    border-right: 1px solid var(--borderColor);
}

.wsus__property_topbar .select2-container {
    width: 180px !important;
}

.wsus__property_topbar_left ul li a.wsus_active_bar {
    color: var(--colorPrimary) !important;
}

.wsus__property_topbar .select2-container--default .select2-selection--single {
    border-radius: 0;
}

.grid_view .wsus__featured_single_text span {
    top: -17px;
}

.list_view .list_padding {
    padding: 0px 50px;
}

.list_view .wsus__featured_single a {
    width: 50%;
    /* float: left; */
}

.list_view .wsus__featured_single .list_images {
    height: 330px;
}

.list_view .wsus__featured_single .list_images img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.list_view .wsus__featured_single_text {
    position: relative;
    width: 50%;
    float: left;
    text-align: left;
    padding: 40px 20px 20px 20px;
}

.list_view .open,
.list_view .close {
    text-transform: capitalize;
    background: #00AF3C;
    color: var(--colorWhite);
    display: inline-block;
    padding: 0px 15px 1px 15px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 500;
    position: absolute;
    top: 5px;
    left: 18px;
}

.list_view .close {
    background: red;
}

.list_view .wsus__featured_single_text .future_verify {
    width: auto;
    background: #04A8E8;
    color: var(--colorWhite);
    padding: 5px 20px;
    margin-right: 10px;
    font-size: 12px;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 3px;
}

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

.list_view .wsus__featured_single_text .red {
    background: #00AF3C;
}

.list_view .wsus__featured_single:hover .wsus__featured_single_text i {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}

.list_view .wsus__featured_single_text h6 {
    display: flex;
    font-size: 23px;
}

.list_view .wsus__featured_single_text h6 a {
    width: 100%;
}

.list_view .wsus__featured_single_text .list_details {
    font-size: 13px;
    margin-top: 15px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.list_view .small_text {
    height: 0;
    padding: 15px 10px;
    line-height: 0;
    top: 10px !important;
    right: 20px !important;
    left: auto !important;
    transform: translateX(0%) !important;
}

/*===================
  LISTING PAGE START
=====================*/


/*===================
 BLOG DETAILS START
=====================*/
#blog_details {
    padding: 100px 0px;
}

.blog_sidebar {
    padding: 30px 20px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border: 1px solid #eee;
}

.blog_sidebar h4 {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 16px;
}

.blog_search {
    border-bottom: 1px solid var(--borderColor);
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.blog_search form {
    position: relative;
}

.blog_search input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--colorPrimary);
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    color: var(--colorBlack);
}

.blog_search button {
    border: 0;
    position: absolute;
    top: 0px;
    right: 0;
    background: var(--colorPrimary);
    color: var(--colorWhite);
    font-size: 20px;
    padding: 13px 20px;
    border-radius: 5px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    outline: none;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.blog_search button:hover {
    background: var(--colorBlack);
}

.blog_category ul li a {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--borderColor);
    padding-bottom: 10px;
    margin-bottom: 10px;
    color: var(--colorBlack);
    font-size: 16px;
    font-weight: 400;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.blog_category ul li:last-child a {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.blog_category ul li a span {
    color: var(--colorBlack);
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.blog_category ul li a:hover {
    color: var(--colorPrimary);
}

.blog_category ul li a:hover span {
    color: var(--colorPrimary);
}

.blog_category {
    border-bottom: 1px solid var(--borderColor);
    padding-bottom: 35px;
    margin-bottom: 30px;
}

.sidebar_blog_single {
    margin-bottom: 20px;
    display: flex;
    flex-flow: wrap;
    align-items: center;
}

.sidebar_blog_img {
    width: 25%;
    float: left;
    padding-right: 15px;
}

.sidebar_blog_img img {
    width: 70px !important;
    height: 70px !important;
}

.sidebar_blog_text {
    width: 75%;
    /* float: left; */
}

.sidebar_blog_text h5 {
    font-size: 17px;
    font-weight: 500;
    text-transform: capitalize;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.sidebar_blog_text p {
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    margin-top: 8px;
}

.sidebar_blog_text p span {
    margin-right: 15px;
    border-right: 2px solid var(--borderColor);
    padding-right: 10px;
}

.sidebar_blog_single:hover .sidebar_blog_text h5 {
    color: var(--colorPrimary);
}

.sidebar_contact_share ul {
    display: flex;
}

.sidebar_contact_share ul li {
    margin-right: 10px;
}

.sidebar_contact_share ul li a {
    width: 35px !important;
    text-align: center;
    border: 1px solid var(--borderColor);
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    color: var(--colorBlack);
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.sidebar_contact_share ul li a:hover {
    background: var(--colorBlack);
    color: var(--colorWhite);
    border-color: var(--colorBlack);
    ;
}

.main_blog_img {
    border-radius: 5px;
    overflow: hidden;
}

.main_blog_header {
    display: flex;
    align-items: center;
    padding: 25px 0px;
    border-bottom: 1px solid var(--borderColor);
}

.main_blog_header li a {
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    margin-right: 20px;
    padding-right: 20px;
    position: relative;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
    color: var(--paraColor) !important;
}

.main_blog_header li a i {
    margin-right: 5px;
}

.main_blog_header li a::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 15px;
    top: 5px;
    right: 0;
    background: #a2a2a2;
}

.main_blog_header li:last-child a::after {
    display: none;
}

.main_blog h4 {
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 30px 0px;
}

.main_blog p {
    font-size: 15px;
}

.main_blog p span {
    display: block;
    margin-top: 25px;
}

.blog_comment_area {
    margin-top: 35px;
    border: 1px solid var(--borderColor);
    padding: 25px;
    border-radius: 5px;
}

.wsus__single_comment {
    overflow: hidden;
    background: #EAEEFF6B;
    padding: 16px;
    border-radius: 5px;
    margin: 30px 0px;
    border: 1px solid var(--borderColor);
}

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

.wsus__single_comment_heading span {
    width: 25px;
    height: 25px;
    display: inline-block;
    background: var(--colorPrimary);
    text-align: center;
    line-height: 25px;
    color: var(--colorWhite);
    font-size: 16px;
    font-weight: 700;
    border-radius: 3px;
    margin-left: 20px;
}

.wsus__single_comment_img {
    width: 10%;
    float: left;
}

.wsus__single_comment_img img {
    width: 70px !important;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--colorPrimary);
}

.wsus__single_comment_text {
    width: 90%;
    float: left;
    padding-left: 20px;
}

.wsus__single_comment_text h5 {
    margin-bottom: 5px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: capitalize;
}

.wsus__single_comment_text h5 span {
    background: #6782F2;
    color: var(--colorWhite);
    text-transform: capitalize;
    padding: 0px 5px;
    border-radius: 3px;
    cursor: pointer;
}

.wsus__single_comment_text span {
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
}

.wsus__single_comment_text p {
    color: var(--colorBlack);
    font-size: 15px;
    font-weight: 400;
}









.blog_comment_area h5 {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 16px;
}

.blog_single_input input,
.blog_single_input textarea {
    width: 100%;
    border: 1px solid var(--borderColor);
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 25px;
    resize: none;
    font-size: 16px;
    font-weight: 400;
    color: var(--colorBlack);
}

.blog_single_input button {
    border: none;
}

.sidebar_blog {
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--borderColor);
}

/*===================
 BLOG DETAILS END
=====================*/


/*===================
 LISTING DETAILS START
=====================*/
#listing_details {
    padding: 100px 0px;
}

.listing_det_header {
    padding: 20px;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 50px;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

.listing_det_header_img {
    width: 150px;
    border-radius: 5px;
    overflow: hidden;
    float: left;
    margin-right: 40px;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

.listing_det_header_text {
    float: left;
}

.listing_det_header_text h6 {
    font-size: 35px;
    font-weight: 600;
    text-transform: capitalize;
}

.listing_det_header_text .host_name {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    margin: 10px 0px 5px 0px;
    color: var(--colorBlack);
}

.listing_det_header_text .host_name a {
    color: #505873f2;
    margin-left: 10px;
    display: inline-block;
}

.listing_det_header_text .rating {
    margin-bottom: 10px;
    color: #ffc100;
    font-size: 14px;
}

.listing_det_header_text .rating b {
    background: var(--colorPrimary);
    color: var(--colorWhite);
    padding: 1px 7px;
    font-size: 14px;
    border-radius: 2px;
    margin: 0px 15px;
}

.listing_det_header_text .rating span {
    font-size: 15px;
    font-weight: 600;
}

.listing_det_header_text ul {
    display: flex;
}

.listing_det_header_text ul li a {
    background: #D5DEFF;
    padding: 3px 10px;
    margin-right: 10px;
    font-size: 14px;
    font-weight: 400;
    color: var(--colorBlack);
    border-radius: 2px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.listing_det_header_text ul li:last-child a {
    background: var(--colorPrimary);
    color: var(--colorWhite);
    margin: 0;
}

.listing_det_header_text ul li:last-child a:hover {
    background: #1265FF;
    color: var(--colorWhite);
}

.listing_det_header_text ul li a i {
    margin-right: 5px;
}

.listing_det_header_text ul li a:hover {
    background: #b7c6ff;
}

.listing_det_text {
    padding: 20px;
    border-radius: 5px;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
    margin-bottom: 30px;
}

.listing_det_text p {
    font-size: 15px;
}

.listing_det_text p span {
    display: block;
    margin-top: 20px;
}

.listing_det_Photo {
    padding: 25px 25px 0px 25px;
    border-radius: 5px;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
    margin-bottom: 30px;
}

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

.listing_det_Photo .photo_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(12, 46, 64, 0.51) 20%, transparent 100%);
}

.listing_det_Photo .photo_overlay i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--colorWhite);
    font-size: 20px;
    border: 1px solid var(--colorWhite);
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    opacity: 0;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.listing_det_Photo .venobox:hover .photo_overlay i {
    opacity: 1;
}

.listing_det_feature {
    padding: 20px 20px 0px 20px;
    border-radius: 5px;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
    margin-bottom: 30px;
}

.listing_det_feature_single {
    border: 1px solid var(--borderColor);
    border-radius: 5px;
    text-align: center;
    padding: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.listing_det_feature_single i {
    border-right: 1px solid var(--colorPrimary);
    margin-right: 15px;
    width: 40px;
    height: auto;
    line-height: 40px;
    text-align: center;
    color: var(--colorPrimary);
    padding-right: 10px;
}

.listing_det_feature_single span {
    color: var(--colorPrimary);
    text-align: left;
}

.listing_det_video {
    padding: 25px 25px 0px 25px;
    border-radius: 5px;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
    margin-bottom: 30px;
}

.listing_det_video_img {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.listing_det_video_img .venobox {
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.listing_det_video_img .venobox i {
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--colorPrimary);
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
    background: var(--colorWhite);
}

.listing_det_video_img .venobox i::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
    background: var(--colorWhite);
    z-index: -1;
    animation: icon_animi 1.5s infinite;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    color: var(--colorPrimary);
    -webkit-animation: icon_animi 1.5s infinite;
}

@keyframes icon_animi {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
        -webkit-transform: scale(1.7);
        -moz-transform: scale(1.7);
        -ms-transform: scale(1.7);
        -o-transform: scale(1.7);
    }
}

.listing_det_location {
    border: 1px solid var(--borderColor);
    border-radius: 5px;
    overflow: hidden;
}

.wsus__listing_review {
    margin-top: 35px;
    border: 1px solid var(--borderColor);
    padding: 25px;
    border-radius: 5px;
}

.wsus__listing_review h4 {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 16px;
}

.wsus__listing_review h4 span {
    width: 25px;
    height: 25px;
    display: inline-block;
    background: var(--colorPrimary);
    text-align: center;
    line-height: 25px;
    color: var(--colorWhite);
    font-size: 16px;
    font-weight: 700;
    border-radius: 3px;
    margin-left: 20px;
}

.wsus__total_rating {
    padding: 20px;
    background: var(--colorWhite);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.wsus__total_rating h4 {
    background: #6782F2;
    color: var(--colorWhite);
    padding: 10px 15px;
    font-size: 40px;
    font-weight: 700;
    border-radius: 5px;
}

.wsus__total_rating span {
    display: inline-block;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 400;
    margin: 0px 15px;
    color: var(--colorBlack);
}

.wsus__total_rating p {
    color: #FFC100;
    font-size: 16px;
}

.wsus__listing_review .wsus__single_comment_text h5 span {
    background: none;
    color: #FFC100;
    padding: 0px 10px;
    cursor: auto;
    font-size: 13px;
}

.wsus__listing_review h5 {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 16px;
}

.wsus__select_rating {
    margin-bottom: 25px;
    position: relative;
}

.wsus__select_rating i {
    position: absolute;
    top: 47%;
    left: 20px;
    color: #FFC100;
    font-size: 16px;
    z-index: 1;
    transform: translateY(-47%);
}

.wsus__select_rating .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #888;
    line-height: 35px;
    text-transform: capitalize;
    padding-left: 40px;
}

.listing_det_side_address {
    margin-bottom: 30px;
    padding: 25px;
    /* padding-bottom: 0; */
    border-radius: 5px;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

.listing_det_side_address a {
    display: block;
    font-size: 16px;
    color: var(--colorPrimary);
    font-weight: 400;
    margin-bottom: 15px;
}

.listing_det_side_address a i {
    color: var(--colorPrimary);
    margin-right: 5px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--colorPrimary);
    line-height: 30px;
    text-align: center;
    border-radius: 3px;
}

.listing_det_side_address p {
    display: block;
    font-size: 16px;
    color: var(--colorPrimary);
    font-weight: 400;
    margin-bottom: 15px;
}

.listing_det_side_address p:last-child {
    margin-bottom: 0;
}

.listing_det_side_address p i {
    color: var(--colorPrimary);
    margin-right: 5px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--colorPrimary);
    line-height: 30px;
    text-align: center;
    border-radius: 3px;
}

.listing_det_side_address ul {
    display: flex;
    margin-top: 25px;
}

.listing_det_side_address ul li a {
    margin: 0;
    width: 40px;
    height: 40px;
    border: none;
    line-height: 40px;
    text-align: center;
    border-radius: 3px;
    background: #D5DEFF;
    color: var(--colorPrimary);
    margin-right: 10px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.listing_det_side_address ul li a i {
    margin: 0px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
    border: 0;
    width: auto;
    height: auto;
}

.listing_det_side_address ul li a:hover {
    background: var(--colorPrimary);
    color: #D5DEFF;
}

.listing_det_side_address ul li a:hover i {
    color: #D5DEFF;
}

.listing_details_sidebar h5 {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 16px;
}

.listing_det_side_open_hour {
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 5px;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

.listing_det_side_open_hour p {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 500;
    align-items: center;
}

.listing_det_side_open_hour p span {
    font-weight: 400;
    font-size: 16px;
}

.listing_det_side_contact {
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 5px;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

.listing_det_side_contact input,
.listing_det_side_contact textarea {
    border: 1px solid var(--borderColor);
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    resize: none;
    width: 100%;
    color: var(--colorBlack);
    margin-bottom: 20px;
}

.listing_det_side_contact button {
    border: none;
}

.listing_det_side_list {
    margin-bottom: 30px;
    padding: 25px 25px 1px 25px;
    border-radius: 5px;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

.listing_det_side_list .sidebar_blog_text h5 {
    font-size: 17px;
    margin-bottom: 0;
}

.listing_det_side_add {
    padding: 25px 25px 0px 25px;
    border-radius: 5px;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
    overflow: hidden;
}

.listing_det_side_add .wsus__featured_single {
    margin: 0;
    margin-bottom: 25px;
    box-shadow: none;
    border: 1px solid var(--borderColor);
}

.listing_det_side_add .wsus__featured_single_text span {
    top: -25px;
}

/*===================
 LISTING DETAILS END
=====================*/

/*===================
   DASHBOARD START
=====================*/
.dashboard_menu {
    background: var(--colorWhite);
    display: flex;
    padding: 0px 20px;
    width: 100%;
    height: 65px;
    border-bottom: 1px solid var(--borderColor);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.dashboard_menu .menu_icon {
    position: absolute;
    line-height: 35px;
    width: 35px;
    height: 35px;
    background: var(--colorPrimary);
    display: inline-block;
    text-align: center;
    font-size: 20px;
    border-radius: 3px;
    color: var(--colorWhite);
    cursor: pointer;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.dashboard_menu .menu_icon:hover {
    background: var(--colorBlack);
}

.dashboard_menu ul li .dropdown-toggle {
    text-transform: capitalize;
}

.dashboard_menu ul li .dropdown-toggle img {
    width: 50px !important;
    height: 50px;
    border-radius: 50%;
    margin-right: 5px;
}

.dashboard_menu .dropdown-menu {
    padding: 10px 0px;
    margin-top: -2px;
}

.dashboard_menu .dropdown-menu li a {
    text-transform: capitalize;
}

.dashboard_menu li:hover a {
    color: #0A58D0;
}

.dashboard_sidebar {
    width: 15%;
    position: fixed;
    top: 0;
    left: 0;
    background: #F0F3FF;
    height: 100vh;
    overflow-y: auto;
    scrollbar-width: thin;
    z-index: 99999;
}

.dashboard_sidebar .dash_logo {
    display: block;
    text-align: center;
    padding: 9px;
    border-bottom: 1px solid var(--borderColor);
}

.dashboard_sidebar .dash_logo img {
    max-width: 160px;
}

.dashboard_sidebar .close_icon {
    line-height: 35px;
    width: 35px;
    height: 35px;
    background: var(--colorPrimary);
    text-align: center;
    font-size: 20px;
    color: var(--colorWhite);
    cursor: pointer;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
    position: absolute;
    top: 0;
    right: 0;
    display: none;
}

.dashboard_sidebar .close_icon:hover {
    background: var(--colorBlack);
}

.dashboard_link {
    margin-top: 0px;
}

.dashboard_link li a {
    text-align: left;
    width: 100%;
    border-bottom: 1px solid #e2e2e2;
    padding: 12px 12px 12px 30px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
    text-transform: capitalize;
}

.dashboard_link li a i {
    margin-right: 10px;
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
}

.dashboard_link li:last-child a {
    border-bottom: 0;
}

.dashboard_link li a:hover,
.dashboard_link li .active {
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

.dashboard_content {
    padding: 110px 35px 45px 0px;
}

.manage_dashboard_single {
    background: #287ACC;
    padding: 50px 30px;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    position: relative;
}

.manage_dashboard_single i {
    position: absolute;
    font-size: 75px;
    color: var(--colorWhite);
    opacity: .4;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.manage_dashboard_single h3 {
    font-size: 40px;
    color: var(--colorWhite);
    font-weight: 700;
}

.manage_dashboard_single p {
    color: var(--colorWhite);
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
}

.manage_dashboard_single.orange {
    background: #FF9911;
}

.manage_dashboard_single.green {
    background: #1EC38B;
}

.manage_dashboard_single.red {
    background: #F91942;
}

.active_package {
    background: var(--colorWhite);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 30px;
    border-radius: 5px;
    margin-top: 45px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.dashboard_content h4 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--borderColor);
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}

.dashboard_table {
    border-top: 1px solid var(--borderColor);
    margin-bottom: 0;
}

.dashboard_table .active_left {
    width: 50%;
    border-right: 1px solid var(--borderColor);
    border-left: 1px solid var(--borderColor);
    color: #505873f2;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 15px;
}

.dashboard_table .package_right {
    color: #505873f2;
    font-size: 16px;
    font-weight: 400;
    border-right: 1px solid var(--borderColor);
    padding: 10px 15px;
}

.dashboard_breadcrumb {
    background: var(--colorWhite);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard_breadcrumb span {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--colorBlack);
}

.dashboard_breadcrumb ul {
    display: flex;
}

.dashboard_breadcrumb ul li a {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--colorBlack);
    margin-right: 15px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.dashboard_breadcrumb ul li:last-child a {
    margin-right: 0;
}

.dashboard_breadcrumb ul li a i {
    margin-left: 10px;
    font-size: 14px;
}

.dashboard_breadcrumb ul li a:hover,
.dashboard_breadcrumb ul li .bread_active {
    color: var(--colorPrimary);
}

.my_listing {
    background: var(--colorWhite);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 30px;
    border-radius: 5px;
}

.active_inactive h6 {
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 400;
    color: var(--colorBlack);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--borderColor);
    margin-bottom: 20px;
}

.active_inactive h6 span {
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    background: #0D6EFD;
    color: var(--colorWhite);
    font-size: 14px;
    font-weight: 600;
    line-height: 30px;
}

.active_inactive h6 span.red {
    background: var(--colorWhite)0;
}

.active_inactive_item {
    border: 1px solid var(--borderColor);
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 25px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.active_inactive_img {
    width: 40%;
    float: left;
    height: 230px;
}

.active_inactive_img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.active_inactive_text {
    width: 60%;
    float: left;
    position: relative;
    padding: 60px 20px 20px 20px;
}

.active_inactive_text h3 {
    text-transform: capitalize;
    font-size: 25px;
    font-weight: 500;
}

.active_inactive_text p {
    font-size: 16px;
    font-weight: 400;
    color: var(--colorBlack);
    margin: 10px 0px 15px 0px;
}

.active_inactive_text p i {
    margin-right: 5px;
}

.active_inactive_text .color_text a {
    width: auto;
    background: #04A8E8;
    color: var(--colorWhite);
    padding: 5px 20px;
    margin-right: 10px;
    font-size: 12px;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 3px;
}

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

.active_inactive_text .color_text .red {
    background: #00AF3C;
}

.active_inactive_text ul {
    display: flex;
    align-items: center;
    position: absolute;
    top: 10px;
    right: 10px;
}

.active_inactive_text ul li a {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    margin-left: 10px;
    background: #ddd;
    border-radius: 3px;
    color: var(--colorWhite);
    font-size: 14px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.active_inactive_text ul li a:hover {
    color: var(--colorBlack);
}

.active_inactive_text ul li:nth-child(1) a {
    background: #04A8E8;
}

.active_inactive_text ul li:nth-child(2) a {
    background: #00AF3C;
}

.active_inactive_text ul li:nth-child(3) a {
    background: red;
}

.my_listing_single {
    margin-bottom: 20px;
}

.my_listing_single label {
    display: block;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    color: var(--colorBlack);
    margin-bottom: 5px;
}

.my_listing_single input,
.my_listing_single textarea {
    width: 100%;
    border: 1px solid var(--borderColor);
    padding: 15px 15px 15px 45px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    color: var(--colorBlack);
    resize: none;
}

.my_listing_single .input_area {
    position: relative;
}

.my_listing_single .input_area i {
    position: absolute;
    top: 20px;
    left: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #6281FB;
    cursor: pointer;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    z-index: 999;
}

.input_area_2 textarea {
    padding: 15px;
}

.my_listing_single .input_area i:hover {
    color: #0533e7;
}

.my_listing_single .select2-container--default .select2-selection--single {
    border: 1px solid var(--borderColor);
}

.my_listing_single .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 35px;
}

.my_listing_single.mar_bottom {
    margin-bottom: 0;
}

.my_listing.list_mar {
    margin-top: 40px;
}

.input_area_2 input {
    padding: 12px;
    border: 1px solid var(--borderColor);
    margin-bottom: 5px;
}

.inpiut_pad input {
    padding: 15px 12px !important;
}

.dashboard_content h4 span {
    color: #dc3545;
    font-size: 14px;
    margin-left: 10px;
}

.amenities_check_area {
    position: relative;
    border: 1px dashed var(--colorPrimary);
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 5px;
}

.amenities_check_area label {
    display: block;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
    color: var(--colorBlack);
    width: 100%;
}

.amenities_check_area i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 45px;
    opacity: .3;
    color: var(--colorPrimary);
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.amenities_check_area:hover i {
    color: var(--colorPrimary);
    opacity: 1;
}

.my_listing.list_padding {
    padding-bottom: 0;
}

.my_listing_single.list_mar {
    margin-bottom: 25px;
}

#medicine_row label,
#medicine_row2 label {
    display: block;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    color: var(--colorBlack);
    margin-bottom: 5px;
}

#medicine_row label span,
#medicine_row2 label span {
    color: #dc3545;
    font-size: 14px;
    margin-left: 5px;
}

.medicine_row_input {
    display: block;
    width: 100%;
    position: relative;
    margin-bottom: 23px;
}

.medicine_row_input input {
    padding: 12px;
    width: 90%;
    border-radius: 5px;
    border: 1px solid var(--borderColor);
}

.medicine_row_input button {
    background: var(--colorPrimary);
    color: var(--colorWhite);
    border: none;
    width: 7%;
    height: 98%;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 5px;
    font-size: 18px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

#removeRow,
#removeRow2 {
    background: var(--colorWhite)0;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.medicine_row_input button:hover {
    background: #4b6cf0;
}

#removeRow:hover,
#removeRow2:hover {
    background: #a00101;
}

.visitor_rev_single {
    border: 1px solid var(--borderColor);
    overflow: hidden;
    border-radius: 5px;
    padding: 20px;
    margin-top: 25px;
}

.visitor_rev_img {
    width: 25%;
    float: left;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.visitor_rev_text {
    width: 75%;
    float: left;
    padding-left: 20px;
}

.visitor_rev_text .title {
    color: var(--colorBlack);
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
}

.visitor_rev_text .title span {
    color: var(--colorPrimary);
    font-weight: 400;
    font-size: 16px;
    margin-left: 10px;
}

.visitor_rev_text p {
    font-size: 14px;
    color: #FF9900;
    margin: 8px 0px 10px 0px;
}

.visitor_rev_text .small_text {
    display: block;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 400;
}

.visitor_rev_text ul {
    display: flex;
    align-items: center;
}

.visitor_rev_text ul li a {
    width: auto;
    background: #04A8E8;
    color: var(--colorWhite);
    padding: 5px 20px;
    margin-right: 10px;
    font-size: 12px;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 3px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.visitor_rev_text ul li a i {
    margin-right: 10px;
}

.visitor_rev_text ul li:last-child a {
    background: var(--colorWhite)0;
}

.visitor_rev_text ul li a:hover {
    color: var(--colorWhite);
}

.profile_pic_upload {
    border: 1px solid var(--borderColor);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    height: 470px;
}

.profile_pic_upload img {
    height: 100%;
    object-fit: cover !important;
}

.profile_pic_upload input {
    padding: 10px;
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: 90%;
    border-radius: 5px;
    font-size: 13px;
    background: #C8D3FF;
}

.banner_pic_upload {
    margin-bottom: 20px;
}

.banner_pic_upload input {
    width: 30%;
}

.my_listing button {
    border: none;
}

.my_listing .table {
    margin: 0;
    border-left: 1px solid var(--borderColor);
}

.my_listing .table thead {
    background: #CAE5FF;
    color: #0F1221;
    font-size: 14px;
    text-transform: capitalize;
}

.my_listing .table thead tr th {
    border: none;
    border-right: 1px solid var(--borderColor);
    padding: 15px 10px;
    min-width: 90px;
}

.my_listing .table tr td {
    border-right: 1px solid var(--borderColor);
    padding: 15px 10px;
}

.my_listing .table .package,
.my_listing .table .e_date,
.my_listing .table .p_date {
    width: 200px;
}

.my_listing .table .price {
    width: 150px;
}

.my_listing .table .method {
    width: 250px;
}

.my_listing .table .tr_id {
    width: 350px;
}

.my_listing .table .status {
    width: 70px;
    text-align: center;
}

.table-hover>tbody>tr:hover {
    --bs-table-accent-bg: none;
    background: #CAE5FF;
}

.my_listing .table tbody .status a {
    background: #0082FF;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    color: var(--colorWhite);
    border-radius: 5px;
    cursor: pointer;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.my_listing .table tbody .status a:hover {
    background: #0F1221;
}

.my_listing .member_price h4 {
    font-size: 16px !important;
    text-transform: uppercase !important;
    margin-bottom: 35px !important;
    background: var(--colorPrimary);
    display: inline-block !important;
    border: 1px solid transparent;
}

.my_listing .member_price:hover h4 {
    background: var(--colorWhite);
    border-color: var(--colorPrimary);
}

.dashboard_breadcrumb .read_btn {
    color: var(--colorWhite);
}

.dashboard_breadcrumb .read_btn i {
    margin-right: 10px;
    margin-left: 0;
    font-size: 16px;
}

.dashboard_breadcrumb .read_btn:hover {
    color: var(--colorWhite);
}

.schedule table tr td {
    text-transform: capitalize;
    font-size: 16px !important;
}

.schedule .sn {
    width: 100px;
}

.schedule .day {
    width: 250px;
}

.schedule .date {
    width: 300px;
}

.schedule .s_status {
    width: 250px;
}

.schedule .action {
    width: 250px;
}

.schedule tbody .active {
    color: green;
    font-weight: 500;
    position: relative;
    padding-left: 40px !important;
}

.schedule tbody .active::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-style: normal;
    position: absolute;
    content: "\f00c";
    top: 15px;
    left: 15px;
    color: green;
}

.schedule tbody .active i,
.schedule tbody .inactive i {
    margin-left: 10px;
}

.schedule tbody .inactive {
    color: red;
    font-weight: 500;
    position: relative;
    padding-left: 40px !important;
}

.schedule tbody .inactive::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-style: normal;
    position: absolute;
    content: "\f00d";
    top: 15px;
    left: 15px;
    color: red;
}

.schedule ul {
    display: flex;
    justify-content: center;
}

.schedule ul li a {
    width: 35px;
    height: 35px;
    background: var(--colorPrimary);
    color: var(--colorWhite);
    display: inline-block;
    text-align: center;
    line-height: 35px;
    margin: 0px 5px;
    border-radius: 3px;
    font-size: 14px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.schedule ul li:last-child a {
    background: red;
}

.schedule ul li a:hover {
    color: var(--colorWhite);
}

.wsus_schedule_create_single {
    margin-bottom: 25px;
}

.wsus_schedule_create_single label {
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.wsus__invoice_top {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--colorPrimary);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.wsus__invoice_top .invoice_logo {
    width: 150px;
    display: block;
    overflow: hidden;
}

.wsus__invoice_number h5 {
    text-align: right;
    font-size: 22px;
    font-weight: 500;
    text-transform: capitalize;
}

.wsus__invoice_number p {
    text-transform: capitalize;
}

.wsus__invoice_header_left {
    margin-bottom: 60px;
}

.wsus__invoice_header_left h5 {
    text-transform: capitalize;
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 30px;
}

.wsus__invoice_header_left h6 {
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
}

.wsus__invoice_header_left .call_mail {
    display: block;
    font-size: 16px;
    font-weight: 400;
    margin: 5px 0px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.wsus__invoice_header_left .call_mail:hover {
    color: var(--colorPrimary);
}

.invoice_right {
    text-align: right;
}

.invoice .read_btn {
    border: none;
    margin-top: 25px;
}

/*===================
    DASHBOARD END
=====================*/


/*===================
CUSTOM PAGE START END
=====================*/
#wsus__custom_page {
    background: url(../images/listing_bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 95px 0px;
}

#wsus__custom_page p span {
    display: block;
    margin-top: 20px;
}

/*===================
CUSTOM PAGE END
=====================*/



/*===================
AGENT PROFILE START
=====================*/
#wsus__agent_profile {
    padding: 100px 0px;
}

.wsus__profile_header {
    padding: 20px;
    background: var(--colorWhite);
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    position: relative;
    border: 1px solid var(--colorPrimary);
    margin-bottom: 70px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.wsus__profile_header img {
    width: 250px;
    height: 250px;
    border-radius: 10px;
    border: 3px solid #98ACFF;
}

.wsus__profile_text {
    padding: 0px 50px 0px 25px;
}

.wsus__profile_text h4 {
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.wsus__profile_text a,
.wsus__profile_text p {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: #505873f2;
    margin-bottom: 10px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.wsus__profile_text a i,
.wsus__profile_text p i {
    width: 25px;
}

.wsus__profile_text a:hover {
    color: var(--colorPrimary);
}

.wsus__profile_text span {
    font-size: 16px;
    font-weight: 400;
    color: var(--colorBlack);
}

.wsus__agent_link {
    width: auto;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.wsus__agent_link li a {
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    margin-bottom: 10px;
    color: var(--colorWhite);
    border-radius: 3px;
    font-size: 16px;
}

.wsus__agent_link li:last-child a {
    margin: 0;
}

.wsus__agent_link li:nth-child(1) a {
    background: #30559E;
}

.wsus__agent_link li:nth-child(2) a {
    background: #25B8F7;
}

.wsus__agent_link li:nth-child(3) a {
    background: #0077B0;
}

.wsus__agent_link li:nth-child(4) a {
    background: #10B418;
}

.wsus__agent_link li:nth-child(5) a {
    background: #C93971;
}

#medicine_row3 input {
    width: 100%;
    border: 1px solid var(--borderColor);
    padding: 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    color: var(--colorBlack);
}

#medicine_row3 label {
    display: block;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    color: var(--colorBlack);
    margin-bottom: 5px;
}

#medicine_row3 .medicine_row_input button {
    position: inherit;
    width: 70px;
    height: 55px;
    margin-top: 29px;
}

/*===================
AGENT PROFILE END
=====================*/




/* for hover background*/
.wsus__feature_single:hover span,
.wsus__featured_single a .love:hover,
.single_blog:hover,
.member_price:hover a,
.single_blog .read_btn:hover,
.subs_form form button:hover,
.footer_icon li a:hover,
.wsus__topbar_login:hover,
.right_menu .dropdown:hover,
.right_menu .signin a:hover,
.right_menu .signin a.active,
.wsus__feature_single:hover,
.sidebar_contact_share ul li a:hover,
.listing_det_side_address ul li a:hover,
.my_listing .table tbody .status i:hover,
.main_menu .nav-item:hover>a,
.main_menu li a.active {}

/* for text color */
.member_price h5,
.member_price span,
.wsus__property_topbar_left ul li a.wsus_active_bar,
.contact_box_icon i,
.contact_box_text a,
.contact_box_text p,
.dashboard_breadcrumb ul li a:hover,
.dashboard_breadcrumb ul li .bread_active,
.amenities_check_area i,
.my_listing_single .input_area i {}

/* for primary background */
.wsus__topbar_login,
.right_menu .dropdown,
.read_btn,
.wsus__feature_single,
.wsus__counter_top_video a,
.wsus__category_text_center i,
.scroll_btn,
.wsus__featured_single .location,
.wsus__location_filter button.active,
.wsus__location_filter button:hover,
.member_price h4,
.subs_form form button,
footer,
#wsus__featured_listing .slick-dots li button,
.about_img .venobox i,
.blog_search button,
.dashboard_link li a:hover,
.dashboard_link li .active,
.medicine_row_input button,
.my_listing .table tbody .status i,
#pagination .page-item.active .page-link,
.wsus__heading_area h2::before,
.wsus__heading_area h2::after {}

/* new css start */
.visitor_rev_area form {
    overflow: hidden;
    width: 100%;
    padding-top: 20px;
}

.visitor_rev_area .input_area {
    width: 100%;
}

.visitor_rev_area .wsus__search_area {
    margin-bottom: 20px;
    position: relative;
}

.visitor_rev_area .input_area textarea {
    width: 100%;
    border: 1px solid var(--colorPrimary);
    padding: 15px 15px 15px 45px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    color: var(--colorBlack);
    resize: none;
    margin-bottom: 20px;
}

.visitor_rev_area .wsus__search_area i {
    left: auto;
    right: 15px;
}

.visitor_rev_area .input_area i {
    position: absolute;
    top: 20px;
    left: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #6281FB;
    z-index: 10;
    right: auto;
}

.visitor_rev_area .select2-container--default .select2-selection--single {
    padding-left: 37px;
}

.wsus__rev_textarea {
    position: relative;
}

.wsus__payment {
    background: var(--colorWhite);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 30px;
    border-radius: 5px;
}

.wsus__payment nav {
    margin-bottom: 40px;
}

.wsus__payment .wsus__payment_input {
    margin-bottom: 20px;
}

.wsus__payment .wsus__payment_input input {
    width: 100%;
    border: 1px solid var(--colorPrimary);
    padding: 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    color: var(--colorBlack);
    resize: none;
}

.wsus__payment .wsus__payment_input label {
    display: block;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    color: var(--colorBlack);
    margin-bottom: 5px;
    text-align: left;
}

.wsus__payment form button {
    border: none;
}

.wsus__payment .nav-tabs {
    border-bottom: 1px solid var(--colorPrimary);
}

.wsus__payment .nav-link {
    outline: none;
    color: var(--colorPrimary);
    background: var(--colorWhite);
    border-color: var(--colorPrimary);
    border-radius: 0 !important;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
}

.wsus__payment .nav-tabs .nav-link.active,
.wsus__payment .nav-tabs .nav-link:hover {
    color: var(--colorWhite);
    background: var(--colorPrimary);
    border-color: var(--colorPrimary);
}

.wsus__cash_delivery h6 {
    text-transform: capitalize;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
}

.wsus__cash_delivery ul {
    padding-left: 13px;
    list-style: unset;
    margin-bottom: 20px;
}

.wsus__cash_delivery ul li {
    color: #505873f2;
    font-weight: 400;
    font-size: 16px;
    margin-top: 12px;
}

/* new css end */


.home_2 p,
.home_3 p {
    color: var(--paraColor);
}

.home_2 img,
.home_3 img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/*=======================
	HOME 2 START
=======================*/
.common_btn_2 {
    background: var(--colorSecondary);
    color: var(--colorWhite);
    padding: 14px 25px;
    border-radius: 10px;
    outline: none;
    border: none;
    text-transform: capitalize;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.common_btn_2:hover {
    background: var(--colorBlack) !important;
}

.title {
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
    color: var(--colorBlack);
    display: block;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.title:hover {
    color: var(--colorSecondary);
}

.wsus__section_heading {
    text-align: center;
}

.wsus__section_heading h5 {
    text-align: center;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    color: var(--colorSecondary);
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.wsus__section_heading h5::after {
    position: absolute;
    content: "";
    background: url(../images/heading_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 17px;
    height: 20px;
    top: -3px;
    left: 0;
    z-index: 1;
}

.wsus__section_heading h2,
.wsus__section_heading h2 span {
    text-align: center;
    text-transform: capitalize;
    font-size: 38px;
    font-weight: 600;
    position: relative;
    color: var(--colorBlack);
    z-index: 1;
}

.wsus__section_heading h2 span::after {
    position: absolute;
    content: "";
    background: url(../images/heading_shape.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 110px;
    height: 18px;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}


/* topbar 2 start */
.home_2 #wsus__topbar {
    background: var(--colorBlack);
    position: relative;
    z-index: 99;
}

.home_2 .wsus__topbar_left li a {
    color: var(--colorWhite);
    opacity: .9;
}

.home_2 .wsus__topbar_right li a {
    color: var(--colorWhite);
    opacity: .9;
}

.home_2 .wsus__topbar_login {
    background: none;
    font-weight: 400;
    color: var(--colorWhite) !important;
    padding: 0 !important;
    line-height: 35px;
}

.home_2 .wsus__topbar_login:hover {
    background: var(--colorBlack);
}

#wsus__topbar .nice-select {
    font-size: 14px;
    width: 115px;
    height: 39px;
    line-height: 39px;
    padding-left: 15px;
    padding-right: 35px;
    border: none;
    border-left: 1px solid #ffffff82;
    border-right: 1px solid #ffffff82;
    border-radius: 0;
    margin-top: 1px;
    background: none;
    color: var(--colorWhite);
}

#wsus__topbar .nice-select .current {
    color: var(--colorWhite);
    font-size: 15px;
    opacity: .9;
}

#wsus__topbar .nice-select .option {
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 0;
    font-weight: 400 !important;
    border-top: 1px solid var(--borderColor);
}

#wsus__topbar .nice-select .list {
    width: 100%;
    margin-top: -1px;
}

#wsus__topbar .nice-select:after {
    border-bottom: none;
    border-right: none;
    transform-origin: initial;
    transform: rotate(0);
    border-color: var(--colorWhite) transparent transparent transparent;
    border-style: solid;
    border-width: 6px 4px 0 4px;
    height: 0;
    right: 15px;
    margin-left: -4px;
    margin-top: -21px;
    position: absolute;
    top: 100%;
    width: 0;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transition: none;
}

#wsus__topbar .nice-select.open:after {
    transform: rotateX(145deg) !important;
    -webkit-transform: rotateX(145deg) !important;
    -moz-transform: rotateX(145deg) !important;
    -ms-transform: rotateX(145deg) !important;
    -o-transform: rotateX(145deg) !important;
}

#wsus__topbar .nice-select .option.focus,
#wsus__topbar .nice-select .option.selected.focus {
    background-color: #ddd;
}

#wsus__topbar .nice-select .option.selected.focus,
#wsus__topbar .nice-select .option:hover {
    color: var(--colorWhite);
    background: var(--colorSecondary) !important;
}

/* topbar 2 end */


/* menu 2 start */
.main_menu_2 {
    position: fixed;
    top: 40px;
}

.main_menu_2 li:hover .menu_droapdown {
    top: 102%;
}

.home_2 #wsus__topbar .container-fluid,
.main_menu_2 .container-fluid {
    padding: 0px 150px;
}

.main_menu_2 .navbar-brand {
    width: 190px;
    padding: 0;
    margin: 0;
}

.main_menu_2 .navbar-nav {
    line-height: 60px;
}

.main_menu_2 .navbar-nav .nav-item .nav-link {
    font-weight: 500;
}

.main_menu_2 .navbar-nav .nav-item:hover .nav-link,
.main_menu_2 .navbar-nav .nav-item .nav-link.active {
    color: var(--colorSecondary);
}

.main_menu_2 .menu_droapdown li {
    border-bottom: 1px solid var(--borderColor);
}

.main_menu_2 .menu_droapdown li:last-child {
    border: none;
    /* margin: 15px 0px; */
}

.main_menu_2 .menu_droapdown {
    border-top: 1px solid var(--colorSecondary);
    line-height: initial;
}

.main_menu_2 .menu_droapdown li a:hover,
.main_menu_2 .menu_droapdown li a.droap_active {
    color: var(--colorSecondary);
}

.main_menu_2 .right_menu {
    width: auto;
    align-items: center;
    gap: 20px;
    color: var(--colorBlack);
}

.main_menu_2 .right_menu li .user_btn {
    padding: 0;
    font-size: 16px;
    font-weight: 500;
}

.main_menu_2 .right_menu li .user_btn img {
    width: auto !important;
    height: auto !important;
}

.main_menu_2 .right_menu li .user_btn:hover {
    color: var(--colorSecondary);
}

.main_menu_2 .right_menu li .user_btn:hover span {
    filter: brightness(0) saturate(100%) invert(42%) sepia(85%) saturate(617%) hue-rotate(312deg) brightness(103%) contrast(105%);
}

.main_menu_2 .right_menu li.signin {
    border: none;
}

.main_menu_2 .right_menu li .common_btn_2 {
    padding: 14px 25px;
    color: var(--colorWhite);
    font-size: 16px;
    font-weight: 400;
}

/* menu 2 end */


/* banner 2 start */
.wsus__banner_2 {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    margin: 80px 0;
    overflow: hidden;
}

.wsus__banner_overlay_2 {
    background: #04063e;
    padding: 0px 150px;
    background: rgb(4, 6, 62);
    background: linear-gradient(90deg, rgb(0 0 0 / 90%) 0%, rgb(6 7 45 / 67%) 37%, rgb(4 6 62 / 0%) 100%);
}

.wsus__banner_text_2 {
    padding: 230px 0px;
}

.wsus__banner_text_2 h5 {
    text-align: center;
    color: var(--colorWhite);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 10px;
    background: var(--colorSecondary);
    padding: 7px 20px;
    border-radius: 6px;
    font-size: 14px;
    display: inline-block;
}

.wsus__banner_text_2 h1 {
    font-size: 68px;
    font-weight: 600;
    color: var(--colorWhite);
    text-transform: capitalize;
}

.wsus__banner_text_2 p {
    color: var(--colorWhite) !important;
    opacity: .9;
    max-width: 65%;
    margin: 20px 0 60px 0;
    line-height: initial;
}

.wsus__banner_text_2 form {
    width: 100%;
    background: var(--colorWhite);
    border-radius: 15px;
    padding: 15px;
}

.wsus__banner_text_2 form .banner_input input {
    width: 100%;
    border: 1px solid var(--borderColor);
    padding: 13px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
    background: var(--lightBg);
}

.wsus__banner_text_2 .select2-container .select2-selection--single .select2-selection__rendered {
    font-size: 14px;
}

.wsus__banner_text_2 form .search_button button {
    width: 100%;
    padding: 12px 25px;
}

.wsus__banner_text_2 .select2-container--default .select2-selection--single {
    border: 1px solid var(--borderColor);
    border-radius: 10px;
    padding: 6px 20px;
    background: var(--lightBg);
}

.wsus__banner_text_2 .select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-top: -6px;
    right: 20px;
}

.home_2 .select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid var(--colorSecondary);
}

.home_2 .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--colorSecondary);
}

/* banner 2 end */

/* category 2 start */

.wsus__category_2 {
    padding-top: 15px;
}

.wsus__single_category_2 {
    background: var(--lightBg);
    padding: 25px;
    border-radius: 10px;
    margin-top: 25px;
    border-bottom: 3px solid #ffccce;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    margin: 25px 12px 0px 12px;
}

.wsus__single_category_2:hover {
    border-color: var(--colorSecondary);
}

.wsus__single_category_2 span {
    display: block;
    width: 70px;
    height: 70px;
    padding: 15px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    border: 1px solid var(--colorSecondary);
    margin: 0 auto;
}

.wsus__single_category_2 span img {
    filter: brightness(0) saturate(100%) invert(92%) sepia(100%) saturate(0%) hue-rotate(202deg) brightness(106%) contrast(106%);
}

.wsus__single_category_2 span::after {
    position: absolute;
    content: "";
    width: 70px;
    height: 70px;
    background: var(--colorSecondary);
    top: 2px;
    left: 2px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: -1;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__single_category_2 a {
    text-align: center;
    margin-top: 25px;
}

.wsus__single_category_2 p {
    text-align: center;
}

.wsus__testimonial_2 .slick-dots,
.wsus__category_2 .slick-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.wsus__testimonial_2 .slick-dots li button,
.wsus__category_2 .slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border: none;
    background: var(--colorSecondary);
    outline: none;
    border-radius: 50%;
    opacity: .5;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__testimonial_2 .slick-dots li button:hover,
.wsus__testimonial_2 .slick-dots li.slick-active button,
.wsus__category_2 .slick-dots li button:hover,
.wsus__category_2 .slick-dots li.slick-active button {
    opacity: 1;
}

/* category 2 end */


/* popular cities 2 start */
.wsus__popular_city_2 {
    margin-top: 100px;
    background: url(../images/cities_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 95px;
    padding-bottom: 95px;
}

.wsus__popular_city_2 .wsus__section_heading h2 span {
    z-index: 1;
}

.wsus__single_cities_2 {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 400px;
    margin-top: 25px;
}

.wsus__single_cities_2 img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__single_cities_2 .text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    background: linear-gradient(0deg, rgba(10, 22, 86, 1) 0%, rgb(10 22 86 / 36%) 45%, rgb(10 22 86 / 0%) 100%);
}

.wsus__single_cities_2 .text p {
    font-size: 20px;
    font-weight: 600;
    color: var(--colorWhite);
}

.wsus__single_cities_2 .text span {
    color: var(--colorWhite);
    opacity: .7;
}

.wsus__single_cities_2:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

/* popular cities 2 end */


/* featured listing 2 start */
.featured_listing_2 {
    margin-top: 100px;
}

.featured_listing_item_2 {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 25px;
}

.featured_listing_item_img {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.featured_listing_item_img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border: 50px solid var(--colorWhite);
    top: 0;
    right: 0;
    z-index: 1;
    opacity: 0;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.featured_listing_item_img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.featured_listing_item_2:hover .featured_listing_item_img img {
    transform: scale(1.05);
}

.featured_listing_item_2:hover .featured_listing_item_img::after {
    border: 0px solid var(--colorWhite);
    opacity: .6;
}

.featured_listing_item_img a {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 2px 20px;
    text-transform: capitalize;
    color: var(--colorWhite);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    z-index: 9;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.featured_listing_item_img a.green {
    background: #38B352;
}

.featured_listing_item_img a.red {
    background: var(--colorSecondary);
}

.featured_listing_item_img a.orange {
    background: var(--ratingColor);
}

.featured_listing_item_img a:hover,
.featured_listing_item_img .love a:hover {
    background: var(--colorBlack);
    color: var(--colorWhite);
}

.featured_listing_item_text {
    padding: 30px;
    position: relative;
}

.featured_listing_item_text .author {
    display: block;
    width: 60px;
    height: 60px;
    overflow: hidden;
    border: 3px solid var(--colorWhite);
    position: absolute;
    top: -30px;
    right: 25px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: 9;
}

.featured_listing_item_text .author img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.featured_listing_item_text .rating {
    color: var(--ratingColor);
    margin-bottom: 12px;
    font-size: 14px;
}

.featured_listing_item_text .rating span {
    color: var(--colorBlack);
    font-size: 14px;
    margin-left: 5px;
    border-radius: 30px;
    text-transform: capitalize;
}

.featured_listing_item_text ul {
    margin-top: 20px;
}

.featured_listing_item_text ul li {
    color: var(--paraColor);
    font-size: 14px;
    font-weight: 400;
    margin-top: 15px;
    position: relative;
    padding-left: 25px;
}

.featured_listing_item_text ul li i {
    color: var(--colorSecondary);
    position: absolute;
    left: 0;
    top: 4px;
}

/* featured listing 2 end */


/* about us 2 start */
.wsus__about_us {
    margin-top: 100px;
}

.wsus__about_us_img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.wsus__about_us_img .img_1 {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
}

.wsus__about_us_img .img_2 {
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
}

.wsus__about_us_text {
    padding-left: 40px;
}

.wsus__about_us_text .wsus__section_heading h2,
.wsus__about_us_text .wsus__section_heading {
    text-align: left;
}

.wsus__about_us_text p {
    margin-top: 22px;
}

.wsus__about_us_text ol,
.wsus__about_us_text ul {
    margin-top: 35px;
    margin-bottom: 60px;
}

.wsus__about_us_text ul li,
.wsus__about_us_text ol li {
    font-size: 16px;
    font-weight: 400;
    color: var(--paraColor);
    margin-top: 15px;
    padding-left: 32px;
    position: relative;
}

.wsus__about_us_text ul li::after,
.wsus__about_us_text ol li::after {
    position: absolute;
    content: "\f00c";
    font-family: "font awesome 5 free";
    font-size: 10px;
    font-weight: 600;
    color: var(--colorWhite);
    background: #14AE5C;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
}

.wsus__about_us_text a {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--colorBlack);
    border-bottom: 1px solid var(--borderColor);
    transition: all linear .3s;
}

.wsus__about_us_text a i {
    margin-left: 5px;
}

.wsus__about_us_text a:hover {
    color: var(--colorSecondary);
}


/* about us 2 end */


/* counter 2 start  */
.wsus__counter_2 {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    margin-top: 100px;
}

.wsus__counter_2 ul {
    border: 1px solid var(--borderColor);
    border-radius: 10px;
    background: var(--lightBg);
}

.wsus__counter_2 ul li {
    width: 25%;
    padding: 50px 20px;
    border-right: 1px solid var(--borderColor);
}

.wsus__counter_2 ul li:last-child {
    border: none;
}

.wsus__counter_2 ul li h3,
.wsus__counter_2 ul li h3 span {
    text-align: center;
    font-size: 64px;
    font-weight: 700;
    color: var(--colorBlack);
    -webkit-text-fill-color: var(--lightBg);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--colorBlack);
}

.wsus__counter_2 ul li p {
    text-align: center;
    color: var(--colorBlack);
    font-size: 15px;
}

/* counter 2 end */


/* pricing start */
.wsus__pricing {
    background: var(--lightBg);
    margin-top: 100px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.wsus__pricing_item {
    margin-top: 25px;
    padding: 48px 35px 50px 35px;
    background: var(--colorWhite);
    box-shadow: 0px 6px 30px 0px rgba(3, 18, 33, 0.10);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.wsus__pricing_item:hover {
    margin-top: 15px;
}

.wsus__pricing_item p {
    position: absolute;
    top: 25px;
    right: -53px;
    background: var(--colorSecondary);
    color: var(--colorWhite) !important;
    padding: 10px 70px;
    text-align: center;
    text-transform: capitalize;
    transform: rotate(45deg);
}

.wsus__pricing_item h6 {
    font-size: 18px;
    font-weight: 500;
    color: var(--colorSecondary);
    text-transform: capitalize;
}

.wsus__pricing_item h2 {
    font-size: 36px;
    font-weight: 600;
    margin-top: 15px;
}

.wsus__pricing_item h2 span {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--colorBlack);
}

.wsus__pricing_item ul {
    margin-top: 25px;
    padding-top: 15px;
    /* padding-bottom: 35px; */
    margin-bottom: 35px;
    position: relative;
}

.wsus__pricing_item ul::after,
.wsus__pricing_item ul::before {
    position: absolute;
    content: "";
    width: 150%;
    height: 1px;
    background-color: var(--borderColor);
    top: 0;
    left: -80px;
}

.wsus__pricing_item ul li {
    font-size: 16px;
    font-weight: 400;
    color: rgba(3, 18, 33, 0.70);
    text-transform: capitalize;
    position: relative;
    padding-left: 32px;
    margin-top: 17px;
}

.wsus__pricing_item ul li.disable {
    color: rgb(3 18 33 / 38%);
}

.wsus__pricing_item ul li::after {
    position: absolute;
    content: "\f00c";
    font-family: "font awesome 5 free";
    font-size: 13px;
    font-weight: 600;
    color: #14AE5C;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
}

.wsus__pricing_item ul li.disable::after {
    content: "\f00d";
    color: var(--colorSecondary);
    padding-left: 1px;
}

.wsus__pricing_item a {
    width: 100%;
    background: #E5ECF2;
    color: var(--colorBlack);
}

.wsus__pricing_item a:hover {
    color: var(--colorWhite);
}

/* pricing end */


/* testimonial 2 start */
.wsus__testimonial_2 {
    margin-top: 100px;
    padding: 0px 25px;
}

.wsus__single_testimonial_2 {
    background: var(--colorWhite);
    padding: 40px;
    box-shadow: 0px 5px 10px 0px rgba(3, 18, 33, 0.10);
    margin: 20px 12px 40px 12px;
    position: relative;
    border-radius: 10px;
    border: 1px solid #eeeeeec7;
}

.wsus__single_testimonial_2 .rating {
    color: var(--ratingColor);
}

.wsus__single_testimonial_2 .description {
    line-height: 26px;
    margin-top: 10px;
    margin-bottom: 25px;
}

.wsus__single_testimonial_2 h3 {
    font-size: 16px;
    font-weight: 600;
}

.wsus__single_testimonial_2 h3 span {
    display: block;
    font-weight: 500;
    margin-top: 5px;
    font-size: 13px;
}

.wsus__single_testimonial_2 .testimonial_logo {
    width: 100px;
    height: 25px;
}

.wsus__testimonial_footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
}

.wsus__testimonial_footer .img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.wsus__testimonial .total_review {
    display: inline-block;
    background: #E0E0F0;
    color: var(--colorBlack);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 30px;
}

.wsus__testimonial .total_review a {
    color: var(--colorPrimary);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__testimonial .total_review a:hover {
    color: var(--colorBlack);
}

.wsus__single_testimonial_2::after {
    position: absolute;
    content: "";
    background: url(../images/testimonial_shapes.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100px;
    height: 60px;
    bottom: 50px;
    right: 50px;
}

.wsus__testimonial_2 .slick-dots {
    margin-top: 0;
}

/* testimonial 2 end */

/* blog 2 start */
.wsus__blog_2 {
    margin-top: 60px;
}

.wsus__single_blog_2 {
    background: var(--colorWhite);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-top: 25px;
    border-radius: 10px;
    overflow: hidden;
}

.wsus__single_blog_2_img {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.wsus__single_blog_2_img img {
    width: 100% !important;
    height: 100%;
    object-fit: cover !important;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__single_blog_2_img a {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 2px 20px;
    text-transform: capitalize;
    color: var(--colorWhite);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    z-index: 2;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__single_blog_2_img a.green {
    background: #38B352;
}

.wsus__single_blog_2_img a.red {
    background: var(--colorSecondary);
}

.wsus__single_blog_2_img a.orange {
    background: var(--ratingColor);
}

.wsus__single_blog_2_img a:hover {
    background: var(--colorBlack);
    color: var(--colorWhite);
}

.wsus__single_blog_2_img a:hover {
    background: var(--colorBlack);
    color: var(--colorWhite);
}

.wsus__single_blog_2_text {
    padding: 25px 30px 30px 30px;
}

.wsus__single_blog_2_text ul {
    margin-bottom: 12px;
}

.wsus__single_blog_2_text ul li {
    color: var(--paraColor);
    font-size: 14px;
    font-weight: 500;
    border-right: 1px solid rgba(30, 30, 47, 0.14);
    padding-right: 15px;
    margin-right: 15px;
    line-height: 15px;
}

.wsus__single_blog_2_text ul li span {
    display: inline-block;
    width: 17px;
    margin-right: 5px;
    position: relative;
    top: -2px;
}

.wsus__single_blog_2_text ul li:last-child {
    border: none;
    margin: 0;
    padding: 0;
}

.wsus__single_blog_2_text p {
    color: rgba(30, 30, 47, 0.70);
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    border-top: 1px solid var(--borderColor);
    padding-top: 15px;
    margin-top: 15px;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wsus__blog_2 .common_btn {
    position: absolute;
    top: 45px;
    right: 12px;
}

.wsus__single_blog_2_img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border: 50px solid var(--colorWhite);
    top: 0;
    right: 0;
    z-index: 1;
    opacity: 0;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__single_blog_2:hover .wsus__single_blog_2_img:after {
    border: 0px solid var(--colorWhite);
    opacity: .6;
}

.wsus__single_blog_2:hover .wsus__single_blog_2_img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.wsus__single_blog_2_text .read_btn_2 {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--colorBlack);
    border-bottom: 1px solid var(--borderColor);
    transition: all linear .3s;
}

.wsus__single_blog_2_text .read_btn_2 i {
    margin-left: 5px;
}

.wsus__single_blog_2_text .read_btn_2:hover {
    color: var(--colorSecondary);
}

/* blog 2 end */


/* footer 2 start */
.footer_2 {
    margin-top: 100px;
    padding: 0;
    background: transparent;
}

.footer_2_bg {
    margin: 0px 30px;
    border-radius: 30px;
    overflow: hidden;
}

.footer_2_overlay {
    background: #010a2af2;
    padding: 175px 0px 100px 0px;
}

.footer_2 .footer_logo {
    width: 170px;
    margin-bottom: 15px;
}

.footer_2 .footer_icon {
    margin-top: 30px;
}

.footer_2 .footer_bottom {
    margin-top: 0;
    padding: 15px;
}

.footer_2 .footer_icon li a {
    font-size: 14px;
    width: 35px;
    height: 35px;
    border: 1px solid #dddddd69;
    line-height: 35px;
    border-radius: 50%;
}

.footer_2 .footer_icon li a:hover {
    color: var(--colorWhite);
    background: var(--colorSecondary);
    border-color: var(--colorSecondary);
}

.footer_2 h3 {
    font-size: 20px;
    margin-bottom: 28px;
}

.footer_2 .footer_link li a {
    color: #d7d7d7;
    margin: 0;
    /* opacity: .8; */
}

.footer_2 .footer_link li a:hover {
    color: var(--colorWhite);
    padding-left: 5px;
}

.footer_2 .footer_contact ul li a,
.footer_2 .footer_contact ul li p {
    padding-left: 50px !important;
    color: #d7d7d7;
    margin-top: 25px;
}

.footer_2 .footer_contact ul li a i,
.footer_2 .footer_contact ul li p i {
    margin-left: 0px !important;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: var(--colorWhite);
    color: var(--colorSecondary);
    border-radius: 50%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 14px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.footer_2 .footer_contact ul li {
    border-bottom: none;
    padding-bottom: 0;
}

.footer_2 .footer_text p {
    color: #d7d7d7;
    /* opacity: .8; */
}

.footer_2 .footer_link li:last-child {
    margin-bottom: 0;
}

.footer_2_subscription_bg {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding: 35px;
    border-radius: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-bottom: -75px;
    position: relative;
    z-index: 1;
}

.footer_2_subs_text h2 {
    font-size: 38px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px;
    color: var(--colorWhite);
}

.footer_2_subs_text p {
    font-size: 15px;
    opacity: .9;
    color: var(--colorWhite) !important;
}

.footer_2_subs_form {
    position: relative;
}

.footer_2_subs_form input {
    width: 100%;
    padding: 20px 20px;
    border: 1px solid var(--borderColor);
    border-radius: 10px;
}

.footer_2_subs_form button {
    position: absolute;
    top: 7px;
    right: 7px;
}

.footer_2 .footer_bottom p {
    color: var(--paraColor);
}

.footer_2 .footer_bottom p a {
    color: var(--colorSecondary);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.footer_2 .footer_bottom p a:hover {
    color: var(--colorBlack);
}

.footer_2 .footer_bottom_link li {
    margin-right: 30px;
}

.footer_2 .footer_bottom_link li a:hover {
    color: var(--colorSecondary);
}

.footer_2 .footer_bottom_link li a {
    color: var(--paraColor);
}

/* footer 2 end */

.home_2 .scroll_btn {
    background: var(--colorSecondary);
}

.home_2 #wsus__login_popup .nav-pills .nav-link {
    background: #E5ECF2;
}

.home_2 #wsus__login_popup .nav-pills .nav-link.active,
.home_2 #wsus__login_popup .nav-pills .show>.nav-link {
    color: var(--colorWhite);
    background: var(--colorSecondary) !important;
}

.home_2 #wsus__login_popup form button {
    padding: 10px 25px;
    font-size: 13px;
    border-radius: 6px;
}

/*=======================
	HOME 2 END
=======================*/

/*=======================
	HOME 3 START
=======================*/
.common_btn_3 {
    background: var(--colorOrange);
    padding: 10px 25px;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--colorWhite) !important;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    text-align: center;
    border: none;
    outline: none;
}

.common_btn_3 span {
    filter: brightness(0) saturate(100%) invert(96%) sepia(2%) saturate(135%) hue-rotate(242deg) brightness(122%) contrast(100%);
    margin-right: 5px;
    -webkit-filter: brightness(0) saturate(100%) invert(96%) sepia(2%) saturate(135%) hue-rotate(242deg) brightness(122%) contrast(100%);
}

.common_btn_3 span img {
    width: auto !important;
    height: auto !important;
}

.common_btn_3 i {
    margin-left: 5px;
}

.common_btn_3:hover {
    background: #e08905;
}

.home_3 .title:hover {
    color: var(--colorOrange);
}

.home_3 #wsus__topbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    backdrop-filter: blur(10px);
    background: #ffffff1f;
}

.home_3 .wsus__topbar_left li a {
    color: var(--colorWhite);
    opacity: .8;
}

.home_3 .wsus__topbar_left li a:hover {
    opacity: 1;
}

.home_3 .wsus__topbar_login {
    border-radius: 0px;
    border-right: 1px solid #ffffff36;
    border-left: 1px solid #ffffff36;
    background: none !important;
    font-weight: 400 !important;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    line-height: 39px;
    opacity: .8;
}

.home_3 .wsus__topbar_login:hover {
    opacity: 1;
}

.home_3 .wsus__topbar_right li:last-child {
    margin: 0;
}

.home_3 .wsus__topbar_right li a {
    color: var(--colorWhite);
    opacity: .8;
}

.home_3 .wsus__topbar_right li a:hover {
    opacity: 1;
}

.home_3 #wsus__login_popup .nav-pills .nav-link {
    background: #fe9f104f;
    border-radius: 0;
}

.home_3 #wsus__login_popup .nav-pills .nav-link.active,
.home_3 #wsus__login_popup .nav-pills .show>.nav-link {
    color: var(--colorWhite);
    background: var(--colorOrange) !important;
}

.home_3 #wsus__login_popup form input {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.home_3 .modal-content {
    border-radius: 0;
}

.home_3 #wsus__topbar .nice-select {
    background: none;
    height: 40px;
    line-height: 40px;
    border: none;
    margin-top: 0;
    border-left: 1px solid #ffffff36;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.home_3 #wsus__topbar .nice-select .current {
    color: var(--colorWhite);
    font-size: 15px;
    opacity: .8;
}

.home_3 #wsus__topbar .nice-select:after {
    border-color: var(--colorWhite) transparent transparent transparent;
    opacity: .8;
}

.home_3 #wsus__topbar .nice-select .option.selected.focus,
.home_3 #wsus__topbar .nice-select .option:hover {
    background: var(--colorOrange) !important;
}

.home_3 .nice-select .list {
    border-radius: 0;
}

.main_menu_3 {
    position: fixed;
    top: 40px;
    left: 0;
    background: transparent;
    border-bottom: 1px solid #ffffff36;
    padding: 0;
}

.main_menu_3 .navbar-brand {
    padding: 0;
    margin: 0;
    width: 190px;
    overflow: hidden;
}

.main_menu_3 .navbar-brand img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.main_menu_3 .navbar-nav {
    line-height: 65px;
}

.main_menu_3 .navbar-nav .nav-item .nav-link {
    color: var(--colorWhite) !important;
}

.main_menu_3 .navbar-nav .nav-item:hover .nav-link,
.main_menu_3 .navbar-nav .nav-item .nav-link.active,
.main_menu_3 .menu_droapdown li:hover a,
.main_menu_3 .menu_droapdown li a.active {
    color: var(--colorOrange) !important;
}

.main_menu_3 .menu_droapdown {
    line-height: initial;
    /* padding: 5px 20px 20px 20px; */
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-top: 1px solid var(--colorOrange);
}

.main_menu_3.menu_fix {
    background: var(--colorBlack);
    border: none;
    z-index: 999;
}

.main_menu_3 li:hover .menu_droapdown {
    top: 99%;
}

.main_menu_3 .right_menu {
    width: auto;
}

.wsus__banner_3 {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    height: 100vh;
    position: relative;
}

.wsus__banner_3::after {
    position: absolute;
    content: "";
    background: url(../images/restaurant_shapes_5.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 145px;
    height: 300px;
    top: 20%;
    left: 0;
    animation: banner_animi 1s ease infinite alternate;
    -webkit-animation: banner_animi 1s ease infinite alternate;
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
}

@keyframes banner_animi {
    from {
        margin-top: 20px;
    }

    to {
        margin-top: 0;
    }
}

.wsus__banner_3 div {
    height: 100%;
}

.wsus__banner_overlay_3 {
    background: #000000b3;
}

.wsus__banner_text_3 {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    padding-top: 105px;
}

.wsus__banner_text_3 h1 {
    max-width: 80%;
}

.wsus__banner_text_3 h1,
.wsus__banner_text_3 h1 span {
    font-size: 68px;
    font-weight: 600;
    color: var(--colorWhite);
    text-transform: capitalize;
}

.wsus__banner_text_3 h1 span {
    color: var(--colorOrange);
}

.wsus__banner_text_3 p {
    max-width: 60%;
    margin: 20px 0 60px 0;
}

.wsus__banner_text_3 form {
    border-radius: 0;
}

.wsus__banner_text_3 form .banner_input input {
    border-radius: 0;
}

.wsus__banner_text_3 .select2-container--default .select2-selection--single {
    border-radius: 0;
}

.wsus__banner_text_3 .select2-container .select2-selection--single .select2-selection__rendered {
    text-align: left;
}

.home_3 .select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid var(--colorOrange);
}

.home_3 .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--colorOrange);
}

.wsus__section_heading p {
    text-align: center;
    width: 70%;
    margin: 0 auto;
    margin-top: 15px;
}

.wsus__category_3 {
    padding-top: 75px;
    padding-bottom: 65px;
    background: #F4F4F4;
}

.wsus__single_category_3 {
    background: var(--colorWhite);
    text-align: center;
    padding: 80px 30px;
    box-shadow: rgb(149 157 165 / 6%) 0px 8px 13px;
    margin: 25px 12px 29px 12px;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid transparent;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__single_category_3 .icon {
    display: block;
    width: 70px;
    height: 70px;
    margin: 0 auto;
}

.wsus__single_category_3 .icon img {
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__single_category_3 a {
    margin-top: 20px;
    margin-bottom: 5px;
}

.wsus__single_category_3 span {
    position: absolute;
    top: -25px;
    left: -25px;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    background: #fcf0de;
    padding-left: 13px;
    padding-top: 10px;
    color: var(--colorBlack);
    font-size: 14px;
    font-weight: 600;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    -ms-border-radius: 50% !important;
    -o-border-radius: 50% !important;
}

.wsus__testimonial_3 .nextArrow,
.wsus__testimonial_3 .prevArrow,
.wsus__category_3 .nextArrow,
.wsus__category_3 .prevArrow {
    width: 40px;
    height: 40px;
    line-height: 42px;
    text-align: center;
    background: var(--colorWhite);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    font-size: 14px;
    cursor: pointer;
    position: absolute;
    top: 49%;
    right: -8px;
    transform: translateY(-50%);
    z-index: 9;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.wsus__testimonial_3 .prevArrow,
.wsus__category_3 .prevArrow {
    right: auto;
    left: -8px;
}

.wsus__testimonial_3 .nextArrow:hover,
.wsus__testimonial_3 .prevArrow:hover,
.wsus__category_3 .nextArrow:hover,
.wsus__category_3 .prevArrow:hover {
    background: var(--colorOrange);
    color: var(--colorWhite);
}

.wsus__testimonial_3 .nextArrow,
.wsus__testimonial_3 .prevArrow {
    top: 54%;
}

.slick-current .wsus__single_category_3,
.wsus__single_category_3:hover {
    border-color: var(--colorOrange);
}

.slick-current .wsus__single_category_3 .title,
.wsus__single_category_3:hover .title {
    color: var(--colorOrange);
}

.slick-current .wsus__single_category_3 span,
.wsus__single_category_3:hover span {
    background: var(--colorOrange);
    color: var(--colorWhite);
}

.slick-current .wsus__single_category_3 .icon img,
.wsus__single_category_3:hover .icon img {
    transform: rotate(10deg);
    filter: brightness(0) saturate(100%) invert(9%) sepia(15%) saturate(6446%) hue-rotate(206deg) brightness(93%) contrast(105%);
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
}

.wsus__popular_restaurant {
    margin-top: 90px;
    position: relative;
}

.wsus__popular_restaurant::before {
    position: absolute;
    content: "";
    background: url(../images/restaurant_shapes_7.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 170px;
    height: 235px;
    top: 0;
    right: 0;
    opacity: 1;
    animation: banner_animi 1s ease infinite alternate;
    -webkit-animation: banner_animi 1s ease infinite alternate;
}

.single_popular_item {
    margin-top: 25px;
    background: var(--colorWhite);
    border: 1px solid #eee;
}

.single_popular_item_img {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.single_popular_item_img img {
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.single_popular_item_img a {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--colorBlack);
    color: var(--colorWhite);
    text-transform: capitalize;
    padding: 3px 10px;
    font-size: 14px;
}

.single_popular_item_img span {
    display: block;
    position: absolute;
    top: -10px;
    right: -44px;
    background: var(--colorOrange);
    color: var(--colorWhite);
    text-transform: capitalize;
    padding: 15px 40px 1px 40px;
    font-size: 13px;
    transform: rotate(45deg);
}

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

.single_popular_item_text .open,
.single_popular_item_text .closed {
    background: #1e915c;
    color: var(--colorWhite);
    font-size: 13px;
    text-transform: capitalize;
    padding: 0px 10px;
    position: absolute;
    top: -14px;
    right: 20px;
}

.single_popular_item_text .closed {
    background: var(--colorSecondary);
}

.single_popular_item_text .rating {
    color: var(--colorOrange);
    font-size: 14px;
    margin-bottom: 7px;
}

.single_popular_item_text .rating span {
    color: var(--colorBlack);
    font-size: 14px;
    border: 1px solid #eee;
    padding: 1px 5px;
    margin-left: 5px;
}

.single_popular_item_text .short_description {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* about 3 start */
.wsus__about_3 {
    padding-top: 100px;
    position: relative;
}

.wsus__about_3::after {
    position: absolute;
    content: "";
    background: url(../images/restaurant_shapes_6.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 230px;
    height: 230px;
    top: 40px;
    left: 0;
}

.wsus__about_3_img .img_1,
.wsus__about_3_img .img_2 {
    height: 500px;
}

.wsus__about_3_text {
    position: relative;
}

.wsus__about_3_text p {
    margin-top: 10px;
    color: var(--paraColor);
}

.wsus__about_3_text ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    margin-bottom: 30px;
}

.wsus__about_3_text ul li {
    color: var(--paraColor);
    font-size: 15px;
    font-weight: 400;
    line-height: 38px;
    padding-left: 30px;
    position: relative;
    width: 50%;
}

.wsus__about_3_text ul li::after {
    position: absolute;
    content: "\f00c";
    font-family: "font awesome 5 free";
    font-weight: 600;
    font-size: 10px;
    color: var(--colorWhite);
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background: var(--colorOrange);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    top: 8px;
    left: 0;
}

.wsus__about_3_text .heading_left h2,
.wsus__about_3_text .heading_left p {
    text-align: left;
}

/* about 3 end */


/* counter 3 start */
.wsus__counter_3 {
    margin-top: 100px;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.wsus__counter_area_3 {
    display: flex;
    flex-wrap: wrap;
}

.wsus__counter_area_3 li {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgb(255 255 255 / 17%);
    background: rgba(4, 6, 24, 0.00);
    padding: 50px;
}

.wsus__counter_area_3 li:last-child {
    border: none;
}

.wsus__counter_area_3 li .counter_icon {
    width: 90px;
    height: 90px;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    -ms-border-radius: 50% !important;
    -o-border-radius: 50% !important;
}

.wsus__counter_area_3 li h2,
.wsus__counter_area_3 li h2 span {
    color: var(--colorOrange);
    text-align: center;
    font-size: 40px;
    font-weight: 700;
}

.wsus__counter_area_3 li p {
    color: var(--colorWhite);
}

/* counter 3 end */

/* freatured restaurant start */
.wsus__featured_restaurant {
    margin-top: 100px;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-right: 25px;
    position: relative;
}

.wsus__featured_restaurant::after {
    position: absolute;
    content: "";
    background: url(../images/popular_flight_bg.png);
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
}

.wsus__featured_restaurant .wsus__section_heading h2,
.wsus__featured_restaurant .wsus__section_heading p {
    text-align: left;
    width: 100%;
}

.wsus__featured_restaurant .wsus__section_heading p {
    margin-top: 10px;
    margin-bottom: 15px;
}

.wsus__featured_restaurant_banner {
    display: block;
    height: 590px;
    overflow: hidden;
}

.wsus__featured_item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-top: 25px;
    background: var(--colorWhite);
}

.wsus__featured_item_img {
    display: block;
    width: 150px;
    height: 150px;
    position: relative;
    overflow: hidden;
}

.wsus__featured_item_img span {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--colorOrange);
    color: var(--colorWhite);
    text-transform: capitalize;
    padding: 0px 10px;
    font-size: 14px;
}

.wsus__single_blog_img_3 img,
.single_popular_item_img img,
.wsus__featured_item_img img {
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__single_blog_img_3::after,
.wsus__single_blog_img_3::before,
.single_popular_item_img::after,
.single_popular_item_img::before,
.wsus__featured_item_img::after,
.wsus__featured_item_img::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    background: var(--colorWhite)fffa6;
    top: 0;
    right: 0;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    opacity: 0;
    z-index: 2;
}

.wsus__single_blog_img_3::before,
.single_popular_item_img::before,
.wsus__featured_item_img::before {
    left: 0;
}

.wsus__single_blog_3:hover .wsus__single_blog_img_3::after,
.wsus__single_blog_3:hover .wsus__single_blog_img_3::before,
.single_popular_item:hover .single_popular_item_img::after,
.single_popular_item:hover .single_popular_item_img::before,
.wsus__featured_item:hover .wsus__featured_item_img::after,
.wsus__featured_item:hover .wsus__featured_item_img::before {
    width: 0;
    opacity: 1;
}

.wsus__single_blog_3:hover .wsus__single_blog_img_3 img,
.single_popular_item:hover .single_popular_item_img img,
.wsus__featured_item:hover .wsus__featured_item_img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.wsus__featured_item_text {
    width: 63%;
    padding: 20px;
}

.wsus__featured_item_text span {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.wsus__featured_item_text span b {
    background: #f2eeee;
    color: var(--ratingColor);
    padding: 0px 10px;
    font-size: 12px;
}

.wsus__featured_item_text a {
    margin-top: 10px;
    margin-bottom: 3px;
}

.wsus__featured_item_text p {
    font-size: 13px;
    line-height: initial;
}

.wsus__featured_btn_area {
    margin-top: 25px;
    position: relative;
}

.wsus__featured_btn_area::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #c5c5c5f2;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: 1;
}

.wsus__featured_btn_area a {
    position: relative;
    z-index: 3;
}

/* freatured restaurant end */


/* pricing plan 3 start */
.wsus__pricing_3 {
    margin-top: 90px;
}

.wsus__pricing_item_3 {
    border: 1px solid var(--borderColor);
    padding: 35px;
    position: relative;
    margin-top: 25px;
}

.wsus__pricing_item_3 .icon {
    width: 70px;
    position: absolute;
    right: 30px;
    top: 40px;
}

.wsus__pricing_item_3 h6 {
    color: var(--colorOrange);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.wsus__pricing_item_3 h2 {
    color: var(--colorBlack);
    font-size: 34px;
    font-weight: 600;
}

.wsus__pricing_item_3 h2 span {
    color: var(--colorOrange);
    font-size: 16px;
    font-weight: 500;
    margin-left: -10px;
}

.wsus__pricing_item_3 ul {
    border-top: 1px solid var(--borderColor);
    margin-top: 30px;
    padding-top: 25px;
    margin-bottom: 25px;
}

.wsus__pricing_item_3 ul li {
    color: var(--colorBlack);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 46px;
    position: relative;
    padding-left: 30px;
}

.wsus__pricing_item_3 ul li.disable {
    color: var(--paraColor);
}

.wsus__pricing_item_3 ul li::after {
    position: absolute;
    content: "\f00c";
    font-family: "font awesome 5 free";
    font-size: 14px;
    font-weight: 600;
    color: var(--colorBlack);
    top: 0;
    left: 0;
}

.wsus__pricing_item_3 ul li.disable::after {
    content: "\f00d";
    color: var(--paraColor);
}

/* pricing plan 3 end */


/* testimonial 2 start */
.wsus__testimonial_3 {
    margin-top: 90px;
}

.wsus__testimonial_3_item {
    background: #EFF5FC;
    padding: 40px;
    margin: 25px 12px 0px 12px;
    position: relative;
}

.wsus__testimonial_3_item .rating {
    color: var(--ratingColor);
    font-size: 13px;
    margin-bottom: 12px;
}

.wsus__testimonial_3_item .description {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 30px;
}

.wsus__testimonial_3_item_footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.wsus__testimonial_3_item_footer img {
    width: 50px !important;
    height: 50px !important;
    margin-right: 12px;
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    -ms-border-radius: 50% !important;
    -o-border-radius: 50% !important;
}

.wsus__testimonial_3_item_footer h3 {
    font-size: 18px;
    font-weight: 600;
}

.wsus__testimonial_3_item_footer h3 span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 5px;
}

.wsus__testimonial_3 .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.wsus__testimonial_3 .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 12px;
    border: 1px solid #040618;
    font-size: 0;
    background: none;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__testimonial_3 .slick-dots .slick-active button {
    background: var(--colorBlack);
}

.wsus__testimonial_3_item::after {
    position: absolute;
    content: "";
    background: url(../images/quot_icon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 70px;
    height: 50px;
    bottom: 50px;
    right: 50px;
}

/* testimonial 2 end */


/* blog 3 start */
.wsus__blog_3 {
    margin-top: 90px;
}

.wsus__single_blog_3 {
    margin-top: 25px;
    padding: 10px;
    background: var(--colorWhite);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.wsus__single_blog_img_3 {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.wsus__single_blog_img_3 img {
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__single_blog_img_3 .category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--colorOrange);
    color: var(--colorWhite);
    font-size: 13px;
    font-weight: 500;
    padding: 2px 17px 4px 17px;
    text-transform: capitalize;
}

.wsus__single_blog_text_3 {
    padding: 25px 20px 15px 20px;
}

.wsus__single_blog_text_3 ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.wsus__single_blog_text_3 ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: var(--paraColor);
    font-size: 14px;
    font-weight: 500;
}

.wsus__single_blog_text_3 ul li i {
    color: var(--colorOrange);
    margin-right: 5px;
}

.wsus__single_blog_text_3 p {
    margin-top: 13px;
    margin-bottom: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wsus__single_blog_text_3 .blog_read_btn {
    color: var(--colorBlack);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding-right: 30px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__single_blog_text_3 .blog_read_btn::after {
    position: absolute;
    content: "\f061";
    font-family: "font awesome 5 free";
    font-weight: 600;
    font-size: 11px;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    background: rgba(4, 6, 24, 0.06);
    color: var(--colorBlack);
    top: 1px;
    right: 0;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.wsus__single_blog_text_3 .blog_read_btn:hover {
    color: var(--colorOrange);
}

.wsus__single_blog_text_3 .blog_read_btn:hover::after {
    background: var(--colorOrange);
    color: var(--colorWhite);
}

/* blog 3 end */


/* footer 3 start */
.footer_3 {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding: 0;
    margin-top: 100px;
    position: relative;
}

.footer_3_overlay {
    background-color: #030303c9;
    padding-top: 100px;
}



.footer_3 .footer_text p,
.footer_3 .footer_link li a {
    color: var(--colorWhite);
    opacity: .8;
    margin-left: 0;
}



.footer_3_bottom {
    background: none;
    border-top: 1px solid #eee3;
    margin-top: 80px;
}

.footer_3_bottom p,
.footer_3_bottom p a,
.footer_3_bottom .footer_bottom_link li a {
    color: var(--colorWhite);
    opacity: .8;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    font-weight: 300;
}

.footer_3_bottom .footer_bottom_link {
    list-style: none;
}

.footer_3_bottom p a:hover,
.footer_3_bottom .footer_bottom_link li a:hover {
    opacity: 1;
}

/* footer 3 end */

.home_3 .scroll_btn {
    background: var(--colorOrange);
}

.footer_3_logo_area .footer_logo {
    width: 170px;
}

.footer_3_logo_area p {
    color: var(--colorWhite);
    opacity: .8;
    line-height: initial;
    margin-top: 15px;
    margin-bottom: 30px;
    font-weight: 300;
}

.footer_3_logo_area h3 {
    margin: 0;
}

.footer_3_logo_area h3 b {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    opacity: .8;
    display: block;
}

.footer_3_logo_area h3 span {
    display: inline-block;
    color: var(--colorOrange);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--colorOrange);
}

.footer_3_contact .footer_3_icon {
    gap: 5px;
    margin-top: 24px;
}

.footer_3_contact .footer_3_icon li a {
    color: var(--colorWhite);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    background: var(--colorWhite)fff30;
    background: #fe9f10ed;
}

.footer_3_contact .footer_3_icon li a:hover {
    background: var(--colorWhite);
    color: var(--colorOrange);
}

.footer_3_contact h3,
.footer_3_link h3,
.footer_photo h3 {
    font-size: 20px;
    margin-bottom: 30px;
}

.footer_3_contact p,
.footer_3_contact a {
    display: block;
    color: var(--colorWhite);
    opacity: .8;
    position: relative;
    padding-left: 30px;
    margin-top: 20px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    font-weight: 300;
}

.footer_3_contact p i,
.footer_3_contact a i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.footer_3_contact a:hover {
    opacity: 1;
}

.footer_3_link ul li a {
    color: var(--colorWhite);
    opacity: .8;
    display: block;
    margin-top: 20px;
    transition: all linear .3s;
    text-transform: capitalize;
    font-weight: 300;
}

.footer_3_link ul li a:hover {
    opacity: 1;
}

.footer_photo ul {
    gap: 10px;
    padding-top: 7px;
}

.footer_photo ul li {
    width: 90px;
    height: 90px;
    border: 1px solid var(--colorPrimary);
}

.footer_3::after {
    position: absolute;
    content: "";
    background: url(../images/restaurant_shapes_1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 150px;
    height: 150px;
    bottom: 66px;
    right: 50px;
    animation: footer_animi linear 3s infinite alternate;
    -webkit-animation: footer_animi linear 3s infinite alternate;
}

@keyframes footer_animi {
    from {
        transform: translate(0);
        -webkit-transform: translate(0);
        -moz-transform: translate(0);
        -ms-transform: translate(0);
        -o-transform: translate(0);
    }

    to {
        transform: translateX(-40px);
        -webkit-transform: translateX(-40px);
        -moz-transform: translateX(-40px);
        -ms-transform: translateX(-40px);
        -o-transform: translateX(-40px);
    }
}

/*=======================
	HOME 3 END
=======================*/

.home_2 #breadcrumb_part .bread_overlay {
    padding: 170px 0px 90px 0px;
}

.home_3 #breadcrumb_part .bread_overlay {
    padding: 210px 0px 80px 0px;
}

.home_1 #wsus__topbar .nice-select .current {
    color: var(--colorPrimary);
    font-weight: 500;
}

.home_1 #wsus__topbar .nice-select {
    border-left: 1px solid #ebebeb;
    border-right: 0;
}

.home_1 #wsus__topbar .nice-select:after {
    border-color: #2046da transparent transparent transparent;
}

.home_1 #wsus__topbar .nice-select .option.selected.focus,
.home_1 #wsus__topbar .nice-select .option:hover {
    color: var(--colorWhite);
    background: var(--colorPrimary) !important;
}

.home_1 .wsus__topbar_right li:last-child {
    margin-left: 0;
}

.wsus__featured_single .love {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 35px !important;
    height: 35px;
    background: var(--colorWhite);
    text-align: center;
    line-height: 36px;
    border-radius: 5px;
    font-size: 16px;
    color: var(--colorPrimary);
    transition: all linear .3s;
    -webkit-transition: all linear .3s ease;
    -moz-transition: all linear .3s ease;
    -ms-transition: all linear .3s ease;
    -o-transition: all linear .3s ease;
}

.wsus__featured_single .love a {
    color: var(--colorPrimary);
}

.single_blog:hover h4 a {
    color: var(--colorWhite);
}

.list_view .small_text a {
    padding: 0;
    width: 100%;
}

.home_2 .wsus__property_topbar_left ul li a.wsus_active_bar {
    color: var(--colorSecondary) !important;
}

.home_2 .listing_grid_sidbar .read_btn {
    background: var(--colorSecondary) !important;
}

.home_2 .listing_grid_sidbar .read_btn:hover {
    background: var(--colorBlack) !important;
}

.home_2 .listing_grid_sidbar .form-check input {
    border: 1px solid var(--colorSecondary);
}

.home_2 .form-check-input:checked {
    background-color: var(--colorSecondary);
}

.list_view .featured_listing_item_img {
    width: 350px;
    height: 330px;
}

.list_view {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
}

.list_view .featured_listing_item_text {
    width: 61%;
}

.list_view .featured_listing_item_text .author {
    top: 15px;
}

.home_2 #pagination .page-item .page-link:hover,
.home_2 #pagination .page-item.active .page-link {
    background: var(--colorSecondary);
    border-color: var(--colorSecondary);
}

.featured_listing_item_img .love a,
.featured_listing_item_img .map {
    left: auto;
    right: 10px;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 31px;
    text-align: center;
    background: #ffffff;
    border-radius: 50%;
    font-size: 13px;
    color: var(--colorBlack);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.featured_listing_item_img .love a {
    position: absolute;
    top: 45px;
    text-align: center;
}

.list_view .future_verify {
    width: auto;
    background: #04A8E8;
    color: var(--colorWhite);
    padding: 5px 20px;
    margin-right: 10px;
    font-size: 12px;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 3px;
}

.list_view .future_verify.red {
    background: #00AF3C;
}

.list_view .featured_listing_item_text ul {
    margin-bottom: 25px;
}

.wsus__404_text {
    text-align: center;
}

.wsus__404_text h1 {
    font-size: 130px;
    font-weight: 700;
    margin: 30px 0px 15px 0px;
    text-align: center;
}

.wsus__404_text h3 {
    font-size: 45px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.wsus__404_text p {
    text-align: center;
}

.wsus__404_text a {
    margin-top: 50px;
}

.home_2 .listing_det_side_address a i,
.home_2 .listing_det_side_address p i {
    color: var(--colorSecondary);
    border: 1px solid var(--colorSecondary);
    position: absolute;
    top: -3px;
    left: 0;
}

.home_2 .listing_det_side_address a {
    color: var(--paraColor);
}

.home_2 .listing_det_side_address a,
.home_2 .listing_det_side_address p {
    position: relative;
    padding-left: 40px;
}

.home_2 .listing_det_header_text ul li:last-child a {
    background: var(--colorSecondary);
}

.home_2 .listing_det_header_text ul li:last-child a:hover {
    background: var(--colorBlack);
}

.home_2 .listing_det_header_text .rating b {
    background: var(--colorSecondary);
}

.home_2 .wsus__listing_review h4 span {
    background: var(--colorSecondary);
}

.home_2 .read_btn {
    background: var(--colorSecondary);
}

.home_2 .read_btn:hover {
    background: var(--colorBlack);
}

.home_2 .listing_det_side_add .love a,
.home_2 .wsus__featured_single .map {
    color: var(--colorSecondary);
}

.home_2 .listing_det_side_add .love:hover,
.home_2 .listing_det_side_add .map:hover {
    background: var(--colorSecondary);
    color: var(--colorWhite);
}

.home_2 .listing_det_side_add .love:hover a {
    color: var(--colorWhite);
}

.home_2 .wsus__featured_single_text h6 a:hover {
    color: var(--colorSecondary);
}

.wsus__pricing_page_2 {
    background: none;
    padding: 0;
}

.home_2 #listing_details {
    padding-bottom: 0px;
}

.home_2 #blog_part,
.home_2 #blog_part .blog_part_overlay {
    background: var(--colorWhite);
    padding: 0;
}

.home_2 #blog_part {
    margin-top: 75px;
}

.home_2 .blog_search input {
    border: 1px solid var(--colorSecondary);
}

.home_2 .blog_search button {
    background: var(--colorSecondary);
}

.home_2 .blog_search button:hover {
    background: var(--colorBlack);
}

.home_2 .blog_category ul li a:hover,
.home_2 .blog_category ul li a:hover span {
    color: var(--colorSecondary);
}

.home_2 .sidebar_blog_single:hover .sidebar_blog_text h5 {
    color: var(--colorSecondary);
}

.home_2 .contact_box_icon i,
.home_2 .main_blog_header li a:hover {
    color: var(--colorSecondary);
}

.home_2 .contact_map {
    margin-bottom: 0px;
}

.home_2 #listing_grid {
    padding-bottom: 0px;
}

.home_2 .main_blog_header li a:hover {
    color: var(--colorSecondary) !important;
}

.home_3 .wsus__property_topbar_left ul li a.wsus_active_bar {
    color: var(--colorOrange) !important;
}

.home_3 .listing_grid_sidbar .form-check input {
    border: 1px solid var(--colorOrange);
}

.home_3 .form-check-input:checked {
    background-color: var(--colorOrange);
    border-color: var(--colorOrange);
}

.home_3 .read_btn {
    background: var(--colorOrange);
    border-radius: 0;
}

.home_3 .read_btn:hover {
    background: var(--colorBlack);
}

.home_3 #pagination .page-item .page-link:hover,
.home_3 #pagination .page-item.active .page-link {
    background: var(--colorOrange);
    border-color: var(--colorOrange);
}

.home_3 .list_view .single_popular_item_img {
    width: 300px;
    height: 230px;
}

.home_3 .list_view .single_popular_item_text {
    padding: 30px;
    width: 66%;
}

.home_3 .single_popular_item_img .love {
    top: 48px;
    left: 10px;
    background: none;
    transform: none;
    padding: 0;
}

.home_3 .single_popular_item_img .love a {
    position: initial;
    padding: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background: #ffffffa3;
    color: var(--colorBlack);
}

.home_3 .single_popular_item_img .map {
    padding: 0;
    top: 88px;
    left: 10px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background: #ffffffa3;
    color: var(--colorBlack);
}

.home_3 .single_popular_item_img .love a:hover,
.home_3 .single_popular_item_img .map:hover {
    background: var(--colorOrange);
    color: var(--colorWhite);
}

.home_3 .list_view .single_popular_item_text .open {
    left: auto;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.home_3 .list_view .future_verify {
    border-radius: 0;
}

/* .mt_120 {
    margin-top: 120px !important;
} */

.home_3 .list_view .short_description {
    margin-bottom: 25px;
}

.home_3 .list_view .open,
.home_3 .list_view .closed {
    top: 20px;
}

/* .home_3 .select2-container--default .select2-selection--single,
.home_3 .listing_grid_sidbar,
.home_3 input {
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
} */

.home_3 * {
    border-radius: 0 !important;
}

.listing_det_side_address a {
    color: var(--paraColor);
}


.home_3 .listing_det_side_address a,
.home_3 .listing_det_side_address p {
    position: relative;
    padding-left: 40px;
}

.home_3 .listing_det_side_address a i,
.home_3 .listing_det_side_address p i {
    position: absolute;
    top: -2px;
    left: 0;
}

.home_3 .listing_det_side_address a i,
.home_3 .listing_det_side_address p i,
.home_3 .blog_search input {
    border: 1px solid var(--colorOrange);
}

.home_3 .listing_det_side_address a i,
.home_3 .listing_det_side_address p i,
.home_3 .sidebar_blog_single:hover .sidebar_blog_text h5,
.home_3 .wsus__featured_single .love a,
.home_3 .wsus__featured_single .map,
.home_3 .wsus__featured_single_text h6 a:hover,
.home_3 .contact_box_icon i {
    color: var(--colorOrange);
}

.home_3 .listing_det_header_text .rating b,
.home_3 .listing_det_header_text ul li:last-child a,
.home_3 .wsus__listing_review h4 span,
.home_3 .blog_search button {
    background: var(--colorOrange);
}

.home_3 .wsus__featured_single .map:hover {
    background: var(--colorWhite);
}

.home_3 .blog_search button:hover {
    background: var(--colorBlack);
}

.home_3 .contact_map {
    margin-bottom: 0;
}

.home_3 #listing_grid {
    padding-bottom: 0 !important;
}

.home_3 #blog_part {
    background: var(--colorWhite);
}

.home_3 .blog_part_overlay {
    padding: 65px 0px 0px 0px;
}

.home_3 #blog_details {
    padding-bottom: 0;
}

.home_3 .blog_category ul li a:hover,
.home_3 .blog_category ul li a:hover span {
    color: var(--colorOrange);
}

.home_3 .main_blog_header li a:hover {
    color: var(--colorOrange) !important;
}

.home_2 #blog_details {
    padding-bottom: 0;
}

.grid_view .wsus__featured_single {
    margin-left: 0;
    margin-right: 0;
}

.grid_view .wsus__featured_single .list_images {
    height: 415px;
}


.wsus__payment_area h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.wsus__payment_method {
    display: block;
    margin-top: 20px;
    text-align: center;
    padding: 25px 0px;
    border-radius: 6px;
    border: 1px solid rgb(217, 217, 217);
    box-shadow: rgba(0, 0, 0, 0.07) 0px 0px 20px 0px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.wsus__payment_method:hover {
    border-color: var(--colorBlack);
}

.wsus__payment_method img {
    width: 100px !important;
}

.wsus__topbar_right li.currency {
    margin-left: 0;
}

.wsus__topbar_right li.currency .nice-select {
    border-left: 0 !important;
}

.main_menu .navbar-brand img {
    width: 100%;
}

.dashboard_menu .dropdown-menu li a {
    color: var(--colorBlack) !important;
}

.dashboard_menu .dropdown-menu li a:hover {
    background: var(--colorPrimary);
    color: var(--colorWhite) !important;
}

.footer_3_icon .footer_social,
.footer_text .footer_social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.footer_text .footer_social li {}

.footer_3_icon .footer_social li a,
.footer_text .footer_social li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: var(--colorWhite);
    color: var(--colorBlack);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.footer_text .footer_social li a:hover {
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

.footer_2 .footer_social li a:hover {
    background: var(--colorSecondary) !important;
}

.footer_3_icon .footer_social li a {
    opacity: 1;
    padding: 0;
    margin: 0;
}

.footer_3_icon .footer_social li a i {
    position: initial;
    transform: translate(0);
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
}

.reset_form {
    padding-top: 100px;
}

.reset_form h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.reset_form form {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 35px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.reset_form .form-group {
    margin-bottom: 20px;
}

.reset_form .form-group input {
    width: 100%;
    border: 1px solid var(--borderColor);
    padding: 13px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    color: var(--colorBlack);
}

.reset_form .form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.reset_form .form-group button {
    color: var(--colorWhite) !important;
}

.reset_form .inflanar-signin__bottom p a {
    color: var(--colorSecondary);
    margin-left: 5px;
}

.home_1 .wsus__topbar_right li.currency {
    border-left: 1px solid #ebebeb;
}

.home_3 .wsus__topbar_right li.currency {
    border-left: 1px solid #ffffff36
}

.reset_form .list {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 20px;
}