*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
  width: 100%;
  min-height: 100vh;
  /*For animation dark mode*/
  transition: .6s;
}
button {
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
  }
  h1, .h1 {
    font-size: 36px;
    line-height: 1.2; }
  
  h2, .h2 {
    font-size: 30px; }
  
  h3, .h3 {
    font-size: 24px; }
  
  h4, .h4 {
    font-size: 20px; }
  
  h5, .h5 {
    font-size: 18px; }
  
  h6, .h6 {
    font-size: 16px; }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6{

    clear: both;
    font-family: 'Poppins', sans-serif;;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px; }
  ::-webkit-scrollbar {
    width: 10px;
} 
::-webkit-scrollbar-track {
    background:#8c8c8c;
} 
::-webkit-scrollbar-thumb {
    background: #363636;
}  


img {
    max-width: 100%; 
}
.content-area {
    padding: 100px 0 70px;
}
ul{
  margin-top: 1rem;
list-style: none;}

a {
        cursor: pointer;
        color: #262525;
        text-decoration: none;
}
a:hover, a:focus, a:active {
    text-decoration: none;
    outline: none;
}
.main-title-3{
    margin-bottom: 30px;
}

.main-title-3 p {
    color: #f0151f;
}



.main-title-3 h1 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
}
.main-title-3 h1 span{
    color: var(--second-color);
    transition: .6s;
}
/** Main title start **/
.main-title-5 {
    margin-bottom: 50px;
    text-align: center;
}

.main-title-5 h1 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 15px;
}

.main-title-5 p{
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 400;
}
.main-title-5 h1 span {
    color: var(--first-color);
    transition: .6s;
}
@keyframes pulse {
    0%, 100% {
        background-color: var(--first-color);
        
    }
    50% {
        background-color: var(--first-color);
    }
}

/** Title border area start **/
.title-border{
    height: 5px;
    width: 120px;
    background: transparent;
    border-radius: 10px;
    margin: 0 auto;
    transition: .6s;
}
.title-border-inner {
    height: 5px;
    width: 15px;
    animation: pulse 3s ease infinite alternate, nudge 5s linear infinite alternate;
    border-radius: 10px;
    float: left;
    margin: 0 5px;
    
}
@keyframes nudge {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, 0);
    }
    80% {
        transform: translate(20px, 0);
    }
}

/** Main title 7 start **/
.main-title-7{
    text-align: left;
    margin-bottom: 0;
}

.main-title-7 .title-border {
    height: 5px;
    width: 120px;
    background: transparent;
    border-radius: 10px;
    margin: 0 auto 20px 0!important;
}

.main-title-7 h1{
    color: #fff;
}

      

:root {
    --header-height: 3.5rem;
  
    /*========== Colors ==========*/
    --first-color: hsl(31, 100%, 70%);
    --second-color: hsl(31, 100%, 70%);
    --toogle: hsl(0, 0%, 17%);
    --button-color: hsl(0, 0%, 17%);
    --button-color-alt: hsl(0, 0%, 21%);
    --title-color: hsl(0, 0%, 15%);
    --text-color: hsl(0, 0%, 35%);
    --text-color-light: hsl(0, 0%, 55%);
    --body-color: hsl(0, 0%, 99%);
    --container-color: #fff;
    --border-color: hsl(0, 0%, 94%);
    --container-color2:#f7f7f7;

}
    body.dark-theme {
        --first-color: hsl(31, 76%, 74%);
        --second-color: hsl(0, 0%, 99%);
        --toogle: hsl(31, 76%, 74%);
        --button-color: hsl(0, 0%, 24%);
        --button-color-alt: hsl(0, 0%, 28%);
        --title-color: hsl(0, 0%, 95%);
        --text-color: hsl(0, 0%, 75%);
        --body-color: hsl(0, 0%, 12%);
        --container-color: hsl(0, 0%, 16%);
        --border-color: hsl(0, 0%, 20%);
        --container-color2: hsl(0, 1%, 34%);
      }
      
      /*========== Button Dark/Light ==========*/
      .change-theme {
        color: var(--second-color);
        font-size: 1.25rem;
        cursor: pointer;
      }
/* header start */
header{
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 33px 9%;
    background: transparent;
}

header .logo{
    font-size: 20px;
    font-weight: 700;
    color: var(--title-color);
    text-decoration: none;
    text-transform: uppercase;
}

.navlist{
    display: flex;
}

.navlist a{
    color: var(--title-color);
    margin-right: 40px;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition:all .55s ease;
    text-transform: uppercase;
}
.navlist a:hover{
    border-bottom: 2px solid var(--title-color);
    text-decoration: none;
}
.nav__btns {
    display: flex;
    align-items: center;
    column-gap: 1rem;
  }
#menu-icon{
    color: var(--second-color);
    font-size: 35px;
    z-index: 10001;
    cursor: pointer;
    display: none;
}

    /* Change background header */
.scroll-header {
    background-color: var(--body-color);
    box-shadow: 0 1px 4px hsla(0, 4%, 15%, .10);
  }
/* header end */

