@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
*,
body {
  box-sizing: border-box;
  border: none;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  color: white;
  font-size: 1rem;
}
.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: url(../img/resources/Group-2.png);
  background-repeat: no-repeat;
  background-size: cover;
}
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 3em 9em 3em 9em;
}
.logo {
  height: 2.7rem;
  width: auto;
}
nav a {
  font-size: 1rem;
  margin-left: 2em;
  display: inline-flex;
  align-items: center;
}
nav a img {
  margin-right: 0.3em;
  margin-left: 0.3em;
}
.inner-container {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  /* height: 97.4vh; */
}
.container section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.title {
  font-size: 3em;
  font-weight: 700;
  padding-bottom: 3rem;
  line-height: 1.5em;
}
.left-english p,
.right-arabic p {
  font-size: 1.25em;
  font-weight: 600;
  padding-bottom: 3rem;
}
.left-english {
  padding-left: 9em;
}
.right-english {
  background-image: url(../img/resources/front-view-hand-holding-smartphone\ english\ 3aladd.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
}
.left-arabic {
  background-image: url(../img/resources/front-view-hand-holding-smartphone\ arabic\ 3aladd.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
}
.right-arabic {
  padding-right: 9em;
}

.sign-in {
  font-size: 1rem;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.25);
  border: solid white 0.1em;
  border-radius: 0.7em;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  color: white;
  cursor: pointer;
  font-weight: 600;
  padding: 0.75rem 2em;
  margin: 0.2em;
  white-space: nowrap;
  transition: all 0.5s;
}
.sign-in:hover {
  border-color: rgb(0, 0, 0);
  color: rgb(0, 0, 0);
}
.sign-in:active {
  transform: translateY(2px);
}

.download {
  align-items: center;
  background-color: #fff;
  border-radius: 0.7em;
  box-shadow: transparent 0 0 0 3px, rgba(18, 18, 18, 0.1) 0 6px 20px;
  cursor: pointer;
  display: inline-flex;
  margin: 0.2rem;
  padding: 0.75em 2em;
  text-align: center;
  transition: all 0.3s;
  white-space: nowrap;
  user-select: none;
  touch-action: manipulation;
}

.download:hover {
  box-shadow: #121212 0 0 0 2px, transparent 0 0 0 0;
}
.download:active {
  transform: translateY(2px);
}
.download div {
  margin-left: 0.5em;
  display: inline;
  text-align: start;
  overflow: hidden;
}
.download img {
  height: 2em;
  width: auto;
}
.download span {
  font-size: 1.5em;
  line-height: 1em;
  color: black;
  font-weight: 800;
}
.download p {
  padding: 0;
  font-size: 0.75em;
  color: #121212;
}
.mob-english,
.mob-arabic {
  display: none;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  *,
  body {
    font-size: 0.8rem;
  }
  .mob-english {
    display: flex;
    justify-content: end;
    width: 100vw;
  }
  .mob-arabic {
    display: flex;
    justify-content: start;
    width: 100vw;
  }
  .mob img {
    height: auto;
    width: 90%;
  }
  .inner-container {
    flex-grow: 1;
    display: flex;
  }
  .left-english,
  .right-arabic,
  nav {
    padding: 3em;
  }
  .right-english,
  .left-arabic {
    display: none;
  }
  .logo {
    margin: 1rem 0rem 1rem 0rem;
  }
  .btns-container {
    display: flex;
    width: 100%;
    justify-content: space-around;
  }
}

@media only screen and (min-width: 600px) {
  *,
  body {
    font-size: 0.7rem;
  }
}

@media only screen and (min-width: 768px) {
  *,
  body {
    font-size: 0.8rem;
  }
}
@media only screen and (min-width: 992px) {
  *,
  body {
    font-size: 0.9rem;
  }
}
@media only screen and (min-width: 1200px) {
  *,
  body {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1600px) {
  *,
  body {
    font-size: 1.1rem;
  }
}
