/* =========================================================
   CHD DESIGN SYSTEM
   Version: 2.0.0
   Custom Home Designs LLC
   ========================================================= */


:root {
  --scroll-bar-w: 0px !important;

  /* =======================================================
     01. BRAND COLORS
     ======================================================= */

  --color-brand-primary: #B75430;
  --charcoal-gray: #3F4945;
  --color-brand-accent: #FC8564;
  --color-brand-tint: #FCF8F7;


  /* =======================================================
     02. NEUTRALS
     ======================================================= */

  --color-neutral-dark: #3F4945;

  --color-neutral-800: #262626;
  --color-neutral-750: #2A2A2A;
  --color-neutral-700: #343434;
  --color-neutral-650: #373737;

  --color-neutral-600: #494C51;
  --color-neutral-550: #4A5565;
  --color-neutral-500: #6A7282;

  --color-neutral-400: #767676;
  --color-neutral-350: #949494;
  --color-neutral-300: #99A1AF;

  --color-neutral-250: #B1B1B1;
  --color-neutral-200: #B4B4B4;
  --color-neutral-150: #D0D0D0;
  --color-neutral-100: #D3D3D3;

  --color-neutral-50: #E5E7EB;


  /* =======================================================
     03. SURFACES
     ======================================================= */

  --color-surface-01: #FAFAFA;
  --color-surface-white: #FFFFFF;

  --color-surface-brand: var(--color-brand-primary);
  --color-surface-dark: var(--charcoal-gray);
  --color-surface-tint: var(--color-brand-tint);


  /* =======================================================
     04. TEXT COLORS
     ======================================================= */

  --color-text-primary: var(--color-neutral-dark);
  --color-text-secondary: #676F6C;
  --color-text-muted: #99A1AF;

  --color-text-heading: var(--charcoal-gray);
  --color-text-brand: var(--color-brand-primary);

  --color-text-white: #FFFFFF;
  --color-text-inverse: #FFFFFF;


  /* =======================================================
     05. BORDER COLORS
     ======================================================= */

  --color-border-default: #E5E7EB;
  --color-border-light: #F0F0F0;
  --color-border-medium: #D0D0D0;

  --color-border-brand: var(--color-brand-primary);
  --color-border-tint: #EAD8D2;


  /* =======================================================
     06. SEMANTIC COLORS
     ======================================================= */

  --color-success: #16A34A;
  --color-warning: #D97706;
  --color-error: #DC2626;

  --color-overlay-dark: rgba(0, 0, 0, 0.55);


  /* =======================================================
     07. TYPOGRAPHY - FONT FAMILY
     ======================================================= */

  --font-heading: "Ovo", serif;
  --font-subheading: "Teachers", sans-serif;
  --font-body: "Inter", sans-serif;


  /* =======================================================
     08. TYPOGRAPHY - FONT WEIGHTS
     ======================================================= */

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;


  /* =======================================================
     09. TYPOGRAPHY - DISPLAY
     ======================================================= */

  --font-size-display-xl: 67px;
  --line-height-display-xl: 1.12;
  --letter-spacing-display-xl: -0.32px;

  --font-size-display-lg: 56px;
  --line-height-display-lg: 1.14;

  --font-size-heading-1: 40px;
  --line-height-heading-1: 1.2;

  --font-size-heading-2: 32px;
  --line-height-heading-2: 1.25;

  --font-size-heading-3: 24px;
  --line-height-heading-3: 1.33;


  /* =======================================================
     10. TYPOGRAPHY - SUBHEADERS
     ======================================================= */

  --font-size-subheader: 18px;
  --line-height-subheader: 26px;
  --font-weight-subheader: 600;

  --letter-spacing-label: 0.25px;


  /* =======================================================
     11. TYPOGRAPHY - BODY
     ======================================================= */

  --font-size-body-large: 18px;
  --line-height-body-large: 28px;
  --font-weight-body-large: 500;

  --font-size-body: 14px;
  --line-height-body: 22px;
  --font-weight-body: 400;

  --font-size-body-small: 13px;
  --line-height-body-small: 20px;

  --font-size-caption: 12px;
  --line-height-caption: 20px;


  /* =======================================================
     12. TYPOGRAPHY - LABELS / UI
     ======================================================= */

  --font-size-label: 13px;
  --line-height-label: 20px;
  --font-weight-label: 600;

  --font-size-price: 13px;
  --line-height-price: 20px;
  --font-weight-price: 700;


/* =========================================================
   TYPOGRAPHY UTILITY TOKENS
   ========================================================= */


.text-display-xl {
  font-family: var(--font-heading);
  font-size: var(--font-size-display-xl);
  line-height: var(--line-height-display-xl);
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--letter-spacing-display-xl);
}

