.contact-wrapper {
  background: #141d2c;
  padding-top: 5rem;
}

.contact {
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 4rem;
}
.contact .link:hover::after {
  background-color: white;
}

.contact-notification {
  width: 100%;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  border-radius: 1rem;
  margin-bottom: 2rem;
}
.contact-notification.error {
  background-color: #ff4949;
}
.contact-notification.error .error-text {
  display: block;
}
.contact-notification.success {
  background-color: #cbffcb;
}
.contact-notification.success .success-text {
  display: block;
  color: black;
}
.contact-notification .notification-text {
  color: white;
  display: none;
}

.contact-content {
  position: sticky;
  top: 6rem;
  width: 50%;
}
.contact-content h1 {
  color: white;
}

.contact-card {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: #1d2b3f;
  border-radius: 1rem;
}
.contact-card h4 {
  font-weight: 600;
  font-size: 1.2rem;
  color: white;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.2rem solid #00a4bd;
}
.contact-card .margin-top {
  margin-top: 1rem;
}
.contact-card .social-icons {
  margin-top: 1rem;
}

.contact-form {
  width: 50%;
}
.contact-form form {
  display: block;
}
.contact-form form label {
  font-weight: 500;
  margin-bottom: 0.2rem;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 20%;
  font-size: 0.8rem;
  position: relative;
}
.contact-form form label.required::after {
  content: "*";
  position: relative;
  right: -0.1rem;
  top: 0.2rem;
  color: #00a4bd;
  font-size: 1rem;
}
.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem 0.5rem 0 0;
  background-color: #1d2b3f;
  border: none;
  color: white;
  font-weight: 300;
  margin-bottom: 1rem;
  border: 3px solid transparent;
  border-bottom: 3px solid #00a4bd;
  transition: 0.3s ease border-color, background-color;
}
.contact-form form input::-moz-placeholder, .contact-form form textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.contact-form form input::placeholder,
.contact-form form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.contact-form form input:focus,
.contact-form form textarea:focus {
  background: #141d2c;
  border: 3px solid #00a4bd;
  outline: none;
}
.contact-form form input:focus::-moz-placeholder, .contact-form form textarea:focus::-moz-placeholder {
  color: transparent;
}
.contact-form form input:focus::placeholder,
.contact-form form textarea:focus::placeholder {
  color: transparent;
}
.contact-form form button {
  width: 100%;
}
.contact-form form button:hover {
  background-color: white !important;
  color: #00a4bd;
}

/*******************
* Responsive
********************/
@media (max-width: 1000px) {
  .contact {
    flex-direction: column;
    gap: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .contact-content {
    width: 100%;
    position: static;
    top: 0;
  }
  .contact-form {
    width: 100%;
  }
  .contact-card {
    padding: 1rem;
  }
  .contact-card h4 {
    font-size: 1rem;
    padding-bottom: 0;
    border-bottom: none;
  }
  .contact-card .social-icons {
    display: none;
  }
}/*# sourceMappingURL=contact.css.map */