.page-hero {
  position: relative;
  display: block;
  width: 100vw;
  height: 41.5em;
  overflow: hidden;
}

.page-hero .hero-image {
  display: block;
  width: auto;
  height: 100%;
  object-fit: cover;
  object-position: 45% 20%;
}

@media screen and (min-width: 40em) {
  .page-hero .hero-image {
    width: 100%;
    object-fit: cover;
    object-position: 50% 75%;
  }
}

.page-hero .hero-overlay {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: left;
}

.page-hero .page-title {
  position: relative;
  display: inline-flex;
  flex-flow: column;
  text-align: center;
  font-size: clamp(36px, 4.167vw, 60px);
  font-weight: 700;
  color: var(--color-text-white);
  margin-left: 1em;
  margin-bottom: 2em;
}

.page-hero .page-title small {
  font-size: clamp(14px, 1.389vw, 20px);
  font-weight: 500;
  padding-bottom: 0.5em;
  color: #FFF;
  text-align: left;
}

.page-hero .page-title::after {
  content: "";
  display: block;
  position: absolute;
  width: 52px;
  height: 52px;
  top: -0.625em;
  right: -2em;
  background-image: url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.689 17.213c0 2.266 1.822 4.103 4.069 4.103H42.5v1.368H22.758c-2.247 0-4.069 1.837-4.069 4.103V44h-1.356V26.787c0-2.266-1.822-4.103-4.069-4.103H1.5v-1.368h11.764c2.247 0 4.069-1.837 4.069-4.102V0h1.356v17.213Z' fill='%23C6A75E'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 40em) {
  .page-hero .hero-overlay {
    align-items: center;
  }

  .page-hero .page-title {
    margin-left: 4em;
    margin-bottom: 0;
  }

  .page-hero .page-title::after {
    width: 62px;
    height: 62px;
    top: -0.25em;
    right: -1.5em;
  }
}

.grid-container {
  padding-top: 0.5em;
  padding-bottom: 0;
}

@media screen and (min-width: 40em) {
  .grid-container {
    padding-top: 1.5em;
    padding-bottom: 1em;
  }
}

.section-caption {
  display: flex;
  flex-flow: column-reverse;
  margin-top: 1em;
  margin-bottom: 1.5em;
}

.section-caption h3 {
  display: block;
  font-weight: 700;
  font-size: clamp(24px, 2.778vw, 40px);
  padding-top: 1em;
  border-top: 1px solid var(--color-border);
}

.section-header {
  position: relative;
  display: block;
  padding-left: 1em;
  font-weight: 700;
  font-size: clamp(10px, 1.111vw, 16px);
}

.section-header::before {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  left: 0;
  top: 50%;
  margin-top: -3px;
  background-color: var(--color-darkblue);
  border-radius: 50% 50%;
}

@media screen and (min-width: 40em) {
  .section-content {
    padding-top: 1.5em;
  }

  .section-caption {
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-border);
  }

  .section-header {
    display: inline-block;
    border-bottom: 0;
  }

  .section-caption h3 {
    display: inline-block;
    padding-top: 0;
    border-top: 0;
  }
}

.section-block {
  padding: 1em 0;
}

.block-header {
  display: flex;
  flex-flow: row;
  justify-content: center;
  padding-bottom: 1em;
}

.block-header > h4 {
  font-weight: 700;
}

.post-image > img {
  object-position: center;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.post-side-caption {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  width: 1.375em;
  background-color: var(--color-darkblue);
  flex: none;
}

.post-side-caption > span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--color-gold);
  font-weight: 500;
  font-size: clamp(8px, 0.694vw, 10px);
  text-transform: uppercase;
}

@media screen and (min-width: 40em) {
  .post-side-caption {
    width: 2.5em;
  }
}

.course-list > li {
  position: relative;
  list-style: none;
  font-weight: 400;
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 200%;
}

.course-list > li::before {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  left: -1em;
  top: 0;
  margin-top: 0.875em;
  background-color: var(--color-gold);
  border-radius: 50% 50%;
}

#coursesOffered .block-body {
  display: flex;
  flex-flow: column;
  gap: 1em;
}

#coursesOffered .card {
  position: relative;
  border-radius: 0.5em;
  display: flex;
  flex-flow: row;
  margin-bottom: 0;
}

