@charset "UTF-8";

/* CSS Document */
.main {
  background-color: #fff;
}

.section-history {
  position: relative;
  padding: 100px 0;
  z-index: 1;
}

.section-history__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: text 0.7s linear both;
  z-index: 1;
}

.section-history__text img {
  position: absolute;
  width: 800px;
  object-fit: cover;
  margin: -190px 0px 0 -413px;
  display: block;
  z-index: 0;
  transform: translate(50px, 50px);
}

.section-history__text h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-style: italic;
  font-size: 44px;
  font-weight: 480;
  color: #1A3185;
  line-height: 120%;
  position: relative;
  z-index: 1;
  padding: 0 0 2px;
}

.section-history__text h3 {
  font-size: 16px;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  font-weight: 500;
  color: #1A3185;
}

.section-founder__story h4 {
  font-size: 16px;
  padding: 0 0 100px 0;
  line-height: 200%;
  letter-spacing: normal;
  z-index: 1;
  font-weight: 450;
  color: #1A3185;
  width: 80%;
  margin: 0 auto;
  justify-content: space-between;
  max-width: 1024px;
  position: relative;
  text-align: center;
}

@keyframes text {
  0% {
    opacity: 0;
    filter: blur(30px);
    left: 55%;
  }

  100% {
    opacity: 1;
    filter: blur(0);
    left: 50%;
  }
}

.section-founders ul li {
  width: 32%;
}

.section-founders {
  position: relative;
  z-index: 2;
}

.section-founders__title {
  padding: 0 0 20px;
}

.section-founders__title h2 {
  font-size: 3rem;
  font-family: "Roboto Condensed", sans-serif;
  font-style: italic;
  letter-spacing: 1.2px;
  font-weight: 500;
  text-align: left;
  width: 80%;
  display: flex;
  margin: 0 auto;
  max-width: 1024px;
  position: relative;
  z-index: 1;
}

.section-founders__title h3 {
  font-size: 1.5rem;
  text-align: left;
  letter-spacing: 0.5px;
  font-weight: 500;
  padding: 4px 0 0 0;
  position: relative;
  z-index: 1;
  width: 80%;
  display: flex;
  margin: 0 auto;
  max-width: 1024px;
}

.section-founders__profile {
  padding: 0 0 120px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.section-founders__profile ul {
  width: 80%;
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  max-width: 1024px;
  position: relative;
}

.section-founders__profile h2 {
  font-size: 32px;
  font-style: italic;
  letter-spacing: 0px;
  padding-bottom: 8px;
  max-width: 1024px;
}

.section-founders__profile h3 {
  text-align: center;
  font-size: 16px;
  text-align: left;
  padding: 10px 0 4px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 180%;
  cursor: pointer;
}

/* underline animation */
.section-founders__profile h3 {
  text-decoration: none;
}

/* reset default css */
.section-founders__profile h3::after {
  content: "";
  display: block;
  width: 0;
  transition: width 1.0s;
  border-bottom: 2px solid #79e3fd;
  opacity: 0.6;
  cursor: pointer;
}

.section-founders__profile h3:hover::after {
  cursor: pointer;
  width: 100%;
}

/* underline animation */

.section-founders p {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: left;
  padding: 4px 0 0px 0;
  line-height: 170%;
  letter-spacing: 0.5px;
}

.section-founders__picture {
  width: 100%;
  object-fit: cover;
  object-position: none;
  height: 300px;
  border-radius: 10px;
}

/* .right:last-child {
  padding-bottom: 80px;;
} */

.section-timeline__title {
  padding: 30px 0 140px;
  position: relative;
  z-index: 1;
  color: #1A3185;
  background-color: #FFF;
}

.section-timeline__title h2 {
  padding: 0 0 4px 0;
  font-family: "Roboto Condensed", sans-serif;
  font-style: italic;
  font-size: 40px;
  font-weight: 480;
  line-height: 120%;
  position: relative;
  z-index: 1;
}

.section-timeline__title h3 {
  font-size: 16px;
  letter-spacing: 1px;
  /* color: #055eec; */
  position: relative;
  z-index: 1;
}

.section-timeline__title img {
  width: 100%;
  height: 22vw;
  object-fit: contain;
  object-position: center;
  position: absolute;
  transform: translate(-48%, -58%);
  z-index: 0;
}

.timeline-image {
  width: 100%;
  object-fit: cover;
  z-index: 0;
  border-radius: 10px 10px 0 0;
  position: center;
}

* {
  box-sizing: border-box;
}

/* timeline */
/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 90%;
  width: 95%;
  margin: 0 auto;
  border-radius: 8px 8px 0 0;
  z-index: 1;
  padding: 10px 0 100px 0;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 3px;
  background-color: #9FE4F4;
  background: rgb(231, 249, 255);
  background: linear-gradient(0deg, rgba(231, 249, 255, 1) 67%, rgba(199, 244, 255, 1) 100%);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  height: 100%;
  z-index: 0;
}

