﻿
  /*.....header csss...*/ 
  
   :root {
    --colorPrimary:  #002f17;

    --colorBtn: #ffffff;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*font-family: Avenir !important;*/
  font-family: 'Poppins', sans-serif;
}
a{
    text-decoration:none;
}
nav{
  position: sticky;
  z-index: 99;
  width: 100%;
  background: #fff;
  top: 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
nav .wrapper{
  position: relative;
  max-width: 1300px;
  padding: 0px 30px;
  /* height: 56px; */
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .logo a{
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
  display: block;
}
.wrapper .nav-links{
  display: inline-flex;
  position: relative;
  right: -20px;
  top: 27px;
}
.nav-links li{
  list-style: none;
}
.nav-links li a{
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 12px;
  border-radius: 5px;
  transition: all 0.3s ease;
  /* text-transform: uppercase; */
  letter-spacing: 0.3px;
}
.nav-links li a:hover{
  color: #eb213e;
}
.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background: #242526;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}
.mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: #242526;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .row{
  width: calc(25% - 30px);
  line-height: 45px;
}
.content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
}
.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 970px) {
  .wrapper .btn{
    display: block;
    color:black;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #fff;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;

  }
  .nav-links li{
    margin: 9px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 16px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
}
nav input{
  display: none;
}

.body-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}
.body-text div{
  font-size: 45px;
  font-weight: 600;
}
.logo-img{
  width: 155px;
}
  .raymond-logo{
      width: 64%;
    padding-top: 5px;
  }
  .contact-btn a{
      /* background:grey; */
      /* color:white!important; */
  }


  /*....banner csss...*/
  .fuigdbhj_tri {
    position: relative;
}
.fuegbhj_tri {
    width: 100%;
}
.fuygyyhtg_tri {
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 100%;
    background-image: linear-gradient(to right, #000000d9 10%, #0000008a 60%, #6b4f8d00 100%);
    /* background: #0000008a; */
    display: flex;
    align-items: center;
}
.fuygy_tri {
    margin: auto;
    color: #fff;
    padding: 0;
    padding-left: 120px;
    padding-right: 150px;
}
.wedf_tri {
    font-size: 36px;
    line-height: 55px;
    margin-bottom: 22px;
}
.geyuh_tri {
    color: #a2ffcf;
    font-style: italic;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #ffffff45;
}
.wedfgrf_tri {
    font-size: 20px;
}


  /*...about section css...*/


ul.overview-points {
    padding-right: 30px;
    font-size: 14px;
    line-height: 25px;
    padding-left: 18px;
}
ul.overview-points li{
    margin-bottom:10px;
}
.overview-para h1{
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-weight: 300;
    font-size: 34px;
}
.aminities-heading1 h1.main-bottom-txt:before{
    content:"";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 77px;
    background: #002f17;
}
.insight-txt {
    font-size: 14px;
    margin-top: 10px;
    display: block;
    /* text-transform: uppercase; */
    /* font-family: 'Gotham'; */
    color: #635f5f;
    margin-top: 0px;
}
::marker {
    font-size: 19px;
}
div#counter {
    padding-top: 50px;
    /* background-image:url(https://tenxhabitatraymondrealty.com/media/images/element/theme-element.svg); */
    background-position:center;
} 
#counter .item .count{
  color: #002f17;
  margin-bottom: 5px;
  font-size: 36px;
  font-weight: bold !important;!i;!;
}
.counter-part {
    display: flex;
    justify-content: space-around;
    border-bottom: 1px solid #9893935c;
    /* padding-bottom: 30px; */
}
section.about-section {
    padding: 50px 0;
}
.counter-part1 {
    display: flex;
    justify-content: space-around;
    /* padding-top: 30px; */
}

