.ogenus-slider-wrapper {
    position: relative;
}
.ogenus-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;

    margin: 0 auto;
    max-width: 1320px;
    width: 100%;
    overflow: visible;
}

.ogenus-slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 20px 0;
    width: 100%;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-snap-align: start;

    scrollbar-width: none;
    -ms-overflow-style: none;
}
.ogenus-slider::-webkit-scrollbar {
    display: none;
}

.ogenus-slider__slide {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    width: 100%;
    position: relative;
    height: 450px;
	max-width: 420px;
	
    justify-content: flex-end;
    padding: 20px;
    flex-shrink: 0;
}
@media (max-width: 1200px) {
    .ogenus-slider__slide {
        max-width: 320px;
		height: 420px;
    }
	.ogenus-slider {
		padding: 0;
	}
}

.ogenus-slider__slide:after {
    /* content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(247, 249, 250, 0.74);
    transition: all 0.6s ease-in-out;
    z-index: 3; */
}

.ogenus-slider__slide.visible:after {
    opacity: 0;
}

.ogenus-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ogenus-slider__text {
    color: #F7F9FA;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    font-family: "Geist", Sans-serif;

}

.ogenus-slider__slide h3 {
    color: #F25F14;
    font-size: 24px;
    line-height: 1.2;
    margin: 0;
    position: relative;
    font-family: "Archivo", Sans-serif;

    z-index: 2;
}

.ogenus-card-slider .card img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.ogenus-slider-container {
    /* padding-right: 15%;  */
}

@media (max-width: 768px) {
    .ogenus-slider__slide {
        /* flex: 0 0 calc(50% - 10px);  */
    }
    .ogenus-slider-container {
        /* padding-right: 10%; */
    }
}

@media (max-width: 480px) {
    .ogenus-slider__slide {
        /* flex: 0 0 calc(100% - 20px); */
    }
    .ogenus-slider-container {
        /* padding-right: 0; */
    }
}


/* Progress bar */
.slider-progress-bar {
    position: relative;
    width: 100%;
    height: 10px;
    background: #F25F14;
    z-index: 4;
}