<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.contact-us {
  flex-wrap: wrap;
  height: 500px;
}

.contact-card {
  background: #4b5b6d;
  border-radius: 30px;
  padding-left: 2em;
}

.contact-address {
  color: #999;
  font-size: 0.75rem;
  width: 100%;
}

.contact-header {
  font-size: 35px;
  letter-spacing: 2.5px;
  font-weight: bold;
}

.input-material {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 0;
}

.input-material &gt; label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  left: 0;
  transition: all 0.3s;
  margin-left: 0px;
  pointer-events: none;
}

.input-material &gt; input {
  width: 100%;
  height: 100%;
  position: relative;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1rem;
  padding-top: 10px;
  padding-left: 0;
  border-bottom: 2px solid;
}

.input-material input:focus ~ label,
.input-material input ~ .focused {
  top: 0;
  font-size: 0.8rem;
}

.pt-170 {
  padding-top: 170px;
}

.submit-button {
  border: none;
  width: 175px;
  max-width: 320px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  outline: none;
  transition: 0.3s;
  background: #216dd2;
  color: #fff;
  border-radius: 6px;
  margin-bottom: 32px;
  position: relative;
}

.submit-button .spinner-button {
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top: 3px solid #fff;
  width: 24px;
  height: 24px;
  animation: spin 1s linear infinite;
}

.submit-button .button-text {
  display: inline-block;
}

.submit-button:hover {
  background: rgba(33, 109, 210, 0.8);
  color: white;
  cursor: pointer;
}

.submit-button:before {
  content: url(../../assets/img/mail.svg);
  margin-right: 20px;
}

.navbar {
  background: #fff;
}

.nav-link {
  color: #4b5b6d !important;
}

.arrow {
  border-top: 3px solid rgb(75 91 109) !important;
}

.navbar-toggler {
  color: #4b5b6d !important;
}

.invalid-input {
  border-color: red !important;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

.icon-padding {
  padding: 10px;
}

.text-padding {
  padding: 5px;
}

.socials .social {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: #50a1ff;
  margin-bottom: 17px;
  border-radius: 50%;
  transition: 0.5s;
}

.socials {
  position: absolute;
  top: 0;
  right: 33px;
  z-index: 10;
}

.spinner {
  display: none;
  width: 50px;
  height: 50px;
  border: 8px solid rgba(0, 0, 0, 0.1);
  border-left-color: #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  z-index: 9999;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  font-family: Arial, sans-serif;
}

.modal-content h2 {
  color: #333;
  font-size: 24px;
  margin-bottom: 20px;
}

.modal-content p {
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
}

.close-button {
  background-color: #216dd2;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.close-button:hover {
  background-color: #174a9d;
}</pre></body></html>