/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  font-family: "Poppins", sans-serif;
}

body {
  line-height: 1;
  background: url(../images/about_us_bg.webp);
  min-height: 550px;
  background-attachment: fixed;
  background-repeat: repeat;
  background-position: center;
  background-size: 70%;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Quattrocento", sans-serif;
}

aside {
  background: rgba(11, 20, 27, 1) url("../images/aside_bg.jpeg");
  position: fixed;
  width: 28%;
  height: 100%;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  left: -40%;
  transition: 0.6s;
  z-index: 999;
}

aside.open {
  left: 0px;
}

aside ul {
}

aside ul li {
  padding: 5px 0px 10px;
}

aside ul li a {
  color: rgba(236, 209, 141, 1);
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  line-height: normal;
  position: relative;
  font-weight: 200;
}

aside ul li:not(.download_cta_btn) a:before {
  content: "";
  position: absolute;
  height: 1px;
  background-color: rgba(236, 209, 141, 1);
  width: 0px;
  bottom: -5px;
  transition: 0.6s;
  left: 0px;
  right: 0px;
  margin: auto;
}

aside ul li:not(.download_cta_btn, .download_phone_cta) a:hover:before {
  width: 100%;
}

aside ul li:not(.download_cta_btn) a:hover {
  color: rgba(236, 209, 141, 1);
}

.close_btn {
  position: absolute;
  right: 50px;
  top: 50px;
  cursor: pointer;
}

.close_btn svg {
  transition: 0.6s;
  transform: rotate(0deg);
}

.close_btn:hover svg {
  transform: rotate(90deg);
}

/* Header */
header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 6px;
  z-index: 9;
}

header .menu_logo {
}

header .menu_logo img {
  width: 145px;
  cursor: pointer;
}

header .brand_logo {
  display: flex;
  align-items: end;
  gap: 25px;
}
header .brand_logo a.head_phone_cta {
  width: 100%;
  border-radius: 30px;
  background: #c39738;
  border: none;
  transition: 0.6s;
  padding: 10px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  display: inline-block;
}

header .brand_logo a {
}

header .brand_logo img {
  width: 100px;
}

/* Desktop: phone number + cascadia logo in header */
header .header_right {
  gap: 22px;
}

header .header_phone_link {
    display: inline-flex;
    align-items: center;
    gap: 0px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    background: #c39738;
    padding: 5px 10px;
    border-radius: 50px;
}

/* header .header_phone_link:hover {
  color: #000000;
} */

header .header_phone_link .call_icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  /* background: #ceab50; */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
}

header .brand_logo .header_cascadia_logo {
  display: inline-block;
  line-height: 0;
}

header .brand_logo a.header_cascadia_logo img {
  width: 80px;
  height: auto;
  padding-bottom: 0;
}

/* Mobile: call button + cascadia logo in header */
header .brand_logo .header_right_mobile {
  gap: 14px;
}

header .brand_logo .header_cascadia_logo_mobile {
  display: inline-block;
  line-height: 0;
}

header .brand_logo a.header_cascadia_logo_mobile img {
  width: 40px;
  height: auto;
  padding-bottom: 0;
}

header .brand_logo a.header_call_btn_mobile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ceab50;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease;
}

header .brand_logo a.header_call_btn_mobile:hover,
header .brand_logo a.header_call_btn_mobile:focus {
  background: #c39738;
  color: #fff;
}

header.fixed-header {
  background: #000;
  border-bottom: 1px solid #ffffff47;
  padding: 5px 0px !important;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* Header */

/* Main Home Page */
.main-home-page .video-wrapper {
  height: 100vh;
  background: #0a1819;
}
.main-home-page video {
  height: 96vh;
  object-fit: cover;
  object-position: bottom;
  background: #0a1819;
}

.banner_form_wrapper {
  position: absolute;
  bottom: -88px;
  padding: 0px 3vw;
  width: 100%;
}

.banner_form_wrapper form {
  gap: 10px;
  width: 100%;
  justify-content: space-between;
}

.banner_form_wrapper form .input-block {
  width: 19%;
}

.banner_form_wrapper
  form
  .input-block
  input:not([type="checkbox"], [type="submit"]) {
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  color: #fff;
  width: 100%;
  height: 35px;
}

/* .banner_form_wrapper form .input-block input[type='tel'] {
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    color: #fff;
} */

/* Style for the volume button */

#hero-banner video {
  position: relative;
}

#volume-control {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  z-index: 999;
}

button#unmute_btn {
  position: absolute;
  top: 136px;
  right: 47px;
  background: transparent;
  border: none;
  color: #c39738;
  font-size: 33px;
}

/* Video Play Control */
button.play-pause-btn {
  position: absolute;
  bottom: 85px;
  left: 3%;
  background: transparent;
  border: none;
  color: #c39738;
  font-size: 25px;
}

.loading {
  opacity: 0;
  pointer-events: none;
}

.loading.active {
  opacity: 1;
  pointer-events: fill;
}

/*  */
aside li.download_cta_btn {
  width: 100%;
  text-align: center;
  display: block;
}