.counter-title {
    display: flex;
    align-items: center;
    gap: 6px;
    /* justify-content: center; */
}
 .text {
    font-size: 17px;
    position: relative;
    /* bottom: 2px; */
    margin-left: 1px;
    top: 2px;
    /* font-weight: bold !important; */!i;!;
    /* color: #bf272e; */
    font-weight: 400 !important;!i;!;
}
 .txt-para{
     font-size: 12px;
 }


 /*...aminities section csss...*/


 .scrolled-aminities {
    opacity: 1;
}
 .columns.is-multiline {
    flex-wrap: wrap;
}
 section.Amenities-section {
    padding: 50px 0;
    background-color: #bbd1dc3d;
}
 .project-amenities-cols .aminities-main {
    width: 16%;
    flex: 0 0 16.6%;
    border-right: 1px solid #dedede54;
    border-bottom: 1px solid #dedede54;
    position: relative;
    z-index: 9;
    /* background: white; */
    color: white;
}
 .aminities-heading{
     font-size: 34px;
     line-height: 44px;
     text-transform: uppercase;
     position: relative;
     font-weight: 300;
     text-align:center;
     color: black;
 }
 section.Raymond-section {
    padding: 50px 0 200px!important;
}
 .fuygyyhtg_tri {
    /* top: auto; */
    /* bottom: 0; */
    /* width: 100%; */
    /* height: 40%; */
}
 .fuygy_tri {
        margin-left: 0;
    }
 .geyuh_tri {
    padding-bottom: 15px;
    margin-bottom: 8px;
}
 .wedf_tri {
        margin-bottom: 8px;
    }
 .aminities-heading1 h1 {
    font-size: 30px!important;
}
.aminities-heading-txt {
    font-size: 18px;
    margin-top: 10px;
    text-transform: none;
    text-align: center;
    color: black;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: normal;
}
 .amenities-container {
    transition: all 0.3s ease;
}
 .amenities-container .common-flip {
    width: 100%;
    min-height: 130px;
    cursor: pointer;
}
.Amenitiy-box {
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
}
.amenities-container .common-flip .common-box {
    /* transform-style: preserve-3d; */
    backface-visibility: hidden;
    position: absolute;
    width: 99.80%;
    height: 99.80%;
    -webkit-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.project-amenities-icon-desc {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    text-align: center;
    transform: translateZ(90px);
    padding: 10px;
}
.project-amenities-icon-desc .amenities-text{
    margin-left: 0;
}
picture {
    display: block;
    
}
.project-amenities-icon-desc img {
    width: auto;
    height: 45px;
    color:white;
    margin: 0 auto 10px;
}
.amenities-text span {
    font-size: 14px;
    font-weight: 400;
}
amenities-container .common-flip .common-box {
    /* transform-style: preserve-3d; */
    backface-visibility: hidden;
    position: absolute;
    width: 99.80%;
    height: 99.80%;
    -webkit-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
.Amenitiy-box .boxx2 {
    transform: rotateX(0) rotateY(-180deg);
    background-color: #002f17;
    color: #fff;
}
.Amenitiy-box:hover .boxx2 {
    transform: none;
}
.columns.is-mobile.is-multiline.is-gapless.project-amenities-cols {
    display: flex;
    flex-wrap: wrap;
    padding-top:25px;
    justify-content: center;
}


/*....gallery section csss...*/


.gallery-imgg {
    box-sizing: border-box;
    list-style-type: none !important;
    margin: 0;
    flex-shrink: 0;
    /* margin-right: 30px; */
    
}
.gallery-part {
    /* position: relative; */
    /* border: 1px solid #D7D7D7; */
    padding: 14px;
    position: relative;
}
.gallery-part:before {
    content: "";
    position: absolute;
    width: 90.3%;
    height: 90%;
    top: 17px;
    left: 18px;
    background: #002f17;
    z-index: 1;
    opacity: 0;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.stock-image, .actual-image, .artistic-impression {
    position: relative;
}
.gallery-imgg img {
    width: 100%;
    height:100%;
}
section.gallery-section {
    padding: 40px 0;
}
 .actual-image::after {
    content: "Actual Image";
}
.stock-image::after, .actual-image::after, .artistic-impression::after {
    content: "Artistic Impression";
    position: absolute;
    bottom: 6px;
    right: 10px;
    width: auto;
    height: auto;
    max-width: fit-content;
    z-index: 9;
    color: #fff;
    font-size: 10px;
    font-weight: 400;
    text-shadow: 1px 1px #000000;
}
.gallery-part .gallery-part-icon {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    left: 0;
    right: 0;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 9;
}
.gallery-part .gallery-part-icon svg {
    width: 40px;
    height: 40px;
    color: #fff;
}
.gallery-part:hover:before {
    opacity: 0.5;
}


/*...Configurations section css...*/


.splide__track {
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.splide.is-active .splide__list {
    display: flex;
}
.splide__list{
    margin: 0 !important;
    padding: 0 !important;
    width: -webkit-max-content;
    width: max-content;
    will-change: transform;
}
.splide--draggable>.splide__track>.splide__list>.splide__slide {
    -webkit-user-select: none;
    user-select: none;
}
@media screen and (max-width: 1599px) {
    .configurations-items {
        padding: 70px 30px;
    }
}
.configurations-items {
    border: 1px solid #D7D7D7;
    /*padding: 100px 40px;*/
    position: relative;
    overflow: hidden;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.configurations-items::before {
    /* position: absolute; */
    content: "";
    /* top: 0; */
    /* left: 0; */
    /* width: 100%; */
    /* height: 100%; */
    /* background-image: url(../images/element/configuration-element.svg); */
    /* background-size: contain; */
    /* opacity: 0.5; */
    /* background-position: right; */
    /* background-repeat: no-repeat; */
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    /* -webkit-transition: all 0.3s linear; */
    /* transition: all 0.3s linear; */
}
.configurations-items span {
    font-size: 18px;
    font-weight: 400;
    display: block;
    margin: 30px 0;
    text-align:center;
}
@media screen and (max-width: 1599px) {
    .configurations-items h4 {
        font-size: 20px;
    }
}
.configurations-items h4 {
    font-size: 24px;
    line-height: normal;
    text-transform: uppercase;
    font-weight: 300;
    text-align:center;
}


#configurations-slider .splide__slide .theme-btn {
    border: 1px solid #ffffff;
    padding: 7px 35px;
}
.theme-btn:hover{
       background-color: #002f17;
       transition: all 0.3s linear;
       color: #fff;
       border: 1px solid white;
}
.theme-btn {
   position: relative;
   background: #000000;
   text-decoration: none;
   border: 0;
   color: #fff;
   padding: 8px 6px;
   font-size: 15px;
   text-align: center;
   line-height: 24px;
   font-weight: 600;
   text-transform: uppercase;
   display: flex;
   justify-content: center;
   margin: auto;
   width: 144px;
}
.theme-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background: #ffffff;
    z-index: -1;
    border-radius: 0px;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.Configurations-div{
    position:relative;
}
.Configurations-div:before{
    position: absolute;
    content: "";
    /*top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://tenxhabitatraymondrealty.com/media/images/element/configuration-element.svg);
    background-size: contain;
    opacity: 0.5;
    background-position: right;
    background-repeat: no-repeat;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;*/
}
.configurations-ul{
    list-style:none;
    /* margin-right: 45px; */
    width: 300px;
}
button.owl-prev span, button.owl-next span{
    padding: 4px 15px;
    border-radius: 50px;
    color: black;
    font-size: 27px;
    border: 1px solid black;
    background: #f5f5f5;
}
/*.owl-theme .owl-nav [class*=owl-]:hover{
    background:black!important;
    color:white;
    border-radius:46%;
}*/
button.owl-prev span:hover, button.owl-next span:hover{
    color:white;
}
section.configurations-section {
    padding: 40px 0;
    background: #f0f0f0;
}


/*....Floor Plan section csss....*/
   /*.floor-part:hover:before {
    position: absolute;
    z-index: 2;
    background: #002f173b;
    width: 100%;
    height: 100%;
    display: block;
}*/
.floor-part:before {
    content:"";
}
.floor-part img {
    filter: blur(1px);
    width: 100%;
    padding: 0;
    border-radius: 0;
}
.floor-part img:hover{
    position:relative;
    /*z-index:-1;
     background:#ec1c3c6b;*/
}
.jlll .jnj:hover + .patient-card1 {
  background-color: #8b1981; /* div2 का background बदल जाएगा */
}
.enquiry-btn  {
    background:#ec1c3c6b;
}
.floor-part {
    /* height: 212px; */
    width: 100%;
    border: 1px solid grey;
    position: relative;
    transition: background-color 0.3s ease;
    padding: 0px;
    /* margin: 16px; */
    position: relative;
    /* top: 0px; */
}
.floor-part:hover{
    /*background:#ec1c3c6b;
    border:none;*/
}
.enquiry-btn:hover{
     background-color: #002f17;
     transition: all 0.3s linear;
     border:1px solid white;
}
.tower-heading{
    text-align: center;
    padding: 10px;
    text-transform: uppercase;
    font-weight: bold;
}
.floor-part a{
    text-decoration:none;
}
.Floor-section{
    padding: 40px 0;
}
.enquiry-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    top: -120px;
    background: black;
    color: white;
    /* text-decoration: none; */
    padding: 10px;
    width: 170px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

/*...location section csss...*/


section.location-section {
    padding: 25px 0 45px;
    background: #f0f0f0;
}
.location-map {
    /* background: white; */
    /* padding: 10px; */
    /* box-shadow: rgba(17, 121, 239, 0.15) 0px 2px 5px 0px; */
}
.top-part{
    padding-top:25px;
    padding: 0 20p;
}
.eqd-accordion {
    /* border: 3px solid black; */
    border-right: 3px solid #a9623b;
}
.content-accordian {
  max-width: 740px;
  /* margin: 20px auto; */
}

.eqd-accordion__heading {
  margin-bottom: 5px;
  font-size:15px;
  /* border-bottom: 1px solid goldenrod; */
  box-shadow: inset 1 9px 5 rgb(201 165 51);
}

.eqd-accordion__button {
    border: 0;
    border-radius: 0;
    box-shadow: rgba(17, 121, 239, 0.15) 0px 2px 5px 0px;
    justify-content: normal;
    text-align: left;
    padding: 0;
    color: black;
    background-color: #f2f2f2;
    /*background-image: url('../images/plus-icon.png');*/
    /* background-image: url('../images/icon/hospital.png'); */
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 30px;
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    margin: 0;
    padding: 1rem 3.5rem 1rem 1.25rem;
    text-decoration: none;
    width: 100%;
    text-transform: uppercase;
    font-family: sans-serif;
    margin-bottom: 10px;
}
.connectivity{
      background-image: url('../images/icon/connectivity.png')!important;
     background-size: 30px!important;
}
.school{
      background-image: url('../images/icon/school.png')!important;
     background-size: 30px!important;
}
.shopping{
      background-image: url('../images/icon/shopping.png')!important;
     background-size:30px!important;
}

.eqd-accordion__content {
    color: gray;
    background-color: #fff;
    margin-top: 0;
    overflow: auto;
    padding: 0 22px 0;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 5px;
    margin-top: 0px;
}
/*.accordion {
  background-color: #343434;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 17px;
    transition: 0.4s;
    margin-bottom: 6px;
    text-transform: uppercase;
    font-weight: bold;
}
 .accordion:hover {
  background-color: #736d6d; 
}
.panel {
    padding: 10px 18px;
    display: none;
    background-color: white;
    overflow: hidden;
    margin-top: -8px;
    box-shadow: rgba(17, 121, 239, 0.15) 0px 2px 5px 0px;
    font-size: 14px;
    margin-bottom: -9px;
    line-height: 17px;
}
.accordion-part {
  width: 95%;
  padding-top:65px;
  margin: 0 auto;
}
i.fa.fa-plus.plusicon {
    float: right;
    padding-right: 5px;
}*/

/*....testimonial video csss...*/


.theme-block {
    position: relative;
    border: 1px solid #D7D7D7;
    height: 100%;
    width: 100%;
}
.theme-video .theme-block:before {
    opacity: 0.5;
}
img.youtube-icon {
    position: relative;
    top: -25px;
    left: -2px;
    width: 60px;
}
.theme-block:before {
    /* content: ""; */
    /* position: absolute; */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* background: #d89f35; */
    z-index: 1;
    opacity: 0;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.theme-video .theme-block .theme-block-icon {
    opacity: 1;
}
@media screen and (max-width: 1599px) {
    .theme-block-icon.video-icons {
        width: 60px;
    }
}
.theme-block-icon.video-icons {
    width: 80px;
    height: auto;
}
.theme-block .theme-block-icon {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    left: 0;
    right: 0;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    z-index: 9;
}
.video-main{
    width:100%;
    height: 100%;
    object-fit: cover;
}
section#Testimonial-section {
    padding: 50px 0;
}
.theme-video{
    display:flex;
    justify-content:center;
    margin:auto;
}
.video-testimonial{
    display:flex;
    justify-content:center;
}


/*...Raymond section css...*/


.aminities-heading1 h1{
    font-size: 34px;
    line-height: 44px;
    text-transform: uppercase;
    position: relative;
    font-weight: 300;
    padding-bottom: 12px;
    font-family: sans-serif;
    font-weight: 600;
    color: #002f17;
    position: relative;
    margin-bottom: 20px;
}
section.Raymond-section {
    padding: 50px 0 220px;
    background: #ffffff;
    background-image: url(../images/single_about_bg.jpg);
    background-position: bottom;
    background-size: 100%;
    background-repeat: no-repeat;
    padding-bottom: 200px;
}
.Raymond-imgg img{
    width:100%;
}
.Raymond-txtt p{
    font-size:14px;
    color: gray;
}
.Raymond-txtt{
    padding-left: 0;
    padding-top: 0;
    text-align: center;
}


/*....contact section css...*/


section.contact-section {
    padding: 50px 0;
    background-image:url(../images/contact.png);
    background-size: cover;
    background-position: center;
    background-color: #343434;
    background-attachment:fixed;
    /* padding-top: 50px; */
}
.contact-icons {
    color: white;
    position: relative;
}
.contact-icons i{
    background: black;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    box-shadow: 1px 1px 10px 0px #e1e1e1e3;
}
.contact-icons h3{
    /*text-transform: uppercase;*/
    font-weight:bold;
    font-size: 18px;
    font-family: sans-serif;
}
.contact-icons p{
    font-size: 14px;
    padding-right:45px;
}
.form-group {
    margin-bottom: 15px;
}
.form-control {
   background: no-repeat;
    border: none;
    color: white!important;
    position: relative;
    border-bottom: 2px solid white;
    border-radius: inherit;
    display: block;
    width: 100%;
    background: white;
    font-size: 14px;
}
.aminities-heading-txt1 {
    font-size: 13px;
    margin-top: -15px;
    text-transform: uppercase;
    /* text-align: center; */
    color: white;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 25px;
    word-spacing: 1px;
}
.submit-btn:hover{
     background-color: #002f17;
     transition: all 0.3s linear;
     /*border:1px solid white;*/
     color:white;
}
.submit1{
    margin-left:0;
}
button.submit-btn {
    border: none;
    padding: 8px 35px;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
}
.btn-align-center {
    text-align: center;
}
.checkbox {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 10px;
}
.checkbox input[type="checkbox"], .radio input[type="radio"] {
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}
.checkbox input {
    display: inline-block;
    width: inherit !important;
    vertical-align: middle;
}
.dark .checkbox label, .dark .radio label {
    color: #fff;
}
.checkbox label, .radio label {
   padding-left: 28px;
    cursor: pointer;
    font-size: 13px;
    line-height: 21px;
    width: calc(100% - 20px);
    vertical-align: middle;
    color: white;
    margin-bottom: 20px;
    padding-top: 12px;
}
.dark .checkbox label::before, .dark .radio label::before {
    border: 1px solid #ffffff90;
}
.checkbox label::before, .radio label::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    left: 0;
    top: 21px;
    border:1px solid #fff;
    border-radius: 3px;
    background-color: transparent;
    transition: background .1s ease-in-out;
}.checkbox label::after, .radio label::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 6px;
    left: 5px;
    top: 5px;
    border: 1px solid #ffffff;
    border-width: 0px 0 1px 1px;
    transform: rotate(-45deg);
    opacity: 0;
}
 .address-row{
     padding-top:75px;
 }

 /*...scanner section css...*/


 section.scanner-section {
    padding: 50px 0;
}
 .scanner-part {
    font-size: 13px;
    padding-bottom: 15px;
}
 .scanner-main{
     margin-bottom:9rem;
 }

 @media screen and (max-width: 1408px) {
    .scanner-main ul {
        justify-content: center;
        margin-bottom: -20px;
    }
}
.scanner-main ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
@media screen and (max-width: 1408px) {
    .scanner-main ul li {
        width: 20%;
        flex: 0 0 20%;
        margin-bottom: 20px;
        list-style:none;
    }
}
.scan-imgg {
    text-align: center;
    padding: 0 10px;
}
.scan-imgg img {
    height: 120px;
    width: auto;
    margin: 0 auto 10px;
}
.scan-imgg span {
    font-size: 12px;
    line-height: normal;
    display: block;
}



/*...footer-part css...*/


/*footer.footer-section {
    
    background: #f0f0f0;
    color: white;
    padding-bottom: 21px;
    border-top: 1px solid gray;
}
.footer-bottom {
    padding: 15px 0 0;
   
    color: white;
}
.footer-bottom p, .footer-bottom a {
    color: white;
    font-size: 11px;
    text-transform: uppercase;
    text-decoration: none !important;
    margin-bottom: 0px;
    padding-top:8px;
    font-weight: 300;
  
    line-height: 1.3;
}
.copyright-links {
    display: -webkit-flex;
    display: flex;
    
    align-items: center;
    margin-left: 162px;
}*/

/*....black footer part css....*/


.sticky-bottom-form {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 10px 0 0px 15px;
    width: 100%;
    z-index: 999;
    background: #000000;
    max-width: 1344px;
    margin: 0 auto;
    right: 0;
    border: 1px solid rgb(255 255 255 / 60%);
    border-bottom: 0;
}
.col-form-title {
    display: none;
}
.sticky-bottom-form .col-form {
    position: relative;
    width: 25%;
    float: left;
    padding: 0 15px;
    margin: 0 0 10px !important;
}
sticky-bottom-form .col-form .sm-form-control {
    padding: 10px 10px 10px 0;
    border-bottom: 1px solid #fff;
    color: #fff;
    line-height: 19px;
}
.sm-form-control {
    display: block;
    width: 100%;
    border: none;
    padding: 12px 15px 12px 0;
    background-color: transparent;
    border-radius: 0;
    resize: none;
    color: white;
    font-size: 14px;
    border-bottom: 1px solid white;
    /* font-family: 'Poppins'; */
    position: relative;
}
.error-msg1 {
    position: absolute;
    bottom: -12px;
    background: transparent;
    display: flex;
    line-height: 11px;
    background-color: #f00;
    color: #fff;
    font-size: 9px;
}
.theme-btn.white-btn {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
    padding: 7px 35px;
    width: 150px;
    font-size: 14px;
    font-weight: bold;
}
.theme-btn.white-btn:hover{
    background-color: #EC1C3C;
     transition: all 0.3s linear;
     border:1px solid white;
     color:white;
}


/*....responsive csss...*/



@media (max-width:991px){
    .logo-img{
        width: 86px;
    height: 80px;
    left:20px!important;
    }
    /*.overview-para {
    margin-top: -33px;
}*/
    ul.overview-points, .amenities-text span{
        font-size:15px;
        /* padding-left:45px; */
        px; */
    ;
    }
.project-amenities-cols .aminities-main {
        width: 50%;
        flex: 0 0 50%;
        border: 0;
    }
    .project-amenities-icon-desc {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
    .amenities-container .common-flip .common-box{
        position:relative;
        width: 100%;
        height: auto;
    }
.amenities-container .common-flip {width: 100%;min-height: auto;}
.amenities-container .common-flip .common-box:nth-child(2){
    display:none;
}

    .project-amenities-cols .aminities-main img{
         height: 25px;
    }
    .columns.is-mobile.is-multiline.is-gapless.project-amenities-cols{
        /* display: flex!important; */
        /* flex-wrap: wrap; */
    }
    .accordion-part{
        padding-top:0!important;
        padding-bottom:20px;
    }
    .panel{
        font-size:15px;
    }
    .theme-block{
        width:100%!important;
    }
    .youtube-icon{
        position: relative;
    top: -23px;
    left: -19px;
    }
    .Raymond-txtt p {
    font-size: 15px;
    text-align: justify;
    padding-right: 14px;
}
    .address-row{
        padding-top:0!important;
        padding:0 15px;
    }
    .scanner-part {
    font-size: 15px;
    text-align: justify;
    padding: 0 10px 0 10px;
}
    .wrapper .btn.close-btn{
        position: absolute;
    right: 28px;
    top: 22px;
    background: black;
    color: white;
    }
      .scanner-main ul {
        justify-content: center;
        margin-bottom: -20px;
        margin-left: -39px;
    }
     .scanner-main ul li {
        width: 50%;
        flex: 0 0 50%;
    }
    footer.footer-section{
        margin-top:-14rem;
    }
    .sticky-bottom-form .col-form{
        width: 32%;
    }
    .scanner-main{
        margin-bottom:15rem;
    }
        .AppForm {
        width: 100%;
         padding: 15px; 
    }
        
    button.submit-btn {
        margin: 0 80px;
    }
  #myModal .close {
    
    top: 13px;
    
}  
  .overview-points{
      padding-left:45px;
  }
  .ufigbyfbvg{
          border-bottom: 1px solid #80808075;
  }
  .fjigohnbju{
      padding-top:15px;
  }

     #owl-carousel .owl-nav {
        position: absolute;
         margin-top: 10px; 
        top: 134px !important;
        width: 88% !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
     .owl-next {
    position: absolute !important;
    right: -3px !important;
}
       .Floor-section .owl-nav{
    top: 90px;
}
.Floor-section .owl-nav .owl-next{
    right: -12px !important;
}
.Floor-section .owl-nav .owl-prev{
    left:10px;
}
#owl-carousel .owl-nav{
    top:160px !important;
}
.jugbhjdfigbf{
    padding:0 !important;
}   
}
.owl-theme .owl-nav {
    position: absolute;
    margin-top: 0px;
    top: 120px;
    width: 100%;
}
#owl-carousel .owl-nav {
    position: absolute;
    /* margin-top: 10px; */
    top: 192px;
    /* width: 96%; */
    /* left: 39px; */
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
}

