body {
font-family: 'Open Sans', sans-serif;
color: #444444;
}
html {
  scroll-behavior: smooth;
}

a {
color: #5846f9;
}
a:hover {
color: #8577fb;
text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Open Sans', sans-serif;
}
h2{
font-size: 30px;
font-weight: 600;
font-family: 'Open Sans';
color: #000;
}
p{
font-family: 'Open Sans', sans-serif;
color: #6c757d!important;
font-size: 15px;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
position: fixed;
display: none;
right: 15px;
bottom: 15px;
z-index: 99999;
}
.back-to-top i {
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
width: 40px;
height: 40px;
border-radius: 4px;
background: #005056;
color: #fff;
transition: all 0.2s;
border: 1px solid #fbfbfb;
}
.back-to-top i:hover {
background:#f5b128;
color: #fff;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 9999;
overflow: hidden;
background: #fff;
}
#preloader:before {
content: "";
position: fixed;
top: calc(50% - 30px);
left: calc(50% - 30px);
border: 6px solid rgb(7 156 224 / 99%);
border-top-color: #e7e4fe;
border-radius: 50%;
width: 60px;
height: 60px;
-webkit-animation: animate-preloader 1s linear infinite;
animation: animate-preloader 1s linear infinite;
}
@-webkit-keyframes animate-preloader {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes animate-preloader {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
[data-aos-delay] {
transition-delay: 0 !important;
}
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
transition: all 0.5s;
z-index: 997;
padding: 20px 0;
}
#header.header-scrolled, #header.header-inner-pages {
background-image: linear-gradient( 
180deg
 , #fcab08, #ecb851);
padding: 12px 0;
border-bottom:1px solid #fcac09;
}
#header .logo {
font-size: 32px;
margin: 0;
padding: 0;
line-height: 1;
font-weight: 400;
letter-spacing: 2px;
text-transform: uppercase;
}
#header .logo a {
color: #fff;
}
#header .logo img {
max-height:80px;
}
@media (max-width: 992px) {
#header {
padding: 12px 0;
}
#header .logo {
font-size: 28px;
}
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
margin: 0;
padding: 0;
list-style: none;
}
.nav-menu > ul {
display: flex;
}
.nav-menu > ul > li {
position: relative;
white-space: nowrap;
padding: 10px 0 10px 24px;
}
.nav-menu a {
display: block;
    position: relative;
    color: rgb(0 80 86);
    transition: 0.3s;
    font-size: 15px;
    font-weight: 600;
    padding: 0 3px;
    font-family: "Open Sans", sans-serif;
}
.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
visibility: visible;
width: 100%;
}
.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    color: #022629;
}
.nav-menu .drop-down ul {
display: block;
position: absolute;
left: 22px;
top: calc(100% + 30px);
z-index: 99;
opacity: 0;
visibility: hidden;
padding: 10px 0;
background: #fff;
box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
transition: 0.3s;
}
.nav-menu .drop-down:hover > ul {
opacity: 1;
top: 100%;
visibility: visible;
}
.nav-menu .drop-down li {
min-width: 180px;
position: relative;
}
.nav-menu .drop-down ul a {
padding: 10px 20px;
font-size: 14px;
text-transform: none;
color: #2c4964;
}
.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
color: #5846f9;
}
.nav-menu .drop-down .drop-down ul {
top: 0;
left: calc(100% - 30px);
}
.nav-menu .drop-down .drop-down:hover > ul {
opacity: 1;
top: 0;
left: 100%;
}
.nav-menu .drop-down .drop-down > a {
padding-right: 35px;
}
.nav-menu .drop-down .drop-down > a:after {
content: "\eaa0";
font-family: IcoFont;
position: absolute;
right: 15px;
}
@media (max-width: 1366px) {
.nav-menu .drop-down .drop-down ul {
left: -90%;
}
.nav-menu .drop-down .drop-down:hover > ul {
left: -100%;
}
.nav-menu .drop-down .drop-down > a:after {
content: "\ea9d";
}
}
/* Get Startet Button */
.get-started-btn {
margin-left: 25px;
color: #fff;
border-radius: 5px;
padding: 6px 25px 8px 25px;
white-space: nowrap;
transition: 0.3s;
font-size: 14px;
font-weight: 600;
display: inline-block;
border: 2px solid rgba(255, 255, 255, 0.5);
}
.get-started-btn:hover {
border-color: #fff;
color: #fff;
}
@media (max-width: 992px) {
.get-started-btn {
margin: 0 48px 0 0;
padding: 6px 18px;
}
}
/* Mobile Navigation */
.mobile-nav-toggle {
position: fixed;
right: 15px;
top:30px;
z-index: 9998;
border: 0;
background: none;
font-size: 24px;
transition: all 0.4s;
outline: none !important;
line-height: 1;
cursor: pointer;
text-align: right;
}
.mobile-nav-toggle i {
    color: #0c0c0c;
}
.mobile-nav {
position: fixed;
top: 55px;
right: 15px;
bottom: 15px;
left: 15px;
z-index: 9999;
overflow-y: auto;
background: #fff;
transition: ease-in-out 0.2s;
opacity: 0;
visibility: hidden;
border-radius: 10px;
padding: 10px 0;
}
.mobile-nav * {
margin: 0;
padding: 0;
list-style: none;
}
.mobile-nav a {
display: block;
position: relative;
color: #2c4964;
padding: 10px 20px;
font-weight: 500;
outline: none;
}
.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
color: #5846f9;
text-decoration: none;
}
.mobile-nav .drop-down > a:after {
content: "\ea99";
font-family: IcoFont;
padding-left: 10px;
position: absolute;
right: 15px;
}
.mobile-nav .active.drop-down > a:after {
content: "\eaa1";
}
.mobile-nav .drop-down > a {
padding-right: 35px;
}
.mobile-nav .drop-down ul {
display: none;
overflow: hidden;
}
.mobile-nav .drop-down li {
padding-left: 20px;
}
.mobile-nav-overly {
width: 100%;
height: 100%;
z-index: 9997;
top: 0;
left: 0;
position: fixed;
background: rgba(28, 47, 65, 0.6);
overflow: hidden;
display: none;
transition: ease-in-out 0.2s;
}
.mobile-nav-active {
overflow: hidden;
}
.mobile-nav-active .mobile-nav {
opacity: 1;
visibility: visible;
}
.mobile-nav-active .mobile-nav-toggle i {
color: #fff;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
width: 100%;
height: 100vh;
background:url("/images/hero-bg.jpg") center center no-repeat;
background-size: cover;
}
#hero .container, #hero .container-fluid {
padding-top: 40px;
}
#hero h1 {
margin: 0;
font-size: 52px;
font-weight: 700;
line-height: 64px;
color: #fff;
}
#hero h2 {
color:rgb(0 80 86);
margin: 0 0 0 0;
font-size: 38px;
font-weight: 700;
}
li.btn-get-started-btn .btn-get-started {
font-family: 'Open Sans', sans-serif;
display: inline-block;
padding: 4px 8px;
border-radius: 0px;
transition: 0.5s;
margin-top: -10px;
font-size: 15px;
font-weight:600;
border: 2px solid #005056;
    color: #ffffff;
    background-color: #005056;
}
li.btn-get-started-btn .btn-get-started:hover {
color: #005056;
    border: 2px solid #005056;
    background-color: transparent;
    padding: 4px 8px;
    font-weight: 600;
}
#hero .btn-get-started {
font-family: "Poppins", sans-serif;
font-weight: 500;
font-size: 16px;
letter-spacing: 1px;
display: inline-block;
padding: 10px 28px;
border-radius: 5px;
transition: 0.5s;
margin-top: 30px;
color: #fff;
border: 2px solid #fff;
}
#hero .btn-get-started:hover {
background: #fff;
color: #5846f9;
}
#hero .animated {
animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (min-width: 1200px) {
#hero {
background-attachment: fixed;
}
}
@media (max-width: 991px) {
#hero {
text-align: center;
}
#hero .container, #hero .container-fluid {
padding-top: 68px;
}
#hero .animated {
-webkit-animation: none;
animation: none;
}
#hero .hero-img {
text-align: center;
}
#hero .hero-img img {
width: 50%;
}
}
@media (max-width: 768px) {
#hero h1 {
font-size: 26px;
line-height: 36px;
}
#hero h2 {
font-size: 18px;
line-height: 24px;
}
#hero .hero-img img {
width: 60%;
}
}
@media (max-width: 575px) {
#hero .hero-img img {
width: 80%;
}
}
@-webkit-keyframes up-down {
0% {
transform: translateY(10px);
}
100% {
transform: translateY(-10px);
}
}
@keyframes up-down {
0% {
transform: translateY(10px);
}
100% {
transform: translateY(-10px);
}
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
padding: 100px 0;
overflow: hidden;
}
/*--------------------------------------------------------------
# place-section
--------------------------------------------------------------*/
.place-section {
padding:40px 0;
background-image: url(/images/welcome-bg.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
height: 290px;
position: relative;
}
.place-section::after{
content: '';
background-color: #86858c29;
height: 100vh;
width: 100%;
position: absolute;
top: 0%
}
h2.place-style{
font-size: 30px;
font-weight: 600;
font-family: 'Open Sans';
color: #000;
}
p.place-text-style {
font-family: 'Open Sans';
font-size: 15px;
font-weight: 400;
}
.service-text-style{
font-family: 'Open Sans';
font-size: 17px;
font-weight: 400;
display: flex;
align-items: center;
justify-content: left; 
}
.service-img-style{
background: #f5f4f4b8;
padding: 5px;
border-radius: 50%;
box-shadow: 0px 1px 9px 2px #d2d2d2;
}
img.service-img-style {
width: 80px;
height: 80px;
object-fit: cover;
object-position: center;
overflow: hidden;
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
text-align: center;
padding: 70px 20px 80px 20px;
transition: all ease-in-out 0.3s;
background: #fff;
}
.services .icon-box .icon {
margin: 0 auto;
width: 100px;
height: 100px;
display: flex;
align-items: center;
justify-content: center;
transition: ease-in-out 0.3s;
position: relative;
}
.services .icon-box .icon i {
font-size: 36px;
transition: 0.5s;
position: relative;
}
.services .icon-box .icon svg {
position: absolute;
top: 0;
left: 0;
}
.services .icon-box .icon svg path {
transition: 0.5s;
fill: #f5f5f5;
}
.services .icon-box h4 {
font-weight: 600;
margin: 10px 0 15px 0;
font-size: 22px;
}
.services .icon-box h4 a {
color: #2c4964;
transition: ease-in-out 0.3s;
}
.services .icon-box p {
line-height: 24px;
font-size: 14px;
margin-bottom: 0;
}
.services .icon-box:hover {
border-color: #fff;
box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}
.services .iconbox-blue i {
color: #47aeff;
}
.services .iconbox-blue:hover .icon i {
color: #fff;
}
.services .iconbox-blue:hover .icon path {
fill: #47aeff;
}
.services .iconbox-orange i {
color: #ffa76e;
}
.services .iconbox-orange:hover .icon i {
color: #fff;
}
.services .iconbox-orange:hover .icon path {
fill: #ffa76e;
}
.services .iconbox-pink i {
color: #e80368;
}
.services .iconbox-pink:hover .icon i {
color: #fff;
}
.services .iconbox-pink:hover .icon path {
fill: #e80368;
}
.services .iconbox-yellow i {
color: #ffbb2c;
}
.services .iconbox-yellow:hover .icon i {
color: #fff;
}
.services .iconbox-yellow:hover .icon path {
fill: #ffbb2c;
}
.services .iconbox-red i {
color: #ff5828;
}
.services .iconbox-red:hover .icon i {
color: #fff;
}
.services .iconbox-red:hover .icon path {
fill: #ff5828;
}
.services .iconbox-teal i {
color: #11dbcf;
}
.services .iconbox-teal:hover .icon i {
color: #fff;
}
.services .iconbox-teal:hover .icon path {
fill: #11dbcf;
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials{
background-image: url(/images/testmonails-bg.png);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
padding: 40px 0;
position: relative;
}
.testimonials::before{
content: '';
background: #000000a6;
position: absolute;
top: 0;
height: 100vh;
width: 100%;
}
.testimonials .testimonial-item {
box-sizing: content-box;
min-height: 320px;
}
.testimonials .testimonial-item .testimonial-img {
width: 90px;
border-radius: 50%;
margin: -40px 0 0 40px;
position: relative;
z-index: 2;
border: 6px solid #fff;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.testimonials .testimonial-item h3 {
font-size: 17px;
font-weight: 500;
margin: 10px 0 5px 45px;
font-family: 'Open Sans';
}
.testimonials .testimonial-item h4 {
font-size: 14px;
color: #999;
margin: 0 0 0 45px;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
color: #b1a9fc;
font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
display: inline-block;
left: -5px;
position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
display: inline-block;
right: -5px;
position: relative;
top: 10px;
}
.testimonials .testimonial-item p {
font-family: 'Open Sans', sans-serif;
margin: 0 15px 0 15px;
padding: 20px 20px 60px 20px;
background: #fff;
position: relative;
border-radius: 6px;
position: relative;
z-index: 1;
box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.1);
}
.testimonials .owl-nav, .testimonials .owl-dots {
margin-top: 5px;
text-align: center;
}
.testimonials .owl-dot {
display: inline-block;
margin: 0 5px;
width: 12px;
height: 12px;
border-radius: 50%;
background-color: #ddd !important;
}
.testimonials .owl-dot.active {
background-color:#0c98d6 !important;
}
@media (max-width: 767px) {
.testimonials {
margin: 30px 10px;
}
}
@-webkit-keyframes animate-loading {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes animate-loading {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
padding: 10px 0;
background: #f2f6f9;
margin-top: 117px;
}
.breadcrumbs h2 {
font-size: 30px;
font-weight: 800;
font-family: 'Open Sans';
color: #000;
}
.breadcrumbs ol {
display: flex;
flex-wrap: wrap;
list-style: none;
padding: 0;
font-size: 14px;
margin: 0;
}
.breadcrumbs ol li + li {
padding-left: 10px;
}
.breadcrumbs ol li + li::before {
display: inline-block;
padding-right: 10px;
color: #3c6387;
content: "/";
}
@media (max-width: 768px) {
.breadcrumbs .d-flex {
display: block !important;
}
.breadcrumbs ol {
display: block;
}
.breadcrumbs ol li {
display: inline-block;
}
}
/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
padding: 30px 0 60px 0;
}
.portfolio-details .portfolio-details-container {
position: relative;
}
.portfolio-details .portfolio-details-carousel {
position: relative;
z-index: 1;
}
.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
margin-top: 5px;
text-align: left;
}
.portfolio-details .portfolio-details-carousel .owl-dot {
display: inline-block;
margin: 0 10px 0 0;
width: 12px;
height: 12px;
border-radius: 50%;
background-color: #ddd !important;
}
.portfolio-details .portfolio-details-carousel .owl-dot.active {
background-color: #5846f9 !important;
}
.portfolio-details .portfolio-info {
padding: 30px;
position: absolute;
right: 0;
bottom: -70px;
background: #fff;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
z-index: 2;
}
.portfolio-details .portfolio-info h3 {
font-size: 22px;
font-weight: 700;
margin-bottom: 20px;
padding-bottom: 20px;
border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
list-style: none;
padding: 0;
font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
margin-top: 10px;
}
.portfolio-details .portfolio-description {
padding-top: 50px;
}
.portfolio-details .portfolio-description h2 {
width: 50%;
font-size: 26px;
font-weight: 700;
margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
padding: 0 0 0 0;
}
@media (max-width: 768px) {
.portfolio-details .portfolio-info {
position: static;
margin-top: 30px;
}
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
color: #fff;
font-size: 14px;
background: #0f0f0f;
background-size: cover;
}
#footer .footer-top {
padding:50px 0 10px 0;
position: relative;
}
#footer .footer-top .footer-contact {
margin-bottom: 30px;
}
#footer .footer-top .footer-contact p {
font-size: 14px;
line-height: 24px;
margin-bottom: 0;
font-family: "Poppins", sans-serif;
color: #a9a4a4 !important;
}
#footer .footer-top h4 {
font-size: 16px;
font-weight: bold;
position: relative;
padding-bottom: 12px;
}
#footer .footer-top .footer-links {
margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
list-style: none;
padding: 0;
margin: 0;
}
#footer .footer-top .footer-links ul i {
padding-right: 2px;
color: #fff;
font-size: 18px;
line-height: 1;
}
#footer .footer-top .footer-links ul li {
padding: 10px 0;
display: flex;
align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
padding-top: 0;
}
#footer .footer-top .footer-links ul a {
transition: 0.3s;
display: inline-block;
line-height: 11px;
color: #a9a4a4;
font-family: 'Open Sans';
}
#footer .footer-top .footer-links ul a:hover {
text-decoration: none;
color: #fff;
}
#footer .footer-newsletter {
font-size: 15px;
}
#footer .footer-newsletter h4 {
font-size: 16px;
font-weight: bold;
position: relative;
padding-bottom: 12px;
}
#footer .footer-newsletter form {
margin-top: 30px;
background: #fff;
padding: 6px 10px;
position: relative;
border-radius: 5px;
text-align: left;
border: 1px solid white;
}
#footer .footer-newsletter form input[type="email"] {
border: 0;
padding: 4px 8px;
width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type="submit"] {
position: absolute;
top: -1px;
right: -2px;
bottom: -1px;
border: 0;
background: none;
font-size: 16px;
padding: 0 20px;
background: rgba(123, 39, 216, 0.8);
color: #fff;
transition: 0.3s;
border-radius: 0 5px 5px 0;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type="submit"]:hover {
background: #5846f9;
}
#footer .copyright-wrap {
border-top:1px solid #e2e2e2;
}
#footer .credits {
padding-top: 5px;
font-size: 13px;
color: #fff;
}
#footer .credits a {
color: #fff;
}
#footer .social-links a {
font-size: 18px;
display: inline-block;
background: rgba(255, 255, 255, 0.1);
color:#a9a4a4;
line-height: 1;
padding: 8px 0;
margin-right: 4px;
border-radius: 50%;
text-align: center;
width: 36px;
height: 36px;
transition: 0.3s;
}
#footer .social-links a:hover {
background: rgba(255, 255, 255, 0.2);
color: #fff;
text-decoration: none;
}
.hero-text-color{
color:#181919!important;
}
li a.Sign-in-style{
font-family: 'Open Sans', sans-serif;
    display: inline-block;
    padding: 4px 15px;
    border-radius: 0px;
    transition: 0.5s;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #005056;
    color: #005056;
    background-color: transparent;
    margin-top: -4px;
}
.select-city-style{
font-family: 'Open Sans', sans-serif;
    color: #005056;
    background-color: transparent;
    border: 1px solid #015157;
    padding: 0px 13px 0px 10px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 500;
    width: 150px;
}
.has-search .form-control {
padding-left: 2.375rem;
}
.has-search .form-control-feedback {
position: absolute;
z-index: 2;
display: block;
width: 2.375rem;
height: 2.375rem;
line-height: 2.375rem;
text-align: center;
pointer-events: none;
color: #aaa;
}
.btn-secondary-style {
background-color: #f3f3f3;
border-color: #f3f3f3;
}
.near-me-style{
font-family: 'Open Sans', sans-serif !important;
color: #9c9898 !important;
}
.about-section{
padding: 40px 0;  
}
.about-sub-section{
padding: 40px 0;  
}
.pg-title{
margin-top: 22px;
font-size: 17px;
font-weight: 600;
}
.img-thumbnail img{
width: 100%;
}
.img-thumbnail{
padding: 0px;
box-shadow: 3px 4px 5px -2px #ddd;
}
.male-icon{
width: 35px;
}
.female-icon{
width: 30px; 
}
p.rent-style{
margin-left: 8px;  
margin-bottom: 0px;
}
.border-line{
border-bottom: 1px solid #ddd;
margin: 0 auto;
width: 96%;
margin-top: 4px;
margin-bottom: 8px;
}
.request-call-btn{
background-color: #6cce6cd9 !important;
border: 1px solid #6cce6cd9 !important;
font-size: 12px;
}
a.request-call-btn{
color: green;
}
.bottom-style-img{
display: flex;
justify-content: center;
}
.bottom-style-img img{
width: 70%;
border-radius: 4px;
}
.why-chooseYube-section{
padding: 108px 0px;
background: #005056;
margin-top: -123px;
}
.about-circle-img-style{
background: #fff;
width: 100px;
height: 100px;
overflow: hidden;
border-radius: 50%;
object-fit: none;
margin: 0 auto;
padding: 10px;
}
.make-room-section{
padding:60px 0; 
}
img.make-room-img-style{
width: 100%;
}
.uncommon-section{
padding:40px 0; 
background: #f5f5f5;
}
.service-section{
padding:40px 0; 
}
.Make-room-section{
padding:50px 0; 
}
.get-section{
padding: 0px;
padding-top: 60px;
}
.footer-heading{
font-size: 20px;
color: #fff;
margin: 0 0 30px 0;
padding: 2px 0 2px 0;
line-height: 1;
font-weight: 500;
font-family: 'Open Sans';
}
.address-style{
font-size: 14px;
line-height: 35px;
margin-bottom: 0;
font-family: "Poppins", sans-serif;
color: #a9a4a4 !important;
}
.popular-search-style{
color: #151515 !important;
}
.hover-box{
padding:4px;
height: 320px;
}
.hover-box:hover{
background: #fff;
color: #6c757d!important;
transition-duration:2s;
border-radius: 4px;
}
.hover-box p.text-color-style{
color: #fff !important;
}
.hover-box:hover figcaption.text-heading-style{
color: #6c757d!important;  
}
.hover-box figcaption.text-heading-style{
color: #fff !important;  
}
.hover-box:hover p.text-color-style{
color: #6c757d!important; 
}
.hover-box:hover .about-circle-img-style{
background:#005056;
width: 100px;
height: 100px;
overflow: hidden;
border-radius: 50%;
object-fit: none;
object-position: center;
}
.hover-box:hover .about-circle-img-style img{
-webkit-filter: brightness(0) invert(1);
filter: brightness(0) invert(1);
}
.inner-header-bg{
background-image: linear-gradient( 
180deg
, #fcab08, #ecb851);
}
.inner-page{
padding: 40px 0px;
}
.dorder-right-style{
border-right: 1px solid #ddd;
height: auto;
}
.locality-btn-color-style{
background: #e6e6e6;
}
.marker-color{
color: #a51f12;
font-size: 20px;
border-top-right-radius: 5px;
}
.border-line-right-side{
border-right: 1px solid #b1acac; 
}
.form-check-label {
margin-bottom: 10px;
font-family: 'Open Sans';
color: #6c757d!important;
font-size: 14px;
}
.search-locality-checkbox-style{
height: 150px;
overflow: auto;
}
.well-sm {
padding: 9px;
border-radius: 3px;
}
.wel-bg-color{
background:#fbfbfb !important;
border: none !important;
box-shadow: none !important;
width: 100% !important;
padding: 11px !important;
}
.view-more-btn{
display: flex;
justify-content: center; 
}
/*******************************Slider-section-start****************/
.slider-selection {
background: #0c98d6 !important;
}
.slider-danger .slider-selection {
background-color: #d9534f !important;
}
.slider.slider-horizontal {
width: 100% !important;
height: 20px;
}
.slider-handle {
background-color: #fff !important;
background-image: none !important;
-webkit-box-shadow: 1px 1px 24px -2px rgba(0,0,0,0.75) !important;
-moz-box-shadow: 1px 1px 24px -2px rgba(0,0,0,0.75) !important;
box-shadow: 1px 1px 24px -2px rgba(0,0,0,0.75) !important;
}
.slider-strips .slider-selection {
background-image: repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(255,252,252,0.08) 5px, rgba(252,252,252,0.08) 10px) !important;
background-image: -ms-repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(255,252,252,0.08) 5px, rgba(252,252,252,0.08) 10px) !important;
background-image: -o-repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(255,252,252,0.08) 5px, rgba(252,252,252,0.08) 10px) !important;
background-image: -webkit-repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(255,252,252,0.08) 5px, rgba(252,252,252,0.08) 10px) !important; 
}
.tooltip-inner {
max-width: 200px;
padding: 3px 8px;
color: #bdbdbd !important;
text-align: center;
background-color: transparent !important;
border-radius: 4px;
}
.tooltip.top .tooltip-arrow {
display: none !important;
}
.slider .tooltip.top {
margin-top: -25px !important;
}
.well {
background: transparent !important;
border: none !important;
box-shadow: none !important;
width: 100% !important;
padding: 0;
}
.slider-ghost .slider-track {
height: 5px !important;
}
.slider-ghost .slider-handle {
top: -2px !important;
border: 5px solid #f77500;
}
.slider-success.slider-ghost .slider-handle {
border-color: #5cb85c;
}
.slider-primary.slider-ghost .slider-handle {
border-color: #428bca;
}
.slider-info.slider-ghost .slider-handle {
border-color: #5bc0de;
}
.slider-warning.slider-ghost .slider-handle {
border-color: #f0ad4e;
}
.slider-danger.slider-ghost .slider-handle {
border-color: #d9534f;
}
.tooltip-max, .tooltip-min {
opacity: 1 !important;
}
.tooltip-inner{
font-weight: 600 !important;
color: #1b1a1a !important; 
}
ul.badge-style {
list-style-type: none;
margin: 0;
padding: 0;
}
.badge-style li {
display: inline;
padding: 11px 5px 21px 0px;
line-height: 39px;
}
.badge-style{
width: 100%;
}
.trash-width-style{
width: 14%;  
}
.badge-secondary {
color: #616161;
background-color: #d8dbde;
padding: 10px;
font-family: 'Open Sans';
font-weight: 600;
}
.bedge-close-style{
position: relative;
}
.close-circle{
position: absolute;
top: -17%;
right: 3%;
}
.times-color-style{
color: #ec0856;
background-color: #fff;
padding: 1px;
border-radius: 50%;
}
.trash-color{
color: #ec0856;
}
.border-divider{
border-bottom: 1px solid #ddd;
margin-bottom: 30px;
}
.border-divider-top{
border-bottom: 1px solid #ddd; 
}
.font-size-style{
font-size: 14px;
font-family: 'Open Sans';
}
.search-locality-checkbox-style::-webkit-scrollbar {
width: 5px;
}
.search-locality-checkbox-style::-webkit-scrollbar-thumb {
background:#d8dbde; 
border-radius: 10px;
}
.search-locality-checkbox-style::-webkit-scrollbar-thumb:hover {
background:#d8dbde; 
}
.sort-by-text{
text-align: right;
}
.room-type-section{
height: 140px;
overflow: auto;
}
.room-type-section::-webkit-scrollbar {
width: 5px;
}
.room-type-section::-webkit-scrollbar-thumb {
background:#d8dbde; 
border-radius: 10px;
}
.room-type-section::-webkit-scrollbar-thumb:hover {
background:#d8dbde; 
}
/*******************************Slider-section-end*******************************/
.previous-style a{
color: #636060;
font-size: 15px;
}
ol li a{
color: #069ed8;
}
.previous-style{
text-align: right;
}
.social-icons a{
border: 1px solid #ddd;
padding: 5px 10px;
color: #069ddd;
border-radius: 5px;
}
.radio-inline{
width: 110px;  
}
.view-more{
color: #0c98d6;
}
.room-style-bg-color{
background-color: #f9f9f9;
padding: 10px;
border-radius: 4px;  
}
.btn-font-style{
font-size:14px;
}
.room-type-section figure{
float: left;
width: 33%;
}
.nav-tabs .property .nav-item.show .nav-link, .nav-tabs .nav-link.active {
color: #f8f9fb !important;
background-color: #faad13;
    border-color: #f7af1e;
border-radius: 4px;
}
.nav-tabs .property .nav-link:focus, .nav-tabs .nav-link:hover {
    border-color: #f8ae1a #f7ae1c #faad13;
    background-color: #faad13;
    color: #fff !important;
    border-radius: 4px;
}
a.nav-item.active{
color: #f8f9fb !important;
}
a.nav-item {
    color: #4c4e4e !important;
}
.nav-tabs.property{
border-bottom: none;
font-size: 15px; 
}
/*.list-about-section{
padding: 25px 0;
}*/
.content {
width: 100%;
padding: 20px;
margin: 0 auto;
}
.centerplease {
margin: 0 auto;
max-width: 270px;
font-size: 40px;
}
.question {
position: relative;
background:#f5f5f5;
margin: 0;
padding:20px 9px 23px 45px;
display: block;
width: 100%;
cursor: pointer;
}
.answers {
background: #f1f1f1;
padding: 0px 15px;
margin: 5px 0;
max-height: 0;
overflow: hidden;
z-index: -1;
position: relative;
opacity: 0;
-webkit-transition: 0.7s ease;
-moz-transition: 0.7s ease;
-o-transition: 0.7s ease;
transition: 0.7s ease;
}
.questions:checked ~ .answers {
max-height: 500px;
opacity: 1;
padding: 15px;
}
.plus {
position: absolute;
margin-left: 10px;
z-index: 5;
font-size: 2em;
line-height: 100%;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
-webkit-transition: 0.3s ease;
-moz-transition: 0.3s ease;
-o-transition: 0.3s ease;
transition: 0.3s ease;
margin-top: 15px;
}
.questions:checked ~ .plus {
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
.questions {
display: none;
}
.flex-direction-nav a.flex-next:before{
display: none;
}
.flex-direction-nav a.flex-prev:before{
display: none;
}
.flex-direction-nav a{
color:#fff !important; 
}
.flex-direction-nav a{
width: 75px !important;
}
.month-label{
  font-size: 15px !important;
}

.month-label, .year-label{
    font-size: 15px !important;
    font-weight: 600;
}
.sticky {
     position: fixed;
    top: 75px;
    width: 100%;
    z-index:9;
    background: #ffffff;
    padding: 20px;
}
.sign-in-style {
    font-weight: 600;
    font-family: 'Open Sans';
    font-size: 26px;
}
.sign-in-modal{
 justify-content: center !important;
 background: #f1f1f1;
}

.sign-in-modal a {
    color: #3c3b3b;
    font-weight: 500;
    font-size: 19px;
}

.checkbox-align-style{
  margin-bottom: 0px;
    font-family: 'Open Sans', sans-serif;
    color: #444444 !important;
    font-size: 17px;
    font-weight: 500;
}
.otp-box-width{
 margin-right: 15px;
 text-align: center;
}
.modal-footer{
  text-align: center;
  justify-content: center !important;
}

.border-style-select-time{
	border: 1px solid #ddd;
    padding: 5px 5px 0px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.overall-box{
height: 232px;
overflow: auto;
}

.border-style-select-time.active{
	border: 1px solid #007bff;
    padding: 5px 5px 0px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.border-style-select-time.active .form-check-label{
	color: #007bff !important;
}
.overall-box::-webkit-scrollbar {
width: 5px;
}
.overall-box::-webkit-scrollbar-thumb {
background:#d8dbde; 
border-radius: 10px;
}
.overall-box::-webkit-scrollbar-thumb:hover {
background:#d8dbde; 
}
.calendar-icon-style{
font-size: 60px;	
}
.modal-dialog{
margin-top: 40px;
}

.logo-circle-img{
	width: 36px !important;
    height: 37px;
}

.nearme-style{
	border: 1px solid #eeeeef !important;
}
.logo-circle-img-mystique{
margin-left: -9px;	
}

/*customer-bg*/

.customer-bg{
  background: #f5f5f5;  
}
.profile-section{
    background: #fff;
    width: 100%;
    padding: 20px;
}
.profile-section img{
 width: 100px;
height: 100px;
border-radius: 50%;
overflow: hidden;
object-fit: cover;
object-position: top; 
border: 2px solid #f5b027;  
}
.profile-name h4{
font-size: 18px;
font-weight: 600;
font-family: 'Open Sans';
}
.number-color h4, h5{
 color: #f6b73a;
 font-size: 16px;
font-weight: 600;
}
.profile-img-center{
text-align: center;
}

.nav-tabs .property .nav-item.show .nav-link1, .nav-tabs .nav-link.active {
color: #f8f9fb !important;
background-color: #faad13;
    border-color: #f7af1e;
border-radius: 4px;
}
.nav-tabs .property .nav-link1:focus, .nav-tabs .nav-link:hover {
    border-color: #f8ae1a #f7ae1c #faad13;
    color: #fff !important;
    border-radius: 4px;
    background: #fef2da;

}

a.nav-item.nav-link1.active{
color: #545454 !important;
background: #fef2da;
font-size: 16px;
font-weight: 600;
}
a.nav-item.nav-link1:hover{
 color: #fff !important;
background:#f7af1f !important;   
}
a.nav-item.nav-link1 {
 color: #7d7f7f !important;
    width: 100%;
    line-height:35px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Open Sans';
    padding: 5px 5px 5px 15px;
}
 a.btn-primary.initiate{
    background: #fff;
    border: 1px solid #908d8d;
    width: 100%;
    color:#4e4a4a;
    border-radius: 0px;
}
.btn-primary.initiate:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle{
  background:#005056 !important;
    border: 1px solid #005056 !important;
    width: 100%; 
    color: #fff !important;  
}
a.btn-primary.initiate:hover{
    border: 1px solid #005056 !important;
    background-color: #005056 !important;
    color: #fff !important;
}
a.btn-primary.initiate:active{
    border: 1px solid #005056 !important;
    background-color: #005056 !important;
    color: #fff !important;
}
.table-text{
      font-size: 15px;
    font-weight: 600;
      
}
.property-style{
width:165px;    
}
.price{
    font-size: 15px;
    font-weight: 600;
    color: #fcac09;
}
.paynow-style{
 float: right;
 background-color: #f6af20;
 border-color: #f6af20;
 color: #fff;
 width: 100%;
 font-size: 20px;
 border-radius: 0px;
}
.nav-link.unpaid-btn{
    color: #000 !important;
}
.nav-pills .nav-link.unpaid-btn.active, .nav-pills .show>.nav-link{
background-color: #fff;
color: #088de6 !important;
border:unset;
border-bottom: 2px solid #088de6;
border-radius: 0;
}
.initiate-style-color{
    color: #f6b637 !important;
}
.refer-cursor{
    cursor: pointer;
}
.modal-open .modal{
 z-index: 99999;   
}

.table tr th {
    color: #fff;
    font-weight: normal;
    background-color: #12aad9;
    border-bottom: none !important;
    border-right: 1px solid #fff;
}
.table tr td {
    position: relative;
    vertical-align: middle !important;
    border-left: 1px solid #ddd;
}
.thtables {
    border: 1px solid #e9e9e9;
}
.thcolumn{
    /*text-align:center;*/
}
.sample::-webkit-scrollbar { width: 0 !important }

.cancelnotice {
    float: right;
    background-color: #f14b4b;
    border-color: #f14b4b;
    color: #fff;
    width: 100%;
    font-size: 20px;
    border-radius: 0px;
}
.listprop{
    margin:3px;
}

.list_booknowbtn {
    background-color: #4c53a8 !important;
    border: 1px solid #4c53a8 !important;
    font-size: 12px;
}
.p-02{
    padding:0.2rem;
}
.Profileimgfile-upload {
    display: none;
}
.circle:hover {
  /*background-color: #909090;*/
  /*cursor: pointer*/
}
.UserProfileImg:hover{
    cursor: pointer;
}
.field-validation-error{
    color:red;
}

.KycImg{
    width: 200px;
    height: 200px;
    overflow: hidden;
    object-fit: cover;
    object-position: top;
    border: 0px solid #f5b027;
}
.profile-section-info{
    background: #fff;
    width: 100%;
    padding: 20px;
}
.AddFrntImg-upload,.AddBackImg-upload {
    display: none;
}
.AddFrntImg:hover,.AddBackImg:hover{
    cursor: pointer;
}
.IdFrontImg-upload,.IdBackImg-upload {
    display: none;
}
.IdFrontImg:hover,.IdBackImg:hover{
    cursor: pointer;
}
.owl-carousel .owl-stage{
  display: block;
  width: 100% !important;
  height: auto;
}
.owl-carousel .owl-stage-outer {
    transform: translate3d(0,0,0);
}
.slides li img{
    width:100% !important;
    height:400px !important;
}
.flex-control-nav{
    display: flex !important;
}
.flex-control-thumbs img{
width:100% !important;
height:100px !important;
}
.flex-prev,.flex-next{
    margin-top: -50px !important;
}

