.footer-decoration {
  position: relative;
  height: 435px;
  overflow: hidden;
  z-index: 3;
}
.footer-decoration .footer-grass-silhouette {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 435px;
  background-image: url('/assets/images/wiese_02_1.png');
  background-size: cover;
  background-position: bottom;
  z-index: 4;
}
@media (max-width: 768px) {
  .footer-decoration .footer-grass-silhouette {
    height: 300px;
  }
}
@media (max-width: 480px) {
  .footer-decoration .footer-grass-silhouette {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .footer-decoration {
    height: 300px;
  }
}
@media (max-width: 480px) {
  .footer-decoration {
    height: 200px;
  }
}
.footer {
  background-color: #2A2E33;
  padding: 60px 0;
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer .footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.footer .footer-content .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .footer-content .footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer .footer-content .footer-contact .contact-item .contact-icon {
  width: 24px;
  height: 24px;
  background-color: #EA5A31;
  flex-shrink: 0;
}
.footer .footer-content .footer-contact .contact-item .contact-icon--location {
  mask: url('/assets/images/location.svg') no-repeat center;
  mask-size: contain;
  -webkit-mask: url('/assets/images/location.svg') no-repeat center;
  -webkit-mask-size: contain;
}
.footer .footer-content .footer-contact .contact-item .contact-icon--phone {
  mask: url('/assets/images/phone.svg') no-repeat center;
  mask-size: contain;
  -webkit-mask: url('/assets/images/phone.svg') no-repeat center;
  -webkit-mask-size: contain;
}
.footer .footer-content .footer-contact .contact-item .contact-icon--email {
  mask: url('/assets/images/email.svg') no-repeat center;
  mask-size: contain;
  -webkit-mask: url('/assets/images/email.svg') no-repeat center;
  -webkit-mask-size: contain;
}
.footer .footer-content .footer-contact .contact-item .contact-icon--globe {
  mask: url('/assets/images/globe.svg') no-repeat center;
  mask-size: contain;
  -webkit-mask: url('/assets/images/globe.svg') no-repeat center;
  -webkit-mask-size: contain;
}
.footer .footer-content .footer-contact .contact-item p {
  color: #F0EBC5;
  font-size: 18px;
  margin: 0;
}
.footer .footer-content .footer-center {
  text-align: center;
}
.footer .footer-content .footer-center .footer-logo img {
  width: 200px;
  height: auto;
}
.footer .footer-content .footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: right;
}
.footer .footer-content .footer-links a {
  color: #F0EBC5;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}
.footer .footer-content .footer-links a:hover {
  color: #EA5A31;
}
@media (max-width: 768px) {
  .footer .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .footer .footer-content .footer-links {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 40px 0;
  }
  .footer .footer-content {
    gap: 30px;
  }
  .footer .footer-content .footer-contact .contact-item {
    gap: 10px;
  }
  .footer .footer-content .footer-contact .contact-item .contact-icon {
    width: 20px;
    height: 20px;
  }
  .footer .footer-content .footer-contact .contact-item p {
    font-size: 16px;
  }
  .footer .footer-content .footer-center .footer-logo img {
    width: 150px;
  }
  .footer .footer-content .footer-links {
    gap: 10px;
  }
  .footer .footer-content .footer-links a {
    font-size: 14px;
  }
}
