
/*--------------------------------------------------------------------- import Fonts ---------------------------------------------------------------------*/

/* Colors */

.primary-color-text{
	color: var(--main-color);
}
.secondary-color-text{
	color: var(--secondary-color);
}

.primary-color-background{
	background-color: var(--main-color);

}
.secondary-color-background{
	background-color: var(--secondary-color);
}

.primary-color-border{
	border-color: var(--main-color);

}
.secondary-color-border{
	border-color: var(--secondary-color);
}
footer svg{
    fill: var(--main-color);
}
.line{
    stroke: var(--main-color);
}

.lightgray-background{
    background-color: #e4e3e1;
}
.background-color-hover:hover{
    background-color: var(--main-color);
}
/* Colors END */


/*--------------------------------------------------------------------- skeleton ---------------------------------------------------------------------*/
html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    color: #666666;
    font-size: 1.6rem;
    font-weight: normal;
    overflow-x: hidden;
    font-family: 'SourceSansPro', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: 0;
    font-weight: 500;
    position: relative;
    padding: 0 0 10px 0;
    line-height: normal;
    color: #111111;
    margin: 0;
    font-family: "Bitter", sans-serif;; 
}
h1, .h1 {
    font-size: 2.8rem;
}

h2, .h2 {
    font-size: 2.0rem
}

h3, .h3 {
    font-size: 1.6rem
}

h4, .h4 {
    font-size: 1.4rem
}

h5, .h5 {
    font-size: 1.2rem
}

h6, .h6 {
    font-size: 1rem
}
@media (min-width: 992px) {
h1, .h1 {
    font-size: 4.8rem;
}

h2, .h2 {
    font-size: 4.0rem
}

h3, .h3 {
    font-size: 2.8rem
}

h4, .h4 {
    font-size: 1.8rem
}

h5, .h5 {
    font-size: 1.6rem
}

h6, .h6 {
    font-size: 1.4rem
}
}

p,.below-hero-text{
	font-size: 1.6rem;
	line-height: 3rem;
}
p a{
    color: var(--secondary-color);
    font-weight: bold;
    text-decoration: none;
}
p a:hover{
    color: var(--secondary-color);
}
@media (min-width: 992px) {
    p,.below-hero-text{
    font-size: 2.6rem;
    line-height: 4rem;
}
}
span{
	font-size: 1.6rem;
	line-height: 1rem;
}
@media (min-width: 992px) {
    span{
    font-size: 2.2rem;
    line-height: 3.5rem;
}
}
.secondary-p{
    line-height: 3.5rem;
}
@media (min-width: 992px) {
   .secondary-p{
    line-height: 6rem;
} 
}
.font-family-1{
    font-family: "Bitter", sans-serif; 
}
.font-family-2{
    font-family: 'SourceSansPro', sans-serif;
}
select, input{
    font-size: 20px;
}
/*cta Buttons*/
a.cta-main-btn{
    text-decoration: none;
}
a.cta-main-btn:hover{
    color: var(--secondary-color);
}
.cta-main-btn{
	border: none;
	padding: 1rem 7rem;
    font-size: 1.8rem;
    font-weight: bold;
    background-color: rgba(255,255,255,.2);
}

@media (min-width: 992px) {
    .cta-main-btn{
    padding: 1rem 8rem;
    font-size: 2.8rem;
}
}
.cta-secondary-btn{
	border: none;
    padding: 1rem 5rem;
    font-size: 1.8rem;
    font-weight: bold;

}
@media (min-width: 992px) and (max-width: 1199px){
    .cta-secondary-btn{
        padding: 1rem 7rem;
        font-size: 2.4rem;
    }
}
@media (min-width: 1200px) {
    .cta-secondary-btn{
        padding: 1rem 9rem;
        font-size: 3.4rem;
    }
}



/*cta Buttons END*/

/* Hero Image */

.logo-main{
	position: absolute;
    left: 25px;
	top: 100px;
    width: 100px;
}
@media (min-width: 572px) {
    .logo-main{
        width: auto;
        max-width: 80px;
}
}
@media (min-width: 992px) {
    .logo-main{
        width: auto;
        max-width: 100px;
}
}
@media (min-width: 1300px) {
    .logo-main{
        width: auto;
        max-width: 160px;
}
}
.black-hero {
    background-color: black;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}
