@font-face {
  font-family: 'Proxima';
  src: url('fonts/Proxima-Nova-Font.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'ProximaBold';
  src: url('fonts/Proxima-Nova-Alt-Bold.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

body {
  /* background-color: #3c3c3c; */
  /* background-color: #000; */
  font-family: 'Proxima', Helvetica, Arial, sans-serif;
  position: relative;
  color: #51544E;
  font-size: 18px;
  background-color: #FFF;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

#gradient-canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  /* --gradient-color-1: #eeede6;
  --gradient-color-2: #90b6c3;
  --gradient-color-3: #eeede6;
  --gradient-color-4: #f1c699; */
  --gradient-color-1: #e1f0f0;
  --gradient-color-2: #bedad4;
  --gradient-color-3: #eeede6;
  --gradient-color-4: #cee6fa;
  z-index: -1;
}

.container {
  max-width: 1516px;
  inline-size: min(100% - 125px* 2, 1516px);
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 80px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant', 'Proxima', Arial, sans-serif;
  line-height: 1.1;
  font-weight: 500;
  font-style: italic;
}

h2 {
  font-size: 56px;
}

p {
  margin-bottom: 10px;
}

.content_container {
  margin-bottom: 50px;
}

.img-pr {
  padding-right: 25px;
}

.img-caption {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  /* padding-top: 15px; */
  padding-top:5px;
}

.img-shadow {
  -webkit-box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, 0.4);
}

.img-caption-pt {
  padding-top: 10px;
}

.img-caption-pt-2 {
  padding-top: 5px;
  font-weight:bold;
}

.normal_subtitle
{
  font-size:12px;
}

.bold-subtitle {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Top Part - below video */
.welcome-image-effect-container {
  position: relative;
}

.options2 {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;

  min-width: 600px;
  max-width: 900px;
  width: calc(100% - 60px);
  /* width: calc(100% - 10px);  */

  height: 400px;

  .option_wel {
    position: relative;
    overflow: hidden;

    /* min-width: 60px; */
    min-width:40px;
    /* margin:10px; */
    margin: 0px 3px;
    /* margin-bottom: 20px; */ /* Make image smaller so that text can be outside of image. */
    margin-bottom: 48px; /* Make image smaller so that text can be outside of image. */
    margin-top: 28px; /* Make image smaller so that text can be outside of image. */
    background: var(--optionBackground, var(--defaultBackground, #E6E9ED));
    background-size: auto 120%;
    background-position: center;

    cursor: pointer;

    transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95);

    &.active {
      flex-grow: 10000;
      transform: scale(1);

      max-width: 800px;
      margin: 0px 3px;
      margin-bottom: 20px;
      border-radius: 5px;

      /* background-size: 100% 100%; */
      background-size: 100% 85%; /* Make image smaller so that text can be outside of image. */
      background-repeat: no-repeat;

      .shadow {
        /* box-shadow:inset 0 -120px 120px -120px black, inset 0 -120px 120px -100px black!important; */
        /* box-shadow:inset 0 -120px 120px -120px white, inset 0 -120px 120px -100px white!important; */
        /* box-shadow: 0px -31px 31px 10px rgba(255, 255, 255, 0.31) inset !important; */
        /* -webkit-box-shadow: 0px -31px 31px 10px rgba(255, 255, 255, 0.31) inset !important; */
        /* -moz-box-shadow: 0px -31px 31px 10px rgba(255, 255, 255, 0.31) inset !important; */
      }

      .label {
        bottom: 0px;
        left: 3px;

        .info>div {
          left: 0px;
          opacity: 1;
          color:#51544E;
        }
      }

      /*&:active {
           transform:scale(0.9);
        }*/
    }

    &:not(.active) {
      flex-grow: 1;
      border-radius: 5px;

      /* .shadow {
           bottom:-40px;
           box-shadow:inset 0 -120px 0px -120px black, inset 0 -120px 0px -100px black;
        } */
      .label {
        bottom: 10px;
        left: 10px;

        .info>div {
          left: 10px;
          opacity: 0;
        }
      }
    }

    .shadow {
      position: absolute;
      bottom: 0px;
      left: 0px;
      right: 0px;

      /* height:120px; */
      height: 100%;
      /* height:40px; */

      transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
    }

    .label {
      display: flex;
      position: absolute;
      right: 0px;

      height: 40px;
      transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95);

      .icon {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;

        min-width: 40px;
        max-width: 40px;
        height: 40px;
        border-radius: 100%;

        background-color: white;
        color: var(--defaultBackground);
      }

      .info {
        display: flex;
        flex-direction: column;
        justify-content: center;

        margin-left: 3px;

        color: white;
        /* color:black; */

        white-space: pre;

        >div {
          position: relative;

          transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity .5s ease-out;
        }

        .main {
          /* font-weight:bold; */
          /* font-size:1.2rem; */
        }

        .sub {
          transition-delay: .1s;
        }
      }
    }
  }
}
/* Top Part - below video */

.exterior_iframe_container {
  height: 800px;
  padding-top: 50px;
}

.interior_iframe_container {
  height: 800px;
  padding-top: 50px;
}

.iframe_container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

.responsive_iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.monday-text-container {
  position: absolute;
  margin: 0px 125px;
  width: 40%;
  top: 10px;
  z-index: 1;
  left: 0px;
}

.monday-text-container p
{
  /* padding-right:10vw; */
}

#monday-carousel .splide__pagination {
  bottom: 100px !important;
}

.splide__pagination__page {
  background: #D4A373 !important;
  border-radius: 0 !important;
  height: 8px !important;
  width: 8px !important;
  margin: 8px !important
}

#monday-carousel .splide__slide,
#monday-carousel-mobile .splide__slide
{
  margin-bottom:50px;
}

#monday-carousel-mobile .splide__pagination
{
  bottom:70px;
}

#monday-carousel-mobile .container.carousel_container
{
  margin-top:0px;
  padding-top:0px;
}

.splide__pagination__page.is-active {
  background: #BC6C25 !important;
  transform: unset !important;
}

.monday-img-caption {
  position: absolute;
  bottom: -30px;
  z-index: 0;
  left: 5%;
  color: #51544E;
}

.corner-triangle {
  position: relative;
}

.corner-triangle:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 0;
  border-color: #D4A373 transparent transparent transparent;
  left: -15px;
  top: 5px;
  position: absolute;
}

.no-pt-absolute {
  padding-top: 0px;
  margin-top: -80px;
  position: relative;
  z-index: 1;
}

.monday-section-container {
  margin-top: 80px;
}

.monday-gradient-bg-container,
.tues-gradient-bg-container {
  margin-top: 0px;
  position: relative;
}

.monday-gradient-bg {
  position: absolute;
  top: 0px;
  height: 100px;
  left: 0px;
  width: 100%;
  z-index: 1;
  background: rgb(238, 237, 230);
  background: -moz-linear-gradient(0deg, rgba(238, 237, 230, 0) 0%, rgba(238, 237, 230, 1) 80%);
  background: -webkit-linear-gradient(0deg, rgba(238, 237, 230, 0) 0%, rgba(238, 237, 230, 1) 80%);
  background: linear-gradient(0deg, rgba(238, 237, 230, 0) 0%, rgba(238, 237, 230, 1) 80%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eeede6", endColorstr="#eeede6", GradientType=1);
}

.tuesday-content-section .container
{
  padding-top:0px;
}

.tues-gradient-bg {
  position: absolute;
  top: -150px;
  height: 100px;
  left: 0;
  right: 0;
  width: 90%;
  margin: 0 auto;
  z-index: 1;
  background: rgb(238, 237, 230);
  background: #EEEDE6;
}

.tuesday-img-caption {
  padding-top: 10px;
}

/* .tue_img_1
{
  transform: translate3d(0, 0, 0);
  -webkit-animation: slide 20s infinite;
  animation: slide 20s infinite;  
}

@keyframes slide {
  10% {
    transform: translate3d(0,0,0);
  }
  55% {
    transform: translate3d(10%,0,0);  
  }
}

.tue_img_2
{
  transform: translate3d(0, 0, 0);
  -webkit-animation: slide2 20s infinite;
  animation: slide2 20s infinite;  
}

@keyframes slide2 {
  10% {
    transform: translate3d(0%,0,0);
  }
  55% {
    transform: translate3d(-5%,0,0);  
  }
}

.tue_img_3
{
  transform: translate3d(0, 0, 0);
  -webkit-animation: slide3 30s infinite;
  animation: slide3 30s infinite;  
}

@keyframes slide3 {
  10% {
    transform: translate3d(0,0,0);
  }
  55% {
    transform: translate3d(10%,0,0);  
  }
}

.tue_img_4
{
  transform: translate3d(0, 0, 0);
  -webkit-animation: slide4 20s infinite;
  animation: slide4 20s infinite;  
}

@keyframes slide4 {
  10% {
    transform: translate3d(0,0,0);
  }
  55% {
    transform: translate3d(0,10%,0);  
  }
}

.tue_img_5
{
  transform: translate3d(0, 0, 0);
  -webkit-animation: slide5 10s infinite;
  animation: slide5 10s infinite;  
}

@keyframes slide5 {
  10% {
    transform: translate3d(0%,0,0);
  }
  55% {
    transform: translate3d(-10%,-5%,0);  
  }
}

.tue_img_6
{
  transform: translate3d(0, 0, 0);
  -webkit-animation: slide6 20s infinite;
  animation: slide6 20s infinite;  
}

@keyframes slide6 {
  10% {
    transform: translate3d(0%,0,0);
  }
  55% {
    transform: translate3d(0%,10%,0);  
  }
} */


/* triggerscroll css */

/*newtriggerscroll*/
.box_tue_img {
  display: block;
  /*   position:absolute; */
  /* transform: translateX(100vw); */
  opacity: 0;
}

.box_tue_img.tueimg1 {
  transform: translate(20px, -170px);
  position: absolute;
  top: 0px;
  opacity: 1;
}

.box_tue_img.tueimg2 {
  transform: translate(470px, -80px);
  position: absolute;
  /* top: 50px; */
  opacity: 1;
}

.box_tue_img.tueimg3 {
  transform: translate(60px, -420px);
  position: absolute;
  top: 150px;
  opacity:0
}

.box_tue_img.tueimg4 {
  transform: translate(900px, 30px);
  position: absolute;
  top: 10px;
  opacity: 0;
}

.box_tue_img.tueimg5 {
  transform: translate(940px, -55px);
  position: absolute;
  top: 80px;
}

.box_tue_img.tueimg6 {
  transform: translate(540px, 0px);
  position: absolute;
  top: 100px;
}

/* .box_tue_img.tueimg6 img
{
  width:23vw;
} */

.tue-portrait-size {
  width:15vw;
  /* width: 35vh; */
  /* 37 */
  max-width: 400px;
}

.tue-landscape-size {
  /* width: 33vh; */
  /* width:40vh; */
  width:28vw;
  /* 35 */
  /* max-width: 380px; */
}

/*newtriggerscroll*/

/* .process-wrap {
  overflow: hidden;
}
.process {
  width: 300%;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 50vh!important;
  
}

#tuesday_desktop_container img
{
  width:25%;
}

.tue-landscape-size
{
  width:50%!important;
} */

/* .tue_img_1a
{
  transform: translate3d(0, 0, 0);
  -webkit-animation: slide 10s ;
  animation: slide 10s  ;  
}

.tue_img_2a
{
  transform: translate3d(0, 0, 0);
  -webkit-animation: slide 20s ;
  animation: slide 20s  ;  
}

@keyframes slide {
  10% {
    transform: translate3d(0,0,0);
  }
  55% {
    transform: translate3d(-30%,0,0);  
  }
} */

/* triggerscroll css */

/* .tue-portrait-size
{
  width:50%;
} */

.tue_second_box_container {
  margin: 30px 0px;
  display: flex;
  justify-content: flex-end;
}

.tue_second_box_container_2 {
  margin-top: 8rem;
}

.tue_second_box_container_3 {
  margin-top: -15%;
}

.tsbc_width {
  width: 50%;
}

.tsbc_width .tue-portrait-size {
  width: 100%;
}

.tsbc_width_2 {
  width: 80%;
}

.tsbc_width_2 .tue-portrait-size {
  width: 100%;
}

.wednesday-content-section .container
{
  padding-top:50px;
}

.wednesday-text-container {
  padding-right: 100px;
}

.wednesday-add-pad {
  padding-top: 170px;
}

.wednesday-image-effect-container {
  position: relative;
}

.options {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;

  min-width: 600px;
  max-width: 900px;
  width: calc(100% - 60px);
  /* width:calc(100% - 0px); */

  height: 400px;

  .option {
    position: relative;
    overflow: hidden;

    /* min-width: 60px; */ /*This is for 4 images*/
    min-width:40px;

    /* min-width:35px; */
    /* margin:10px; */
    margin: 0px 3px;
    /* margin-bottom: 20px; */ /* Make image smaller so that text can be outside of image. */
    margin-bottom: 48px; /* Make image smaller so that text can be outside of image. */
    margin-top: 28px; /* Make image smaller so that text can be outside of image. */
    background: var(--optionBackground, var(--defaultBackground, #E6E9ED));
    background-size: auto 120%;
    background-position: center;

    cursor: pointer;

    transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95);

    &.active {
      flex-grow: 10000;
      transform: scale(1);

      /* max-width: 600px; */ /*This is for 4 images*/
      max-width:800px;
      margin: 0px 3px;
      margin-bottom: 20px;
      border-radius: 5px;

      /* background-size: 100% 100%; */
      background-size: 100% 85%; /* Make image smaller so that text can be outside of image. */
      background-repeat: no-repeat;

      .shadow {
        /* box-shadow:inset 0 -120px 120px -120px black, inset 0 -120px 120px -100px black!important; */
        /* box-shadow:inset 0 -120px 120px -120px white, inset 0 -120px 120px -100px white!important; */
        /* box-shadow: 0px -31px 31px 10px rgba(255, 255, 255, 0.31) inset !important;
        -webkit-box-shadow: 0px -31px 31px 10px rgba(255, 255, 255, 0.31) inset !important;
        -moz-box-shadow: 0px -31px 31px 10px rgba(255, 255, 255, 0.31) inset !important; */
      }

      .label {
        bottom: 0px;
        left: 3px;

        .info>div {
          left: 0px;
          opacity: 1;
          color:#51544E;
        }
      }

      /*&:active {
           transform:scale(0.9);
        }*/
    }

    &:not(.active) {
      flex-grow: 1;
      border-radius: 5px;

      /* .shadow {
           bottom:-40px;
           box-shadow:inset 0 -120px 0px -120px black, inset 0 -120px 0px -100px black;
        } */
      .label {
        bottom: 10px;
        left: 10px;

        .info>div {
          left: 10px;
          opacity: 0;
        }
      }
    }

    .shadow {
      position: absolute;
      bottom: 0px;
      left: 0px;
      right: 0px;

      /* height:120px; */
      height: 100%;
      /* height:40px; */

      transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
    }

    .label {
      display: flex;
      position: absolute;
      right: 0px;

      height: 40px;
      transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95);

      .icon {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;

        min-width: 40px;
        max-width: 40px;
        height: 40px;
        border-radius: 100%;

        background-color: white;
        color: var(--defaultBackground);
      }

      .info {
        display: flex;
        flex-direction: column;
        justify-content: center;

        margin-left: 3px;

        color: white;
        /* color:black; */

        white-space: pre;

        >div {
          position: relative;

          transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity .5s ease-out;
        }

        .main {
          /* font-weight:bold; */
          /* font-size:1.2rem; */
        }

        .sub {
          transition-delay: .1s;
        }
      }
    }
  }
}

.options3 {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;

  min-width: 600px;
  max-width: 900px;
  width: calc(100% - 60px);
  /* width:calc(100% - 0px); */

  height: 400px;

  .option_presat {
    position: relative;
    overflow: hidden;

    min-width: 60px;
    /* min-width:35px; */
    /* margin:10px; */
    margin: 0px 3px;
    /* margin-bottom: 20px; */ /* Make image smaller so that text can be outside of image. */
    margin-bottom: 48px; /* Make image smaller so that text can be outside of image. */
    margin-top: 28px; /* Make image smaller so that text can be outside of image. */
    background: var(--optionBackground, var(--defaultBackground, #E6E9ED));
    background-size: auto 120%;
    background-position: center;

    cursor: pointer;

    transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95);

    &.active {
      flex-grow: 10000;
      transform: scale(1);

      max-width: 600px;
      margin: 0px 3px;
      margin-bottom: 20px;
      border-radius: 5px;

      /* background-size: 100% 100%; */
      background-size: 100% 85%;
      background-repeat: no-repeat;

      .shadow {
        /* box-shadow:inset 0 -120px 120px -120px black, inset 0 -120px 120px -100px black!important; */
        /* box-shadow:inset 0 -120px 120px -120px white, inset 0 -120px 120px -100px white!important; */
        /* box-shadow: 0px -31px 31px 10px rgba(255, 255, 255, 0.31) inset !important;
        -webkit-box-shadow: 0px -31px 31px 10px rgba(255, 255, 255, 0.31) inset !important;
        -moz-box-shadow: 0px -31px 31px 10px rgba(255, 255, 255, 0.31) inset !important; */
      }

      .label {
        bottom: 0px;
        left: 3px;

        .info>div {
          left: 0px;
          opacity: 1;
          color: #51544E;
        }
      }

      /*&:active {
           transform:scale(0.9);
        }*/
    }

    &:not(.active) {
      flex-grow: 1;
      border-radius: 5px;

      /* .shadow {
           bottom:-40px;
           box-shadow:inset 0 -120px 0px -120px black, inset 0 -120px 0px -100px black;
        } */
      .label {
        bottom: 10px;
        left: 10px;

        .info>div {
          left: 10px;
          opacity: 0;
        }
      }
    }

    .shadow {
      position: absolute;
      bottom: 0px;
      left: 0px;
      right: 0px;

      /* height:120px; */
      height: 100%;
      /* height:40px; */

      transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
    }

    .label {
      display: flex;
      position: absolute;
      right: 0px;

      height: 40px;
      transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95);

      .icon {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;

        min-width: 40px;
        max-width: 40px;
        height: 40px;
        border-radius: 100%;

        background-color: white;
        color: var(--defaultBackground);
      }

      .info {
        display: flex;
        flex-direction: column;
        justify-content: center;

        margin-left: 3px;

        color: white;
        /* color:black; */

        white-space: pre;

        >div {
          position: relative;

          transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity .5s ease-out;
        }

        .main {
          /* font-weight:bold; */
          /* font-size:1.2rem; */
        }

        .sub {
          transition-delay: .1s;
        }
      }
    }
  }
}

#wednesday-carousel .splide__slide {
  padding-bottom: 0px;
}

.thursday-content-section .container
{
  padding-top:50px;
}

.thursday-text-container
{
  padding-left: 80px;
}

.thursday-img-caption,
.wednesday-img-caption 
{
  position: absolute;
  bottom: -5px;
  z-index: 0;
  left: 0;
  /* color: #FFF; */
}

/* #thursday-carousel .splide__slide {
  padding-bottom: 20px;
} */

.friday-content-section .container
{
  padding-top:50px;
}

#welcome-carousel .splide__pagination,
#tuesday-carousel .splide__pagination,
#wednesday-carousel .splide__pagination,
#thursday-carousel .splide__pagination,
#friday-carousel .splide__pagination,
#saturday-carousel .splide__pagination,
#post-saturday-carousel .splide__pagination {
  bottom: -30px !important;
}