.owl-theme .owl-nav {
    position: absolute;
    /* margin-top: 10px; */
    /* top: 125px; */
    /* width: 95%; */
    /* left: 39px; */
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
}
button.owl-prev span:hover, button.owl-next span:hover {
    color: #fff;
}
.configurations-ul {
    list-style: none;
    /* margin-right: 45px; */
    width: 100%;
    padding: 5px;
}
/*.feuigbyfgb{
    list-style: none;
    margin-right: 45px;
    width: 332px;
}*/
.jugbhjdfigbf{
    /* padding-left: 134px; */
    /* padding: 0 67px; */
}
.nav-links li {
    position: relative;
}

.nav-links li a::after {
    content: "";
    position: absolute;
    top: 36px;
    bottom: 0;
    left: 10px;
    width: 0;
    z-index: 10001;
    height: 2px;
    background-color: #002f17;
    transition: width 0.3s ease-in-out;
}

.nav-links li a:hover {
    color: #002f17;
    text-decoration: none;
}

.nav-links li a:hover::after {
    width: 85%; 
}
.about-section{
    padding: 50px 0;
    background-image: url(../images/about.png);
    /* background-position: bottom; */
    /* background-size: cover; */
    /* background-blend-mode: overlay; */
    /* background-color: #f8fbfff5; */
    /* background-repeat: no-repeat; */
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
    background-blend-mode: overlay;
    background-color: #ffffff3b;
}
.ifhuihyfu{
        color: #707070;
    font-family: EB Garamond;
}
.fgbvfygvf{
    /* border-right: 1px solid #8080808f; */
}
.Amenities-section{
    position: relative;
    text-align: center;
    overflow: hidden;
    /* background-image: url(../images/Assistance_bg.png); */
    background: url(../images/bg2.jpg);
    background-size: cover;
    transition: all 500ms ease-in-out;
    padding: 50px 0;
    background-attachment: fixed;
    background-blend-mode: overlay;
    background-color: #000000ad !important;
}
@media (max-width: 768px) {
    .ucfgaebyfhug1{
         display:none;
    }
    .owl-theme .owl-nav{
        width:88% !important;
    }
    .ihfbiugf{
        position: absolute !important;!i;!;
        /* margin-top:20px ; */
        align-content: center;
        /* left: 80px !important; */!i;!;
        /* top: 50px; */
        /* margin-bottom: 10px !important; */!i;!;
    }
    .fheuigf{
        width:141px;
    }
    .gallery-imgg{
        margin-right:25px !important;
    }
    .gallery-imgg .owl-nav .owl-next{
    position: absolute !important;
        right: -4px !important;
}
    .configurations-ul{
        width:310px !important;
    }
    footer.footer-section {
    /* margin-top: -8rem; */
    margin-bottom: 88px !important;
}
    footer {
        width:100%;
    }
    .footer-container{
        width:100%;
    }
    .footer-logo{
        width:100%;
    }
    .footer-logo{
        min-width:200px !important;
        border-bottom: 1px solid #80808094;
        padding-bottom: 20px;
    }
    .footer-links{
        width:100%;
        margin-left:0px !important;
        padding:0px;
        padding-top: 20px;
    }
    .fgbyuhjfbvg{
        text-align:center;
        width:100%;
    }
    .copyright{
       padding:10px 0;
       margin-left:0!important;
    }
    .copyright-links{
        margin-left:10px !important;
    } 
    section.about-section{
        padding-top:60px !important;
    }
    .copyright p{
        line-height:25px!important;
    }
}
.project-amenities-icon-desc picture{
       filter: invert(1); 
}
.white-text{
    color:white;
}
.gallery-section{
 position: relative;
    text-align: center;
    overflow: hidden;
    /* background-image: url(../images/Assistance_bg.png); */
    /*background: url(../images/gallery-bg.png);*/
    background-size: cover;
    
}
a.galleryDemo {
    position: relative;
}
.configurations-items{
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    /* text-align: center; */
    overflow: hidden;
    /* background-image: url(../images/Assistance_bg.png); */
    /* background: url(../images/1bhk.jpg) center center no-repeat; */
    /* background-size: cover; */
    object-fit:contain;
    background-blend-mode: overlay;
    background-color: #000000ab !important;
    color:white;
    margin: 0;
}


