  /*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #sbs-1308 {
      background-color: #F6F5F1;
        padding: var(--sectionPadding);
        overflow: hidden;
    }

    #sbs-1308 .cs-container {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: clamp(3rem, 4vw, 4rem);
    }
    #sbs-1308 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 33.875rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
        position: relative;
        z-index: 10;
    }

    #sbs-1308 .cs-text {
        margin-bottom: 1rem;
    }
    #sbs-1308 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #sbs-1308 .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: var(--bodyTextColorWhite);
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: var(--primary);
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
        transition: color 0.3s;
    }
    #sbs-1308 .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }
    #sbs-1308 .cs-button-solid:hover {
        color: #fff;
    }
    #sbs-1308 .cs-button-solid:hover:before {
        width: 100%;
    }
    #sbs-1308 .cs-ul {
        width: 100%;
        padding: 0;
        /* 32px - 48px */
        margin: clamp(2rem, 5vw, 3rem) 0 0 0;
        /* 32px - 48px */
        padding: clamp(2rem, 5vw, 3rem) 0 0 0;
        border-top: 1px solid #e8e8e8;
        display: flex;
        justify-content: space-between;
        align-items: center;
        column-gap: 0.75rem;
    }
    #sbs-1308 .cs-item {
        list-style: none;
        width: 32%;
        /* making flex so we can align a heading with 1 line to the bottom */
        display: flex;
        flex-direction: column;
        align-self: stretch;
        align-content: space-between;
    }
    #sbs-1308 .cs-number {
        font-size: 1.5625rem;
        line-height: 1.2em;
        font-weight: 700;
        text-align: left;
        color: var(--primary);
        display: block;
        margin: 0 0 0.5rem 0;
    }
    #sbs-1308 .cs-h3 {
        font-size: 1rem;
        line-height: 1.5em;
        font-weight: 400;
        text-align: left;
        /* auto margin top will push text to bottom if there's only one line */
        margin: 0;
        color: var(--bodyTextColor);
    }
    #sbs-1308 .cs-image-group {
        width: 100%;
        max-width: 41.875rem;
        height: 100vw;
        max-height: 39.375rem;
        position: relative;
        display: block;
        z-index: 1;
    }
    #sbs-1308 .cs-picture {
        /* big background image */
        width: 93%;
        height: 93%;
        position: absolute;
        top: 0;
        left: 0;
        display: block;
    }
    #sbs-1308 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    #sbs-1308 .cs-box {
        text-align: left;
        width: 70%;
        max-width: 19rem;
        /* 20px - 40px */
        padding: clamp(1.25rem, 4vw, 2.5rem);
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        background-color: #1a1a1a;
        display: inline-flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        gap: 0.5rem;
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 10;
    }
    #sbs-1308 .cs-desc {
        /* 16px - 31px */
        font-size: clamp(1rem, 2.5vw, 1.9375rem);
        line-height: 1.2em;
        font-weight: 700;
        text-align: inherit;
        width: 100%;
        color: var(--bodyTextColorWhite);
        position: relative;
        z-index: 10;
    }
    #sbs-1308 .cs-graphic {
        width: 150%;
        height: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #sbs-1308 .cs-container {
        max-width: 80rem;
        padding-top: 0;
        /* set to horizontal arrangement */
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }
    #sbs-1308 .cs-content {
        width: 48%;
        padding: 3rem 0;
        align-self: center;
        /* prevents flexbox from squishing it */
        flex: none;
    }
    #sbs-1308 .cs-image-group {
        width: 55%;
        max-width: 41.875rem;
        min-height: 41.875rem;
        max-height: 100%;
        height: auto;
        margin: 0;
    }
    #sbs-1308 .cs-picture {
        width: 93%;
        height: 94%;
    }
    #sbs-1308 .cs-box {
        bottom: 0rem;
    }
    #sbs-1308 .cs-graphic {
        max-width: 44.6875rem;
        left: auto;
        right: 8.125rem;
        transform: translateY(-50%);
    }
}