#welcome-carousel .splide__pagination__page,
#thursday-carousel .splide__pagination__page,
#friday-carousel .splide__pagination__page {
  background: #D4A373 !important;
  border-radius: 0 !important;
  /* height:10px!important;
  width:10px!important;
  margin:5px!important */
}

#welcome-carousel .splide__pagination__page.is-active,
#thursday-carousel .splide__pagination__page.is-active,
#friday-carousel .splide__pagination__page.is-active {
  background: #BC6C25 !important;
  transform: unset !important;
}

#friday-carousel .splide__pagination {
  bottom: -30px !important;
}

#welcome-carousel,
#friday-carousel {
  margin-top: 20px;
}

.saturday-content-section .container
{
  padding-top:50px;
}

.saturday-image-gallery {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  /* margin: -15px 0 0 -15px;
  width: calc(100% + 15px);
  margin-top:10px; */
}

.saturday-image-gallery>div {
  /* width: 20%; */
  width:27%;
  /* margin: 15px 0 0 15px; */
}

.saturday-image-gallery p
{
  margin-top:5px;
  font-size:15px;
}

.saturday-text-container {
  margin-bottom: 25px;
  /* padding-right:50px; */
}

.pre-saturday-text-container
{
  padding-right:100px;
}

.footer-section .content_container {
  margin-bottom: 0px;
  padding-bottom: 50px;
}

