.carousel-body {
  height: 90vh;
}

.carousel {
  height: auto;
  width: 1200px;
  margin-top: 60px;
  margin-bottom: 60px;
  margin: auto;
  max-width: 1200px;
  overflow-x: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  top: 2rem;
  border-radius: 13px;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}

.carousel-inner {
  height: 100%;
  width: 300%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all ease .5s;
  transition: all ease .5s;
}

.carousel-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.carousel-item h1 {
  opacity: .5;
}

.carousel-controls .prev {
  display: inline-block;
  height: 32px;
  width: 32px;
  position: absolute;
  left: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(/Images/Icons/prev.svg);
  background-position: center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  cursor: pointer;
  opacity: .5;
}

.carousel-controls .next {
  display: inline-block;
  height: 32px;
  width: 32px;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(/Images/Icons/next.svg);
  background-position: center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  cursor: pointer;
  opacity: .5;
}

.prev:hover,
.next:hover {
  opacity: 1;
}

.carousel-indicators {
  position: absolute;
  bottom: 12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
}

.carousel-indicators span {
  display: inline-block;
  background-color: white;
  width: 30px;
  height: 4px;
  border-radius: 2px;
  opacity: .5;
  cursor: pointer;
  margin: 3px;
}

.carousel-indicators span.active {
  opacity: 1;
}

/*Media Query*/
@media screen and (max-width: 1200px) {
  .carousel {
    margin-left: -100px;
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  .carousel-body {
    height: 600px;
    margin-top: -150px;
  }
  .prev {
    margin-top: -200px;
  }
  .next {
    margin-top: -200px;
  }
  .carousel-indicators {
    display: none;
  }
}

@media screen and (max-width: 1100px) {
  .carousel {
    -webkit-transform: scale(0.45);
            transform: scale(0.45);
  }
}

@media screen and (max-width: 880px) {
  .carousel {
    margin-left: -200px;
  }
}

@media screen and (max-width: 750px) {
  .carousel {
    margin-left: -300px;
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
  }
  .carousel-body {
    margin-top: -250px;
  }
}

@media screen and (max-width: 580px) {
  .carousel {
    margin-left: -400px;
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
}
/*# sourceMappingURL=caroursel.css.map */