.page {
  min-height: 88dvh;
}
.page .cover .content .text {
  text-align: center;
}
.page .contact {
  position: relative;
  padding-top: 40px;
  width: 100%;
  height: 100%;
}
.page .contact iframe {
  width: 100%;
  height: 500px;
  position: relative;
}
.page .contact .cards {
  position: relative;
  width: 100%;
  height: auto;
  padding-block: 60px;
  padding-inline: 20px;
  display: flex;
  gap: 18px;
  flex-direction: column;
}
.page .contact .cards .card {
  width: 100%;
  height: auto;
  border: 0;
  background: rgb(226, 226, 226);
  border-radius: 6px;
  margin-inline: auto;
  padding: 28px;
}
.page .contact .cards .card h2 {
  color: #1F1F1F;
  font-size: 17px;
}
.page .contact .cards .card h2 i {
  margin-right: 15px;
}
.page .contact .cards .card a {
  margin-bottom: 16px;
  color: #1F1F1F;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
}
.page .contact .contact-form {
  max-width: 500px;
  margin: 0 auto;
  padding: 40px 20px;
  max-width: 590px;
}
.page .contact .contact-form h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #1F1F1F;
}
.page .contact .contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.page .contact .contact-form form input,
.page .contact .contact-form form textarea {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  background: #f0f0f0;
  color: #333;
  resize: vertical;
  outline: none;
}
.page .contact .contact-form form input::-moz-placeholder, .page .contact .contact-form form textarea::-moz-placeholder {
  color: #888;
}
.page .contact .contact-form form input::placeholder,
.page .contact .contact-form form textarea::placeholder {
  color: #888;
}
.page .contact .contact-form form input:focus,
.page .contact .contact-form form textarea:focus {
  outline: none;
}
.page .contact .contact-form form button {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  text-align: center;
  color: white;
  background: #1F1F1F;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}
.page .contact .contact-form form button:hover {
  background: #222;
}
.page .contact .contact-form form button:active {
  background: #000;
}

@media only screen and (min-device-width: 1140px) {
  .page {
    padding-top: 135px;
    padding-bottom: 90px;
  }
  .page .cover {
    padding-bottom: 0;
  }
  .page .cover .content {
    display: unset;
  }
  .page .cover .content .text {
    text-align: center;
    width: 100%;
  }
  .page .cover .content .text h1 {
    width: 100%;
    margin-inline: auto;
  }
  .page .cover .content .text p {
    width: 100%;
    margin-inline: auto;
  }
  .page .contact {
    position: relative;
    padding-top: 0;
    width: 100%;
    height: 100%;
  }
  .page .contact iframe {
    width: 100%;
    height: 629px;
    position: relative;
  }
  .page .contact .cards {
    position: relative;
    width: 100%;
    height: auto;
    padding-block: 110px;
    padding-bottom: 70px;
    padding-inline: 50px;
    display: flex;
    gap: 18px;
    flex-direction: row;
    max-width: 1500px;
    margin-inline: auto;
  }
  .page .contact .cards .card {
    width: 33%;
    height: auto;
    border: 0;
    background: rgb(226, 226, 226);
    border-radius: 6px;
    margin-inline: auto;
    padding: 28px;
    transition: 0.6s;
    cursor: pointer;
  }
  .page .contact .cards .card:hover {
    transform: scale(1.02);
    background: rgb(210, 210, 210);
  }
  .page .contact .cards .card h2 {
    color: #1F1F1F;
    font-size: 17px;
  }
  .page .contact .cards .card a {
    margin-bottom: 19px;
    color: #1F1F1F;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
  }
}/*# sourceMappingURL=contact.css.map */