@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800;900&family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;0,6..12,800;0,6..12,900;1,6..12,1000&display=swap");

* {
    margin: 0;
    padding: 0;
}

ul,
ol,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    display: inline-block;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: var(--headingFont);
    color: var(--colorBlack);
}

p,
span {
    font-size: 16px;
    font-weight: 400;
    color: var(--paraColor);
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: var(--paraFont);
    color: var(--paraColor);
}

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

input,
textarea {
    width: 100%;
    padding: 12px 20px;
    outline: none;
    resize: none;
    border: 1px solid #e4e7e9;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
}

input::placeholder,
textarea::placeholder {
    color: #a6a6ac;
}

button {
    border: none;
}

:root {
    --colorPrimary: #0f6936;
    --paraColor: #7c7474;
    --colorBlack: #1c212b;
    --colorWhite: #ffffff;
    --ratingColor: #ffc107;
    --headingFont: "Jost", sans-serif;
    --paraFont: "Nunito Sans", sans-serif;
}

/*====================
   COMMON CSS START
=====================*/
.common_btn {
    font-size: 16px;
    color: var(--colorWhite);
    padding: 15px 30px;
    border: 1px solid var(--colorWhite);
    border-radius: 30px;
    font-weight: 500;
    text-transform: capitalize;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.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(--colorBlack);
    /* background: var(--colorPrimary); */
    /* border-radius: 4px; */
    /* padding: 10px 20px; */
    text-transform: capitalize;
    font-weight: 600;
    /* position: relative; */
    /* overflow: hidden; */
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.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 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
}

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

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

.hire_btn {
    font-size: 16px;
    font-weight: 500;
    color: #f66542;
    border: 1px solid #f66542;
    border-radius: 3px;
    padding: 7px 15px;
    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;
    text-transform: capitalize;
}

.hire_btn:hover {
    color: #f66542;
}

.small_heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--colorPrimary);
    text-transform: capitalize;
}

.medium_heading {
    font-size: 30px;
    font-weight: 700;

    text-transform: capitalize;
    margin: 30px 0px 25px 0px;
}

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

/*====================
   TOPBAR PART START
=====================*/
#wsus__topbar {
    width: 100%;
    height: 40px;
    background: var(--colorPrimary);
    position: relative;
    z-index: 999;
}

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

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

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

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

.wsus__topbar_left li a:hover {
    color: #07123b;
}

.wsus__topbar_right {
    display: flex;
    justify-content: flex-end;
}

.language {
    width: 110px;
    display: flex;
    justify-content: flex-end;
    margin-top: 2px;
}

.language .nice-select {
    border: none;
    border-radius: 0;
    background: none;
    border-bottom: 1px solid var(--colorWhite);
    height: 30px;
    line-height: 30px;
    padding-left: 0;
    padding-right: 0;
}

.language .nice-select .current {
    color: var(--colorWhite);
}

.language .nice-select:after {
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    right: 5px;
}

.wsus__topbar_right a {
    width: 20%;
    height: 35px;
    background: var(--colorWhite);
    color: var(--colorPrimary);
    text-align: center;
    line-height: 35px;
    margin-left: 30px;
    margin-top: 2.5px;
    font-size: 14px;
    border-radius: 4px;
    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;
}

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

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

/*===================
    MENU PART START
=====================*/
.main_menu .navbar-brand {
    padding: 0;
    margin: 0;
}

.main_menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: var(--colorWhite);
    z-index: 99;
    border-bottom: 1px solid #eee !important;
    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;
}

.main_menu li {
    position: relative;
}

.main_menu li a {
    font-size: 18px;
    font-weight: 500;
    color: var(--colorBlack);
    text-transform: capitalize;
    margin: 0px 10px;
    padding: 0;
    line-height: 80px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
}

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

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

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

.dropdown-menu li a {
    color: #000 !important;
    text-transform: uppercase;
}

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

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

.menu_fix {
    position: fixed;
    animation: menu_animate 1s;
    -webkit-animation: menu_animate 1s;
    z-index: 9999;
}

@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: 15px 25px;
    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 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
    z-index: 999;
}

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

.menu_droapdown li:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.menu_droapdown li a {
    width: 100%;
    padding: 0;
    color: var(--colorBlack);
    line-height: initial;
    margin: 0;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
}

.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;
}

.main_menu .user_btn {
    font-size: 16px;
    background: var(--colorPrimary);
    color: var(--colorWhite);
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    padding: 10px 20px;
    text-transform: capitalize;
    border-radius: 5px;
    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;
}

.main_menu .user_btn i {
    margin-right: 5px;
}

.main_menu .user_btn:hover {
    background: var(--colorBlack);
    color: var(--colorWhite);
}

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

/*===================
   BANNER PART START
=====================*/
#wsus__banner {
    width: 100%;
    min-height: 400px; /* SAFE FIX: visible on all screens */
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    position: relative;
    padding: 80px 0; /* Creates nice spacing around text & form */
}

.wsus__banner_overlay {
    /* background: rgba(0, 0, 0, 0.2);  */
    width: 100%;
    height: 100%;
    padding: 80px 0 !important; /* Same spacing for overlay */
    display: flex;
    align-items: center;
}
@media (max-width: 767px) {
    #wsus__banner {
        min-height: 550px; /* More height for mobile search form */
        padding: 60px 0;
    }

    .wsus__banner_overlay {
        padding: 60px 0 !important;
    }
}

.wsus__banner_text {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.wsus__banner_text h1 {
    font-weight: 700;
    font-size: 64px;
    color: var(--colorWhite);
}

.wsus__banner_text p {
    font-size: 18px;
    font-weight: 400;
    margin-top: 20px;
    color: var(--colorWhite);
}

#wsus__banner form {
    padding: 35px;
    height: 100%;
    background: #0000003d;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

#wsus__banner form h3 {
    font-weight: 700;
    color: var(--colorWhite);
    font-size: 26px;
    text-align: center;
    margin-bottom: 30px;
}

#wsus__banner form .select2-container--default .select2-selection--single {
    border: 1px solid var(--colorWhite);
}

.wsus__search_area {
    margin-bottom: 25px;
}

.wsus__search_area input {
    padding: 17px 20px;
    border-radius: 4px;
}

.wsus__search_area .read_btn {
    width: 100%;
    padding: 17px 20px;
    border: none;
    display: flex;
    justify-content: center;
    background: var(--colorPrimary);
    border-radius: 4px;
    color: var(--colorWhite);
}

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

/*========================
  CATEGORY SLIDER START
========================*/
#wsus__category_slider {
    padding: 100px 0px;
}

