#contact {
  overflow: hidden;
}
@media (max-width: 850px) {
  #contact .section-content {
    scale: 1.3;
  }
}

#contact-text {
  font-size: 1.2188rem;
  margin: 0 auto;
  margin-bottom: 2.0625rem;
  width: -moz-fit-content;
  width: fit-content;
  transform: translateY(-4rem);
  transition: opacity 1s, transform 1s;
  opacity: 0;
}
#contact-text.contact__fade-in {
  transform: translateY(0);
  opacity: 1;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.8125rem;
  width: 37.5rem;
  margin: 0 auto;
}
#contact-form input, #contact-form textarea {
  padding: 0.5rem;
  font-family: inherit;
  font-size: 1.1875rem;
  color: lime !important;
  background-color: black !important;
  border: 0.0625rem solid lime;
  transition: opacity 1s, transform 1s;
  opacity: 0;
}
#contact-form input:focus, #contact-form textarea:focus {
  outline: none;
}
#contact-form input::-moz-placeholder, #contact-form textarea::-moz-placeholder {
  color: lime;
  opacity: 0.8;
}
#contact-form input::placeholder, #contact-form textarea::placeholder {
  color: lime;
  opacity: 0.8;
}

#contact-form__personal-cont {
  display: flex;
  justify-content: space-between;
}

#contact-form__name, #contact-form__email {
  width: 45.5%;
}
#contact-form__name.contact__fade-in, #contact-form__email.contact__fade-in {
  transition-delay: 0.2s;
  transform: translateX(0);
  opacity: 1;
}

#contact-form__name {
  transform: translateX(-20rem);
}

#contact-form__email {
  transform: translateX(20rem);
}

#contact-form__subject {
  transform: translateX(-20rem);
}
#contact-form__subject.contact__fade-in {
  transition-delay: 0.4s;
  transform: translateX(0);
  opacity: 1;
}

#contact-form__message {
  resize: none;
  height: 8.75rem;
  transform: translateX(20rem);
}
#contact-form__message::-webkit-scrollbar-track {
  background: black;
  outline: none;
  border-left: 0.125rem dashed lime;
}
#contact-form__message::-webkit-scrollbar-thumb {
  background-color: black;
  outline: none;
  border: 0.125rem solid lime;
  border-right: 0.0625rem solid lime;
}
#contact-form__message::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 255, 0, 0.332);
}
#contact-form__message.contact__fade-in {
  transition-delay: 0.6s;
  transform: translateX(0);
  opacity: 1;
}