.configurations-items2{
    position: relative;
    text-align: center;
    overflow: hidden;
    /* background-image: url(../images/Assistance_bg.png); */
    background: url(../images/2bhk.jpg) center center no-repeat;
    background-size: cover;
    object-fit:contain;
    background-blend-mode: overlay;
    background-color: #000000ab !important;
    color:white;
    margin: 0 -8px;
}
.configurations-items3{
    /* position: relative; */
    /* text-align: center; */
    /* overflow: hidden; */
    /* background-image: url(../images/Assistance_bg.png); */
    /* background: url(../images/3bhk.jpg) center center no-repeat; */
    /* background-size: cover; */
    /* object-fit:contain; */
    /* background-blend-mode: overlay; */
    /* background-color: #000000ab !important; */
    /* color:white; */
    /* margin: 0 -8px; */
}
.configurations-items3 {
    /* text-align: center; */
    /* overflow: hidden; */
    /* background: url(../images/3bhk.jpg) center center no-repeat; */
    at; */
    /* background-size: cover; */
    /* background-blend-mode: overlay; */
    /* background-color: #000000ab !important; */
    /* color: white; */
    /* margin: 0 -8px; */
}
.ihfbiugf{
    bottom: 0;
    position:absolute;
    /* left: 44px; */
    /* top: 120px; */
    /* margin-top: 17px; */
    color: #fff;
    font-weight: 600;
    z-index: 10;
    /* right: auto; */
    /* text-align: center; */
    width: 100%;
    text-align: center;
    padding-bottom: 10px;
}
.fgbyuhjfbvg{
        /* border-right: 1px dotted #808080c2; */
        color: white;
        display: flex;
        margin-left: 20;
}
/*#Testimonial-section{
    position: relative;
    text-align: center;
    overflow: hidden;
   
    background: url(https://t3.ftcdn.net/jpg/05/52/64/84/360_F_552648480_ixeelxn2RPidJO1m0m6DI13aWvPZiliB.jpg);
    background-size: cover;
    object-fit:contain;
    background-blend-mode: overlay;
    background-color: #fff7f700 !important;
    color:white;
}*/
.white-text h1{
        /* color: #ffa1a6; */
}
.configurations-items h4{
    color:white;
}
.contact-icons h3{
    /* color:#ffa1a6; */
}
.aminities-heading2 h1{
    /* color:#ffa1a6; */
}
/*.AppForm{
position: relative;
    text-align: center;
    overflow: hidden;

    background: url(https://t3.ftcdn.net/jpg/05/52/64/84/360_F_552648480_ixeelxn2RPidJO1m0m6DI13aWvPZiliB.jpg);
    background-size: cover;
    object-fit:contain;
    background-blend-mode: overlay;
    background-color: #fff7f700 !important;
    color:white;
}*/
.ucfgaebyfhug{
    position: relative;
    /* text-align: center; */
    /* overflow: hidden; */
    /*background: url(https://t3.ftcdn.net/jpg/05/52/64/84/360_F_552648480_ixeelxn2RPidJO1m0m6DI13aWvPZiliB.jpg);*/
    /* background-size: cover; */
    /* object-fit:contain; */
    /* background-blend-mode: overlay; */
    /* background-color: #fff7f700 !important; */
}
@media (min-width: 576px) {
    .modal-dialog {
         max-width: 1320px; 
        margin-right: auto;
        margin-left: auto;
    }
}
.ucfgaebyfhug1{
    margin:0px;
    padding:0px;
    /* border: 1px solid rgba(0, 0, 0, .2); */
    /* box-shadow: 0 3px 9px rgba(0, 0, 0, .5); */
}