.wsus__category_single_slider {
    display: block;
    margin: 0px 12px;
    text-align: center;
    border-radius: 10px;
    padding: 30px 20px;
    background: var(--colorWhite);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
    border: 1px solid #eee;
}

.wsus__category_single_slider span {
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid #eee;
    overflow: hidden;
    padding: 20px;
    margin: 0 auto;
    background: var(--colorWhite);
}

.wsus__category_single_slider p {
    text-transform: capitalize;
    font-size: 16px;
    color: var(--colorBlack);
    font-weight: 600;
    margin-top: 20px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
}

.wsus__category_single_slider:hover {
    background: var(--colorPrimary);
    border-color: var(--colorPrimary);
}

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

/* .wsus__category_slider_area .slick-dots {
	display: flex;
	justify-content: center;
}

.wsus__category_slider_area .slick-dots li button {
	font-size: 0;
	width: 10px;
	height: 10px;
	background: var(--colorPrimary);
	margin: 0px 3px;
	border-radius: 50%;
	opacity: .3;
	border: 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__category_slider_area .slick-dots li.slick-active button {
	width: 13px;
	height: 13px;
	opacity: 1;
} */

.nextArrow,
.prevArrow {
    width: 40px;
    height: 40px;
    line-height: 40px !important;
    text-align: center;
    background: var(--colorWhite);
    color: var(--colorBlack);
    border-radius: 50%;
    border: 1px solid #ddd;
    position: absolute;
    top: 50%;
    right: -8px;
    z-index: 9;
    cursor: pointer;
    transition: all linear 0.3s;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.prevArrow {
    right: auto;
    left: -8px;
}

.nextArrow,
.nextArrow:hover,
.prevArrow:hover {
    background: var(--colorPrimary);
    color: var(--colorWhite);
    border-color: var(--colorPrimary);
}

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

/*========================
	FEATURES PART START
========================*/
#wsus__features {
    background: #f9fafc;
    padding: 93px 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 solidvar(--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;
    display: inline-block;
}

.wsus__heading_area h2::after {
    position: absolute;
    content: "";
    background: var(--colorPrimary);
    width: 50px;
    height: 2px;
    bottom: 18px;
    left: -70px;
}

.wsus__heading_area h2::before {
    position: absolute;
    content: "";
    background: var(--colorPrimary);
    width: 50px;
    height: 2px;
    bottom: 18px;
    right: -70px;
}

.wsus__heading_area p {
    font-size: 16px;
    font-weight: 400;
    color: var(--paraColor);
    margin-top: 15px;
}

.wsus__feature_single {
    padding: 35px;
    border-radius: 10px;
    position: relative;
    margin-left: 15px;
    margin-top: 25px;
    background: var(--colorWhite);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
}

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

.wsus__feature_single .icon {
    color: var(--colorPrimary);
    font-size: 30px;
    width: 60px;
    height: 60px;
    border-right: 2px solid var(--colorPrimary);
    border-bottom: 2px solid var(--colorPrimary);
    border-left: 2px solid #ddd;
    border-top: 2px solid #ddd;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
}

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

.wsus__feature_single p {
    color: var(--paraColor);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
}

.wsus__feature_single span {
    text-align: center;
    font-family: var(--headingFont);
    font-size: 58px;
    font-weight: 700;
    line-height: 80px;
    text-transform: uppercase;
    -webkit-text-stroke: 1px rgb(9 9 25 / 28%);
    -webkit-text-fill-color: transparent;
    position: absolute;
    top: 5px;
    right: 20px;
}

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

.wsus__feature_single:hover .icon,
.wsus__feature_single.active .icon {
    color: var(--colorWhite);
    border-color: var(--colorWhite);
}

.wsus__feature_single:hover h5,
.wsus__feature_single:hover p,
.wsus__feature_single.active h5,
.wsus__feature_single.active p {
    color: var(--colorWhite);
}

/*========================
	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: #000000d1;
    padding: 80px 0px 96px 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 #fff;
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.wsus__counter_top_video a {
    width: 50px !important;
    height: 50px;
    border: 3px solid #fff;
    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);
}

.wsus__counter_single span {
    color: var(--colorWhite);
    font-size: 52px;
    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: 500;
    text-align: center;
}

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

/*========================
    OUR CATEGORY START
========================*/
.wsus__categorye_overlay {
    padding: 80px 0px 100px 0px;
}

.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 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
    height: 100%;
    object-fit: cover;
}

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

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

.wsus__category_text_center {
    display: flex;
    flex-wrap: wrap;
    /* flex-direction: column; */
    align-items: center;
    justify-content: space-between;
    color: var(--colorWhite);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
}

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

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

.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: #397eff;
}

.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: #f9fafc;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.wsus__location_overlay {
    padding: 95px 0px 100px 0px;
}

.wsus__location_filter {
    margin-bottom: 30px;
}

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

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

.wsus__single_location {
    position: relative;
    margin-top: 30px;
    padding-left: 10px;
    padding-bottom: 10px;
}

.wsus__single_location .img {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.wsus__single_location img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all linear 0.3s;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.wsus__location_text {
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 10px 25px 10px 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    padding: 20px;
    background: #f66542e6;
    min-width: 120px;
}

.wsus__location_text i {
    color: var(--colorWhite);
    font-size: 20px;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    text-align: center;
    line-height: 32px;
}

.wsus__location_text p {
    color: var(--colorWhite);
    text-transform: capitalize;
    font-weight: 400;
    /* padding-bottom: 10px; */
    font-size: 20px;
    /* border-radius: 5px; */
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.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;
}

.wsus__location_text .green {
    background: #397eff;
}

.wsus__location_text .red {
    background: red;
}

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

.wsus__single_location:hover 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);
}

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

/*===================
FEATURED LISTING START
=====================*/
#wsus__featured_listing {
    padding: 95px 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(149, 157, 165, 0.2) 0px 6px 14px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
    margin: 30px 12px;
}

#listing_grid .wsus__featured_single {
    margin: 0px 0px 25px 0px;
}

#listing_grid #pagination {
    margin-top: 15px;
}

.wsus__featured_single_img {
    position: relative;
    height: 280px;
}

.wsus__featured_single .list_images {
    position: relative;
}

.wsus__featured_single .small_text {
    display: inline-block;
    padding: 5px 15px;
    text-transform: capitalize;
    color: var(--colorWhite);
    font-size: 13px;
    font-weight: 400;
    position: absolute;
    bottom: -14px;
    left: 10px;
    border-radius: 30px;
    background: var(--colorPrimary);
}

.wsus__featured_single .location {
    position: absolute;
    top: 100px;
    left: 10px;
    width: 35px;
    height: 35px;
    background: var(--colorWhite);
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    color: var(--colorPrimary);
    padding: 0;
    line-height: 35px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    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;
}

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

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

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

