/* page styles */
.ax-hidden {
  visibility: hidden;
  position: absolute;
}

/* carousel styles */
.carousel {
  --carousel-height: 600px;
  --carousel-width: 1200px;
  --carousel-item-height: 320px;
  --carousel-item-width: 150px;

  width: 100%;
}

.carousel-container {
  align-items: center;
  display: flex;
  min-height: var(--carousel-height);
  margin: 0 auto;
  max-width: var(--carousel-width);
  position: relative;
}

.carousel-item {
  height: var(--carousel-item-height);
  opacity: 0;
  position: absolute;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
  width: var(--carousel-item-width);
  z-index: 0;
}

.carousel-item-1 {
  left: 15%;
  opacity: 0.9;
  display: block;
}

.carousel-item-2,
.carousel-item-4 {
  height: calc(var(--carousel-item-height) * 1.5);
  opacity: 1;
  width: calc(var(--carousel-item-width) * 1.5);
  z-index: 1;
}

.carousel-item-2 {
  left: 30%;
  display: block;
}

.carousel-item-3 {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 0, 0, 0.45), 0 0 110px rgba(0, 0, 0, 0.25), 0 0 100px rgba(0, 0, 0, 0.1);
  height: calc(var(--carousel-item-height) * 2);
  opacity: 1;
  left: 50%;
  width: calc(var(--carousel-item-width) * 2);
  z-index: 2;
  display: block;
  border-radius: 30px;
}

.carousel-item-4 {
  left: 70%;
  display: block;
}

.carousel-item-5 {
  left: 85%;
  opacity: 0.9;
  display: block;
}

.carousel-controls {
  display: inline-block;
  margin: 30px 0;
}
button.carousel-control.carousel-control-previous:before,
button.carousel-control.carousel-control-previous:after {
  display: none;
}
button.carousel-control.carousel-control-next:before,
button.carousel-control.carousel-control-next:after {
  display: none;
}
button.carousel-control.carousel-control-previous {
  background: #115A9C url(../images/arrow.webp) center center no-repeat;
  width: 60px;
  height: 60px;
  border-radius: 100px;
  background-size: 15px;
  transform: rotate(-180deg) translateX(-50%);
  position: absolute;
  bottom: 0;
  top: 100%;
  left: 50%;
  margin-left: -110px;
  margin-top: 40px;
  box-shadow: none;
  border: none;
}
button.carousel-control.carousel-control-next {
  background: #115A9C url(../images/arrow.webp) center center no-repeat;
  width: 60px;
  height: 60px;
  border-radius: 100px;
  background-size: 15px;
  transform: translateX(-50%);
  position: absolute;
  bottom: 0;
  top: 100%;
  right: 50%;
  margin-right: -110px;
  margin-top: 40px;
  opacity: 1;
  box-shadow: none;
  border: none;
}

/* carousel button styles */
.carousel-control {  
  background-color: transparent;
  border: 2px solid;
  border-radius: 4px;
  color: #aaa;
  cursor: pointer;
  height: 22px;
  margin: 0 20px;
  position: relative;
  transform: scale(1.5);
  transition: transform 0.5s ease-out;
  width: 22px;
}



@media only screen and (max-width: 767px) {
.carousel-controls {
    display: block !important;
}
button.carousel-control.carousel-control-previous {
    width: 45px;
    height: 45px;
    border-radius: 5px;
    background-size: 12px;
    margin-left: -80px;
    margin-top: 60px;
}
button.carousel-control.carousel-control-next {
    width: 45px;
    height: 45px;
    border-radius: 5px;
    background-size: 12px;
    margin-right: -80px;
    margin-top: 60px;
}
.carousel {
  --carousel-height: 450px;
  --carousel-width: 1200px;
  --carousel-item-height: 320px;
  --carousel-item-width: 150px;
  width: 100%;
}
.carousel-item-3 {
  height: calc(var(--carousel-item-height) * 1.7);
  width: calc(var(--carousel-item-width) * 1.7);
  box-shadow: 0 0 0px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 0, 0, 0.45), 0 0 70px rgba(0, 0, 0, 0.25), 0 0 70px rgba(0, 0, 0, 0.1);
}
}  
@media only screen and (max-width: 600px) {
  .carousel-item-3 {
    height: calc(var(--carousel-item-height) * 1.3);
    width: calc(var(--carousel-item-width) * 1.3);
}
.carousel-item-2, .carousel-item-4 {
  height: calc(var(--carousel-item-height) * 1.1);
  width: calc(var(--carousel-item-width) * 1.1);
}
button.carousel-control.carousel-control-previous {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-size: 12px;
  margin-left: -70px;
  margin-top: 40px;
}
button.carousel-control.carousel-control-next {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-size: 12px;
  margin-right: -70px;
  margin-top: 40px;
}
.carousel-item-3 {
  border-radius: 10px;
}
}  
@media only screen and (max-width: 480px) {
.carousel-item-3 {
    height: calc(var(--carousel-item-height) * 1.15);
    width: calc(var(--carousel-item-width) * 1.1);
}
.carousel-item-2, .carousel-item-4 {
  height: calc(var(--carousel-item-height) * 1.05);
  width: calc(var(--carousel-item-width) * 0.9);
}
.carousel {
  --carousel-height: 300px;
  --carousel-width: 1200px;
  --carousel-item-height: 250px;
  --carousel-item-width: 130px;
  width: 100%;
}
button.carousel-control.carousel-control-next {
  width: 35px;
  height: 35px;
  background-size: 9px;
  margin-right: -60px;
  margin-top: 30px;
}
button.carousel-control.carousel-control-previous {
  width: 35px;
  height: 35px;
  background-size: 9px;
  margin-left: -60px;
  margin-top: 30px;
}
.Prediction_Portal {
  padding: 0px 0 80px;
}
}  
@media only screen and (max-width: 400px) {
  .carousel {
    --carousel-height: 270px;
    --carousel-width: 1200px;
    --carousel-item-height: 230px;
    --carousel-item-width: 110px;
    width: 100%;
}
.carousel-item-3 {
  box-shadow: 0 0 0px rgba(0, 0, 0, 0.6), 0 0 10px rgba(0, 0, 0, 0.45), 0 0 30px rgba(0, 0, 0, 0.25), 0 0 30px rgba(0, 0, 0, 0.1);
}
}  