.hero-title{
    z-index: 9;
}
.black-hero .hero-banner{
    opacity: 70%;
}
/* Hero Image END*/

/*Hero h1*/
.hero-title {
  position: absolute;
      margin-top: 25vw;
  /*top: 450px;
  left: 50%;
  transform: translate(-50%, -100%);*/
  font-size: 3.5rem;
  font-weight: bold;
  color: #fff;
  font-family: "Bitter";
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}
@media (min-width: 579px) and (max-width: 991px){
    .hero-title {
  /*top: 43vw;*/
  margin-top: 0;
}
}
@media (min-width: 992px) and (max-width: 1300px){
    .hero-title {
  /*top: 38vw;*/
  margin-top: 0;
}
}
@media (min-width: 1300px) {
    .hero-title {
  margin-top: 0;
  /*top: 35vw;*/
}
}
@media (min-width: 992px) {
    .hero-title {
  
  /*transform: translate(-50%, -100%);*/
  font-size: 6rem;
}
}

/*Hero h1 End*/


/*Below Hero Description*/
.below-hero-text{
    font-family: "Bitter";
}

/*Below Hero Description*/


/*Footer Boxes*/
.box{
display: flex;
  justify-content: center;
  align-items: center;
  
	
}
.image-wrapper {
  position: relative;
  background-color: black;
}

.image-wrapper img {
  max-width: 100%;
  height: auto;
  opacity: 90%;
  transition: 0.3s;
}
.image-wrapper img:hover {
  max-width: 100%;
  height: auto;
  opacity: 70%;
}

.box-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  line-height: 3.5rem;
  font-weight: bold;
  color: #fff;
  font-family: "Bitter";
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  text-align: center;
  z-index: 9;
}
@media (min-width: 768px) and (max-width: 991px){
    .box-title {
        font-size: 3rem;
        line-height: 3.5rem;
    }
}
@media (min-width: 992px) and (max-width: 1199px){
    .box-title {
        font-size: 3.5rem;
        line-height: 4rem;
    }
}
@media (min-width: 1200px) {
	.box-title {
		font-size: 6rem;
        line-height: 7rem;
	}
}
/*Footer Boxes END*/

/* FOOTER  */
.footer-name{
font-size: 2.5rem;
font-family: "Bitter";
}
@media (min-width: 768px) and (max-width: 991px){
    .footer-name{
    font-size: 4.5rem;
}
}
@media (min-width: 992px) {
.footer-name{
       
        font-size: 6rem;
        margin-top: 8rem;
   }
}

.address{
	
        font-family: "Bitter";
    font-size: 2rem;
    line-height: 4rem;
    
    

}
@media (min-width: 768px) and (max-width: 991px){
    .address{
    
        
    font-size: 3.5rem;

}
}
@media (min-width: 992px) {
.address{
	   
        font-size: 5rem;
   }
}
.city{
	font-family: "Bitter";
    font-size: 2rem;
    line-height: 0rem;
    margin: 0;
}
@media (min-width: 992px) {
    .city{
        font-size: 3rem;
        line-height: 4rem;
        margin: 0 11rem;
    }
}
.social-text{
	font-family: "Bitter";
    font-size: 2rem;
    line-height: 5rem;
    text-align: center;
    
}
@media (min-width: 992px) and (max-width: 1199px){
    .social-text{
            font-size: 2rem;
    line-height: 4rem;
    margin-bottom: 0;
    margin-top: 6rem;
    }
}
@media (min-width: 1200px) {
    .social-text{
            font-size: 2rem;
    line-height: 4rem;
    text-align: start;
    margin-bottom: 0;
    margin-top: 6rem;
    }
}
.hours{
	font-family: "Bitter";
    font-size: 1.5rem;
    line-height: 3rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
    .hours{
    font-size: 2rem;
    line-height: 4rem;
}
}
@media (min-width: 1200px){
    .hours{
    font-size: 2rem;
    line-height: 5rem;
}
}
.social-svg {
    width: 4rem;
}
.norealtime-unit a{
    font-size: 1.6rem; 
    text-decoration: none!important;
}
@media (min-width: 1200px){
    .norealtime-unit a{
    font-size: 2.6rem; 
    text-decoration: none!important;
}
}
.fill-social{
    fill: var(--main-color)!important;
}
footer{
	background-color: #e4e3e1!important;
    position: relative;
	
}
footer > section {
	/*background: linear-gradient(180deg, #e4e3e1 15rem, transparent 10%);*/
}
.rights-reserved p{
    margin: 0;
    color: white;
    font-size: 12px;
        line-height: 20px;
}
.rights-reserved a{
    color: white;
}
.rights-reserved a:hover{
    color: white;
}
footer .cta-secondary-btn {
    display: block;
    width: 280px;
    text-align: center;
    font-size: 2.2rem;
    text-decoration: none;
    margin: auto;
}
@media (min-width: 992px) and (max-width: 1199px){
    
footer .cta-secondary-btn{
        display: block;
    width: 370px;
    text-align: center;
    font-size: 2.4rem;
    text-decoration: none;
}
}