.text-display-lg {
  font-family: var(--font-heading);
  font-size: var(--font-size-display-lg);
  line-height: var(--line-height-display-lg);
  font-weight: var(--font-weight-regular);
}

.text-h1 {
  font-family: var(--font-heading);
  font-size: var(--font-size-heading-1);
  line-height: var(--line-height-heading-1);
  font-weight: var(--font-weight-regular);
}

.text-h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-heading-2);
  line-height: var(--line-height-heading-2);
  font-weight: var(--font-weight-regular);
}

.text-h3 {
  font-family: var(--font-heading);
  font-size: var(--font-size-heading-3);
  line-height: var(--line-height-heading-3);
  font-weight: var(--font-weight-regular);
}

.text-subheader {
  font-family: var(--font-subheading);
  font-size: var(--font-size-subheader);
  line-height: var(--line-height-subheader);
  font-weight: var(--font-weight-subheader);
}

.text-body-large {
  font-family: var(--font-body);
  font-size: var(--font-size-body-large);
  line-height: var(--line-height-body-large);
  font-weight: var(--font-weight-body-large);
}

.text-body {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  font-weight: var(--font-weight-body);
}

.text-body-small {
  font-family: var(--font-body);
  font-size: var(--font-size-body-small);
  line-height: var(--line-height-body-small);
  font-weight: var(--font-weight-body);
}

.text-caption {
  font-family: var(--font-body);
  font-size: var(--font-size-caption);
  line-height: var(--line-height-caption);
  font-weight: var(--font-weight-body);
}

.text-label {
  font-family: var(--font-subheading);
  font-size: var(--font-size-label);
  line-height: var(--line-height-label);
  font-weight: var(--font-weight-label);
  letter-spacing: var(--letter-spacing-label);
}

.text-price {
  font-family: var(--font-body);
  font-size: var(--font-size-price);
  line-height: var(--line-height-price);
  font-weight: var(--font-weight-price);
}

body .full-width-section .row-bg-wrap {
        margin-left: calc(-50vw + 0px) !important;
        width: calc(100vw - 0px);
    }
/* =========================================================
   GLOBAL BASE
   ========================================================= */

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: var(--font-subheading);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  font-weight: var(--font-weight-body);
  color: var(--color-text-primary);
  background-color: var(--color-surface-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-heading);
}

p {
  margin: 0;
}

a {
  color: var(--color-brand-primary);
  text-decoration: none;
  transition: var(--transition-color);
}

a:hover {
  color: var(--color-brand-accent);
}
#header-outer{
  box-shadow: 0 -1px 27px rgba(0, 0, 0, 0.1) !important;
}
.header-top{
  width: 100%;
  display: block;
  background-color: var(--charcoal-gray);
  padding: 7px 0;
}
.flex{
  display: flex;
}
.location-container,
.email-container{
  display: flex;
  width: 50%;
  align-items: center;
  justify-content: start;
  color: #B1B1B1;
  font-family: var(--font-subheading);
  gap: 10px;
}
.email-container{
  justify-content: flex-end;
}
.email-container a{
  color: #B1B1B1;
}
.location-container p,
.email-container p{
  margin: 0;
  padding: 0;
}

