.slideshow { width: 100%; position: relative; display: flex; justify-content: center; align-items: center; margin-bottom: 16px; .slides { display: flex; overflow: hidden; height: 300px; width: 100%; border-radius: 8px 8px 0px 0px; transition: transform 0.5s ease; padding-bottom: 16px; @media only screen and (max-width: 640px) { height: 200px; margin-top: 0px; border-radius: 0px; } } .img-wrapper { flex: 0 0 100%; width: 100%; height: 100%; display: none; transition: transform 0.5s ease; img { height: 100%; object-fit: cover; width: 100%; border-radius: 8px; @media only screen and (max-width: 640px) { border-radius: 0px; } } } .dots { display: flex; justify-content: center; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); z-index: 1; .dot { background: $color-2nd; height: 10px; width: 10px; border-radius: 50%; margin: 0 5px; cursor: pointer; &.active { background: $color-primary; } } } }