/* Container around content */
.container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.container h2 {
  font-size: 17px;
  font-weight: 500;
  padding: 10px 16px 8px;
  text-align: left;
  letter-spacing: 1px;
  line-height: 160%;
}

/* underline animation */
.container h2 {
  text-decoration: none;
}

/* reset default css */

.container h2::after {
  content: "";
  display: block;
  width: 0;
  transition: width 1.0s;
  border-bottom: 2px solid #79e3fd;
  opacity: 0.6;
  cursor: pointer;
}

.container h2:hover::after {
  cursor: pointer;
  width: 100%;
}

/* underline animation */

.container h3 {
  font-size: 1.7rem;
  font-weight: 600;
  padding: 2px 16px 4px;
  line-height: 150%;
  letter-spacing: 1px;
  text-align: left;
}

/* underline animation */
.container h3 {
  text-decoration: none;
}

/* reset default css */

.container h3::after {
  content: "";
  display: block;
  width: 0;
  transition: width 0.3s;
  border-bottom: 2px solid #6ed6ff;
  cursor: pointer;
}

.container h3:hover::after {
  cursor: pointer;
  width: 100%;
}

/* underline animation */

.container p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.5px;
  text-align: left;
  padding: 0 16px 16px;
}

/* The circles on the timeline */
.container::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  right: -6.5px;
  background-color: #FF8859;
  top: 50px;
  border-radius: 50%;
  z-index: 1;
  border: 3px solid #fff;
}

/* Place the container to the left */
.left {
  left: 0;
  padding: 0px 30px 0 70px;
  border-radius: 8px 0 0 0;
}

.left:first-child {
  padding-top: px;
}

/* Place the container to the right */
.right {
  left: 50%;
  padding: 0px 70px 0px 30px;
  border-radius: 0 8px 0 0;
}

/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 48px;
  width: 0;
  z-index: 1;
  right: 20px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 48px;
  width: 0;
  z-index: 1;
  left: 20px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
  left: -9.5px;
}

