@keyframes about_upfold {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.page-title {
  display: none;
}
@media screen and (max-width: 1024px) {
  .page-title {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  #history {
    position: relative;
    top: 50px;
  }
}
#history .content {
  width: 90%;
  margin: 20px auto;
}
#history .content p {
  padding: 20px 0 10px;
}
@media screen and (max-width: 1024px) {
  #history p {
    text-align: left;
  }
}
#history figure img {
  width: 100%;
  height: 100%;
}
#history .float-left-image,
#history .float-right-image {
  background-color: gray;
  display: inline-block;
}
#history .float-left-image {
  float: left;
  width: 45%;
}
@media screen and (max-width: 1023px) {
  #history .float-left-image {
    float: none;
    width: 100%;
  }
}
#history .medium-image {
  height: 75vh;
}
#history .medium-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#history .small-image {
  height: 50vh;
}
#history .float-right-image {
  float: right;
  margin-top: 50px;
  width: 50%;
  height: 80vh;
}
@media screen and (max-width: 1023px) {
  #history .float-right-image {
    float: none;
    width: 100%;
    margin-top: 35px;
  }
}
#history .half-width {
  width: 45%;
  float: right;
  margin-left: auto;
  margin-right: 5%;
}
@media screen and (max-width: 1023px) {
  #history .half-width {
    float: none;
    width: 90%;
    margin: 30px auto 0;
  }
}
#history .float-left-content {
  width: 40%;
  margin-left: 5%;
}
#history .float-left-content h4 {
  margin-top: 95px;
}
@media screen and (max-width: 1023px) {
  #history .float-left-content h4 {
    margin-top: 30px;
  }
}
#history .float-left-content p {
  padding: 30px 0 30px;
}
@media screen and (max-width: 1023px) {
  #history .float-left-content {
    float: none;
    width: 90%;
    margin: 0 auto;
  }
}
#history .full-width {
  width: 90%;
  margin: 0 auto;
  padding: 40px 0;
  clear: both;
}
@media screen and (max-width: 1023px) {
  #history .full-width {
    padding: 0 0 30px;
  }
}
#history .float-right-content {
  width: 45%;
  float: right;
  margin-right: 5%;
}
@media screen and (max-width: 1023px) {
  #history .float-right-content {
    float: none;
    width: 90%;
    margin: 40px auto 0;
  }
}
#history .float-right-content p {
  padding: 30px 0 30px;
}
@media screen and (max-width: 1023px) {
  #history .float-right-content p {
    padding: 30px 0 0;
  }
  #history .float-right-content p:nth-of-type(2) {
    padding-bottom: 30px;
  }
}
#history h4 {
  font-size: 30px;
  display: inline-block;
}
#history h4:after {
  content: "";
  width: 60px;
  background-color: #b16106;
  display: block;
  height: 3px;
  margin-top: 10px;
}

.upfold-image {
  height: 80vh;
}
@media screen and (max-width: 1023px) {
  .upfold-image {
    height: auto;
  }
}
.upfold-image img {
  width: 100%;
  opacity: 0;
  height: 100%;
  object-fit: cover;
  animation: about_upfold 500ms forwards 1.5s;
}
@media screen and (max-width: 1023px) {
  .upfold-image img {
    object-fit: contain;
  }
}

#bio-data {
  display: flex;
  margin: 0 auto;
  padding: 50px 0;
  justify-content: space-between;
  box-shadow: 0px -1px 6px 0 #e4e4e4;
  opacity: 0;
  transition: opacity 500ms ease, top 500ms ease;
  position: relative;
  top: 30px;
}
#bio-data.show {
  opacity: 1;
  top: 0;
}
@media screen and (max-width: 1024px) {
  #bio-data {
    flex-flow: column;
  }
}
#bio-data .description {
  margin-left: 80px;
}
@media screen and (max-width: 1024px) {
  #bio-data .description {
    margin-left: 30px;
    margin-right: 30px;
  }
}
#bio-data .description h5 {
  font-size: 30px;
  color: #b16106;
}
#bio-data .label {
  display: flex;
  align-items: center;
  font-size: 18px;
  margin-bottom: 10px;
}
#bio-data .label span {
  margin-left: 10px;
}
#bio-data .download-content {
  margin-right: 80px;
}
@media screen and (max-width: 1024px) {
  #bio-data .download-content {
    margin-top: 30px;
    margin-left: 30px;
    margin-right: 30px;
  }
}
#bio-data p {
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  #bio-data p {
    text-align: left;
  }
}
#bio-data p em {
  font-style: normal;
  font-weight: 600;
}
#bio-data figure {
  width: 30px;
  height: 30px;
}
#bio-data figure svg {
  width: 100%;
  height: 100%;
}
#bio-data button {
  padding: 6px 40px;
  border-radius: 20px;
  background-color: #b0350c;
  transition: background-color 500ms ease, box-shadow 500ms ease;
}
@media screen and (max-width: 1024px) {
  #bio-data button {
    padding: 6px 20px;
  }
}
#bio-data button:nth-of-type(1) {
  margin-right: 15px;
}
#bio-data button:hover {
  background-color: #b16106;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}

#mission {
  background-image: url("../images/about-collage.png");
  height: 70%;
  display: flex;
  position: relative;
  opacity: 0;
  transition: opacity 500ms ease;
  clear: both;
}
@media screen and (max-width: 1024px) {
  #mission {
    height: 100%;
    margin-top: 70px;
  }
}
#mission.show {
  opacity: 1;
}
#mission.show h2 {
  opacity: 1;
  top: 0;
}
#mission.show .description-container p {
  opacity: 1;
  top: 0;
}
#mission:after {
  content: "";
  background-color: rgba(0, 0, 0, 0.75);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#mission h2 {
  z-index: 1;
  position: relative;
  text-align: center;
  color: white;
  align-self: center;
  opacity: 0;
  position: relative;
  top: 3vw;
  transition: opacity 500ms ease 300ms, top 500ms ease 300ms;
}
#mission .inner-container {
  align-self: center;
}
#mission .description-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding-top: 30px;
  align-self: center;
}
@media screen and (max-width: 1024px) {
  #mission .description-container {
    flex-flow: column;
    padding-top: 10px;
  }
}
#mission .description-container p {
  width: 55%;
  color: white;
  opacity: 0;
  position: relative;
  top: 3vw;
  font-size: 20px;
  text-align: center;
  margin: 20px 0;
  transition: opacity 500ms ease 500ms, top 500ms ease 500ms;
}
@media screen and (max-width: 1024px) {
  #mission .description-container p {
    width: 95%;
    padding: 0;
  }
}

/*# sourceMappingURL=about.css.map */