.owl-prev{
    left: 27px;
    position: absolute;
}
.owl-next{
    position: absolute;
    right: 19px;
}

.feuigbyfgb{
    /* margin:0 30px; */
    /* margin: 0px; */
    /* width: 332px; */
    margin: 0 15px;
    /* padding: 10px; */
}
.configurations-section .owl-nav{
    top: 170px;
}
.configurations-section .owl-next{
    right: 19px;
}
.configurations-section .owl-prev{
    left: 0;
}

.Floor-section .owl-nav{
    top: 90px;
}
.Floor-section .owl-nav .owl-next{
    right: 34px;
}
.Floor-section .owl-nav .owl-prev{
    left:10px;
}
.project-amenities-icon-desc picture img{
    filter: invert(1);
}
/*.floor-part img{
    padding:25px 0;
}*/
.counter-block .txt-para{
    /* text-align:center; */
}
@media(min-width:768px){
    .fabcfhybvg{
    border-right:none !important;
}
.fjabhvvb{
    border-bottom:none !important;
}
}
footer {
  background-color: #191919;
  color: #ffffff;
  font-family: Arial, sans-serif;
  padding: 20px 20px 0;
  padding-top: 30px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.copyright p{
    color:white;
    line-height: 38px;
    margin-bottom: 0;
    font-size: 13px;
}
.footer-logo {
  flex: 1;
  min-width: 400px;
}

.footer-logo img {
  width: 90px;
  align-content: center;
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  margin: 10px;
}

.footer-logo p {
  margin: 15px 0;
  line-height: 1.6;
  font-size: 14px;
}

.social-icons a {
  color: #ffffff;
  margin-right: 10px;
  font-size: 20px;
  text-decoration: none;
}

.footer-links {
  flex: 2;
  display: flex;
  justify-content: space-between;
  margin-left: 169px;
}

.footer-links div {
  margin-right: 20px;
}

.footer-links h4 {
  font-size: 21px;
  margin-bottom: 10px;
  /* color: #ffa1a6; */
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  text-decoration: none;
  /* color: #ccc; */
  position: relative;
  transition: color 0.3s ease-in-out, text-decoration 0.3s ease-in-out;
  border-bottom: 1px solid transparent;
}

.footer-links ul li a:hover {
  color: gray;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #666666;
  border-top: 1px solid #fff;
}
a.com {
    color: #fff;
    font-weight: bold;
}
.logos{
    width: 110px;
    background: white;
    height: 110px;
}
.copyright{
    margin-left: 103px;
}
.footer-links li a::after{

}
.footer-links li {
    position: relative;
}

.footer-links li a::after {
    content: "";
    position: absolute;
    top: 24px;
    bottom: 0;
    left: 0px;
    width: 0;
    z-index: 10001;
    height: 2px;
    background-color: gray;
    transition: width 0.3s ease-in-out;
}

.footer-links li a:hover {
    color: #bf272e; 
    text-decoration: none; 
}

.footer-links li a:hover::after {
    width: 100%; 
}
.fheuigf{
    width: 178px !important;
    padding: 20px;
    /* padding-right: 0px; */
}
.fhyvbgy{
    border-right:1px solid #9893935c;
    /* padding-right: 47px; */
}
.ihofuigh{
    color:#ffa1a6;
    font-weight:bold;
}
.duihu7gfv{
    color:#d89f35;
}
.main-bottom-txt {
    color: #d89f35;
    font-family: sans-serif;
}


/*...new footer csss...*/


.rs-footer {
    color: #e8e8e8;
    margin-top: 0;
}

.rs-footer .footer-contact-desc {
    margin: 0;
    background: #d5a63a;
    text-align: center;
    padding: 35px;
    position: absolute;
    left: 0;
    right: 0;
    margin: -100px auto 0;
}
.rs-footer .footer-contact-desc .contact-inner {
    position: relative;
}
.rs-footer .footer-contact-desc .contact-inner i {
    color: black;
    background: white;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    align-items: center;
    margin-bottom: 15px;
    box-shadow: 1px 1px 10px 0px #e1e1e1e3;
    line-height: 40px;
}

.rs-footer .footer-contact-desc .contact-inner .contact-title {
    margin-bottom: 10px;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    font-family: sans-serif;
}
.rs-footer .footer-contact-desc .contact-inner .contact-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    font-size: 15px;
}

.rs-footer .footer-contact-desc div[class*="col-"] + div[class*="col-"] .contact-inner:before {
    left: 3px;
}

.rs-footer .footer-top {
    padding-top: 26px;
}
.rs-footer .footer-title {
    margin-bottom: 20px;
    padding-bottom: 5px;
    color: #ffffff;
    font-size: 18px;
    position: relative;
    font-weight: 500;
    font-family:sans-serif;
}
   .rs-footer .footer-title:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -5px;
        height: 1px;
        width: 50px;
        background-color: #fff;
    }