aside li.download_cta_btn a {
  width: 100%;
  text-align: center;
  display: block;
}

aside li.download_cta_btn button {
  width: 205px;
}

.location_walkthrough_av_section h2.title {
  color: rgba(236, 209, 141, 1);
  font-size: 30px;
  text-align: center;
  /* position: absolute;
  top: 20px;
  left: 0px;
  right: 0px; */
  text-transform: uppercase;
}
.walkthrough_section h2.title {
  color: rgba(236, 209, 141, 1);
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.model_apartment_section h2.title {
  color: rgba(236, 209, 141, 1);
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}
/*  */
#scrollToNext {
  position: fixed;
  bottom: 60px;
  right: 40px;
  cursor: pointer;
}

@media (max-width: 660px) {
  header .brand_logo a.head_phone_cta {
    border-radius: 100px;
  }
  .location_walkthrough_av_section h2.title {
    color: rgba(236, 209, 141, 1);
    font-size: 30px;
    text-align: center;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    display: block;
  }
  .audioBtn {
    top: 4%;
    left: 8%;
  }

  button.play-pause-btn {
    position: absolute;
    bottom: 8%;
    left: 3%;
    background: transparent;
    border: none;
    color: #c39738;
    font-size: 33px;
  }
}

/* Style for the volume button */

.banner_form {
}

.popup-video {
  position: relative;
}

.popup-video:before {
  content: "";
  background: url("assets/images/youtube_play.png") 0 0 no-repeat;
  position: absolute;
  width: 60px;
  height: 60px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-size: 100%;
  z-index: 99;
}

.banner_form_wrapper form .input-block .form-check label {
  font-size: 10px;
  width: 230px;
  color: #fff;
  line-height: 16px;
}

.loading {
  display: none;
}

.banner_form_wrapper form .input-block .form-check label a {
  color: #c9a245;
}

.banner_form_wrapper input.submit_btn {
  width: 160px;
  padding: 10px;
  border-radius: 30px;
  background: #c39738;
  border: none;
  transition: 0.6s;
  padding: 20px;
}

.banner_form_wrapper input.submit_btn:hover {
  background: #ffffff;
  color: #c39738;
}

.download_cta_btn img {
  width: 250px;
}

.banner_form_wrapper .submit_btn_wrapper {
  display: flex;
  align-items: start;
  justify-content: center;
}

.banner_form_wrapper form .input-block:last-child {
  flex: 0.5;
}

label.error {
  color: red;
  font-size: 12px;
  margin-top: 15px;
}

.banner_form_wrapper .flag-container {
  height: 35px;
}

section.main-home-page {
  line-height: 0px;
}

/* Main Home Page */

/* About Us Page */
.space-pd {
  padding: 70px 0px;
}

.space-pd-top {
  padding: 20px 0px 0px;
}

.space-pd-bottom {
  padding: 0px 0px 70px;
}

p.lead,
.lead {
  font-size: 16px;
  line-height: 30px;
  margin: 10px 0px;
  font-family: "Quattrocento", sans-serif;
}

.about_us_cascadia_section,
.about_us_cascadia_section_duplicate {
  /* background: url("../images/about_us_bg.webp"); */
  min-height: 550px;
  background-attachment: fixed;
  background-repeat: repeat;
  background-position: center;
  background-size: 70%;
}

.about_us_cascadia_section .title img,
.about_us_cascadia_section_duplicate .title img {
  width: 340px;
}

.know_more_btn img {
  width: 190px;
}

.know_more_btn a {
  text-decoration: none;
}

.know_more_btn button {
  /* padding: 12px 30px; */
  border: none;
  background: transparent;
  color: rgba(236, 209, 141, 1);
  font-family: "Quattrocento", sans-serif;
  position: relative;
  width: 18%;
  height: 40px;
}

.know_more_btn button:hover {
  background-color: #c39738;
  transition: 0.4s;
}

.know_more_btn button::before {
  content: "";
  position: absolute;
  width: 202px;
  height: 40px;
  border: 1px solid rgba(236, 209, 141, 1);
  margin: 0 auto;
  text-align: center;
  top: 0px;
  left: 0px;
}

.know_more_btn button::after {
  content: "";
  position: absolute;
  width: 196px;
  height: 46px;
  border: 1px solid rgba(236, 209, 141, 1);
  margin: 0 auto;
  text-align: center;
  top: -3px;
  left: 3px;
}

.about_us_cascadia_section .content,
.about_us_cascadia_section_duplicate .content {
  width: 60%;
}

.about_us_cascadia_section .content p,
.about_us_cascadia_section_duplicate .content p {
  color: rgba(236, 209, 141, 1);
  font-family: "Quattrocento", sans-serif;
}

/* About Us Page */

/* Elevation Section */
section.elevation_image_section {
  line-height: 0px;
  position: relative;
}

section.elevation_image_section span {
  position: absolute;
  top: 5%;
  left: 2%;
  font-size: 11px;
  color: #000000;
}

