/*-- -------------------------- -->
<---        Content Page        -->
<--- -------------------------- -*/

@media only screen and (min-width: 0rem) {
    #content-page-848 {
        padding: var(--sectionPadding);
        background-color: #fff;
        /* clips the wave background from causing overflow issues when it goes off screen */
        overflow: hidden;
        position: relative;
        z-index: 1;
    }
    #content-page-848 .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;
    }
    #content-page-848 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 39.375rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }
    #content-page-848 .cs-title {
        font-size: var(--headerFontSize);
        font-weight: 700;
        line-height: 1.2em;
        text-align: inherit;
        width: 100%;
        max-width: 100%;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
        position: relative;
    }
    #content-page-848 h2,
    #content-page-848 h3,
    #content-page-848 h4,
    #content-page-848 h5,
    #content-page-848 h6 {
        font-weight: 700;
        text-align: inherit;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
    }
    #content-page-848 h2 {
        font-size: 2rem;
        margin-top: 2rem;
    }
    #content-page-848 h3 {
        font-size: 1.5rem;
        color: var(--primary);
    }
    #content-page-848 h4,
    #content-page-848 h5,
    #content-page-848 h6 {
        font-size: 1.25rem;
    }
    #content-page-848 .cs-button-solid {
        margin-bottom: 2rem;
    }
    #content-page-848 .cs-no-margin {
        margin: 0;
    }
    #content-page-848 .cs-color {
        color: var(--primary);
    }
    #content-page-848 p {
        font-size: var(--bodyFontSize);
        line-height: 1.5em;
        text-align: inherit;
        width: 100%;
        margin: 0 0 1rem 0;
        color: var(--bodyTextColor);
    }
    #content-page-848 p:last-of-type {
        margin-bottom: 2rem;
    }
    #content-page-848 p a {
        font-size: inherit;
        line-height: inherit;
        text-decoration: underline;
        color: var(--primary);
    }
    #content-page-848 ol,
    #content-page-848 ul {
        padding-left: 1.5rem;
        margin: 0 0 2rem 0;
        color: var(--bodyTextColor);
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    #content-page-848 ul li {
        list-style: none;
        color: inherit;
        position: relative;
    }
    #content-page-848 ul li:before {
        /* custom list bullet */
        content: "";
        width: 3px;
        height: 3px;
        background: currentColor;
        opacity: 1;
        border-radius: 50%;
        position: absolute;
        display: block;
        top: 0.625rem;
        left: -0.75rem;
    }
    #content-page-848 img {
        width: 100%;
        height: auto;
        display: block;
    }
    #content-page-848 .cs-image-group {
        width: 50%;
        max-width: 33.875rem;
        display: none;
        position: relative;
        flex-direction: column;
        gap: 1.25rem;
    }
    #content-page-848 .cs-picture {
        width: 100%;
        /* 300px - 520px */
        height: clamp(18.75rem, 40vw, 25rem);
        /* 125px - 200px */
        /* prevents border from affecting height and width */
        box-sizing: border-box;
        /* clips img tag corners */
        overflow: hidden;
        display: block;
        position: relative;
    }
    #content-page-848 .cs-picture img {
        width: 100%;
        height: 100%;
        /* makes it act like a background image */
        object-fit: cover;
    }

    /* Table Styles */
    .process-table {
        width: 100%;
        border-collapse: collapse;
        margin: 2rem 0;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .process-table th,
    .process-table td {
        padding: 1rem;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }

    .process-table th {
        background: var(--primary);
        color: white;
        font-weight: 700;
    }

    .process-table tr:hover {
        background: #f8f9fa;
    }

    .process-table td:first-child {
        font-weight: 600;
        color: var(--primary);
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #content-page-848 .cs-container {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
    #content-page-848 .cs-content {
        flex: none;
        width: 60%;
        /* sends it to the left in the 2nd position */
        order: 2;
    }
    #content-page-848 .cs-image-group {
        display: flex;
    }
}                         

  /*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #gallery-1446 {
        padding: var(--sectionPadding);
    }
    
    #gallery-1446 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(2.5rem, 4.5vw, 4rem);
    }
    
    #gallery-1446 .cs-content {
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    #gallery-1446 .cs-topper {
        font-size: 1rem;
        color: var(--primary);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 0.5rem;
    }
    
    #gallery-1446 .cs-title {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        color: var(--headerColor);
        margin: 0;
        max-width: 72rem;
        margin: 0 0 0.5rem 0;
    }
    
    #gallery-1446 .swiper {
        width: 100%;
    }
    
    #gallery-1446 .swiper-wrapper {
        align-items: stretch;
    }
    
    #gallery-1446 .swiper-slide {
        height: auto;
        display: flex;
    }
    
    #gallery-1446 .cs-image {
        width: 100%;
        height: 100%;
        min-height: clamp(16.25rem, 60vw, 25rem);
        border-radius: 1rem;
        overflow: hidden;
        display: block;
        position: relative;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    #gallery-1446 .cs-image:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    #gallery-1446 .cs-image img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    #gallery-1446 .cs-image:hover img {
        transform: scale(1.05);
    }
    
    /* Navigation Buttons Container */
    #gallery-1446 .navigation-buttons {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        z-index: 10;
    }
    
    /* Navigation Buttons */
    #gallery-1446 .swiper-button-next,
    #gallery-1446 .swiper-button-prev {
        width: 3rem;
        height: 3rem;
        margin-top: 0;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: static;
    }
    
    #gallery-1446 .swiper-button-next:after,
    #gallery-1446 .swiper-button-prev:after {
        font-size: 1rem;
        font-weight: 700;
        color: var(--primary);
    }
    
    #gallery-1446 .swiper-button-next:hover,
    #gallery-1446 .swiper-button-prev:hover {
        background: var(--primary);
        transform: scale(1.1);
    }
    
    #gallery-1446 .swiper-button-next:hover:after,
    #gallery-1446 .swiper-button-prev:hover:after {
        color: #fff;
    }
    
    #gallery-1446 .swiper-button-disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
    }
    
    /* Tablet - 768px */
    @media only screen and (min-width: 48rem) {
    #gallery-1446 .swiper-slide {
        width: auto;
    }
    }
    
    /* Desktop - 1024px */
    @media only screen and (min-width: 64rem) {
    #gallery-1446 .cs-image {
        min-height: clamp(20rem, 30vw, 28rem);
    }
    }
