@font-face {
  font-family: "a-book";
  src: url("fonts/arquitectabook-webfont.woff2") format("woff2"),
       url("fonts/arquitectabook-webfont.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "a-bold";
  src: url("fonts/arquitectabold-webfont.woff2") format("woff2"),
       url("fonts/arquitectabold-webfont.woff") format("woff");
  font-weight: 200;
  font-style: normal;
}
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');
h1 {
  font-family: "a-book", sans-serif;
  font-size: 3em;
  font-weight: unset;
  line-height: .7em;
  margin: 0 ;
}
h1 em {
  font-family: "Source Serif 4", serif;
}
p, a {
  font-family: "a-book", sans-serif;
  font-size: 1.5em;
  font-weight: unset;
  line-height: 1em;
  margin: 0 ;
  color: #141C2D;
}
p b {
  font-family: "a-bold", sans-serif;
}
body {
  margin: 0px;
  position: relative;
  min-height: 100vh;
}
main {
  height: 100%;
  width: 100%;
}
header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,10px);
  z-index: 1000;
}
.header--img {
  width: 15vw;
  min-width: 130px;
}
.header--img img {
  width: 100%;
  height: auto;
}
.desktop {
  display: none;
}
.mobile {
  display: block;
}

.hero {
  position: relative;
}
.hero--img {
  height: 50vh;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  /* border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px; */
  overflow: hidden;
}
.hero--img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: relative;
  filter: brightness(0.8);
}

.hero--content {
  position: absolute;
  left: 5vw;
  right: 5vw;
  bottom: 5vh;
}
.hero--content h1 {
  color: white;
}
.text {
  display: flex;
  flex-direction: column;
}
.text--content {
  display: block;
  margin: 30px;
}
.text--contact {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  background-color: #141C2D;
  color: #A2B4BB;
  display: flex;
  flex-direction: column;
  padding: 50px;
  position: relative;
}
.text--title {
  text-transform: uppercase;
  color: #A2B4BB;
  margin-bottom: 30px;
}
.text--link {
  color: #A2B4BB;
  margin-bottom: 10px;
}
.text--link.picto {
  height: 30px;
  width: 30px;
  margin-top: 15px;
}
.picto svg {
  width: 100%;
  height: 100%;
}
.text--notif  {
  margin: 15px 30px; 
  color: #A2B4BB;
}
.stamper {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(80%, 0%);
  animation: 10s infinite linear rotation;
}
@media screen and (min-width: 992px) {
  h1 {
    font-size: 7em;
  }
  .desktop {
    display: block;
  }
  .mobile {
    display: none;
  }
  .hero--img {
    height: 70vh;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
  }
  .text {
    height: 30vh;
    flex-direction: row;
  }
  .text--content {
    width: 50vw;
    margin-left: 10%;
  }
  .text--contact {
    width: 20vw;
    margin-top: -30px;
    z-index: 1;
  }
  .text--notif  {
    margin: 15px 0;
  }
}

@keyframes rotation {
  from {
    transform: translate(80%, 0%)  rotate(0);
  }

  to {
    transform: translate(80%, 0%) rotate(360deg);
  }
}