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

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

.btn-group .btn-outline-primary {
  color: #d2ab67;
  border-color: #d2ab67;
}

.btn-group .btn-outline-primary:hover {
  color: #fff;
  background-color: #ee232a;
  border-color: #ee232a;
}

.btn-group .btn-check:checked + .btn-outline-primary {
  color: #fff;
  background-color: #ee232a;
  border-color: #ee232a;
}

.btn-group .btn-check:checked + .btn-outline-primary:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.course-item__price {
  background: #fceff0;
}

.price {
  list-style-type: none;
  border: 1px solid #eee;
  margin: 0;
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.price:hover {
  -webkit-box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.2);
}

.price .header {
  background-color: #111;
  color: white;
  font-size: 25px;
}

.price li {
  border-bottom: 1px solid #eee;
  padding: 20px;
  text-align: center;
}

.price .grey {
  background-color: #eee;
  font-size: 20px;
}

.price .desc li {
  border-bottom: 1px solid #eee;
  padding: 5px;
  text-align: left;
  border-bottom: none;
}

li.desc-li {
  max-height: 300px;
  overflow: auto;
}

li.desc-li::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.8);
  background-color: #f5f5f5;
}

li.desc-li::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

li.desc-li::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.8);
  border: 2px solid #555555;
}

form h5 {
  font-weight: bold;
}
/*# sourceMappingURL=cources.css.map */