@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --color-primary: #1d1d36;
  --color-secondary: #fff;
  --color-second-primary: "";
  --color-accent: #c6b89c;

  --font-title: "Rubik", sans-serif;
  --font-texte: "Poppins", sans-serif;

  --m-10: 0px;
  --m-10: 10px;
  --m-15: 15px;
  --m-20: 20px;
  --m-25: 25px;
  --m-30: 30px;
  --m-40: 40px;
  --m-50: 50px;
  --m-60: 60px;

  --size-texte: 16px;
  --size-texte-act: 20px;
  --size-subtitle: 24px;
  --size-title: 48px;

  --weight-normal: 400;
  --weight-semi: 700;
  --weight-semi-bold: 800;
  --weight-bold: 900;
}

* {
  margin: 0;
  padding: 0;
}

/* html {
  /* scroll-behavior: smooth; */
/* } */

a {
  text-decoration: none;
  text-transform: none;
  color: #fff !important;
}

#hero {
  height: 100vh;
  background-color: var(--color-primary);
}

#hero #body {
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
  flex: 1;
  flex-direction: row;
  align-items: center;
  height: 95vh;
}

#hero #footer {
  display: flex;
  flex: 1;
  height: 5vh;
  justify-content: center;
  align-items: center;
}

#hero #footer p {
  color: #fff;
  font-family: var(--font-texte);
}

#hero #section-call {
  flex: 2;
  padding: var(--m-50);
}

#section-call h3 {
  font-size: var(--size-title);
  font-weight: var(--weight-semi-bold);
  font-family: var(--font-title);
  color: var(--color-secondary);
  margin-bottom: var(--m-15);
  text-transform: uppercase;
}

#section-call p {
  font-size: var(--size-subtitle);
  font-family: var(--font-texte);
  margin-bottom: var(--m-10);
  color: var(--color-secondary);
}

#btn-download button {
  padding: var(--m-15);
  margin-bottom: var(--m-10);
  border-width: 2px;
  border-style: solid;
  border-color: var(--color-secondary);
  border-radius: 12.5px;
  background-color: var(--color-accent);
  box-shadow: 1px 1px 1px var(--color-secondary);
  font-size: var(--size-texte);
  font-family: var(--font-texte);
  cursor: pointer;
}

#btn-download button i {
  margin-right: 7.5px;
}

#hero #img-section {
  flex: 1;
  justify-content: center;
  align-items: center;
}

#block-circle-img {
  height: 500px;
  width: 500px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

#img-section img {
  height: 320px;
}

/*for mobile screens*/
@media screen and (min-width: 120px) and (max-width: 364px) {
  #hero {
    height: auto;
  }

  #hero #body {
    padding: 0px;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
  }

  #hero #footer {
    display: flex;
    flex: 1;
    height: auto;
  }

  #hero #section-call {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
  }

  #section-call p img {
    height: 120px;
  }

  #section-call h3 {
    font-size: var(--m-20);
    text-align: center;
  }

  #section-call p {
    font-size: var(--m-15);
    text-align: center;
  }

  #btn-download {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #hero #img-section {
    display: none;
  }
}

@media screen and (min-width: 365px) and (max-width: 900px) {
  #hero {
    padding: 0px;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #hero #section-call {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
  }

  #section-call p img {
    height: 120px;
  }

  #section-call h3 {
    font-size: var(--m-30);
    text-align: center;
  }

  #section-call p {
    font-size: var(--m-20);
    text-align: center;
  }

  #btn-download {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #hero #img-section {
    display: none;
  }
}
