@font-face {
  font-family: Inter-Thin;
  src: url("../fonts/Inter-Thin.ttf");
}
@font-face {
  font-family: Inter-ExtraLight;
  src: url("../fonts/Inter-ExtraLight.ttf");
}
@font-face {
  font-family: Inter-Light;
  src: url("../fonts/Inter-Light.ttf");
}
@font-face {
  font-family: Inter-Regular;
  src: url("../fonts/Inter-Regular.ttf");
}
@font-face {
  font-family: Inter-Medium;
  src: url("../fonts/Inter-Medium.ttf");
}
@font-face {
  font-family: Inter-SemiBold;
  src: url("../fonts/Inter-SemiBold.ttf");
}
.contact-form {
  display: flex;
  justify-content: center;
  gap: 5vw;
  height: 75vh;
  min-height: -moz-fit-content;
  min-height: fit-content;
  align-items: center;
  border: none;
}

form {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  width: 25vw;
}
form .action-row {
  justify-content: flex-end !important;
}
form .form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
form .form-row .input-data {
  width: calc(12.5vw - 3rem);
  min-height: 3.75rem;
  position: relative;
}
form .form-row .input-data input {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  bottom: -1.5rem;
}
form .form-row .input-data input:focus, form .form-row .input-data input:valid {
  outline: 0;
  border-bottom-color: #333333;
}
form .form-row .input-data input:focus ~ label, form .form-row .input-data input:valid ~ label {
  transform: translateY(-2.75rem);
  font-size: 1.5rem;
}
form .form-row .input-data input:focus ~ .underline::before, form .form-row .input-data input:valid ~ .underline::before {
  transform: scale(1);
}
form .form-row .input-data input:focus ~ .underline::after, form .form-row .input-data input:valid ~ .underline::after {
  transform: scale(0);
}
form .form-row .input-data label {
  position: absolute;
  pointer-events: none;
  bottom: 0;
  transition: all 0.3s ease;
}
form .form-row .input-data .underline {
  position: absolute;
  bottom: -0.75rem;
  max-height: 2px;
  width: 100%;
}
form .form-row .input-data .underline::before, form .form-row .input-data .underline::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  transform-origin: center;
  transition: transform 0.3s ease;
}
form .form-row .input-data .underline::before {
  transform: scaleX(0);
  background: #333333;
}
form .form-row .input-data .underline::after {
  transform: scaleX(1);
  background: #7ad155;
}

.select-selected {
  cursor: pointer;
  border: none;
  font: inherit;
  color: #333333;
  font-size: 1.75rem;
  font-family: Inter-Light;
  text-transform: uppercase;
  width: calc(12.5vw - 3rem);
  padding: 1rem 0;
  border-bottom: 2px solid #7ad155;
  background-color: #fdfdfd;
}

.select-items {
  position: absolute;
  background-color: #fdfdfd;
  z-index: 2;
  width: calc(12.5vw - 3rem);
}
.select-items div {
  background: linear-gradient(transparent, transparent), linear-gradient(90deg, #7ad155, #7ad155);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 0.2rem 100rem 0.1rem #fdfdfd inset;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 1rem 0.5rem;
  color: #333333;
  font-family: Inter-Light;
  text-transform: uppercase;
  font-size: 1.75rem;
  transition: all 0.3s ease;
  border-bottom: 2px solid #7ad155;
}
.select-items div:hover, .select-items div:focus {
  box-shadow: 0.2rem 100rem 0.1rem rgba(253, 253, 253, 0.9) inset;
}

.select-hide {
  display: none;
}

@media screen and (max-width: 1526px) {
  .contact-form {
    margin: 20rem 0;
    scroll-margin-top: 20rem;
  }
  .contact-form img {
    width: 35vw !important;
  }
}
@media screen and (max-width: 1200px) {
  .contact-form {
    height: 100%;
    flex-direction: column-reverse;
    gap: 10rem;
  }
  .contact-form form {
    width: 65vw;
  }
  .contact-form form .form-row {
    height: 6rem;
    justify-content: space-evenly;
    gap: 5vw;
  }
  .contact-form form .select-selected {
    width: 30vw;
  }
  .contact-form form .select-items {
    width: 30vw;
  }
  .contact-form form .input-data {
    min-width: 30vw;
  }
}
@media screen and (max-width: 720px) {
  .contact-form {
    height: 100vh;
    margin: 5rem 0;
  }
  .contact-form img {
    width: 75vw !important;
  }
  form {
    width: 85vw !important;
  }
  .select-selected {
    width: 40vw !important;
  }
  .select-items {
    width: 40vw !important;
  }
  .input-data {
    min-width: 40vw !important;
  }
  .action-row {
    max-width: 85vw;
  }
}/*# sourceMappingURL=contact-form.css.map */