#coursesOffered .post-image {
  display: inline-block;
  width: 5em;
  height: 5em;
  margin: 1em;
  align-self: center;
}

#coursesOffered .post-content {
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding: 1em 2em 1em 0;
  flex-grow: 1;
}

#coursesOffered .post-content .post-caption {
  display: block;
  font-weight: 700;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.5em;
}

@media screen and (min-width: 40em) {
  #coursesOffered .post-image {
    width: 10em;
    height: 10em;
    margin: 2em;
  }
}

@media screen and (min-width: 64em) {
  #coursesOffered .block-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 1em;
  }
}

#eligibilityRequirements .block-body {
  display: flex;
  flex-flow: column;
  gap: 1em;
}

#eligibilityRequirements .card {
  display: flex;
  flex-flow: column;
  align-items: center;
  border-radius: 0.5em;
  padding: 1.5em 1em;
  margin-bottom: 0;
}

#eligibilityRequirements .post-image {
  width: 7.5em;
  height: 7.5em;
}

#eligibilityRequirements .post-content {
  display: flex;
  flex-flow: column;
  font-size: clamp(14px, 1.25vw, 18px);
}

#eligibilityRequirements .post-caption {
  display: block;
  text-align: center;
  font-weight: 900;
  color: var(--color-gold);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-top: 0.625em;
  margin-bottom: 0.5em;
  padding: 0.125em 0;
  font-size: clamp(40px, 4.028vw, 58px);
}

#eligibilityRequirements .post-caption .divider {
  font-weight: 300;
}

#eligibilityRequirements .post-caption > small {
  font-weight: 400;
  font-size: 40%;
  color: var(--color-gold);
  padding-left: 0.25em;
}

#eligibilityRequirements .post-content > p {
  text-align: center;
  font-weight: 400;
}

@media screen and (min-width: 40em) {
  #eligibilityRequirements .block-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 1em;
  }

  #eligibilityRequirements .card {
    padding: 2em 2.5em;
  }

  #eligibilityRequirements .post-image {
    width: 10em;
    height: 10em;
  }
}

#applicationDocuments.card {
  background-color: var(--color-darkblue);
  color: #FFF;
  border-radius: 0.5em;
  padding: 1em 0.75em;
}

#applicationDocuments .block-body {
  display: flex;
  flex-flow: column;
  gap: 1em;
}

#applicationDocuments .card {
  display: flex;
  flex-flow: row;
  border-radius: 0.5em;
  padding: 1em 1em;
  gap: 1em;
  margin-bottom: 0;
}

#applicationDocuments .post-image {
  display: inline-block;
  width: 7.5em;
  height: 7.5em;
  flex: none;
}

#applicationDocuments .post-image > img {
  object-position: 50% 10%;
}

#applicationDocuments .post-content {
  display: flex;
  flex-flow: column;
  width: 100%;
  height: 100%;
}

#applicationDocuments .post-caption {
  display: block;
  font-weight: 700;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.5em;
}

#applicationDocuments .post-content > menu {
  margin-top: 0;
  
}

#applicationDocuments .post-content > menu > li {
  font-weight: 400;
  font-size: clamp(14px, 1.042vw, 15px);
  line-height: 200%;
}

@media screen and (min-width: 64em) {
  #applicationDocuments.card {
    padding: 1.5em 2em 1.75em 2em;
  }

  #applicationDocuments .block-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  #applicationDocuments .card {
    align-items: center;
    padding: 1.5em 2em;
    gap: 1.5em;
  }

  #applicationDocuments .post-image {
    width: 15em;
    height: 15em;
  }

  #applicationDocuments .post-content {
    padding-top: 0.75em;
  }
}

@media screen and (min-width: 40em) {
  #applicationDocuments .post-image {
    width: 15em;
    height: 15em;
  }
}

#tuitionFees .section-body {
  display: flex;
  flex-flow: column;
  gap: 1.5em;
}

#tuitionFees .section-body .card {
  border-radius: 0.5em;
}

#tuitionFees .section-body > .card {
  background-color: var(--color-darkblue);
  color: #FFF;
  margin-top: 0;
  margin-bottom: 0;
  padding: 1em 1em;
}

@media screen and (min-width: 40em) {
  #tuitionFees .section-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  #tuitionFees .section-body > .card {
    padding: 1.5em 2em;
  }

  #firstYearPayment.card {
    grid-column: span 2;
  }
}

