/************************
 * Cards -- Image      
 * *********************/
.image-card-cardset {
  display: flex;
  flex-flow: row wrap;
  gap: 3rem 2rem;
  justify-content: center;
}

.image-card-cardset > * {
  flex: 1 1 340px;
}

.image-card {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.image-card__image {
  overflow: clip;
}

.image-card__image img {
  width: 100%;
  display: block;
}

.--image-card-animate .image-card__image > img {
  transition: transform 0.2s ease-in;
}

.--image-card-animate:hover .image-card__image > img {
  transform: scale(1.05);
}

.image-card__content {
  background: white;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.image-card__content.--with-captions {
	padding-top: 1.5rem;
}

.image-card__captions {
	text-transform: uppercase;
	color: #4B4F55;
	font-size: 0.875rem;
	margin-bottom: 0.25em;
}

.image-card__cta {
  font-weight: bold;
}

.image-card__cta a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/************************
 * END Cards -- Image      
 * *********************/

/************************
 * Cards -- Area of Study      
 * *********************/
.aos-grid-3-col {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.aos-card {
  background-color: #002f87;
  color: white;
  max-width: 700px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  position: relative;
}

.aos-card__title {
  color: white;
  font-family: "PT Sans Narrow", "PT Sans", "Roboto", sans-serif;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.aos-card__title::before {
  font-family: "FontAwesome";
  content: "\f061";
  color: #f6b436;
  padding-right: 1rem;
  position: relative;
  transition: all 0.5s;
  left: 0;
}

.aos-card:hover {
  background-color: hwb(219 0% 54%);
}
.aos-card:hover .aos-card__title::before {
  left: 0.5rem;
}
.aos-card:hover .aos-card__title {
  color: #f0ea9c;
}

.aos-card__title a {
  color: inherit;
  text-decoration: none;
}

.aos-card a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.aos-card__categories {
  color: white;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.aos-card__details {
  border-top: 1px solid rgba(109, 197, 232, 0.5);
  padding-top: 1rem;
  margin-top: 3rem;
}

.aos-card__chips {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-flow: row wrap;
  gap: 0.5rem;
}

.aos-chip {
  color: #303538;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
  background-color: #f78d2d;
  padding: 0.25em 1em;
  border-radius: 28px;
}

/***** Degree Type Legend ******/
.degree-type-legend {
  background: white;
  border: 1px solid #4b4f55;
  padding: 2rem;
}

.degree-type {
  margin-bottom: 0;
}
.degree-type p {
  line-height: 1.4;
  margin-bottom: 0;
}

.degree-type__title > b {
  font-size: 1rem;
}

.degree-type__description {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

@media screen and (min-width: 600px) {
  .aos-grid-3-col {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .aos-card {
    min-height: 250px;
  }

  .aos-card__title {
    font-size: 1.75rem;
  }

  .degree-type__title > b {
    font-size: 1.3125rem;
  }
}
/************************
 * END Cards -- Area of Study      
 * *********************/
/*******************************
 * Section Menu Styles
 ******************************/
.section-menu__button {
  -webkit-appearance: none;
  /* For Webkit browsers */
  -moz-appearance: none;
  /* For Firefox */
  appearance: none;
  /* Standard property */
  margin: 0;
  padding: 7px 12px 6px;
  border: none;
  background: #c20430;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: bold;
  color: white;
  text-align: inherit;
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  border-radius: 2px;
}
.section-menu__button:focus {
  outline: solid 1px #000;
  outline-offset: 4px;
}

.section-menu__wrapper {
  position: relative;
}

.section-menu {
  width: 210px;
  height: auto;
  position: absolute;
  top: 40px;
  left: 0;
  background-color: #fcfcfc;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  border: solid 1px rgba(6, 6, 6, 0.3);
  transition: 0.3s opacity, 0.3s visibility;
}
.section-menu.expanded {
  opacity: 1;
  visibility: visible;
}
.section-menu > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  font-size: 0.875rem;
}
.section-menu a {
  color: inherit;
  text-decoration: none;
  display: block;
}
.section-menu a:hover {
  color: #0076bb;
  text-decoration: underline;
}

.section-menu__wrapper[aria-expanded=true] .section-menu__button-icon {
  transform: rotate(-180deg);
}

.section-menu__button-icon {
  transition: transform 0.2s ease-in;
}

@media screen and (min-width: 560px) {
  .section-menu__button {
    font-size: 1rem;
  }

  .section-menu > ul {
    font-size: inherit;
  }
}
.with-section-nav {
  padding: 1rem 1rem 0;
  display: flex;
  flex-flow: column wrap;
  gap: 1rem;
}

@media screen and (min-width: 620px) {
  .with-section-nav {
    padding: 1rem;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }
}
/*** END SECTION MENU STYLES ***/