@font-face {
  font-family: NeulandGroteskCondRegVN;
  src: url(../fonts/NeurialGrotesk/NeulandGroteskCondRegVN.otf);
}
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
body {
  font-family: NeulandGroteskCondRegVN;
  font-weight: 700;
  background-color: #fff;
}
a:hover {
  text-decoration: none !important;
}
.home-page .content {
  height: calc(100vh - 110px);
  min-height: 400px;
  position: relative;
  background: url('../images/background.webp') no-repeat center center;
  background-size: cover;
}
.home-page .content .text-content {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.home-page .content .text-content img {
  width: 80vw;
  max-width: 350px;
}
.footer {
  padding: 10px 0;
  text-align: center;
}
.footer p {
  font-size: 20px;
  color: #AC8808;
  margin-bottom: 0;
  letter-spacing: 0.5px;
}
@media screen and (min-width: 768px) {
  .home-page .content {
    background: url('../images/background-desktop.webp') no-repeat center center;
    background-size: cover;
  }
  .home-page .content .text-content img {
    width: 60vw;
    max-width: 986px;
  }
}
