@font-face {
  font-family: "Rockwell";
  src: url("../Fonts/Rockwell-Font/Rockwell-Font/OTF/Rockwell-Regular.otf");
  font-weight: 400;
}

@font-face {
  font-family: "Rockwell";
  src: url("../Fonts/Rockwell-Font/Rockwell-Font/OTF/Rockwell-Bold.otf");
  font-weight: 700;
}

.hero {
  border-bottom: 0.5px solid #7d7d7d;
}

main > section {
  width: min(80%, 1100px);
  margin: 0 auto;
  padding: 4rem 0;

  font-family: "Rockwell", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  text-align: justify;

  display: flex;
  flex-direction: column;
}

main > section h2,
main > section h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 2rem;
}

main > section p,
main > section address {
  font-style: normal;
  margin: 0 0 1.5rem;
}

main > section p:last-child,
main > section address:last-child {
  margin-bottom: 0;
}

main > figure {
  margin: 0;
  width: 100%;
}

main > figure img {
  width: 100%;
  aspect-ratio: 1600 / 900;
  height: auto;
  object-fit: cover;
  display: block;
}

.social-icons {
  margin-top: 50px;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.social-icons a img {
  width: clamp(32px, 5vw, 70px);
  height: auto;
  transition: transform 0.5s ease;
}

.social-icons a:hover img {
  transform: scale(1.2);
}