.account-container a{
  display: flex !important;
  flex-direction: column;
  gap: 3px;
  justify-content: center;
  align-items: center;
  font-size: 14px !important;
}
/*Hero Section*/
.hero-container{
  height: calc(818px - 0px) !important;
  display: flex;
  justify-content: flex-end;
}
.hero-container .row_col_wrap_12{
  width: 100%;
}
.hero-column-one{
  padding-bottom: 25px;
    border-bottom: 1px solid #575757;
    margin-bottom: 30px !important;
}
.hero-bottom-three-block{
  max-width: 623px;
  margin: auto;
}
.hero-bottom-three-block .iwithtext{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.hero-bottom-three-block .iwt-icon{
  width: auto;
  height: 23px;
  position: relative;
}
.hero-bottom-three-block .iwt-icon > img{
  height: 23px;
  margin: 0;
  width: auto !important;
}
.hero-bottom-three-block .iwt-text{
  font-size: 15px;
  font-family: var(--font-subheading);
  color: #fff;
  padding: 0;
  text-transform: uppercase;
}
.hero-container .row-bg-overlay.row-bg-layer{
  height: 350px;
  bottom: 0 !important;
  margin-top: auto;
  
}
.hero-container > div..row-bg-wrap{
  position: relative;
}
.hero-container > div.row-bg-wrap::before{
  content: "";
  backdrop-filter: blur(1.3px);
  -webkit-backdrop-filter: blur(13.3px);
  inset: 0;
  background: linear-gradient(360deg, rgb(0, 0, 0, 2) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 400px;
  margin-top: auto;
  z-index: 10;
}
.hero-column-one h1{
  margin-bottom: 10px;
}
.hero-column-one .nectar-responsive-text p{
  font-family: var(--font-subheading);
}
.glass-button{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  color: #ffffff;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  font-family: var(--font-subheading);
  cursor: pointer;
  /* Background blur */
  backdrop-filter: blur(13.3px);
  -webkit-backdrop-filter: blur(13.3px);
  width: 237px;
  height: 70px;
  isolation: isolate;
}
.glass-button::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.primary-button{
  background: var(--color-brand-primary);
}
.primary-button::before{
  content: "";
  background: linear-gradient(
        90deg,
        #ff8766 0%,
        #383838 100%
    );
}
.hero-column-cta .call-icon{
  background-image: url(https://chd.codeclouds-us.com/wp-content/uploads/2026/08/Union.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 30px;
  height: 30px;
}
.hero-column-cta .call-content{
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 0;
  margin-left: 8px;
}
.secondary-button{
  background-color: var(--charcoal-gray);
}
.secondary-button::before{
  content: "";
  background: linear-gradient(
        90deg,
        #272727 0%,
        #646464 100%
    );
}
.call-label{
  font-size: 15px;
  line-height: 15px;

}
.call-number{
  font-size: 19px;
  font-weight: 600;
  color: #fff;
}
/*Who we are section*/
.who-we-are-section .viewport-desktop.using-image{
  width: 583px;
  right: 0;
  left: inherit;
  margin-left: auto;
}
.who-we-are-section .wpb_text_column.wpb_content_element p{
  margin-bottom: 33px;
}
.who-we-are-section.nectar-fancy-ul ul {
  margin-bottom: 25px;
}
.who-we-are-section .nectar-fancy-ul ul li{
  font-size: 17px;
  line-height: 26px;
  color: var(--charcoal-gray);
  font-family: var(--font-subheading);
}
.who-we-are-section .nectar-fancy-ul ul li i{
  width: 30px;
  font-size: 30px;
  line-height: 30px;
}
.who-we-are-section .nectar-fancy-ul ul li .fa-check-circle-o:before{
  content: "\f058";
}
.button-outline span.link_wrap{
  border-radius: 10px;
  /*font-family: var(--font-subheading);*/
  font-weight: 500;
}
.who-we-are-section .img-with-aniamtion-wrap.right img{
    max-height: 749px;
    width: auto;
}
.who-we-are-section ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, auto);
    column-gap: 80px;
    row-gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/*Trust section*/
.trust-section .nectar-split-heading{
  margin-bottom: 15px;
}
.trust-card-container{
  max-width: 1055px;
    margin: auto;
}
.trust-card{
  padding-left: 6px !important;
    padding-right: 6px !important;
}
.trust-card .vc_column-inner{
  position: relative;
  box-sizing: border-box;
  border-radius: 25px;
  padding: 32px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  overflow: hidden;  
}
.trust-card .vc_column-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(
        180deg,
        #DDDDDD 0%,
        #FFFFFF 100%
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.trust-card .hover-wrap-inner img{
  height: 59px;
  width: auto;
}
.trust-card .nectar-split-heading{
  margin-bottom: 18px;
}
.trust-card h3{
  font-weight: 500;
}
.trust-bottom-banner{
  min-height: 575px;
}
/*compare section*/
.comparison-bg{
  background: linear-gradient(
        180deg,
        #FFF7F4 0%,
        #FFFFFF 100%
    );
  min-height: calc(807px + 100px);
  max-width: 1080px;
  margin: 0 auto !important;
  border-radius: 25px;
}
.comparison-bg > .vc_column-inner{
  position: static;
}
.comparison-list-item li{
  position: relative;
  list-style: none;
  margin-bottom: 23px !important;
}
.comparison-list-item li::after,
.comparison-alternate-column li::before{
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  content: "\f00d";
  color: #B2B2B2;
  font-size: 24px;
  margin-left: 25px;
}
.comparison-alternate-column ul{
  margin-left: 0;
}
.comparison-alternate-column li::after{
  display: none;
}
.comparison-alternate-column li::before{
  content: "\f00c";
  margin-right: 25px;
  margin-left: 0;
  color: var(--color-brand-primary);
}
.vs-divider{
  position: relative;
}
.vs-divider::before{
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  background-color: #E8C8C8;

}
.vs-divider-text {
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #EBD3CC;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
}
/* Product Card*/
ul.products{
  display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
}
ul.products::before{
  display: none;
}
.products li,
.woocommerce ul.products li.product{
  border: 1px solid #EAEAEA;
  border-radius: 16px;
  padding: 12px;
  width: 100%;
  margin: 0;
  background-color: #fff;
}
.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product .product-wrap img, 
.woocommerce-page ul.products li.product .product-wrap img,
ul.products li.product .custom-property-card img{
  height: 192px !important;
  border-radius: 12px;
  margin-bottom: 0;
}
.woocommerce ul.products li.product .button{
    margin-top: 0;
    background-color: #fff;
    border: 1px solid #CBCBCB;
    width: 100%;
    border-radius: 10px;
    padding: 15px;
    color: var(--charcoal-gray);
    font-weight: 500;
    font-family: var(--font-subheading);
    font-size: 15px;
}
.woocommerce ul.products li.product .button:hover{
  color: #fff;
  border-color: var(--color-brand-primary);
}
.woocommerce ul.products li.product .price{
  display: none;
}
.woocommerce ul.products li.product .property-card-stats{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 5px;
}
ul.products li.product .woocommerce-loop-product__title{
  font-family: var(--font-subheading);
  color: var(--charcoal-gray);
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  padding: 0;
  margin: 0;
  
}
.property-card-stats strong{
  font-family: var(--font-subheading);
  color: var(--charcoal-gray);
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 5px;
}
.property-card-stats span{
  font-size: 14px;
  line-height: 16px;
}
ul.products li.product .property-card-bottom{
    margin-top: 13px;
    margin-bottom: 3px;
}
.title-container {
  padding: 0;
  margin: 15px 0;
  border-bottom: 1px solid #E4E4E4;
  padding-bottom: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.attributes-floor{
  font-size: 15px;
  font-family: var(--font-subheading);
  line-height: 20px;
  font-weight: 600;
  color: var(--color-brand-primary);
}
.wishlist-container{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}
.button-save-list{
  background-color: transparent;
  border: none;
  cursor: pointer;
  box-shadow: none;
}
.button-save-list  svg{
  fill: var(--charcoal-gray);
  color: var(--charcoal-gray);
}
.button-save-list.is-wishlisted svg{
  color: var(--color-brand-primary);
  fill: var(--color-brand-primary);
}
/*Wishlist Product section*/
.property-wishlist-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.button-save-list {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--charcoal-gray);
    cursor: pointer;
    z-index: 10;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}
.button-save-list svg {
    width: 17px;
    height: 19px;
    color: currentColor;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}
.button-save-list.is-wishlisted {
    color: var(--color-brand-primary);
}
.button-save-list.is-wishlisted svg {
    color: var(--color-brand-primary);
}
.button-save-list:hover {
    color: var(--color-brand-primary);
}
.button-save-list.is-loading {
    opacity: 0.5;
    pointer-events: none;
}

.wishlist-login-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: -10px;
    width: 200px;
    padding: 18px 18px 20px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(222, 222, 222);
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 25px;
    z-index: 9999;
    display: none;
}
.wishlist-login-dropdown::before {
    content: "";
    position: absolute;
    top: -8px;
    right: 25px;
    width: 15px;
    height: 15px;
    background: #ffffff;
    border-left: 1px solid #dedede;
    border-top: 1px solid #dedede;
    transform: rotate(45deg);
}
.property-wishlist-wrapper.is-open
.wishlist-login-dropdown {
    display: block;
}
.wishlist-sign-in {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    background-color: var(--color-brand-primary);
    border: 1px solid var(--color-brand-primary);
    width: 100%;
    border-radius: 10px;
    padding: 15px;
    line-height: 12px;
    color: #fff;
    font-weight: 500;
    font-family: var(--font-subheading);
    font-size: 15px;
    text-decoration: none !important;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.wishlist-sign-in:hover {
    background: #fff;
    color: var(--charcoal-gray);
    border-color: var(--charcoal-gray);
}
.wishlist-sign-up {
    display: block;
    margin-top: 12px;
    text-align: center;
    line-height: 12px;
    color: var(--charcoal-gray);
    font-weight: 500;
    font-family: var(--font-subheading);
    font-size: 15px;
    text-decoration: underline !important;
}

.wishlist-sign-up:hover {
    color: var(--color-brand-primary);
}
@media (max-width: 767px) {
    .wishlist-login-dropdown {
        right: -15px;
        width: 240px;
        padding: 22px 15px 24px;
    }
    .wishlist-sign-in {
        font-size: 16px;
    }
    .wishlist-sign-up {
        font-size: 14px;
    }
}
#search-btn{
  width: 213px;
}

#search-btn > form{
  width: 100%;
  position: relative;
}
#search-btn input[type=text]{
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid #D0D0D0;
  height: 41px;
}
#search-btn .inline-search-submit{
  height: 41px;
  width: 41px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 8px 8px 0;
  position: absolute;
  top: 0;
  right: 0;
}
.property-image-wrap{
  position: relative;
}
.property-trending-badge{
  background-color: var(--color-brand-primary);
  color: #fff;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 10px;
  font-size: 13px;
  line-height: 15px;
  font-family: var(--font-subheading);
  font-weight: 500;
  position: absolute;
  top: 12px;
  left: 12px;
  gap: 6px;
}
.property-trending-badge span{
  background-color: #fff;
  color: #fff;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: block;
}
.view-all-button,
.button-outline{
  font-family: var(--font-subheading);
}
.view-all-button{
  min-width: 200px;
  border-radius: 12px;
}
.blueprint-thumb{
  min-height: 604px;
}
.blueprint-thumb .row-bg-overlay.row-bg-layer{
  height: 342px;
}
.vison-card .hover-wrap-inner{
  width: 131px;
  height: 131px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #EFEAE9;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow:
        -1px 11px 11px rgba(199, 199, 199, 0.09),
        0 3px 6px rgba(199, 199, 199, 0.10),
        -1px 26px 15px rgba(199, 199, 199, 0.05);

}
.vison-card{
  position: relative;
}
.vison-card .nectar-split-heading{
  margin: 0;
  padding: 0;
}
.vison-card h5{
  font-family: var(--font-subheading);
  font-weight: 600;
  margin: 20px 0 12px;
}
.vison-bluprint{
  max-width: 912px;
  margin: 0 auto;
}
.vison-card::before{
  content: "";
  width: 140px;
  height: 0px;
  border: 1px dashed var(--color-brand-primary);
  top: 50%;
  position: relative;
  left: 100%;
  transform: translateY(-50%) ;
  display: block;
}