#tuitionFees .post-caption {
  display: block;
  padding-bottom: 0.5em;
}

#tuitionFees .post-caption > h5 {
  font-weight: 700;
  text-align: center;
  font-size: clamp(14px, 1.944vw, 28px);
}

#tuitionFees .post-table {
  display: grid;
  grid-template-columns: 40% 1fr;
  grid-template-rows: repeat(6, 1fr);
  grid-auto-flow: column;
  font-size: clamp(14px, 1.25vw, 18px);
}

#tuitionFees .post-table .head {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  padding: 1em 0;
  background-color: var(--color-lightgray);
}

#tuitionFees .post-table .head:first-child {
  font-weight: 500;
}

#tuitionFees .post-table .head:not(:first-child),
#tuitionFees .post-table .cell:not(:first-child) {
  border-left: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
}

#tuitionFees .post-table .cell {
  text-align: center;
  padding: 1em 0;
}

#tuitionFees .post-table .cell.head {
  background-color: transparent;
  font-weight: 500;
}

#tuitionFees .post-table .cell.total {
  font-weight: 700;
}

@media screen and (min-width: 40em) {
  #tuitionFees .post-table {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto 1fr;
    grid-auto-flow: row;
  }

  #tuitionFees .post-table .head {
    border-bottom: 1px solid var(--color-border);
    padding: 1em 0;
  }

  #tuitionFees .post-table .cell {
    padding: 1.75em 0;
  }
}

#tuitionFees .post-list {
  display: grid;
  grid-template-columns: 40% 1fr;
  font-size: clamp(14px, 1.25vw, 18px);
}

#tuitionFees .post-list > * {
  border-top: 1px solid var(--color-border);
}

#tuitionFees .post-list > *:nth-child(1),
#tuitionFees .post-list > *:nth-child(2) {
  border-top: none;
}

#tuitionFees .post-list > .list-label {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-lightgray);
  font-weight: 500;
  text-align: center;
  border-right: 1px solid var(--color-border);
}

#tuitionFees .post-list > .list-content {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  padding: 0.5em 0.5em;
  line-height: 250%;
}

#tuitionFees .post-list > .list-content.head {
  font-weight: 500;
}

@media screen and (min-width: 40em) {
  #tuitionFees .post-list {
    grid-template-columns: 9em 1fr;
  }

  #tuitionFees .post-list > .list-content {
    padding: 1.5em 1em;
    justify-content: center;
  }
}

@media screen and (min-width: 64em) {
  #tuitionFees .post-list {
    grid-template-columns: 14em 1fr;
  }

  #tuitionFees .post-list > .list-content {
    padding: 1.5em 1em 1.5em 4em;
    justify-content: flex-start;
  }
}

#tuitionFees .information {
  display: flex;
  flex-flow: row;
}

#tuitionFees .information .card {
  background-color: #FFF;
  position: relative;
  border-radius: 0.5em;
  display: flex;
  flex-flow: row;
  padding: 0;
  margin: 1.5em 0 1em 0;
  color: var(--color-text-black);
}

#tuitionFees .information .post-body {
  display: flex;
  flex-flow: column;
  width: 100%;
}

#tuitionFees .information .post-image {
  display: inline-block;
  margin: 1em;
  aspect-ratio: 16 / 7;
  flex: none;
}

#tuitionFees .information .post-image > img {
  object-position: 50% 10%;
}

#tuitionFees .information .post-content {
  display: flex;
  flex-flow: column;
  padding: 0.25em 1.25em 0.5em 0.75em;
  flex-grow: 1;
}

#tuitionFees .information .post-content .post-caption {
  font-weight: 700;
  margin-bottom: 1em;
  border-bottom: 1px solid var(--color-border);
}

@media screen and (min-width: 40em) {
  #tuitionFees .information .card {
    margin: 1.5em 0 2.5em 0;
  }

  #tuitionFees .information .post-body {
    flex-flow: row;
  }

  #tuitionFees .information .post-image {
    margin: 1.5em;
    width: 18em;
    aspect-ratio: 16 / 10;
  }

  #tuitionFees .information .post-image > img {
    object-position: 50% 50%;
  }

  #tuitionFees .information .post-content {
    padding: 2em 2em 1em 0.75em;
  }
}

@media screen and (min-width: 64em) {
  #tuitionFees .information .post-image {
    width: 25em;
  }
}