/*----------- basics ------------*/
#page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font: 400 16px/28px "Source Sans";
  overflow: hidden;
}

/*--------- content -----------*/
.content_top {
  background-color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.content_text {
  margin: 0 auto;
  text-align: center;
}

.logo {
  display: block;
  margin: 40px;
  margin-top: 200px;
}
.logo img {
  padding: 20px;
  width: clamp(270px, 37vw, 370px);
}

.content_bottom {
  background-color: #E6E7DE;
  height: 100vh;
}
.content_bottom .introduction {
  padding-top: 30px;
}
.content_bottom a {
  color: #555a37;
}
.content_bottom h1 {
  font: 700 40px/38px "Source Sans";
  color: #7D8356;
  font-size: clamp(30px, 4vw, 40px);
}
.content_bottom p {
  color: #6D6D6D;
  font-size: 20px;
  font-size: clamp(18px, 2vw, 20px);
}
.content_bottom .container {
  display: flex;
  justify-content: center;
}
.content_bottom .infos {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin-top: 20px;
}
.content_bottom .infos .button {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #7D8356;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.content_bottom .infos .button:hover {
  background-color: #555a37;
}
.content_bottom .infos .contact {
  text-align: left;
}
.content_bottom .infos .contact p {
  margin: 0;
  font-size: 20px;
  color: #fff;
}
.content_bottom .infos .contact a {
  text-decoration: none;
  color: #fff;
}
.content_bottom .infos .contact a:hover {
  color: #fff;
}
.content_bottom .infos .adress {
  width: 200px;
}

/*-------- fonts -----------*/
@font-face {
  font-family: "Source Sans";
  src: url("fonts/SourceSans3-Italic-VariableFont_wght.woff2") format("woff2");
  font-weight: 1 999;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans";
  src: url("fonts/SourceSans3-VariableFont_wght.woff2") format("woff2");
  font-weight: 1 999;
  font-style: normal;
  font-display: swap;
}
/*--------- responsive ---------*/
@media (max-width: 800px) {
  .logo img {
    width: clamp(200px, 37vw, 370px);
    height: auto;
    margin: auto;
  }
}
@media (max-width: 700px) {
  p {
    margin-left: 20px;
    margin-right: 20px;
  }
}/*# sourceMappingURL=style_home.css.map */