@import "colors.css";
@import url("https://fonts.googleapis.com/css?family=Play&display=swap");
@import url("https://fonts.googleapis.com/css?family=Almarai&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css?family=Galada&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "play";
  box-sizing: border-box;
}

body {
  background: var(--background-color);
  color: var(--text-color);
  transition: background 0.8s, color 0.8s;
  font-family: "Amiri", "play", "Roboto", "Galada", sans-serif;
}

/* ------------------------ section-1 ---------------------------------------------------- */
.section-1 {
  position: relative;
  background-color: var(
    --background-color9
  ); /* Fallback color in case the video doesn't load */
  margin: 0px 0 60px 0;
  height: 500px;
}

.section-1 .container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  max-width: 100%;
}

.background-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.title-container {
  display: block;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  z-index: 1;
}

.title-container h1 {
  font-size: 100px;
  font-weight: 800;
  letter-spacing: 5px;
  word-spacing: 5px;
  color: var(--title-color);
  margin-top: 80px;
  margin-bottom: 40px;
  overflow: hidden;
}

/* ------------------------ section-2 ---------------------------------------------------- */
.section-2 {
  height: 900px;
}
.section-2 .container {
  position: relative;
  display: block;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}
.section-2 .container .p-container {
  display: block;
  justify-items: center;
  width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section-2 .container P {
  color: var(--title-color);
  font-size: 30px;
}
.section-2 .container img {
  display: block;
  width: 400px;
  height: 400px;
  margin: 30px auto;
  -webkit-box-reflect: below 20px
    linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}

.container-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 160px;
}
.container-1 .Mission h3,
.container-1 .Values h3 {
  font-size: 27px;
  color: var(--title-color);
}
.Mission {
  padding: 0 120px;
}
.Values {
  padding: 0 120px;
}
.container-1 .Mission p {
  font-size: 20px;
  color: var(--text-color);
}
.container-1 .Values p {
  font-size: 20px;
  color: var(--text-color);
}

/* ------------------------- end -------------------------- */
@media only screen and (max-width: 767px) {
  /* ----------------- section-1 ------------- */
  .title-container h1 {
    font-size: 70px;
    letter-spacing: 2px;
    word-spacing: 3px;
  }
  /* ----------------- section-2 ---------- */
  .section-2 {
    height: auto;
  }
  .section-2 .container .p-container {
    width: 260px;
  }
  .section-2 .container P {
    font-size: 20px;
  }
  .section-2 .container img {
    width: 200px;
    height: 200px;
    margin: 40px auto;
    -webkit-box-reflect: below 10px
      linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
  }

  .container-1 {
    display: block;
  }
  .container-1 .Mission h3,
  .container-1 .Values h3 {
    font-size: 24px;
    color: var(--title-color);
  }
  .Mission {
    padding: 20px 50px;
  }
  .Values {
    padding: 20px 50px 100px 50px;
  }
  .container-1 .Mission p {
    font-size: 20px;
    color: var(--text-color);
  }
  .container-1 .Values p {
    font-size: 20px;
    color: var(--text-color);
  }
}