.rs-footer .footer-top .sitemap-widget li {
 
    line-height: 28px;
}
.rs-footer .container {
    position: relative;
}
.rs-footer .footer-top .sitemap-widget li a {
    color: #e8e8e8;
    font-size:13px;
    position: relative;
}
.rs-footer .footer-top .sitemap-widget li a i {
    padding-right: 10px;
}
.inner-div{
    border-right: 1px solid #f1e3a8;
}

.footer-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 15px;
}
.tweet-feed ul li {
   border-bottom: 1px solid #313131;
    padding: 5px 0px 7px;
    list-style: none;
    font-size: 14px;
}
.tweet-feed ul li a{
    color:white;
}
i.fa.fa-long-arrow-right {
    color: #fff;
    padding-right: 5px;
}
.tweet-feed {
    margin-left: -28px;
}
.address p {
    color: #fff;
    text-transform: capitalize;
    font-size:14px;
}
.address i {
    font-size: 16px;
    color: #fff;
    padding-right: 4px;
}
.address strong {
    font-size: 14px;
    color: #cfa670;
  
    padding-left: 10px;
}

.address p a {
    color: #fff;
    text-transform: none;
}

.open-time strong, .address strong {
    font-size: 13px;
    color: #cfa670;
  
    padding-left: 10px;
}

.newsletter_form input {
    padding: 0 12px;
    width: 100%;
    border: 0px;
    color: rgb(119, 119, 119);
    height: 43px;
}
.yufgfed_tri {
    display: flex;
}
.btn-default {
   background-color: #002f17 !IMPORTANT;
   border: 0!important;
   color: #fff;
   outline: 0!important;
   box-shadow: none!important;
   font-weight: 600;
   border-left: 1px solid gray !important;
}
.btn-default:hover {
   background-color: #fff;
   border: 2px solid rgb(117 89 24);
   color: #fff !important;
}
.newsletter_form button {
    position: relative;
    right: 0;
    top: 0;
}
.social-menu {
    position: relative;
    color: white;
    padding-bottom: 45px;
}
.social-menu ul {
    position: absolute;
    margin-left: -31px;
    list-style: none;
    display: flex;
}
.social-menu ul li:first-child {
    margin-left: 0;
    margin-right: 15px;
}
.social-menut ul li {
    position: relative;
    display: inline-block;
    margin: 0 0 0 3px;
    list-style:none;
}
.social-menu ul li:nth-child(1) a {
    background-color: #3b5998;
}
.social-menu ul li a {
    display: block;
    width: 33px;
    height: 33px;
    background-color: #0077B5;
    color: #fff;
    line-height: 33px;
    text-align: center;
}
li{
    text-decoration:none;
}
.social-menu ul li a {
    position: relative;
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    transition: .6s;
    box-shadow: 0 5px 4px rgba(0, 0, 0, .5);
}
h5.location-one__tab-content-contact-title {
    color: white;
    margin-bottom: 12px;
    font-family: sans-serif;
}
.social-menu ul li .fab {
   font-size: 15px;
    line-height: 35px;
    /* transition: .3s; */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.social-menu ul li:nth-child(2) a {
    background-color: #E4405F;
}
i.fab.fa-instagram {
    background: radial-gradient(circle at 108% 45%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-radius: 50%;
}
i.fab.fa-youtube {
    background: red;
    border-radius: 50%;
}
.links-div{
    margin-left:15px;
}
.tweet-feed ul li a:hover{
    color: #fff;
}



/*...top developers section css...*/


.upc-event-box.relative {
   border: 1px solid #dadce0;
   border-radius: 8px;
   background: #fff;
   box-shadow: rgba(17, 121, 239, 0.15) 0px 2px 5px 0px;
   width: 100%;
   height: 315px;
}
.upc-event-box.relative:hover{
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.20);
    border: 2px solid #a9623b;
}
section.top-developers-section {
   padding: 50px 0;
   background-image: url('../images/backround-bg.jpg');
    object-fit: cover;
    background-position: top;
}
.developer-img {
    width: 96%;
    display: flex;
    justify-content: center;
    margin: auto;
    padding: 6px 0 0;
}
.iugbyu_tri {
    width: 100%;
}
img.edfed_tri {
    width: 125px!important;
}
.text-part {
    margin-bottom: 4px;
}
.logo-img-developer {
    margin-bottom: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #80808069;
    width: 100%;
}
.lower-txtt {
   font-size: 14px;
   color: #000000;
   font-weight: 500;
   margin-top: 0;
   /* font-style:italic; */
}
.fdxfef_tri {
    text-align: center;
    padding: 8px 0;
    font-size: 15px;
    color: grey;
}

.development-icons i{
     padding-top: 6px;
     background: white;
     color: #a9623b;
     /*box-shadow: 1px 1px 10px 0px #e1e1e1e3;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    justify-content: center;
    margin: auto;*/
}
.development-icons {
   font-size: 14px;
   color: #000;
   font-weight: 500;
   margin-bottom: 7px;
}
.icons-div{
    margin-top:-11px;
}
.lower-txt-para{
    padding-top: 0;
}
.developer-txtt {
    padding: 0 15px;
}
.dlf-img{
    width:70px!important;
}
.developer-top{
    display:flex;
    justify-content:center;
    margin:auto;
}
 .developer-slider .owl-nav {
  display:none;
}


 /*....new testimonial csss...*/



 .section-video{
     background-image: url('../images/testimonial-bg.png');
     background-color: #000000bf !important;
 }
 /*.testimonial {
    height: 220px;
}*/
 .img-circle {
    width: 40px;
    height: 40px;
    position: absolute;
    background: #4e4eba;
    border-radius: 50%;
    box-shadow: rgba(17, 121, 239, 0.15) 0px 2px 5px 0px;
}
 .img-circle p{
     display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin-top: 7px;
    font-size: 18px!important;
 }
 .sub-sec-third {
    padding: 20px 20px 0;
    background: #fff;
    box-shadow: 0 2px 10px 0 rgb(1 1 1 / 10%);
    border-radius: 10px;
    margin: 30px 0 0;
    border-bottom: 6px solid #002f17;
}
 .img-sec-third {
    display: flex;
    justify-content: space-between;
}
 .img-seconds {
    display: flex;
}
 .content-third {
    padding-left: 55px;
}
 .content-third h4 {
    color: black;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 0;
    margin-top: 0;
    font-family: sans-serif;
}
 .sub-sec-third p {
    text-align: justify;
    font-size: 13px;
}

.img-third {
    display: flex;
    align-items: center;
}
.star-sec {
    margin-bottom: 12px;
}
.indexdiv1 {
    text-align: right;
}
.img-sec-third .img-seconds img {
    width: 40px !important;
    border-radius: 50%;
    height: 40px;
}
.star-sec i {
    display: inline-block;
    color: #002f17;
    padding: 0 2px;
    font-size: 11px;
    margin-top: -3px;
    margin-bottom: 4px;
}
.content-third p{
    text-align: justify;
    font-size: 13px;
    padding-top: 3px;
    font-style: italic;
    font-weight: bold;
    color: grey;
}


/*...new location css...*/


.about-map{
    display:flex;
    flex-direction:row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    background: white;
    -webkit-box-shadow: 0 0px 10px 3px #638ccc;
    box-shadow: 0 0px 10px 3px #638ccc;
    margin-top:35px;
}

.text-section {
    width: 106%;
    margin-left: -12px;
}
.map-location{
    width: 103%;
    margin-left: -4px;
    height: 100%;

}
@media (max-width:992px){
    .about-map {
        display:block!important;
    }
    .text-section{
        margin-left: 0;
    min-width: 340px;
    margin-top: 15px;
    }
    .map-location{
        min-width: 340px;
    }
    .iframe-location{
        height:300px;
    }

.rs-footer .footer-top {
        padding-top: 0;
    }
    .rs-footer .footer-title{
        padding-top:15px;
    }
    .rs-footer .footer-contact-desc{
        margin: -128px auto 0px;
    }
    .fuegbhj_tri img{
        height:330px!important;
    }
    .fuygy_tri{
        padding:0 15px!important;
    }
    .wedf_tri{
        font-size:20px!important;
        line-height:29px!important;
    }
    .wedfgrf_tri{
        font-size:18px!important;
    }
    .fheuigf{
        width:100%!important;
        padding:10px!important;
    }
}
span.teg_tri {
    display: block;
    font-size: 12px;margin-left:6px;
}
p.icon-map {
    display: flex
;
}
/*...popup css....*/



.modal-dialog {
    width: 700px;
    margin: 30px auto;
}

@media (min-width: 768px) {
    .modal-content {
        box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    }
   
}
.modal-content {
    position: relative;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .2);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    width: 100%!important;
    position:relative;
    /*left:-60px;*/
    border-radius:0!important;
}
#myModal .close {
    font-size: 25px;
    font-weight: 700;
    line-height: 0;
    width: 30px;
    height: 30px;
    position: absolute;
    color: #002f17;
    text-shadow: 0 1px 0 #fff;
    opacity: 1;
    z-index: 9999;
    right: 8px;
    left: auto;
    top: 5px;
    align-items: center;
    display: flex;
    justify-content: center;
    background: #fff;
    border: 0px solid black;
}
.modal-body {
    padding-bottom: 1px;
}
.modal-body {
    position: relative;
}
.AppFormLeft {
    padding: 20px;
    /* background-image: url(https://tenxhabitatraymondrealty.com/media/images/element/form-theme-element.svg); */
    /* background-attachment: fixed; */
    /* background-position: right; */
    /* background-size: cover; */
    /* background: no-repeat; */
}
.AppFormLeft p{
    font-size: 18px;
    font-weight: 600;
    padding-right: 40px;
    margin-bottom: 8px;
}
.popup-txt{
    margin-top: 0;
    padding: 0;
    font-size: 13px;
    color: #959595;
}
.btn-align-center .btn-color-blue {
    background-color: #4a68af;
    color: #fff;
    border-color: #4a68af;
}
.AppForm .AppFormRight {
    background-image: url(../images/mother-baby.jpg);
    height: 440px;
    background-size: cover;
    background-position: center;
    width:107%;
    position:relative;
    top:-15px;
    margin-bottom:-30px;
}
.modal.show .modal-dialog {
    transform: none;
}
.modal-dialog {
    width: 40%;
    margin: 30px auto;
    position:relative;
    top:15px;
}
.AppFormLeft .form-control {
   box-shadow: none;
   margin-top: 13px;
   width: 100%;
   padding: 7px 10px;
   background:no-repeat;
   border: 1px solid #dadce0;
   border-radius: 5px;
}
.popup-btn{
    background:black;
    color:white;
}
.popup-checkbox{
    padding-left: 0;
    cursor: pointer;
    font-size: 13px;
    line-height: 21px;
    width: calc(100% - 20px);
    vertical-align: middle;
    color: black;
    /* letter-spacing: 1px; */
    margin-bottom: 20px;
}
span.ggyg_tri {
    display: block;
}
.popup-checkbox label {
    display: flex;
    align-items: flex-start;
}
input.tyfgyug_tri {
    margin-right: 10px;
    margin-top: 4px;
}
.popup-checkbox label:before {
    content: "";
    /* position: absolute; */
    /* width: 20px; */
    /* height: 20px; */
    /* left: 17px; */
    /* border: 1px solid black; */
    /* border-radius: 3px; */
    /* background-color: transparent; */
    /* transition: background .1s ease-in-out; */
}
.popup-form{
    color:black!important;
}
@media only screen and (max-width: 991px) {
    .modal-dialog {
       width: 100%!important;
       margin: 0 auto;
       position: relative;
       /* left: 69px; */
    }
}
@media (max-width: 991px) {
    .modal-content {
       /* width: 132%!important; */
       margin: auto;
       /* left: -108px; */
       top: 32px;
    }
    .popup-checkbox label:before{
        left:16px;
    }
    .AppFormLeft p{
        padding:22px 15px 10px 0px;
        padding-right:0!important;
    }
    .popup-txt{
        padding-right:0!important;
    }
    .top_links_n{
        display:none;
    }
}
@media only screen and (max-width: 991px) {
    .AppFormLeft {
        padding: 0px!important;
        margin-bottom:30px;
    }
}
@media only screen and (max-width: 991px) {
    .AppFormLeft h2 {
        text-align: center;
    }
}
@media only screen and (max-width: 991px) {
    .AppForm .AppFormRight {
        height: 370px;
        width:104%;
    }
}
 .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: block !important;
}

 .fuegbhj_tri {
    height: 500px;
    
}
#new_carousel .owl-carousel .owl-item img{
    height :100%;
    object-fit:cover;
}
 .owl-theme .owl-nav [class*=owl-]:hover {
    background: none;
    }

 .owl-theme .owl-nav {
    position: absolute;
    margin-top: 0px;
    top: 45%;
    width: 100%;
}
 button.owl-prev span, button.owl-next span {
    padding: 4px 20px;
    border-radius: 50px;
    color: white;
    font-size: 40px;
    border: none;
    background: #002f17;
}
 input#SUBSCRIBEEMAIL {
    color: black !important;
}
 .form-control:focus{
     border:none;
     box-shadow:none;
 }
 .main-bottom-txt {
    color: #002f17;
    font-family: sans-serif;
    font-weight: 600;
    font-size: 30px;
}
 .counter-block h3.text.main-bottom-txt {
    font-weight: 600 !important;
    font-size: 13px;
}
 .AppForm .AppFormLeft .form-control:focus {
    border: 1px solid #dadce0;
}
 .submit-btn:hover {
    background-color: #002f17;
}
 h3.text.main-bottom-txt.geuyfg_tri {
    color: #002f17;
}

 .Raymond-txtt p {
    font-size: 14px;
    color: #212529;
}