.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: 35px 20px 20px 20px;
    text-align: center;
    overflow: hidden;
}

.wsus__featured_single_text .list_rating {
    position: relative;
    width: 100%;
    overflow: hidden;
    font-size: 16px;
    color: #f90;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.wsus__featured_single_text .list_rating span {
    font-size: 16px;
    text-transform: capitalize;
    margin-left: 5px;
    color: var(--paraColor);
    width: auto;
    height: auto;
}

.wsus__featured_single_text a {
    display: block;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px;
    color: var(--colorBlack);
    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;
}

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

.wsus__featured_single_text .address {
    font-size: 14px;
    font-weight: 500;
    color: var(--paraColor);
}

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

#wsus__testimonial .slick-dots li button,
#wsus__featured_listing .slick-dots li button {
    font-size: 0;
    width: 20px;
    height: 5px;
    background: var(--colorPrimary);
    border: none;
    border-radius: 10px;
    margin: 0 5px;
    outline: 0;
    opacity: 0.3;
    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;
}

#wsus__testimonial .slick-dots li.slick-active button,
#wsus__featured_listing .slick-dots li.slick-active button {
    opacity: 1;
}

#wsus__map_popup .modal-dialog {
    max-width: 550px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

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

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

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

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

.map_popup_text span {
    display: inline-block;
    background: #04a8e8;
    color: var(--colorWhite);
    padding: 3px 15px;
    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_text .read_btn::after {
    display: none;
}

.map_popup_text .read_btn {
    background: var(--colorPrimary);
    padding: 7px 15px;
    border-radius: 5px;
    color: var(--colorWhite);
    margin-bottom: 5px;
}

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

.map_popup_content {
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.map_popup_content .img {
    height: 300px;
}

.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;
}

.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 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.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 #ddd;
    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_overlay {
    background: rgba(255, 255, 255, 0.3);
    padding: 90px 0px 120px 0px;
}

.member_price {
    padding: 40px;
    text-align: center;
    border-radius: 5px;
    overflow: hidden;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
    position: relative;
    margin-top: 30px;
    background: var(--colorWhite);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.member_price::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 150px;
    background: #f6654214;
    bottom: -25px;
    left: -25px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.member_price h4 {
    font-size: 24px !important;
    font-weight: 700 !important;
    text-transform: capitalize !important;
    margin-bottom: 25px !important;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
    color: var(--colorBlack) !important;
    background: none !important;
    border: none !important;
    display: block !important;
}

.member_price h5 {
    font-size: 30px;
    font-weight: 700;
    color: var(--colorWhite);
    position: relative;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
    margin-top: 30px;
    z-index: 1;
    margin-bottom: 50px;
}

.member_price h5::after {
    position: absolute;
    content: "";
    width: 110%;
    height: auto;
    padding: 30px;
    background: var(--colorPrimary);
    top: -14px;
    left: -50px;
    z-index: -1;
    border-radius: 0px 50px 50px 0px;
    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;
}

.member_price h5 span {
    color: var(--colorWhite);
    text-transform: capitalize;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
    font-weight: 600;
}

.member_price p {
    font-size: 16px;
    font-weight: 400;
    color: var(--paraColor);
    text-transform: capitalize;
    margin-bottom: 15px;
}

.member_price a {
    font-size: 16px;
    font-weight: 500;
    color: var(--colorPrimary);
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    background: var(--colorWhite);
    padding: 10px 20px;
    border: 1px solid var(--colorPrimary);
    border-radius: 5px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
    margin-top: 25px;
}

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

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

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

/*===================
    BLOG PART START
=====================*/
.blog_part_overlay {
    padding: 70px 0px 100px 0px;
}

.single_blog {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: var(--colorWhite);
    border-radius: 5px;
    overflow: hidden;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
    margin-top: 30px;
}

.single_blog .img {
    max-height: 370px;
    overflow: hidden;
}

.single_blog .img img {
    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;
}

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

.single_blog .text {
    padding: 30px;
}

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

.single_blog span i {
    color: var(--colorBlack);
    margin-right: 5px;
    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;
}

.single_blog .title {
    display: block;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
    margin-top: 10px;
    color: var(--colorBlack);
    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;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.single_blog p {
    font-size: 16px;
    font-weight: 400;
    color: #646464;
    margin-bottom: 30px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

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

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

/*===================
    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;
    position: relative;
}

.subs_text p {
    font-size: 16px;
    font-weight: 400;
    color: var(--colorWhite);
    margin-bottom: 35px;
    margin-top: 10px;
}

.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;
}

.subs_form form button {
    padding: 12px 30px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--colorWhite);
    background: var(--colorBlack);
    position: absolute;
    top: 7px;
    right: 7px;
    outline: none;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
    border-radius: 40px;
}

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

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

/*===================
TESTIMONIAL PART START
=====================*/
#wsus__testimonial {
    background: #f9fafc;
}

.wsus__test_overlay {
    padding: 95px 0px 130px 0px;
}

.wsus__single_clients {
    padding: 30px;
    background: var(--colorWhite);
    border-radius: 10px;
    overflow: hidden;
    margin: 30px 15px 0px 15px;
    border: 1px solid #eeeeeeab;
    position: relative;
}

.wsus__single_clients img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50%;
}

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

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

#wsus__testimonial button {
    /* display: none; */
}

.wsus__single_clients .text {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.wsus__single_clients .descrption {
    margin-top: 20px;
    position: relative;
    line-height: 30px;
}

.wsus__single_clients .rating {
    color: var(--ratingColor);
    position: absolute;
    top: 25px;
    right: 25px;
}

.wsus__single_clients .descrption::after {
    position: absolute;
    content: "\f10e";
    font-family: "font awesome 5 free";
    font-weight: 600;
    font-size: 100px;
    bottom: 20px;
    right: 0;
    opacity: 0.1;
}

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

/*===================
  FOOTER PART START
=====================*/
footer {
    padding-top: 95px;
    background: url(../images/footer_bg.jpg);
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

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

.footer_text p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--colorWhite);
    opacity: 0.7;
}

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

.footer_icon li a {
    color: var(--colorWhite);
    font-size: 14px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
    width: 35px;
    height: 35px;
    border: 1px solid #d9d9d9;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    opacity: 0.7;
}

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

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

.footer_link li a {
    font-size: 16px;
    color: var(--colorWhite);
    font-weight: 400;
    text-transform: capitalize;
    margin-left: -12px;
    width: 100%;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
    opacity: 0.8;
}

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

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

.footer_link li a:hover {
    opacity: 1;
}

.footer_bottom {
    width: 100%;
    padding: 20px;
    border-top: 1px solid #ffffff1f;
    color: #000;
    margin-top: 95px;
}

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

.footer_bottom p a {
    color: var(--colorWhite);
    font-weight: 600;
}

.footer_contact ul li {
    border-bottom: 1px solid #ffffff1f;
    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;
    opacity: 0.7;
}

.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: var(--colorWhite);
    text-transform: capitalize;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
    opacity: 0.7;
}

