@font-face {
  font-family: "Neue Montreal";
  src: url("fonts/neue-montreal/NeueMontreal-Medium.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Neue Montreal";
}

.swiper {
  line-height: 0;
  background: #ffffff;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop-img {
  width: 100vw;
  display: block;
}

.mobile-img {
  display: none;
  width: 100%;
  height: auto;
}

footer {
  background-color: #d3d3d3;
  padding: 14px 20px;
  font-size: 14px;
  color: #222;
}

.footer-content {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

@media (max-width: 1280px) {
  .desktop-img {
    width: 100%;
    height: 100vh;
    display: block;
    object-fit: contain;
    padding: 0 2rem;
  }
}

@media (max-width: 900px) {
  .desktop-img {
    width: unset;
    height: unset;
    object-fit: unset;
    padding: unset;
    display: none;
  }

  .mobile-img {
    display: block;
  }

  .footer-content {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-content p {
    text-align: center;
  }
}

@media (max-width: 500px) {
  span.signatures a img {
    width: 100px;
    height: auto;
    object-fit: contain;
  }

  .footer-content p {
    font-size: 14px;
  }

  footer {
    padding: 10px 20px;
  }
}
