/* poppins-latin-400-normal
@font-face {
  font-family: "Poppins";
  src: url("./Assets/Poppins-SemiBold.ttf");
  
} */

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; /* prevents scrolling */
  font-family: "Poppins";
  background: linear-gradient(
    180deg,
    rgb(0, 76, 69),
    rgb(0, 67, 63),
    rgb(0, 60, 57),
    rgb(0, 53, 51),
    rgb(0, 44, 45)
  );
}
body, p, div {
  font-weight: 200;
}
.page {
  position: relative;
  width: 100%;
  height: 100%;

  /* background: linear-gradient(); dark green base */
  background-image: url("./Assets/BG-Vector.svg");
  background-size: cover; /* image fills page */
  background-position: 80%;
  color: #ffffff;
}

.center-content {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 630px;
}

.logo-top {
  position: absolute;
  top: 125px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
}

.logo-icon {
  width: 50px;
  height: 50px;
  border-radius: 4px;
}

.logo-text {
  width: 400px;
  /* letter-spacing: 0.15em;
  font-size: 25px;
  text-transform: uppercase; */
}

.body-text {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 60px;
  letter-spacing: 0.05em;
}

.bottom-logos {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
}

.bottom-logo-box {
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bottom-logo-Mubadala {
  /* width: 55px; */
  height: 35px;
}
.bottom-logo-Aldar {
  /* width: 55px; */
  height: 80px;
  border: 2px solid;
}
.underline {
  text-decoration: underline;
  text-decoration-color: white;
  text-decoration-thickness: 2px;
  color: #fff
}
@media (max-width: 810px) {
  .center-content {
    text-align: center;
    position: relative;
    max-width: 500px;
    top : 50%
  }
  .logo-top {
    width: 80%;
  }
  .logo-text {
    max-width: 80%;
  }
  .body-text {
    font-size: 13px;
  }
  .bottom-logos {
    bottom: 20px;
  }
  .bottom-logo-Aldar {
    height: 60px;
  }
  .bottom-logo-Mubadala {
    height: 25px;
  }
}
@media (max-width: 550px) {
  .center-content {
    text-align: center;
    position: relative;
    max-width: 90%;
  }
  .logo-top {
    width: 90%;
  }
  .logo-text {
    max-width: 100%;
  }
  .body-text {
    font-size: 13px;
  }
  .bottom-logos {
    bottom: 50px;
  }
  .bottom-logo-Aldar {
    height: 60px;
  }
  .bottom-logo-Mubadala {
    height: 25px;
  }
}

@media (max-width: 440px) {
 .logo-top {
    top: 50px;
  }
  .body-text {
    font-size: 13px;
  }
  .bottom-logo-Aldar {
    height: 50px;
  }
  .bottom-logo-Mubadala {
    height: 25px;
  }
}