/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #services-1627 {
      padding: var(--sectionPadding);
      background-color: var(--primary);
    }
    #services-1627 .cs-container {
      width: 100%;
      /* changes to 1280px at tablet */
      max-width: 34.375em;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 48px - 64px */
      gap: clamp(3rem, 6vw, 4rem);
    }
    #services-1627 .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;
    }
    #services-1627 .cs-title {
      max-width: 20ch;
      color: #e7e7e8;
    }
    #services-1627 .cs-text {
      max-width: 40rem;
      position: relative;
      z-index: 1;
      color: #e7e7e8;
    }
    #services-1627 .cs-text:after {
      /* divider line */
      content: "";
      width: 100%;
      height: 1px;
      margin-top: 1.5rem;
      background: var(--primary);
      opacity: 1;
      display: block;
      position: relative;
    }
    #services-1627 .cs-chevron {
      --chevronColor: var(--primary);
      width: 3rem;
      height: auto;
    }
    #services-1627 .cs-card-group {
      width: 100%;
      margin: 0;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      /* 16px - 20px */
      column-gap: clamp(1rem, 2.5vw, 1.25rem);
      /* 28px - 40px */
      row-gap: clamp(1.75rem, 2.5vw, 2.5rem);
    }
    #services-1627 .cs-item {
      list-style: none;
      width: 100%;
      display: flex;
      grid-column: span 12;
      flex-direction: column;
      align-items: flex-start;
    }
    #services-1627 .cs-item:hover .cs-picture img {
      opacity: .5;
      transform: scale(1.2);
    }
    #services-1627 .cs-link {
      text-decoration: none;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    #services-1627 .cs-picture {
      width: 100%;
      height: 15rem;
      margin-bottom: 1.5rem;
      background-color: #000;
      overflow: hidden;
      display: block;
      position: relative;
    }
    #services-1627 .cs-picture img {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      object-fit: cover;
      transition: transform .6s, opacity .3s;
    }
    #services-1627 .cs-h3 {
      font-size: 1.25rem;
      line-height: 1.2em;
      font-weight: 700;
      text-align: left;
      margin: 0 0 0.75rem 0;
      color: #e7e7e8;
    }
    #services-1627 .cs-item-text {
      font-size: 1rem;
      line-height: 1.5em;
      text-align: left;
      margin: 0 0 1.5rem 0;
      color: #e7e7e8;
    }
    #services-1627 .cs-fake-link {
      font-size: 1rem;
      line-height: 1.2em;
      font-weight: 700;
      margin: 0;
      margin-top: auto;
      color: #e7e7e8;
      display: inline-flex;
      justify-content: flex-start;
      align-items: center;
      gap: 0.5rem;
    }
    #services-1627 .cs-fake-link:hover .cs-icon {
      transform: translateX(0.5rem);
    }
    #services-1627 .cs-icon {
      width: 1.25rem;
      height: auto;
      display: block;
      transition: transform .3s;
    }
  }
  /* Tablet - 768px */
  @media only screen and (min-width: 48rem) {
    #services-1627 .cs-container {
      max-width: 80rem;
    }
    #services-1627 .cs-content {
      flex-direction: row;
      justify-content: center;
      align-items: center;
    }
    #services-1627 .cs-flex {
      text-align: left;
      width: 40vw;
      max-width: 40rem;
      flex: none;
    }
    #services-1627 .cs-title {
      margin: 0;
    }
    #services-1627 .cs-text {
      padding: 0.75rem 0 0.75rem 1.5rem;
    }
    #services-1627 .cs-text:after {
      width: 1px;
      height: 100%;
      margin: 0 1.5rem 0 0;
      order: -1;
      position: absolute;
      left: 0;
      top: 0;
    }
    #services-1627 .cs-item {
      grid-column: span 4;
    }
    #services-1627 .cs-picture {
      /* 240px - 420px */
      height: clamp(15rem, 33vw, 26.25rem);
    }
  }


/*-- -------------------------- -->
<---        Why Choose          -->
<--- -------------------------- -*/

