html,
body {
  width: 100%;
}

.hamburger {
  filter: invert(100);
}

.logo {
  width: 35px;
  filter: invert(100);
}

.modal-body {
  text-align: center;
}

.modal-title {
  color: black;
}

.modal-anchor {
  color: goldenrod;
  text-decoration: none;
  font-weight: bold;
}

.modal-anchor:visited {
  color: goldenrod;
  text-decoration: none;
  font-weight: bold;
}

.modal-anchor:active {
  color: goldenrod;
  text-decoration: none;
  font-weight: bold;
}

.modal-anchor:link {
  color: goldenrod;
  text-decoration: none;
  font-weight: bold;
}

.modal-anchor:hover {
  color: goldenrod;
  text-decoration: none;
  font-weight: bold;
}

.anchor-button-style {
  background-color: black;
  padding: 10px;
  border-radius: 5px;
}

.nav-title {
  color: white;
  font-size: 22px;
}

.nav-link {
  font-size: 22px;
  color: white;
}

.navbar-toggler {
  border-radius: 0px;
}

.navbar-toggler-icon {
  min-width: 100%;
}

.sticky-top {
  position: fixed;
  z-index: 999;
  width: 100%;
}

.about-carousel {
  width: 95%;
  margin-top: 20px;
}

.carousel-caption {
  top: 70%;
  transform: translateY(-50%);
  height: 145px;
  border: 4px solid goldenrod;
}

.about-image {
  opacity: 0.65;
}

.about-text {
  font-family: "Roboto Slab", serif;
  background-color: black;
  border-radius: 10px;
  padding: 0px 10px;
  opacity: 50%;
}

.backgroundImgDiv {
  background-image: url("images/background.png");
  background-attachment: fixed;
  max-width: 100%;
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.courses-banner {
  color: #c8c8c8;
  margin-top: 30px;
  background-color: rgba(0, 0, 0, 0.6);
  width: 95%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-family: "Ubuntu Mono", monospace;
}

.course-heading {
  font-size: 50px;
  margin: 0px;
}

.courses-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 95%;
  margin-top: 20px;
}

.course-card {
  margin-bottom: 20px;
  display: flex;
  height: 100px;
  flex-direction: row;
  width: 325px;
}

.course-card-left {
  border-radius: 10px 0 0 10px;
  padding: 20px;
  border: 1px solid rgba(218, 165, 32, 0.5);
  text-align: center;
  font-family: "Ubuntu Mono", monospace;
  font-size: 20px;
  color: #c8c8c8;
  width: 33%;
}

.course-card-right {
  font-family: "Ubuntu Mono", monospace;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: bold;
  border-radius: 0 10px 10px 0;
  background-color: rgba(218, 165, 32, 0.7);
  width: 67%;
}

.course-card-right p {
  text-align: center;
  margin: 0px;
}

.rates-banner {
  color: #c8c8c8;
  margin-top: 30px;
  background-color: rgba(0, 0, 0, 0.7);
  width: 95%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px;
  font-family: "Ubuntu Mono", monospace;
}

.rates-heading {
  font-size: 50px;
  margin: 0px;
}

.rate-level-div {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.rate-level-div h3 {
  text-decoration: underline;
  margin: 0px;
}

.rate-level-div p {
  margin: 0px;
}

.rates-table th {
  border-bottom: 1px solid rgba(218, 165, 32, 0.7);
}

.rates-table {
  margin-right: auto;
  margin-left: auto;
  border: 1px solid rgba(218, 165, 32, 0.7);
  width: 90%;
  font-size: 25px;
}

.footer {
  margin-top: 20px;
  background-color: #333;
  color: #c8c8c8;
  width: 100%;
  height: 100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-quip {
  color: #c8c8c8;
  font-weight: bold;
}

.cardContainer {
  display: flex;
  flex-direction: row;
  width: 95%;
  justify-content: space-between;
  align-items: center;
  opacity: 0.65;
}

.cardContainer .card {
  background-color: #333;
  width: 380px;
  margin-top: 20px;
}

.cardContainer .card .face {
  height: 200px;
  transition: 0.5s;
}

.cardContainer .card .face.face1 {
  width: 100%;
  background: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transform: translateY(100px);
}

.cardContainer .card:hover .first-card {
  background: rgba(150, 0, 0, 0.5);
  transform: translateY(0);
}

.cardContainer .card:hover .second-card {
  background: rgba(0, 150, 0, 0.5);
  transform: translateY(0);
}

.cardContainer .card:hover .third-card {
  background: rgba(0, 0, 150, 0.5);
  transform: translateY(0);
}

.cardContainer .card .face.face1 .content {
  opacity: 0.3;
  transition: 0.5s;
}

.cardContainer .card:hover .face.face1 .content {
  opacity: 0.5;
}

.cardContainer .card .face.face1 .content img {
  max-width: 100px;
}

.cardContainer .card .face.face1 .content h3 {
  margin: 10px 0 0;
  padding: 0;
  color: white;
  text-align: center;
  font-size: 1.5em;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.cardContainer .card .face.face2 {
  background: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  transform: translateY(-100px);
}

.cardContainer .card:hover .face.face2 {
  transform: translateY(0);
}

.cardContainer .card .face.face2 .content p {
  margin: 0;
  padding: 0;
}

.cardContainer .card .face.face2 .content a {
  margin: 15px 0 0;
  display: inline-block;
  text-decoration: none;
  padding: 5px;
  border: 1px solid #c8c8c8;
  border-radius: 10px;
  font-weight: bold;
}

.cardContainer .card .face.face2 .content a:hover {
  background: #333;
}

a:link {
  color: #fff;
}

a:visited {
  color: #fff;
}

a:active {
  color: #fff;
}

.service-click1:hover {
  color: grey;
}

.service-click2:hover {
  color: grey;
}

.service-click3:hover {
  color: grey;
}

.favicon {
  filter: invert(100);
}

.img-container {
  width: 100%;
  text-align: center;
  position: relative;
}

.mobile-img {
  width: 100%;
}

.mobile-center-text {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #333;
  opacity: 75%;
  width: 95%;
  font-family: "Roboto Slab", serif;
  border-radius: 10px;
  border: 4px solid rgba(218, 165, 32, 0.7);
}

.mobile-div {
  margin-top: 85px;
  color: white;
  text-align: center;
  width: 95%;
  opacity: 65%;
  background-color: black;
  border-radius: 10px;
  display: none;
  flex-direction: column;
}

.click-text {
  display: none;
  color: white;
  text-align: center;
  margin-left: 18px;
  font-family: "Roboto Slab", serif;
  font-size: 14px;
}

@media only screen and (max-width: 768px) {
  .about-carousel {
    display: none;
  }

  .mobile-div {
    display: flex;
  }
}
@media (hover: none) {
  .click-text {
    display: flex;
  }
}
@media only screen and (max-width: 932px) {
  .cardContainer {
    flex-direction: column;
  }
}

/*# sourceMappingURL=index.css.map */