.elevation_image_section img {
  max-width: 100%;
  width: 100%;
}
.location-wt, .project-wt , .sample-wt {
  width: 45%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
}
.location-wt img, .project-wt img, .sample-wt img {
  width: 80%;
}
/* Elevation Section */

/* Golden Section */

section.golden-section {
  background: url(../images/new-golden-bg1.webp) no-repeat;
  background-size: cover;
}

h2.title {
  font-size: 38px;
  color: rgba(12, 19, 29, 1);
}

.our_partner_slider {
  width: 100% !important;
  margin: auto;
  padding: 0vw 8vw;
}

.our_partner_slider .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.our_partner_slider .item .left {
  width: 80%;
  padding-right: 5vw;
}

.our_partner_slider .item .left h4 {
  color: #000;
  font-size: 30px;
}

.our_partner_slider .item .left p.lead {
  font-weight: 600;
}

.our_partner_slider .item .right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.our_partner_slider .item .right img {
  width: 100%;
  margin-right: 0px;
}

.our_partner_slider .owl-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 30%;
  width: 100%;
  left: 0px;
  right: 0px;
  margin: auto;
}

.our_partner_slider .owl-nav img {
  width: 50px;
}

/* Golden Section */

/* Logo Inspiration */
.logo_inspiration {
  /* background: url("../images/about_us_bg.webp"); */
  background-repeat: repeat;
  background-size: 50%;
  background-position: top;
}

.logo_inspiration .inner_box {
  padding-top: 30px;
}

.logo_inspiration .inner_box .title {
}

.logo_inspiration .inner_box .title img {
  width: 400px;
}

.proj-main-logo {
  justify-content: center;
  margin-top: -120px;
  margin-bottom: -120px;
}

.logo_inspiration .inner_box .content {
}

.logo_inspiration .inner_box .content p {
  color: rgba(236, 209, 141, 1);
  line-height: 30px;
  width: 70%;
}

.logo_inspiration .image_box {
}

.logo_inspiration .image_box img {
  width: 90px;
  display: block;
  margin: auto;
}

.logo-text {
  display: block;
  margin: auto;
  margin-top: 17px;
  width: 210px;
}

.cascadia_content_box p {
  text-align: left;
}

.cascadia_content_box .title img {
  width: 250px;
}

.cascadia_content_box .content {
  width: 100%;
  margin: auto;
}

.cascadia_content_box .content p {
  color: rgba(236, 209, 141, 1);
  padding-left: 285px;
}

/* Logo Inspiration */

/* Double Slider Section */
.double_slider_section {
}

.inner_image_slider {
}

.inner_content_slider {
}

.inner_content_slider .title img {
  width: 360px;
}

.double_slider_section {
  /* background: url(../images/about_us_bg.webp); */
  background-repeat: repeat;
  background-size: 50%;
  background-position: top;
}

.inner_content_slider {
}

.inner_content_slider h4 {
  color: rgba(236, 209, 141, 1);
  font-size: 30px;
}

.inner_content_slider p {
  color: rgba(236, 209, 141, 1);
}

.owl-double-image-slider .owl-nav,
.owl-amenities-image-slider .owl-nav {
  display: none;
}

.double_slider_section .owl-double-image-slider .item {
}

.double_slider_section .owl-double-image-slider .item .image_box,
.double_slider_section .owl-amenities-image-slider .item .image_box {
  position: relative;
  padding: 20px 0px;
}

.double_slider_section .owl-double-image-slider .item .image_box:before,
.double_slider_section .owl-amenities-image-slider .item .image_box:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0px;
  width: 65%;
  height: 100%;
  border: 1px solid rgba(236, 209, 141, 1);
  margin: auto;
  z-index: -1;
}

.double_slider_section .owl-double-image-slider .item .hover_image,
.double_slider_section .owl-amenities-image-slider .item .hover_image {
  width: 85%;
  position: relative;
  margin: auto;
  overflow: hidden;
}

.double_slider_section .owl-double-image-slider .item .hover_image img,
.double_slider_section .owl-amenities-image-slider .item .hover_image img {
  transition: 0.6s;
}

.double_slider_section .owl-double-image-slider .item .hover_image:after,
.double_slider_section .owl-amenities-image-slider .item .hover_image:after {
  content: "";
  position: absolute;
  /* background: url("../images/gallery/gary_filter.png"); */
  width: 100%;
  height: 100%;
  z-index: 1;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
}

.double_slider_section .owl-double-image-slider .item .hover_image:hover img,
.double_slider_section
  .owl-amenities-image-slider
  .item
  .hover_image:hover
  img {
  transform: scale(1.2);
}

.double_slider_section .owl-double-content-slider .owl-nav,
.double_slider_section .owl-amenities-slider .owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  bottom: -67px;
}

.double_slider_section .owl-double-content-slider .owl-nav img,
.double_slider_section .owl-amenities-slider .owl-nav img {
  width: 50px;
}

.double_slider_section .owl-double-content-slider .owl-dots,
.double_slider_section .owl-amenities-slider .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -45px;
  width: 70%;
  gap: 10px;
  left: 0px;
  right: 0px;
  margin: auto;
}