@media only screen and (min-width: 0rem) {
	#why-choose {
    background-color: #F6F5F1;
		position: relative;
		padding: var(--sectionPadding);
	}

	#why-choose .cs-container {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: auto;
		max-width: 44rem;
		width: 100%;
		gap: 3rem;
	}

	#why-choose .cs-content {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: clamp(3rem, 6vw, 4rem);
		width: 100%;
		text-align: left;
	}

	#why-choose .cs-title {
		margin: 0;
	}

	#why-choose .cs-content-picture {
		display: block;
		height: 20.5rem;
		width: 100%;
	}

	#why-choose .cs-content-picture img {
		height: 100%;
		width: 100%;
		-o-object-fit: cover;
		object-fit: cover;
	}

	#why-choose .cs-ul {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		margin: 2rem 0;
		max-width: 39.375rem;
		width: 100%;
		padding: 0;
	}

	#why-choose .cs-li {
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		border-bottom: 1px solid #e7e7e8;
		margin: 0 0 1.5rem;
		padding: 0 0 1.5rem;
		list-style: none;
		gap: 1.25rem;
	}

	#why-choose .cs-li:last-of-type {
		border: none;
		margin: 0;
		padding: 0;
	}

	#why-choose .cs-icon {
		display: block;
		height: auto;
		width: 3rem;
	}

	#why-choose .cs-h3 {
		margin: 0 0 0.5rem 0;
		font-size: 1.25rem;
		line-height: 1.2em;
		font-weight: 700;
		color: var(--headerColor);
		text-align: left;
	}

	#why-choose .cs-li-text {
		margin: 0;
		font-size: 1rem;
		line-height: 1.5em;
		color: var(--bodyTextColor);
		text-align: left;
	}

	#why-choose .cs-picture {
		display: block;
		height: 22.5rem;
		width: 100%;
	}

	#why-choose .cs-picture img {
		height: 100%;
		width: 100%;
		-o-object-fit: cover;
		object-fit: cover;
	}

	body.dark-mode #why-choose .cs-title,
	body.dark-mode #why-choose .cs-item-p,
	body.dark-mode #why-choose .cs-h3,
	body.dark-mode #why-choose .cs-li-text {
		color: var(--bodyTextColorWhite);
	}

	body.dark-mode #why-choose .cs-text,
	body.dark-mode #why-choose .cs-item-p,
	body.dark-mode #why-choose .cs-li-text {
		opacity: 0.8;
	}

	body.dark-mode #why-choose .cs-faq-item {
		background-color: var(--medium);
	}

	body.dark-mode #why-choose .cs-faq-item:hover::after,
	body.dark-mode #why-choose .cs-faq-item.active::after {
		opacity: 0.6;
	}

	body.dark-mode #why-choose .cs-faq-item.active .cs-button {
		background-color: var(--medium);
		color: var(--bodyTextColorWhite);
	}

	body.dark-mode #why-choose .cs-faq-item.active .cs-button:before,
	body.dark-mode #why-choose .cs-faq-item.active .cs-button:after {
		background-color: var(--bodyTextColorWhite);
	}

	body.dark-mode #why-choose .cs-button {
		background-color: var(--medium);
		color: var(--bodyTextColorWhite);
		border-color: var(--accent);
	}

	body.dark-mode #why-choose .cs-button:before,
	body.dark-mode #why-choose .cs-button:after {
		opacity: 0.8;
		background-color: var(--bodyTextColorWhite);
	}
}

@media only screen and (min-width: 48rem) {
	#why-choose .cs-content-group {
		display: grid;
		grid-template-columns: auto auto;
		padding-right: 1.25rem;
		-moz-column-gap: clamp(2rem, 3vw, 3rem);
		column-gap: clamp(2rem, 3vw, 3rem);
	}

	#why-choose .cs-content {
		grid-column: span 2;
	}

	#why-choose .cs-content-picture {
		height: 100%;
		width: clamp(17.75rem, 34vw, 28.625rem);
		grid-column: span 1;
	}

	#why-choose .cs-ul {
		margin-top: 0;
	}
}

@media only screen and (min-width: 64rem) {
	#why-choose .cs-container {
		flex-direction: row;
		align-items: stretch;
		max-width: 90rem;
	}

	#why-choose .cs-picture {
		height: auto;
		width: clamp(13.8125rem, 21vw, 25.8125rem);
		flex: 1 0 auto;
	}
}




