:root {
  --height: 90vmin;
  --width: 1200px;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.hidden {
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  opacity: 0;
  pointer-events: none;
}

.carousel {
  max-width: var(--width);
  height: var(--height);
  position: relative;
  margin: auto;
}

.carousel .btn {
  position: absolute;
  height: calc(100% - 20%);
  width: calc(100% - 90%);
  margin: 35px 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  overflow: hidden;
}

.carousel .btn:before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.carousel .btn i {
  font-size: 1.6rem;
  color: #000;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  opacity: 0;
}

.carousel .btn-back {
  top: 0;
  left: 0px;
}

.carousel .btn-back:before {
  border-radius: 100% 0 0 100%;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}

.carousel .btn-back .fa-arrow-left {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}

.carousel .btn-next {
  top: 0;
  right: 0px;
}

.carousel .btn-next:before {
  border-radius: 0 100% 100% 0;
  -webkit-transform: translate(-100px);
          transform: translate(-100px);
}

.carousel .btn-next .fa-arrow-right {
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
}

.carousel .btn .right-indicator,
.carousel .btn .left-indicator {
  opacity: 1;
  color: rgba(255, 255, 255, 0.9);
}

.carousel .btn .right-indicator {
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}

.carousel .btn .left-indicator {
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
}

.carousel .btn:hover:before {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.6);
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.carousel .btn:hover .fa-arrow-left,
.carousel .btn:hover .fa-arrow-right {
  opacity: 1;
}

.carousel .btn:hover .fa-arrow-left {
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}

.carousel .btn:hover .fa-arrow-right {
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}

.carousel .btn:hover .right-indicator {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  opacity: 0;
}

.carousel .btn:hover .left-indicator {
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
}

.carousel .viewbox {
  width: calc(100% - 20%);
  height: calc(100% - 10%);
  position: relative;
  margin: 25px auto;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2), 2px 5px 10px rgba(0, 0, 0, 0.1), -2px 8px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2), 2px 5px 10px rgba(0, 0, 0, 0.1), -2px 8px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
}

.carousel .viewbox .track {
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.carousel .viewbox .track .slide {
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transform: scale(1.09);
          transform: scale(1.09);
}

.carousel .viewbox .track .slide .images {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.carousel .nav-indicator {
  position: absolute;
  bottom: 3vh;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.carousel .nav-indicator .dot {
  margin: 0 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.carousel .nav-indicator .dot.active {
  background: rgba(0, 0, 0, 0.5);
}

a {
  margin: 5px 5px;
  color: #fff;
  font-size: 2rem;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}

a:hover {
  color: #222;
}

@media screen and (max-width: 767px) {
  .carousel .btn {
    height: calc(100% - 30%);
  }
}
/*# sourceMappingURL=carousel.css.map */