.double_slider_section .owl-double-content-slider .owl-dots .owl-dot,
.double_slider_section .owl-amenities-slider .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background: transparent;
  border: 1px solid rgba(236, 209, 141, 1);
  border-radius: 100px;
}

.double_slider_section .owl-double-content-slider .owl-dots .owl-dot.active,
.double_slider_section .owl-amenities-slider .owl-dots .owl-dot.active {
  background-color: rgba(236, 209, 141, 1);
}

.space-pd-big {
  padding: 100px 0px;
}

/* Double Slider Section */

/* Master Plan */
.master-plan-section {
  /* background: url(../images/about_us_bg.webp); */
  background-repeat: repeat;
  background-size: 50%;
  background-position: top;
}

.master-plan-section .inner_content .title img {
  width: 430px;
  position: relative;
  left: -18px;
}

.master-plan-section .inner_content p.lead {
  color: rgba(236, 209, 141, 1);
  /* line-height: 35px; */
}

.master-plan-section .inner_content .lead.desktop-visible {
  width: 85%;
}

.master-plan-section .master_plan_image_box {
  position: relative;
  padding: 20px;
}

.master-plan-section .master_plan_image_box img {
  width: 100%;
  box-shadow: rgb(255 255 255 / 8%) 0px 3px 12px 3px;
}

.master-plan-section .master_plan_image_box:before {
  content: "";
  position: absolute;
  right: -30px;
  top: 20%;
  width: 70%;
  height: 85%;
  border: 1px solid rgba(236, 209, 141, 1);
  margin: auto;
  z-index: 0;
}

.master-plan-section .master_plan_image_box .hover_image {
  width: 75%;
  margin: auto;
  position: relative;
}

.amenities_section h2.title.mb-1 img {
  width: 200px;
}

/* Master Plan */

/* Plans Section */
.unit_plans_section {
  /* background: url(../images/about_us_bg.webp); */
  background-repeat: repeat;
  background-size: 50%;
  background-position: top;
}

.unit_plans_section .title img {
  width: 240px;
}

.owl-plan-slider {
  width: 90% !important;
  margin: auto;
}

.owl-plan-slider .box {
  padding: 20px;
  border: 1px solid rgba(198, 156, 62, 1);
}

.owl-plan-slider .owl-nav .owl-prev {
  position: absolute;
  top: 37%;
  left: -10%;
}

.owl-plan-slider .owl-nav .owl-next {
  position: absolute;
  top: 37%;
  right: -10%;
}

/* Plans Section */
/* concierge_section */
.concierge_section .title {
  color: #d2ab6a !important;
  font-size: 43px;
  letter-spacing: 1px;
}

.concierge_section .content_box_with_image {
  width: 80%;
  margin: 0 auto;
}

.content_box_with_image .quent-wrapper {
  width: 95%;
  margin: 0 auto;
}

.quent-wrapper img {
  width: 45%;
}

.cs-content h5 {
  width: 35%;
  margin: 22px auto;
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 1px;
  color: #dfb56f;
}

.cs-content .lead {
  font-size: 16px;
  width: 80%;
  margin: 0 auto;
  padding-bottom: 80px;
}

/* concierge_section */
/* IGPA Section */
.global_title_section {
  /* background: url(../images/about_us_bg.webp); */
  background-repeat: repeat;
  background-size: 50%;
  background-position: top;
}

.global_title_section .title img {
  width: 440px;
}

.content_box_with_image {
  width: 55%;
  color: rgba(236, 209, 141, 1);
}

.content_box_with_image h4 {
  font-size: 22px;
}

.content_box_with_image h5 {
}

/* IGPA Section */

/* Footer Form */
.footer_form_section {
  /* background: url(../images/about_us_bg.webp); */
  background-repeat: repeat;
  background-size: 50%;
  background-position: top;
}

.footer_form_section h2.title {
  font-size: 35px;
  color: rgba(236, 209, 141, 1);
  position: relative;
  line-height: 35px;
}

.footer_form_section h2.title:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  left: 0px;
  bottom: -6px;
  background-color: rgba(236, 209, 141, 1);
}

.footer_form_section .brand_logo_footer img {
  width: 100px;
}

.footer_form_inner_box {
  padding: 0px;
  width: 100%;
}

.footer_form_inner_box form {
  gap: 10px;
  width: 100%;
  justify-content: space-evenly;
}

.footer_form_inner_box form .input-block {
  width: 19.2%;
}

.footer_form_inner_box
  form
  .input-block
  input:not([type="checkbox"], [type="submit"]) {
  background: transparent;
  border: none;
  border-bottom: 1px solid #ecd18d;
  padding: 10px 8px;
  outline: none;
  color: #fff;
  width: 100%;
}

.footer_form_inner_box form .input-block input.phone {
  padding-left: 52px;
}

.footer_form_inner_box form .input-block {
  margin-bottom: 13px;
}

.footer_form_inner_box form .input-block .form-check label {
  font-size: 10px;
  width: 100%;
  color: #fff;
  line-height: 16px;
}

.footer_form_inner_box form .input-block .form-check label a {
  color: #c9a245;
}

