/*RESIDENTIAL AND COMMERCIAL [PAGES] */
.project-container {
    height: 520px;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
}
.project-text-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  text-align: center;
  justify-content: space-between;
}
.project-head {
  font-family: 'FontAwesome';
  color: #0b2749;
  padding-bottom: 5px;
  font-size: 23px;
  text-transform: uppercase;
}
.side-bar {
    position: absolute;
    transform: rotate(90deg);
    left: 0;
    top: 80%;
    letter-spacing: 5px;
}
.digit {
    opacity: 0;
    -webkit-transform: translateX(-40px);
    -moz-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    -o-transform: translateX(-40px);
    transform: translateX(-40px);
    -webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    -ms-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
}
.digit.visible {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

/*PROJECTS PAGE*/
.sticky-form{
    display: none;
    padding: 15px;
    position: fixed;
    bottom: 0;
    z-index: 1000;
    width: 100%;
    height: 110px;
    background: #ffffffe6;
    backdrop-filter: blur(2px);
    box-shadow: 0px 0px 10px #00000026;
}
.sticky-form.scrolled{
    display: block;
}
/********************************* CONTACT INFO IN PROJECT PAGE*********************************/
.contact_info
{
   width: 100%;
   padding-top: 70px;
}
.contact_info_item
{
   width: calc((100% - 60px) / 3);
   height: 100px;
   border: solid 1px #e8e8e8;
   box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
   padding-left: 32px;
   padding-right: 15px;
}
.contact_info_image
{
   width: 35px;
   height: 35px;
   text-align: center;
}
.contact_info_image img
{
   max-width: 100%;
}
.contact_info_content
{
   padding-left: 17px;
}
.contact_info_title
{
   font-weight: 500;
}
.contact_info_text
{
   font-size: 12px;
   color: rgba(0,0,0,0.5);
}
/********************************* CONTACT INFO IN PROJECT PAGE*********************************/
/*MORE PROJECTS IN PROJECT PAGE -> COMMERCIAL*/
.more-projects-card{
      display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    filter: grayscale(1);
}
.more-projects-card:hover{
/*background: #fff !important;*/
filter: grayscale(0) brightness(1);
}
.more-projects-location{
  color: #ffc51e;
}


/*USP SECTION 2 -> PROJECT PAGE*/

.client-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

/*FLOOR PLAN STYLES*/
.floor-plan-heading{
  font-family: 'OptimaLTW02-Roman';
  font-size: 30px;
}
.floor-plan-thumb-item{
  height: 100px;
  width: 100px !important;
}

.slider-thumb{
    display: flex !important;
    height: 130px;
    border: solid 1px #e8e8e8;
    box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
    padding: 25px 35px 25px;
    align-items: center;
}
.thumb-prev-custom{
    position: absolute;
    top: 40%;
    left: 1%;
    background: #fff0;
    border: none;
    color: #dedede;
}
.thumb-next-custom{
  position: absolute;
    top: 40%;
    right: 1%;
    background: #fff0;
    border: none;
    color: #dedede;
}
.fp-super-container{
      height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.fp-thumb-item{
  padding: 10px;
}
/*FLOOR PLAN STYLES END*/

/*CONNECTIVITY*/
.map-box{
  border:none;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  width: 100%;
  height: 600px;
}
.leaflet-tile {
    filter: grayscale(1) !important;
}
.leaflet-popup-content{
  margin:15px !important;
  width: 255px !important;
height: 260px;
}
.leaflet-popup-content-wrapper, .leaflet-popup-tip{
  background: #fff0 !important;
    backdrop-filter: blur(1px);
}
/*CONNECTIVITY ENDS*/

.text-upper{
    text-transform: uppercase;
}

@media only screen and (max-width: 600px){
    .contact_info_item{
        width: calc((100% - 0px) / 1); 
    }
    .floor-plan-heading{
  font-size: 20px;
}
}