/* The actual content */
.content {
  background-color: none;
  position: relative;
  border-radius: 0px;
  background-color: #FFF;
  border-radius: 10px;
  box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

.date {
  background: #FF6634;
  border-radius: 0 10px 0 0;
  font-family: "roboto condensed", sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 350;
  display: inline-block;
  color: #FFFFFF;
  padding: 6px 12px;
  position: absolute;
  top: 0;
  right: 0;
}

/* still figuring this out */
.content:nth-child(even).date.date {
  right: auto;
  left: 0;
}

.date-right {
  background: #FF6634;
  font-family: "roboto condensed", sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 350;
  display: inline-block;
  color: #FFFFFF;
  padding: 6px 12px;
  position: absolute;
  top: 0;
  right: auto;
  left: 0;
  border-radius: 10px 0 0 0;
}

.content:nth-child(even).date {
  right: auto;
  left: 0;
}

/* timeline */

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  .section-history {
    background-color: #fff;
    margin: 0 auto;
    padding: 60px 0;
  }

  .section-history__text {
    width: 100%;
  }

  .section-history__text h2 {
    font-size: 3.2rem;
    font-weight: 540;
    padding: 0;
    letter-spacing: 0.7px;
  }

  .section-history__text h3 {
    font-size: 16px;
    font-weight: 500;
    padding-top: 3px;
    letter-spacing: 0.7px;
  }

  .section-founder__story h4 {
    font-size: 14px;
    width: 93%;
    padding: 8px 0 40px 0;
    font-weight: 500;
    line-height: 180%;
    letter-spacing: normal;
    z-index: 1;
    color: #1A3185;
    text-align: left;
  }

  .section-founders__image {
    background-position: top right;
    background-repeat: no-repeat;
    width: 100%;
  }

  .section-history__text img {
    width: 100%;
    object-fit: cover;
    height: 68vw;
    margin: -146px 0px 0 -50px;
    z-index: 0;
  }

  .section-founders__profile ul {
    z-index: 1;
    position: relative;
    width: 100%;
  }

  .section-founders {
    padding: 0;
    margin: 0;
    width: 100%;
    z-index: 2;
    position: relative;
  }

  .section-founders__profile hr {
    width: 95%;
  }

  .section-founders__title {
    padding: 0px 12px 16px
  }

  .section-founders__title h2 {
    font-size: 27px;
    font-weight: 540;
    letter-spacing: 0.7px;
    text-align: left;
    padding: 0 0 2px 0;
    margin: 0;
  }

  .section-founders__title h3 {
    font-size: 14px;
    text-align: left;
    padding: 0;
    margin: 0;
  }

  .section-founders p {
    letter-spacing: 0.3px;
    padding: 0px 12px 16px;
    margin: 0 auto;
    font-size: 1.3rem;
    letter-spacing: 0.3px;
    color: #1A3185;
    line-height: 1.5;
    z-index: 1;
    position: relative;
    font-weight: 450;
  }

  .section-founders__profile {
    padding: 0 0 50px;
  }

  .section-founders__profile h3 {
    font-size: 16px;
    font-weight: 800;
    text-align: left;
    padding: 4px 12px 4px;
  }

  .section-founders__profile ul {
    display: block;
    position: relative;
    padding: 0;
    z-index: 1;
  }

  .section-founders__profile ul li {
    width: 100%;
    position: relative;
    padding: 0;
    z-index: 1;
  }

  .section-founders__picture {
    width: 100%;
  }


  .date-right {
    padding: 6px 12px;
    top: 0;
    left: auto;
    font-weight: 400;
    font-size: 14px;
  }

  /* Place the timelime to the left */
  .timeline::after {
    left: 12px;
  }

  /* Full-width containers */
  .container {
    width: 100%;
    padding-left: 55px;
    padding-right: 70px;
    max-width: 700px;
    padding: 10px 16px 6px 24px;
  }

  /* Make sure that all arrows are pointing leftwards */
  .container::before {
    left: 13px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }

  /* Make sure all circles are at the same spot */
  .left::after,
  .right::after {
    left: 2.5px;
  }

  /* Make all right containers behave like the left ones */
  .right {
    left: 0%;
  }

  .content h3 {
    font-size: 16px;
    z-index: 1;
  }

  .header-content-wrapper {
    margin: 0 auto;
    position: relative;
  }


  .timeline {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0px;
    padding: 10px 0 50px 0;
  }


  .section-timeline__title {
    padding: 0 0 20px 0;
  }

  .section-timeline__title h2 {
    font-size: 3.2rem;
    font-weight: 540;
    letter-spacing: 0.7px;
    padding: -46px 0;
    z-index: 1;
  }

  .section-timeline__title h3 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.7px;

  }

  .section-timeline__title img {
    z-index: 0;
    width: 100%;
    height: 72vw;
    object-fit: cover;
    transform: translate(-50%, -50%);
  }

  .section-timeline__tag h2 {
    padding: 0 0 30px;
    font-size: 20px;
  }

  .date {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 400;
    display: inline-block;
    color: #FFFFFF;
    padding: 6px 12px;
    position: absolute;
    top: 0;
    right: auto;
    left: auto;
  }

  .container h2 {
    font-size: 1.6rem;
    font-weight: 600;
  }


  .container p {
    font-size: 1.3rem;
    font-weight: 450;
  }

  .timeline::after {
    width: 3px;
    height: auto;
  }
}