.carousel-item {
  height: 100%;
}

.carousel-item-back {
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.carousel-caption h5 {
  animation-delay: 1s;
  font-size: 50pt;
  text-shadow: 1px 1px 1px #6F6E6E;
  line-height: 56pt;
  font-family: misses;
}

.carousel-caption {
  position: absolute;
  text-align: center;
  display: flex !important;
  align-self: center;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  left: 0;
  right: 0;
}

.carousel-indicators>li {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #6F6E6E;
}

.carousel-indicators>li.active {
  background-color: #97DCD0;
}

@media (max-width: 992px) {
  .carousel-caption h5 {
    font-size: 40pt;
    line-height: 45pt;
  }
}

@media (max-width: 768px) {
  .carousel-caption h5 {
    font-size: 30pt;
    line-height: 34pt;
  }
}

.grow {
  animation: growAnimation 7s;
}

@keyframes growAnimation {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

.gallery-tile {
  width: 100%;
  margin-bottom: 30px;
  display: block;
}

.gallery-tile img {
  width: 100%;
}