#contactus {
  color: #ddd;
  text-align: center;
  padding-top: 25px;
  max-width: 100vw !important;
  font-family: monospace, "Courier New", Courier;
}
#contactus h3 {
  font-family: monospace, "Courier New", Courier;
}
#contactus .cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
#contactus .sendmessage {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(50, 54, 61, 0.7960784314);
  color: #2385d5;
  border-radius: 25px;
  height: -moz-max-content;
  height: max-content;
}
#contactus .sendmessage input, #contactus .sendmessage textarea {
  min-width: auto;
  border: 1px solid #2385d5;
  border-radius: 0;
  background: rgba(50, 54, 61, 0.7960784314);
  color: #fff;
}
#contactus .sendmessage input:-webkit-autofill, #contactus .sendmessage input:-webkit-autofill:focus, #contactus .sendmessage textarea:-webkit-autofill, #contactus .sendmessage textarea:-webkit-autofill:focus {
  -webkit-transition: background-color 600000s 0s, color 600000s 0s;
  transition: background-color 600000s 0s, color 600000s 0s;
  background: #191e29;
}
#contactus .sendmessage input::-moz-placeholder, #contactus .sendmessage textarea::-moz-placeholder {
  color: #fff;
  opacity: 0.8;
}
#contactus .sendmessage input::placeholder, #contactus .sendmessage textarea::placeholder {
  color: #fff;
  opacity: 0.8;
}
#contactus .sendmessage p {
  color: #ffffff;
}
#contactus .sendmessage .border-error {
  border-color: red !important;
}
#contactus .sendmessage form small {
  color: red;
}
#contactus .sendmessage #BTN_SENDMESSAGE {
  width: 100%;
  padding: 15px;
  background: radial-gradient(circle, #47c0cd, #2385d5);
  border: 0;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  color: #ffffff;
  transition: background-color 0.2s;
}
#contactus .cards .card {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  height: 150px;
  width: 250px;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: 400ms transform, 400ms box-shadow, 400ms background-color;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}
#contactus .cards .card i {
  font-size: 2em;
  font-weight: 700;
  margin: 1rem;
  background: radial-gradient(circle, #47c0cd, #2385d5);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#contactus .cards .card p.tip {
  font-size: 1em;
  font-weight: 700;
}
#contactus .cards .card p.second-text {
  font-size: 0.7em;
}
#contactus .cards .card:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  color: #fff;
  background: radial-gradient(circle, #47c0cd, #2385d5);
}
#contactus .cards .card:hover i {
  color: #fff;
  background-clip: unset;
  background: none;
  -webkit-text-fill-color: #fff;
}
#contactus .cards:hover > .card:not(:hover) {
  filter: blur(10px);
  transform: scale(0.9);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
#contactus iframe {
  border: 0;
  min-width: 100%;
  min-height: 100%;
}/*# sourceMappingURL=contactus.css.map */