/* 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;
}

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

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

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

.services-section__lists .row:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.data-section {
  margin-top: 5rem;
  background-color: #ee232a;
}
/*# sourceMappingURL=services.css.map */