/* Home Page Banner */
.home-banner {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);
  background-position: center center;
  height: calc(100vh - 100px);
}


@media (max-width: 767px){
  .home-banner{
    height: calc(250px + 20vw);
  }
}

.home-banner-content{
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: start;
  flex-direction: column;
}

.home-banner-heading{
  color: var(--ug-light-gray);
  font-size: calc(2rem + 2vw);
  font-weight: 600;
}

@media (max-width: 500px){
  .home-banner-heading{
    font-size: calc(1.35rem + 2vw - 2px);
  }
}

.home-banner-content p{
  color:var(--ug-light-gray);
}


/* Page banner */
.page-banner-content {
    height: 100%;
    display: flex;
    flex-direction: row;
    text-align: center;
    align-items: flex-end;
    justify-content: start;
  }


.page-banner-text {
    font-weight: 600;
    margin-bottom: 9px;
    color: var(--ug-light-gray);
    font-size: calc(2rem + 2vw);
}

.banner {
    text-align: center;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(140px + 20vw);
  }
