section {
    padding: 0 20px 0 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.columns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 80px 80px 20px 80px;
}

.column {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.column h2 {
    font-size: 48px;
    /* color: rgb(0, 95, 133); */
    color: #080808;
}

.description {
    text-align: center;
    font-size: 1.2em;
    line-height: 1.5;
    padding-left: 100px;
    padding-right: 100px;

}

.slider-container {
    position: relative;
    width: 100%; /* Full width of the column */
    max-height: 600px;
    overflow: hidden;
}

.slider {
    display: flex;
    animation: slide 9s infinite;
    width: 100%; /* Ensures the slider fills the container */
}

.slider img {
    width: 100%;
    flex-shrink: 0;
    height: auto; /* Ensures responsive height */
}

.gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 70%, white),
                linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, white);
    pointer-events: none;
}

@keyframes slide {
    0%, 20% {
        transform: translateX(0); /* Slide 1 */
    }
    21%, 40% {
        transform: translateX(-100%); /* Slide 2 */
    }
    41%, 60% {
        transform: translateX(-200%); /* Slide 3 */
    }
    61%, 80% {
        transform: translateX(-300%); /* Slide 4 */
    }
    81%, 100% {
        transform: translateX(-400%); /* Slide 5 */
    }
}



@media screen and (max-width: 1440px) {
    .column h2 {
        font-size: 38px;
    }
    .description {
        padding: 0px 40px;
    
    }
}

@media screen and (max-width: 1240px) {
    .columns {
        padding: 80px 20px 20px 20px;
    }
}

@media screen and (max-width: 940px) {
    .columns {
        flex-direction: column;
        padding: 80px 60px 20px 60px;
    }
    .column {
        padding: 20px 0px;
    }
}

@media screen and (max-width: 768px) {
    .columns {
        flex-direction: column;
        padding: 70px 20px 20px 20px;
    }
    .description {
        padding-left: 0px;
        padding-right: 0px;
    
    }
}

@media screen and (max-width: 390px) {
    .columns {
        padding: 20px;
    }
    .column h2 {
        font-size: 38px;
    }
    .description {
        padding-left: 10px;
        padding-right: 10px;
    
    }
}