@media only screen and (min-width: 64rem) {
	#why-choose .cs-container {
		flex-direction: row;
		align-items: stretch;
		max-width: 90rem;
	}

	#why-choose .cs-picture {
		height: auto;
		width: clamp(13.8125rem, 21vw, 25.8125rem);
		flex: 1 0 auto;
	}

	#sbs-2288 .cs-container {
		flex-direction: row;
		align-items: stretch;
		max-width: 80rem;
	}

	#sbs-2288 .cs-content {
		max-width: 23.125rem;
		width: 36vw;
		padding-bottom: 8.875rem;
	}

	#sbs-2288 .cs-ul-group {
		width: 100%;
	}

	#sbs-2288 .cs-images {
		min-height: 25.75rem;
		height: 100%;
		width: 100%;
		font-size: inherit;
	}

	#sbs-2288 .cs-picture1 {
		bottom: 14.9375rem;
		height: auto;
		width: 61.1316212%;
	}

	#sbs-2288 .cs-picture2 {
		top: 7.5rem;
		height: auto;
		width: 66.934189%;
	}

	#sbsr-2289 .cs-container {
		flex-direction: row;
		align-items: stretch;
		max-width: 80rem;
		gap: 1.25rem;
	}

	#sbsr-2289 .cs-content {
		padding-right: 3.25rem;
		padding-bottom: 6.75rem;
	}

	#sbsr-2289 .cs-image-group {
		order: initial;
		max-height: 100%;
		min-height: 40.125rem;
		height: auto;
	}

	#sbsr-2289 .cs-picture {
		bottom: 4rem;
	}

	#gallery .cs-content {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-end;
		gap: 4rem;
	}

	#gallery .cs-image:hover .cs-tag,
	#gallery .cs-image:hover .cs-project {
		opacity: 1;
		transform: translateX(0);
	}

	#gallery .cs-image:hover .cs-picture img {
		opacity: 0.2;
		transform: scale(1.3);
	}

	#gallery .cs-tag {
		opacity: 0;
		transform: translateX(-100%);
		transition: transform 0.3s ease-in-out, opacity 0.3s;
	}

	#gallery .cs-project {
		opacity: 0;
		transform: translateX(-100%);
		transition: transform 0.4s ease-out, opacity 0.3s;
		transition-delay: 0.1s;
	}
}

@media only screen and (min-width: 81.25rem) {
	#sbs-2288 .cs-content {
		padding-right: 3.25rem;
	}

	#sbs-2288 .cs-picture1 {
		bottom: 3.75rem;
		width: 32.625rem;
	}

	#sbs-2288 .cs-picture2 {
		top: 3.75rem;
		width: 24.4375rem;
	}

	#gallery .cs-stat {
		flex-direction: row;
		align-items: center;
	}
}

@media only screen and (min-width: 106.25rem) {
	#services-2287 .cs-floater-right {
		right: 50%;
		margin-right: -63.75rem;
	}

	#services-2287 .cs-floater-left {
		left: 50%;
		margin-left: -63.75rem;
	}
}

