.site-hero {
  min-height: 60vh;
  height: 60vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-bottom: 25px solid goldenrod;
}

.hero-inner {
  background: linear-gradient(-45deg, rgba(0, 0, 0, 0.5), rgba(7, 7, 7, 0.918));
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.hero-item {
  padding: 20px;
}

.hero-item h1 {
  font-size: 80px;
  color: lightgray;
}

.hero-item p {
  color: white;
  font-size: 30px;
}

.hero-item button {
  width: 180px;
  height: 40px;
}

.main-grid {
  padding: 50px;
  display: -ms-grid;
  display: grid;
  row-gap: 10px;
  -webkit-column-gap: 20px;
          column-gap: 20px;
  -ms-grid-columns: 80% 20%;
      grid-template-columns: 80% 20%;
}

.other-co {
  background: lightgray;
  padding: 20px;
  margin-top: -100px;
  -webkit-box-shadow: 0px 5px 7px grey;
          box-shadow: 0px 5px 7px grey;
}

.other-co h3 {
  background-color: goldenrod;
  color: white;
  padding: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 2px 0px 1px #070707 inset, -2px 0px 1px #554602 inset;
          box-shadow: 2px 0px 1px #070707 inset, -2px 0px 1px #554602 inset;
}

.bar-card {
  margin-bottom: 30px;
  background: white;
  padding: 10px;
}

.bar-card img {
  width: 100%;
}

.nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #040435;
  height: 30px;
  color: white;
  padding: 10px;
  -webkit-box-pack: initial;
      -ms-flex-pack: initial;
          justify-content: initial;
}

.nav-tab {
  background: rgba(0, 155, 245, 0.966);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0px 10px;
  font-family: "Titillium Web";
  cursor: pointer;
  border-bottom: 5px solid transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.tab-active {
  border-bottom-color: goldenrod;
}

.tab-contents {
  background: lightgrey;
  padding: 20px;
  display: none;
}

.tab-contents ul {
  list-style: square;
  padding-left: 30px;
}

.tab-contents li {
  font-family: "Titillium Web";
}

.active-tab-contents {
  display: block;
}

.tco-cards {
  display: -ms-grid;
  display: grid;
  row-gap: 10px;
  -webkit-column-gap: 20px;
          column-gap: 20px;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  margin-top: 20px;
}

.package {
  background: #535353;
  padding: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.package h3 {
  color: goldenrod;
  border-bottom: 2px solid goldenrod;
}

.package p {
  color: rgba(0, 155, 245, 0.966);
}

.apply-now {
  text-align: right;
  margin: 10px;
}

.apply-now button {
  background: goldenrod;
  width: 100px;
}

@media (max-width: 800px) {
  .site-hero {
    height: 40px;
    min-height: 40vh;
  }
  .main-grid {
    display: -ms-grid;
    display: grid;
    row-gap: 10px;
    -webkit-column-gap: 20px;
            column-gap: 20px;
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    padding: 5px;
  }
  .nav-tab {
    font-size: 12px;
  }
  .other-co {
    margin-top: 10px;
  }
  .other-co h3 {
    border-radius: 0px;
    -webkit-box-shadow: none;
            box-shadow: none;
    text-align: center;
  }
  .tco-cards {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}
/*# sourceMappingURL=courses.css.map */