/* The typing effect */
@-webkit-keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* The typewriter cursor effect */
@-webkit-keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: orange;
  }
}
@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: orange;
  }
}

.navbar {
  width: 100%;
  background-color: transparent !important;
}

.banner-bg-wrapper {
  background-image: url("../img/banner-bg.png");
}

.banner-section .banner-section__title {
  font-size: 2rem;
  font-weight: normal;
  color: #ee232a;
}

.banner-section .banner-section__sub-title {
  font-weight: bold;
  font-size: 16px;
}

.banner-section .container {
  padding-right: 0;
}

.banner-section__img-column {
  padding-right: 0;
  text-align: center;
}

.location-section {
  margin-top: 5rem;
}

.location-section .location-section__title {
  font-size: 2rem;
  font-weight: normal;
  color: #ee232a;
}

.location-section .location-section__sub-title {
  font-weight: bold;
  font-size: 16px;
}

.location-section .form-control {
  background-color: #f1f1f1;
  padding: 18px 10px;
}

.list-section__date {
  background-color: #fff4e1;
  padding: 20px;
  border-radius: 20px;
  max-width: 200px;
  text-align: center;
}

.contact-section {
  margin-top: 5rem;
  text-align: center;
}

.contact-section img {
  width: 30px;
  margin-bottom: 10px;
}

.contact-section__inner {
  padding: 20px;
  max-width: 250px;
  margin: 0 auto;
  border-radius: 10px;
}

.enquiry-section {
  margin-top: 5rem;
}

.enquiry-section .enquiry-section__title {
  font-size: 2rem;
  font-weight: normal;
  color: #ee232a;
}

.enquiry-section .enquiry-section__sub-title {
  font-weight: bold;
  font-size: 16px;
}

.enquiry-section .form-control {
  background-color: #f1f1f1;
  min-height: 20px;
}
/*# sourceMappingURL=contact.css.map */