/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #contact-718 {
    background-color: #F6F5F1;
      padding: var(--sectionPadding);
      position: relative;
      z-index: 1;
  }
  #contact-718 .cs-container {
      width: 100%;
      /* changes to 1280px at desktop */
      max-width: 34.375rem;
      margin: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 3.25rem;
  }
  #contact-718 .cs-picture {
      width: 100%;
      max-width: 40.625rem;
      height: auto;
      /* reset at desktop */
      aspect-ratio: 1.00516351;
      position: relative;
  }
  #contact-718 .cs-picture img {
      width: 100%;
      height: 100%;
      /* makes it act like a background image */
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
  }
  #contact-718 .cs-content {
      /* set text align to left if content needs to be left aligned */
      text-align: left;
      width: 100%;
      max-width: 33.875rem;
      display: flex;
      flex-direction: column;
      /* centers content horizontally, set to flex-start to left align */
      align-items: flex-start;
  }

  #contact-718 .cs-text {
      margin: 0 0 2rem 0;
  }
  #contact-718 .cs-form {
      /* 24px - 48px top and bottom */
      /* 20px - 32px left and right */
      padding: clamp(1.25rem, 4.18vw, 3rem) clamp(1.25rem, 4.18vw, 2rem);
      background-color: #f7f8f8;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.75rem;
  }
  #contact-718 .cs-label {
      /* 14px - 16px */
      font-size: clamp(0.875rem, 1.5vw, 1rem);
      width: 100%;
      color: var(--headerColor);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      gap: 0.25rem;
  }
  #contact-718 .cs-input {
      font-size: 1rem;
      width: 100%;
      height: 3.5rem;
      padding: 0;
      padding-left: 1.5rem;
      color: var(--headerColor);
      background-color: #fff;
      border: none;
      /* prevents padding from adding to height and width */
      box-sizing: border-box;
  }
  #contact-718 .cs-input::placeholder {
      color: #7d799c;
      opacity: 0.6;
  }
  #contact-718 .cs-textarea {
      min-height: 7.5rem;
      padding-top: 1.5rem;
      margin-bottom: 0.75rem;
      font-family: inherit;
  }
  #contact-718 .cs-button-solid {
      font-size: 1rem;
      /* 46px - 56px */
      line-height: clamp(2.875em, 5.5vw, 3.5em);
      text-decoration: none;
      font-weight: 700;
      text-align: center;
      margin: 0;
      color: #fff;
      border: none;
      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;
  }
  #contact-718 .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;
  }
  #contact-718 .cs-button-solid:hover {
      color: #fff;
  }
  #contact-718 .cs-button-solid:hover:before {
      width: 100%;
  }
  #contact-718 .cs-submit {
      min-width: 17.6875rem;
      border-radius: 0;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #contact-718 .cs-container {
      max-width: 80rem;
      flex-direction: row;
      justify-content: space-between;
      gap: 3.25rem;
  }
  #contact-718 .cs-picture {
      height: 51.875rem;
      aspect-ratio: initial;
      /* sends it to the right in the 2nd position */
      order: 2;
  }
}

/* -------------------------------------------- */
/*                    Logos                     */
/* -------------------------------------------- */
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #logos-572 {
        padding: clamp(3.75rem, 8vw, 8.125rem) 1rem;
        background-color: var(--bgcolor);
    }

    #logos-572 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(2.5rem, 5vw, 4rem);
    }

    #logos-572 .cs-title {
        font-size: clamp(1.9375rem, 3.9vw, 3.0625rem);
        font-weight: 700;
        line-height: 1.2em;
        text-align: center;
        margin: 0;
        color: var(--headerColor);
    }

    #logos-572 .cs-logo-wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: clamp(1.5rem, 4vw, 2.5rem);
    }

    #logos-572 .cs-logo {
        max-height: 64px;   /* smaller on phones */
        max-width: 140px;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    #logos-572 .cs-logo:hover {
        opacity: 1;
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #logos-572 .cs-logo {
        max-width: 200px;
    }
}

