@charset "UTF-8";
/* PAGE-SPECIFIC STYLES FOR THE HOME PAGE */
/*-- -------------------------- -->
<---          Main Services          -->
<--- -------------------------- -*/
/* Mobile - 360px- Contains Hover State */
@media only screen and (min-width: 0rem) {
  #services-279 {
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
  }
  #services-279 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #services-279 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #services-279 .cs-title {
    font-family: var(--fontAccent);
  }
  #services-279 .cs-title,
  #services-279 .cs-text {
    color: var(--bodyTextColorDark);
  }
  #services-279 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    column-gap: 1.25rem;
    row-gap: 3.75rem;
  }
  #services-279 .cs-item {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0 auto; /* ← centers perfectly */
    width: 100%;
    max-width: 21.75rem;
  }
  #services-279 .cs-item:hover .cs-picture:before {
    height: 100%;
  }
  #services-279 .cs-item:hover .cs-picture img {
    transform: scale(1.1);
  }
  #services-279 .cs-picture {
    aspect-ratio: 348/433;
    position: relative;
    display: block;
    /* Keeps image from bleeding outside the picture element */
    overflow: hidden;
  }
  #services-279 .cs-picture:before {
    content: "";
    position: absolute;
    display: block;
    height: 0%;
    width: 100%;
    background: var(--primary);
    opacity: 0.8;
    top: 0;
    left: 0;
    z-index: 2;
    transition: height 0.3s;
  }
  #services-279 .cs-picture {
    /* DARK OVERLAY */
  }
  #services-279 .cs-picture:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2); /* adjust darkness here */
    z-index: 1;
  }
  #services-279 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes img tag act like a background image */
    object-fit: cover;
    transition: transform 0.7s;
  }
  #services-279 .cs-box {
    text-align: center;
    width: 90%;
    margin: 0 auto;
    margin-top: calc(clamp(2rem, 7vw, 3rem) * -1);
    padding: 1.5rem;
    background: #fff;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    height: 75%;
    box-shadow: 0 10px 18px -12px rgba(0, 0, 0, 0.25), -6px 0 12px -10px rgba(0, 0, 0, 0.18), 6px 0 12px -10px rgba(0, 0, 0, 0.18); /* right */
  }
  #services-279 .cs-h3 {
    min-height: 3em;
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2vw, 1.5625rem);
    text-align: center;
    line-height: 1.2em;
    font-weight: bold;
    font-family: var(--fontAccent);
    color: var(--headerColor);
    margin: 0 0 1.75rem;
  }
  #services-279 .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0 0 0.25rem;
    padding: 0;
    color: var(--bodyTextColorDark);
    flex-grow: 1;
  }
  #services-279 .cs-link {
    font-size: 1rem;
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-decoration: none;
    font-weight: 700;
    color: var(--primary);
    background-color: transparent;
    border-radius: 0.25rem;
    display: inline-block;
    width: fit-content; /* ← THIS is the magic */
    margin: 0 auto; /* centers it */
    margin-top: auto; /* pushes to bottom */
    position: relative;
    z-index: 1;
  }
  #services-279 .cs-link:before {
    content: "";
    position: absolute;
    display: block;
    height: 0.1875rem;
    width: 0%;
    background: var(--primary);
    opacity: 1;
    bottom: 0.375rem;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #services-279 .cs-link:hover:before {
    width: 100%;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-279:before {
    /* 450px - 580px */
    height: clamp(28.125rem, 45vw, 36.25rem);
  }
  #services-279 .cs-card-group {
    flex-direction: row;
    align-items: stretch;
  }
  #services-279 .cs-item {
    margin: 0;
    max-width: 100%;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #services-279 .cs-box {
    height: 50%;
  }
}
/*-- -------------------------- -->
<---     Private Homeowners    -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #content-1450 {
    position: relative;
    padding: var(--sectionPadding);
    padding-top: 15rem;
    padding-bottom: 15rem;
    overflow: hidden;
    /* Background Image */
    background-image: url("/assets/images/private-homeowner.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Dark overlay */
  }
  #content-1450:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* adjust darkness here */
    z-index: 1;
  }
  #content-1450 {
    /* keep content above overlay */
  }
  #content-1450 .cs-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }
  #content-1450 .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #content-1450 .cs-title {
    font-family: var(--fontAccent);
  }
  #content-1450 .cs-title,
  #content-1450 .cs-text {
    max-width: 100%;
    color: #fff;
  }
  #content-1450 .cs-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin: 0 0 2rem 0;
  }
  #content-1450 .cs-button-solid {
    font-size: 1rem;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #000;
    min-width: 9.375rem;
    padding: 0 3rem;
    background-color: var(--primary);
    border-radius: 0.5rem;
    overflow: hidden;
    display: inline-block;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
  }
  #content-1450 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #content-1450 .cs-button-solid:hover {
    color: #fff;
  }
  #content-1450 .cs-button-solid:hover:before {
    width: 100%;
  }
}
/*-- -------------------------- -->
<---         Projects        -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #gallery-46 {
    padding: var(--sectionPadding);
    position: relative;
    background-image: url("/assets/images/blue-background.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  #gallery-46 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #gallery-46 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
    color: #fff;
  }
  #gallery-46 .cs-title {
    color: #fff;
  }
  #gallery-46 .cs-image-group {
    width: 100%;
    margin: 0;
    display: grid;
    place-content: center;
    grid-template-columns: repeat(12, 1fr);
    /* 158px - 304px */
    grid-template-rows: 1fr;
    /* 8px - 20px */
    gap: clamp(0.5rem, 1.5vw, 1.25rem);
  }
  #gallery-46 .cs-item {
    width: 100%;
    margin: 0;
    aspect-ratio: 1;
    grid-column: span 6;
    display: block;
    position: relative;
    /* prevents image from overflowing the container on hover */
    overflow: hidden;
  }
  #gallery-46 .cs-item:hover .cs-picture img {
    transform: scale(1.1);
  }
  #gallery-46 .cs-item:hover .cs-hover-box {
    opacity: 1;
    pointer-events: all;
  }
  #gallery-46 .cs-item:hover .cs-heading3 {
    opacity: 1;
    /* Return to original position */
    transform: translateY(0);
  }
  #gallery-46 .cs-item:hover .cs-subtitle {
    opacity: 1;
    /* Return to original position */
    transform: translateY(0);
  }
  #gallery-46 .cs-item:hover .cs-link {
    opacity: 1;
    /* Return to original position */
    transform: translateY(0);
  }
  #gallery-46 .cs-picture {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    /* DARK OVERLAY */
  }
  #gallery-46 .cs-picture:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2); /* adjust darkness here */
    z-index: 1;
  }
  #gallery-46 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s;
  }
  #gallery-46 .cs-item-1 {
    grid-column: 1/span 12;
    grid-row: 1/2;
    aspect-ratio: 328/158;
  }
  #gallery-46 .cs-item-5 {
    grid-column: 7/span 6;
    grid-row: 3/span 2;
    aspect-ratio: initial;
  }
  #gallery-46 .cs-item-4 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 15% center;
  }
  #gallery-46 .cs-item-6 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 10% center;
  }
  #gallery-46 .cs-hover-box {
    height: 100%;
    width: 100%;
    padding: 1rem 0.625rem;
    opacity: 0;
    position: absolute;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Prevents padding from adding to the height & width */
    box-sizing: border-box;
    transition: opacity 0.3s;
    /* prevent it from interacting with the mouse so we can add a hover
    effect on the cs-item parent */
    pointer-events: none;
    position: relative;
  }
  #gallery-46 .cs-hover-box:before {
    /* top right box */
    content: "";
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0.9;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
  }
  #gallery-46 .cs-heading3 {
    /* 16px - 20px */
    font-size: clamp(1rem, 5vw, 1.25rem);
    line-height: 1.2em;
    margin: 0;
    margin-bottom: 0.75rem;
    color: var(--bodyTextColorDark);
    opacity: 0;
    /* starting point is 10px down from its original point */
    transform: translateY(0.625rem);
    transition: opacity 0.3s, transform 0.5s;
  }
  #gallery-46 .cs-subtitle {
    /* 13px - 15px */
    font-size: clamp(0.8125rem, 5vw, 0.9375rem);
    line-height: 1.5em;
    /* Pushes the link to the bottom of the flexbox */
    margin-bottom: auto;
    color: var(--bodyTextColorDark);
    opacity: 0;
    /* starting point is 10px down from its original point */
    transform: translateY(0.625rem);
    display: block;
    transition: opacity 0.3s, transform 0.5s;
    transition-delay: 0.1s;
  }
  #gallery-46 .cs-link {
    font-size: 0.9375rem;
    line-height: 1.5em;
    font-weight: bold;
    text-decoration: none;
    color: #000;
    opacity: 0;
    /* starting point is 10px down from its original point */
    transform: translateY(0.625rem);
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: opacity 0.3s, transform 0.5s;
    transition-delay: 0.3s;
  }
  #gallery-46 .cs-link:hover:before {
    width: 100%;
  }
  #gallery-46 .cs-link:before {
    content: "";
    position: absolute;
    display: block;
    height: 0.125rem;
    width: 0%;
    background: currentColor;
    opacity: 1;
    bottom: -0.125rem;
    left: 0;
    transition: width 0.3s;
  }
  #gallery-46 .cs-link svg {
    margin-right: 0.5rem;
  }
  #gallery-46 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #000;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #gallery-46 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #gallery-46 .cs-button-solid:hover {
    color: #fff;
  }
  #gallery-46 .cs-button-solid:hover:before {
    width: 100%;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #gallery-46 .cs-item {
    grid-column: span 3;
  }
  #gallery-46 .cs-item-1 {
    grid-column: 1/span 6;
  }
  #gallery-46 .cs-item-2 {
    grid-column: 1/span 3;
    grid-row: 2;
  }
  #gallery-46 .cs-item-3 {
    grid-column: 4/span 3;
    grid-row: 2;
  }
  #gallery-46 .cs-item-5 {
    grid-column: 7/span 3;
    grid-row: 2;
  }
  #gallery-46 .cs-item-6 {
    grid-column: 10/span 3;
    grid-row: 1/span 2;
    aspect-ratio: initial;
  }
}
/*-- -------------------------- -->
<!--       Why Choose Us        -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #why-choose-1876 {
    padding: var(--sectionPadding);
    /* 128px - 192px */
    padding-bottom: clamp(8rem, 14vw, 12rem);
    overflow-x: clip;
    position: relative;
  }
  #why-choose-1876 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #why-choose-1876 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #why-choose-1876 .cs-text {
    /* 12px - 24px */
    margin-bottom: clamp(0.75rem, 4vw, 1.5rem);
  }
  #why-choose-1876 .cs-ul {
    max-width: 39.375rem;
    margin: 0;
    padding: 0;
    display: grid;
    grid-auto-flow: row;
    /* 4px - 12px */
    gap: clamp(0.25rem, 2vw, 0.75rem);
  }
  #why-choose-1876 .cs-li {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    list-style: none;
    width: 100%;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.5rem;
  }
  #why-choose-1876 .cs-check-icon {
    width: 1.5rem;
    height: auto;
    /* adds extra space between the icon and top of parent so it's more centered */
    margin-top: 1px;
    display: block;
  }
  #why-choose-1876 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 2rem 0 0;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 1.5rem;
    background-color: var(--primary);
    color: #000;
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #why-choose-1876 .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #000;
    opacity: 1;
    border-radius: 0.25rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #why-choose-1876 .cs-button-solid:hover {
    color: #fff;
  }
  #why-choose-1876 .cs-button-solid:hover:before {
    width: 100%;
  }
  #why-choose-1876 .cs-video-wrapper {
    width: 100%;
    height: 111vw;
    max-height: 22.5rem;
    display: block;
    position: relative;
    z-index: 1;
    /* DARK OVERLAY */
  }
  #why-choose-1876 .cs-video-wrapper:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
    pointer-events: none;
  }
  #why-choose-1876 .cs-video-wrapper video,
  #why-choose-1876 .cs-video-wrapper .cs-picture {
    width: 100%;
    height: 100%;
    /* makes image act as a background image */
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #why-choose-1876 .cs-video-wrapper video img,
  #why-choose-1876 .cs-video-wrapper .cs-picture img {
    width: 100%;
    height: 100%;
    /* makes image act as a background image */
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #why-choose-1876 .cs-icon {
    width: 1.25rem;
    height: auto;
  }
  #why-choose-1876 .cs-picture {
    width: 100%;
    height: 95vw;
    /* 260px - 324px */
    min-height: clamp(16.25rem, 32vw, 20.25rem);
    margin: clamp(3rem, 6vw, 4rem) 0 0;
    display: block;
    position: relative;
    z-index: 1;
    /* DARK OVERLAY */
  }
  #why-choose-1876 .cs-picture:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 2;
    pointer-events: none;
  }
  #why-choose-1876 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #why-choose-1876 .cs-picture01 {
    width: 75%;
    max-width: 40rem;
    aspect-ratio: 3/4;
  }
  #why-choose-1876 .cs-graphic {
    width: 100%;
    min-width: 75rem;
    height: auto;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
  }
  #why-choose-1876 .cs-dark {
    display: none;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #why-choose-1876 .cs-video-wrapper {
    height: 90%;
    max-height: 100%;
    /* 420px - 740px */
    min-height: clamp(26.25rem, 50vw, 46.25rem);
  }
  #why-choose-1876 .cs-container {
    max-width: 80rem;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
  #why-choose-1876 .cs-content {
    width: 52%;
    max-width: 34.375rem;
    /* sends it to the right in the 2nd position */
    order: 2;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #why-choose-1876 .cs-ul {
    grid-template-columns: repeat(2, 1fr);
  }
  #why-choose-1876 .cs-picture {
    height: 100%;
    max-height: 100%;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #why-choose-1876 {
    padding-bottom: 10vw;
  }
  #why-choose-1876 .cs-container {
    align-items: stretch;
  }
  #why-choose-1876 .cs-video-wrapper {
    height: auto;
    margin-bottom: 8.75rem;
  }
}

/*# sourceMappingURL=home.css.map */
