.slider-wrapper {
    margin: 1rem;
    position: relative;
    overflow: hidden;
    min-width: 0;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }
  
.slides-container {
    width: 90%;
    display: flex;
    scroll-behavior: smooth;
    list-style: none;
    margin: 0;
    padding: 0;
}
  
.slide-arrow {
    position: absolute;
    display: flex;
	justify-content: center;
    align-items: center;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 2rem;
	width: 2rem;
	padding: 0;
    background-color: white;
    border: none;
    font-size: 3rem;
    cursor: pointer;
    transition: opacity 100ms;
}
  
.slide-arrow:hover,
.slide-arrow:focus {
    opacity: 1;
}
  
#slide-arrow-prev {
    left: 0;
    background-color: #011965;
    border-radius: 2rem;
    color: #fff;
    font-size: 20px;
    z-index: 1000;
}
  
#slide-arrow-next {
    right: 0;
    background-color: #011965;
    border-radius: 2rem;
    color: #fff;
    font-size: 20px;
    z-index: 1000;
}
  
.slide {
    width: 100%;
    height: 100%;
    flex: 1 0 100%;
}
  
  