/*-- -------------------------- -->
<---          Banner            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #banner-1400 {
    padding: var(--sectionPadding);
    /* 190px - 268px */
    padding-top: clamp(11.875rem, 25vw, 16.75rem);
    padding-bottom: clamp(3.5rem, 10vw, 7.25rem);
    /* clips the line from causing overflow issues for going off screen */
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #banner-1400 .cs-container {
    text-align: center;
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    /* 8px - 12px */
    gap: clamp(0.5rem, 1vw, 0.75rem);
  }
  #banner-1400 .cs-int-title {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0;
    color: var(--bodyTextColorWhite);
    position: relative;
  }
  #banner-1400 .cs-breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #banner-1400 .cs-link {
    font-size: 1rem;
    line-height: 1.2em;
    text-decoration: none;
    color: var(--bodyTextColorWhite);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #banner-1400 .cs-link:last-of-type {
    /* remove the chevron on the last list item */
  }
  #banner-1400 .cs-link:last-of-type::after {
    display: none;
  }
  #banner-1400 .cs-link:after {
    /* chevron */
    content: "";
    width: 0.4375rem;
    height: 0.75rem;
    margin: 0 1rem;
    background: url("/assets/svgs/white-chev.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: block;
  }
  #banner-1400 .cs-link.cs-active {
    color: var(--primary);
  }
  #banner-1400 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #banner-1400 .cs-background:before {
    /* gradient overlay */
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.4;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #banner-1400 .cs-background:after {
    /* gradient overlay */
    content: "";
    width: 100%;
    height: 40%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 2;
  }
  #banner-1400 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #banner-1400 .cs-background:before {
    width: 50%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
  }
}
/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #gallery-2281 {
    padding: var(--sectionPadding);
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-color: #FAF8F4;
  }
  #gallery-2281:before {
    content: '';
    width: 100%;
    height: 22.5rem;
    margin-right: 3.4375rem;
    opacity: 0.05;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #gallery-2281 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
    z-index: 1;
  }
  #gallery-2281 .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  #gallery-2281 .cs-title {
    margin: 0;
  }
  #gallery-2281 .cs-button-group {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 1rem;
    /* 20px - 40px */
    column-gap: clamp(1.25rem, 3.4vw, 2.5rem);
  }
  #gallery-2281 .cs-button {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.5em;
    padding: 0;
    color: var(--bodyTextColor);
    background-color: transparent;
    border: none;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  #gallery-2281 .cs-button:before {
    content: '';
    width: 100%;
    height: 4px;
    background: var(--primary);
    opacity: 0;
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    transition: opacity 0.3s, bottom 0.3s, transform 0.3s;
  }
  #gallery-2281 .cs-button:hover {
    color: var(--primary);
    cursor: pointer;
  }
  #gallery-2281 .cs-button:hover:before {
    opacity: 1;
    bottom: -0.625rem;
  }
  #gallery-2281 .cs-button.cs-active {
    color: var(--primary);
  }
  #gallery-2281 .cs-button.cs-active:before {
    opacity: 1;
    bottom: -0.625rem;
  }
  #gallery-2281 .cs-gallery-wrapper {
    width: 100%;
    position: relative;
    z-index: 1;
  }
  #gallery-2281 .cs-gallery {
    width: 100%;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 1.5vw, 1.25rem);
    position: relative;
    perspective: 700px;
    transform-style: preserve-3d;
    transition: transform 0.7s, opacity 0.3s, visibility 0.5s, top 0.3s, left 0.3s;
    /* makes the transfrom scaling orgin the top left corner, dictates the direction by which the scale transforms animate towards */
    transform-origin: left top;
  }
  #gallery-2281 .cs-gallery.cs-hidden {
    /* by using visibility:hidden instead of display:none, we can see the animations from the opacity and transforms, display:none won't render animations. */
    visibility: hidden;
    /* prevents the mouse from interacting with it */
    pointer-events: none;
    /* hidden galleries have a 0 opacity, and we animate the opacity to 1 when they become active */
    opacity: 0;
    /* this top and left value help control the animation, by setting it to position absolute and left 0, the gallery won't fly off screen to the left, it will stop its position to be at the left edge of the .cs-container (left: 0). Same for the top:0 value, the gallery won't go past that posiiton when it animates */
    top: 0;
    left: 0;
    position: absolute;
    /* prevents the hidden galleries from overflowing the section, and makes a nice animations to transition to and from */
    transform: scaleY(0) scaleX(0);
  }
  #gallery-2281 .cs-gallery.cs-hidden .cs-image {
    /* when gallery is hidden, add these styles to the cs-image to animate from when cs-hidden is removed from the .cs-gallery */
    transform: translateY(2.1875rem) rotateX(90deg);
    opacity: 0;
  }
  #gallery-2281 .cs-image {
    /* 300px - 420px */
    min-height: clamp(18.75rem, 40vw, 26.25rem);
    /* clips the image corners */
    overflow: hidden;
    display: block;
    grid-column: span 12;
    position: relative;
    /* when .cs-hidden is removed from the .cs-gallery, reset these values and animate between their hidden styles */
    transform: translateY(0rem) rotateX(0);
    opacity: 1;
    transition: opacity 0.6s, transform 0.6s;
  }
  #gallery-2281 .cs-image:nth-of-type(1) {
    /* the transition delays change at desktop */
    /* these delays stagger the reveal of each image so they all go one after the other and not all at once */
    transition-delay: 0.1s;
  }
  #gallery-2281 .cs-image:nth-of-type(2) {
    transition-delay: 0.2s;
  }
  #gallery-2281 .cs-image:nth-of-type(3) {
    transition-delay: 0.3s;
  }
  #gallery-2281 .cs-image:nth-of-type(4) {
    transition-delay: 0.4s;
  }
  #gallery-2281 .cs-image:nth-of-type(5) {
    transition-delay: 0.5s;
  }
  #gallery-2281 .cs-image:nth-of-type(6) {
    transition-delay: 0.6s;
  }
  #gallery-2281 .cs-image:nth-of-type(7) {
    transition-delay: 0.7s;
  }
  #gallery-2281 .cs-image:nth-of-type(8) {
    transition-delay: 0.8s;
  }
  #gallery-2281 .cs-picture {
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* makes it act like a background image */
    object-fit: cover;
  }
  #gallery-2281 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* makes it act like a background image */
    object-fit: cover;
    transition: transform 0.65s, opacity 0.3s;
  }
  #gallery-2281 .cs-info {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    bottom: clamp(1rem, 2vw, 1.5rem);
    left: 0;
    z-index: 10;
  }
  #gallery-2281 .cs-tag {
    /* 13px - 16px */
    font-size: clamp(0.8125rem, 2vw, 1rem);
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    color: var(--bodyTextColorWhite);
    background-color: var(--primary);
  }
  #gallery-2281 .cs-project {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.75rem 1rem;
    color: var(--headerColor);
    background-color: #fff;
  }
}
/* Inbetween - 600px */
@media only screen and (min-width: 37.5rem) {
  #gallery-2281 .cs-image {
    grid-column: span 6;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #gallery-2281:before {
    width: 100vw;
    /* 395px - 445px */
    height: clamp(24.6875rem, 30vw, 30.625rem);
    left: auto;
    right: 50%;
  }
  #gallery-2281 .cs-content {
    text-align: left;
    align-items: flex-start;
  }
  #gallery-2281 .cs-button-group {
    border-bottom: 1px solid #E7E7E8;
  }
  #gallery-2281 .cs-button {
    padding-bottom: 1.25rem;
  }
  #gallery-2281 .cs-button:hover:before {
    transform: scale(1);
    bottom: -1px;
  }
  #gallery-2281 .cs-button.cs-active:before {
    bottom: -1px;
    transform: scale(1);
  }
  #gallery-2281 .cs-button:before {
    transform: scale(0);
    transition: transform 0.3s;
  }
  #gallery-2281 .cs-image {
    grid-column: span 3;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #gallery-2281 .cs-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 4rem;
  }
  #gallery-2281 .cs-image:hover .cs-tag,
  #gallery-2281 .cs-image:hover .cs-project {
    transform: translateX(0);
    opacity: 1;
  }
  #gallery-2281 .cs-image:hover .cs-picture img {
    opacity: 0.2;
    transform: scale(1.3);
  }
  #gallery-2281 .cs-tag {
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out, opacity 0.3s;
  }
  #gallery-2281 .cs-project {
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.4s ease-out, opacity 0.3s;
    transition-delay: 0.1s;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #gallery-2281 {
    background-color: var(--medium);
  }
  body.dark-mode #gallery-2281 .cs-title,
  body.dark-mode #gallery-2281 .cs-button {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #gallery-2281 .cs-button-group {
    border-color: rgba(255, 255, 255, 0.2);
  }
  body.dark-mode #gallery-2281 .cs-button.cs-active {
    color: var(--primary);
  }
}
/* 

/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-447 {
    padding: var(--sectionPadding);
  }
  #services-447 .cs-container {
    width: 100%;
    /* changes to 1440px at tablet */
    max-width: 34.375em;
    margin: auto;
  }
  #services-447 .cs-container {
    width: 100%;
    /* changes to 1440px at tablet */
    max-width: 34.375em;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #services-447 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* centers content horizontally, set to flex-start to left align */
    align-items: start;
  }
  #services-447 .cs-text {
    max-width: 90ch;
  }
  #services-447 .cs-card-group {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }
  #services-447 .cs-title {
    max-width: 28ch;
  }
  #services-447 .cs-item {
    list-style: none;
    width: 100%;
    /* changes at desktop */
    padding-top: 9rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 30rem;
  }
  #services-447 .cs-picture {
    width: 100%;
    /* changes at desktop */
    height: 15.625rem;
    background-color: var(--primary);
    /* clips the corners of the image */
    overflow: hidden;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #services-447 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* makes it behave like a background image */
    object-fit: cover;
    /* positions top of image to the top of the container */
    object-position: top;
    transition: transform 0.9s, opacity 0.5s;
  }
  #services-447 .cs-box {
    text-align: center;
    width: 88%;
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    border: 1px solid #dad9e3;
    background-color: #F3F3F3;
    box-shadow: 0px 24px 54px rgba(87, 107, 147, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  #services-447 .cs-box:hover {
    background-color: #a76438;
  }
  #services-447 .cs-box:hover .cs-link {
    color: #fff;
  }
  #services-447 .cs-box:hover .cs-item-text {
    color: #fff;
  }
  #services-447 .cs-box:hover .cs-h3 {
    color: #fff;
  }
  #services-447 .cs-button-solid {
    margin-top: 1rem;
  }
  #services-447 .cs-wrapper {
    /* 80px - 120px */
    width: clamp(5rem, 9.2vw, 7.5rem);
    height: clamp(5rem, 9.2vw, 7.5rem);
    /* 20px - 24px */
    margin: 0 0 clamp(1.25rem, 1.5vw, 1.5rem);
    /* we use the same clamp value for height & width, but multiple by -.5 so it will be a negative value, and be half of the height.  Negative margins pull things toward the element so they overlap them, in this case we want the .cs-wrapper to overlap .cs-box by half its height, so we use the same clamp for height and half it for the margin top value */
    margin-top: calc(clamp(5rem, 9.2vw, 7.5rem)*-.5);
    border-radius: 50%;
    border: 4px solid var(--primary);
    background-color: #fff;
    /* prevents border from affecting height and width */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
  }
  #services-447 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 1.9vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--headerColor);
  }
  #services-447 .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    font-weight: 400;
    /* 20px - 24px */
    margin: 0 0 clamp(1.25rem, 1.5vw, 1.5rem);
    color: var(--bodyTextColor);
  }
  #services-447 .cs-link {
    /* 16px - 20px */
    line-height: 1.5em;
    font-weight: 700;
    text-decoration: none;
    margin: 0;
    color: var(--primary);
    display: inline-block;
    position: relative;
  }
  #services-447 .cs-link:hover:before {
    width: 100%;
  }
  #services-447 .cs-link:before {
    /* animated underline */
    content: "";
    width: 0%;
    height: 3px;
    background: currentColor;
    opacity: 1;
    position: absolute;
    display: block;
    bottom: -0.125rem;
    left: 0;
    transition: width 0.3s;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-447 .cs-container {
    max-width: 90rem;
  }
  #services-447 .cs-card-group {
    flex-wrap: wrap;
    flex-direction: row;
    /* 16px - 20px */
    column-gap: clamp(1rem, 1.5vw, 1.25rem);
    row-gap: 3.75rem;
  }
  #services-447 .cs-item {
    width: 47%;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #services-447 .cs-card-group {
    flex-wrap: nowrap;
  }
  #services-447 .cs-item {
    width: 100%;
    /* 144px - 274px */
    padding-top: clamp(9rem, 17.5vw, 17.125rem);
  }
  #services-447 .cs-picture {
    /* 224px - 428px */
    height: clamp(14rem, 28vw, 26.75rem);
  }
}
/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #gallery-2281 {
    padding: var(--sectionPadding);
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #gallery-2281:before {
    content: '';
    width: 100%;
    height: 22.5rem;
    margin-right: 3.4375rem;
    background: var(--primary);
    opacity: 0.05;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #gallery-2281 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
    z-index: 1;
  }
  #gallery-2281 .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  #gallery-2281 .cs-title {
    margin: 0;
  }
  #gallery-2281 .cs-button-group {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 1rem;
    /* 20px - 40px */
    column-gap: clamp(1.25rem, 3.4vw, 2.5rem);
  }
  #gallery-2281 .cs-button {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.5em;
    padding: 0;
    color: var(--bodyTextColor);
    background-color: transparent;
    border: none;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  #gallery-2281 .cs-button:before {
    content: '';
    width: 100%;
    height: 4px;
    background: var(--primary);
    opacity: 0;
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    transition: opacity 0.3s, bottom 0.3s, transform 0.3s;
  }
  #gallery-2281 .cs-button:hover {
    color: var(--primary);
    cursor: pointer;
  }
  #gallery-2281 .cs-button:hover:before {
    opacity: 1;
    bottom: -0.625rem;
  }
  #gallery-2281 .cs-button.cs-active {
    color: var(--primary);
  }
  #gallery-2281 .cs-button.cs-active:before {
    opacity: 1;
    bottom: -0.625rem;
  }
  #gallery-2281 .cs-gallery-wrapper {
    width: 100%;
    position: relative;
    z-index: 1;
  }
  #gallery-2281 .cs-gallery {
    width: 100%;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 1.5vw, 1.25rem);
    position: relative;
    perspective: 700px;
    transform-style: preserve-3d;
    transition: transform 0.7s, opacity 0.3s, visibility 0.5s, top 0.3s, left 0.3s;
    /* makes the transfrom scaling orgin the top left corner, dictates the direction by which the scale transforms animate towards */
    transform-origin: left top;
  }
  #gallery-2281 .cs-gallery.cs-hidden {
    /* by using visibility:hidden instead of display:none, we can see the animations from the opacity and transforms, display:none won't render animations. */
    visibility: hidden;
    /* prevents the mouse from interacting with it */
    pointer-events: none;
    /* hidden galleries have a 0 opacity, and we animate the opacity to 1 when they become active */
    opacity: 0;
    /* this top and left value help control the animation, by setting it to position absolute and left 0, the gallery won't fly off screen to the left, it will stop its position to be at the left edge of the .cs-container (left: 0). Same for the top:0 value, the gallery won't go past that posiiton when it animates */
    top: 0;
    left: 0;
    position: absolute;
    /* prevents the hidden galleries from overflowing the section, and makes a nice animations to transition to and from */
    transform: scaleY(0) scaleX(0);
  }
  #gallery-2281 .cs-gallery.cs-hidden .cs-image {
    /* when gallery is hidden, add these styles to the cs-image to animate from when cs-hidden is removed from the .cs-gallery */
    transform: translateY(2.1875rem) rotateX(90deg);
    opacity: 0;
  }
  #gallery-2281 .cs-image {
    /* 300px - 420px */
    min-height: clamp(18.75rem, 40vw, 26.25rem);
    /* clips the image corners */
    overflow: hidden;
    display: block;
    grid-column: span 12;
    position: relative;
    /* when .cs-hidden is removed from the .cs-gallery, reset these values and animate between their hidden styles */
    transform: translateY(0rem) rotateX(0);
    opacity: 1;
    transition: opacity 0.6s, transform 0.6s;
  }
  #gallery-2281 .cs-image:nth-of-type(1) {
    /* the transition delays change at desktop */
    /* these delays stagger the reveal of each image so they all go one after the other and not all at once */
    transition-delay: 0.1s;
  }
  #gallery-2281 .cs-image:nth-of-type(2) {
    transition-delay: 0.2s;
  }
  #gallery-2281 .cs-image:nth-of-type(3) {
    transition-delay: 0.3s;
  }
  #gallery-2281 .cs-image:nth-of-type(4) {
    transition-delay: 0.4s;
  }
  #gallery-2281 .cs-image:nth-of-type(5) {
    transition-delay: 0.5s;
  }
  #gallery-2281 .cs-image:nth-of-type(6) {
    transition-delay: 0.6s;
  }
  #gallery-2281 .cs-image:nth-of-type(7) {
    transition-delay: 0.7s;
  }
  #gallery-2281 .cs-image:nth-of-type(8) {
    transition-delay: 0.8s;
  }
  #gallery-2281 .cs-picture {
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* makes it act like a background image */
    object-fit: cover;
  }
  #gallery-2281 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* makes it act like a background image */
    object-fit: cover;
    transition: transform 0.65s, opacity 0.3s;
  }
  #gallery-2281 .cs-info {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    bottom: clamp(1rem, 2vw, 1.5rem);
    left: 0;
    z-index: 10;
  }
  #gallery-2281 .cs-tag {
    /* 13px - 16px */
    font-size: clamp(0.8125rem, 2vw, 1rem);
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    color: var(--bodyTextColorWhite);
    background-color: var(--primary);
  }
  #gallery-2281 .cs-project {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.75rem 1rem;
    color: var(--headerColor);
    background-color: #fff;
  }
}
/* Inbetween - 600px */
@media only screen and (min-width: 37.5rem) {
  #gallery-2281 .cs-image {
    grid-column: span 6;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #gallery-2281:before {
    width: 100vw;
    /* 395px - 445px */
    height: clamp(24.6875rem, 30vw, 30.625rem);
    left: auto;
    right: 50%;
  }
  #gallery-2281 .cs-content {
    text-align: left;
    align-items: flex-start;
  }
  #gallery-2281 .cs-button-group {
    border-bottom: 1px solid #E7E7E8;
  }
  #gallery-2281 .cs-button {
    padding-bottom: 1.25rem;
  }
  #gallery-2281 .cs-button:hover:before {
    transform: scale(1);
    bottom: -1px;
  }
  #gallery-2281 .cs-button.cs-active:before {
    bottom: -1px;
    transform: scale(1);
  }
  #gallery-2281 .cs-button:before {
    transform: scale(0);
    transition: transform 0.3s;
  }
  #gallery-2281 .cs-image {
    grid-column: span 4;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #gallery-2281 .cs-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 4rem;
  }
  #gallery-2281 .cs-image:hover .cs-tag,
  #gallery-2281 .cs-image:hover .cs-project {
    transform: translateX(0);
    opacity: 1;
  }
  #gallery-2281 .cs-image:hover .cs-picture img {
    opacity: 0.2;
    transform: scale(1.3);
  }
  #gallery-2281 .cs-tag {
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out, opacity 0.3s;
  }
  #gallery-2281 .cs-project {
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.4s ease-out, opacity 0.3s;
    transition-delay: 0.1s;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #gallery-2281 .cs-title,
  body.dark-mode #gallery-2281 .cs-button {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #gallery-2281 .cs-button-group {
    border-color: rgba(255, 255, 255, 0.2);
  }
  body.dark-mode #gallery-2281 .cs-button.cs-active {
    color: var(--primary);
  }
}