.footer-section {
  color: #FFF;
  background-color: #A78D7B;
  background-image: url('/assets/images/footer_effect.webp');
  background-size: 70%;
  background-repeat: no-repeat;
  position: relative;
  padding-bottom: 60px;
}

.old-font {
  font-family: 'Cormorant', 'Proxima', Arial, sans-serif;
  font-weight: 500;
  font-style: italic;
}

.footer-p-mb {
  margin-bottom: 20px;
}

.footer-section .corner-triangle:before {
  border-color: #FFF transparent transparent transparent;
}

.developers-section-container {
  margin-top: 50px;
  margin-bottom: 40px;
}

.footer-logo-img {
  width: 220px;
}

.footer-logo-img-lkh
{
  width:320px;
}

.developers-description-container,
.developers-description-container-2,
.developers-description-container-3 {
  padding-right: 100px;
}

.developer2_img
{
  margin-right:100px;
}

.developers-description-container {
  margin-top: 10px;
  margin-bottom:20px;
}

.developers-description-container-2 {
  margin-top: 27px;
}

.footer-small-text {
  font-size: 12px;
  margin-bottom: 30px;
}

.pre-sunday-section-container
{
  padding-top:50px;
}

#sunday-gradient-canvas {
  position: absolute;
  height: -webkit-fill-available;
  /* --gradient-color-1: #69a4d7;
  --gradient-color-2: #a9c8da;
  --gradient-color-3: #60823b;
  --gradient-color-4: #b3ccb1; */
  --gradient-color-1: #e0eec5;
  --gradient-color-2: #ebf2e4;
  --gradient-color-3: #fcfbed;
  --gradient-color-4: #cee6fa;
  z-index: -1;
}

.sunday-content-container {
  margin-bottom: 0px;
  color: #51544E;
}

.contact_form_container .form-group input[type=text],
.form-group textarea,
.form-group input[type=email],
.form-group select {
  backdrop-filter: blur(5px) brightness(80%);
  width: 100% !important;
  background: transparent;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  padding: 10px;
  color: #51544E;
}

.form-group input[type=text]::placeholder,
.form-group textarea::placeholder,
.form-group input[type=email]::placeholder {
  color: #51544E;
  opacity: 1;
  /* Firefox */
}

.form-group input[type=text]::-ms-input-placeholder,
.form-group textarea::placeholder,
.form-group input[type=email]::placeholder {
  /* Edge 12 -18 */
  color: white;
}

.form-control:focus {
  /* color: white; */
  background-color: transparent;
  border-color: #86b7fe;
}

select:focus{
  color:initial;
}

select {
  background: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6"><path fill="white" d="M0 0l5 6 5-6z"/></svg>') no-repeat !important;
  background-position: calc(100% - 1rem) center !important; /* adjust arrow position */
  background-size: 10px 6px !important;
  padding-right: 2rem !important; /* give space for custom arrow */
}

.contact_us_sunday_headline
{
  width:95%;
}

.contact_form_container {
  margin-top: 20px;
  padding-bottom: 60px;
}

.contact_us_btn {
  background: transparent;
  border: 1px solid #51544E;
  color: #51544E;
  border-radius: 20px;
  padding: 5px 30px;
  margin-top: 10px;
  width:150px;
}

.contact_us_btn:hover {
  opacity: 0.8;
}

.brochure-image {
  width: 180px;
}

.pdf_dl_container {
  display: flex;
  margin-top: 20px;
  align-items: center;
}

.pdf-icon-img {
  width: 20px;
}

.pdf-link {
  font-size: 16px;
  margin-left: 10px;
}

.pdf-link a {
  color: #51544E;
  text-decoration: none;
}

.pdf-link a:hover {
  opacity: 0.8;
}

.greenshore-address-container {
  margin-top: 50px;
}

.form-greenshore-logo {
  width: 300px;
  /* margin-bottom:10px; */
}

.sale_gallery_qr_code
{
  width:200px;
}

.marketing_tel_link
{
  color:#51544E;
  font-size:1.75rem;
  text-decoration: none;
}

.marketing_tel_link:hover
{
  opacity:0.7;
}

.checkbox_flex_container
{
  display:flex;
}

.checkbox_flex_container input[type=checkbox]
{
  /* Double-sized Checkboxes */
  -ms-transform: scale(2); /* IE */
  -moz-transform: scale(2); /* FF */
  -webkit-transform: scale(2); /* Safari and Chrome */
  -o-transform: scale(2); /* Opera */
  transform: scale(2);
  padding: 10px;
  margin-right:20px;
  margin-left:10px;
}

.full_page_contactus
{
  align-items: center;
}

.full_contact_us_form
{
  padding-bottom:0px;
  margin-top:20px;
}

.fpcu
{
  height:100vh;
}

.fullbleed_img
{
  width:100vw;
}

@media (max-width:1320px)
{
  .fpcu
  {
    height:120vh;
  }
}

@media (max-width:991px)
{
  .fpcu
  {
    height:unset;
    margin-top:-20px;
  }

  .full_contact_us_form
  {
    margin-top:10px;
  }
}

.bold-text {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2;
}

/* footer */
.menu_bg {
  background-color: #283618;
  color: #fff;
  padding: 8px 15px;
  /* position: relative;  */
}

.wa_logo {
  position: absolute;
  right: 10px;
  top: -30px;
}

.nav_container .nav-link {
  color: #fff;
}

.nav_container .nav-link:hover,
.developer_link .nav-link:hover {
  /* font-family: 'ProximaBold'; */
  /* font-weight:bold; */
  opacity: 0.8;
  color: #fff;
}

.nav_container .nav-link.active {
  font-weight: bold;
  color: #fff;
}

.nav_container {
  display: flex;
  justify-content: space-evenly;
  /* width: 65%; */
  margin: 0 auto;
}

.developer_link {
  margin-right: 80px;
}

.menu_logo {
  /* width: 150px; */
  width:200px;
}