.footer_form_inner_box input.submit_btn {
  width: 160px;
  padding: 10px;
  border-radius: 30px;
  background: #c39738;
  border: none;
  transition: 0.6s;
  padding: 15px;
}

.footer_form_inner_box input.submit_btn:hover {
  background: #ffffff;
  color: #c39738;
}

.footer_form_inner_box .submit_btn_wrapper {
  display: flex;
  align-items: start;
  justify-content: center;
}

.footer_form_inner_box form .input-block:last-child {
  width: 15%;
}

.footer_form_inner_box .flag-container {
  height: 47px;
}

/* Footer Form */

/* Footer Copyright */
footer {
  text-align: center;
  padding-bottom: 10px;
  color: rgba(236, 209, 141, 1);
}

footer a {
  color: rgba(236, 209, 141, 1);
}

footer a:hover {
  color: #fff;
}

/* Footer Copyright */

/* Privacy Policy Style Start */
body .popupPrivacyPolicyDesign {
  max-width: 700px;
  border-radius: 10px;
  overflow: hidden;
  padding: 3% 3%;
  padding-right: 1%;
  background: #ffffff;
}

body .popupPrivacyPolicyDesign .scroll_content {
  height: 480px;
  overflow: hidden;
  overflow-y: scroll;
  padding-right: 20px;
}

body .popupPrivacyPolicyDesign h3 {
  font-size: 30px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
  color: black;
  text-transform: uppercase;
}

body .popupPrivacyPolicyDesign label.sub-title {
  font-size: 22px;
  margin-bottom: 10px;
  display: block;
  margin-top: 20px;
  line-height: 25px;
}

body .popupPrivacyPolicyDesign p {
  line-height: 25px;
  margin-bottom: 20px;
  text-align: left;
}

body .popupPrivacyPolicyDesign label.sub-title strong {
  font-weight: 400;
  color: black;
}

body .popupPrivacyPolicyDesign ol,
body .popupPrivacyPolicyDesign ul {
  padding-left: 20px;
}

body .popupPrivacyPolicyDesign ol li {
  line-height: 25px;
  margin-bottom: 10px;
  list-style-type: disc;
  line-height: 25px;
}

body .popupPrivacyPolicyDesign ul li {
  line-height: 25px;
  margin-bottom: 10px;
  list-style-type: disc;
  line-height: 25px;
}

/* width */
.popupPrivacyPolicyDesign .scroll_content::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.popupPrivacyPolicyDesign .scroll_content::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
.popupPrivacyPolicyDesign .scroll_content::-webkit-scrollbar-thumb {
  background: #a57b2d;
  border-radius: 10px;
}

/* Handle on hover */
.popupPrivacyPolicyDesign .scroll_content::-webkit-scrollbar-thumb:hover {
  background: #a57b2d;
}

/* Privacy Policy Style End */

:root {
  scroll-behavior: unset;
}

/* Download Brochure Form */
body .popupFormDesign {
  background-color: #fff;
  width: 100%;
  margin: auto;
  position: relative;
  border-radius: 10px;
  max-width: 400px;
  overflow: hidden;
  padding: 0px !important;
  z-index: 9999;
}

body .popupFormDesign .thumbnail_image img {
  height: 40vh !important;
  width: 100% !important;
  object-fit: cover;
}

.popupFormDesign .inner_form {
  padding: 15px 20px;
}

.inner_form .form-icons {
  /* padding-bottom: 15px; */
}

.popupFormDesign h3 {
  font-size: 25px;
  text-align: center;
  margin-bottom: 10px;
}

.popupFormDesign p {
  text-align: center;
  margin-bottom: 6px;
}

.popupFormDesign form input,
.popupFormDesign form select {
  width: 100%;
  /* margin-bottom: 10px; */
  height: 45px;
  border: 1px solid black;
  /* border-radius: 7px; */
  padding: 0px 10px;
  font-size: 15px;
  /* background-color: #f0f0f0; */
  border-color: #f0f0f0;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  color: #000;
  font-family: "Poppins", sans-serif;
}

.popupFormDesign .phone_field {
  margin-bottom: 10px;
}

.popupFormDesign .download_status p {
  font-size: 13px;
  text-align: center;
}

.popupFormDesign form .form-field .terms_conditions {
  display: flex;
  justify-content: center;
  margin: 0px;
  flex-direction: row;
  margin-bottom: 0px;
}

.terms_conditions {
  display: flex;
  padding-top: 15px;
}

.popupFormDesign form .form-field .terms_conditions input[type="checkbox"] {
  width: auto;
  position: relative;
}

.popupFormDesign form .form-field .privacy_policy {
  font-size: 10px;
  margin-left: 10px;
  line-height: 20px;
  font-family: "Poppins", sans-serif;
}

.popupFormDesign form .terms_conditions a {
  margin-left: 5px;
  color: #c9a245;
}

.popupFormDesign form input[type="submit"] {
  background: #c39738;
  color: #fff;
  width: 50%;
  display: block;
  margin: 0 auto;
  border-radius: 2px;
}

