@font-face {
  font-family: "Helvetica bold";
  src: url("../fonts/Helvetica-Bold.woff2") format("woff2"), url("../fonts/Helvetica-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica light";
  src: url("../fonts/Helvetica-Light.woff2") format("woff2"), url("../fonts/Helvetica-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica.woff2") format("woff2"), url("../fonts/Helvetica.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.2;
  font-family: "Helvetica";
  font-size: 16px;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .grid {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header ul {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header ul a {
  font-size: 16px;
  text-decoration: none;
  color: inherit;
  padding: 0 1rem;
}
header ul .active a {
  font-weight: bold;
  background: rgb(215, 55, 177);
  background: -o-linear-gradient(45deg, #d737b1 0%, #d737b1 10%, #ea7276 10%, #ea7276 15%, #d737b1 80%);
  background: linear-gradient(45deg, #d737b1 0%, #d737b1 10%, #ea7276 10%, #ea7276 15%, #d737b1 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
header .mobile-btn {
  width: 35px;
  height: 50px;
  position: absolute;
  right: 15px;
  top: 15px;
  display: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
header .mobile-btn span {
  width: 100%;
  height: 4px;
  border-radius: 3px;
  display: block;
  margin-bottom: 6px;
  background: rgb(215, 55, 177);
  background: -o-linear-gradient(45deg, #d737b1 0%, #d737b1 10%, #ea7276 10%, #ea7276 15%, #d737b1 80%);
  background: linear-gradient(45deg, #d737b1 0%, #d737b1 10%, #ea7276 10%, #ea7276 15%, #d737b1 80%);
}
header .mobile-btn.active {
  top: 25px;
  right: 5px;
}
header .mobile-btn.active span:nth-child(1) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 80%;
}
header .mobile-btn.active span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 0;
  width: 80%;
}
header .mobile-btn.active span:nth-child(3) {
  display: none;
}

section ul li {
  margin-bottom: 2rem;
}

ul.dots li {
  position: relative;
  padding-left: 24px;
}
ul.dots li:before {
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  left: 0;
  top: 4px;
  background: rgb(215, 55, 177);
  background: -o-linear-gradient(45deg, #d737b1 0%, #d737b1 10%, #ea7276 10%, #ea7276 15%, #d737b1 80%);
  background: linear-gradient(45deg, #d737b1 0%, #d737b1 10%, #ea7276 10%, #ea7276 15%, #d737b1 80%);
  border-radius: 5px;
}

main {
  min-height: 100%;
  padding-top: 3rem;
}

.gr {
  background: rgb(215, 55, 177);
  background: -o-linear-gradient(45deg, #d737b1 0%, #d737b1 5%, #ea7276 5%, #ea7276 15%, #d737b1 80%);
  background: linear-gradient(45deg, #d737b1 0%, #d737b1 5%, #ea7276 5%, #ea7276 15%, #d737b1 80%);
}

b {
  font-family: "Helvetica bold";
}

a {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
a:hover {
  color: #016fa0 !important;
}

h1, h2, h3, .title {
  font-family: "Helvetica bold";
  font-size: 50px;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  font-size: 90px;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

section {
  overflow: hidden;
}

section .col-100 {
  width: 100%;
}

#disease-s .wrapper, #pipeline-s .wrapper, #contact-s .wrapper {
  -webkit-transition: opacity 1s, -webkit-transform 0.45s;
  transition: opacity 1s, -webkit-transform 0.45s;
  -o-transition: transform 0.45s, opacity 1s;
  transition: transform 0.45s, opacity 1s;
  transition: transform 0.45s, opacity 1s, -webkit-transform 0.45s;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
}

#disease-s.active .wrapper, #pipeline-s.active .wrapper, #contact-s.active .wrapper {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.sub-title {
  font-family: "Helvetica bold";
  margin-bottom: 2rem;
}

.sub-title-big {
  font-size: 26px;
  margin-bottom: 2rem;
}

.title-above {
  font-family: "Helvetica bold";
  font-size: 16px;
}

.grid {
  max-width: 992px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  padding: 1rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.grid .wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.grid .col-50 {
  max-width: 50%;
  width: 100%;
}

#home-s {
  background-image: url(../img/homepage.jpg);
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: 100% auto;
  text-align: center;
}
#home-s .grid {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#home-s .wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#home-s h1 {
  font-size: 45px;
  font-family: "Helvetica Bold";
  text-transform: none;
}
#home-s .text {
  margin-top: 3rem;
}

#disease-s {
  background-image: url(../img/alopecia.jpg);
  background-repeat: no-repeat;
  background-position: 80% 100%;
}
#disease-s .fp-tableCell .text {
  max-width: 65%;
  margin-top: 4rem;
}
#disease-s p {
  margin-bottom: 1.5rem;
}

#pipeline-s .col-40 {
  max-width: 40%;
  width: 100%;
}
#pipeline-s .col-60 {
  padding-right: 2rem;
  max-width: 60%;
}
#pipeline-s p {
  margin-bottom: 1rem;
}
#pipeline-s a {
  text-decoration: none;
  color: #be2f62;
}
#pipeline-s img {
  width: 100%;
}

.leadership h2 {
  margin-bottom: 4rem;
  text-align: center;
}

#contact-s {
  font-size: 24px;
  background-image: url(../img/homepage.jpg);
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: 100% auto;
}
#contact-s h2, #contact-s p {
  min-width: 100%;
}
#contact-s p {
  margin-top: 3rem;
}
#contact-s a {
  font-weight: bold;
  text-decoration: none;
  color: #000;
}
#contact-s .wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
}