.navbar-toggler input {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0px;
  left: 20px;

  cursor: pointer;

  opacity: 0;
  /* hide this */
  z-index: 2;
  /* and place it over the hamburger */

  -webkit-touch-callout: none;
}

.navbar-toggler span {
  display: block;
  width: 33px;
  height: 3px;
  margin-bottom: 5px;
  margin-top: 7px;
  position: relative;

  background: #FFF;
  border-radius: 3px;

  z-index: 1;

  transform-origin: 4px 0px;

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    opacity 0.55s ease;
}

.navbar-toggler span:first-child {
  transform-origin: 0% 0%;
}

.navbar-toggler span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
.navbar-toggler input:checked~span {
  opacity: 1;
  transform: rotate(45deg) translate(-8px, -13px);
  background: #FFF;
}

/*
 * But let's hide the middle one.
 */
.navbar-toggler input:checked~span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
.navbar-toggler input:checked~span:nth-last-child(2) {
  opacity: 1;
  transform: rotate(-45deg) translate(-6px, 14px);
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler>div {
  background-color: #fff;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  border-radius: 3px;
}

#wednesday_mobile_container
{
  display: none;
}

.last_nav_container {
  /* margin: 0px 70px 0px 0px; */
  margin:0px;
}

.mobile_logo {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
}

.layout-button-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 50%;
  transform: translate(-50%, 50%);
}

.floorplan-btn {
  background-color: transparent;
  border:1px solid #BC6C25;
  color: #BC6C25;
  padding: 5px 15px;
  border-radius: 20px;
  margin: 0px 10px;
  font-family: 'Cormorant', 'Proxima', Arial, sans-serif;
  font-weight: 500;
  font-style: italic;
}

.floorplan-btn:hover
{
  background-color: #BC6C25;
  color:#FFF;
  cursor: pointer;
}

.floorplan-btn.active {
  background-color: transparent;
  color:#BC6C25;
  border:none;
  border-radius:0px;
  border-bottom: 2px solid #BC6C25;
}

.original_flexible,
.original_wall {
  display: none;
}

#monday-carousel-mobile, #pre-sunday-carousel-mobile
{
  display:none;
}

.floorplan_container_box
{
  padding-top:30px;
  text-align:center;
}

.floorplan_container_box img
{
  width:50%;
}

.floorplan_desc_container.container
{
  padding-top:10px;
}

.floorplan_desc_container
{
  display:flex;
  justify-content: space-between;
  padding-bottom:50px;
}

.floorplan_title
{
  font-size:26px;
}

.floorplan_desc
{
  width:500px;
}

.ost_font
{
  font-size:32px;
  font-family: 'Cormorant', 'Proxima', Arial, sans-serif;
  font-weight: 500;
  font-style: italic;
}

.ost_font_nomrmal
{
  font-family: 'Cormorant', 'Proxima', Arial, sans-serif;
  font-weight: 500;
  font-style: italic;
}

.floorplan_desc_right .smaller_font
{
  font-size:12px;
}

.type_smaller_font
{
  margin:5px 0px;
}

.floorplan_mobile
{
  display:none;
}

.floorplan_desc_container2
{
  padding-bottom:10px;
  margin-top:0px!important;
}

.swipe_container
{
  display:flex;
  justify-content: flex-end;
  align-items: center;
  margin-top:3px;
}

.swipe_container img
{
  width:20px;
  margin-left:8px;
}

.bg_left_corner,
.bg_right_corner
{
  position: absolute;
  z-index:0;
  width:55vw;
}

.bg_right_corner
{
  right:0;
  bottom:-25px;
}

.zone_bg_img
{
  background-image: url("images/bg_top.png");
  /* background-size: 100% 100%; */
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom:150px;
  /* height:93vh; */
  height:130vh
}

.zone_bg_img2
{
  height:100%;
}

.legend_sidepanel_desktop {
  width: 40px;
  position: fixed;
  z-index: 9999;
  top: 80px;
  left: 0;
  /* overflow-x: hidden; */
  overflow:hidden;
  transition: 0.5s;
  padding-top: 30px;
  /* padding-bottom:30px; */
  /* height:500px; */
  height: 50vh;
  /* border-right: 1px solid #dc143c; */
  margin-right: 1px;
  background-color: #fff;
  border-radius:0px 20px 20px 0px;
  /* position: relative; */
  -webkit-box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, 0.4);
}

.open {
  display: block;
  /* width: 50%; */
  width:300px;
  /* height:500px; */
  height: 50vh;
}

.zone_map_type .legend_sidepanel_desktop .legend_list
{
  direction: rtl;
  padding-left:0px;
}

.zone_map_type .legend_sidepanel_desktop .legend_container_text
{
  text-align: left;
  padding-left:30px;
}

.zone_map_type .legend_sidepanel_desktop .zone_legend_container
{
  direction: ltr;
}

.site_garden_map .desktop_sidepanel.open .legend_list
{
  padding-top:20px;
  overflow:hidden;
}

.site_garden_map .desktop_sidepanel.open .legend_list
{
  animation: opacity_animate 1s;
}

.site_garden_map .desktop_sidepanel.open
{
  /* height:23vh; */
  height:200px;
}

.open .legend_list
{
  animation: opacity_animate 1s;
}

@keyframes opacity_animate
{
  from {opacity:0}
  to {opacity:1;}
}

.side_legend_label
{
  transform: rotate(270deg);
  /* margin-top:30px; */
  margin-top:100px;
  margin-left:-13px;
  color:#254942;
}

.top_legend_label
{
  margin-bottom:10px;
  color:#254942;
}

.open_legend,
.close_legend
{
  width:20px;
  cursor: pointer;
}

.open_legend
{
  display:none;
}

.sidepanel_flex
{
  display:flex;
}

.legend_list
{
  display:none;
  padding-left:40px;
  width:100%;
  height:90%;
  /* overflow: hidden; */
  /* height:100%; */

}

.legend_container_text
{
  height:90%;
  /* height:300px; */
  overflow:auto;
  padding-left:0px;
  /* padding-bottom:150px; */
}

.site_garden_map .legend_sidepanel.desktop_sidepanel .legend_container_text
{
  -moz-column-count: 4;
    -moz-column-gap: 20px;
    -webkit-column-count: 4;
    -webkit-column-gap: 20px;
    column-count: 4;
    column-gap: 20px;
}

.zone_map_type .legend_list
{
  height:95%;
  /* overflow: hidden; */
  /* height:100%; */

}

.zone_map_type .legend_container_text
{
  height:95%;
}

.legend_sidepanel.open .legend_list
{
  display:block;
}

.legend_line_text
{
  display:flex;
  margin-bottom:10px;
  align-items: center;
}

.marker_circle
{
  margin-right:10px;
  background: #5ab0db;
  width: 25px;
  height: 25px;
  text-align: center;
  border-radius: 50%;
  color: white;
  font-family: sans-serif;
  font-size:14px;
  line-height:1.8;
}

.zone_legend_container
{
  margin-bottom:20px;
}

.mobile_sidepanel
{
  display:none;
}


.legend_sidepanel_mobile {
  position:fixed;
  bottom: 50px;
  width:90%;
  left: 50%; 
  transform: translateX(-50%);
  z-index:1;
  overflow-x: hidden;
  /* overflow:hidden; */
  transition: 0.5s;
  background-color: #fff;
  border-radius:20px 20px 0px 0px;
  -webkit-box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, 0.4);
}

.site_garden_map .legend_sidepanel_mobile
{
  bottom:70px;
}

@media (max-width:991px)
{
  .site_garden_map .legend_sidepanel_mobile
  {
    bottom:50px;
  }
}

/* .legend_sidepanel_mobile .legend_line_text
{
  margin-bottom:3px;
} */

.legend_sidepanel_mobile .sidepanel_flex
{
  display:block;
}

/* .legend_sidepanel_mobile .open
{

} */

.legend_sidepanel_mobile .close_legend,
.legend_sidepanel_mobile .open_legend
{
  transform: rotate(90deg);
  margin-top:-15px;
}

.legend_sidepanel_mobile .peek_label
{
  text-align:center;
}

.legend_sidepanel_mobile .side_legend_label {
  transform: rotate(0deg);
  margin:0;
  margin-top:0px;
  margin-left:15px;
  padding-bottom:15px;
  padding-top:30px;
}

.legend_sidepanel_mobile .altmenu,
.legend_sidepanel_mobile .altmenu2
{
  display:flex;
  justify-content: center;
}

.button-primary
{
  background-color:#254942;
  color:#FFF;
  text-decoration: none;
  padding:10px;
}

.legend_container_text
{
  margin-bottom:20px;
}

.arrival_zone_legend .marker_circle
{
  background:#e89477;
}

.active_chill_zone_legend .marker_circle
{
  background:#34B7AD;
}

.lifestyle_zone_legend .marker_circle
{
  background:#cc9823;
}

.kid_zone_legend .marker_circle
{
  background:#aab637;
}

.ancillary_zone_legend .marker_circle
{
  background:#727477;
}