@media (min-width: 1200px){
    
footer .cta-secondary-btn{
        display: block;
    width: 410px;
    text-align: center;
    font-size: 3rem;
    text-decoration: none;
    margin-left: 0;
}
}
/* FOOTER  END*/





/*FLOORPLANS*/
.form-check{
        
}
@media (min-width: 768px) and (max-width: 1199px) {

}
@media (max-width: 991px) {
.unit-type{
    margin: auto;
    width: fit-content;
}
}


.floorplan-img-block{
    
}
.floorplan-details-box{
    background-color: #CBCAC9;
}

.floorplan-name{
    font-size: 4.6rem;
    font-family: "Bitter";
    line-height: initial;
}
@media (min-width: 1200px) {
.floorplan-name{
        font-size: 6.6rem;
    line-height: initial;
}
}

.view-site-plan{
    text-decoration: none;
    padding: 10px 0px;
    display: block;
    width: 250px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 5px;
    margin: auto;
    margin-bottom: 50px;

}
@media (min-width: 1199px) {
    .view-site-plan{
    font-size: 1.8rem;

}
}

.floorplan-unit-list{

}
.floorplan-unit-single span{
    font-weight: 700;
}
.unit-apply-btn{
text-decoration: none;
    background-color: transparent;
    padding: 11px 22px;
    border: var(--main-color) solid 2px;
    color: var(--main-color);
    font-weight: 700;
        width: 150px;
    text-align: center;
}
.unit-apply-btn:hover{
    background-color: var(--main-color);
    color: white;
    
}
.accordion-collapse .floorplan-unit-list{
    overflow-y: scroll;
    max-height: 800px;
    overflow-x: hidden;
}


.move-in input[type="date" i]{
    font-size: 20px;
    color: #c1c1c1!important;
    min-width: 250px;
    padding: 3px 10px;
}
.move-in input{
    padding: 3px 10px!important;
}

.unit-table-header{
    background: #e4e3e1!important;
    color: black;
    font-weight: 900;
}
.unit-description{
    font-size: 1.6rem;
    line-height: 2.5rem;
}
.mobile-floorplan-table {
    border: 2px solid var(--main-color);
}
/*FLOORPLANS END*/



/* AMENITIES */

.amenities-section{

}
.amenities-list{
    list-style: none;
    padding: 0;
}
.amenities-list li{
        margin: 10px 0;
}
@media (min-width: 1199px) {
    .amenities-list li{
            font-size: 2rem;
    }
}
.apartment-block, .community-block{
    width: fit-content;
    margin: auto;
    max-width: 500px;
}
/* AMENITIES END */

