.carousel {position: relative; margin-bottom: 4rem; padding-bottom: 2rem;}
.carousel ul {overflow: auto; display: flex; flex-wrap: nowrap; scroll-snap-type: x mandatory; scroll-snap-points-y: repeat(100%); scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; margin: 0; padding: 0;}
.carousel ul::-webkit-scrollbar {display: none; /* Hide scrollbar for Chrome, Safari and Opera */} 
.carousel ul li {position: relative; width: 30rem; list-style: none; background: url() center center / cover no-repeat; scroll-snap-align: start;}
.carousel ol {position: absolute; bottom: 0; display: flex; justify-content: center; left: 50%; transform: translateX(-50%); z-index: 9; margin: 0;}
.carousel ol li {list-style: none; padding: 0 5px;}
.carousel ol li a {display: block; height: 10px; width: 10px; border: 2px solid #333685; background: transparent; border-radius: 100%;}
.carousel ol li.selected a {background: #333685;}
.carousel .prev, .carousel .next {
    display: none; 
    user-select:none; 
    cursor: pointer; 
    font-size: 50px; 
    color: white; 
    position: absolute; 
    left: 0; 
    padding: 15px 15px 30px; 
    top: 50%; 
    transform: translateY(-50%); 
    z-index: 9; 
    line-height: 0;
    pointer-events: none;
    opacity: 0;
}
.carousel .next {left: auto; right: 0;}