.bedroom_type_zone_legend .square_bg
{
  margin-right:10px;
  border: 1px solid #000;
  background: #FFF;
  width: 25px;
  height: 25px;
}

.bedroom_type_zone_legend .square_bg_1
{
  background: #f7cecc;
}

.bedroom_type_zone_legend .square_bg_2
{
  background: #d2e9f5;
}

.bedroom_type_zone_legend .square_bg_3
{
  background: #94cae8;
}

.bedroom_type_zone_legend .square_bg_4
{
  background: #f7d295;
}

.bedroom_type_zone_legend .square_bg_5
{
  background: #f3b354;
}

.bedroom_type_zone_legend .square_bg_6
{
  background: #dfecc3;
}

.bedroom_type_zone_legend .square_bg_7
{
  background: #b9d57d;
}

.bedroom_type_zone_legend .square_bg_8
{
  background: #94b84c;
}

.legend_sidepanel_desktop .altmenu,
.legend_sidepanel_desktop .altmenu2,
.legend_sidepanel_mobile .altmenu,
.legend_sidepanel_mobile .altmenu2
{
  position: absolute;
  z-index:1;
}

.legend_sidepanel_desktop .altmenu,
.legend_sidepanel_desktop .altmenu2
{
  /* top:45px; */
  right:0px;
}

.legend_sidepanel_desktop .altmenu
{
  top:45px;
}

.legend_sidepanel_desktop .altmenu2
{
  top:47px;
}

.legend_sidepanel_desktop .side_legend_label 
{
  margin-left:15px;
  margin-top:120px;
}

.legend_sidepanel_mobile .altmenu,
.legend_sidepanel_mobile .altmenu2
{
  left: 50%;
  top:0px;
}

/* Scrollbar Styling */
/* width */
.legend_container_text::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.legend_container_text::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
.legend_container_text::-webkit-scrollbar-thumb {
  background: #d4a373; 
  border-radius: 10px;
}

/* Handle on hover */
.legend_container_text::-webkit-scrollbar-thumb:hover {
  background: #be742b; 
}
/* Scrollbar Styling */


.mobile_sidepanel.open .legend_list
{
  padding-top:30px;
}

.mobile_sidepanel.open .legend_list
{
  /* height:350px; */
  /* padding-bottom:120px; */
}

.flexible_page_container
{
  position:relative;
  /* height:100vh; */
  height:100%;
  margin-bottom: 0px;
  padding-bottom:80px;
  background-color: #FFF;
}

.developer2_img
{
  /* margin-top:20px; */
  margin-bottom:20px;
  height:400px;
  background-size:cover;
  position:relative;
  background-position:bottom;
}

.developer2_img .img-caption
{
  position:absolute;
  bottom:-25px;
  left:3px;
}

/* .designer_img_container
{
  display:flex;
  margin-bottom:20px;
} */

.designer_img_container .di_each
{
  height:200px;
  width:100%;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  margin: 0px 5px;
  margin-bottom:30px;
  position:relative;
}

.di_each .img-caption
{
  position: absolute;
  bottom:-20px;
  left:3px;
}

.di_each .img-caption-2
{
  bottom:-38px;
}

.readmorebtn
{
  margin-top:10px;
  cursor: pointer;
  text-align: right;
}

.developers-description-container .more
{
  display:none;
}

.smart_text_box_container
{
  padding-top:30px;
  color:#355650;
  padding-bottom:20px;
  margin-top:0px!important;
}

.smart_title
{
  font-size:30px;
  margin-bottom:20px;
}

.smart_text_box_container img
{
  width:75px;
}

.smart_text_box
{
  margin-bottom:30px;
  padding-right:40px;
}

.smart_text_box_title
{
  font-weight: bold;
  font-size:15px;
  margin-top:15px;
  text-transform: uppercase;
}

.smart_text_box_p
{
  line-height:22px;
  font-size:15px;
}

.st_img_icon 
{
  height:65px;
}

.st_img_icon_text 
{
  height:80px;
  margin-bottom:10px;
}

.tuesday-text-container {
  margin-bottom: 10px;
}

.hide_desktop
{
  display:none;
}

.remove-row-col-padding>*
{
  padding-left:0px;
  padding-right:0px;
}

.inner_padding
{
  padding-right: calc(1.5rem * .5);
  padding-left: calc(1.5rem * .5);
}

.horizontal_line
{
  margin-top:15px;
  height:1px;
  border-bottom:1px solid #FFF;
}

.inner.horizontal_line2
{
  border-bottom:1px solid transparent;
}