/*MAP */
        #map {
            height: 800px;
            max-height: 80vh;
            width: 100%;
        }
        .marker {
            background-size: cover;
            cursor: pointer;
            width: 40px;
            height: 40px;
        }
        .mapboxgl-popup, .maplibregl-popup {
            max-width: 150px;
            z-index: 3;
        }
        .property.marker {
            z-index: 2;
            width: 60px;
            height: 60px;
        }
        #map-output {
            max-height: 200px;
            overflow: scroll;
                overflow: auto;
        }
        #map-output ul{
            text-align: center;
        }
        #map-output>ul>li {
            cursor: default;
            padding: 5px;
            margin: 5px;
            display: inline-block;
            background: #E9E9ED;
            border: 1px solid #CDCDD6;
            border-radius: 3px;

            background-color: var(--secondary-color)!important;
            color: white;
            font-size: 1.8rem;
        }
        #map-output>ul>li:hover {
            background: #CDCDD6;
        }

        #map-buttons>li {
            display: inline-block;
            
        }
        #map-buttons button{
                font-size: 1.8rem!important;
    padding: 1rem 0rem!important;
    text-align: center;
    width: 25rem;
    
        }
        @media (min-width: 768px) {
            #map-buttons button{
                font-size: 1.8rem!important;
    padding: 1rem 0rem!important;
    text-align: center;
    width: 20rem;
    
        }
        }

/*MAP End*/


/*Contact form*/
form input, form select{
    width: 100%;
    padding: 1rem 2rem;
        background-color: rgba(255,255,255,.2);
    border: none;
    color: white;
}
form select option{

}
form .g-success iframe {
	border: 2px solid green;
}
form .g-error iframe {
	border: 2px solid red;
}
form .g-error::after {
	color: white;
	background-color:red;
	font-weight: bold;
	margin: 0;
	padding: 2px;
	content: "Please verify you are human";
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #d6d6d6;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #d6d6d6;
}

select{
    background: url("https://mktapts.s3.us-west-2.amazonaws.com/images/lotus/general/arrow-down.svg") no-repeat right #ddd;
    -webkit-appearance: none;
        background-position-x: 95%;
}
/*Contact form End*/

.term-privacy  * {
    font-size: 16px!important;
    color: black!important;
}
.rights-reserved  a{
    font-weight: 400!important;
}

/*PARALLAX*/
@media (max-width: 991px) {
.parallax-effect{
    margin-top: -15px!important;
}
}
.parallax-container {
  height: 80vw;
  overflow: hidden;
  position: relative;
  background-color: black;
}
@media (min-width: 800px) {
.parallax-container {
  height: 47vw;
  overflow: hidden;
  position: relative;
}
}



.parallax-image{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transform: translate3d(0, 0, 0);
  margin-top: -80px;
  opacity:0.9; 
}
@media (max-width: 800px) {
.parallax-image {
  margin-top: -60px;
}
}


.parallax-block{
    height: 60vw;
}
.parallax-img{
    margin-top: -65vw;
}
@media (min-width: 425px) and (max-width: 765px){
.parallax-block{
    height: 60vw;
}
.parallax-img{
    margin-top: -40vw;
}
}
@media (min-width: 767px) and (max-width: 991px){
.parallax-block{
    height: 55vw;
}
.parallax-img{
    margin-top: -35vw;
}
}
@media (min-width: 992px) {
.parallax-block{
    height: 40vw;
}
.parallax-img{
    margin-top: -20vw;
}
}

.simpleParallax{
    overflow: inherit!important;
}
/*PARALLAX END*/

/*top banner*/
.top-banner p, .top-banner div{
    font-size: 2rem;
    line-height: 3rem;

}

.top-banner .cta-main-btn{
        display: block;
    width: 250px;
    font-size: 2rem;
    padding: 5px 7px;
    margin: auto;
    margin-top: 8px;
    
}
#specialAccordion .accordion-item{
    border: none;
}
#specialAccordion .accordion-button{
    font-size: 2rem;
    line-height: 3rem;
    color: white;
    justify-content: center;
}
#specialAccordion .accordion-button:after{
    display: none;
}
#specialAccordion .accordion-item,#specialAccordion .accordion-button{
    background-color: transparent;
}
.banner-close{
        width: 15px;
    margin-left: 10px;
    transform: rotate(-180deg);
    transition: 0.5s;
}
.accordion-button.collapsed .banner-close{
    transform: rotate(0deg);
}
.accordion-button:focus{
        border-color: transparent;
    box-shadow: none;
}
/*top banner*/

/* Reviews */
.review-icon{
    max-width: 125px;
}
.review-verified{
    color: red;
    font-weight: bold;
    font-size: 1.6rem;
}
.reviews-block{
    background: #f3f3f3;
}
.review-title{
        color: black;
    font-weight: bold;
}
.reviews-block p{
line-height: 2.5rem;
}
.review-name{
    font-weight: bold;
}