.popupFormDesign form label.error {
  margin: 0px;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.popupFormDesign form .intl-tel-input .flag-container {
  height: 45px;
}

/* Download Brochure Form */

.cloudzoom-blank {
  display: none;
}

.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  opacity: 1;
  color: #fff !important;
  width: 30px;
  height: 30px;
  background: red;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  border-radius: 100%;
}

.mobile-visible {
  display: none;
}

.desktop-visible {
  display: block;
}

/* sticky form code */
.stickyForm .stickyForm_wrapper {
  padding: 20px;
}

.stickyForm {
  display: none;
  position: fixed;
  top: 5%;
  width: 310px;
  right: -310px;
  text-align: center;
  padding: 0px;
  background: #fff;
  border-radius: 11px 0px 0 11px;
  -webkit-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  z-index: 999;
}

.stickyForm.active {
  right: 0px;
}

.stickyForm * {
  font-family: "Quattrocento", sans-serif;
}

.stickyForm .btn {
  background: #c39738;
  padding: 10px 30px;
  position: absolute;
  top: 0px;
  bottom: 0px;
  margin: auto;
  left: -94px;
  color: #fff;
  height: 40px;
  border-radius: 7px 7px 0 0;
  font-size: 15px;
  cursor: pointer;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  border: 0;
  perspective: 100px;
  outline: 0 !important;
}

#stickyForm .close_btn {
  position: absolute;
  right: 7px;
  top: 2px;
  cursor: pointer;
}

.stickyForm input:not([type="checkbox"], [type="submit"]) {
  background: transparent;
  border: none;
  border-bottom: 1px solid #d2a24d;
  outline: none;
  color: #d2a24d;
  width: 100%;
  padding: 10px 8px;
}

.stickyForm .terms_conditions .privacy_policy {
  font-size: 11px;
  width: 100%;
  color: #c9a245;
  line-height: 16px;
  margin-bottom: 8px;
}

.stickyForm .terms_conditions .privacy_policy a {
  color: #c9a245;
}

.stickyForm [type="submit"] {
  border-radius: 0px;
  background: #c39738;
  border: 1px solid rgba(236, 209, 141, 1);
  transition: 0.6s;
  padding: 11px 44px;
  width: auto;
  margin-top: 9px;
  color: #fff;
}

.stickyForm input::placeholder {
  color: #c39738;
  opacity: 1;
}

.stickyForm_wrapper .proj-high-box {
  border: 1px solid rgb(255 255 255 / 77%);
  padding: 5px;
  margin: 10px 0px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proj-high-box img {
  width: 100%;
}

.form-icons {
  position: relative;
  top: -20px;
}

.form-icons p {
  color: #c9a245;
  padding-bottom: 12px;
}

.about_us_cascadia_section_duplicate {
  /* min-height: 0px !important; */
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.back-to-top {
  background: #c39738;
  box-shadow: 0 2px 12px rgb(0 0 0 / 8%);
}

.back-to-top i {
  color: black;
  font-size: 30px;
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: 0.4s;
}

.banner-arrow-indicator .box {
  position: absolute;
  bottom: 17%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.box span {
  display: block;
  width: 30px;
  height: 30px;
  border-bottom: 2px solid #ff8c0091;
  border-right: 2px solid #ff8c0091;
  box-shadow: 4px 4px 4px -1px #ff8c0091;
  transform: rotate(45deg);
  margin: -20px;
  animation: animate 2s infinite;
}

.box span:nth-child(1) {
  animation-delay: -0.2s;
}

.box span:nth-child(2) {
  animation-delay: -0.4s;
}

.box span:nth-child(3) {
  animation-delay: -0.6s;
}

.stickyForm .close-button.close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin: auto;
  margin-right: 0px;
  background: #fff;
  margin-bottom: 21px;
  color: #000;
  border-radius: 100px;
  font-weight: 700;
  font-family: "FontAwesome";
  font-size: 12px;
  cursor: pointer;
  position: absolute;
  right: 5px;
  top: 5px;
}

.text-logo img {
  width: 55%;
}

@keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px);
  }
}

.quintessentially_icon img {
  width: 60%;
  display: block;
  margin: auto;
}

