@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }
  to {
    -webkit-transform: scale(1.35, 1.35);
  }
}

@keyframes zoom {
  from {
    transform: scale(1, 1);
  }
  to {
    transform: scale(1.35, 1.35);
  }
}

/*.carousel-inner .item > img {*/
/*  -webkit-animation: zoom 45s;*/
/*  animation: zoom 45s;*/
/*}*/

.carousel-inner .item > img {
    -webkit-animation: zoom 45s;
    animation: zoom 45s;
    margin: 0 auto;
    width: 100%;
    height: 100%!important;
}

.item {
    height: 100%!important;
    object-fit: cover!important;
}

.carousel-inner {
    height: 100%!important;
}