/* hero start */
.hero{
	position: relative;
	width: 100%;
    min-height: 700px;
    height: 100%;
	padding: 0px 10%;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.hero .hero-text{
	position: relative;
	padding-top: 18px;
	z-index: 1;
    color: var(--title-color);
}

.hero .hero-text .slide-sub-title {
    margin-bottom: 20px;
	letter-spacing: 1px;; 
}

.hero .hero-text .slide-sub-title span {
    color: var(--first-color); 
}

.slide-title {
    font-size: 46px;
    font-weight: 700; }

.hero .hero-text .slide-title {
    line-height: 1;
    margin-bottom: 20px; 
}

.hero .hero-text .slide-title span {
      color: var(--first-color); 
}

.hero .hero-text .btn-wrapper {
    margin-top: 40px; 
}
.hero .hero-text .slide-brief {
    padding-left: 30px;
    border-left: 1px solid #576466;
    max-width: 500px;
	margin: 35px 0px; }

    .hero .hero-text .btn-wrapper {
        position: relative;
        display: block;
        line-height: 0;
        padding-bottom: 40px;
      }
      
      .btn-wrapper a {
        background-color: #7e7e7e;
      }
      
 .btn-wrapper a:after {
        background-color: #7e7e7e;
      }
      .btn-one {
        position: relative;
        display: inline-block;
        overflow: hidden;
        padding-left: 30px;
        padding-right: 30px;
        background-color: transparent;
        color: var(--button-color);
        font-size: 18px;
        line-height: 60px;
        font-weight: 500;
        text-transform: capitalize;
        border-radius: 0px;
        -webkit-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
        z-index: 2;
      }
      
      .btn-one:before {
        position: absolute;
        top: 110px;
        left: -50px;
        right: -50px;
        height: 170px;
        content: "";
        background: var(--first-color);
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        border-radius: 50%;
        transition-duration: 800ms;
        z-index: 1;
      }
      
      .btn-one:hover:before {
        top: 0%;
        left: -70px;
        right: -70px;
      }
      
      .btn-one:after {
        content: "";
        position: absolute;
        top: 0px;
        left: 0px;
        bottom: 0px;
        right: 0px;
        border-radius: 0px;
        background-color: #ffffff;
        opacity: 1;
        transform: scaleX(1.0);
        transition-duration: 800ms;
        z-index: -1;
      }
      
      .btn-one:hover:after {
        transform: scaleX(0);
        transition-duration: 1500ms;
      }
      
      .btn-one .txt {
        position: relative;
        z-index: 1;
      }
      
      .btn-one:hover,
      .btn-one:focus {
        color: #ffffff;
        text-decoration: none;
      }
      

      
      

.hero-text .social-media-icons{
	position: relative;
	top: 100px;
	left: 110px;
}
.hero-text .social-media-icons::before{
	content: '';
	position: absolute;
	width: 100px;
	height: 1px;
	top: 50%;
	transform: translateY(-50%);
	left: -110px;
}
.hero-text .social-media-icons a{
	text-decoration: none;
	margin-right: 20px;
}
.social-media-icons a i{
	font-size: 18px;
	transition: 0.4s;
}
.social-media-icons a i:hover{
	transform: scale(1.2);
}
.hero .hero-image{
	position: absolute;
	width: 1100px;
	height: 450px;
	background-color: black;
	transform: rotate(-50deg);
	right: -400px;
	top: -100px;
	border-top-left-radius: 220px;
	border-bottom-left-radius: 220px;
	overflow: hidden;
	z-index: 0;
}
.hero .hero-image img{
	position: absolute;
	width: 100%;
	height: 190%;
	object-fit: cover;
	top: -50px;
	right: 200px;
	transform: rotate(50deg);
    margin: 0;
    
}
.background-overlay{
  width:100%;
  height:100%;
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
background-color:rgba(0,0,0,0.6);  
}
/* hero end */
/* booking start */
.booking-form{
    background-color: #2C2E3E;
    padding: 5em 0;
      position: relative;
      top: 1.2px;
      
    }
    
    
    
    .booking-form .form-group {
        position: relative;
        margin-bottom: 30px;
    }
    
    .booking-form .form-control {
        background-color: #1c2126;
        height: 50px;
        padding: 7px 20px 0px;
        border: none;
        border-radius: 0px;
        -webkit-box-shadow: none;
        box-shadow: none;
        color: #fff;
    }
    
    .booking-form select.form-control {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    .booking-form select.form-control+.select-arrow {
        position: absolute;
        right: 0px;
        bottom: 0px;
        width: 24px;
        text-align: center;
        pointer-events: none;
        height: 50px;
        line-height: 50px;
        color: #2d343b;
        font-size: 14px;
    }
    
    .booking-form select.form-control+.select-arrow:after {
        content: '\279C';
        display: block;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    
    .booking-form .form-label {
        position: absolute;
        top: 15px;
        left: 20px;
        text-transform: uppercase;
        color: #2d343b;
        font-weight: 700;
        line-height: 24px;
        height: 24px;
        font-size: 16px;
        pointer-events: none;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }
    
    .booking-form .form-group.input-not-empty .form-label {
        top: -10px;
        color: var(--first-color);
        font-size: 14px;
    }
    
    .booking-form .form-group:not( .input-not-empty) .form-control:not( :focus) {
        color: transparent;
    }
    
    .booking-form .form-group .form-control:focus+.form-label {
        top: -10px;
        color: var(--first-color);
        font-size: 14px;
    }
    
    .booking-form .form-checkbox input {
        position: absolute !important;
        margin-left: -9999px !important;
        visibility: hidden !important;
    }
    
    .booking-form .form-checkbox label {
        position: relative;
        padding-top: 4px;
        padding-left: 30px;
        color: #fff;
        font-weight: 700;
    }
    
    .booking-form .form-checkbox label+label {
        margin-left: 15px;
    }
    
    .booking-form .form-checkbox input+span {
        position: absolute;
        left: 2px;
        top: 4px;
        width: 20px;
        height: 20px;
        border: 2px solid #1c2126;
        background: #1c2126;
        border-radius: 50%;
    }
    
    .booking-form .form-checkbox input:checked+span {
        border-color: #f7c411;
    }
    
    .booking-form .form-checkbox input+span:after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0px;
        height: 0px;
        border-radius: 50%;
        background-color: #fff;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }
    
    .booking-form .form-checkbox input:not(:checked)+span:after {
        opacity: 0;
    }
    
    .booking-form .form-checkbox input:checked+span:after {
        opacity: 1;
        width: 10px;
        height: 10px;
    }

    .booking-form form .button-box {
        position: relative;
        display: block;
        padding-top: 6px;
    }
    
  
    .booking-form form .button-box button:after {
        background-color: var(--first-color);
    }
    
    .booking-form form .button-box button:before {
        background-color: var(--button-color);
        color: #1c2126;
    }
    /* booking end */
    /** service start **/
.services-2 {
    background: url(../img/img-2.jpg);
    z-index: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.services-2:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--first-color);
    content: "";
    z-index: -1;
    opacity: 0.3;
}

.single-info-2 {
    padding: 40px 30px 35px 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    z-index: 3;
    background: var(--container-color);
    transition: .6s;
}

.single-info-2:before {
    position: absolute;
    content: '';
    height: 75px;
    width: 75px;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0 0px 70px 0px;
    margin-top: 0px;
    -webkit-transition: .5s all ease;
    -ms-transition: .5s all ease;
    -moz-transition: .5s all ease;
    -o-transition: .5s all ease;
    transition: .5s all ease;
}

.single-info-2:hover:before {
    height: 100%;
    width: 100%;
    border-radius: 0;
}

.single-info-2 .icon {
    margin-bottom: 10px;
}

.single-info-2 .icon-inner {
    position: relative;
}

.single-info-2 .icon i, .single-info-2 .icon-inner i {
    position: relative;
    font-size: 45px;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    transition: all 600ms ease;
    display: inline-block;
}

.single-info-2:hover .icon i, .single-info-2:hover .icon-inner i {
    -webkit-transform: scale(-1) rotate(180deg);
    -moz-transform: scale(-1) rotate(180deg);
    -ms-transform: scale(-1) rotate(180deg);
    -o-transform: scale(-1) rotate(180deg);
    transform: scale(-1) rotate(180deg);
}

.single-info-2 h2{
    font-size: 20px;
    position: relative;
    margin-bottom: 10px;
    color:#ffb566 ;
}
.single-info-2 p {
    margin-bottom: 0;
}

.single-info-2 .number {
    font-size: 170px;
    line-height: 1;
    color: #3a30301c;
    display: inline-block;
    position: absolute;
    z-index: 0;
    right: 20px;
    font-weight: 600;
    bottom: 0;
    font-family: 'Jost', sans-serif;
}
.single-info-2 .icon i{
    color: #ffb566;
}

.single-info-2 a{
    color: var(--title-color);
}
.single-info-2:hover a{
    color: #ffb566;
}
   /** service start **/
/* about start */
.about-us-info-wrap {
position: relative; }
.about-us-info-wrap .btn-wrapper {
margin-top: 40px; }
.about-us-info-wrap hr {
margin-top: 40px;
margin-bottom: 40px; 
}
.about-title-area {
 margin-bottom: 50px; 
}
.about-title-area p {
margin-bottom: 0;
max-width: 500px; 
color: var(--title-color);
font-weight: 100;
}
    
.about-title {
font-size: 44px;
font-weight: 700;
line-height: 1.3; 
color: var(--title-color);
}
.about-title span {
color: var(--second-color) }
    
.mb-20 {
margin-bottom: 20px !important; }  
.about__list-item-half {
margin-top: 0;
padding-left: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row wrap;
flex-flow: row wrap; }
.about__list-item-half li {
width: 50%;
float: left;
list-style: none;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding-right: 20px; 
margin-top: 20px;
}
.about__list-item-half li img {
max-width: 50px;
margin-right: 10px; 
}
.about__list-item-half li i {
font-size: 20px;
color: var(--border-color);
margin-right: 15px;
height: 45px;
width: 45px;
line-height: 45px;
background-color: var(--first-color);
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-flex: 0;
-ms-flex: 0 0 45px;
flex: 0 0 45px;
border-radius: 100%; 
}      
.about__list-item-half-2 li i {
font-size: 14px;
height: 32px;
width: 32px;
line-height: 32px;
-webkit-box-flex: 0;
-ms-flex: 0 0 32px;
flex: 0 0 32px;
}
.about__callout {
padding: 20px;
margin: 25px 0;
border-left: 4px solid;
border-color: var(--first-color); }
.about__callout p {
margin-bottom: 0; }
.about__callout p + p {
margin-top: 20px; }
.bg-overlay-theme-05{
z-index: 9;
position: relative; }

.bg-overlay-theme-05:before {
position: absolute;
content: "";
left: 0;
top: 0;
height: 100%;
width: 100%;
z-index: -1; }

.bg-overlay-theme-05:before {
background: rgba(229, 62, 41, 0.05); }
.mt-30 {
    margin-top: 30px !important; }

.about-img-section{
        position: relative;
    }
    
     .about-img-section .image-box {
        position: relative;
        display: block;
        margin-left: auto;
        padding-bottom: 20px;
        max-width: 550px;
    }
    
    .about-img-section .image-box .image-1 {
        position: relative;
        overflow: hidden;
        width: 100%;
    }
    .about-box-Experience {
        position: absolute;
        right: 100px;
        bottom: 0;
        width: 320px;
    }
    .about-box-Experience .content {
        position: absolute;
        right: 32%;
        top: 23%;
        transform: rotate(-28deg);
        text-align: center;
    }
    .about-box-Experience .content h3 {
        font-size: 45px;
        color: #ffffff;
        font-weight: 700;
        margin-bottom: 5px;
    }
.about-box-Experience .content p {
        font-size: 18px;
        color: #ffffff;
        margin-bottom: 0;
    }
.about-img-section .image-box {
        -webkit-animation:glide 2s ease-in-out alternate infinite;
    }
    
    @-webkit-keyframes glide  {
        from {
            left:0px;
            top:0px;
        }
    
        to {
            left:0px;
            top:20px;
        }
    
    }
/*about end  */
/* Counters 1 start */
.counters-1 {
    padding: 100px 0 70px;
    background: url(../img/img-1.jpg);
    z-index: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.counters-1:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--first-color);
    content: "";
    z-index: -1;
    opacity: 0.4;
}

.counter-box-1 {
    margin-bottom: 30px;
    border-radius: 5px;
    position: relative;
}

.counter-box-1 .icon {
    width: 75px;
    margin-right: 15px;
    height: 75px;
    text-align: center;
    line-height: 75px;
    border: dashed 1px #fff;
    font-size: 35px;
    -webkit-border-radius: 50% / 14%;
    border-radius: 50% / 14%;
    display: inline-block;
    vertical-align: middle;
    transition: 0.9s cubic-bezier(0.24, 0.74, 0.58, 1);
}

.counter-box-1 img {
    font-size: 35px;
    color: #fff;
    line-height: inherit;
}

.counter-box-1:hover .icon {
    transform: rotateY(360deg);
    background: var(--first-color);
}

.counter-box-1 h2 {
    font-weight: 600;
    margin: 0 0 3px;
    font-size: 30px;
    text-align: left;
    color: var(--second-color);
}

.counter-box-1 p {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--second-color);
}
/* Counters 1 end */

/* Product Tab start */
.apartment .tab-menu {
margin-bottom: 50px; 
}
  
.apartment .tab-menu .nav {
 display: inline-block; 
}
  
.apartment .tab-menu a {
display: inline-block;
padding: 15px 40px;
margin-right: 5px;
margin-bottom: 10px;
color: var(--button-color);
background-color: var(--first-color);
font-weight: 700; 
}

.apartment .tab-menu a:hover {
 text-decoration: none;
}
    
.apartment .tab-menu a:last-child {
margin-right: 0; 
}
 
.apartment .tab-menu a i {
margin-right: 10px; 
}
  

.apartment .tab-menu a.active {
color: var(--white);
background-color: var(--second-color);
border-color: var(--first-color); 
}
  

  
.apartment .tab-menu-top-right {
position: absolute;
right: 15px;
top: 0; 
}
  

.apartment .tab-menu-3 {
margin-top: 0; 
}

.apartment .tab-menu-3 a {
background-color: transparent;
border-bottom: 2px solid transparent;
padding: 1px;
margin-right: 50px;
font-weight: 600;
font-size: 20px;
line-height: 1.2;
position: relative; 
}
.apartment .tab-menu-3 a.active {
color: var(--first-color);
background-color: transparent;
border-color: var(--second-color); 
}
.apartment .tab-menu-3 a.active::before {
background-color: var(--second-color);
border: 3px solid var(--white); 
}
.apartment .tab-menu-3 a:last-child {
margin-right: 0; 
}
.apartment .tab-menu-3 a::before {
position: absolute;
content: "";
right: 45%;
top: 100%;
-webkit-transform: translateY(-40%);
-ms-transform: translateY(-40%);
transform: translateY(-40%);
height: 10px;
width: 10px;
background-color: transparent;
opacity: 1;
border: 3px solid transparent;
border-radius: 100%; 
}
.apartments-plan-info {
    padding: 70px; 
background-color: var(--first-color);
color: var(--white);}
 

  .apartments-plan-info,
  .apartments-plan-img {
    margin-bottom: 50px; }
  
  .apartments-info-list > ul {
    padding: 0;
    margin: 0; }
    .apartments-info-list > ul li {
      list-style: none;
      margin-top: 10px;
      display: block;
      font-size: 16px;
      font-weight: 600;
      position: relative; }
    
      .apartments-info-list > ul li::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 1px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        border: 1px dashed;
        border-color: var(--body-color);
        z-index: 1; }
      .apartments-info-list > ul li a {
        display: block; }
        .apartments-info-list > ul li a span {
          float: right; }
      .apartments-info-list > ul li label {
        padding-right: 10px;
        background-color: var(--white);
        position: relative;
        z-index: 2; }
      .apartments-info-list > ul li span {
        float: right;
        padding-left: 10px;
        background-color: var(--white);
        position: relative;
        z-index: 2; }
  
  .apartments-info-list-color > ul li::before {
    border-color: var(--white); }
  
  .apartments-info-list-color > ul li label {
    background-color: var(--first-color); }

  .apartments-info-list-color > ul li span {
    background-color: var(--first-color); }
