.contact_index td {
  font-size: 1.9vh;
}
.contact_index {
  margin: 0 10vw;
}

h1 {
  font-size: 10vh;
  color: whitesmoke;
}

h2 {
  font-size: 3vh;
  padding: 3vh;
  color: #fe6b16;
}

a {
  text-decoration: none;
  color: black;
}

#send_button {
  display: none;
}

#notice {
  display: none;
}

#mobile {
  display: none;
}

#mobile2 {
  display: none;
}

.contact_container {
  margin: 1rem;
  background-color: #264e6f;
}

/*here*/

.container form {
  padding: 30px 0 0 0;
}

.container form .form-row {
  display: flex;
  margin: 32px 0;
}

form .form-row .input-data {
  width: 100%;
  height: 40px;
  margin: 0 20px;
  position: relative;
}

form .form-row .textarea {
  height: 70px;
}

.input-data input,
.textarea textarea {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  font-size: 17px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.12);
}

.input-data input:focus ~ label,
.textarea textarea:focus ~ label,
.input-data input:valid ~ label,
.textarea textarea:valid ~ label {
  transform: translateY(-20px);
  font-size: 14px;
  color: #3498db;
}

.textarea textarea {
  resize: none;
  padding-top: 10px;
}

.input-data label {
  position: absolute;
  pointer-events: none;
  bottom: 10px;
  font-size: 2vh;
  transition: all 0.3s ease;
}

.textarea label {
  width: 100%;
  bottom: 40px;
  background: #fff;
}

.input-data .underline {
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 100%;
}

.input-data .underline:before {
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  background: #3498db;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.input-data input:focus ~ .underline:before,
.input-data input:valid ~ .underline:before,
.textarea textarea:focus ~ .underline:before,
.textarea textarea:valid ~ .underline:before {
  transform: scale(1);
}

.submit-btn .input-data {
  overflow: hidden;
  height: 45px !important;
  width: 25% !important;
}

.submit-btn .input-data .inner {
  height: 100%;
  width: 300%;
  position: absolute;
  left: -100%;
  background: -webkit-linear-gradient(
    right,
    #ec681f,
    #ec681f,
    #f6ac90,
    #f6ac90
  );
  transition: all 0.4s;
}

.submit-btn .input-data:hover .inner {
  left: 0;
}

.submit-btn .input-data input {
  background: none;
  border: none;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.contact-table {
  border-collapse: collapse;
  margin: 25px 2.5vh;
  font-size: 0.9em;
  min-width: 40vh;
}

.content-table th,
.contact-table td {
  padding: 12px 15px;
  vertical-align: top;
}

.contacts {
  margin: 4vh;
  display: grid;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  grid-template-columns: 1fr 2fr;
}

.submit-button {
  border: none;
  background: linear-gradient(
    346deg,
    rgba(255, 72, 0, 1) 0%,
    rgba(255, 158, 0, 1) 100%
  );
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  color: white;
  cursor: pointer;
  padding: 0.5em;
  width: auto;
  margin: 0.1em;
  margin: 2vh;
}

.submit-button:disabled:hover {
  border: none;
  background: #f9f9f9;
  color: gray;
  cursor: not-allowed;
}
.submit-button:disabled {
  border: none;
  background: #f9f9f9;
  color: gray;
  cursor: not-allowed;
}

.submit-button:hover {
  background: linear-gradient(
    346deg,
    rgba(255, 72, 0, 1) 0%,
    rgba(255, 158, 0, 1) 50%
  );
}

.submit-button:active {
  opacity: 0.5;
}

.container p {
  font-size: 17px;
  padding-left: 3vh;
  line-height: 1.5;
}
.captcha {
  margin: 3vh;
  background-color: white;
  font-size: 3vh;
}
@media screen and (orientation: portrait) {
  .contacts {
    display: inline;
    margin: 0;
  }

  .links {
    display: none;
  }
  h1 {
    font-size: 5vh;
  }

  .container form .form-row {
    display: inline-block;
    margin: 0;
  }

  .contact-table {
    margin: 0;
    min-width: 100vw;
  }

  .container form .form-row .input-data {
    margin: 10px 0 10px 0;
    padding-left: 3vh;
  }

  .input-data input,
  .textarea textarea {
    width: 90vw;
  }
  .input-data .underline:before {
    width: 90vw;
  }

  .contact_index {
    margin: 0 0vw;
  }
}
