*, *::before, *::after, button:focus {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

img, picture, svg, video, canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6, p {
  overflow-wrap: break-word;
}

textarea {
  resize: vertical;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

html body {
  background-image: linear-gradient(rgba(13, 31, 58, 0.8), rgba(13, 31, 58, 0.8)), url("../assets/images/pexels-photo-1103970.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
}
html body .contact-header {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: clamp(6rem, 6.5vw, 7rem);
  z-index: 1;
}
html body .title {
  width: 100%;
}
html body p {
  padding-inline: clamp(0.1rem, 5vw, 10rem);
  padding-bottom: clamp(0.1rem, 2vw, 3rem);
  padding-top: clamp(0.1rem, 0.3vw, 1rem);
  font-size: clamp(1.35rem, 1.8vw, 2rem);
}
html body main {
  padding: clamp(1rem, 1.8vw, 2rem);
  color: white;
}

.main-text {
  text-align: center;
  border-block: 0.2rem solid coral;
  padding-block: clamp(1rem, 4vw + 0.02rem, 7rem);
  margin-bottom: clamp(4rem, 10vw, 15rem);
}
.main-text .mario-buffa {
  color: white;
  font-size: clamp(6rem, 8vw, 10rem);
  line-height: clamp(5.8rem, 10vw, 14rem);
  font-weight: 600;
  margin: 0;
}
.main-text h3 {
  color: coral;
  font-size: clamp(1.4rem, 1.8vw, 1.9rem);
  font-weight: 400;
  padding-block: clamp(1.5rem, 4vw, 7rem);
}
.main-text h4 {
  font-size: 1.4rem;
  font-weight: 400;
  padding-block: clamp(1.5rem, 4vw, 7rem);
}
.main-text .festo {
  width: clamp(18rem, 22vw + 1rem, 28rem);
  display: flex;
  margin-inline: auto;
  align-items: center;
  justify-content: center;
}

.cards-container {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw + 0.1rem, 3rem);
}
@media (min-width: 1200px) {
  .cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.cards-container .contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.274);
  border-radius: clamp(1rem, 3vw, 5rem);
  border: 0.1rem solid white;
  padding: 2rem;
}
.cards-container .contact-card svg {
  width: clamp(4rem, 6vw, 8rem);
  filter: invert(100%);
}
.cards-container .contact-card h1 {
  padding-block: 0;
  margin-block: 0;
}
.cards-container .contact-card h4 {
  font-size: 2rem;
}
.cards-container .contact-card strong {
  font-size: 1.7rem;
}

.contact-and-location {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1rem, 2vw + 0.5rem, 3rem);
  padding-block: clamp(3rem, 5vw, 7rem);
}
@media (min-width: 1200px) {
  .contact-and-location {
    display: grid;
    align-items: stretch;
    grid-template-columns: repeat(2, 1fr);
  }
}
.contact-and-location .contact-map-iframe {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  background-color: rgba(0, 0, 0, 0.274);
  border-radius: 1rem;
  border: 0.1rem solid white;
  padding-inline: clamp(1rem, 1.8vw, 2rem);
  padding-block: clamp(1rem, 2.5vw + 0.1rem, 4rem);
}
.contact-and-location .contact-map-iframe h3 {
  font-size: 1.6rem;
  padding-block: 1rem;
}
.contact-and-location .contact-map-iframe iframe {
  min-height: clamp(25rem, 30vw, 40rem);
  border-radius: 1.2rem;
  border: 0.1rem solid white;
  transition: all 0.2s ease;
}
.contact-and-location .contact-map-iframe iframe:hover, .contact-and-location .contact-map-iframe iframe:active {
  transform: scale(1.02);
}
.contact-and-location .contact-map-iframe svg {
  width: clamp(2rem, 2.2vw, 3rem);
  filter: invert(100%);
}
.contact-and-location .contact-map-iframe .social-media-buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding-block: clamp(1.5rem, 2vw, 4rem);
}
.contact-and-location .contact-form form input,
.contact-and-location .contact-form form textarea,
.contact-and-location .contact-form form label {
  width: 100%;
  padding-block: 0.5rem;
}
.contact-and-location .contact-form form input:focus,
.contact-and-location .contact-form form textarea:focus {
  border-color: coral;
  border-style: solid;
  outline: none;
  box-shadow: inset 0 0 1.5rem rgba(255, 127, 80, 0.274);
}
.contact-and-location .contact-form form label span {
  color: rgba(255, 255, 255, 0.541);
}
.contact-and-location .contact-form form textarea {
  height: 12rem;
  resize: none;
}
.contact-and-location .contact-form form .submit-button {
  background-color: #0a91c6;
  width: 100%;
  color: white;
  font-size: 1.4rem;
  padding-block: 0.5rem;
}
.contact-and-location .contact-form .title {
  font-size: 1.6rem;
  border: none;
  padding-inline: 0;
  width: 100%;
}/*# sourceMappingURL=contact.css.map */