.download_phone_cta {
  padding-top: 30px;
}
.download_phone_cta a {
  width: 100%;
  border-radius: 30px;
  background: #c39738;
  border: none;
  transition: 0.6s;
  padding: 10px;
  text-align: center;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .main-home-page video {
    height: 85vh;
  }

  section.elevation_image_section span {
    font-size: 12px;
  }

  aside {
    width: 100%;
    left: -100%;
  }

  aside ul li {
    text-align: center;
    margin-bottom: 10px;
  }

  .banner_form_wrapper {
    display: none;
  }

  .about_us_cascadia_section .title img,
  .about_us_cascadia_section_duplicate .title img {
    width: 80%;
  }

  .our_partner_slider .item .right img {
    width: 64%;
    margin: auto;
    margin-bottom: 10px;
  }

  .concierge_section img {
    width: 95%;
    margin: 0 auto;
  }

  .about_us_cascadia_section .content,
  .about_us_cascadia_section_duplicate .content {
    width: 75%;
  }

  .know_more_btn img {
    width: 220px;
  }

  .elevation_image_section img {
    height: 400px;
    object-fit: cover;
  }

  h2.title {
    font-size: 33px;
  }

  .our_partner_slider .item {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column-reverse;
  }

  .our_partner_slider .item .left p.lead,
  .our_partner_slider .item .left h4 {
    text-align: center;
  }

  .our_partner_slider .item .left {
    padding-right: 0;
    width: 100%;
  }

  .our_partner_slider .owl-nav {
    top: auto;
    width: 77%;
  }

  .our_partner_slider .item .left p.lead {
    font-size: 16px;
  }

  .logo_inspiration .inner_box .title img {
    width: 270px;
    display: block;
    margin: auto;
    margin-top: 15px;
  }

  .cascadia_content_box .content {
    width: 90%;
  }

  #historic_location_section h2.title img {
    width: 90%;
    display: block;
    margin: auto;
  }

  .logo_inspiration .inner_box .content p {
    text-align: center;
    font-size: 16px;
    line-height: 25px;
    width: 100%;
  }

  .cascadia_content_box .content p {
    padding-left: 0px;
  }

  .mobile-visible {
    display: block;
  }

  .desktop-visible {
    display: none;
  }

  .logo_inspiration .image_box img {
    width: 60px;
    margin: auto;
    display: block;
  }

  .cascadia_content_box .title img {
    width: 170px;
  }

  p.lead {
    font-size: 16px;
    line-height: 25px;
  }

  .cascadia_content_box .title img {
    width: 170px;
  }

  section.elevation_image_section img {
    height: 400px;
    object-fit: cover;
  }

  .inner_content_slider .title img {
    width: 320px;
  }

  .history-location-content-slider .item {
    padding-left: 30px;
    margin-top: 30px;
  }

  .master-plan-section .inner_content p.lead {
    line-height: 24px;
    text-align: center;
  }

  .master-plan-section .inner_content .title img {
    width: 90%;
    display: block;
    margin: auto;
  }

  h2.title.mb-5 {
    margin-bottom: 20px !important;
  }

  #master_plan_section .row.align-items-center {
    flex-direction: column-reverse;
  }

  .amenities_section h2.title img {
    width: 200px;
    display: block;
    margin: auto;
  }

  #amenities_section .row.align-items-center {
    /* flex-direction: column-reverse; */
  }

  .unit_plans_section .title img {
    width: 70%;
  }

  .global_title_section .title img {
    width: 90%;
  }

  .master-plan-section .master_plan_image_box .hover_image {
    width: 100%;
  }

  .master-plan-section .master_plan_image_box {
    margin-bottom: 70px;
  }

  section h2.title img {
    width: 85%;
  }

  .about_us_cascadia_section_duplicate h2.logo-text {
    display: none;
  }

  .inner_content_slider h4 {
    text-transform: uppercase;
    margin-top: 20px;
  }

  .master-plan-section .master_plan_image_box:before {
    right: auto;
    left: 0px;
    top: 0;
  }

  .footer_form_inner_box form .input-block {
    width: 100%;
  }

  .project-details-mobile h4 {
    color: #c69c3e;
    font-size: 21px;
    margin-top: 40px;
    line-height: 23px;
  }

  .project-details-mobile p {
    font-size: 16px;
    color: rgba(236, 209, 141, 1);
    font-family: "Quattrocento", sans-serif;
    margin-top: 9px;
    line-height: 20px;
  }

  .enquire-btn-fill {
    border-radius: 0px;
    background: #c39738;
    border: 1px solid rgba(236, 209, 141, 1);
    transition: 0.6s;
    padding: 10px 14px;
    width: 100%;
    color: rgba(236, 209, 141, 1);
  }

  .project-highlight h3 {
    text-align: center;
    font-size: 35px;
    color: #d2a24d;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .project-details-wrapper {
    width: 90%;
    margin: auto;
  }

  .mobile_form_wrapper h3 {
    font-size: 28px;
    color: #d2a24d;
    position: relative;
    line-height: 35px;
    border-bottom: 1px solid;
    display: inline-block;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .proj-high-box img {
    display: block;
    margin: auto;
    margin-top: -5px;
    width: 80px;
    height: 80px;
    object-fit: contain;
  }

  .proj-high-box {
    border: 1px solid rgb(236 209 141 / 77%);
    padding: 11px;
    margin: 10px 0px;
    border-radius: 10px;
  }

  .proj-high-box p {
    text-align: center;
    font-size: 16px;
    line-height: 23px;
    padding: 0px !important;
    min-height: 100px;
    display: flex;
    align-items: start;
  }

  .content_box_with_image {
    width: 90%;
  }

  #mobile_banner_form {
  }

  #mobile_banner_form
    .input-block
    input:not([type="checkbox"], [type="submit"]) {
    background: transparent;
    border: none;
    border-bottom: 1px solid #d2a24d;
    outline: none;
    color: #fff;
    width: 100%;
    padding: 10px 8px;
  }

  #mobile_banner_form [type="submit"] {
    border-radius: 0px;
    background: #c39738;
    border: 1px solid rgba(236, 209, 141, 1);
    transition: 0.6s;
    padding: 20px 14px;
    width: 100%;
    color: rgba(236, 209, 141, 1);
  }

  #mobile_banner_form .input-block .form-check label {
    font-size: 10px;
    width: 100%;
    color: #fff;
    line-height: 16px;
  }

  #mobile_banner_form .input-block {
    width: 100%;
    margin-bottom: 13px;
  }

  #mobile_banner_form .input-block input.phone {
    padding-left: 52px;
  }

  #mobile_banner_form .input-block .form-check label a {
    color: #c9a245;
  }

  #mobile_banner_form label {
  }

  .footer_form_section h2.title {
    font-size: 22px;
  }

  #mobile_banner_form input::placeholder {
    color: #d2a24d;
  }

  #about_us_section.space-pd {
    padding: 30px 0px;
  }

  .about_us_cascadia_section,
  .about_us_cascadia_section_duplicate {
    min-height: 380px;
  }

  .amenities_content_slider .item {
    width: 88%;
    margin: auto;
  }

  .unit_plan_slider .owl-nav .owl-next {
    right: 0;
  }

  .unit_plan_slider .owl-nav .owl-prev {
    left: 0;
  }

  .unit_plan_slider .owl-nav .owl-next,
  .unit_plan_slider .owl-nav .owl-prev {
    top: auto;
    bottom: -90px;
    right: 0;
  }

  header .menu_logo img {
    width: 95px;
  }

  header .brand_logo img {
    width: 81px;
    padding-bottom: 9px;
  }

  .unit_plan_slider .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -56px;
    width: 70%;
    gap: 10px;
    left: 0px;
    right: 0px;
    margin: auto;
  }

  .unit_plan_slider .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background: transparent;
    border: 1px solid rgba(236, 209, 141, 1);
    border-radius: 100px;
  }

  .unit_plan_slider .owl-dots .owl-dot.active {
    background-color: rgba(236, 209, 141, 1);
  }

  .design-insp-slider:after {
    content: "";
    position: absolute;
    left: 5px;
    bottom: 0px;
    width: 100%;
    height: 80%;
    border: 1px solid rgba(236, 209, 141, 1);
    margin: auto;
    z-index: -1;
  }

  .design-insp-slider {
    padding: 30px;
  }

  .design-insp-slider .owl-next {
    right: 7px;
    position: absolute;
    top: 30%;
  }

  .design-insp-slider .owl-prev {
    left: 11px;
    position: absolute;
    top: 30%;
  }

  .design-insp-slider h2.title img {
    width: 220px;
    margin-top: 40px;
  }

  .stickyForm {
    display: block;
    top: 18%;
    z-index: 999 !important;
  }

  .cascadia_content_box p {
    text-align: center;
  }

  .proj-main-logo {
    margin: 0;
  }

  .logo-text {
    width: 140px;
  }

  .box {
    bottom: 10%;
  }
}

