.top{
    background-color: white;
    padding-bottom: 12vh;
}
.logo-link{
    color: black;
}
.nav-link{
    color: black;
}
.nav-link:hover{
    color: rgb(57, 57, 57);
}
.dropdown-content li a{
    color: black;
}
.dropdown-content li a:hover{
    color: rgb(57, 57, 57);
}
.bar{
    background-color: black;
}
.intro {
    text-align: center;
    color: black;
    font-size: 4rem;
    margin-top: 6vh;
    margin-bottom: 3vh;
}
.desc {
    color: black;
    text-align: center;
    margin: 0 auto 3vh auto;
    font-size: 1.3rem;
}
.contact{
    margin: auto;
    width: 50vw;
    min-width: 300px;
    max-width: 600px;
}
.input-text-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
/*.input-text{
    width: 100%;
    height: 40px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: solid 1px lightgray;
    padding: 5px 10px;
    font-size: 1rem;
}
.message{
    display: block;
    width: 100%;
    resize: none;
    border-radius: 20px;
    border: 2px solid rgb(200, 200, 200);
    padding: 0.8em;
    font-size: 1rem;
}
.message:focus{
    outline: none;
    border-color: rgb(150, 150, 200);
}*/
.reason{
    width: 100%;
    text-align: center;
    height: 50px;
    margin-bottom: 20px;
    border-radius: 20px;
    border: 2px solid rgb(200, 200, 200);
    padding: 5px 20px;
    font-size: 1rem;
    font-family: "San Francisco", "Lucida Grande", Roboto, Renogare, Roberto, Arial, sans-serif;
}
.reason:focus{
    outline: none;
    border-color: #619bae;
}
input, textarea{
    font-family: "San Francisco", "Lucida Grande", Roboto, Renogare, Roberto, Arial, sans-serif;
    z-index: 1;
}
.btn {
    font-size: 1.1rem;
    font-weight: 300;
    text-transform: uppercase;
    height: 50px;
    width: 100%;
    border-radius: 30px;
    border: none;
    background-image: linear-gradient(100deg, #32ccff 50%, #a601ff 300%);
    color: #fff;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  
  .btn > * {
    display: inline-block;
    transition: all ease-in-out .3s;
  }
  
  .btn__visible {
    padding: 1.1rem 3rem;
    text-align: center;
  }
  
  .btn__invisible {
    width: 100%;
    position: absolute;
    padding: 1.1rem 0;
    left: 0;
    top: -100%;
  }
  
  .btn:hover {
    background-image: linear-gradient(160deg, #32ccff 50%, #a601ff 300%);
  }
  
  .btn:hover .btn__visible {
    transform: translateY(100%);
  }
  
  .btn:hover .btn__invisible {
    top: 0;
  }
  
  .btn:focus {
    outline: none;
  }
.inputGroup {
    font-family: 'Segoe UI', sans-serif;
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    z-index: 0;
  }
  
  .inputGroup input {
    font-size: 100%;
    padding: 0.8em;
    outline: none;
    border: 2px solid rgb(200, 200, 200);
    background-color: transparent;
    border-radius: 20px;
    width: 100%;
  }
  .inputGroup textarea{
    font-size: 100%;
    padding: 0.8em;
    outline: none;
    border: 2px solid rgb(200, 200, 200);
    background-color: transparent;
    border-radius: 20px;
    width: 100%;
    resize: none;
  }
  
  .inputGroup label {
    font-size: 100%;
    position: absolute;
    left: 0;
    padding: 0.8em;
    margin-left: 0.5em;
    pointer-events: none;
    transition: all 0.3s ease;
    color: rgb(100, 100, 100);
  }
  
  .inputGroup :is(input:focus, input:valid)~label {
    transform: translateY(-50%) scale(.9);
    margin: 0em;
    margin-left: 1.3em;
    padding: 0.4em;
    background-color: white;
  }
  
  .inputGroup :is(input:focus, input:valid) {
    border-color: #619bae;
  }

  .inputGroup :is(textarea:focus, textarea:valid)~label {
    transform: translateY(-50%) scale(.9);
    margin: 0em;
    margin-left: 1.3em;
    padding: 0.4em;
    background-color: white;
  }
  
  .inputGroup :is(textarea:focus, textarea:valid) {
    border-color: #619bae;
  }