section.Raymond-section {
    padding: 50px 0 220px;
    background: #ffffff;
    background-image: url(../images/single_about_bg.jpg);
    background-position: bottom;
    background-size: 100%;
    background-repeat: no-repeat;
    position: relative;
}


section.Raymond-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(255 255 255 / 10%); 
    z-index: 1; 
}
span.plus_icon {
    color: #002f17;
    margin-bottom: 5px;
    font-size: 36px;
    font-weight: bold !important;
}
i.fa.fa-plus {
    color: #fff;
    font-weight: bold;
}










@media only screen and (min-width: 992px) {
    .section-link {
        top: -4.3vw;
        height: 4.3vw;
    }
}
.section-link {
    position: absolute;
    width: 100%;
    background-color: transparent;
    display: block;
}
@media only screen and (min-width: 992px) {
    .section .head {
        display: inline-block;
        color: var(--colorPrimary);
        font-family: 'roboto', 'Helvetica', 'Arial', sans-serif;
        font-size: 1.2vw;
        letter-spacing: 0;
        margin-bottom: 2vw;
        border: 2px solid var(--colorPrimary);
        padding: 7px 20px;
        border-radius: 100px;
    }
}
.nav-link.ami-tab.active {
    color: var(--colorBtn);
    background-color: var(--colorPrimary);
}
.nav-link.ami-tab {
    background-color: transparent;
    color: var(--colorPrimary);
    border: 2px solid var(--colorPrimary);
    border-radius: 0;
}
img.ls-blur-up-is-loading, img.lazyload:not([src]) {
    visibility: hidden;
}
img.gallery-thumb.lazyautosizes.lazyloaded {
    border-radius: 6px;
}
h1.main-bottom-txt.jhfgvbyh_tri {
    /* color: #002f17; */
}










.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    animation: zoom 0.3s ease-in-out;
}

#floor-id .owl-theme .owl-nav {
    position: absolute;
    margin-top: 0px;
    top: 33% !important;
    width: 100%;
}
#gallery .item {
    /* padding: 10px; */
}
#gallery  .img-thumbnail{
    border:none;
}
.hb-wrapper .hb-main-container {
    background-color: rgb(0 0 0 / 86%);
}