/* Product Tab end */
  
/* Property box 6 start*/
.property-box-6 {
    padding: 0 0 25px;
    overflow: hidden;
    position: relative;
    background:  var(--container-color);
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.property-box-6:hover{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.property-box-6:before, .property-box-6:after {
    content: "";
    position: absolute;
    z-index: -1;
}

.property-box-6 .property-inner{
    padding: 0 30px;
}

.property-box-6:before {
    text-align: left;
}

.property-box-6 .properties-name {
    font-size: 21px;
}
.property-box-6  .properties-name  a {
    color: var(--title-color);
}

.property-box-6  .location a{
    color: var(--text-color);
}

.property-box-6 .property-photo {
    height: 341px;
    width: 100%;
    margin: 0 auto 30px;
    border-radius: 0;
    overflow: hidden;
}

.property-box-6 .property-photo img {
    width: 100%;
}

.property-box-6:hover .team-hover-content {
    visibility: visible;
    opacity: 1;
}

.property-box-6 .facilities-list li {
    list-style: none;
    margin-right: 20px;
    float: left;
    font-weight: 400;
    line-height: 32px;
    font-size: 15px;
    color: var(--text-color);
}


.property-box-6 .facilities-list li:last-child{
    margin-right: 0;
}

.property-box-6 .team-hover-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: .8s;
    opacity: 0;
    visibility: hidden;
    text-align: left;
}

.property-box-6 .team-hover-content .property-photo {
    width: 100%;
    height: 100%;
    border-radius: 0;
    margin-bottom: 0;
}

.property-box-6 .team-hover-content .property-info{
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
    padding: 25px;
    background: linear-gradient(0,#ffb566,rgb(255 171 74 / 17%));
    margin-bottom: 0;
    padding-bottom: 100px;
}

.property-box-6:hover h4 a{
    color: #fff;
}

.property-box-6 .team-hover-content .properties-name {
    color: #fff;
    font-size: 21px;
    font-weight: 500;
    transform: translateY(50px);
    transition: all .4s cubic-bezier(.76,.21,.32,.85);
    transition-delay: .3s;
    opacity: 0;
}

.property-box-6 .team-hover-content .location {
    transform: translateY(50px);
    transition: all .4s cubic-bezier(.76,.21,.32,.85);
    transition-delay: .2s;
    transform: translateY(50px);
    opacity: 0;
    color: #fff;
    margin-bottom: 0;
    font-size: 15px;
}

.property-box-6:hover .team-hover-content .properties-name {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .1s;
}

.property-box-6:hover .team-hover-content .location {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .2s;
}

.property-box-6:hover .location a{
    color: #fff;
}

.property-box-6:hover .member-socials {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .3s;
}

.property-box-6:hover .member-socials li {
    list-style: none;
    margin-right: 15px;
    float: left;
    font-weight: 400;
    line-height: 32px;
    font-size: 15px;
    color: #fff;
}

.property-box-6:hover .member-socials li:last-child{
    margin-right: 0;
    
}

.property-box-6 .member-socials {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    width: 100%;
    transform: translateY(50px);
    transition: all .4s cubic-bezier(.76,.21,.32,.85);
    transition-delay: .1s;
    opacity: 0;
}

.property-box-6 .member-socials li {
    display: inline-block;
    text-align: center;
    transition: .3s;
    color: #fff;
    margin: 0;
}

mark {
    color: #fff;
    padding: 10px 25px;
    border-radius: 3px;
}
/* Property box 6 end*/

/* testimonial-item-4  start */
.testimonial-slider-4 {
max-width: 45%;
margin-left: auto;
margin-right: auto;
text-align: center; 
}
.testimonial-item-5 .quote-icon {
font-size: 240px;
position: absolute;
top: -15px;
line-height: 1;
color: #F7F7F7;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
z-index: -1; 

}              
.testimonial-item-5 .testimonial-image {
max-width: 85px;
margin-left: auto;
margin-right: auto;
margin-top: 50px; 
}
.testimonial-item-5 .testimonial-image img {
outline: 8px solid #fff;
-webkit-box-shadow: 0 16px 32px 0 rgba(7, 28, 31, 0.1);
box-shadow: 0 16px 32px 0 rgba(7, 28, 31, 0.1);
}
.testimonial-item-5 .testimonial-info {
margin-top: 30px; 
color: var(--text-color);
}
.testimonial-item-5 .testimonial-info p {
font-size: 16px; 
}
.testimonial-item-5 .testimonial-info h4 {
font-size: 20px;
margin-bottom: 5px; 
}
.testimonial-item-5 .testimonial-info h6 {
color: var(--text-color); 
}              
.testimonial-quote-menu {
position: absolute;
top: 0;
width: 100%;
height: 100%;
padding: 0;
margin: 0; 
}
.testimonial-quote-menu li {
list-style: none; 
}
.testimonial-quote-menu li img {
position: absolute; 
}
.testimonial-quote-menu li:nth-child(1) img {
width: 105px;
top: -15%;
left: 0; 
}
.testimonial-quote-menu li:nth-child(2) img {
width: 65px;
top: 0;
left: auto;
right: 3%; 
}
.testimonial-quote-menu li:nth-child(3) img {
width: 65px;
top: 70%;
left: 10%; 
}
.testimonial-quote-menu li:nth-child(4) img {
width: 125px;
top: 60%;
left: auto;
right: 10%; 
}
.testimonial-quote-menu li:nth-child(5) img {
width: 75px;
top: 40%;
left: 3%; 
}
.testimonial-quote-menu li:nth-child(6) img {
width: 75px;
top: 25%;
left: auto;
right: 15%; 
}
.testimonial-quote-menu li:nth-child(7) img {
width: 55px;
top: 20%;
left: 15%; 
}
.testimonial-quote-menu li:nth-child(8) img {
width: 55px;
top: 40%;
left: auto;
right: 3%; 
}
/* testimonial-item-4 end */         
  
/* slick-arrow-1 */
.slick-arrow-1 .slick-arrow {
    background-color: transparent; }
.slick-arrow-1 .slick-arrow {
    background-color: #fff;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 15px;
    right: auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    line-height: 48px;
    display: block;
    border: 1px solid #e6ecf0;
    border-radius: 100%;
    text-align: center;
    font-size: 20px;
    color: #000000 !important;
    z-index: 1;
    opacity: 0;
    visibility: hidden; }
    .slick-arrow-1 .slick-arrow:hover {
      background-color: var(--second-color);
      border-color: var(--second-color);
      color: #fff !important; }
  
  .slick-arrow-1 .slick-next {
    right: 15px;
    left: auto; }
  
  .slick-arrow-1:hover .slick-arrow {
    opacity: 1;
    visibility: visible; }
  
  .slick-arrow-1-inner.slick-arrow-1:hover .slick-arrow {
    left: 50px;
    right: auto; }
  
  .slick-arrow-1-inner.slick-arrow-1:hover .slick-next {
    right: 50px;
    left: auto; }
    .plr--9 {
        /* used */
        padding-left: 9%;
        padding-right: 9%; }
/*  Slick Slider Dots, Arrow */
/* Slick dots */
.slick-dots {
    margin: 0 0 30px;
    padding: 0;
    display: block;
    text-align: center;
    line-height: 1; }
    .slick-dots li {
      display: inline-block;
      list-style: none;
      display: inline-block;
      font-size: 0;
      height: 10px;
      width: 10px;
      border-radius: 100%;
      margin-right: 10px;
      background-color: #C0C0C0;
      cursor: pointer;
      margin-top: 0;
      -webkit-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s; }
      .slick-dots li button {
        display: none; }
      .slick-dots li:hover, .slick-dots li.slick-active {
        background-color: var(--second-color);
        height: 15px;
        width: 15px;
        margin-bottom: -2px; }
  
  /* slick-arrow */
  .slick-arrow {
    cursor: pointer;
    z-index: 9; }


/* Feature Area start */
    
.process-section {
    position: relative;
    padding: 120px 0 80px;
  }


  .process-block {
    position: relative;
    margin-bottom: 40px;
  }
  .process-block:last-child .image-box:before {
    display: none;
  }
  .process-block .inner-box {
    position: relative;
  }
  .process-block .inner-box .info-box{
    background-color: var(--container-color);
    box-shadow: 0 12px 32px hsla(0, 0%, 20%, .1);
  }
  .process-block .inner-box:hover .info-box {
    background-color: var(--first-color);
    -webkit-box-shadow: 0 12px 32px hsla(0, 0%, 20%, .1);
          box-shadow: 0 12px 32px hsla(0, 0%, 20%, .1);
  }
  .process-block .inner-box:hover .info-box:before {
    border-bottom-color: #ffffff;
  }
  .process-block .inner-box:hover .count {
    -webkit-transform: scale(-1) rotate(-180deg);
            transform: scale(-1) rotate(-180deg);
  }
  .process-block .image-box {
    position: relative;
    height: 154px;
    width: 154px;
    border-radius: 50%;
    margin-bottom: 28px;
  }
  .process-block .image-box::before {
    position: absolute;
    left: 100%;
    top: 50%;
    margin-top: -9px;
    width: 175px;
    height: 18px;
    margin-left: 45px;
    background-image: url(../img/icon-arrow-2.png);
    content: "";
  }
  .process-block .image-box .image {
    position: relative;
    height: 154px;
    width: 154px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
  }
  .process-block .image-box .image img {
    width: 100%;
    height: 100%;
  }
  .process-block .image-box .count {
    position: absolute;
    top: 50%;
    right: -30px;
    height: 60px;
    width: 60px;
    margin-top: -30px;
    background:  linear-gradient(to top, #1d2f41, #ffb566);
    font-size: 16px;
    color: var(--title-color);
    border: 6px solid var(--title-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50%;
    z-index: 2;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
  }
  .process-block .info-box {
    position: relative;
    background-color: var(--title-color);
    margin-left: 20px;
    padding: 25px 30px 20px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .process-block .info-box:before {
    position: absolute;
    left: 35px;
    bottom: 100%;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid var(--container-color);
    content: "";
    z-index: 2;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .process-block .info-box .title a{
    z-index: 2;
    margin-bottom: 8px;
    color: var(--title-color);
  }
  .process-block .info-box .text {
    line-height: 26px;
    color: var(--title-color);
  }
/* Feature Area end */

/* Popular places start */
.popular-places {
    margin-bottom: 25px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
    z-index: 2;
}

.popular-places .popular-places-photo {
    position: relative;
    transform: scale(1);
    transition: 1s;
}

.popular-places .popular-places-inner:hover .popular-places-photo {
    transform: scale(1.2);
}

.popular-places .popular-places-overflow {
    overflow: hidden;
    position: relative;
    border-radius: 3px;
}

.popular-places-photo:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.popular-places-photo:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top,rgb(35 35 37 / 66%) 0%,rgb(35 35 37 / 13%) 35%,rgb(255 255 255 / 0%) 60%,rgb(255 255 255 / 0%) 100%);
    bottom: 0;
}

.popular-places .popular-places-inner:hover .popular-places-photo:before {
    width: 100%;
}

.popular-places .popular-places-photo:before {
    position: absolute;
    content: '';
    background: linear-gradient(0,#ffb566,rgba(75, 65, 33, 0.28));
    right: 0;
    width: 0%;
    height: 100%;
    transition: 1s;
}

.popular-places .info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 20;
    color: #fff;
    font-weight: 500;
}

.popular-places .info h3{
    margin-bottom: 2px;
    font-weight: 400;
}

.popular-places .info h3 a{
    color: #fff;
    font-size: 22px;
}

.popular-places .info p{
    color: #efefef;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 0;
}

.popular-places .new {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 20;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    width: 60px;
    line-height: 60px;
    background: #fff;
    border-radius: 100%;
    height: 60px;
    display: block;
    transition: 0.9s cubic-bezier(0.24, 0.74, 0.58, 1);
}

.popular-places:hover .new {
    transform: rotateY(360deg);
}

.popular-places img{
    width: 100%;
    height: 271px;
}

.popular-places .big-img{
   height: 567px;
    width: 100%;
}
/* Popular places end*/  
/** Team 3 start **/
.team {
    padding: 50px 10px 30px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background-color: var(--container-color);
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 12px 32px hsla(0, 0%, 20%, .1);
    border: 1px solid var(--border-color);
    transition: .3s;
}

.team:hover{
    box-shadow: 0 12px 32px hsla(0, 0%, 20%, .1);
}

.team:before, .team-3:after {
    content: "";
    position: absolute;
    z-index: -1;
}

.team:before {
    text-align: left;
}

.team .member-name {
    font-size: 20px;
    color: var(--text-color);
}

.team .member-thumb {
    width: 170px;
    height: 170px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
}

.team .member-thumb img {
    width: 100%;
}

.team:hover .team-hover-content {
    visibility: visible;
    opacity: 1;
}

.team .team-hover-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: .8s;
    opacity: 0;
    visibility: hidden;
}

.team .team-hover-content .member-thumb {
    width: 100%;
    height: 100%;
    border-radius: 0;
    margin-bottom: 0;
}

.team .team-hover-content .member-name-designation{
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    padding: 30px 10px;
    background: linear-gradient(0,#ffb566,rgb(255 171 74 / 17%));
    margin-bottom: 0;
    padding-bottom: 60px;
}

.team:hover h4 a{
    color: #fff;
}

.team .team-hover-content .member-name {
    color: #fff;
    font-size: 20px;
    transform: translateY(50px);
    transition: all .4s cubic-bezier(.76,.21,.32,.85);
    transition-delay: .3s;
    opacity: 0;
}

.team .team-hover-content .member-designation {
    transform: translateY(50px);
    transition: all .4s cubic-bezier(.76,.21,.32,.85);
    transition-delay: .2s;
    transform: translateY(50px);
    opacity: 0;
    color: #fff;
    margin-bottom: 0;
    font-size: 16px;
}

.team:hover .team-hover-content .member-name {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .1s;
}

.team:hover .team-hover-content .member-designation {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .2s;
}

.team:hover .member-socials {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .3s;
}

.team .member-socials {
    position: absolute;
    left: 0;
    bottom: 25px;
    width: 100%;
    transform: translateY(50px);
    transition: all .4s cubic-bezier(.76,.21,.32,.85);
    transition-delay: .1s;
    opacity: 0;
}

.team .member-socials a {
    display: inline-block;
    text-align: center;
    transition: .3s;
    color: #fff;
    margin: 0 7px;
}
/** COUNTER AREA **/
.intro-section{
    position: relative;
}

.intro-section .intro-section-inner {
    padding: 50px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.intro-section h3 {
    font-size: 27px;
    margin: 0;
    line-height: 50px;
    color: #fff;
    z-index: 999;
    font-weight: 300;
}

.intro-section .btn-7 {
    float: right;
}

.intro-section .intro-section-inner .btn-5 {
    border: 2px solid #fff;
    color: #fff;
}
.intro-section .intro-section-inner {
    background: #ffb566;
}
 .btn-theme {
    border: none;
    color: #fff;
    padding: 15px 5px 15px 5px;
    position: absolute;
    font-size: 15px;
    height: 50px;
    top: 0;
    right: 0;
    text-transform: inherit;
    font-weight: 400;
    border-radius: 3px;
    margin-left: 20px;
    width: 28%;
}
.btn-theme {
    background: #ffb566;
    border: solid 1px #ffb566;
}
/** main-footer-3 start **/
.main-footer-3 {
    background: url(../img/footer-bg.jpg);
    z-index: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.main-footer-3 .container{
    z-index: 999!important;
    color: #fff;
}

.main-footer-3 ul li a{
    color: #cecece;
}

.main-footer-3 h4 {
    font-size: 22px;
    margin-bottom: 7px;
    font-weight: 400;
    color: #e8e7e7;
}

.main-footer-3 .footer-item {
    margin-bottom: 60px;
}

.main-footer-3 .footer-inner .links li {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 400;
    padding-left: 20px;
    position: relative;
    line-height: 20px;
}

.main-footer-3 .footer-inner .links li a i {
    left: 0;
    position: absolute;
    top: 0;
    line-height: 22px;
}

.main-footer-3 .footer-inner .links li:last-child{
    margin-bottom: 0;
}

.main-footer-3 .footer-inner .links li a:hover {
    color: #efe9e9;
}

.main-footer-3 a{
    color: #cecece;
}

.main-footer-3 .footer-inner p {
    font-size: 15px;
    color: #cecece;
    z-index: 999;
}

.main-footer-3 .footer-inner p a{
    color: #cecece;
}

.main-footer-3 .footer-inner .contact-info li {
    color: #cecece;
    font-size: 15px;
    line-height: 45px;
    margin-bottom: 10px;
    font-weight: 400;
    position: relative;
    padding-left: 55px;
}

.main-footer-3 .footer-inner .contact-info li i{
    font-size: 16px;
    float: left;
    left: 0;
    position: absolute;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    background: #1b1e83;
    border-radius: 50px;
}

.main-footer-3 .social-media{
    float: right;
}

.main-footer-3 .social-media .icon {
    margin: 0 0 3px 4px;
}

.main-footer-3 .social-media .icon {
    background: #1b1e83;
    color: #fff!important;
}

.main-footer-3 .f-logo{
    margin-bottom: 0px;
    height: 50px;
}

.main-footer-3 .footer-gallery{
    max-width: 255px;
    margin-left: auto;
}

.main-footer-3 .footer-inner{
    padding: 80px 0 20px;
}

.sub-main-footer-3{
    padding: 25px 0 22px;
    border-top: solid 1px #ffffff2e;
    text-align: center;
    margin-bottom: 0;
    color: #fff;
}

.sub-main-footer-3 p{
    margin-bottom: 0;
    color: #cecece;
    text-align: left;
    line-height: 44px;
}

.main-footer-3 .form-inline{
    width: 100%;
    border-radius: 100px;
    background: #fff;
}

.main-footer-3 .subscribe-newsletter .form-control {
    width: 75%;
    height: 60px;
    padding: 10px 30px;
    font-size: 17px;
    outline: 0;
    border-radius: 3px;
    border: transparent;
    margin-right: 3%;
}

.main-footer-3 .subscribe-newsletter .btn {
    border: none;
    color: #fff;
    padding: 15px 5px 15px 5px;
    height: 60px;
    font-size: 15px;
    top: 0;
    right: 0;
    text-transform: inherit;
    font-weight: 400;
    border-radius: 3px;
    width: 22%;
}

.main-footer-3 .subscribe-newsletter{
    padding: 40px 0;
    border-bottom: solid 1px #ffffff2e;
}

.main-footer-3 .subscribe-newsletter .newsletter-content-wrap{
    max-width: 550px;
    margin-left: auto;
}

.main-footer-3 .subscribe-newsletter h3{
    color: #fff;
    margin-bottom: 0;
    line-height: 60px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 27px;
}

.main-footer-3 .recent-posts .media h5 a{
    color: #919398;
}

.main-footer-3 .footer-inner .text{
    margin-right: 30px;
}

.main-footer-3 .s-border {
    background: #ffffff2e;
}

.main-footer-3 .m-border {
    background: #ffffff2e;
}

.main-footer-3 .footer-gallery ul li{
    float: left;
    width: 75px;
    height: 75px;
    margin:0 10px 10px 0;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.main-footer-3 .footer-gallery ul li img {
    width: 100%;
    -webkit-transition: .3s;
    transition: .3s;
    border-radius: 5px;
    cursor: pointer;
}

.main-footer-3 .footer-gallery ul li:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    border-radius: 5px;
}

.main-footer-3 .social-media .icon span {
    color: #fff;
}

.main-footer-3 .sub-footer {
    padding: 25px 0 22px;
    border-top: solid 1px #ffffff2e;
    text-align: center;
    margin-bottom: 0;
    color: #fff;
}

.main-footer-3 .sub-footer p {
    margin-bottom: 0;
    color: #cecece;
    text-align: left;
    line-height: 44px;
}
/** Lines area start **/
.lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: -1;
}

.line {
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.line::after {
    content: '';
    display: block;
    position: absolute;
    height: 15vh;
    width: 100%;
    top: -50%;
    left: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
    animation: drop 7s 0s infinite;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
    z-index: -888;
}

.line:nth-child(1) {
    margin-left: -30%;
}

.line:nth-child(1)::after {
    animation-delay: 1s;
}

.line:nth-child(3) {
    margin-left: 30%;
}

.line:nth-child(3)::after {
    animation-delay: 2s;
}

.line:nth-child(4) {
    margin-left: -15%;
}

.line:nth-child(4)::after {
    animation-delay: 3s;
}

.line:nth-child(5) {
    margin-left: 15%;
}

.line:nth-child(5)::after {
    animation-delay: 4s;
}

@keyframes drop {
    0% {top: -50%; }
    100% {top: 110%; }
}

.s-border {
    width: 40px;
    height: 1px;
    margin-bottom: 2px;
    border-radius: 50px;
    background: #c5c5c5;
}

.m-border {
    width: 20px;
    height: 1px;
    margin-bottom: 25px;
    border-radius: 50px;
    background: #c5c5c5;
}
/* Social media area start */
.social-media .social-list{
    display: inline-flex;
}

.social-media .icon {
    position: relative;
    background: #f3f3f3;
    border-radius: 3px;
    margin: 0 4px 3px 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-media .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background-color: #ffffff;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-media .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background-color: #ffffff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-media .icon span{
    color: #000;
}

.social-media .icon:hover span{
    color: #fff;
}

.social-media .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.social-media .icon:hover span,
.social-media .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.social-media .facebook:hover,
.social-media .facebook:hover .tooltip,
.social-media .facebook:hover .tooltip::before {
    background-color: #3b5999;
    color: #ffffff;
}

.social-media .twitter:hover,
.social-media .twitter:hover .tooltip,
.social-media .twitter:hover .tooltip::before {
    background-color: #46c1f6;
    color: #ffffff;
}

.social-media .instagram:hover,
.social-media .instagram:hover .tooltip,
.social-media .instagram:hover .tooltip::before {
    background-color: #e1306c;
    color: #ffffff;
}

.social-media .github:hover,
.social-media .github:hover .tooltip,
.social-media .github:hover .tooltip::before {
    background-color: #333333;
    color: #ffffff;
}

.social-media .youtube:hover,
.social-media .youtube:hover .tooltip,
.social-media .youtube:hover .tooltip::before {
    background-color: #de463b;
    color: #ffffff;
}
/* Social media area end */
/* Breadcurmb start */
.breadcrumb-area {
    background-color: #F2F6F7;
    margin-top: 110px;
    padding-top: 110px;
    padding-bottom: 110px;
    z-index: 10; 
}
  
.ltn__utilize-overlay {
        position: fixed;
        z-index: 9999;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: none;
        background-color: rgba(0, 0, 0, 0.5);
     }
  .breadcrumb-list ul {
    margin: 0;
    padding: 0; }
  
  .breadcrumb-list ul li {
    display: inline-block;
    margin-right: 30px;
    position: relative;
    font-weight: 700; }
    .breadcrumb-list ul li a:hover{
        color: var(--first-color);}
  
  .breadcrumb-list ul li:last-child {
    margin-right: 0;
    color: #071c1f; }
  
  .breadcrumb-list ul li:after {
    position: absolute;
    content: "\f054";
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    font-size: 10px;
    right: -20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
  
  .breadcrumb-list ul li:last-child:after {
    display: none; }
    .page-title{
        color: #071c1f;
    }
  .span-color{
    color: var(--first-color);
  }
    .bg-overlay-white-30:before {
        background: rgba(255, 255, 255, 0.3); 
        position: absolute;
        content: "";
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        z-index: -1;}
        
.bg-image {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; }

        .bg-overlay-white-30 {
  z-index: 8;
  position: relative; }
/* Breadcurmb end */
  /* About Us start */
.about-us-img-wrap {
    position: relative; }
    .about-us-img-wrap img {
      margin: 0; }
  
  .about-us-img-info {
    width: 310px;
    height: 310px;
    background-color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-box-shadow: 0 16px 32px 0 rgba(7, 28, 31, 0.1);
    box-shadow: 0 16px 32px 0 rgba(7, 28, 31, 0.1);
    position: absolute;
    top: 70%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto; }

    .about-text {
        padding: 15px 0 0 15px;
    }
    
    .about-text p {
        margin-bottom: 20px;
        color: var(--title-color);
        font-size: 16px;
        line-height: 1.6;
    }
    
    .about-text h3 {
        font-size: 15px;
        font-weight: 600;
        margin: 0 0 15px;
        font-family: 'Foldit', cursive;
        color: var(--title-color);
    }
.feature-item {
padding: 40px 25px 10px;
-webkit-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
position: relative; 
}
      
.feature-icon {
margin-bottom: 20px;
font-size: 60px;
line-height: 1; 
}
.feature-item-3 {
padding: 25px 22px 1px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
border: 2px solid;
border-color: #f4faff;
margin-bottom: 20px;
position: relative; 
}
.feature-item-3 h4 a{
margin-bottom: 5px; 
color: var(--title-color);

transition: .3s;
}
.feature-info p {
    font-size: 14px;
    color: var(--title-color);
    transition: .3s;}
    
    
.feature-item-3 h4 a:hover{
    color: var(--first-color);
    transition: .3s;
    }
.feature-item-3 .feature-icon {
margin: 0px 20px 0 0;
font-size: 50px;
color: var(--first-color);
transition: .3s;
line-height: 1.5; 
}
.feature-item-3::before {
position: absolute;
content: "";
left: -2px;
top: 50%;
width: 4px;
height: 0%;
background-color: var(--first-color);
-webkit-transition: all 0.5s ease 0s;
-o-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s;
opacity: 0;
visibility: hidden;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.feature-item-3:hover {
-webkit-box-shadow: 0 16px 32px 0 rgba(7, 28, 31, 0.1);
box-shadow: 0 16px 32px 0 rgba(7, 28, 31, 0.1); 
}
.feature-item-3:hover::before {
height: 80%;
opacity: 1;
visibility: visible; 
}
.feature-item-3.text-right {
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-ms-flex-flow: row-reverse;
flex-flow: row-reverse; 
}
.feature-item-3.text-right .feature-icon {
margin: 0px 0 0 20px; 
}
.feature-item-3.text-right::before {
right: -2px;
left: auto; 
}
  .about-us-img-info-2 {
    width: 190px;
    height: 190px;
    background-color: var(--first-color);
    transition: .3s;
    border: 15px solid;
    border-color: #fff;
    bottom: 0;
    top: auto;
    -webkit-transform: inherit;
    -ms-transform: inherit;
    transform: inherit;
    margin-right: 0; }
  
  .about-us-img-info-3 {
    right: auto;
    left: 10px;
    border: 0;
    height: inherit;
    width: inherit;
    max-width: 300px;
    bottom: 70px;
    background-color: transparent; }
    .about-us-img-info-3 .video-img::before {
      opacity: 0.1; }
  
  .about-us-info-wrap {
    position: relative; }
    .about-us-info-wrap hr {
      margin-top: 40px;
      margin-bottom: 40px; }

    .about-us-info-wrap .video-play-btn {
      width: 80px;
      height: 80px;
      line-height: 84px;
      font-size: 20px;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      right: -100px; }
  
      .video-icon-2 {
        height: 80px;
        width: 80px;
        background-color: #fff;
        color: var(--first-color);
        transition: .3s;
        font-size: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        z-index: 9;
        border-radius: 100%; }
        .video-icon-2 i {
          color: var(--first-color); }
        .video-icon-2:hover.video-icon-2-border {
          outline: outset; }
        .video-icon-2.border-radius-no {
          border-radius: 0; }
      
.video-icon-2-border {
outline-offset: 15px;
        outline: 4px solid #e4ecf2;
        margin: 20px; }
      
      .video-bg-img {
        min-height: 350px;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        z-index: 99; }
      
.video-img {
        position: relative;
        display: inline-block; }
.video-img::before {
          position: absolute;
          content: "";
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          opacity: 0.3;
          background-color: #000000; }
.video-img img {
          margin: 0; }
.video-img .video-icon-2 {
          position: absolute;
          left: 0;
          right: 0;
          margin: auto;
          top: 50%;
          -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%); }
      
.video-info {
        position: relative; }
      
.video-popup-height-300 {
        height: 300px; }
      
.video-popup-height-400 {
        height: 400px; }
      
.video-popup-height-500 {
        height: 500px; }
      
.video-popup-height-600 {
        height: 600px; }

.animation-pulse1 a {
-webkit-animation: pulse1 1s infinite;
animation: pulse1 1s infinite; }

@-webkit-keyframes pulse1 {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); }
  70% {
    -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); } }

@keyframes pulse1 {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); }
  70% {
    -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); } }
/* About Us end */
/* service start */

    .card {
        border: none;
        background-color: var(--container-color);
      }
      .card-body {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        padding: 1rem 1rem;
      }      
      .shadow-hover {
        -webkit-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        -webkit-box-shadow: none;
        box-shadow: 0 16px 32px 0 rgba(7, 28, 31, 0.1);
      }
      
      .shadow-hover:hover {
        -webkit-box-shadow: 0 6.25rem 5rem 0 rgba(0, 0, 0, 0.02), 0 4.05063rem 2.92813rem 0 rgba(0, 0, 0, 0.0152), 0 2.4075rem 1.5925rem 0 rgba(0, 0, 0, 0.0121), 0 1.25rem 0.8125rem 0 rgba(0, 0, 0, 0.01), 0 0.50938rem 0.4075rem 0 rgba(0, 0, 0, 0.0079), 0 0.11563rem 0.19687rem 0 rgba(0, 0, 0, 0.0048);
        box-shadow: 0 6.25rem 5rem 0 rgba(0, 0, 0, 0.02), 0 4.05063rem 2.92813rem 0 rgba(0, 0, 0, 0.0152), 0 2.4075rem 1.5925rem 0 rgba(0, 0, 0, 0.0121), 0 1.25rem 0.8125rem 0 rgba(0, 0, 0, 0.01), 0 0.50938rem 0.4075rem 0 rgba(0, 0, 0, 0.0079), 0 0.11563rem 0.19687rem 0 rgba(0, 0, 0, 0.0048);
      }
      .rounded-3 {
        border-radius: 2.25rem !important;
      }
     
      .card-body .service-title{
        color: var(--first-color);
  transition: .3s;
      }
      .card-body .service-text{
        color: var(--title-color);
      }
      .service-icon {
        margin-bottom: 20px; }
      .card.service-card:before {
        content: '';
        position: absolute;
        left: 0.625rem;
        bottom: 0.625rem;
        width: 6.25rem;
        height: 6.25rem;
        background-color: #ffb566;
        border-radius: 1.875rem 0 0.625rem 0;
        z-index: -1;
        -webkit-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
      }
      
      .mb-6 {
        margin-bottom: 3rem !important;
      }
      .p-xxl-5 {
        padding: 2.5rem !important;
      }
      .p-4 {
        padding: 1.8rem !important;
      }
      .mb-3 {
        margin-bottom: 1rem !important;
      }
      .mb-0 {
        margin-bottom: 0 !important;
      }
      .fw-medium {
        font-size: 14px;
      }
       /* service end */
       /** Property box start **/
.property-box {
    margin-bottom: 30px!important;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
    background:  var(--container-color);
    border: 1px solid var(--border-color);
    z-index: 2;
}

.property-box:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}
.price-box span {
    color: #ffb566;
    font-weight: 700;
}
.property-box:hover .price-box span{
    color: #fff;
    font-weight: 600;
}

.property-box .property-photo {
    overflow: hidden;
    position: relative;
}

.property-box .property-photo::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    background: #fff;
    left: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.property-box .property-photo img {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.property-box .property-photo::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    background: #fff;
    right: 0;
    top: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.property-box:hover .property-photo::before, .property-box:hover .property-photo::after {
    width: 100%;
    height: 100%;
    opacity: 0.3;
    visibility: visible;
    background: linear-gradient(0,#ffb566,rgb(255 171 74 / 17%));
}

.property-box:hover .tag{
    background: #fff;
    color: #ffb566;

}

.property-box:hover .featured {
    background: #fff;
    color: #ffb566;
}

.property-thumbnail {
    position: relative;
}

.property-thumbnail:before {
    content: "";
    top: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 9;
    background: linear-gradient(to top,rgba(35,35,37,0.2) 0%,rgba(35,35,37,0.1) 35%,rgba(22,22,23,0) 60%,rgba(0,0,0,0) 100%);
    border-radius: 4px 4px 0 0;
    opacity: 1;
}

.property-box .detail {
    padding: 20px 25px;
    background:  var(--container-color);
}

.property-box .detail .title {
    font-size: 21px;
    margin:5px 0 10px;
    font-weight: 500;
    color: var(--title-color);
}

.property-box .detail .title a:hover {
    color: var(--title-color);
}

.property-box .detail .location {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    
}

.property-box .detail .location a{
    color: var(--title-color);
}

.property-box .detail .location i {
    margin-right: 3px;
}

.property-box .facilities-list{
    background:  var(--container-color2);
    padding: 20px 25px;
}

.property-box .facilities-list li {
    list-style: none;
    float: left;
    font-weight: 400;
    line-height: 25px;
    font-size: 15px;
    margin-right: 25px;
}

.property-box .facilities-list li:last-child{
    margin: 0;
}

.property-box .facilities-list li span{
    display: table;
    font-weight: 500;
}

.property-box .footer {
    padding: 15px 25px;
    font-size: 15px;
    font-weight: 400;
    color: var(--title-color);
}

.property-box .footer a{
    color: var(--title-color);
}

.property-box .footer span {
    float: right;
}

.property-box .footer i {
    margin-right: 5px;
    font-size: 12px;
}

.price-box {
    color: #fff;
    text-align: right;
    font-size: 15px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-weight: 500;
    z-index: 20;
    font-family: 'Jost', sans-serif;
}

.ratings span{
    color: #fff;
}

.listing-badges {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    display: block;
    font-size: 15px;
    padding: 0;
    overflow: hidden;
    height: 100px;
}

.listing-badges .featured {
    float: left;
    transform: rotate(-45deg);
    left: -67px;
    top: 17px;
    position: relative;
    text-align: center;
    width: 200px;
    letter-spacing: 0.5px;
    font-size: 12px;
    margin: 0;
    padding: 7px 10px;
    font-weight: 500;
    color: #fff;
    background-color: #ffb566;
    box-shadow: 1px 2px 3px 0 rgba(2, 0, 0, .2);
    text-transform: uppercase;
    z-index: 999;
}
.tag {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 20;
    font-size: 12px;
    letter-spacing: 0.8px;
    background: #ffb566;
    color: #fff;
    padding: 6px 14px 4px;
    font-weight: 500;
    border-radius: 3px;
    text-transform: uppercase;
}

.tag::after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-top: 0;
    border-bottom: 10px solid transparent;
    bottom: -10px;
    left: 0;
}


/** Paginatin box **/
.pagination-box {
    margin-bottom: 25px;
}

.pagination {
    padding-left: 0;
    border-radius: 4px;
    display: inline-block;
}

.pagination li {
    display: inline-block;
}

.pagination > li > a {
    color: var(--title-color);
    font-size: 17px;
    background-color: var(--container-color);
    box-shadow: 0 4px 12px hsla(0, 0%, 20%, .1);
    font-weight: 500;
}

.pagination > li > a:hover{
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.pagination > li > a, .pagination > li > span {
    border-radius: 0;
    margin: 0 2px 5px;
    padding: 12px 19px;
    text-align: center;
    border: none;
}

.pagination > li > a:hover {
    color: #fff;
}

.pagination > li > .active {
    color: #fff;
}
.pagination > li > .active {
    background: #ffb566;
}

.pagination > li > a:hover {
    background: #ffb566;
    color: #fff;
}

.sidebar-right .show-more-options{
    font-size: 15px;
}

/** Sidebar widget start **/
.sidebar-right {
    margin: 0 0 30px 0;
    background: var(--container-color);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}



.widget {
    padding: 30px;
    border-bottom: solid 1px #eaeaea;
}


.widget .search-fields {
    min-height: 50px;
    padding: 0;
    border-radius: 3px;
    box-shadow: none;
    border: 1px solid #e0e0e0;
    background: #fff;
}

.widget .form-group{
    margin-bottom: 20px;
}

.widget .form-group .dropdown-toggle::after {
    right: 12px;
}

.widget .bootstrap-select button {
    color: #545454!important;
    font-weight: 500;
    border-radius: 3px;
    outline: none;
    padding: 12px 30px 9px 15px;
}
/** Bootstrap select start **/
.bootstrap-select {
    width: 100% !important;
}

.bootstrap-select button {
    color: #545454!important;
    font-weight: 500;
    border-radius: 3px;
    outline: none;
    padding: 11px 15px 10px 15px;
}

.bootstrap-select .dropdown-menu li {
    padding: 0;
}

.bootstrap-select .dropdown-menu li a {
    padding: 10px;
}

.bootstrap-select .dropdown-menu li a:hover{
    background: #fbfbfb;
}
.bootstrap-select .dropdown-menu{
    padding: 0;
    margin: -1px 0 0 0!important;
    border: none;
    border: transparent;
    border-radius: 0;
    box-shadow: 0 0 8px 0 rgba(0,0,0,.12);
    max-width: 100%;
    min-width: 100%;
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
    margin-top: 12px;
}

.bootstrap-select .dropdown-menu li a {
    padding: 10px;
    font-weight: 500;
    font-size: 14px;
    outline: none;
    border: 0 !important;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: transparent;
}

.bootstrap-select .dropdown-menu li a:hover {
    border: none;
    font-size: 14px;
    font-weight: 500;
}

.bootstrap-select .btn-default.active,
.bootstrap-select .btn-default:active,
.bootstrap-select .open > .dropdown-toggle.btn-default {
    color: #333;
    background-color: #eee;
    border-color: transparent !important;
    box-shadow: none !important;
}

.bootstrap-select .btn-default:hover {
    background: transparent !important;
    color: #777 !important;
    box-shadow: none !important;
}

.bootstrap-select .btn-default.active,
.bootstrap-select .btn-default:active,
.bootstrap-select .open > .dropdown-toggle.btn-default {
    color: #333;
    background-color: transparent !important;
    border-color: #adadad;
}

.btn-default.active,
.btn-default:active,
.open > .dropdown-toggle.btn-default {
    color: #333;
    background-color: transparent !important;
    box-shadow: none !important;
    border-color: #adadad;
}

.bootstrap-select .dropdown-menu.inner {
    border: 0;
    border-top: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    color: #999;
}

.bootstrap-select .dropdown-toggle:focus {
    outline: none !important;
}

.bootstrap-select .dropdown-menu > .active > a,
.bootstrap-select .dropdown-menu > .active > a:focus,
.bootstrap-select .dropdown-menu > .active > a:hover {
    text-decoration: none;
    background-color: #fff;
    outline: 0;
}

.bootstrap-select .bs-actionsbox, .bootstrap-select .bs-donebutton, .bs-searchbox {
    padding: 4px 8px;
    background: #EEE;
    border-bottom: 1px solid #d5d5d5;
}

.bootstrap-select .bs-searchbox .form-control {
    margin-bottom: 0;
    width: 100%;
    float: none;
    height: 36px;
    border: 1px solid #ddd;
    box-shadow: none;
}

.bootstrap-select .dropdown-toggle .filter-option-inner {
    overflow: hidden;
    font-size: 15px;
}

.bootstrap-select .dropdown-menu li a.active:hover .text {
    color: #515151;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
    color: #ffb566;
}

.bootstrap-select .dropdown-menu > .active > a,
.bootstrap-select .dropdown-menu > .active > a:focus,
.bootstrap-select .dropdown-menu > .active > a:hover {
    color: #ffb566;
}
.single-block {
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 21px;
    position: relative;
    margin: 0 0 7px;
    font-weight: 500;
    color: var(--title-color);
    transition: .9s;
}

.s-border {
    width: 40px;
    height: 1px;
    margin-bottom: 2px;
    border-radius: 50px;
    background: var(--text-color);
}

.m-border {
    width: 20px;
    height: 1px;
    margin-bottom: 25px;
    border-radius: 50px;
    background: var(--text-color);
}

.sidebar .search-box {
    padding: 20px 20px 0 20px;
    margin-bottom: 0;
}



.range-slider .ui-slider .ui-slider-handle {
    background: #ffb566;
}

.range-slider .ui-slider .ui-slider-handle {
    border: 2px solid #ffb566;
}

.range-slider .ui-widget-header {
    background-color: #ffb566;
}

.range-slider .ui-slider {
    position: relative;
    text-align: left;
}

.range-slider label {
    font-size: 13px;
    color: var(--title-color);
    font-weight: 500;
    margin-bottom: 12px;
}

.range-slider .ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 10px;
    height: 10px;
    border-radius: 0;
    border: 2px solid #ffb566;
    cursor: w-resize;
    outline: none;
    top: -4px;
    margin-left: -8px;
    box-shadow: none !important;
}

.range-slider .ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    display: block;
    border: 0;
    background-position: 0 0;
}

.range-slider .ui-slider .ui-slider-handle {
}

.range-slider .ui-widget-content {
    background-color: #ccc;
}

.range-slider .ui-widget-header {
}

.range-slider .ui-slider.ui-state-disabled .ui-slider-handle, .range-slider .ui-slider.ui-state-disabled .ui-slider-range {
    filter: inherit;
}

.range-slider .ui-slider-horizontal {
    height: 3px;
    border-radius: 10px;
    width: calc(100% - 16px);
    margin-left: 8px;
}

.range-slider .ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
}

.range-slider .ui-slider-horizontal .ui-slider-range-min {
    left: 0;
}

.range-slider .ui-slider-horizontal .ui-slider-range-max {
    right: 0;
}

.min-value:focus, .max-value:focus, .min-value, .max-value {
    width: 40%;
    display: inline-block;
    border: 0;
    background-color: transparent;
    padding: 0;
    margin: 12px 0 0 0;
    cursor: default;
}

.min-value {
    float: left;
    margin-left: -8px;
    width: 40%;
    margin-right: -8px;
    font-size: 14px;
    color: var(--title-color);
    font-weight: 500;
    margin-top: 15px;
}

.max-value {
    float: right;
    width: 60%;
    text-align: right;
    margin-right: -8px;
    font-size: 14px;
    color: var(--title-color);
    font-weight: 500;
    margin-top: 15px;
}

.sidebar .recent-properties-box .detail header {
    padding-bottom: 0;
}
.advanced-search .checkbox {
    padding-left: 5px;
    margin-bottom: 5px;
}
.form-group label, .checkbox label {
    font-weight: 500;
    font-size: 16px;
    color: var(--title-color);
}

.advanced-search .form-group label, .checkbox label{
    color: var(--title-color);
}

.range-slider.form-group label, .checkbox label{
    font-weight: 500;
}
.search-fields {
    background: #fff;
    min-height: 45px;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid #dbdbdb;
    padding: 0;
}

.form-control {
    padding-left: 15px;
}

.search-fields button {
    border-radius: 1px;
    box-shadow: none;
    border: none;
    background: #fff !important;
}
.search-button {
    background: #ffb566;
}
.search-button:hover {
    color: #fff;
    background: #fc9526;
}
.search-button {
    cursor: pointer;
    padding: 15px 26px;
    font-size: 16px;
    font-weight: 600;
    color: #FFF;
    transition: .5s;
    border-radius: 3px;
    border: none;
    width: 100%;
    outline: none;
}

.search-button:hover {
    color: #fff;
}

/** Recent properties start **/
.recent-posts-box img {
    width: 70px;
    border-radius: 3px;
}

.recent-posts-box h5 {
    margin-bottom: 7px;
    font-weight: 400;
    
}

.recent-posts-box h5 a {
    font-size: 20px;
    color: var(--text-color);
}

.recent-posts-box .listing-post-meta {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
}

.recent-posts-box .listing-post-meta a{
    color: var(--text-color);
}
/** Posts by category start **/
.posts-by-category ul {
    margin: 0;
    padding: 0;
    text-align: left;
}

.posts-by-category ul li {
    padding-bottom: 7px;
    margin-bottom: 7px;
    border-bottom: dashed 1px var(--border-color);
}

.posts-by-category ul li a {
    color: var(--text-color);
    font-weight: 400;
    font-size: 15px;
}

.posts-by-category ul li a span {
    float: right;
    color: inherit;
}

.posts-by-category ul li:last-child {
    border-bottom: none;
    padding: 0;
    margin: 0;
}
/** Team 1 start **/
.our-agent-sidebar .team-1 .team-details h5 a {
    font-size: 20px;
}

.team-1 {
    text-align: center;
    transition: .5s all ease;
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    -o-transition: .5s all ease;
    -ms-transition: .5s all ease;
    background: var(--container-color);
    margin-bottom: 30px;
}

.team-1:hover{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.team-1 .team-thumb {
    position: relative;
}

.team-thumb img {
    width: 100%;
    height: auto;
    border: none;
    display: block;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.team-1 .team-social {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    justify-content: flex-end;
    overflow: hidden;
}

.team-1 .flex-middle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-1 .team-social .team-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translateY(-110%);
    transition: all 0.5s linear;
    transition: .5s all ease;
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    -o-transition: .5s all ease;
    -ms-transition: .5s all ease;
}

.team-1 .team-social .team-social-inner {
    position: absolute;
    left: 0;
    opacity: 0;
    padding-left: 20px;
    transform: translateX(-100px);
    transition: .3s all ease 0.4s;
    transition: .3s all ease 0.4s;
    -webkit-transition: .3s all ease 0.4s;
    -moz-transition: .3s all ease 0.4s;
    -o-transition: .3s all ease 0.4s;
    -ms-transition: .3s all ease 0.4s;
}

.team-1 .team-social a {
    display: block;
    font-size: 18px;
    line-height: 1;
    margin: 5px 0;
    padding: 11px;
    background: #fff;
    border-radius: 5%;
    transition: .3s all ease 0.4s;
    transition: .3s all ease 0.4s;
    -webkit-transition: .3s all ease 0.4s;
    -moz-transition: .3s all ease 0.4s;
    -o-transition: .3s all ease 0.4s;
    -ms-transition: .3s all ease 0.4s;
    color: var(--text-color);
}

.team-1 .team-social a:hover{
    color: var(--text-color);
}

.team-1 .team-info {
    padding: 30px 20px;
    font-size: 20px;
}

.team-1 .team-info h4 a{
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--title-color);
}

.team-1 .team-info p {
    font-size: 16px;
    margin-bottom: 0;
}

.team-1:hover .team-social .team-overlay {
    transform: translateY(0);
    opacity: .8;
}

.team-1 .team-social .team-overlay, .team-sub-line:before {

    background: rgb(255 181 102 / 51%);
}

.team-1:hover .team-social .team-social-inner {
    transform: translateX(0);
    opacity: 1;
}
/** Our agent sidebar start **/
.our-agent-sidebar .team-1 {
    margin: 0 auto 0;
    box-shadow: none;
    border-bottom: solid 1px #f7f7f7;
}

.our-agent-sidebar .carousel-indicators li {
    width: 10px;
    height: 10px;
    background-color: #8a8989;
    border-radius: 50px;
}
.our-agent-sidebar .carousel-indicators .active [data-target]{
    background: #ffb566;
}


.our-agent-sidebar .carousel-indicators {
    bottom: 20px;
}

.our-agent-sidebar .p-20{
    padding: 20px 20px 0;
}

.our-agent-sidebar{
    margin-bottom: 20px;
}

.our-agent-sidebar .team-1 .team-details {
    text-align: center;
    padding: 25px 20px 45px;
}

.our-agent-sidebar .carousel-indicators [data-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 15px;
    height: 15px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #000;
    border: 0;
    border-top: 0px solid transparent;
    border-bottom: 0px solid transparent;
    opacity: 1;
}

.our-agent-sidebar .team-1 .team-info{
    padding: 30px 30px 60px!important;
}
/* contact */
.contact-item {
    background: var(--container-color2);
    padding: 25px;
    border-radius: 0;
    margin: 0 0 25px;
    position: relative;
    z-index: 1;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
  }
  
  .contact-item:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 0;
    background-color: #ffb566;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
  }
  
  .contact-item .contact-icon {
    width: 50px;
    height: 50px;
    position: relative;
    top: 5px;
    border-radius: 50%;
    text-align: center;
    background-color: #030734;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  
  .contact-item .contact-icon i {
    color: #fff;
    line-height: 0.8;
    font-size: 22px;
    position: relative;
    -webkit-transition: 0.34s;
    transition: 0.34s;
  }
  
  .contact-item .contact-info {
    width: calc(100% - 70px);
    margin-left: 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  
  .contact-item .contact-info h3 {
    font-size: 22px;
    margin: 0 0 6px;
    font-weight: 600;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: var(--text-color);
  }
  
  .contact-item .contact-info a,
  .contact-item .contact-info p {
    display: block;
    margin: 0;
    line-height: 1.5;
    color: var(--text-color);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  
  .contact-item:hover:after {
    height: 100%;
    visibility: visible;
    opacity: 1;
  }
  
  .contact-item:hover .contact-info {
    color: #666666;
  }
  
  .contact-item:hover .contact-info a,
  .contact-item:hover .contact-info h3,
  .contact-item:hover .contact-info p {
    color: #fff;
  }
  
  .contact-item:hover .contact-icon {
    background-color: #fff;
  }
  
  .contact-item:hover .contact-icon i {
    color: #ffb566;
  }
  .contact-item .contact-icon ,.contact-item{
    display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  }
  .contact-item .contact-icon {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .contact-form-box {
    padding: 40px 50px 50px;
    position: relative;
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);;
    z-index: 1;
background-color: var(--container-color); }

    .contact-form-box input::-webkit-input-placeholder {
      color: #8cb2b2; }
    .contact-form-box input::-moz-placeholder {
      color: #8cb2b2; }
    .contact-form-box input:-ms-input-placeholder {
      color: #8cb2b2; }
    .contact-form-box input:-moz-placeholder {
      color: #8cb2b2; }
  

.input-item .nice-select {
    border: 2px solid;
    border-color:  #e5eaee;
    background-color: var(--container-color2);
    color: var(--title-color);
    border-radius: 0;
    font-size: 14px;
    font-weight: 400;
    height: 65px;
    line-height: 60px;
    width: 100%;
    margin-bottom: 30px; }
    
    

.input-item .nice-select .current {
      font-weight: 700; }

    .input-item .nice-select::after {
      display: none; }

    .input-item .nice-select::before {
      content: "\f33d";
      font-size: 14px;
      position: absolute;
      top: 50%;
      right: 20px;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      font-family: FontAwesome;
      font-weight: 900;
      color: #ffb566; }
  
  .input-item::after {
    display: block;
    clear: both;
    content: ""; }

/* input-item */
.input-item {
    position: relative; }
    .input-item.ltn__custom-icon::before {
      position: absolute;
      top: 35%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      right: 20px;
      font-family: FontAwesome;
      color: #ffb566; }
  
  .input-item-name.ltn__custom-icon::before {
    content: "\f007"; }
  
  .input-item-email.ltn__custom-icon::before {
    content: "\f0e0"; }
  
  .input-item-phone.ltn__custom-icon::before {
    content: "\f095"; }
  
  .input-item-subject.ltn__custom-icon::before {
    content: "\f06e"; }
    
  .input-item-textarea.ltn__custom-icon::before {
    content: "\f303";
    top: 30px; }
  
  .input-info-save {
    font-size: 14px; }
  
  label.checkbox-inline {
    font-size: 14px; }




/* ----------------------------------------------------
    Form input box
---------------------------------------------------- */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="submit"],
textarea {
  background-color: var(--container-color2);
  border: 2px solid;
  border-color:  #e4ecf2;
  height: 65px;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-left: 20px;
  font-size: 16px;
  color: var(--title-color);
  width: 100%;
  margin-bottom: 30px;
  border-radius: 0;
  padding-right: 40px; }

input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="submit"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--title-color);
  font-size: 14px; }

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
  border-color: #041113; }

input[type="password"] {
  letter-spacing: 3px;
  font-size: 16px; }

textarea {
  resize: vertical;
  padding: 15px 20px;
  min-height: 150px; }

button {
  outline: none;
  border: none;
  cursor: pointer; }

button:focus {
  outline: none; }    
  
  @media (max-width: 767px) {
    .contact-form-box {
      padding: 40px 25px 50px; } }

      .btn {
        display: inline-block;
        line-height: 26px;
        font-weight: 400;
        border-radius: 5px;
        text-align: center;
        -webkit-transition: all 0.7s ease-in-out;
        transition: all 0.7s ease-in-out;
        position: relative;
        z-index: 1;
        border: none;
        padding: 13px 35px 15px;
        border-radius: 6px;
        color: #fff;
        overflow: hidden;
        white-space: nowrap;
      }
      
      .btn i {
        position: relative;
        top: 3px;
        font-size: 16px;
        margin-left: 7px;
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
      }
      
      .btn:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        width: 50%;
        height: 0;
        visibility: hidden;
        opacity: 0;
        z-index: -1;
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
      }
      
      .btn:after {
        position: absolute;
        bottom: 0;
        right: 0;
        content: "";
        width: 50%;
        height: 0;
        visibility: hidden;
        opacity: 0;
        z-index: -1;
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
      }
      
      .btn:hover {
        color: #fff;
      }
      
      .btn:hover:after, .btn:hover:before {
        width: 100%;
        height: 100%;
        visibility: visible;
        opacity: 1;
      }
      
      .btn.style1 {
        background-color: #ffb566;
      }
      
      .btn.style1:after, .btn.style1:before {
        background: #010647;
      }
      
      .btn-wrapper {
        display: block;
        margin-top: 30px; }
        .ltn__video-play-btn {
            margin-top: 0;
            width: 60px;
            height: 60px;
            line-height: 65px;
            display: inline-block;
            text-align: center;
            border-radius: 100%;
            -webkit-box-shadow: var(--ltn__box-shadow-2);
            box-shadow: var(--ltn__box-shadow-2); }
/* media */



@media (max-width: 767.98px) {
    .card.service-card:before {
      width: 3.75rem;
      height: 3.75rem;
      border-radius: 1.25rem 0 0.5rem 0;
    }
  }
  
  .card.service-card:hover:before {
    left: -1.875rem;
    bottom: -2.1875rem;
  }
  
  @media (max-width: 767.98px) {
    .card.service-card:hover:before {
      left: -0.9375rem;
      bottom: -1.5625rem;
    }
  }
  


@media (max-width: 575px)
{
    .about-title {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .apartment .tab-menu a {
        padding: 15px 25px;
        font-size: 14px; }
      .tab-menu-top-right {
        position: initial; }
      .tab-menu-3 {
        margin-top: 0; }
        .apartment .tab-menu-3 a{
          padding: 1px;
          margin-right: 20px;
    }
    .testimonial-slider-4 {
      max-width: 70%; }
      .testimonial-item-5 .testimonial-info p {
        font-size: 20px; }
    .quote-animated-image {
      display: none !important; }
      .about-title {
        font-size: 26px;
    }
    .about-img-left {
        margin-right: 0;
        margin-bottom: 40px; 
      }
      .video-icon-2 {
          height: 50px;
          width: 50px;
          font-size: 18px; }
        .video-popup-height-500,
        .video-popup-height-600 {
          height: initial; }  }
  

@media (max-width: 1199px)
{
    .about-title {
        font-size: 30px;
    }
}
@media (max-width: 1535px) {
    header{
        padding: 15px 3%;
        transition: .2%;
    }

    .icons{
        padding: 0 3%;
        transition: .2s;
    }
}
@media (max-width: 1195px) {
.icons{
    display: none;
}
}

@media (max-width: 990px) {
    #menu-icon{
        display: block;

    }
    .hero .hero-text{
       
        color: var(--second-color);
    }
    header .logo{color: var(--second-color);}
    .navlist{
        position: absolute;
        top: 100%;
        right: -260px;
        width: 260px;
        height: 40vh;
        background: var(--toogle);
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: 50px 20px;
        transition: all .55s ease;
    }
    .navlist a{
        margin-left: 0;
        display: block;
        margin: 7px 0;
        font-size: 14px;
        color: var(--second-color);

    }
    .navlist.open{
        right: 0;
    }
} 
@media (max-width: 992px) {
.content-area {
    padding: 80px 0 50px;
}

.main-title-5 {
    margin-bottom: 40px;
}

.main-title-5 h1 {
    font-size: 32px;
}

.main-title-7{
    text-align: center;
}

.main-title-7 .title-border {
    margin: 0 auto!important;
}
.about-img-section .image-box {
    margin:0 auto;
    padding-bottom: 20px;
    max-width: 550px;
}
.counters-1 {
    padding: 80px 0 50px;
}
.popular-places img{
    height: 250px;
}
.main-footer-3 h4 {
    font-size: 20px;
    margin-bottom: 5px;
}
.about-text h3{
    font-size: 31px;
}


.main-footer-3 .footer-gallery {
    margin-left: 0;
    max-width: 100%;
}

.main-footer-3 .subscribe-newsletter .form-control {
    width: 80%;
    height: 50px;
    font-size: 16px;
}

.main-footer-3 .footer-inner {
    padding: 60px 0 0;
}

.main-footer-3 .subscribe-newsletter .btn {
    height: 50px;
    width: 20%;
}

.main-footer-3 .subscribe-newsletter h3 {
    line-height: 50px;
    font-size: 22px;
}

}





@media (max-width: 1200px)
{
 .apartment .tab-menu-3 a {
        margin-right: 30px;
        font-size: 16px;
    }
    .property-box-6 .property-photo {
        height: 300px;
    }

    .property-box-6 .property-photo img{
        height: 525px;
    }

    .property-box .facilities-list li {
        margin-right: 15px;
    }
    .team-3 .member-thumb {
        width: 150px;
        height: 150px;
    }
    .about-text h3 {
        font-size: 31px;
    }

    .about-text {
        padding: 0;
    }
}

@media(max-width: 768px){
    .hero{
		padding: 0px 8%;
	}
.hero .hero-image img{
    opacity: 0.3;
}
.content-area {
    padding: 60px 0 30px;
}
.main-title-5 {
    margin-bottom: 30px;
}
.about-text h3{
    font-size: 28px;
}
.about-text {
    margin-bottom: 40px;
}
.about-text {
    padding: 0;
}

.main-title-5 h1 {
    font-size: 30px;
    margin-bottom: 10px;
}
.about-box-Experience {
    right: 50px;
    width: 250px;
}

.about-box-Experience .content p {
    font-size: 16px;
}

.about-box-Experience .content h3 {
    font-size: 25px;
}
.about-box-Experience .content {
    right: 28%;
    top: 27%;
}
.counters-1 .counter-box-1 {
    max-width: 240px;
    margin: 0 auto 30px;
}

.counters-1 {
    padding: 60px 0 30px;
}
.col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }

    .intro-section .intro-section-inner {
        padding: 30px 0;
    }

    .intro-section .btn-7 {
        font-size: 15px;
        padding: 9.5px 30px;
    }

    .intro-section h3 {
        font-size: 25px;
        line-height: normal;
        margin-bottom: 10px;
    }

    .intro-section {
        text-align: center;
    }

    .intro-section .btn-7 {
        float: none;
    }

    .intro-section h3 {
        margin-bottom: 15px;
        line-height: normal;
    }
    .main-footer-3 .subscribe-newsletter h3 {
        line-height: normal;
        margin-bottom: 15px;
    }

    .main-footer-3 .sub-footer p {
        margin-bottom: 20px;
        text-align: center;
        line-height: normal;
    }

    .main-footer-3 .social-media .icon {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }

    .main-footer-3 .social-media {
        float: inherit;
    }
    .main-footer-3 .footer-item.fi-2{
        margin-bottom: 50px;
    }
    .widget {
        padding: 30px 20px;
    }
    .recent-properties-box .detail .location a {
        font-size: 14px;
    }
   
}

@media (max-width: 767px)
{
    .hero .hero-text  .slide-title {
        font-size: 30px;
    }
    p {
        font-size: 14px;
    }
    .hero-text .social-media-icons a  span{
        display: none;
    }
    .ltn__list-item-half li {
        width: 100%;
        padding-right: 0px; }
        .apartments-plan-info {
            padding: 30px; }
          .apartments-info-list ul li {
            font-size: 14px; }
            .about-title {
              font-size: 30px;
          }
          .testimonial-slider-4 {
              max-width: 95%; }
              .testimonial-item-5 .testimonial-info p {
                font-size: 16px; }
                .about-us-img-info {
                    height: 200px;
                    width: 220px; }
                    .about-us-img-info h1 .counter {
                      font-size: 80px; }
                  .about-us-img-info-2 {
                    width: 150px;
                    height: 150px; }
                    .about-us-img-info-2 h1 .counter {
                      font-size: 30px; }
        body {
            font-size: 14px;
        }
        h1 {
            font-size: 24px;
        }
        h2 {
            font-size: 20px;
        }
        h3 {
            font-size: 18px;
        }
        h4 {
            font-size: 17px;
        }
        h5 {
            font-size: 16px;
        }
        h6 {
            font-size: 14px;
        }
        p {
            font-size: 14px;
        }
    
}

    /* Normal desktop :992px. (Laptop 14") */
@media (min-width: 992px) and (max-width: 1199px) {
    /* Global */
    h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 26px;
    }
    h3 {
        font-size: 22px;
    }
    h4 {
        font-size: 20px;
    }
    h5 {
        font-size: 18px;
    }
    h6 {
        font-size: 16px;
    }

}

 
/* Tablet device :768px. */
@media (min-width: 768px) and (max-width: 991px) {
    /* Global */
    body {
        font-size: 14px;
    }
    h1 {
        font-size: 26px;
    }
    h2 {
        font-size: 22px;
    }
    h3 {
        font-size: 20px;
    }
    h4 {
        font-size: 18px;
    }
    h5 {
        font-size: 16px;
    }
    h6 {
        font-size: 15px;
    }
    p {
        font-size: 14px;
    }

}

 

@media (min-width: 1350px) {
    .slick-arrow-1:hover .slick-arrow {
      left: -50px;
      right: auto; }
    .slick-arrow-1:hover .slick-next {
      right: -50px;
      left: auto; } }

      @media (max-width: 1599px) {
        .plr--9 {
          padding-left: 2%;
          padding-right: 2%; } }
      
      @media (max-width: 1399px) {
     .plr--9{
          padding-left: 15px;
          padding-right: 15px; } }
      