/* styles for academic programs and accordion */
*{
    font-family: 'Montserrat' !important;
}

#programs {
    width: 80%;
    margin: 50px auto;
}

h2 {
    color: var(--main-color-text);

    font-weight: 700;
    letter-spacing: 0.2px;
    font-size: clamp(24px, 3vw, 36px);
    margin :0;
}

h3{
    line-height: 30px;
}

p{
    color: var(--grey-text);
    text-align: revert;
    font-weight: 400;
    font-size: clamp(12px, 3vw, 16px);
    line-height: 18px;
    letter-spacing: 0.2px;
}

.ui-state-active {
    background: var(--color-2);
    border: none;
    color: white;
}

html {
    font-size: 1rem;
  }
  
@include media-breakpoint-up(sm) {
    html {
      font-size: 1.2rem;
    }
}
  
@include media-breakpoint-up(md) {
    html {
      font-size: 1.4rem;
    }
}
  
@include media-breakpoint-up(lg) {
    html {
      font-size: 1.6rem;
    }
}