@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: #FFFFFF;
}

header {
  background-color: white;
  box-shadow: 0 0px 17px 0px black;
  right: 0;
  left: 0;
  top: 0;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 30px 40px;
  z-index: 999;
}
header .el {
  flex: 1 1 0%;
}
header .menu a, header .lang {
  text-decoration: none;
  padding: 0 1rem;
  color: #828282;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.3rem;
  letter-spacing: 0.175rem;
  transition: 0.3s;
}
header .menu a:hover, header .lang:hover {
  cursor: pointer;
  color: #424242;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
header .title {
  text-decoration: none;
  color: black;
  letter-spacing: 0.25rem;
  font-size: 1.75rem;
  line-height: 1rem;
  letter-spacing: 0.175rem;
  align-items: center;
  display: flex;
  transition: 0.3s;
}
header .title svg {
  margin-right: 15px;
}
header .title svg path {
  transition: 0.3s;
}
header .title:hover {
  color: #707070;
}
header .title:hover path {
  stroke: #707070;
}
header .menu {
  text-align: center;
}
header .menu .choix {
  padding: 0 15px;
}
header .lang {
  text-align: right;
}

.content {
  width: 100%;
}
.content .front {
  margin-top: 80px;
}
.content .front .svg {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 59px;
}
.content .front .svg svg {
  width: 40px;
  stroke: white;
  transition: 0.3s;
}
.content .front .svg svg:hover {
  stroke: #424242;
}
.content .front .svg:hover {
  cursor: pointer;
}
.content .front .img {
  height: 100vh;
  width: 100vw;
  max-width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.content img {
  width: 100vw;
  max-width: 100%;
  margin: 0px;
  display: block;
  margin-bottom: 15px;
}
.content .img-show {
  height: 100vh;
  width: 100vw;
  max-width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.content .text {
  margin: 46px 10%;
  text-align: center;
  padding-bottom: 25px;
}
.content .text h1 {
  font-weight: 700;
  font-size: 2.25rem;
  color: #484848;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
}
.content .text audio {
  margin-bottom: 15px;
  max-width: 80%;
}
.content .text p {
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.4rem;
  text-align: justify;
  letter-spacing: 0.05em;
  color: #484848;
}

footer {
  text-align: center;
  margin: 10px 0;
  font-size: 0.9rem;
  line-height: 1.31rem;
  color: #898989;
}

@media only screen and (max-width: 1270px) {
  html {
    font-size: 90%;
  }
}
@media only screen and (max-width: 1160px) {
  html {
    font-size: 75%;
  }
}
@media only screen and (max-width: 1010px) {
  html {
    font-size: 60% !important;
  }
}
@media only screen and (max-width: 860px) {
  .title {
    text-align: center;
  }
  header .el:nth-child(1) {
    text-align: center;
    font-size: 2rem;
    margin-left: 30px;
  }
  header .el:nth-child(2) {
    display: none;
  }
  header .el:nth-child(3) {
    flex-grow: 0 !important;
  }
  .lang {
    right: -15px;
    position: relative;
  }
}
@media only screen and (max-width: 500px) {
  html {
    font-size: 50% !important;
  }
}
@media only screen and (max-width: 350px) {
  .title {
    margin-left: 0px !important;
    font-size: 1.75rem !important;
  }
}/*# sourceMappingURL=more.css.map */