@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1.5, 1.5);
  }
  to {
    -webkit-transform: scale(1, 1);
  }
}

@keyframes zoom {
  from {
    transform: scale(1.5, 1.5);
  }
  to {
    transform: scale(1, 1);
  }
}

.carousel-item  img {
  -webkit-animation: zoom 20s;
  animation: zoom 5s;
}
.carousel-inner
{
	       box-shadow: 0px 19px 26px -13px rgba(134, 134, 134, 0.79);
}
.cont{
 position: absolute;
    top: 44%;
    left: 15%;

}
.cont h1{
  font-family: 'Muli', sans-serif;
    font-size: 55px;
    line-height: 70px;
    font-weight: 900;
    color: rgb(35, 35, 35);
    letter-spacing: 0px;
    transition: none 0s ease 0s;
    text-align: inherit;
    border-width: 0px;
    margin: 0px;
    padding: 0px;
    min-height: 0px;
    min-width: 0px;
    max-height: none;
    max-width: none;
    opacity: 1;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform-origin: 50% 50% 0px;
}