textarea{
    background-color: rgba(255,255,255,.2);
    border: none;
    padding-left: 2rem;
}
.stars-empty{
    stroke: rgb(102 102 102);
    fill: transparent;

}
.stars-fill{
    stroke: rgb(102 102 102);
    fill: var(--secondary-color);

}
#reviewModal form input,#reviewModal form select,#reviewModal textarea {
    color: #3c3c3c!important;
    border: solid 1px gray!important;

}
#reviewModal ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #898989!important;
  opacity: 1; /* Firefox */
}

#reviewModal :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #898989!important;
}

#reviewModal ::-ms-input-placeholder { /* Microsoft Edge */
  color: #898989!important;
}
/* Reviews END */

.read-more__link{
        border: none;
    background: transparent;
    font-weight: bold;
    text-decoration: underline;
    color: black!important;
}
@media (min-width: 600px){
.read-more__link{
        display: none;
}
}

input[type='date'], input[type='time'] {
    -webkit-appearance: none;
    height: 50px;
    width: 100%;
}

#arrow-to-filters{
    position: fixed;
    bottom: 50px;
    margin-left: 20px;
    background-color: white;
}
#arrow-to-filters a{
    color: #666666;
    text-decoration: none;
    font-weight: bold;
}
@media (min-width: 991px){
    #arrow-to-filters{
       display:none!important 
    }
    
}
@media(min-width: 991px){
    .hero-banner{
    height: 573px;
    object-fit: cover;
    object-position: top;
}
}

/* Virtual Tours */
.vt-modal .modal-dialog {
    height: 60vh;
}
.vt-modal {
    z-index: 100000;
}
.virtual-tour .play-button {
    position: absolute;
    z-index: 20;
    width: 30%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: no-preference) {
    .virtual-tour:hover .play-button {
      -webkit-filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .7));
      filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .7));
      transform: translateY(-15px);
    }
}
@media (min-width: 576px) {
    .vt-modal .modal-dialog {
        max-width: 70vw;
        height: 70vh;
    }
}
/* Virtual Tours END */

@media (max-width: 800px){

    .hero-img{
        aspect-ratio: 1/1;
    }
}
@media (min-width: 801px){

    .hero-img{
        aspect-ratio: 16/9;
    }
}
@media (max-width: 616px) {
.yield-logo{
    display: none!important;
}
}

@media (max-width: 768px){
    .logo-main{
        top: 25px;
    }
    #menu-hamburger{
        top: 25px!important;
    }
    .sidenav{
        padding-top: 100px!important;
    }
    footer .cta-secondary-btn{
        width: auto;
    max-width: 275px;
    }
}
h1, .box-title{
    text-shadow: 0 0 6px black;
}

.top-banner .cta-main-btn {
    min-width: fit-content;
}


.video-hero{
      position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover; /* Makes the video cover the entire area */
}
form input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white;
  opacity: 1; /* Firefox */
}
.no-text-shadow{
    text-shadow: none !important;
}
.z-3{
    z-index: 3;
}
.dynamic-map-section select.cta-main-btn{
    background-color: #B7C7D3!important;
        border: solid 1px;

}
.dynamic-map-section select.cta-main-btn:focus {
    background-color:#B7C7D3!important; /* Background color on focus */
  }


.refresh-button{
    background-color: none;
    border: none;
}
.dropdowns-menu .dynamic-select{
    color: white;
    font-weight: bold;
}
#dynamic-sitemap .modal.fade.in{
    display: flex!important;
    align-items: center!important;
}

#specialBanner{
            display: flex
;
    justify-content: space-between;
        }
        #specialBanner .accordion-button{
            width: auto!important;
        }
        #specialBanner .cta-main-btn{
            padding: 0.3rem 2rem;
    font-size: 2rem;
        }
        #specialBanner .phone-banner{
                display: flex;
    align-items: center;
        }
        #specialBanner .phone-banner p{
                font-size: 2rem;
        }
        

        #specialBanner .apply-banner{
            display: flex;
    align-items: center;
        }