.footer_bottom_link li a:hover {
    opacity: 1;
}

/*===================
  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: rgb(0 0 0 / 43%);
    padding: 90px 0px 75px 0px;
}

#breadcrumb_part h4 {
    font-size: 48px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--colorWhite);
}

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

#breadcrumb_part li {
    font-size: 18px;
    font-weight: 500;
    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(--colorPrimary);
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    background-color: var(--colorWhite);
    border: 1px solid var(--colorPrimary);
    margin-right: 10px !important;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    padding: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

#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: var(--colorPrimary);
}

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

/*===================
  ABOUT PAGE START
=====================*/
#about_page {
    padding: 100px 0px;
}

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

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

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

.about_text ul li {
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
    position: relative;
    padding-left: 25px;
}

.about_text ul li::after {
    position: absolute;
    content: "\f00c";
    font-family: "font awesome 5 free";
    font-size: 12px;
    font-weight: 600;
    top: 4px;
    left: 0;
    color: var(--paraColor);
}

.about_text a {
    padding: 10px 20px;
    background: var(--colorPrimary);
    border-radius: 5px;
    color: var(--colorWhite);
    text-transform: capitalize;
    margin-top: 30px;
    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;
}

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

.about_img {
    position: relative;
    max-height: 630px;
    padding: 10px 20px 20px 10px;
}

.about_img img {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.about_img .img_2 {
    width: 300px;
    height: 200px;
    position: absolute;
    bottom: 0px;
    left: -50px;
    border: 5px solid var(--colorWhite);
    border-radius: 8px;
    background: var(--colorWhite);
}

.about_img::after {
    position: absolute;
    content: "";
    width: 300px;
    height: 300px;
    background: var(--colorPrimary);
    border-radius: 5px;
    top: 0;
    left: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    z-index: -1;
}

.about_img::before {
    position: absolute;
    content: "";
    width: 170px;
    height: 170px;
    background: var(--colorPrimary);
    border-radius: 5px;
    bottom: 0;
    right: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    z-index: -1;
}

.about_img .venobox {
    position: absolute;
    top: 50%;
    left: 50%;
    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: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    background: var(--colorPrimary);
    font-size: 20px;
    border-radius: 50%;
}

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

#about_page_category_slider {
    padding: 50px 0px;
    background: #fff9f7;
}

.about_slider_single {
    border: 1px solid #c8d3ff;
    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;
    margin-top: 35px;
}

.contact_box {
    text-align: center;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.contact_box_icon {
    width: 30%;
    /* float: left; */
    text-align: center;
    padding: 40px;
    border-right: 1px solid #f6654242;
}

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

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

.contact_box_text a,
.contact_box_text p {
    display: block;
    color: var(--colorBlack);
    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;
}

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

.contact_input input,
.contact_input textarea {
    width: 100%;
    border: 1px solid #eee;
    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;
    padding: 10px 25px;
    background: var(--colorPrimary);
    color: var(--colorWhite);
    border-radius: 5px;
}

.contact_input button:hover {
    background: var(--colorBlack);
    color: var(--colorWhite);
}

.contact_map {
    border: 1px solid #ddd;
    overflow: hidden;
    border-radius: 5px;
    margin: 70px 0px 100px 0px;
}

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

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

.listing_grid_sidbar {
    padding: 25px;
    border-radius: 5px;
    border: 1px solid #eee;
}

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

.sidebar_line form {
    position: relative;
}

.sidebar_line input {
    width: 100%;
    border: 1px solid #eee;
    padding: 15px 20px;
    border-radius: 5px;
}

.sidebar_line button {
    position: absolute;
    top: -9px;
    right: 7px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
}

.sidebar_line button:hover {
    color: #000;
}

.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 #ddd;
    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;
    padding: 10px 20px;
    background: var(--colorPrimary);
    border-radius: 4px;
    color: var(--colorWhite);
}

.listing_grid_sidbar button:hover {
    background: var(--colorBlack);
    color: var(--colorWhite);
}

.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: #c8d3ff;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
}

.wsus__property_topbar::before {
    position: absolute;
    content: "";
    background: #c8d3ff;
    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 #c8d3ff;
    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 #c8d3ff;
}

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

.wsus__property_topbar_left ul li a.wsus_active_bar {
    color: #1b6eea !important;
}

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

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

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

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

.list_view .wsus__featured_single_text {
    position: relative;
    width: 50%;
    float: left;
    text-align: left;
    padding: 70px 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: 10px;
    left: 10px;
}

.list_view .close {
    background: red;
}

.list_view .wsus__featured_single_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;
}

.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 {
    font-size: 30px;
}

.list_view .wsus__featured_single_text .list_details {
    font-size: 13px;
    margin-top: 15px;
    margin-bottom: 15px;
}

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

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

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

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

.blog_search {
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 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 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
}

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

.blog_category ul li a {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
    color: var(--colorBlack);
    font-size: 16px;
    font-weight: 400;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.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 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
}

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

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

.blog_category {
    margin-bottom: 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 30px;
    border-radius: 10px;
}

.sidebar_blog_single {
    margin-bottom: 20px;
}

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

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

.sidebar_blog_text h5 {
    font-size: 17px;
    font-weight: 500;
    text-transform: capitalize;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.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 #ddd;
    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 #ddd;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    color: var(--colorBlack);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.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;
    max-height: 500px;
}

.main_blog_header {
    display: flex;
    align-items: center;
    padding-top: 25px;
}

.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 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
    color: var(--paraColor);
}

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

.main_blog_header li a::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 2px;
    top: 10px;
    right: -5px;
    background: var(--paraColor);
}

.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: 70px;
}

.wsus__single_comment {
    overflow: hidden;
    padding: 0;
    padding-bottom: 30px;
    margin: 30px 0px;
    border-bottom: 1px solid #eee;
}

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

#blog_details .input_comment {
    background: #f6654212;
    padding: 30px;
    border-radius: 10px;
}

#blog_details .input_comment h5 {
    margin-bottom: 30px;
}

#blog_details .input_comment button:hover {
    background: var(--colorBlack);
    color: var(--colorWhite);
}

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

.wsus__single_comment_img img {
    width: 70px !important;
    height: 70px;
    border-radius: 50%;
}

