@import url("https://fonts.googleapis.com/css2?family=Asap&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Asap", sans-serif;
}
body {
  background: #42455a;
}
section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
section:nth-child(1) {
  color: #e0ffff;
}
section:nth-child(2) {
  color: #42455a;
  background: #e0ffff;
}
section:nth-child(3) {
  color: #e0ffff;
}
section:nth-child(4) {
  color: #42455a;
  background: #e0ffff;
}
section .container {
  margin: 100px;
}
section h1 {
  font-size: 3rem;
  margin: 20px;
}
section h2 {
  font-size: 40px;
  text-align: center;
  text-transform: uppercase;
}
section .text-container {
  display: flex;
}
section .text-container .text-box {
  margin: 20px;
  padding: 20px;
  background: #00c2cb;
}
section .text-container .text-box h3 {
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  section h1 {
    font-size: 2rem;
    text-align: center;
  }
  section .text-container {
    flex-direction: column;
  }
}

.reveal {
  position: relative;
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}
.active.fade-bottom {
  animation: fade-bottom 1s ease-in;
}
.active.fade-left {
  animation: fade-left 1s ease-in;
}
.active.fade-right {
  animation: fade-right 1s ease-in;
}
@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

figure {
  background: #1e474a;
  padding: 5px 60px;
}
blockquote {
  position: relative;
  margin: 0 0 20px;
}
blockquote p {
  margin: 0;
}
blockquote:before {
  position: absolute;
  top: 0;
  left: -45px;
  content: "\f10d";
  font-family: 'Fontawesome';
  font-size: 40px;
  color: #e1eaed;
}

figcaption {
  position: relative;
  text-align: right;
}
figcaption:after {
  content: "";
  display: block;
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e1eaed;
}
figcaption span {
  display: inline-block;
  position: relative;
  margin-right: 40px;
  padding: 0 8px;
  top: 0%;
  background: #1e474a;
  z-index: 1;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.accordion-content.expanded {
  max-height: 1000px; /
}

#toggle-header-pro {
  cursor: pointer;
  margin: 0;
  padding: 10px;
}

#toggle-header-studies {
  cursor: pointer;
  margin: 0;
  padding: 10px;
}