.developer_card_container
{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.neighbourhood_container
{
  margin-bottom:50px;
  padding-bottom:20px;
}

.neighbourhood_container_1
{
  padding-bottom:30px;
}

.neighbourhood-text-container
{
  margin-top:20px;
}

.full-width-img
{
  width:100%;
}

.neighbourhood_container_2
{
  padding-top:50px;
  width:100%;
  display:flex;
  flex-wrap: wrap;
  background-color:white;
  padding-bottom:40px;
}

.neighbourhood_container_2 .neighbourhood_legend_map_container
{
  width:60%
}

.neighbourhood_container_2 .neighbourhood_legend_container
{
  width:40%;
  background-color:#FFF;
  padding:30px;
  padding-top:0px;
}

.neighbourhood_container_2 .nc2_icon
{
  width:25px;
  margin-right:10px;
}

.neighbourhood_container_2 .nc2_header
{
  text-transform: uppercase;
  font-weight: bold;
  padding-top:1px;
}

.icon_text_header_container
{
  display:flex;
}

.icon_text_normal_container
{
  margin-left:35px;
  font-size:14px;
}

.itnc_flex
{
  display:flex;
  align-items: center;
}

.proposed_text,
.normal_subtitle
{
  margin-left:35px;
}

.itnc_left
{
  width:40%;
}

.itnc_right
{
  display:flex;
}

.nc2_icon2
{
  width:25px;
  margin-right:10px;
}

.education_flex_container,
.recreation_flex_container
{
  display:flex;
}

.education_flex_container > div:first-child
{
  width:40%;
}

.neighbourhood_container_3
{
  padding-top:20px;
}

#neighbourhood-carousel,
#neighbourhood-carousel-2,
#neighbourhood-carousel-3
{
  padding-bottom:40px;
}

#neighbourhood-carousel .splide__pagination,
#neighbourhood-carousel-2 .splide__pagination,
#neighbourhood-carousel-3 .splide__pagination
{
  bottom:10px;
}

.neighbourhood_pb
{
  padding-bottom:30px;
}

.icon_text_header_container
{
  margin-top:20px;
}

.proposed_text
{
  margin-top:20px;
}

.nc2_icon_3
{
  width:70px;
}

.small_subtitle
{
  font-size:9px;
}

.marker_box
{
  height:20px;
  width:20px;
  margin-top:10px;
  margin-right:10px;
}

.mb_orange_color
{
  background-color:#e6ccb0;
}

.heritage_flex_container
{
  display:flex;
}

.mb_green_color
{
  background-color:#b4d3ab;
  margin-top:5px;
  margin-right:15px;
}

.greenspace_container
{
  display:flex;
}

.gsc_left
{
  margin-right:10px;
}

.neighbourhood_container_4,
.neighbourhood_container_5
{
  padding-top:30px;
}

.stats_main_container
{
  margin-top:40px;
}

.stats_container
{
  display:flex;
  margin-bottom:20px;
  color:#254942;
}

.stats_icon
{
  margin-right:15px;
}

.stats_icon img
{
  width:75px;
}

.stats_text_container
{
  font-weight: bold;
  line-height: 1.2;
}

.stats_text_1
{
  font-size:30px;
}

.stats_text_2
{
  text-transform: uppercase;
  font-size:14px;
}

.north_coast_container
{
  background-color: #FFF;
}

.ncic-main-container
{
  padding-top:40px;
}

.ncic_right_legend_container
{
  width:55%;
  font-size:15px;
  position:absolute;
  right:5vw;
  top:5vh;
}

.spotlight_ncic
{
  background-color:#ff6e2e;
  color:#FFF;
  border-radius:10px;
  padding:10px;
  margin-bottom:10px;
}

.ncic_subspotlight
{
  padding:10px;
  color:#ff6e2e;
}


.spotlight_ncic .ncic_container
{
  margin-bottom:0px;
}

.spotlight_ncic .ncic_icon > div
{
  border:2px solid #FFF;
}

.ncic_container
{
  display:flex;
  margin-bottom:20px;
}

.ncic_icon
{
  padding-right:20px;
}

.ncic_icon > div
{
  border:2px solid #e0822d;
  border-radius:50%;
  /* padding:5px 15px; */
  font-weight: bold;
  width:35px;
  height:35px;
  display:flex;
  align-items: center;
  justify-content: center;
}

.ncic_text_container
{
  line-height: 1.2;
}

.ncic_title
{
  text-transform: uppercase;
  font-weight: bold;
}

.neighbourhood_container_5
{
  padding-bottom:30px;
}

.neighbourhood_container_4a
{
  padding-top:0px;
  margin-top:-30px!important;
  padding-bottom:30px;
}

.neighbourhood_container_4b
{
  display:flex;
}

.neighbourhood_container_4b .neighbourhood_pcn_map_container
{
  width:60%;
  padding-right:50px;
}

.neighbourhood_container_4b .neighbourhood_pcn_container
{
  width:40%;
}

.pcn_title
{
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom:10px;
}

.pcn_label_container
{
  display:flex;
  align-items: center;
  margin-bottom:10px;
}

.pcn_marker_icon
{
  padding-right:20px;
}

.pcn_marker_icon > div
{
  background-color: #0d6132;
  color:#FFF;
  border-radius:50%;
  /* font-weight: bold; */
  width:30px;
  height:30px;
  display:flex;
  align-items: center;
  justify-content: center;
}

.neighbourhood_container_4b
{
  padding-top:0px;
}

.pcn_row_container
{
  margin-bottom:30px;
}

.ncic_box_card
{
  margin-bottom:20px;
}

.pcn_img
{
  /* padding-right:30px; */
  width:100%;
  /* margin-bottom:10px; */
}

.ncic_box_card .caption_flex
{
  margin-bottom:10px;
}

.neighbourhood_container_4c
{
  padding-top:0px;
  padding-bottom:30px;
}

.pcn_loop_highlight_container
{
  background-color:#e0ebdd;
  padding:30px;
  border-radius:10px;
  margin-top:10px;
  margin-bottom:30px;
}

.pcn_list_grid
{
  display: grid;
  grid-template-rows: repeat(2, 40px);
  grid-auto-flow: column;
}

.ssy_container
{
  padding-top:30px;
  padding-bottom:50px;
}

.ssy_bottom_container
{
  /* margin-top:-100px; */
  margin-top:50px;
}

.ssy_blue_container
{
  padding:30px 40px;
  border-radius:25px;
  background-color:#9fcaec;
}

.ssy_blue_container .pcn_title
{
  margin-bottom:20px;
}

.ssy_blue_container .pcn_label_container 
{
  margin-bottom:15px;
  align-items: flex-start;
}

.ssy_blue_container .pcn_label_container:last-child
{
  margin-bottom:0px;
}

.pcn_marker_icon_none > div
{
  /* margin-right:20px; */
  margin-top:1px;
  width:35px;
  font-weight: bold;
}


/* Floorplan New Page */
.floorplan_container
{
  margin-bottom:0px;
}

/* .fp_main_container
{
  align-items: center;
} */
.enlarge_label
{
  padding:10px 0px;
  font-size:14px;
}

.fp_acc_container
{
  position: relative;
}

.fp_acc_container .acc-container
{
  border-bottom:1px solid black;
  width:65%;
}

.fp_acc_container .acc-body 
{
  display: none;
  margin-left:20px;
  padding:10px 0px;
  font-size:16px;
}

.fp_acc_container .first-acc-body
{
  display:block;
}

.fp_acc_container .crc-chevron {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  font-size: 1rem;
  max-width: 10%;
}

.fp_acc_container .fa-chevron-down {
  color: #000;
  font-size: 20px;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: -webkit-transform .3s ease-in;
  transition: -webkit-transform .3s ease-in;
  -o-transition: transform .3s ease-in;
  transition: transform .3s ease-in;
  transition: transform .3s ease-in, -webkit-transform .3s ease-in;
  float: right;
  cursor: pointer;
  /* padding:15px; */
}

.fp_acc_container .acc-head {
  /* border-bottom: 1px solid #fff; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
  -ms-flex-line-pack: center;
  align-content: center;
  /* padding: 1rem 2rem; */
  padding:10px 0px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing:0.2rem;
}

.fp_acc_container .acc-head.on
{
  color:#A78D7B;
}

.fp_acc_container .acc-head.on i
{
  transform: rotate(180deg);
}

.fp_acc_container .crc-close-anim {
	-webkit-transform: scale(.7);
	-ms-transform: scale(.7);
    transform: scale(.7);
}

.fp_acc_container .close {
    background-color: transparent;
    border: none;
 
}

.fp_acc_container button, .fp_acc_container select {
    text-transform: none;
    transform: scale(1);
}

.fp_acc_container .fa-times {
    color: #B34238;
    font-size: 20px;
    margin: auto;
    padding: 10px;
    display:none;
}

.floorplan_link:hover,
.floorplan_link.fp_active
{
  color:#A78D7B;
  cursor: pointer;
}

.floorplan_img
{
  display:none;
}

.floorplan_img.firstlayout_img
{
  display:block;
}

.floorplan_img img
{
  object-fit: contain;
  width:60%;
  border:1px solid #A78D7B;
}

.schematic_diagram_container
{
  margin-top:30px;
  margin-bottom:50px;
}

.schematic_diagram_container img
{
  width:100%;
}

.distance_time_caption
{
  font-size:12px;
}

/* Refreshed Top Section */
.fw_image_container
{
  position:relative;
}

.fw_image_container .container
{
  /* padding-top:30px; */
  padding-top:5vh;
}

.text_in_image_container
{
  position:absolute;
  top:0;
  width:100%
}

.video_intro_container
{
  color:#FFF;
  font-size:20px;
}

.video_intro_container p
{
  margin-bottom:15px;
  font-style: normal;
  /* font-size:20px; */
}

.video_intro_container2
{
  padding-left:10vw;
}

.video_intro_container2 img
{
  width:350px;
}

.video_intro_container2 p
{
  font-size:40px;
  margin-top:5px;
  font-style: italic;
}

.video_intro_container3 .row
{
  align-items: center;
}

.video_intro_container3 p
{
  font-size:35px;
  line-height:40px;
}

.caption_flex
{
  display:flex;
  justify-content: space-between;
}

.carousel_container
{
  padding-top:0px;
}
/* Refreshed Top Section */

/* Refreshed Saturday Section */
.bedroom_btn_container
{
  display:flex;
  justify-content: center;
  margin-top:20px;
  margin-bottom:30px;
}

.bedroom_btn_container div
{
  opacity:0.8;
}

.bedroom_btn_container div:first-child
{
  margin-right:10px;
}

.bedroom_btn_container div:hover
{
  cursor: pointer;
  opacity:1;
}

.bedroom_btn_container div.active
{
  opacity:1;
}
/* Refreshed Saturday Section */

.schematic_flex_container
{
  display:flex;
  gap:10px;
}

.error_text
{
  display:none;
  font-size:14px;
  font-weight:bold;
  color:red;
}

.disclaimer_text
{
  font-style: italic;
  font-size:14px;
}

@media(max-width: 1801px) {

  #sunday-gradient-canvas {
    width: 100%;
  }
}

/*newtriggerscroll*/
@media (max-width: 1366px) {
  #tuesday_desktop_container {
    padding-top: 0px;
  }

  #tuesday_desktop_container .tue_text_box_container {
    width: 70%;
  }

  .tue-portrait-size {
    /* width: 33vh; */
    /* width:30vh; */
    width:13vw;
  }

  .tue-landscape-size {
    /* width: 32vh; */
    /* width:55vh; */
    width:25vw;
  }

  .box_tue_img.tueimg1 {
    transform: translate(50px, -85px);
    top: -150px;
    right: 0px;
  }

  .box_tue_img.tueimg2 {
    transform: translate(370px, 60px);
    top: -60px;
    right:720px;
  }

  .box_tue_img.tueimg3 {
    transform: translate(70px, -15px);
    top: -230px;
    right:-50px;
  }

  .box_tue_img.tueimg4 {
    transform: translate(740px, 20px);
    top: -15px;
    right:1515px;
  }

  .box_tue_img.tueimg5 {
    transform: translate(940px, -15px);
    top: 5px;
    right:1050px;
    width:25vw;
  }

  .box_tue_img.tueimg6 {
    /* transform: translate(440px, -65px); */
    transform: translate(850px, -65px);
    top: 65px;
  }

  /* .box_tue_img.tueimg6 img
  {
    width:25vw;
  } */

  .top-part-padding-left
  {
    padding-left:50px;
  }
  .floorplan_container_box img
  {
    width:30%;
  }

  .bg_left_corner,
  .bg_right_corner
  {
    width:50vw;
  }

  .pcn_list_grid
  {
    display: grid;
    grid-template-rows: repeat(3, 40px);
    grid-auto-flow: column;
  }

  .floorplan_container
  {
    margin-bottom:70px;
  }
}

/*newtriggerscroll*/

@media (max-width:1300px)
{
  .box_tue_img.tueimg1 {
    transform: translate(50px, -85px);
    top: -150px;
    right: 0px;
  }

  .box_tue_img.tueimg2 {
    transform: translate(490px, 30px);
    top: -90px;
    right:640px;
  }

  .box_tue_img.tueimg4 {
    transform: translate(840px, 20px);
    top: -15px;
    right:1515px;
  }

  /* .box_tue_img.tueimg3 {
    transform: translate(70px, -50px);
    top: -120px;
    right:0px;
  } */

  /* .box_tue_img.tueimg5 {
    transform: translate(940px, -70px);
    top: 5px;
    right:1050px;
  } */

  .neighbourhood_container_2 .neighbourhood_legend_map_container
  {
    width:50%
  }

  .neighbourhood_container_2 .neighbourhood_legend_container
  {
    width:50%;
  }

  .st_img_icon 
  {
    height:65px;
  }

  .st_img_icon_text 
  {
    height:120px;
    margin-bottom:10px;
  }

  .monday-text-container {
    position: absolute;
    margin: 0px 65px;
    width: 70%;
    top: 0px;
    z-index: 1;
    left: 0px;
    padding-top:30px;
  }

}

