.main-banner__container {
    width: 100%;
    height: 500px;
    position: relative;
}

.main-banner {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.main-banner__inner {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 0;
  transition: transform 0.4s ease;
}

.main-banner__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  width: 100%;
}

.main-banner__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.main-banner__arrow {
    background-color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 800px;
    border: 1px solid #E6E6E6;
    box-shadow: 0px 1px 8px 0px #0000001F;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.main-banner__arrow svg {
    width: 16px;
    height: 16px;
}

.main-banner__arrow--prev {
    left: 15px;
} 

.main-banner__arrow--next {
    right: 15px;
} 