.dept-header {
  width: 100%;
  background: #f0f5f6;
  margin: 0 auto;
  padding: 20px 0;
  background-size: cover;
  background-position: center;
}
.dept-header__contain {
  width: 100%;
  max-width: 1200px;
  min-height: 300px;
  margin: 0 auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.dept-header--light {
  color: #315470;
}
.dept-header--dark {
  color: #FFFFFF;
}
.dept-header .dept-expanded {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.dept-header .dept-expanded .logo {
  max-width: 150px;
  height: auto;
}
.dept-header .dept-expanded .logo img {
  width: 100%;
  height: 100%;
}
.dept-header .dept-expanded .dept-name {
  padding: 0 0 0 25px;
  font-weight: 200;
  font-size: 36px;
  line-height: 45px;
}
.dept-header .dept-expanded .dept-name--pre-header {
  font-weight: 700;
}
.dept-header .dept-expanded .dept-name--pre-header span {
  font-weight: 200;
}
.dept-header .dept-expanded .dept-name--center {
  text-align: center;
}

.dept--da {
  color: #23346F;
  background-color: #eaeaea;
}

.dept--prob {
  color: #d8ab4f;
  background-color: #1f2140;
}

/*-- Max Width for Logos --*/
.mw--350 .dept-expanded .logo {
  max-width: 350px;
}

.mw--200 .dept-expanded .logo {
  max-width: 200px;
}

/*-- Scrim Style --*/
.black--scrim {
  position: relative;
}
.black--scrim::before {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 75%);
}
.black--scrim .dept-header__contain {
  z-index: 1;
  position: relative;
}

.overlay--white {
  position: relative;
}
.overlay--white::before {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  background: rgba(255, 255, 255, 0.7);
}
.overlay--white .dept-header__contain {
  z-index: 1;
  position: relative;
}

.name--300 .dept-name {
  font-weight: 300 !important;
}

.name--400 .dept-name {
  font-weight: 400 !important;
}

.name--500 .dept-name {
  font-weight: 500 !important;
}

.agcomm__header {
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.25rem;
  padding: 15px 0;
  text-align: center;
  color: white;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(45deg, #315470, #4F868E);
}

.cdd__header {
  font-weight: 300;
  font-size: 1.75rem;
  line-height: 2.25rem;
  padding: 15px 0;
  text-align: center;
  color: white;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(45deg, #1B3C56, #315470);
}

@media screen and (max-width: 640px) {
  .dept-header__contain {
    min-height: 200px;
  }
  .dept-header .dept-expanded {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
  }
  .dept-header .dept-expanded .logo {
    width: 150px;
    margin-bottom: 10px;
  }
  .dept-header .dept-expanded .dept-name {
    font-size: 26px;
    line-height: 32px;
    text-align: center;
    padding: 0 20px;
  }
  .agcomm__header {
    font-size: 1.5rem;
    padding: 15px 20px;
  }
  .mw--350 .dept-expanded .logo {
    width: 250px;
    max-width: 250px;
  }
  .mw--200 .dept-expanded .logo {
    width: 200px;
    max-width: 200px;
  }
}