:root {
  --width: 900px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: white;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  padding-bottom: 3%;
}
body * {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
}

a {
  color: black;
}
a:hover {
  color: rgb(46, 46, 46);
}

p {
  font-size: 25px;
}
@media (max-width: 768px) {
  p {
    font-size: 20px;
  }
}

h1 {
  font-size: 170px;
  border-radius: 100%;
  margin-top: 5%;
  margin-bottom: 0%;
  text-align: center;
}
@media (max-width: 1100px) {
  h1 {
    font-size: 100px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 80px;
  }
}

h2 {
  margin-top: 2%;
  margin-bottom: 2%;
  font-size: 110px;
  text-align: center;
}
@media (max-width: 1100px) {
  h2 {
    font-size: 70px;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 50px;
  }
}

h3 {
  margin-top: 5%;
  margin-bottom: 1.5rem !important;
  font-size: 50px;
  text-align: center;
}

.iframe-container {
  position: relative;
  display: block;
  margin-top: 1rem;
  max-width: var(--width);
  height: 415px;
  width: 100%;
}

.iframe-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

iframe {
  display: block;
  height: 100%;
  width: 100%;
}

#contactForm {
  max-width: 400px;
  width: 100%;
  margin-top: 0 !important;
}

.field-container {
  display: flex;
  flex-direction: column;
}
.field-container input,
.field-container textarea {
  background-color: white;
  border: 1px solid #707070;
  color: black;
}
.field-container label {
  margin-bottom: 0.3rem;
}

form {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

#submit {
  background-color: white;
  color: black;
  cursor: pointer;
  margin: auto;
}
#submit:hover {
  background-color: rgb(201, 201, 201);
  color: rgb(46, 46, 46);
}

footer {
  display: flex;
  font-size: 1rem;
  align-items: center;
}
@media (max-width: 768px) {
  footer p {
    flex-direction: column;
  }
}
footer a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  color: black;
}
footer a:hover {
  color: rgb(94, 94, 94);
}
footer p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}
footer p a {
  font-size: 1rem;
}
footer p span {
  margin-right: 1rem;
  margin-left: 1rem;
}

.fade-in {
  animation-name: fade-in;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.scale {
  transition-property: transform;
  transform: scale(1);
  transition-duration: 2s;
}
.scale:hover {
  transform: scale(1.5);
  transition-duration: 0.5s;
}

.content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  top: 0;
  visibility: hidden;
}

.svg-sociaux {
  display: flex;
  justify-content: space-between;
  margin-top: 0 !important;
  width: 200px;
}
.svg-sociaux svg {
  fill: rgb(0, 0, 0);
  width: 40px;
  height: auto;
  cursor: pointer;
}
.svg-sociaux svg path {
  fill: rgb(0, 0, 0);
}

.el-5 {
  visibility: hidden;
}

img {
  margin-top: 2%;
  width: var(--width);
  max-width: var(--width);
  height: auto;
}
@media (max-width: 900px) {
  img {
    max-width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    height: auto;
  }
}

.desc {
  max-width: var(--width);
  margin-top: 2%;
  margin-bottom: 2%;
}
@media (max-width: 768px) {
  .desc {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.content-mentions-legales {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  top: 0;
  text-align: center;
  height: 80vh;
  width: 100;
  font-size: 1.3rem;
}
.content-mentions-legales a {
  font-size: 1.3rem;
}

/*# sourceMappingURL=style.css.map */
