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

.banner-content {
  width: 90%;
}

.banner-content__top-title {
  font-weight: normal;
  color: #ee232a;
}

.banner-content__bottom-title {
  font-weight: bold;
}

.banner-content__description {
  font-size: 14px;
  font-weight: normal;
}

.partner-section__title {
  font-size: 16px;
  font-weight: normal;
  font-family: "Alegreya";
  color: #b0b0b0;
}

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

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

.courses-section {
  background-image: url("../img/course-bg2.png");
  background-repeat: no-repeat;
  min-height: 500px;
  background-position-x: right;
  background-position-y: bottom;
  background-size: contain;
}

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

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

.courses-section__container {
  min-height: 500px;
}

.courses-section__footer-info {
  font-size: 13px;
}

.courses-section__footer-info svg {
  width: 16px;
}

@media screen and (max-width: 992px) {
  .courses-section {
    background-size: 100% 50%;
    padding-top: 50%;
    background-position-y: top;
  }
  .courses-section__container {
    min-height: auto;
  }
}

.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__para {
  font-family: "Roboto";
  font-size: 15px;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.services-section .card {
  overflow: hidden;
}

.services-section .card-img-top {
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}

.services-section .card .service-overlay-title {
  position: absolute;
  bottom: 0;
  color: #fff;
  background-color: #000000b3;
  padding-right: 10px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  font-size: 22px;
  letter-spacing: 2px;
}

.services-section .card .card-title {
  margin-bottom: 0.5rem;
  color: #ee232a;
  font-size: 20px;
  text-align: center;
}

.services-section .card .card-body {
  top: calc(100%);
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1rem 1rem;
  position: absolute;
  background: #000000c7;
  height: 100%;
  -webkit-transition: 0.4s top ease;
  transition: 0.4s top ease;
}

.services-section .card .card-body .card-text {
  color: #fff;
}

.services-section .card:hover .card-body {
  top: 0;
}

.services-section .card:hover .card-img-top {
  -webkit-transform: scale3d(1.2, 1.2, 1.2);
          transform: scale3d(1.2, 1.2, 1.2);
}

.services-section__bottom {
  margin-top: 3rem;
}

.services-section__bottom a {
  color: #ee232a;
  text-decoration: none;
}

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

.about-section__content-img {
  float: right;
  display: inline;
  margin-left: 20px;
  margin-top: 20px;
  margin-bottom: 5px;
}

.about-section__content-img img {
  width: 200px;
}

.about-section__content-img .title {
  display: inline-block;
  text-align: center;
  width: 100%;
  font-weight: bold;
}
/*# sourceMappingURL=home.css.map */