@media (max-width: 650px) {
  .location-wt, .project-wt, .sample-wt {
    width: 100%;
  }
  .master-plan-section .inner_content .title img{
    left: 0px;
  }
  #new_sticky_form.stickyForm .close-button.close {
    left: 5px;
    top: 5px;
  }

  section.elevation_image_section span {
    font-size: 10px;
  }

  .know_more_btn button {
    width: 50%;
  }

  .stickyForm .btn {
    left: -95px;
  }

  footer {
    width: 96%;
    margin: 0 auto;
    line-height: 20px;
  }

  .banner-arrow-indicator .box {
    position: absolute;
    left: 51%;
    bottom: 62px;
  }

  .concierge_section .title {
    font-size: 35px;
    padding-top: 20px;
  }

  .concierge_section .content_box_with_image {
    width: 95%;
  }

  .content_box_with_image .quent-wrapper {
    padding-top: 15px;
  }

  .quent-wrapper img {
    width: 75%;
  }

  .cs-content h5 {
    width: 75%;
    margin: 20px auto;
  }

  .cs-content .lead {
    font-size: 16px;
    width: 100%;
  }

  .concierge_section img {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .concierge_section .title {
    font-size: 32px;
  }
}

button.play-pause-btn-2 {
  position: absolute;
  bottom: 85px;
  left: 3%;
  background: transparent;
  border: none;
  color: #c39738;
  font-size: 25px;
}

section#historic_location_section .item img {
  filter: grayscale(1);
}


.mfp-iframe-holder .mfp-close {
  background: transparent;
  opacity: 1;
}

.overview_content_cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.overview_content_cta a {
  display: inline-block;
  width: 200px;
}
.overview_content_cta a button{
  width: 100%;
}

@media(max-width:1025px){
}
@media(max-width:767px){
  .mfp-iframe-holder .mfp-content{
    max-width: 100%;
  }
}
@media(max-width:500px){
  .overview_content_cta{
    flex-wrap: wrap;
  }
}

