.slideshow-wrapper {
  width: 100%;
  background: #01193d url('../logo/cooper-tile.png') repeat center top;
  display: flex;
  justify-content: center;
  min-width: 1440px;
  padding-top: 144px;
}

@media (max-width: 719px) {
  .slideshow-wrapper {
    display: none !important;
  }
}

.slideshow-container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: 370px;
  overflow: hidden;
  min-width: 1440px;
  z-index: 2;
  background-color: #01193d;
}

.image-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  inset: 0;
  transition: opacity 1s ease-in-out;
}

.image-wrapper.active {
  opacity: 1;
  z-index: 2;
}

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

.half {
  position: absolute;
  top: 0;
  height: 100%;
  cursor: pointer;
  z-index: 3;
}

.half.left {
  width: 42%;
  left: 0;
}

.half.right {
  left: 42%;
  width: 58%;
}

.nav-arrow {
  position: absolute;
  top: 0;
  height: 100%;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  background: rgba(1, 25, 61, 0.5);
}

.nav-arrow:hover {
  opacity: 1;
  background: rgba(1, 25, 61, 0.9);
}

.nav-arrow.left { left: 0; }
.nav-arrow.right { right: 0; }