/* PAGE-SPECIFIC STYLES FOR THE HOME PAGE */
/*-- -------------------------- -->
<---        Instagram          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #instagram-gallery {
    /* Small gap under CTA */
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }
  #instagram-gallery .cs-instagram-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 1.5rem;
  }
  #instagram-gallery .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    padding: 0 1rem;
  }
  #instagram-gallery .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #instagram-gallery .cs-header-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  }
  #instagram-gallery .cs-instagram-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--headerColor);
    flex-shrink: 0;
  }
  #instagram-gallery .cs-username {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    color: var(--headerColor);
  }
  #instagram-gallery .cs-instagram-post {
    position: relative;
    width: 100%;
    height: 15.625rem;
    overflow: hidden;
    margin: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  #instagram-gallery .cs-instagram-post:hover {
    transform: translateY(-4px);
  }
  #instagram-gallery .cs-instagram-post:hover .cs-overlay {
    opacity: 1;
  }
  #instagram-gallery .cs-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  #instagram-gallery .cs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-decoration: none;
    padding: 1rem;
    box-sizing: border-box;
  }
  #instagram-gallery .cs-caption {
    color: white;
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
  #instagram-gallery .cs-loading {
    text-align: center;
    color: var(--bodyTextColor);
    font-size: 1rem;
    padding: 2.5rem;
  }
  #instagram-gallery .cs-error {
    text-align: center;
    color: #e74c3c;
    font-size: 1rem;
    padding: 2.5rem;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #instagram-gallery {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }
  #instagram-gallery .cs-instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.125rem;
    margin-bottom: 2rem;
  }
  #instagram-gallery .cs-instagram-post {
    height: 18.75rem;
  }
  #instagram-gallery .cs-username {
    font-size: 1.25rem;
  }
  #instagram-gallery .cs-instagram-icon {
    width: 1.75rem;
    height: 1.75rem;
  }
  #instagram-gallery .cs-container {
    padding: 0 1.5rem;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #instagram-gallery {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }
  #instagram-gallery .cs-instagram-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.25rem;
    margin-bottom: 2.5rem;
  }
  #instagram-gallery .cs-instagram-post {
    height: 20rem;
  }
  #instagram-gallery .cs-header-group {
    gap: 1rem;
  }
  #instagram-gallery .cs-caption {
    font-size: 0.9375rem;
  }
  #instagram-gallery .cs-overlay {
    padding: 1.5rem;
  }
  #instagram-gallery .cs-container {
    padding: 0 2.5rem;
  }
}
/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs {
    padding: var(--sectionPadding);
  }
  #sbs .cs-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    max-width: 80rem;
    width: 100%;
    row-gap: 2.5rem;
  }
  #sbs .cs-left {
    position: relative;
    height: 39.75em;
    /* using ems so we can use font size to scale the whole section */
    width: 39.4375em;
    /* scaling the font size with the view width */
    font-size: min(2.31vw, 0.7em);
  }
  #sbs .cs-picture {
    position: absolute;
    display: block;
    border-radius: 1.5em;
    /* clips img tag corners */
    overflow: hidden;
  }
  #sbs .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* makes image act like a background image */
    object-fit: cover;
  }
  #sbs .cs-picture1 {
    top: 0;
    left: 0;
    height: 36.3125em;
    width: 32.625em;
  }
  #sbs .cs-picture2 {
    bottom: 0;
    right: 0;
    /* 6px - 12px */
    border: clamp(0.375em, 1.5vw, 0.75em) solid #fff;
    background-color: #fff;
    height: 25em;
    width: 25.875em;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 40px;
  }
  #sbs .cs-right {
    margin: auto;
    max-width: 33.875rem;
  }
  #sbs .cs-topper {
    margin-bottom: 0.25rem;
    text-align: left;
  }
  #sbs .cs-title {
    max-width: 50rem;
    text-align: left;
  }
  #sbs .cs-text {
    margin-bottom: 1rem;
    max-width: 46.875rem;
    text-align: left;
  }
  #sbs .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #sbs .cs-flex-group {
    position: relative;
    border-radius: 1rem;
    background-color: #f7f7f7;
    /* 16px - 32px */
    padding: clamp(1rem, 3vw, 2rem);
  }
  #sbs .cs-flex-p {
    margin: 0 0 1rem;
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    color: #353535;
  }
  #sbs .cs-name {
    display: block;
    margin: 0 0 0.25rem;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 1.2em;
    font-weight: bold;
    color: var(--headerColor);
  }
  #sbs .cs-job {
    display: block;
    font-size: 0.875rem;
    line-height: 1.5em;
    color: #353535;
  }
  #sbs .cs-quote-icon {
    position: absolute;
    bottom: 0rem;
    /* 16px - 32px */
    right: clamp(1rem, 4vw, 2rem);
    height: auto;
    /* 60px - 136px */
    width: clamp(3.75rem, 10vw, 8.5rem);
  }
  #sbs .cs-button-solid {
    margin-top: 2rem;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #sbs .cs-container {
    flex-flow: row;
    justify-content: space-between;
    gap: 3.25rem;
  }
  #sbs .cs-left {
    font-size: min(1.2vw, 1em);
    flex: none;
  }
  #sbs .cs-right {
    margin: 0;
  }
}
/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs-r {
    padding: var(--sectionPadding);
  }
  #sbs-r .cs-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    max-width: 80rem;
    width: 100%;
    row-gap: 2.5rem;
  }
  #sbs-r .cs-left {
    position: relative;
    height: 39.75em;
    /* using ems so we can use font size to scale the whole section */
    width: 39.4375em;
    /* scaling the font size with the view width */
    font-size: min(2.31vw, 0.7em);
  }
  #sbs-r .cs-picture {
    position: absolute;
    display: block;
    border-radius: 1.5em;
    /* clips img tag corners */
    overflow: hidden;
  }
  #sbs-r .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* makes image act like a background image */
    object-fit: cover;
  }
  #sbs-r .cs-picture1 {
    top: 0;
    right: 0;
    height: 36.3125em;
    width: 32.625em;
  }
  #sbs-r .cs-picture2 {
    bottom: 0;
    left: 0;
    /* 6px - 12px */
    border: clamp(0.375em, 1.5vw, 0.75em) solid #fff;
    background-color: #fff;
    height: 25em;
    width: 25.875em;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 40px;
  }
  #sbs-r .cs-right {
    margin: auto;
    max-width: 33.875rem;
  }
  #sbs-r .cs-topper {
    margin-bottom: 0.25rem;
    text-align: left;
  }
  #sbs-r .cs-title {
    max-width: 50rem;
    text-align: left;
  }
  #sbs-r .cs-text {
    margin-bottom: 1rem;
    max-width: 46.875rem;
    text-align: left;
  }
  #sbs-r .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #sbs-r .cs-flex-group {
    position: relative;
    border-radius: 1rem;
    background-color: #f7f7f7;
    /* 16px - 32px */
    padding: clamp(1rem, 3vw, 2rem);
  }
  #sbs-r .cs-flex-p {
    margin: 0 0 1rem;
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    color: #353535;
  }
  #sbs-r .cs-name {
    display: block;
    margin: 0 0 0.25rem;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 1.2em;
    font-weight: bold;
    color: var(--headerColor);
  }
  #sbs-r .cs-job {
    display: block;
    font-size: 0.875rem;
    line-height: 1.5em;
    color: #353535;
  }
  #sbs-r .cs-quote-icon {
    position: absolute;
    bottom: 0rem;
    /* 16px - 32px */
    right: clamp(1rem, 4vw, 2rem);
    height: auto;
    /* 60px - 136px */
    width: clamp(3.75rem, 10vw, 8.5rem);
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #sbs-r .cs-container {
    flex-flow: row;
    justify-content: space-between;
    gap: 3.25rem;
  }
  #sbs-r .cs-left {
    /* sends it to the right */
    order: 2;
    font-size: min(1.2vw, 1em);
    flex: none;
  }
  #sbs-r .cs-right {
    margin: 0;
  }
}
/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/
/* Mobile - 360px - Contains hover animation */
@media only screen and (min-width: 0rem) {
  #gallery {
    position: relative;
    /* Prevents overflow from the image going off screen */
    overflow: hidden;
    padding: var(--sectionPadding);
    /* Centers button */
    text-align: center;
  }
  #gallery .cs-container {
    margin: auto;
    max-width: 82.625em;
    width: 100%;
  }
  #gallery .cs-topper {
    margin-bottom: 1rem;
    text-align: center;
  }
  #gallery .cs-title {
    margin-bottom: 2.5rem;
    max-width: 38.8125rem;
    text-align: center;
  }
  #gallery .cs-image-group {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0 auto 3.75rem;
    max-width: 82.625em;
    width: 100%;
    padding: 0;
    /* used rem so it doesn't scale with the font size of on parent */
    font-size: min(1.1vw, 1em);
    gap: 1.875em;
  }
  #gallery .cs-row {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.875em;
  }
  #gallery .cs-picture {
    position: relative;
    display: block;
  }
  #gallery .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #gallery .cs-row-1 .cs-picture1 {
    height: 35.4375em;
    width: 26.25em;
  }
  #gallery .cs-row-1 .cs-picture2 {
    height: 39.3125em;
    width: 26.25em;
  }
  #gallery .cs-row-1 .cs-picture3 {
    height: 32em;
    width: 26.25em;
  }
  #gallery .cs-row-2 .cs-picture1 {
    height: 30.75em;
    width: 26.25em;
  }
  #gallery .cs-row-2 .cs-picture2 {
    height: 32.3125em;
    width: 26.25em;
  }
  #gallery .cs-row-2 .cs-picture3 {
    height: 39.3125em;
    width: 26.25em;
  }
  #gallery .cs-row-3 .cs-picture1 {
    height: 39.0625em;
    width: 26.25em;
  }
  #gallery .cs-row-3 .cs-picture2 {
    height: 28.25em;
    width: 26.25em;
  }
  #gallery .cs-row-3 .cs-picture3 {
    height: 39.3125em;
    width: 26.25em;
  }
}
/*-- -------------------------- -->
<---         Services           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-264 {
    background: var(--secondary);
    position: relative;
    margin-top: -14rem;
    padding-bottom: -10rem;
    z-index: 100;
  }
  #services-264 .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-264 .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;
    padding: 0 1.25rem;
  }
  #services-264 .cs-text {
    margin-bottom: 1rem;
  }
  #services-264 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #services-264 .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: white;
    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;
    transition: color 0.3s;
  }
  #services-264 .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;
  }
  #services-264 .cs-button-solid:hover {
    color: #fff;
  }
  #services-264 .cs-button-solid:hover:before {
    width: 100%;
  }
  #services-264 .cs-card-group {
    width: 100%;
    padding: 0 1.25rem;
    margin: 0;
    margin-bottom: -3.125rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1.25rem;
  }
  #services-264 .cs-item {
    list-style: none;
    position: relative;
    display: block;
    width: calc(100% - 20px);
    max-width: 28.125rem;
    height: 30rem;
    font-size: clamp(1rem, 1.7vw, 1.5rem);
    color: #fff;
    /* 16px - 20px top & bottom */
    /* 20px - 24px left & right */
    padding: clamp(1rem, 2vw, 1.25rem) clamp(1.25rem, 2vw, 1.5rem);
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    /* Floating effect */
    border-radius: 0.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 10;
  }
  #services-264 .cs-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    z-index: 15;
  }
  #services-264 .cs-h3 {
    /* 16px - 25px */
    font-size: clamp(1rem, 2vw, 1.5625rem);
    font-weight: 700;
    line-height: 1.2em;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
    display: block;
  }
  #services-264 .cs-picture {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    border-radius: 0.75rem;
  }
  #services-264 .cs-picture:before {
    /* top right box */
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.15;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
    transition: opacity 0.3s;
  }
  #services-264 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s;
  }
  #services-264 .cs-text-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    backdrop-filter: blur(10px);
    padding: 1rem;
    margin: 0;
    border-radius: 0 0 0.75rem 0.75rem;
    z-index: 2;
  }
  #services-264 .cs-text-content {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.4;
    color: var(--bodyTextColor);
    text-align: left;
  }
  #services-264 .cs-cta {
    text-decoration: none;
    /* 80px - 120px */
    width: clamp(5rem, 10vw, 7.5rem);
    height: clamp(5rem, 10vw, 7.5rem);
    margin: 0;
    background-color: var(--primary);
    /* prevents border from affecting height and width */
    box-sizing: border-box;
    border: clamp(8px, 2vw, 12px) solid var(--secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    transition: background-color 0.3s, transform 0.3s;
  }
  #services-264 .cs-cta:hover {
    background-color: #14142b;
    transform: translateX(-50%) scale(1.1);
  }
  #services-264 .cs-cta:hover .cs-icon {
    transform: scale(1.1);
  }
  #services-264 .cs-icon {
    width: 2rem;
    height: 2rem;
    /* makes icon white */
    filter: brightness(0) invert(1);
    transition: transform 0.3s;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-264 .cs-container {
    flex-direction: row;
  }
  #services-264 .cs-content {
    order: 2;
    width: 36%;
    padding: 0;
  }
  #services-264 .cs-card-group {
    order: 1;
    width: 64%;
    max-width: 54.1875rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    /* 16px - 20px */
    gap: clamp(1rem, 1.5vw, 1.25rem);
    flex: none;
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
  #services-264 .cs-text-box {
    padding: 1.5rem;
    margin: 0;
  }
  #services-264 .cs-text-content {
    font-size: 0.9375rem;
    line-height: 1.5;
  }
  #services-264 .cs-cta {
    display: flex;
    left: -2.5rem;
    transform: none;
  }
  #services-264 .cs-cta:hover {
    transform: scale(1.1);
  }
  #services-264 .cs-item {
    width: 100%;
    height: 60vw;
    max-width: 25rem;
    max-height: 36.25rem;
    transition: transform 0.3s ease;
    position: relative;
  }
  #services-264 .cs-item:nth-child(1) {
    transform: translateY(0);
  }
  #services-264 .cs-item:nth-child(2) {
    transform: translateY(3.75rem);
  }
  #services-264 .cs-item:hover:nth-child(1) {
    transform: translateY(-10px);
  }
  #services-264 .cs-item:hover:nth-child(2) {
    transform: translateY(calc(3.75rem - 10px));
  }
  #services-264 .cs-item:hover .cs-picture:before {
    opacity: 0.7;
  }
  #services-264 .cs-item:hover .cs-picture img {
    transform: scale(1.2);
  }
}
/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #gallery-483 {
    padding: var(--sectionPadding);
    padding-top: 8.75rem;
    background-color: #f9fafc;
    /* Add a subtle animation on load */
  }
  #gallery-483 .cs-container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 8px - 20px */
    gap: clamp(0.5rem, 2vw, 1.25rem);
  }
  #gallery-483 .cs-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #gallery-483 .cs-text {
    /* 48px - 64px */
    margin-bottom: clamp(3rem, 6vw, 4rem);
  }
  #gallery-483 .cs-cta {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1.25rem);
    text-decoration: none;
    /* 16px - 20px */
    text-align: center;
    /* 141px - 224px */
    width: clamp(8.8125rem, 17vw, 14rem);
    height: clamp(8.8125rem, 17vw, 14rem);
    margin: 0 auto 0 0;
    /* 141px - 224px */
    /* copied the same height clamp and multiplied it by -.5 so the value is negative and half the value of height so we can make it overlap by 50% its height */
    margin-bottom: calc(clamp(8.8125rem, 17vw, 14rem) * -0.5);
    background-color: var(--primary);
    color: var(--bodyTextColorWhite);
    /* prevents border from affecting height and width */
    box-sizing: border-box;
    border: clamp(12px, 3vw, 20px) solid #f9fafc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    align-self: flex-end;
    position: relative;
    z-index: 10;
    transition: background-color 0.3s;
  }
  #gallery-483 .cs-cta:hover {
    background-color: #14142b;
  }
  #gallery-483 .cs-cta:hover .cs-arrow {
    transform: translateX(3.75rem);
    opacity: 0;
  }
  #gallery-483 .cs-cta:hover .cs-cta-text {
    transform: translateY(-0.9375rem);
  }
  #gallery-483 .cs-arrow {
    width: 2.5rem;
    height: auto;
    transition: transform 0.3s, opacity 0.3s;
  }
  #gallery-483 .cs-cta-text {
    transition: transform 0.3s;
  }
  #gallery-483 .cs-content-picture {
    width: 100%;
    height: 19.375rem;
    border-radius: 0.75rem;
    /* clips the img corners */
    overflow: hidden;
    display: block;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    /* Fix for flipped image - rotate 90 degrees clockwise */
  }
  #gallery-483 .cs-content-picture picture img {
    transform-origin: center;
  }
  #gallery-483 .cs-content-picture:hover {
    transform: translateY(-4px);
  }
  #gallery-483 .cs-content-picture:hover .cs-overlay {
    opacity: 1;
  }
  #gallery-483 .cs-content-picture:hover picture img {
    transform: scale(1.05);
  }
  #gallery-483 .cs-content-picture:hover .cs-location {
    transform: translateY(0);
  }
  #gallery-483 .cs-content-picture:hover .cs-location-badge {
    transform: scale(0.8) translateY(-10px);
    opacity: 0;
  }
  #gallery-483 .cs-content-picture picture {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
  }
  #gallery-483 .cs-content-picture picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* makes it behave like a background image */
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  #gallery-483 .cs-grid {
    width: 100%;
    display: grid;
    /* 12 so we can have rows of 3 and rows with 2 50/50 images */
    grid-template-columns: repeat(12, 1fr);
    /* 8px - 20px */
    grid-gap: clamp(0.5rem, 2vw, 1.25rem);
    grid-template-rows: repeat(20, 1fr);
  }
  #gallery-483 .cs-picture {
    border-radius: 0.5rem;
    /* clips corners of img tags */
    overflow: hidden;
    position: relative;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  #gallery-483 .cs-picture:hover {
    transform: translateY(-4px);
  }
  #gallery-483 .cs-picture:hover .cs-overlay {
    opacity: 1;
  }
  #gallery-483 .cs-picture:hover picture img {
    transform: scale(1.05);
  }
  #gallery-483 .cs-picture picture {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
  }
  #gallery-483 .cs-picture picture img {
    width: 100%;
    height: 100%;
    /* makes image behave like a background image */
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  #gallery-483 .cs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(168, 90, 86, 0.8) 0%, rgba(20, 20, 43, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  #gallery-483 .cs-location {
    color: var(--bodyTextColorWhite);
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transform: translateY(10px);
    transition: transform 0.3s ease;
  }
  #gallery-483 .cs-picture:hover .cs-location {
    transform: translateY(0);
  }
  #gallery-483 .cs-location-badge {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 1.5625rem;
    font-size: 0.8125rem;
    font-weight: 700;
    transition: all 0.3s ease;
    z-index: 5;
    transform: scale(1) translateY(0);
    opacity: 1;
    overflow: hidden;
    /* Create the cutout effect */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(20px) saturate(1.8) contrast(1.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 0 1px rgba(168, 90, 86, 0.1);
    /* Text styling for contrast */
    color: var(--bodyTextColorWhite);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 0 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    /* Add a subtle inner glow */
  }
  #gallery-483 .cs-location-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 90, 86, 0.15) 0%, rgba(20, 20, 43, 0.15) 100%);
    border-radius: inherit;
    z-index: -1;
  }
  #gallery-483 .cs-picture:hover .cs-location-badge,
  #gallery-483 .cs-content-picture:hover .cs-location-badge {
    transform: scale(0.8) translateY(-15px) rotate(3deg);
    opacity: 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 0 1px rgba(168, 90, 86, 0.2);
  }
  #gallery-483 .cs-location-badge {
    animation: floatIn 0.6s ease-out;
  }
  @keyframes floatIn {
    0% {
      transform: scale(0.8) translateY(10px);
      opacity: 0;
    }
    100% {
      transform: scale(1) translateY(0);
      opacity: 1;
    }
  }
  #gallery-483 .cs-picture1 {
    grid-column: 1/7;
    grid-row: 1/12;
  }
  #gallery-483 .cs-picture2 {
    grid-column: 7/13;
    grid-row: 1/14;
  }
  #gallery-483 .cs-picture3 {
    grid-column: 1/7;
    grid-row: 12/21;
  }
  #gallery-483 .cs-picture4 {
    grid-column: 7/13;
    grid-row: 14/21;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #gallery-483 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
  }
  #gallery-483 .cs-content {
    max-width: 39.375rem;
    justify-content: flex-start;
  }
  #gallery-483 .cs-text {
    width: 85%;
  }
  #gallery-483 .cs-grid {
    width: 50%;
    max-width: 39.375rem;
    /* prevents flexbox from squishing it */
    flex: none;
    grid-template-rows: repeat(16, 1fr);
  }
  #gallery-483 .cs-content-picture {
    /* 400px - 600px - reduced max height for better proportions */
    height: clamp(25rem, 40vw, 37.5rem);
    aspect-ratio: 1.18;
  }
  #gallery-483 .cs-picture1 {
    grid-column: 1/7;
    grid-row: 1/13;
  }
  #gallery-483 .cs-picture2 {
    grid-column: 7/13;
    grid-row: 1/9;
  }
  #gallery-483 .cs-picture3 {
    grid-column: 1/7;
    grid-row: 13/21;
  }
  #gallery-483 .cs-picture4 {
    grid-column: 7/13;
    grid-row: 9/21;
  }
  #gallery-483 #gallery-483 {
    padding-top: 6.25rem;
  }
}
/*-- -------------------------- -->
<---        Side By Side        -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs-2295 {
    padding: var(--sectionPadding);
    background-color: #f9fafc;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #sbs-2295 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 44rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 4vw, 4rem);
  }
  #sbs-2295 .cs-image-group {
    /* scales the whole section down and ties the font size to the vw and stops at 75% of the vale of 1em, changes at desktop */
    font-size: min(1.98vw, 0.826rem);
    /* everything inside this box is in ems so we can scale it all down proportionally with a font size */
    width: 46.125em;
    height: 36.125em;
    order: -1;
    position: relative;
    z-index: 1;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #sbs-2295 .cs-picture {
    width: 100%;
    height: 100%;
    border: 1em solid var(--bodyTextColorWhite);
    border-radius: 0.5rem;
    display: block;
    overflow: hidden;
  }
  #sbs-2295 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
  }
  #sbs-2295 .cs-picture1 {
    border: none !important;
    border-radius: 0.5rem !important;
    overflow: hidden;
  }
  #sbs-2295 .cs-picture1 img {
    border-radius: 0.5rem;
  }
  #sbs-2295 .cs-picture2 {
    border-radius: 0.5rem !important;
    overflow: hidden;
  }
  #sbs-2295 .cs-picture2 img {
    border-radius: 0.5rem;
  }
  #sbs-2295 .cs-picture-wrapper1 {
    width: 25.75em;
    height: 28.5625em;
    display: flex;
    flex-direction: column;
    gap: 1em;
    position: absolute;
    top: 0;
    left: 0;
    /* Add the background shadow effect */
  }
  #sbs-2295 .cs-picture-wrapper1 .cs-bg-shadow {
    position: absolute;
    top: -2.5em;
    left: -2.5em;
    width: 100%;
    height: 80%;
    background-color: var(--secondary);
    z-index: -1;
    border-radius: 0.5rem;
  }
  #sbs-2295 .cs-picture-wrapper2 {
    width: 25.8125em;
    height: 29.625em;
    display: flex;
    flex-direction: column-reverse;
    gap: 1em;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  #sbs-2295 .cs-tag {
    /* 14px - 24px */
    font-size: clamp(0.875rem, 1.4vw, 1.5rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: center;
    color: var(--headerColor);
  }
  #sbs-2295 .cs-arrow {
    width: 18.75em;
    height: 7.1875em;
    position: absolute;
    top: 15.125em;
    left: 11.25em;
    transform: rotate(210) scaleX(1) scaleY(1);
  }
  #sbs-2295 .cs-content {
    /* set text align to center if content needs to be centrally aligned */
    text-align: left;
    width: 100%;
    max-width: 36.625rem;
    display: flex;
    flex-direction: column;
    /* aligns content to the left, set to center to centrally align */
    align-items: flex-start;
  }
  #sbs-2295 .cs-title {
    max-width: 30ch;
  }
  #sbs-2295 .cs-text {
    margin-bottom: 1rem;
  }
  #sbs-2295 .cs-text:last-of-type {
    margin-bottom: 1.5rem;
  }
  #sbs-2295 .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: 0;
    padding: 0 1.5rem;
    background-color: var(--primary);
    color: var(--headerColor);
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #sbs-2295 .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;
  }
  #sbs-2295 .cs-button-solid:hover:before {
    width: 100%;
  }
  #sbs-2295 .cs-h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5em;
    margin: 0;
    color: var(--headerColor);
  }
  #sbs-2295 .cs-ul {
    margin: 0.75rem 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  #sbs-2295 .cs-li {
    font-size: 1rem;
    line-height: 1.5em;
    list-style: none;
    /* 20px - 24px */
    padding-left: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--bodyTextColor);
    position: relative;
  }
  #sbs-2295 .cs-li strong {
    color: #1a1a1a;
  }
  #sbs-2295 .cs-li::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    margin-top: 0.5rem;
    background-color: var(--secondary);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(45deg);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #sbs-2295 .cs-container {
    max-width: 80rem;
  }
  #sbs-2295 .cs-image-group {
    order: initial;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #sbs-2295 .cs-container {
    flex-direction: row;
    align-items: stretch;
  }
  #sbs-2295 .cs-image-group {
    font-size: min(1.03vw, 1rem);
    height: auto;
  }
  #sbs-2295 .cs-picture-wrapper1 {
    height: auto;
    bottom: 7.5625em;
  }
  #sbs-2295 .cs-picture-wrapper2 {
    height: auto;
    top: 6.5em;
  }
}
/*-- -------------------------- -->
<---      Side By Side - 2296    -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs-2296 {
    padding: var(--sectionPadding);
    background-color: #f9fafc;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #sbs-2296 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 44rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 4vw, 4rem);
  }
  #sbs-2296 .cs-image-group {
    /* scales the whole section down and ties the font size to the vw and stops at 75% of the vale of 1em, changes at desktop */
    font-size: min(1.98vw, 0.826rem);
    /* everything inside this box is in ems so we can scale it all down proportionally with a font size */
    width: 46.125em;
    height: 36.125em;
    order: -1;
    position: relative;
    z-index: 1;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #sbs-2296 .cs-picture {
    width: 100%;
    height: 100%;
    border: 1em solid var(--bodyTextColorWhite);
    border-radius: 0.5rem;
    display: block;
    overflow: hidden;
  }
  #sbs-2296 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
  }
  #sbs-2296 .cs-picture1 {
    border: none !important;
    border-radius: 0.5rem !important;
    overflow: hidden;
  }
  #sbs-2296 .cs-picture1 img {
    border-radius: 0.5rem;
  }
  #sbs-2296 .cs-picture2 {
    border-radius: 0.5rem !important;
    overflow: hidden;
  }
  #sbs-2296 .cs-picture2 img {
    border-radius: 0.5rem;
  }
  #sbs-2296 .cs-picture-wrapper1 {
    width: 25.75em;
    height: 28.5625em;
    display: flex;
    flex-direction: column;
    gap: 1em;
    position: absolute;
    top: 0;
    right: 0;
    /* Add the background shadow effect */
  }
  #sbs-2296 .cs-picture-wrapper1 .cs-bg-shadow {
    position: absolute;
    top: -2.5em;
    right: -2.5em;
    width: 100%;
    height: 80%;
    background-color: var(--backgroundSecondary);
    z-index: -1;
    border-radius: 0.5rem;
  }
  #sbs-2296 .cs-picture-wrapper2 {
    width: 25.8125em;
    height: 29.625em;
    display: flex;
    flex-direction: column-reverse;
    gap: 1em;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  #sbs-2296 .cs-tag {
    /* 14px - 24px */
    font-size: clamp(0.875rem, 1.4vw, 1.5rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: center;
    color: var(--headerColor);
  }
  #sbs-2296 .cs-arrow {
    width: 9.25em;
    height: 3.375em;
    position: absolute;
    top: 15.125em;
    left: 15.9375em;
    transform: rotate(30deg);
  }
  #sbs-2296 .cs-content {
    /* set text align to center if content needs to be centrally aligned */
    text-align: left;
    width: 100%;
    max-width: 36.625rem;
    display: flex;
    flex-direction: column;
    /* aligns content to the left, set to center to centrally align */
    align-items: flex-start;
  }
  #sbs-2296 .cs-title {
    max-width: 30ch;
  }
  #sbs-2296 .cs-text {
    margin-bottom: 1rem;
  }
  #sbs-2296 .cs-text:last-of-type {
    margin-bottom: 1.5rem;
  }
  #sbs-2296 .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: 0;
    padding: 0 1.5rem;
    background-color: var(--primary);
    color: var(--headerColor);
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #sbs-2296 .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;
  }
  #sbs-2296 .cs-button-solid:hover:before {
    width: 100%;
  }
  #sbs-2296 .cs-h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5em;
    margin: 0;
    color: var(--headerColor);
  }
  #sbs-2296 .cs-ul {
    margin: 0.75rem 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  #sbs-2296 .cs-li {
    font-size: 1rem;
    line-height: 1.5em;
    list-style: none;
    /* 20px - 24px */
    padding-left: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--bodyTextColor);
    position: relative;
  }
  #sbs-2296 .cs-li strong {
    color: #1a1a1a;
  }
  #sbs-2296 .cs-li::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    margin-top: 0.5rem;
    background-color: var(--secondary);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(45deg);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #sbs-2296 .cs-container {
    max-width: 80rem;
  }
  #sbs-2296 .cs-image-group {
    order: initial;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #sbs-2296 .cs-container {
    flex-direction: row;
    align-items: stretch;
  }
  #sbs-2296 .cs-content {
    /* content appears first (left side) on desktop */
    order: -1;
  }
  #sbs-2296 .cs-image-group {
    font-size: min(1.03vw, 1rem);
    height: auto;
  }
  #sbs-2296 .cs-picture-wrapper1 {
    height: auto;
    bottom: 7.5625em;
  }
  #sbs-2296 .cs-picture-wrapper2 {
    height: auto;
    top: 6.5em;
  }
}

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