#contact-form__submit-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#contact-form__submit {
  display: inline-block;
  position: relative;
  margin-left: auto;
  width: 7.1875rem;
  font-size: 1.375rem;
  padding: 0.625rem;
  background: black;
  color: lime;
  border: 0.1875rem dashed lime;
  font-family: inherit;
  transition: text-shadow 330ms ease-in-out, opacity 1s ease 0.8s, transform 1s ease 0.8s;
  transform: translateX(20rem);
  opacity: 0;
}
#contact-form__submit.contact__fade-in {
  transform: translateX(0);
  opacity: 1;
}
#contact-form__submit #error-tooltip {
  position: absolute;
  font-size: 0.875rem;
  width: 10.625rem;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.4375rem 1.0625rem;
  top: -1.25rem;
  left: 50%;
  z-index: 9999;
  transform: translate(-50%, -100%);
  color: #00FF00;
  background-color: #000000;
  border-radius: 0.5rem;
  box-sizing: border-box;
  border: 0.0625rem solid #00FF00;
  box-shadow: 0 0.0625rem 0.5rem rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.8s;
}
@media (max-width: 650px) {
  #contact-form__submit #error-tooltip {
    transform-origin: 0 0;
    scale: 0.85;
    font-size: 1rem;
  }
}
#contact-form__submit #error-arrow {
  position: absolute;
  width: 1.5rem;
  height: 0.75rem;
  top: 100%;
  left: 50%;
  margin-left: -0.75rem;
  overflow: hidden;
}
#contact-form__submit #error-arrow::after {
  content: "";
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #000000;
  border: 0.0625rem solid #00FF00;
  box-shadow: 0 0.0625rem 0.5rem rgba(0, 0, 0, 0.5);
}
#contact-form__submit:disabled:hover {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-20 -20 612 612' width='32' height='32'%3E%3C!--! Cursor icon - added green stroke - Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cpath stroke='lime' stroke-width='22px' d='M367.2 412.5L99.5 144.8C77.1 176.1 64 214.5 64 256c0 106 86 192 192 192c41.5 0 79.9-13.1 111.2-35.5zm45.3-45.3C434.9 335.9 448 297.5 448 256c0-106-86-192-192-192c-41.5 0-79.9 13.1-111.2 35.5L412.5 367.2zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256z'/%3E%3C/svg%3E") 12 12, auto;
}
#contact-form__submit:disabled:hover #error-tooltip {
  visibility: visible;
  opacity: 1;
}
#contact-form__submit::before {
  content: ">>";
  position: absolute;
  font-size: 3.125rem;
  margin-top: -1.2rem;
  margin-left: -4.6rem;
  letter-spacing: -0.4375rem;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
  transform-origin: 100% 50%;
}
#contact-form__submit::after {
  content: "<<";
  position: absolute;
  font-size: 3.125rem;
  margin-top: -1.2rem;
  margin-left: 1.6rem;
  letter-spacing: -0.4375rem;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
  transform-origin: 0% 50%;
}
@media (max-width: 715px) {
  #contact-form__submit::after {
    display: none;
  }
}
#contact-form__submit:hover {
  padding: 0.775rem;
  border: none;
  background-image: linear-gradient(90deg, lime 60%, transparent 40%), linear-gradient(90deg, lime 60%, transparent 40%), linear-gradient(0deg, lime 60%, transparent 40%), linear-gradient(0deg, lime 60%, transparent 40%);
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  background-size: 0.625rem 0.1875rem, 0.625rem 0.1875rem, 0.1875rem 0.625rem, 0.1875rem 0.625rem;
  background-position: left top, right bottom, left bottom, right top;
  text-shadow: 0 0 0.3125rem lime, 0 0 0.625rem lime, 0 0 0.9375rem lime, 0 0 1.25rem lime;
  animation: border-dance 0.3s infinite linear, glow-submit 0.7s ease-in-out 330ms infinite alternate;
}
#contact-form__submit:hover::before {
  transform: scaleX(1);
  transform-origin: 0% 50%;
}
#contact-form__submit:hover::after {
  transform: scaleX(1);
  transform-origin: 100% 50%;
}
@keyframes border-dance {
  0% {
    background-position: left top, right bottom, left bottom, right top;
  }
  100% {
    background-position: left 0.625rem top, right 0.625rem bottom, left bottom 0.625rem, right top 0.625rem;
  }
}

#contact-form__captcha {
  overflow: hidden;
  width: 18.5625rem;
  height: 4.5rem;
  margin-bottom: -0.9375rem;
  border: 0.0625rem solid lime;
  transition: opacity 1s, transform 1s;
  transform: translateX(-20rem);
  opacity: 0;
  box-sizing: border-box;
}
#contact-form__captcha.contact__fade-in {
  transition-delay: 0.8s;
  transform: translateX(0);
  opacity: 1;
}
#contact-form__captcha iframe {
  margin: -2px 0px 0px -2px;
  transform-origin: 0 0;
}
@media (min-width: 2000px) {
  #contact-form__captcha iframe {
    transform: scale(1.3);
  }
}
@media (max-width: 850px) {
  #contact-form__captcha iframe {
    transform: scale(0.9);
  }
}
@media (max-width: 769px) {
  #contact-form__captcha iframe {
    transform: scale(0.75);
  }
}
@media (max-width: 635px) {
  #contact-form__captcha iframe {
    transform: scale(0.63);
  }
}
@media (max-width: 526px) {
  #contact-form__captcha iframe {
    transform: scale(0.56);
  }
}
@media (max-width: 475px) {
  #contact-form__captcha iframe {
    transform: scale(0.5);
  }
}
@media (max-width: 421px) {
  #contact-form__captcha iframe {
    transform: scale(0.48);
  }
}
@media (max-width: 405px) {
  #contact-form__captcha iframe {
    transform: scale(0.45);
  }
}
@media (max-width: 374px) {
  #contact-form__captcha iframe {
    transform: scale(0.425);
  }
}
@media (max-width: 355px) {
  #contact-form__captcha iframe {
    transform: scale(0.41);
  }
}
@media (max-width: 340px) {
  #contact-form__captcha iframe {
    transform: scale(0.385);
  }
}

.g-recaptcha-bubble-arrow {
  display: none;
}

.g-recaptcha-bubble-arrow + div {
  transform-origin: center;
  transform: scale(0.9);
  position: fixed !important;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
  transition-delay: 3600s;
}/*# sourceMappingURL=contact.css.map */