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

@media (min-width: 576px) {
  .banner-section .container-fluid {
    padding-right: 0;
    margin-right: 0;
    width: calc(((100vw - 540px) / 2) + 540px);
  }
}

@media (min-width: 768px) {
  .banner-section .container-fluid {
    padding-right: 0;
    margin-right: 0;
    width: calc(((100vw - 720px) / 2) + 720px);
  }
}

@media (min-width: 992px) {
  .banner-section .container-fluid {
    padding-right: 0;
    margin-right: 0;
    width: calc(((100vw - 960px) / 2) + 960px);
  }
}

@media (min-width: 1200px) {
  .banner-section .container-fluid {
    padding-right: 0;
    margin-right: 0;
    width: calc(((100vw - 1140px) / 2) + 1140px);
  }
}

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

.method-section {
  margin-top: 2rem;
}

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

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

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

.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;
}

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

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

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

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

.gallery-section .gallery-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gallery-section .gallery-image img {
  height: 250px;
  width: 350px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.gallery-section .img-box {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 10px;
  height: 250px;
  width: 350px;
  overflow: hidden;
  display: inline-block;
  color: white;
  position: relative;
  background-color: white;
}

.gallery-section .caption {
  position: absolute;
  bottom: 5px;
  left: 20px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}

.gallery-section .transparent-box {
  height: 250px;
  width: 350px;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.gallery-section .img-box:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.gallery-section .img-box:hover .transparent-box {
  background-color: rgba(0, 0, 0, 0.5);
}

.gallery-section .img-box:hover .caption {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  opacity: 1;
}

.gallery-section .img-box:hover {
  cursor: pointer;
}

.gallery-section .caption > p:nth-child(2) {
  font-size: 0.8em;
}

.gallery-section .opacity-low {
  opacity: 0.5;
}

.behind-us-details h5 {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 0px;
}

.behind-us-details span {
  font-size: 11px;
}
/*# sourceMappingURL=about.css.map */