@media (max-width:1200px) {
  .container {
    inline-size: min(100% - 90px* 2, 1516px);
  }

  .tue_second_box_container_3 {
    margin-top: 0;
  }

  .saturday-image-gallery>div {
    /* width: 23%; */
    width:30%;
  }
  .top-part-padding-left
  {
    padding-left:100px;
  }

  .north_coast_container
  {
    padding-top:200px;
  }
}

@media (max-width:1150px)
{
  .st_img_icon 
  {
    height:65px;
  }

  .st_img_icon_text 
  {
    height:150px;
    margin-bottom:10px;
  }
}

@media (max-width:1100px) {
  .container {
    inline-size: min(100% - 70px* 2, 1516px);
  }

  .wednesday-text-container {
    padding-right: 20px;
  }

  .options, .options3 {
    min-width: 520px;
    ;
  }

  .thursday-text-container,
  .saturday-text-container {
    padding-left: 20px;
  }


  h2 {
    font-size: 42px;
  }

  .greenshore-address-container {
    margin-top: 20px;
    ;
  }

  /* .menu_logo{
    width: 150px;
  } */

  .nav-link {
    font-size: 14px;
  }

  .top-part-padding-left
  {
    padding-left:150px;
  }
}

@media (max-width:1024px) {
  .container {
    padding-top: 10px;
  }

  .top-part-padding-left
  {
    padding-left:0px;
  }

  .top-image-size {
    width: 70%;
  }

  .exterior_iframe_container {
    height: 50vh;
  }

  .interior_iframe_container {
    height: 50vh;
  }

  /* .monday-text-container
  {
    margin-top:30px;
    margin-bottom:10px;
  } */

  #monday-carousel {
    margin-top: 50px;
  }

  .monday-text-container {
    margin: 0px 70px;
  }

  #monday-carousel .splide__pagination {
    bottom: 10px !important;
  }

  /* .saturday-image-gallery>div {
    width: 30%;
  } */

  #tuesday_desktop_container,
  #wednesday_desktop_container,
  #welcome_desktop_container {
    display: none;
  }

  #tuesday_mobile_container,
  #wednesday_mobile_container,
  #welcome_mobile_container {
    display: block;
    /* margin-top: 30px; */
    margin-top:20px;
  }

  #welcome_mobile_container
  {
    margin-bottom:100px;
  }

  /* #welcome-carousel .splide__pagination {
    bottom: -20px !important;
  } */

  /* #welcome-carousel .splide__slide {
    padding-bottom: 20px;
  } */

  .tuesday-text-container {
    margin-top: 0px;
  }

  #tuesday-carousel .splide__pagination {
    bottom: -20px !important;
  }

  /* #tuesday_mobile_container #tuesday-carousel .splide__slide {
    padding: 0 8% 0 0 !important;
  } */

  #wednesday_mobile_container {
    margin-top: 10px;
  }

  /* .wednesday-text-container {
    margin-top: 45px;
  } */

  #wednesday-carousel .splide__pagination {
    bottom: -20px !important;
  }

  #wednesday-carousel .splide__slide {
    padding-bottom: 0px;
  }

  .wednesday-img-caption {
    /* bottom:-20px; */
  }

  .thursday-text-container,
  .saturday-text-container  {
    /* margin-top: 40px; */
    margin-bottom: 10px;
  }

  #thursday-carousel .splide__pagination,
  #saturday-carousel .splide__pagination,
  #post-saturday-carousel .splide__pagination {
    bottom: -20px !important;
  }

  /* .friday-text-container {
    margin-top: 40px;
  } */

  #friday-carousel {
    margin-top: 10px;
    margin-bottom: 30px;
  }

  #friday-carousel .splide__pagination {
    bottom: -20px !important;
  }

  .saturday-content-section .container
  {
    padding-top:20px;
  }

  .saturday-text-container {
    /* margin-top: 30px; */
    margin-bottom: 10px;
  }

  .pre-sunday-section-container
  {
    padding-top:70px;
  }

  .pre-saturday-text-container
  {
    padding-right:0px;
  }

  .saturday-image-gallery {
    margin-bottom: 30px;
  }

  .sunday_container {
    margin-top: 40px;
  }

  .brochure-address-container {
    margin-top: 30px;
  }

  .footer-header-container {
    margin-top: 40px;
  }

  .developer-column-container {
    margin-top: 20px;
  }

  .developer-column-container-2 {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .nav_container {
    width: 100%;
  }

  .menu_bg {
    padding: 1px 0;
  }

  .menu_logo {
    /* width: 220px; */
    /* padding: 15px 0; */
    /* padding:3px 0px; */
    /* margin-top: 13px; */
    /* width: 200px; */
    margin-top:3px;
    width:150px;
    /* width:95px; */
  }

  .nav-link {
    padding-bottom: 0px;
  }

  .main_menu_bar {
    /* margin-top: 10px; */
  }

  .wa_logo {
    position: absolute;
    right: -7px;
  }

  .whatsapp-logo {
    width: 65%;
  }

  .last_nav_container {
    margin: 0px;
    width: 75%;
  }

  #navbar {
    text-align: center;
  }

  .last_nav_container {
    margin-top: 15px;
    /* width: 100%; */
    width:20%;
    margin-bottom: 15px;
  }

  /* [data-aos] {
    pointer-events: auto !important;
  }

  html:not(.no-js) [data-aos^=fade][data-aos^=fade] {
    opacity: 1 !important;
  }

  html:not(.no-js) [data-aos=fade-down] {
    transform: none !important;
  } */

  [data-aos][data-aos][data-aos-duration="2000"],
  body[data-aos-duration="2000"] [data-aos],
  [data-aos][data-aos][data-aos-duration="1000"],
  body[data-aos-duration="1000"] [data-aos],
  [data-aos][data-aos][data-aos-duration="1250"],
  body[data-aos-duration="1250"] [data-aos],
  [data-aos][data-aos][data-aos-duration="1500"],
  body[data-aos-duration="1500"] [data-aos],
  [data-aos][data-aos][data-aos-duration="2250"],
  body[data-aos-duration="2250"] [data-aos],
  [data-aos][data-aos][data-aos-duration="2500"],
  body[data-aos-duration="2500"] [data-aos],
  [data-aos][data-aos][data-aos-duration="2900"],
  body[data-aos-duration="2900"] [data-aos] {
    transition-duration: 1s !important;
  }

  .bg_left_corner,
  .bg_right_corner
  {
    width:100vw;
    /* height: 25vh; */
  }

  .floorplan_desktop
  {
    display:none;
  }
  .floorplan_mobile
  {
    display:block;
  }

  .layout-button-container
  {
    position:relative;
  }

  .floorplan_container
  {
    margin-top:10px;
    border:1px solid #BC6C25;
    background-color:#FFF;
  }

  .floorplan_desc
  {
    width:100%;
  }

  .floorplan_container_box 
  {
    /* height:60vh; */
    width:100%;
  }

  .floorplan_container_box img
  {
    width:1000px;
  }

  .floorplan_container_box 
  {
    padding-top:30px;
  }

  .floorplan_desc_right
  {
    padding-bottom:50px;
  }

  .lb_container
  {
    margin-top:0px!important;
  }

  .swipe_font
  {
    font-size:10px;
    color: #BC6C25;
    text-align: right;
  }

  .mobile_floorplan_container
  {
    margin:0px;
  }

  .zone_bg_img > .container
  {
    padding-top:50px;
  }
  
  .zone_box_container
  {
    border:1px solid #BC6C25;
    background-color:#FFF;
  }

  .zone_bg_img2
  {
    height:100vh;
  }

  .flexible_page_container
  {
    /* position:relative; */
    height:100%;
    /* height:100vh; */
  }

  .developers-section-container
  {
    flex-direction: column;
  }

  .readmorebtn 
  {
    display:none;
  }

  .developers-description-container .more {
      display: block;
  }

  .developer-column-container,
  .developer-column-container-2,
  .developer-column-container-3
  {
    width:100%;
  }

  .developer-column-container-3
  {
    margin-bottom:30px;
  }

  .developers-section-container .horizontal_line
  {
    display:none;
  }

  .readmorebtn.hide_desktop
  {
    display:none!important;
  }
}