@keyframes animate2 {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

.fefge_tri {
    position: fixed;
    top: 40%;
    width: 105px;
    z-index: 9;
    right: 0px;
    left: auto;
}
.social ul {
    list-style-type: none;
    padding: 0;
    transform: translatex(51px);
}
    .social ul li {
        background-color: #002f17;
        border-radius: 30px 0px 0px 30px;
        display: block;
        margin: 3px;
        padding: 6px 8px;
        text-align: left;
        transition: 1s;
        width: 320px;
    }
        .social ul li a {
            color: #fff;
            font-size: 13px;
            margin-bottom: 100px;
            text-decoration: none;
        }
        .social ul li i, .social ul li img {
            background-color: #fff;
            border-radius: 50%;
            color: #002f17;
            font-size: 20px;
            height: 32px;
            margin-right: 14px;
            padding: 7px;
            text-align: center;
            transform: rotate(0);
            width: 32px;
            /* font-weight: 500; */
        }
        .social ul li.facebook:hover {
            background: #3b5998;
            color: #fff;
        }
        .social ul li.instagram:hover {
            background: #ae1ba0;
            color: #fff;
        }
        .social ul li.phone:hover {
            background: #2a68b1;
        }
        .social ul li.view:hover {
            /*background: linear-gradient(135deg, #d44638, #ff6a00);*/
              background: #D44638;

        }
        .social ul li:hover {
            transform: translatex(-70px);
        }
   
.errorspan_tri {
    font-size: 10.6px;
    font-weight: 400;
    color: red;
    position: absolute;
    left: 0;
    /*bottom: 2px;*/
}



.popup_name_tri {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000000ad;
    z-index: 9999;
    display: flex;
    align-items: center;
    text-align: center;
}
.popup_section_tri {
    position: relative;
}
.popup_section_tri {
    margin: auto;
    width: 35%;
    background: white;
    padding: 25px 11px;
    border-radius: 5px;
}
p.heading_tri_p {
    margin-bottom: 6px;
    font-size: 22px;
    color: black;
    margin-top: 15px;
}
p.text_p {
    margin-bottom: 3px;
    font-size: 14px;
    color: black;
}
p.text_p u{
     color: #000;
}
.btnsubmit_new:hover, .btnsubmit_new:active, .btnsubmit_new:focus {
    color: #fff;
}
.col_new_tri_section_new .close_btn:hover {
    background: #316405;
    color: white;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,.5);
}
.col_new_tri_btn_new .btnsubmit_new:hover {
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,.5);
}
.close_btn {
    border: 1px solid #316405;
    color: #316405;
    z-index: 3;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 4px 20px;
    margin-right: 10px;
}
.close_btn span{
    margin:auto;
    font-size: 14px;
}
.col_new_tri_section_new {
    display: flex;    align-items: center;
}

p.contact_num_sec_last a{
    color: #316405;
    font-weight: 600;
}
.changecolor {
    -webkit-animation: NAME-YOUR-ANIMATION 1s infinite;
    -moz-animation: NAME-YOUR-ANIMATION 1s infinite;
    -o-animation: NAME-YOUR-ANIMATION 1s infinite;
    animation: NAME-YOUR-ANIMATION 1s infinite;
}
@-webkit-keyframes NAME-YOUR-ANIMATION {
  0%, 49% {
     background-color: #306405;    border: 1px solid #306405;
 
  }
  50%, 100% {
    background-color: #5ab416;    border: 1px solid #5ab416;
  
  }
}
.col_new_tri_btn_new {
    margin: auto;
    display: flex
;
    align-items: center;
}
.col_new_tri_btn_new .btnsubmit_new {
    border: 1px solid #316405;
    padding: 4px 20px;
    font-size: 14px;
}
.ml10_tri_new {
    margin-left: 10px;
}
.changecolor {
    -webkit-animation: NAME-YOUR-ANIMATION 1s infinite;
    -moz-animation: NAME-YOUR-ANIMATION 1s infinite;
    -o-animation: NAME-YOUR-ANIMATION 1s infinite;
    animation: NAME-YOUR-ANIMATION 1s infinite;
}
.btnsubmit_new {
    background: #316405;
    border: 0;
    outline: none;
    padding: 7px 23px;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
}

.ihfbiugf:before {
    content: "";
    background-image: linear-gradient(#00000000, #000000c7);
    position: absolute;
    bottom: 0px;
    width: 100%;
    left: 0;
    height: 84px;
    /* z-index: 2; */
}
.social ul li.instagram{ 
    background: #ae1ba0;
    color: #fff;
}
.social ul li.phone{
    background: #2a68b1;
}
.social ul li.view{
     background: #0077B5;
}
  .social ul li.view:hover {
           
              background: #0077B5;

        }
.social ul li.instagram i{ 
    color: #ae1ba0;
   
}
.social ul li.phone i{
    color: #2a68b1;
}
.social ul li.view i{
     color: #0077B5;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}
pulse animation {
    box-shadow: rgba(37, 211, 102, 0.5) 0px 0px 0px 0px;
}

.btn-whatsapp-pulse-border {
    bottom: 15px;
    right: 32px;
    animation-play-state: paused;
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    z-index: 9999;
    bottom: 20px;
    right: 25px;
    /* font-size: 33px; */
    display: flex
;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 28px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}
.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 25px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}
.btn-whatsapp-pulse i {
    font-size: 32px;
}
.top_links_n {
    position: absolute;
    right: 23px;
    top: 8px;
    border-bottom: 1px solid #80808040;
}
.top_links_n ul{
       list-style: none;
       display: flex;
       margin-bottom: 8px;
}
.top_links_n ul li a i {
    margin-right: 3px;
}


.top_links_n ul li a  {
  color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 9px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
    /* text-transform: uppercase; */
    letter-spacing: 0.3px;
}

.uegfbyh_tri{
    padding-right:0px !important;
}
.top_links_n i.fa.fa-phone {
   
    color: #007BFF;
}
.top_links_n i.fa.fa-envelope {
    color: #D44638;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-left {
  opacity: 0;
  animation: slideInLeft 1s ease-out forwards;
}


.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}




@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.animate-on-hover {
  opacity: 0;
  transform: translateY(30px);
}


section:hover .animate-on-hover {
  animation: fadeInUp 1s ease-out forwards;
}


section:hover .delay-1 {
  animation-delay: 0.3s;
}
section:hover .delay-2 {
  animation-delay: 0.6s;
}
section:hover .delay-3 {
  animation-delay: 0.9s;
}
i.fas.fa-landmark {
    position: absolute;
    right: 18px;
    font-size: 22px;
    color: #666;
}
.ufgbyh_tri{
    background-image: url(../images/icon/hospital.png);
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 30px;
}

.qr img{
    width: 150px;
}
.newsletter_form.form_style2.mb-4 {
    margin-bottom: 10px !important;
}

.qr p {
    font-size: 14px;
    margin: 0px;
    margin-bottom: 5px;
}
.social-menu {
    margin-top: 25px !important;
}
.qr p span{
    font-weight:600;
}
.uigbyh_tri{
    display:flex;
}
.theme-video {
    display: flex;
    justify-content: center;
    margin: 0 10px;
}
.top_links_n ul li a.ryehui_tri {
    color: green;
    border-radius: 2px;
    margin-top: 0;
    display: inline-block;
    font-size: 13px;
    animation: blink 800ms step-end infinite;
    padding: 5px 8px;
    background: #ffffff;
    margin-left: 10px;
}
@keyframes blink{
    50% {
            background: green;
    color: #ffffff;
}
}
span.uire_tri {
    white-space: nowrap;
}
.aminities-main.dgyu_tri {
    border: 1px solid #dedede54;
    border-top: 0;
}
.Heading_floor {
    position: relative;
}
li.configurations-ul img.transition.img-thumbnail.img-responsive {
    height: 285px;
    object-fit: cover;
}
.rhgr_tri{padding:0;}