.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%;
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 25px;
    resize: none;
    font-size: 16px;
    font-weight: 400;
    color: var(--colorBlack);
    border: none;
}

.blog_single_input button {
    padding: 10px 30px;
    background: var(--colorPrimary);
    border-radius: 4px;
    border: none;
    color: var(--colorWhite);
}

.blog_single_input button:hover {
    background: var(--colorBlack);
    color: var(--colorWhite);
}

.sidebar_blog {
    margin-bottom: 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 30px;
    padding-bottom: 5px;
    border-radius: 10px;
}

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

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

.listing_det_header {
    padding: 0;
    overflow: hidden;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.listing_det_header_img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    float: left;
    margin-right: 40px;
    border: 1px solid #eee;
}

.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: var(--paraColor);
    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: #f6654224;
    padding: 3px 10px;
    margin-right: 10px;
    font-size: 14px;
    font-weight: 400;
    color: var(--colorBlack);
    border-radius: 2px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.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: var(--colorBlack);
    color: var(--colorWhite);
}

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

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

.listing_det_text {
    border-radius: 5px;
    margin-bottom: 30px;
}

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

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

.listing_det_Photo {
    margin-bottom: 15px;
}

.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 #fff;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    opacity: 0;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
}

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

.listing_det_feature {
    margin-bottom: 30px;
}

.listing_det_feature_single {
    border-radius: 5px;
    text-align: center;
    padding: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: #f6654212;
}

.listing_det_feature_single i {
    border-right: 1px solid var(--colorPrimary) 82;
    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);
}

.listing_det_video {
    border-radius: 5px;
    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 #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.wsus__listing_review {
    margin-top: 70px;
}

.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 {
    padding: 25px;
    border-radius: 5px;
    margin-bottom: 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

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

.listing_det_side_address a i {
    margin-right: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
}

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

.listing_det_side_address p i {
    margin-right: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
}

#listing_details .input_comment {
    background: #f6654212;
    padding: 30px;
    border-radius: 10px;
    margin-top: 70px;
}

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

.listing_det_side_address ul li a {
    margin: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: var(--colorWhite);
    color: var(--colorPrimary);
    border: 1px solid var(--colorPrimary);
    margin-right: 10px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
}

.listing_det_side_address ul li a i {
    margin: 0px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.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(149, 157, 165, 0.2) 0px 8px 24px;
}

.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(149, 157, 165, 0.2) 0px 8px 24px;
}

.listing_det_side_contact input,
.listing_det_side_contact textarea {
    border: 1px solid #eee;
    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;
    background: var(--colorPrimary);
    border-radius: 4px;
    padding: 10px 20px;
    color: var(--colorWhite);
}

.listing_det_side_contact button:hover {
    background: var(--colorBlack);
    color: var(--colorWhite);
}

.listing_det_side_list {
    margin-bottom: 30px;
    padding: 25px 25px 0px 25px;
    border-radius: 5px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

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

.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 #eee;
}

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

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

/*===================
   DASHBOARD START
=====================*/
#dashboard {
    padding: 100px 0px;
}

.dashboard_menu {
    background: var(--colorWhite);
    display: flex;
    padding: 0px 20px;
    width: 100%;
    height: 65px;
    border-bottom: 1px solid #ddd;
    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 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.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: 0;
    margin-top: -5px;
}

.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: #f665421c;
    height: 100%;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #0a50b2 #0b172d;
    z-index: 99999;
    border-radius: 10px;
}

.dashboard_sidebar .dash_logo {
    display: block;
    text-align: center;
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
    background: var(--colorWhite);
    margin: 0 auto;
    margin-top: 30px;
    border: 5px solid var(--colorWhite);
}

.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 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
    position: absolute;
    top: 0;
    right: 0;
    display: none;
}

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

.dashboard_link {
    margin-top: 50px;
}

.dashboard_link li a {
    text-align: left;
    width: 100%;
    color: var(--colorBlack);
    border-bottom: 1px solid var(--colorWhite);
    padding: 12px 12px 12px 30px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.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:first-child a {
    border-top: 1px solid var(--colorWhite);
}

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

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

.manage_dashboard_single i {
    position: absolute;
    font-size: 75px;
    color: var(--colorWhite);
    opacity: 0.2;
    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);
    padding: 30px;
    border-radius: 10px;
    margin-top: 45px;
    border: 1px solid #eee;
}

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

.dashboard_table {
    border-top: 0;
    border: 1px solid #eee;
    margin-bottom: 0;
    border-right: 0;
}

.dashboard_table tr {
    display: flex;
}

.dashboard_table tr td {
    border-right: 1px solid #eee;
}

.dashboard_table .active_left {
    width: 50%;
    color: var(--paraColor);
    font-size: 16px;
    font-weight: 400;
    padding: 10px 20px;
}

.dashboard_table .package_right {
    color: var(--paraColor);
    font-size: 16px;
    font-weight: 400;
    padding: 10px 20px;
}

.dashboard_breadcrumb {
    background: var(--colorWhite);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 6px 14px;
    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 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.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);
    padding: 30px;
    border-radius: 5px;
    border: 1px solid #eee;
}

.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 #eee;
    margin-bottom: 20px;
}

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

.active_inactive h6 span.red {
    background: #ff0000;
}

.active_inactive_item {
    border: 1px solid #eee;
    overflow: hidden;
    border-radius: 5px;
    margin-top: 25px;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
}

.active_inactive_img {
    width: 40%;
    float: left;
}

.active_inactive_text {
    width: 60%;
    float: left;
    position: relative;
    padding: 100px 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 12px;
    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 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.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: #ff0000;
}

.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 #eee;
    padding: 15px;
    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 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;
    z-index: 999;
}

.input_area_2 textarea {
    padding: 15px;
}

.my_listing_single .input_area i:hover {
    color: var(--colorPrimary);
}

.my_listing_single .select2-container--default .select2-selection--single {
    border: 1px solid #eee;
}

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

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

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

.input_area_2 input {
    padding: 12px;
    border: 1px solid #eee;
    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 solid #eee;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 5px;
}

.amenities_check_area input {
    padding: 0;
}

.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: 24px;
    opacity: 0.3;
    color: var(--colorPrimary);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.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 #eee;
}

.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 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
}

#removeRow,
#removeRow2 {
    background: #ff0000;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
}

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

#removeRow:hover,
#removeRow2:hover {
    background: var(--colorPrimary);
}

.visitor_rev_single {
    border: 1px solid #eee;
    overflow: hidden;
    border-radius: 5px;
    padding: 20px;
}

.visitor_rev_img {
    width: 25%;
    float: left;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 6px 14px;
}

