/*
Dk Blue:   #398DC2
Lt Blue:   #4AC3E4

Dk Purple: #B176B2
Md Purple: #C7A2CC
Lt Purple: #E8C8DF

Dk Orange: #F58020
Md Orange: #F7941D
Lt Orange: #EFBA44

Gray:  #555555

---------------------------------------------------------------------*/
/* Header*/
#about-s1 {
  padding: 48px;
}
/* Timeline
----------------------------------------------------*/
#timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-title {
  color: white;
  font-family: "Cervo-Medium";
  text-transform: uppercase;
  font-size: 3rem;
  line-height: 3.5rem;
}
#timeline-container {
  padding: 62px 0;
}
#timeline-container .orange-text-wrap {
  margin-bottom: 24px;
}
#timeline-start, #timeline-end {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
#timeline-start-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #4AC3E4;
}
#timeline-start-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #4AC3E4;
}
#timeline-start-line, #timeline-end-line {
  height: 50px;
  background-color: #4AC3E4;
  width: 6px;
}
.timeline-mid-line {
  height: 50px;
  background-color: #4AC3E4;
  width: 6px;
}
.timeline-topline {
  height: 100px;
  background-color: #4AC3E4;
  width: 6px;
}
.timeline-slot {
  display: flex;
  position: relative;
}
.timeline-text {
  position: absolute;
  width: 400px;
}
.timeline-text h3 {
  margin: 0;
}
.timeline-text p {
  margin: 0;
}
.timeline-left {
  left: 100px;
}
.timeline-right {
  right: 100px;
}
.timeline-time {
  background-color: white;
  border: solid 4px #4AC3E4;
  height: 75px;
  width: 75px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.timeline-time p {
  font-family: "Cervo-Medium";
  font-size: 2.5rem;
  margin: 0;
}
/* MODAL BUTTON
----------------------------------------------------------*/
.modalBtn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #4AC3E4;
  border: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.modalBtn:hover, .modalBtn:focus {
  background-color: #F7941D;
  border: 3px solid #FFF;
}
/* MODAL BACKGROUND
----------------------------------------------------------*/
.modalBlackout {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .7);
  z-index: 99999;
  opacity: 0;
  -webkit-transition: opacity 200ms ease-in;
  -moz-transition: opacity 200ms ease-in;
  -ms-transition: opacity 200ms ease-in;
  -o-transition: opacity 200ms ease-in;
  transition: opacity 200ms ease-in;
  pointer-events: none;
  text-align: left;
}
.modalBlackout:target {
  opacity: 1;
  pointer-events: auto;
}
/* MODAL BOX
----------------------------------------------------------*/
.modalBox {
  background: #4AC3E4;
  width: 40%;
  height: 60vh;
  margin: 100px auto 0 auto;
  padding: 0;
  border: 4px solid #4AC3E4;
  overflow: hidden;
}
/* MODAL CLOSE
----------------------------------------------------------*/
.modalClose {
  color: rgba(255, 255, 255, 1);
  float: right;
  font-size: 2rem;
  line-height: 2rem;
  margin-left: 4px;
}
.modalClose:hover, .modalClose:focus {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  cursor: pointer;
}
/* MODAL CONTENT
----------------------------------------------------------*/
.modalContent {
  background: #FFF;
  overflow-y: scroll;
  overflow-x: none;
  height: 60vh;
  border-bottom: 1px solid #000;
}
.modalContent::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.modalContent::-webkit-scrollbar-track {
  color: #FFF;
  margin: 1em auto;
}
.modalContent::-webkit-scrollbar-thumb {
  background: #F7941D;
  border-radius: 10px;
}
.modalContent::-webkit-scrollbar-thumb:hover {
  background: #F58020;
}
/* MODAL SUB-DATE
----------------------------------------------------------*/
.modalsubDate {
  padding: 18px;
  margin: 0;
  border-bottom: 1px solid #FFF;
}
.modalsubDate h4 {
  font-size: 2.0rem;
  line-height: 2.2rem;
  font-family: "Cervo-Medium";
  color: #222;
  margin: 0 0 6px 0;
  padding: 0 0 0 0;
}
.modalCitation {
  font-size: 0.6rem;
  line-height: 0.8rem;
  margin: 12px 0 0 0;
  padding: 0 0 0 0;
}
.modalCitation p {
  font-size: 0.6rem;
  line-height: 0.8rem;
  margin: 12px 0 0 0;
  padding: 0 0 0 0;
}
@media only screen and (max-width: 1024px) {
  .timeline-text {
    position: absolute;
    width: 200px;
  }
}
@media only screen and (max-width: 749px) {
  #timeline {
    align-items: flex-start;
  }
  .timeline-topline {
    margin-left: 38.5px;
  }
  .timeline-left, .timeline-right {
    left: 100px;
    width: 250px;
  }
  #timeline-start, #timeline-end {
    margin-left: 28.5px;
  }
  #timeline-callout {
    display: none;
  }
  .modalBtn {
    margin-left: 30px;
  }
  .timeline-mid-line {
    margin-left: 40px;
  }
  .modalBox {
    width: 80%;
    height: 70vh;
  }
  .modalContent {
    height: 70vh;
  }
}
/* Leadership
----------------------------------------------------*/
#staff-heading-background {
  background-color: #F58020;
  -webkit-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, .3);
  -moz-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, .3);
  -ms-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, .3);
  -o-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, .3);
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, .3);
}
#staff-heading-content {
  display: flex;
  align-items: center;
}
#staff-heading-text {
  margin-left: 48px;
  color: #FFF;
}
#staff-heading-content img {
  width: 45%;
}
#staffDiv {
  padding: 48px 0 48px 0;
  background-color: #EFEFEF;
}
/* Board
----------------------------------------------------*/
.boardBox {
  display: inline-block;
  width: 30%;
  margin: 0 1.5% 24px 1.5%;
  text-align: center;
  background: #FFF;
}
.boardBoxTxt {
  padding: 12px;
  min-height: 60px;
}
.boardBox h3 {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
.boardBox h4 {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
/* Staff
----------------------------------------------------*/
.staffBox {
  display: inline-block;
  width: 30%;
  margin: 0 1.5% 24px 1.5%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(.97);
  -moz-transform: scale(.97);
  -ms-transform: scale(.97);
  -o-transform: scale(.97);
  transform: scale(.97);
  color: #FFF;
  text-decoration: none;
}
.staffBox:hover, .staffBox:focus {
  text-decoration: none;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.staffBoxImg {
  background-color: #F3F4C2;
  background-blend-mode: darken;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px;
  border-radius: 999em 999em 40px 40px;
  width: 90%;
  margin-left: 5%;
}
.staffBoxTxt {
  padding: 12px;
  background-color: #B176B2;
  min-height: 100px;
}
.staffBox h3 {
  font-weight: 400;
  color: #FFF;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  text-transform: uppercase;
}
.staffBox h4 {
  color: #FFF;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
.staffPortrait {
  width: auto;
  height: 400px;
  float: right;
  margin: 0 0 24px 24px;
}
@media only screen and (max-width: 1024px) {}
@media only screen and (max-width: 749px) {
  .boardBoxTxt {
    padding: 10px;
    min-height: 85px;
  }
  .boardBox h3 {
    font-size: 1.4rem;
    line-height: 1.4rem;
  }
  .boardBox h4 {
    font-size: 0.9rem;
    line-height: 1.1rem;
  }
  .staffBox {
    width: 45%;
  }
  .staffPortrait {
    height: 180px;
  }
  .staffBoxImg {
    height: 180px;
  }
  #staff-heading-content img {
    width: 100%
  }
  #staff-heading-content {
    flex-direction: column-reverse;
  }
}