* {
  box-sizing: border-box;
}

video {
  display: block;
  height: auto;
  margin: auto;
  position: relative;
  width: 100%;
}
.video-wrap {
  margin: 0 auto;
  position: relative;
  max-width: 70%;
}
.video-wrap:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Slideshow container */

@keyframes display {
  0% {
    transform: translateX(200px);
    opacity: 0;
  }
  10% {
    transform: translateX(0);
    opacity: 1;
  }
  20% {
    transform: translateX(0);
    opacity: 1;
  }
  30% {
    transform: translateX(-200px);
    opacity: 0;
  }
  100% {
    transform: translateX(-200px);
    opacity: 0;
  }
}
/* .gallery-img-cont {
  object-fit: cover;
  width: 100%;
  margin-left: 18%;
}
.gallery-img-cont > img {
  max-width: 60%;

  box-shadow: var(--box-shadow);
} */
/* .pic-ctn {
  position: relative;
  width: 100vw;
  height: 300px;
}

.pic-ctn > img {
  position: absolute;
  top: 0;
  left: calc(50% - 100px);
  opacity: 0;
  animation: display 10s infinite;
  object-fit: cover;
}

img:nth-child(2) {
  animation-delay: 2s;
}
img:nth-child(3) {
  animation-delay: 4s;
}
img:nth-child(4) {
  animation-delay: 6s;
} */

.gallery-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-box {
  height: 45vh;
  width: 80vh;
  background: transparent;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  border: none;
}

.main-navigation {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  display: flex;
  justify-content: space-between;
}

.navigation-arrows {
  background: none;
  border: none;
  padding: 0px 10px;
  width: 100%;
  color: #fff;
}

.navigation-arrows:hover {
  cursor: pointer;
  color: #c18c02;
}

#left-button {
  left: 20%;
  text-align: start;
}

#right-button {
  right: 20%;
  text-align: end;
}

article {
  height: inherit;
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: cover;
  margin: 0 auto;
}
article img {
  max-width: 100%;
  max-height: 100%;
}

#navigation-dots {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: grey;

  display: flex;
  justify-content: center;
  padding-bottom: 10px;
  z-index: 1;
}

#active-dot {
  color: white;
  opacity: 100%;
}

.dot {
  margin: 0px 5px;
  opacity: 70%;
}

.dot:hover {
  cursor: pointer;
  color: white;
}