.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: var(--colorBlack);
    color: var(--colorWhite);
    padding: 5px 20px;
    margin-right: 10px;
    font-size: 12px;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 3px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
}

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

.visitor_rev_text ul li:last-child a {
    background: #ff0000;
}

.profile_pic_upload {
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    height: 245px;
}

.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: #eee;
}

.banner_pic_upload {
    margin-bottom: 20px;
}

.banner_pic_upload input {
    width: 30%;
}

.my_listing .read_btn {
    border: none;
    padding: 10px 20px;
    background: var(--colorPrimary);
    color: var(--colorWhite);
    border-radius: 5px;
}

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

.my_listing .table {
    margin: 0;
    border-left: 1px solid #eee;
}

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

.my_listing .table thead tr th {
    border: none;
    border-right: 1px solid #eee;
    padding: 15px 10px;
}

.my_listing .table tr td {
    border-right: 1px solid #eee;
    padding: 15px 10px;
}

/* .my_listing .table tr th,
.my_listing .table tr td {
	min-height: 130px;
} */

.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: var(--colorPrimary);
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    color: var(--colorWhite);
    border-radius: 5px;
    cursor: pointer;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
}

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

.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;
    min-width: 50px;
}

.schedule .day {
    width: 250px;
    min-width: 100px;
}

.schedule .date {
    width: 300px;
    min-width: 125px;
}

.schedule .s_status {
    width: 250px;
    min-width: 110px;
}

.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(--colorBlack);
    color: var(--colorWhite);
    display: inline-block;
    text-align: center;
    line-height: 35px;
    margin: 0px 5px;
    border-radius: 3px;
    font-size: 14px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.3s ease;
}

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

.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 #ddd;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.wsus__invoice_top .invoice_logo {
    width: 165px;
    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;
    color: var(--colorBlack);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.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 {
    padding: 75px 0px 100px 0px;
}

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

#wsus__custom_page ul li,
#wsus__custom_page ol li {
    list-style: square;
    margin-top: 15px;
}

#wsus__custom_page ul,
#wsus__custom_page ol {
    padding-left: 30px;
    margin-top: 20px;
}

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

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

.wsus__profile_header {
    padding: 40px;
    background: var(--colorWhite);
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    /* border: 1px solid #C8D3FF; */
    margin-bottom: 70px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 6px 14px;
}

.wsus__profile_header img {
    width: 350px !important;
    height: 350px !important;
    border-radius: 50%;
    border: 3px solid var(--colorPrimary);
    margin-right: 30px;
}

.wsus__profile_text {
    max-width: 45%;
}

.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: var(--paraColor);
    margin-bottom: 10px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s ease;
    -moz-transition: all linear 0.3s ease;
    -ms-transition: all linear 0.3s ease;
    -o-transition: all linear 0.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); */
    display: block;
    margin-top: 20px;
    margin-bottom: 25px;
}

.wsus__agent_link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.wsus__agent_link li a {
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    margin: 0px 10px 0px 0px;
    color: var(--colorWhite) !important;
    border-radius: 50%;
    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 #eee;
    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
=====================*/

/* 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 #eee;
    padding: 15px;
    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: 15px;
}

.wsus__rev_textarea {
    position: relative;
}

.wsus__payment {
    background: var(--colorWhite);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 6px 14px;
    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 #c8d3ff;
    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: var(--paraColor);
    font-weight: 400;
    font-size: 16px;
    margin-top: 12px;
}

/* new css end */

/*404 page style*/
#wsws__404_page {
    margin: 55px 0px 100px 0px;
}

.wsus__404_text {
    text-align: center;
}

.wsus__404_text h1 {
    font-size: 160px;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--colorPrimary);
}

.wsus__404_text h3 {
    font-size: 30px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 10px;
}

.wsus__404_text h3 span {
    font-size: 50px;
    font-weight: 600;
    color: var(--colorPrimary);
}

.wsus__404_text a {
    margin-top: 50px;
    background: var(--colorPrimary);
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 16px;
    color: var(--colorWhite);
    text-transform: capitalize;
    font-weight: 600;
    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;
}

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

.form-check-input:checked {
    background-color: var(--colorPrimary);
    border-color: var(--colorPrimary);
}

