@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
section.intro-block {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.intro-block .semi-column {
  font-size: 8rem;
  font-weight: 500;
  color: #212020;
  animation: blink 0.9s linear infinite;
}
section.intro-block h1 {
  font-size: 7rem;
  font-weight: 500;
  color: #212020;
  font-family: "Playfair Display", serif;
}
section.intro-block h1 span {
  font-family: "Archivo", sans-serif;
  color: #ef6d1e;
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  section.intro-block h1 {
    font-size: 4rem;
  }
  section.intro-block .semi-column {
    font-size: 4rem;
  }
}
header {
  display: grid;
  position: fixed;
  width: 100%;
  z-index: 1001;
  --line-width: 0%;
  --line-color: #212020;
}
header::after {
  content: "";
  display: block;
  clear: both;
  height: 2px;
  width: var(--line-width);
  background-color: var(--line-color);
}
header .background-bar {
  background-color: #ef6d1e;
  height: 100px;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  height: 0;
  z-index: 999;
}
header .header-bar {
  position: relative;
  width: 100%;
  display: inherit;
}
header .header-bar .logo-container {
  display: flex;
  align-items: center;
  justify-self: center;
  text-align: center;
  line-height: 80px;
}
header .header-bar .logo-container .logo {
  z-index: 1000;
  font-family: "Archivo", sans-serif;
  color: #ef6d1e;
  font-weight: 500;
  font-size: 2rem;
}

section.about {
  display: grid;
  align-items: start;
  justify-content: center;
}
section.about .about-section {
  display: flex;
  color: #fae0d1;
  height: 100vh;
  -moz-column-gap: 80px;
       column-gap: 80px;
  transform: translateY(200px);
  border-top: 5px solid #EBE9E1;
  border-bottom: 5px solid #EBE9E1;
  --title-width-one: 0px;
  --title-width-two: 0px;
  --title-width-three: 0px;
}
section.about .about-section .number {
  font-size: 12rem;
  font-weight: 500;
  margin-right: 3rem;
  align-self: center;
  transform: translateX(-100px);
}
section.about .about-section .number .svg-icon {
  width: 250px;
  height: 250px;
}
section.about .about-section .about-content {
  align-self: center;
  font-size: 1.5rem;
  line-height: 32px;
  transform: translateX(100px);
}
section.about .about-section .about-content .title {
  font-family: "Archivo", sans-serif;
  font-size: 3rem;
  margin-bottom: 40px;
}
section.about .about-section .about-content .title::after {
  content: "";
  display: block;
  width: var(--title-width-one);
  height: 5px;
  background-color: #fae0d1;
  margin-top: 20px;
}
section.about .about-section.second {
  transform: translateY(200%);
  color: #bcd5ff;
}
section.about .about-section.second .about-content {
  transform: translateX(-100px);
}
section.about .about-section.second .about-content .title::after {
  width: var(--title-width-two);
  background-color: #bcd5ff;
  margin-top: 20px;
}
section.about .about-section.second .number {
  transform: translateX(100px);
}
section.about .about-section.third {
  color: #bdf7ff;
  transform: translateY(200%);
}
section.about .about-section.third .about-content .title::after {
  width: var(--title-width-three);
  background-color: #bdf7ff;
  margin-top: 20px;
}
section.about .about-section:last-child {
  border-bottom: none;
}

@media screen and (max-width: 768px) {
  section.about .about-section {
    -moz-column-gap: unset;
         column-gap: unset;
    display: grid;
    height: unset;
    padding: 100px 0;
  }
  section.about .about-section .number {
    margin-right: 0;
    text-align: center;
    grid-row: 1/2;
  }
  section.about .about-section .number lord-icon {
    height: 300px !important;
    width: 300px !important;
  }
  section.about .about-section .about-content {
    font-size: 1.2rem;
  }
  section.about .about-section .about-content .title {
    font-size: 2rem;
  }
}
section.timeline .timeline-section {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 200px;
       column-gap: 200px;
  height: auto;
}
section.timeline .timeline-section .timeline-title {
  width: 25%;
  position: -webkit-sticky;
  top: 150px;
  height: 1px;
  position: sticky;
  color: #ef6d1e;
  font-size: 4rem;
  font-family: "Archivo", sans-serif;
}
section.timeline .timeline-section .timeline-block {
  position: relative;
  --bar-height: 0px;
}
section.timeline .timeline-section .timeline-block .timeline-role {
  font-size: 1rem;
  font-family: "Archivo", sans-serif;
  color: #353535;
  font-weight: 500;
  margin-bottom: 10px;
}
section.timeline .timeline-section .timeline-block::before {
  content: "";
  position: absolute;
  clear: both;
  width: 1px;
  top: 0;
  height: var(--bar-height);
  left: 0;
  background-color: #ef6d1e;
}
section.timeline .timeline-section .timeline-item {
  margin-bottom: 250px;
  color: #212020;
  transform: translateX(200%);
}
section.timeline .timeline-section .timeline-item:first-child {
  margin-top: 50px;
}
section.timeline .timeline-section .timeline-item .timeline-content {
  display: flex;
  -moz-column-gap: 50px;
       column-gap: 50px;
  justify-self: start;
}
section.timeline .timeline-section .timeline-item .timeline-content .timeline-year {
  color: #bf7c54;
  font-family: "Archivo", sans-serif;
  width: 200px;
  padding-left: 40px;
  align-self: center;
}
section.timeline .timeline-section .timeline-item .timeline-content .timeline-year::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: #bf7c54;
  border-radius: 50%;
  position: absolute;
  left: -10px;
}
section.timeline .timeline-section .timeline-item .timeline-content .timeline-company {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: "Archivo", sans-serif;
  color: #ef6d1e;
}

@media screen and (max-width: 768px) {
  section.timeline .timeline-section {
    height: auto;
    -moz-column-gap: 0;
         column-gap: 0;
  }
  section.timeline .timeline-section .timeline-title {
    width: 0;
    top: 100px;
    left: 5px;
    font-size: 1.5em;
  }
  section.timeline .timeline-section .timeline-year {
    width: 20px !important;
    padding-left: 20px !important;
  }
  section.timeline .timeline-section .timeline-company {
    font-size: 1.5rem !important;
  }
}
body {
  margin: 0;
  overflow-x: clip;
  background-color: #EBE9E1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 3rem;
}

main {
  padding: 2rem;
  max-width: 2800px;
  margin: 0 auto;
}

.footer-bar {
  background-color: #141514;
  color: #afafaf;
  font-family: "Archivo", sans-serif;
  text-align: center;
  padding: 20px 0;
}
.footer-bar a {
  color: #afafaf;
  text-decoration: none;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  main {
    padding: 1rem;
  }
}/*# sourceMappingURL=style.css.map */
