/* HERO BANNER STYLING */
#hero_banner {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

#hero_banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#hero_banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 95%);
  z-index: 1;
}

#hero_banner > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 75%;
  z-index: 2;
}

#hero_banner > div > h1 {
  font-family: "Ruda", sans-serif;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  color: var(--background-color);
}
/* END */

#brief {
  margin-top: 6rem;
  margin-left: 8rem;
  margin-right: 8rem;
  margin-bottom: 6rem;
}
.brief_title {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.brief_title > h2 {
  font-family: "Ruda", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  color: var(--text-color);
  text-align: center;
  width: 50%;
  margin: 0;
}
.brief_subtitle {
  font-family: "Archivo", sans-serif;
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: var(--text-color);
  text-align: center;
  margin: 0;
  margin-top: 1.25rem;
}
.brief_content {
  display: flex;
  justify-content: center;
  margin-top: 8rem;
}
.brief_content p {
  width: 40%;
  font-size: 1.25rem; /* 20px */
  line-height: 1.75rem;
  margin: 0;
}
.brief_content > p:first-child {
  margin-right: 1rem;
}
.brief_content > p:last-child {
  margin-left: 1rem;
}

#mission {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--secondary-background-color);
  height: 334px;
  padding-left: 8rem;
  padding-right: 8rem;
}
#mission > .mission_content {
  width: 40%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
#mission > .mission_keypoints {
  width: 60%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mission_content > h3 {
  font-family: "Ruda", sans-serif;
  font-weight: 900;
  color: var(--text-color);
  font-size: 1.875rem;
  line-height: 2.25rem;
  margin: 0;
}
.mission_content > p {
  font-size: 1.25rem;
  line-height: 1.75rem;
  width: 70%;
  margin: 1rem 0;
}
.mission_content > .default_button {
  color: var(--background-color);
}

.mission_point p {
  margin: 0;
}
.mission_point p > span {
  font-family: "Ruda", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: var(--text-color);
}

#highlight {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}

#highlight > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    -90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 95%
  );
  z-index: 1;
}

#highlight > div {
  position: absolute;
  top: 25%;
  left: 0;
  transform: translate(0, -50%);
  z-index: 2;
}

.highlight_content {
  display: flex;
  justify-content: space-between;
  margin-top: 10rem;
  margin-bottom: 10rem;
  width: 80dvw;
  margin-left: 10vw;
  margin-right: 10vw;
}

.highlight_title {
  width: 50%;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.highlight_title > p:nth-child(1) {
  font-family: "Ruda", sans-serif;
  font-weight: 900;
  font-size: 6rem;
  line-height: 1;
  color: var(--background-color);
  margin: 0;
}
.highlight_title > p:nth-child(2) {
  font-family: "Ruda", sans-serif;
  font-weight: 900;
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: var(--background-color);
  margin: 0;
}
.highlight_title > p:nth-child(3) {
  font-family: "Archivo", sans-serif;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: var(--background-color);
  margin: 0;
}

.highlight_bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 1rem;
}

.highlight_bar > p {
  font-family: "Ruda", sans-serif;
  font-weight: 800;
  color: var(--background-color);
}
.highlight_bar > p > span {
  font-family: "Ruda", sans-serif;
  font-weight: 900;
  color: var(--tertiary-color);
  font-size: 1.5rem;
  line-height: 2rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.highlight_bar > .bar {
  width: 10px;
  background-color: #ffffff;
  height: 150%;
  border-radius: var(--border-radius);
  position: relative;
  z-index: 0;
}

.highlight_bar > .bar::after {
  content: " ";
  background-color: var(--tertiary-color);
  position: absolute;
  height: 25%;
  width: 100%;
  z-index: 3;
  top: 38%;
  border-radius: var(--border-radius);
}

#history > .history_content {
  padding-left: 20rem;
  padding-right: 20rem;
  padding-top: 12rem;
  padding-bottom: 12rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
#history > .history_content > h3 {
  font-family: "Ruda", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  color: var(--text-color);
  margin: 0;
  text-align: center;
}

.history_timeline {
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  width: 75%;
}

.history_timeline:nth-child(3) {
  margin-top: 11rem;
  margin-bottom: 11rem;
}
.history_timeline:last-child {
  margin-bottom: 6rem;
}

.history_timeline div {
  width: 45%;
  display: flex;
  flex-direction: column;
}

.history_timeline .quote {
  font-family: "Archivo", sans-serif;
  color: var(--tertiary-color);
  font-size: 8rem;
  font-weight: 900;
  vertical-align: bottom;
  margin: 0;
}
.history_timeline .title {
  font-family: "Ruda", sans-serif;
  color: var(--text-color);
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 900;
  margin: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.history_timeline .content {
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

#company {
  display: flex;
  justify-content: space-between;
  padding-left: 9rem;
  padding-right: 9rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: var(--secondary-background-color);
}

#company > div {
  width: 50%;
  display: flex;
  justify-content: center;
}

#company > .company_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#company > .company_content > h3 {
  font-family: "Ruda", sans-serif;
  font-weight: 900;
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: var(--text-color);
  margin: 0;
}
#company > .company_content > .subtitle {
  font-family: "Ruda", sans-serif;
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: var(--text-color);
  margin: 0;
}
#company > .company_content > .content {
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin: 0;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
#company > .company_content > .stats {
  display: flex;
  justify-content: center;
  width: 75%;
  align-self: center;
}
#company > .company_content > .stats > div {
  margin: 0.5rem auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#company > .company_content > .stats > div > p:first-child {
  font-family: "Ruda", sans-serif;
  font-weight: 900;
  font-size: 2.25rem;
  line-height: 2.5rem;
  color: var(--text-color);
}
#company > .company_content > .stats > div > p {
  margin: 0;
}
#company > .company_content > .stats > .separator {
  height: 115px;
  width: 2px;
  background-color: #ff0600;
}

.organigram_container {
  position: relative;
  width: 25dvw;
}

.organigram_container > .organigram_background {
  width: 100%;
  height: auto;
}

.organigram_container > .organigram_background > img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

.organigram_container > .organigram_item {
  position: absolute;
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
}

.organigram_item > p {
  margin: 0 auto;
  text-align: center;
}
.organigram_item > .title {
  font-family: "Ruda", sans-serif;
  font-weight: 800;
  color: var(--text-color);
}
.organigram_item > img {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.organigram_item.one {
  top: 0;
  left: 20%;
}

.organigram_item.two {
  top: 10%;
  right: 5%;
}

.organigram_item.three {
  bottom: 15%;
  right: 0%;
}

.organigram_item.four {
  bottom: 20%;
  left: 5%;
}

#partners {
  padding-top: 8rem;
  padding-bottom: 8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#partners > div > h3 {
  font-family: "Ruda", sans-serif;
  font-weight: 900;
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: var(--text-color);
  margin: 0;
}
#partners > div > p {
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: var(--text-color);
  margin: 0;
  margin-top: 2rem;
  margin-bottom: 3rem;
}
#partners > div > a {
  color: var(--background-color);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
#partners > div:last-child {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  row-gap: 3rem;
  column-gap: 6rem;
  margin-top: 7rem;
  margin-bottom: 7rem;
  align-items: center;
  justify-items: center;
}
