*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  display: grid;
  place-items: center;
}

.main-container {
  height: 75vh;
  width: 70%;
  position: relative;
}

.wrapper {
  max-width: 100%;
  height: 100%;
  display: flex;
  overflow: scroll;
  position: relative;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.wrapper::-webkit-scrollbar {
  /* Hide scrollbar for Chrome, Safari and Opera */
  display: none;
}

.img-container {
  height: 100%;
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ctr {
  --ctr-wid: 90%;
  --transition: .2s all linear;
  --position: 0%;
  z-index: 2000;
  text-decoration: none;
  position: absolute;
  top: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  font-size: 2rem;
  isolation: isolate;
  cursor: pointer;
}
.ctr::after {
  transition: var(--transition);
  opacity: 0.5;
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.338);
  z-index: -100;
}
.ctr i {
  color: rgba(233, 233, 233, 0.819);
  opacity: 0;
  transition: var(--transition);
}
.ctr:hover i {
  opacity: 1;
}

.ctr-right {
  right: 0;
  left: var(--ctr-wid);
}
.ctr-right::after {
  inset: 0 0 0 100%;
}
.ctr-right:hover::after {
  left: var(--position);
  opacity: 1;
}

.ctr-left {
  left: 0;
  right: var(--ctr-wid);
}
.ctr-left::after {
  inset: 0 100% 0 0;
}
.ctr-left:hover::after {
  right: var(--position);
  opacity: 1;
}

.btn-container {
  position: absolute;
  inset: 90% 0 0 0;
  background: linear-gradient(to bottom, transparent 15%, rgba(0, 0, 0, 0.694));
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.btn-container a {
  --wid: 3px;
  aspect-ratio: 1/1;
  width: 10px;
  border-radius: 50%;
  background-color: rgba(236, 236, 236, 0.348);
  transition: all 0.2s linear;
  cursor: pointer;
}

.active--btn {
  transform: translateY(-5px);
  background-color: white !important;
}/*# sourceMappingURL=style.css.map */