.wsus__single_payment {
    box-shadow: var(--boxShadow);
    border-radius: 5px;
    overflow: hidden;
    background: #faf6f3fa;
    display: block;
    transition: all linear 0.3s;
    margin-top: 25px;
    height: 100px;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.wsus__single_payment img {
    box-shadow: var(--boxShadow);
    border-radius: 4px;
}

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

.wsus__pay_modal_info p {
    margin-bottom: 20px;
}

.wsus__pay_modal_info ul li {
    font-size: 16px;
    color: var(--paraColor);
    position: relative;
    padding-left: 35px;
    margin: 10px 0px;
}

.wsus__pay_modal_info ul li::after {
    position: absolute;
    content: "\f00c";
    color: var(--colorWhite);
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 10px;
    border-radius: 50%;
    background: var(--colorPrimary);
    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;
}

.wsus__pay_modal_info input,
.wsus__pay_modal_info textarea,
.wsus__pay_modal_info .nice-select {
    border: 1px solid #eee;
    margin-top: 15px;
    font-weight: 400;
}

.wsus__pay_modal_info .nice-select {
    margin-top: 10px;
}

.wsus__pay_modal_info .nice-select .option {
    font-weight: 400;
    margin: 0;
}

.wsus__pay_modal_info .nice-select .option::after {
    display: none;
}

.wsus__payment_btn_area {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    padding-top: 20px;
}

.wsus__payment_btn_area button {
    border-radius: 3px;
    border: none;
    padding: 10px 30px;
    text-transform: capitalize;
}

/* ==================================
    SIGNIN START
=================================== */
.wsus__login_page {
    padding: 100px 0px;
}

.wsus__login_area {
    background: #f6654212;
    padding: 50px;
    overflow: hidden;
    border-radius: 5px;
}

.wsus__login_area h2 {
    font-weight: 700;
    font-size: 42px;
    color: var(--colorBlack);
    text-transform: capitalize;
    margin-bottom: 5px;
}

.wsus__login_area p {
    color: var(--colorBlack);
    text-transform: capitalize;
    margin-bottom: 25px;
}

.wsus__login_area .wsus__login_imput {
    margin-bottom: 20px;
}

.wsus__login_area form label {
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
}

.wsus__login_area form input {
    border: none;
}

.wsus__login_area form button {
    width: 100%;
    border-radius: 5px;
    text-align: center;
    border: none;
    background: var(--colorPrimary);
    color: var(--colorWhite);
    padding: 13px 20px;
    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;
}

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

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

.wsus__login_area .form-check input {
    padding: 0px;
    border-radius: 50%;
    border: 1px solid var(--colorPrimary);
}

.wsus__login_area .form-check input:checked {
    background-color: var(--colorPrimary);
    border-color: var(--colorPrimary);
}

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

.wsus__login_area .form-check label {
    color: var(--paraColor);
    margin: 0px;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
}

.wsus__login_imput a {
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
    color: var(--colorPrimary);
    transition: all 0.3s linear 0s;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
}

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

.wsus__login_area .or {
    position: relative;
    margin: 15px 0px 30px;
}

.wsus__login_area .or span {
    text-transform: uppercase;
    width: 25px;
    height: 25px;
    display: inline-block;
    background: var(--colorPrimary);
    font-size: 13px;
    text-align: center;
    line-height: 27px;
    color: var(--colorWhite);
    border-radius: 3px;
    position: relative;
    z-index: 1;
}

.wsus__login_area .or::after {
    position: absolute;
    content: "";
    background: var(--colorPrimary);
    width: 98%;
    height: 1px;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.wsus__login_area ul li a {
    width: 35px;
    height: 35px;
    background: var(--colorPrimary);
    color: var(--colorWhite);
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-right: 5px;
    font-size: 14px;
    border: 1px solid transparent;
    transition: all 0.3s linear 0s;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
}

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

.wsus__login_area .create_account {
    margin-top: 30px;
    color: var(--paraColor);
    margin-bottom: 0px;
}

.wsus__login_area .create_account a {
    color: var(--colorPrimary);
    text-transform: capitalize;
    font-weight: 500;
    transition: all 0.3s linear 0s;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
}

.wsus__login_area .create_account a:hover {
    color: var(--colorBlack);
}

/* ==================================
    SIGNIN END
=================================== */

.dashboard_message_area {
}

.tf__message_list {
    border: 1px solid #5e5b5b17;
    position: relative;
    height: 770px;
    overflow: hidden;
    overflow-y: auto;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.tf__message_list::-webkit-scrollbar {
    background: #fff;
    width: 5px;
}

.tf__message_list::-webkit-scrollbar-thumb {
    background: #ddd;
}

.tf__massager_searchbox {
    padding: 20px;
    position: relative;
    top: 0;
    left: 0;
}

.tf__massager_searchbox input {
    width: 100%;
    border: 1px solid #5e5b5b17;
    padding: 10px 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.tf__massager_searchbox button {
    position: absolute;
    top: 28px;
    right: 35px;
    font-size: 20px;
    background: none;
    color: var(--colorBlack);
    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;
}

.tf__massager_option .nav-link {
    background: var(--colorWhite);
    border: 1px solid transparent !important;
    border-radius: 0;
    margin-bottom: 1px;
    cursor: pointer;
}

.tf__massager_option .nav-link:hover,
.tf__massager_option .nav-link.active {
    background: #f665421c;
    color: var(--colorBlack);
}

.tf__single_massage {
    padding: 4px 5px;
    flex-wrap: wrap;
    position: relative;
    align-items: center;
}

.tf__single_massage_img {
    width: 55px;
    height: 55px;
    margin-right: 10px;
}

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

.tf__single_massage_text {
    width: 58%;
}

.tf__single_massage_text h4 {
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 4px;
    text-transform: capitalize;
    padding: 0;
    border-bottom: 0;
    display: block;
}

.tf__single_massage_text p {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tf__massage_time {
    position: absolute;
    top: 3px;
    right: 0;
    font-size: 14px;
}

.tf___single_chat {
    border: 1px solid #5e5b5b17;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
}

.tf__single_chat_top .tf__single_chat_top_left {
    width: 76%;
}

.tf__single_chat_top {
    padding: 20px;
    border-bottom: 1px solid #5e5b5b17;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
}

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

.tf__single_chat_top .text {
    width: 88%;
    position: relative;
}

.tf__single_chat_top .text h4 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 7px;
    border: none;
    display: block;
    margin: 0;
    padding: 0;
}

.tf__single_chat_top .text p {
    text-transform: capitalize;
    color: var(--colorSecondary);
    font-size: 14px;
    font-weight: 600;
}

.tf__single_chat_top .text a {
    position: absolute;
    top: 14px;
    right: 0;
    color: var(--colorBlack);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    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;
}

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

.chat_img {
    width: 60px;
    height: 60px;
}

.chat_name h4 {
    font-size: 18px;
}

.chat_name p {
    font-size: 16px;
}

.tf__single_chat_top_right p {
    color: var(--colorBlack);
    cursor: pointer;
    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;
}

.tf__single_chat_top_right p:hover {
    color: var(--colorPrimary);
}

.tf__single_chat_body {
    padding: 20px;
    height: 602px;
    overflow: hidden;
    overflow-y: auto;
}

.tf__single_chat_body::-webkit-scrollbar {
    background: #fff;
    width: 5px;
}

.tf__single_chat_body::-webkit-scrollbar-thumb {
    background: #ddd;
}

.tf__chating {
    display: flex;
    justify-content: start;
    margin-bottom: 30px;
}

.tf__chating_img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.tf__chating_text {
    margin-left: 20px;
    max-width: 76%;
}

.tf__chating_text p {
    background: #f665421c;
    color: var(--colorBlack);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 5px;
}

.tf__chating_text span {
    display: block;
}

.tf_chat_right {
    justify-content: end;
}

.tf_chat_right .tf__chating_text {
    margin-left: 0;
    margin-right: 20px;
}

.tf_chat_right .tf__chating_text p {
    text-align: right;
}

.tf_chat_right .tf__chating_text span {
    text-align: right;
}

.tf__single_chat_bottom {
    border-top: 1px solid #5e5b5b17;
    position: relative;
    background: var(--colorWhite);
}

.tf__single_chat_bottom label {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 13px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    background: #eee;
    color: var(--colorPrimary);
    line-height: 31px;
    text-align: center;
    border-radius: 50%;
    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;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.tf__single_chat_bottom label:hover {
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

.tf__single_chat_bottom input {
    width: 100%;
    border: none;
    padding: 20px 70px 20px 20px;
}

.tf__massage_btn {
    position: absolute;
    top: 50%;
    right: 20px;
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--colorPrimary);
    transform: translateY(-50%);
    color: var(--colorWhite);
    border-radius: 5px;
    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;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

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

/* 1.14 Image Preview */
.image-preview,
#callback-preview {
    width: 250px;
    height: 250px;
    border: 2px dashed #ddd;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    color: #ecf0f1;
}

.image-preview input,
#callback-preview input {
    line-height: 200px;
    font-size: 200px;
    position: absolute;
    opacity: 0;
    z-index: 10;
}

.image-preview label,
#callback-preview label {
    position: absolute;
    z-index: 5;
    opacity: 0.8;
    cursor: pointer;
    background-color: #bdc3c7;
    width: 150px;
    height: 50px;
    font-size: 12px;
    line-height: 50px;
    text-transform: uppercase;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
}

.user-active {
    position: absolute;
    height: 16px;
    width: 16px;
    background: #11e511 !important;
    border-radius: 50%;
    bottom: 0;
    right: 1px;
}

.user-status {
    position: absolute;
    height: 16px;
    width: 16px;
    background: rgb(160, 160, 160);
    border-radius: 50%;
    bottom: 0;
    right: 1px;
}

.tf__single_massage_img {
    position: relative;
}

.new_message {
    border: 5px solid var(--colorPrimary);
}

/*==========================
   FINAL MOBILE FIX (ONLY MOBILE)
===========================*/
@media (max-width: 767px) {
    /* TOPBAR FIX */
    #wsus__topbar {
        height: auto !important;
        padding: 10px 0 !important;
    }

    .wsus__topbar_left {
        line-height: normal !important;
        flex-direction: column;
        gap: 4px;
        padding-left: 10px;
    }

    .wsus__topbar_right {
        justify-content: right !important;
        margin-top: 6px;
    }

    .wsus__topbar_right a {
        width: auto !important;
        height: auto !important;
        line-height: normal !important;
        padding: 6px 14px !important;
        margin: 0 !important;
    }

    /* NAVBAR FIX */
    .main_menu {
        height: auto !important; /* remove 90px fixed height */
        padding: 12px 0 !important;
    }

    .main_menu .navbar-brand img {
        max-height: 45px !important;
        width: auto !important;
    }

    /* REMOVE DESKTOP SPACING */
    .main_menu li a {
        line-height: normal !important; /* remove 80px */
        padding: 12px 0 !important;
        margin: 0 !important;
        text-align: left;
        display: block;
    }

    /* ==============
       MOBILE DROPDOWN
       ============== */
    .menu_droapdown {
        position: relative !important; /* stop floating */
        top: 0 !important;
        left: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none !important; /* keep hidden until parent is opened */
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding-left: 15px !important;
        margin-top: 0 !important;
    }

    /* Show dropdown when parent is active */
    .nav-item:focus-within > .menu_droapdown,
    .nav-item:active > .menu_droapdown {
        display: block !important;
    }

    .menu_droapdown li {
        margin: 6px 0 !important;
        padding: 0 !important;
        border: none !important;
    }

    /* ADD LISTING BUTTON */
    .main_menu .user_btn {
        width: 100% !important;
        margin-top: 15px !important;
        text-align: center !important;
        justify-content: center !important;
    }
}

/* title issue fixed */

/* MOBILE FIXES */
@media (max-width: 576px) {
    .wsus__heading_area h2 {
        font-size: 26px;
    }

    .wsus__heading_area h2::before,
    .wsus__heading_area h2::after {
        width: 30px;
        left: -40px;
        right: -40px;
    }

    .wsus__feature_single {
        margin-left: 0 !important;
        padding: 20px !important;
    }
}
/* end title issue */

/*===========================
    FIX LOGO ALIGNMENT + SIZE
============================*/

/* Remove forced max-width */
.main_menu .navbar-brand {
    max-width: none !important;
    display: flex;
    align-items: center; /* vertical center */
}

/* Desktop Logo */
.main_menu .navbar-brand img {
    height: 70px !important; /* Bigger + balanced */
    width: auto !important;
    object-fit: contain;
    display: block;
}

/* Desktop navbar height auto (fixes alignment) */
.main_menu {
    height: auto !important;
    padding: 12px 0 !important; /* cleaner spacing */
}

/* ——— MOBILE ——— */
@media (max-width: 991px) {
    .main_menu {
        padding: 10px 0 !important;
    }

    .main_menu .navbar-brand img {
        height: 75px !important; /* Larger on mobile */
    }

    /* Prevent shrinking caused by Bootstrap */
    .navbar-brand {
        flex-shrink: 0 !important;
    }

    .navbar-toggler {
        margin-left: auto;
        font-size: 24px !important;
    }
}

/* ——— VERY SMALL PHONES ——— */
@media (max-width: 480px) {
    .main_menu {
        padding: 14px 0 !important;
    }

    .main_menu .navbar-brand img {
        height: auto !important;
        width: 100% !important;
        object-fit: cover !important;
    }
}

.main_menu .navbar-brand img {
    height: 100px !important;
    width: 100px !important;
    object-fit: cover;
    display: block;
}

/* ==========================
   NAVBAR MOBILE FIX
========================== */

/* Logo fix */
.main_menu .navbar-brand img {
    max-height: 70px;
    width: auto;
    object-fit: cover;
}

/* Space between items in mobile */
@media (max-width: 767px) {
    .navbar-nav {
        padding: 2px 0;
        gap: 4px;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #eee;
        padding-bottom: 8px;
    }

    .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        font-size: 16px;
        padding: 10px 0;
    }

    /* Dropdown */
    .menu_droapdown {
        display: none;
        padding-left: 15px;
        padding-bottom: 10px;
    }

    .nav-item.open > .menu_droapdown {
        display: block;
    }

    /* Close button styling */
    .mobile-close-btn {
        margin-top: 15px;
        margin-bottom: 10px;
        background: #f2f2f2;
        padding: 10px 15px;
        border-radius: 8px;
        font-size: 16px;
        width: 100%;
        text-align: center;
    }

    /* Add Listing button fix */
    .user_btn {
        margin-top: 15px;
        display: block;
        text-align: center;
        padding: 12px;
        width: 100%;
    }
}

/**
 *
 * You can write your CSS code here, DO NOT touch the default JavaScript file
 * because it will make it harder for you to update.
 *
 */

/*# sourceMappingURL=custom.css.map */
/* FIX Modal Height & Keep Close Button Visible */
.modal-dialog {
    max-width: 950px; /* adjust as needed */
}

.modal-content {
    max-height: 90vh; /* full screen minus some spacing */
    overflow: hidden;
    border-radius: 12px;
}

.modal-header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
    border-bottom: 1px solid #e5e5e5;
}

.modal-body {
    overflow-y: auto;
    max-height: calc(90vh - 60px); /* subtract header height */
    padding-right: 10px;
}

/* Optional: Reduce padding on small screens */
@media (max-width: 576px) {
    .modal-dialog {
        margin: 10px;
    }
    .modal-body {
        max-height: calc(85vh - 60px);
    }
}