@media only screen and (min-width: 0rem) {
	#gallery-2297 {
        position: relative;
        z-index: 1;
        background-color: var(--bgcolor);
        padding: var(--sectionPadding);
        overflow: hidden;
    }

    #gallery-2297 .cs-container {
        display: flex;
        position: relative;
        flex-direction: column;
        align-items: flex-start;
        z-index: 1;
        margin: auto;
        width: 100%;
        max-width: 80rem;
    }

    #gallery-2297 .cs-content {
        display: contents;
        width: 100%;
    }

    #gallery-2297 .cs-title {
        margin: 0 0 3rem;
    }

    #gallery-2297 .cs-button-group {
        display: flex;
        -moz-column-gap: clamp(1.25rem, 3.4vw, 2.5rem);
        column-gap: clamp(1.25rem, 3.4vw, 2.5rem);
        row-gap: 1rem;
        flex-wrap: wrap;
        order: 2;
        margin: 2rem auto 0;
        background-color: var(--bodyTextColorWhite);
        padding: 1rem 1.5rem;
    }

    #gallery-2297 .cs-button {
        position: relative;
        transition: color 0.3s;
        border: none;
        background-color: transparent;
        padding: 0 0 0 1rem;
        color: var(--bodyTextColor);
        font-size: 1rem;
        line-height: 1.5em;
        text-align: left;
    }

    #gallery-2297 .cs-button:before {
        display: block;
        position: absolute;
        top: 50%;
        left: -1.25rem;
        transform: translateY(-50%) rotate(45deg);
        opacity: 0;
        transition: opacity 0.3s, left 0.3s;
        background: var(--primary);
        width: 0.5rem;
        height: 0.5rem;
        pointer-events: none;
        content: "";
    }

    #gallery-2297 .cs-button:hover {
        cursor: pointer;
        color: var(--primary);
    }

    #gallery-2297 .cs-button:hover:before {
        left: -0.25rem;
        opacity: 1;
    }

    #gallery-2297 .cs-button.cs-active {
        color: var(--primary);
    }

    #gallery-2297 .cs-button.cs-active:before {
        left: -0.25rem;
        opacity: 1;
    }

    #gallery-2297 .cs-gallery-wrapper {
        position: relative;
        z-index: 1;
        width: 100%;
    }

    #gallery-2297 .cs-gallery {
        display: grid;
        position: relative;
        grid-template-columns: repeat(12, 1fr);
        gap: clamp(1rem, 1.5vw, 1.25rem);
        transform-origin: left top;
        transform-style: preserve-3d;
        perspective: 700px;
        transition: transform 0.7s, opacity 0.3s, visibility 0.5s, top 0.3s, left 0.3s;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    #gallery-2297 .cs-gallery.cs-hidden {
        position: absolute;
        top: 0;
        left: 0;
        transform: scaleY(0) scaleX(0);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }

    #gallery-2297 .cs-gallery.cs-hidden .cs-image {
        transform: translateY(2.1875rem) rotateX(90deg);
        opacity: 0;
    }

    #gallery-2297 .cs-image {
        display: block;
        position: relative;
        grid-column: span 6; /* 2 images per row on mobile (12/6 = 2) */
        transform: translateY(0rem) rotateX(0);
        opacity: 1;
        transition: opacity 0.6s, transform 0.6s;
        aspect-ratio: 7 / 5;
        overflow: hidden;
    }

    #gallery-2297 .cs-image:nth-of-type(1) {
        transition-delay: 0.1s;
    }

    #gallery-2297 .cs-image:nth-of-type(2) {
        transition-delay: 0.2s;
    }

    #gallery-2297 .cs-image:nth-of-type(3) {
        transition-delay: 0.3s;
    }

    #gallery-2297 .cs-picture {
        position: absolute;
        top: 0;
        left: 0;
        background-color: #000;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

    #gallery-2297 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        transition: transform 0.65s, opacity 0.3s;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

    #gallery-2297 .cs-info {
        display: flex;
        position: absolute;
        /* bottom: 0; */
        left: 0;
        flex-direction: column;
        align-items: flex-start;
        z-index: 10;
    }

    #gallery-2297 .cs-tag {
        background-color: var(--primary);
        padding: 0.5rem 1.25rem;
        color: var(--bodyTextColorWhite);
        font-weight: 700;
        font-size: clamp(0.5rem, 2vw, 1rem);
        text-transform: uppercase;
    }

    #gallery-2297 .cs-project {
        background-color: #fefaf6;
        padding: 0.5rem 1.25rem;
        color: var(--headerColor);
        font-size: clamp(0.5rem, 2vw, 1rem);
    }

    #gallery-2297 .cs-number {
        color: var(--secondary);
        font-weight: 700;
        font-size: var(--headerFontSize);
        line-height: 1.2em;
    }

    #gallery-2297 .cs-desc {
        color: var(--headerColor);
        font-weight: 700;
        font-size: 1.25rem;
        line-height: 1.2em;
    }
}

@media only screen and (min-width: 48rem) {
	#gallery-2297 .cs-container {
		gap: clamp(3rem, 6vw, 4rem);
	}
	
	#gallery-2297 .cs-content {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		gap: 1.5rem;
		text-align: left;
	}

	#gallery-2297 .cs-title {
		margin: 0;
	}

	#gallery-2297 .cs-button-group {
		/*flex-wrap: nowrap;*/
		margin: 0;
	}

	#gallery-2297 .cs-image {
		grid-column: span 3; /* 4 images per row on desktop (12/3 = 4) */
        aspect-ratio: 7 / 5;
	}

	#gallery-2297 .cs-stats {
		flex-direction: row;
	}

	#gallery-2297 .cs-stat {
		flex: 1;
	}
}