.gradient {
    background-image: linear-gradient(#07561b, #ffffff);
}

section {
    padding-top: 20px;
    padding-bottom: 20px;
}

.hero {
    text-align: center;
}

.section-text .u-sheet {
    margin: 0 auto;

}

.section-text .section-title {
    text-align: center;
    margin-bottom: 32px;
}

.columns {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.column.left,
.column.right {
    flex: 1 1 0;
    /* Remove any max-width or width here */
    min-width: 0;
    /* Prevent overflow in flexbox */
}

.section-text-centered {
    text-align: center;
    margin-left: 10%;
    margin-right: 10%;
}

.section-slideshow {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.slideshow-container {
    position: relative;
    margin: auto;
    overflow: hidden;
    height: 600px;
    /* Adjust as needed */
}

.mySlides {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: 1;
}

.mySlides.active {
    display: block;
    opacity: 1;
    z-index: 2;
}

.mySlides.slide-in-right {
    animation: slideInRight 1.5s forwards;
    z-index: 3;
}

.mySlides.slide-in-left {
    animation: slideInLeft 1.5s forwards;
    z-index: 3;
}

.mySlides.slide-out-left {
    animation: slideOutLeft 1.5s forwards;
    z-index: 2;
}

.mySlides.slide-out-right {
    animation: slideOutRight 1.5s forwards;
    z-index: 2;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 1;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 1;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(-100%);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 1;
    }
}

/* Optional: Style for prev/next buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background: rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
}

.images-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    /* Space between images */
    flex-wrap: wrap;
    /* Wrap to next line if needed */
}

.images-flex img {
    max-width: 200px;
    /* Adjust as needed */
}

img:not(.slideshow-container img, .logo-klein img, .images-flex img) {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

section img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}

.images-flex-lg {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    /* Space between images */
    flex-wrap: wrap;
    /* Wrap to next line if needed */
}

.images-flex-lg img {
    max-width: 49%;
    /* Adjust as needed */
}

.u-footer {
    width: 100vw;
    background: #222;
    /* or your desired color */
    padding: 0;
    margin: 0;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.u-footer .u-sheet {
    max-width: 1140px;
    /* or your site's max width */
    margin: 0 auto;
    background: none;
    /* ensure no background here */
}

.hero-svg-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.hero-svg-wrapper svg {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 800px) {
    .columns {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }

    .column.left,
    .column.right {
        min-width: 0;
        width: 100%;
    }

    .images-flex,
    .images-flex-lg {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .images-flex img,
    .images-flex-lg img {
        max-width: 100%;
    }

    .section-text-centered {
        margin-left: 0;
        margin-right: 0;
    }

    .slideshow-container {
        height: auto;
        min-height: 200px;
    }

    .hero-svg-wrapper {
        max-width: 75vw;
    }

    .hero-svg-wrapper svg {
        font-size: 8vw;
        /* Optional: scale text if needed */
    }
}