.institutes-table {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.institutes-table header {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #9d8e51;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 1rem;
}
.institutes-table header .header-left {
  width: 35%;
}
.institutes-table header .header-right {
  padding-left: 0.5rem;
  width: 65%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.institutes-table header h5 {
  color: white;
  font-weight: bold;
  font-size: 1rem;
  margin: 0;
}
.institutes-table section {
  display: flex;
  flex-direction: row;
  align-items: center;
  border: solid 2px #E4E4E4;
  border-radius: 8px;
  overflow: hidden;
  background: white;
}
.institutes-table section .institute-name {
  background-color: rgba(157, 142, 81, 0.25);
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  padding: 0.5rem 1rem;
  width: 35%;
  font-weight: bold;
  color: #474747;
}
.institutes-table section .institute-courses {
  background: white;
  display: flex;
  width: 65%;
  flex-direction: column;
}
.institutes-table section .institute-courses .course {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  color: #636363;
  font-weight: 600;
  padding: 1rem;
  transition: background 0.3s ease;
}
.institutes-table section .institute-courses .course:not(:last-child) {
  position: relative;
  padding-bottom: 0.75rem;
}
.institutes-table section .institute-courses .course:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background-color: rgba(157, 142, 81, 0.25);
}
.institutes-table section .institute-courses .course:not(:first-child) {
  padding-top: 0.75rem;
}
.institutes-table section .institute-courses .course .course-degree {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  justify-content: end;
}
.institutes-table section .institute-courses .course .course-degree a {
  color: #636363;
  text-decoration: underline;
}
.institutes-table section .institute-courses .course:hover {
  background-color: rgba(157, 142, 81, 0.25);
}

h3.location-title {
  color: #9d8e51;
}

.fn-filter-form-wrapper {
  width: 100%;
  max-width: 300px;
  margin-bottom: 2rem;
}

@media screen and (max-width: 992px) {
  .institutes-table {
    overflow-x: auto;
    width: 100%;
  }
  .institutes-table .header-left *,
  .institutes-table .header-right *,
  .institutes-table .institute-courses * {
    white-space: nowrap;
  }
}
.sponsors-table {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.sponsors-table header {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #000;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.sponsors-table header .header-column {
  padding: 1rem;
}
.sponsors-table header .header-column:nth-child(2), .sponsors-table header .header-column:nth-child(1) {
  width: 30%;
}
.sponsors-table header .header-column:nth-child(3), .sponsors-table header .header-column:nth-child(4) {
  width: 20%;
}
.sponsors-table header .header-column:last-child {
  text-align: end;
}
.sponsors-table header h5 {
  color: white;
  font-weight: bold;
  font-size: 1rem;
  margin: 0;
}
.sponsors-table section {
  display: flex;
  flex-direction: row;
  align-items: center;
  border: solid 2px #E4E4E4;
  border-radius: 8px;
  overflow: hidden;
  background: white;
}
.sponsors-table section .sponsor-name,
.sponsors-table section .sponsor-program {
  width: 30%;
  padding: 1rem;
}
.sponsors-table section .sponsor-education,
.sponsors-table section .sponsor-amount {
  width: 20%;
  padding: 1rem;
}
.sponsors-table section .sponsor-name {
  background-color: #9d8e51;
  padding: 1rem;
  width: 30%;
  font-weight: bold;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
}
.sponsors-table section .sponsor-name p.short-name {
  font-weight: normal;
  font-size: 0.85rem;
  margin: 0;
}
.sponsors-table section .sponsor-program,
.sponsors-table section .sponsor-education,
.sponsors-table section .sponsor-amount {
  font-weight: 700;
  color: #636363;
}
.sponsors-table section .sponsor-program {
  text-decoration: underline;
}
.sponsors-table section .sponsor-program a {
  color: #636363;
}
.sponsors-table section .sponsor-amount {
  text-align: end;
}
.sponsors-table section .sponsor-amount span.times {
  font-weight: 400;
}

@media screen and (max-width: 992px) {
  .sponsors-table {
    overflow-x: auto;
    width: 100%;
  }
  .sponsors-table .sponsor-program *,
  .sponsors-table .sponsor-education *,
  .sponsors-table .sponsor-amount * {
    white-space: nowrap;
  }
}

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