@media (max-width:991px) {
  .hide-mobile {
    display: none;
  }

  .hide_desktop
  {
    display:block;
  }

  .fw_image_container .container
  {
    /* padding-top:30px; */
    padding-top:10px;
  }

  .text_in_image_container .row
  {
    flex-direction: column-reverse;
  }
  
  .video_intro_container2
  {
    padding-left: 0px;
    margin-bottom:30px;
  }

  .video_intro_container2 img
  {
    width:300px;
  }

  .video_intro_container2 p
  {
    font-size:30px;
  }
  
  .video_intro_container3 p
  {
    margin-bottom:40px;
  }

  .monday-section-container
  {
    margin-top:55px;
  }

  .monday-text-container {
    top: 40px;
  }

  .video_intro_container3 br
  {
    display:none;
  }

  .readmorebtn.hide_desktop
  {
    padding-right: calc(1.5rem * .5);
    padding-left: calc(1.5rem * .5);
  }

  #monday-carousel-mobile, #pre-sunday-carousel-mobile
  {
    /* display:flex; */
    display:block;
  }

  #monday-carousel-mobile img, #pre-sunday-carousel-mobile img
  {
    width:100%;
    height:100%;
  }

  .welcome_top_container .row.align-items-center
  {
    margin-right:0px;
  }

  .container {
    max-width: 1516px;
    inline-size: min(100% - 20px* 2, 1516px);
    margin-top: 20px;
  }

  .neighbourhood_container .container
  {
    margin-top:0px;
  }

  .monday-text-container {
    margin: 0px 20px;
  }

  .top-text-container
  {
    margin: 0px 20px;
  }

  body {
    font-size: 16px;
  }

  /* h2
  {
    font-size: 38px;
  } */

  .row-reverse-mobile-column {
    flex-direction: column-reverse;
  }

  .row-reverse-mobile-column .img-pr {
    margin-top: 10px;
  }

  .img-pr {
    padding-right: 0px;
    /* margin-bottom:20px; */
  }

  .content_container {
    margin-bottom: 0px;
  }

  .corner-triangle:before {
    left: 0px;
    top: -10px;
  }

  .splide__pagination__page {
    height: 8px !important;
    width: 8px !important;
    margin: 5px !important
  }

  /* .wednesday-text-container
  {
    margin-bottom:20px;
  } */

  .thursday-text-container,
  .saturday-text-container {
    padding-left: 12px;
  }

  .footer-section h2 {
    margin-bottom: 20px;
  }

  .developers-section-container {
    margin-top: 50px;
    margin-bottom: 10px;
  }

  .developers-description-container {
    margin-bottom: 50px;
  }

  .developers-description-container,
  .developers-description-container-2,
  .developers-description-container-3 {
    padding-right: 0px;
  }

  .developer2_img
  {
    margin-right:0px;
  }

  .ddc_mobile
  {
    margin:0px!important;
  }

  .footer-small-text {
    margin-top: 50px;
    margin-bottom: 20px;
  }


  .tues-gradient-bg-container {
    display: none;
  }

  .saturday-image-gallery img {
    width: 100%;
  }

  .contact_form_container {
    padding-bottom: 0px;
  }

  .options, .options3 {
    min-width: unset;
    max-width: unset;
    width: 100%;
  }

  .sunday_container {
    display: flex;
    flex-direction: column-reverse;
  }

  .contact_us_btn {
    padding: 5px 10px;
  }

  .floorplan_container
  {
    overflow:auto;
    padding-bottom:50px;
  }

  .floorplan_container img
  {
    /* max-width:1440px!important; */
    /* width:1440px!important; */
  }

  .layout-button-container {
    /* bottom:100px; */
    width:100%;
  }

  .zone_box_container
  {
    overflow:auto;
    position: relative;
    width: 100%;
    height: 55vh;
    overflow:auto;
  }

  /* Adjust the width for mobile responsiveness*/
  .zone_box_container svg
  {
    width:1300px;
  }

  .zone_box_container image
  {
    /* width:1076px; */
  }

  .zone_box_container_2 svg
  {
    width:1000px;
  }

  .zone_box_container_2 image
  {
    /* width:890px; */
  }
  /* Adjust the width for mobile responsiveness*/

  .desktop_sidepanel
  {
    display:none;
  }

  .mobile_sidepanel
  {
    display:block;
  }

  .open {
    height: 25vh;
  }

  .open .legend_list
  {
    animation: opacity_animate2 1s;
  }

  @keyframes opacity_animate2
  {
    from {opacity:0}
    to {opacity:1;}
  }

  .horizontal_line
  {
    margin-top:0px;
    height:1px;
    border-bottom:1px solid transparent;
  }

  .inner.horizontal_line2
  {
    border-bottom:1px solid transparent;
  }

  .neighbourhood_container_2
  {
    flex-direction: column-reverse;
    padding-top:10px;
  }

  .neighbourhood_container_2 .neighbourhood_legend_map_container
  {
    width:100%
  }

  .neighbourhood_container_2 .neighbourhood_legend_container
  {
    width:100%;
    padding:20px;
  }

  .icon_text_normal_container
  {
    font-size:13px;
  }

  .neighbourhood_container
  {
    padding-bottom:50px;
  }

  .neighbourhood_container_4a
  {
    padding-bottom:0px;
  }

  .neighbourhood_container_4b 
  {
    flex-direction: column;
  }

  .neighbourhood_container_4b .neighbourhood_pcn_map_container
  {
    width:100%;
    padding-right:0px;
    padding-bottom:30px;
  }

  .neighbourhood_container_4b .neighbourhood_pcn_container
  {
    width:100%;
  }

  .fp_main_container .col-md-6
  {
    width:100%!important;
  }

  .fp_acc_container
  {
    margin-top:0px;
    padding-top:20px;
    padding-bottom:90px;
  }

  .fp_main_container
  {
    flex-direction: column-reverse!important;
  }

  .floorplan_img
  {
    text-align: center;
    margin-bottom:20px;
  }

  .fp_acc_container .acc-container {
      width: 100%;
  }

  .schematic_diagram_container img
  {
    width:100%;
  }

  .schematic_diagram_container
  {
    margin-bottom:20px;
  }

  .bedroom_btn_container {
      margin-bottom:20px;
  }

  .pre-saturday-content-section
  {
    margin-top:-30px;
  }

  .north_coast_container
  {
    padding-top:0px;
  }

  .ncic_right_legend_container
  {
    padding-top:30px;
    width:90%;
    position:initial;
  }

  .ncic_subspotlight
  {
    flex-wrap: wrap;
  }

  .sunday-content-container .container
  {
    margin-top:0px;
  }

  .st_img_icon 
  {
    height:65px;
  }

  .st_img_icon_text 
  {
    height:auto;
    margin-bottom:10px;
  }

  .last_nav_container {
    width:100%;
  }

}

@media (max-width:768px) {

  .footer-small-text {
    margin-top: 20px;
    margin-bottom: 0px;
  }

  .footer-section .content_container {
    padding-bottom: 30px;
  }

  .footer-p-mb {
    margin-bottom: 10px;
  }

  .developers-section-container,
  .developers-description-container {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .saturday-image-gallery>div {
    width: 46%;
  }

  .stats_icon img
  {
    width:50px;
  }

  .stats_text_1
  {
    font-size:25px;
  }

  .pcn_img
  {
    padding-right:0px;
  }

  .pcn_list_grid
  {
    display: grid;
    grid-template-rows: repeat(4, 40px);
    grid-auto-flow: column;
  }

  .floorplan_img img
  {
    width:80%;
  }

  /* .ssy_bottom_container
  {
    margin-top:-50px;
  } */

}

@media (max-width:600px)
{
  .pcn_list_grid
  {
    grid-auto-flow: unset;
  }

  /* .ncic_right_legend_container
  {
    font-size:14px;
  } */
  .ncic_icon > div
  {
    width:25px;
    height:25px;
  }
}

@media (max-width:575px)
{
  .small_size_screen_width
  {
    width:50%;
  }
  /* .ncic_right_legend_container
  {
    font-size:13px;
  } */
}

@media (max-width:500px)
{
  .floorplan-btn
  {
    font-size:12px;
    margin:0px 5px;
  }

  .itnc_left
  {
    width:35%;
    margin-right:10px;
  }

  .icon_text_normal_container
  {
    font-size:11px;
  }

  .normal_subtitle
  {
    font-size:10px;
  }

  .sed_container .icon_text_normal_container,
  .education_container .icon_text_normal_container,
  .recreation_container .icon_text_normal_container,
  .greenspace_container .icon_text_normal_container
  {
    font-size:13px;
  }
  /* .ncic_right_legend_container
  {
    font-size:12px;
  } */
}

@media (max-width:450px)
{
  .education_flex_container,
  .recreation_flex_container,
  .greenspace_container
  {
    flex-direction: column;
  }

  .education_flex_container > div:first-child
  {
      width: 90%;
  }
  /* .ncic_right_legend_container
  {
    font-size:11px;
  } */
}

@media (max-width:415px) {
  /* .saturday-image-gallery>div {
    width: 46%;
  } */

  body {
    font-size: 14px;
  }
}

@media (max-width: 321px) {
  .saturday-image-gallery>div {
    width: 100%;
  }

}