.board {
  width: 100%;
}
.board .people {
  padding-top: 5rem;
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #ccc;
  position: relative;
}
.board .people a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #000;
  width: 25%;
  padding-bottom: 3rem;
}
.board .people a .img {
  margin: 0 auto;
  margin-bottom: 2rem;
  display: block;
  max-width: 155px;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  border-radius: 100px;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  padding: 5px;
}
.board .people a .img:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  border-radius: 100px;
  background: rgb(120, 186, 204);
  background: -o-linear-gradient(305deg, rgb(120, 186, 204) 0%, rgb(1, 91, 161) 100%);
  background: linear-gradient(145deg, rgb(120, 186, 204) 0%, rgb(1, 91, 161) 100%);
  margin: 0 auto;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.board .people a img {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
}
.board .people a div {
  display: block;
  font-size: 16px;
  font-family: "Helvetica light";
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0.7s;
       -o-transition-delay: 0.7s;
          transition-delay: 0.7s;
  margin-top: 6.5rem;
  margin-left: 1rem;
}
.board .people a.active .img:before {
  background: rgb(215, 55, 177);
  background: -o-linear-gradient(305deg, #d737b1 0%, #d737b1 5%, #ea7276 5%, #ea7276 15%, #d737b1 80%);
  background: linear-gradient(145deg, #d737b1 0%, #d737b1 5%, #ea7276 5%, #ea7276 15%, #d737b1 80%);
}
.board .people .line-active {
  position: absolute;
  bottom: -4px;
  left: -100%;
  height: 4px;
  width: 0;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  background: rgb(215, 55, 177);
  background: -o-linear-gradient(45deg, #d737b1 0%, #d737b1 5%, #ea7276 5%, #ea7276 15%, #d737b1 80%);
  background: linear-gradient(45deg, #d737b1 0%, #d737b1 5%, #ea7276 5%, #ea7276 15%, #d737b1 80%);
}
.board .content {
  position: relative;
  min-height: 100px;
}
.board .item {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -o-transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s;
  background: #fff;
  z-index: 1;
}
.board .item.active {
  z-index: 210;
  display: block;
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  z-index: 100;
}
.board .active-name {
  display: none;
  opacity: 0;
  z-index: 1000;
  position: relative;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

section.fp-completely .board .active-name {
  opacity: 1;
}

section.fp-completely .board .people a div {
  opacity: 1;
}

.pipeline {
  width: 100%;
}
.pipeline h2 {
  text-align: center;
  width: 100%;
  margin-bottom: 3rem;
}
.pipeline .pipeline-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.pipeline .pipeline-wrapper .cols {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 250px;
  overflow: hidden;
}
.pipeline .pipeline-wrapper .cols .lines {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  padding-top: 5rem;
  padding-bottom: 2rem;
}
.pipeline .pipeline-wrapper .cols .lines span {
  display: block;
  height: 16px;
  position: relative;
  width: 0;
  -webkit-transition: width 1s;
  -o-transition: width 1s;
  transition: width 1s;
  left: -15px;
}
.pipeline .pipeline-wrapper .cols .lines span:after {
  content: "";
  position: absolute;
  right: -15px;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 15px;
  border-color: transparent transparent transparent #a70f7f;
}
.pipeline .pipeline-wrapper .cols-text {
  width: 25%;
  padding-top: 5rem;
}
.pipeline .pipeline-wrapper .cols-text b {
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  font-family: "Helvetica bold";
  display: block;
  width: 100%;
}
.pipeline .pipeline-wrapper .cols-text span {
  font-family: "Helvetica light";
  font-size: 12px;
  text-transform: uppercase;
}
.pipeline .pipeline-wrapper .cols-text p {
  margin-bottom: 1rem;
}
.pipeline .pipeline-wrapper .col {
  width: 25%;
  text-align: center;
  border-right: 1px solid #ccc;
}
.pipeline .pipeline-wrapper .col .heading {
  font-size: 12px;
  opacity: 0.5;
}
.pipeline .pipeline-wrapper .col:last-child {
  border-right: 0;
}

@media (max-width: 991.98px) {
  section {
    padding-top: 95px;
  }

  #contact-s {
    padding-top: 0;
  }

  h1, h2 {
    font-size: 13vw;
  }

  .sub-title-big {
    font-size: 20px;
  }

  .grid .wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .grid .col-50, .grid .col-40, .grid .col-60 {
    max-width: 100% !important;
  }
}
@media (max-width: 767.98px) {
  a {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  }

  header ul {
    display: none;
    background: #fff;
    text-align: right;
    -webkit-box-shadow: 0px 10px 5px -8px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 10px 5px -8px rgba(34, 60, 80, 0.2);
    position: absolute;
    left: 0;
    width: 100%;
    padding: 15px;
  }
  header ul.active {
    display: block;
  }
  header ul a {
    width: 100%;
    padding: 5px 0;
    display: block;
    font-size: 20px;
    font-family: "Helvetica bold";
  }
  header .mobile-btn {
    display: block;
  }

  header .grid {
    display: block;
  }

  body {
    font-size: 14px;
  }

  br {
    display: none;
  }

  section.active-final .col-50 {
    -webkit-transform: translateY(0) !important;
        -ms-transform: translateY(0) !important;
            transform: translateY(0) !important;
    opacity: 1 !important;
  }

  h2, h3, .title {
    margin-bottom: 0.5rem;
    display: block;
    width: 100%;
  }

  h1 {
    font-size: 7vw !important;
  }

  .sub-title, .sub-title-big {
    font-size: 16px;
    margin-bottom: 0.5rem;
  }

  .board .people {
    min-height: 160px;
  }

  .board .people a div {
    display: none;
  }

  .board .active-name {
    display: block;
  }

  .board .item {
    padding-top: 1.5rem;
  }

  .board .people a {
    padding-bottom: 1rem;
  }

  #home-s {
    background-size: cover;
  }

  #home-s .grid {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 120px;
  }

  .leadership .grid .wrapper {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .leadership h2 {
    margin-bottom: 1rem;
    text-align: center;
  }

  #disease-s {
    background-size: 50%;
    background-position: 100% 100%;
  }
  #disease-s .grid {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #disease-s .fp-tableCell .text {
    max-width: 100%;
    margin-top: 1rem;
  }

  #pipeline-s .col-60 {
    padding-right: 0;
    margin-bottom: 1rem;
  }
}
@media (max-width: 575.98px) {
  .board .people {
    padding-top: 1rem;
    min-height: 135px;
  }
}
@media (max-width: 400px) {
  .board .people {
    min-height: 105px;
  }
}