/*-------------------------- LANDING PAGE -------------------------*/

/*--- ABOUT THE ORGANISATION ---*/
.section--about {
  background-image:
    linear-gradient(to right, var(--color-white) 0%, var(--color-white) 60%, rgba(230, 245, 246, 0.5) 60%, rgba(230, 245, 246, 0.5) 100%),
    url("../../assets/images/h7_shape.png");
  background-position: bottom right;
  background-repeat: no-repeat;
}

.about__img {
  width: 100%;
}

/*--- FACTS AND NUMBERS FOR THE COMPANY ---*/
.section--facts {
  background-image: linear-gradient(to right, var(--color-secondary) 0%, var(--color-secondary) 60%, rgba(23, 62, 98, 0.4) 60%, rgba(0, 152, 169, 0.4) 100%);
  position: relative;
}

@media only screen and (max-width: 56.25em) {
  .section--facts {
    background-image: none;
    background-color: var(--color-secondary);
  }
}

/*--- FACTS INFO CONTAINER ---*/
.facts__info-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 4rem;
}

.facts__info {
  flex: 0 0 50%;
}

@media only screen and (max-width: 56.25em) {
  .facts__info {
    flex: 1;
  }
}

@media only screen and (max-width: 27.5em) {
  .facts__info {
    flex: 0 0 50%;
  }
}

.facts__info-value {
  font-family: var(--font-primary);
  font-size: 6rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1rem;
}

.facts__info-value > span {
  display: inline-block;
  font-size: 4rem;
  transform: translateY(-2rem);
}

.facts__info-description {
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/*--- BACKGROUND IMAGE IN THE FACTS SECTION ---*/
.facts__img-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  z-index: -1;
}

.facts__img {
  width: 100%;
  height: 100%;
}

/*-------------------------- LANDING PAGE -------------------------*/
