@font-face {
  font-family: "Monteserrat";
  src: url("/assets/fonts/Montserrat/Montserrat-VariableFont_wght.ttf");
}
body, html {
  margin: 0;
  padding: 0;
  font-family: "Monteserrat";
}
* {
  box-sizing: border-box;
}
.header-wrapper {
  display: flex;
  flex-direction: column;
  color: white;
  background-color: #283618;
  margin: 0px;
  padding: 0px;
}
.header-container{
  display: flex;
  flex-direction: column;
  margin: 0px;
  padding: 0px 50px;
}
.header{
  display: flex;
  justify-content: space-between;
  margin: 0px;
}
.contact-us-paragraph {
  font-size: 32px;
}
.main-logo {
  width: 200px;
  height: 200px;
}
.hero {
  display: flex;
  justify-content: space-between;
}
.info, .info-graphics {
  flex: 1;
}
.info-title {
  font-size: 64px;
  font-weight: bolder;
}
.info-subtitle {
  font-size: 24px;
  font-weight: bolder;
}
.btn {
  text-decoration: none;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
}
.btn-primary {
  color: #283618;
  background: #FEFAE0;
  border-radius: 10px;
}
.article-section {
  position: relative;
  top: -100px;
}
.articl-title {
  text-align: center;
  font-size: 32px;
}
@media (max-width: 680px) {
  .hero, .header {
    flex-direction: column;
    justify-content: center;
  }
  .header-container {
    padding: 0px 5px;
  }
  .info-title {
    font-size: 32px;
  }
}