main .call{
   max-width: 1200px;
   margin: auto;
   padding: 10vh;
   position: relative;
   margin-top: 5vh;
   border-radius: 1vh;
   margin-bottom: 5vh;
   display: flex;
   flex-direction: column;
   gap: 2vh ;
}
main span{
   color: rgba(0,0,0,0.7);
   line-height: 24px;
   font-weight: 400;
}
main h2{
  font-size: 2.5vh;
  line-height: 1.08349;
  font-weight: 600;
  letter-spacing: -.003em;
}

main .call .wrapper{
  width: 715px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 10px 10px 10px rgba(0,0,0,0.05);
}
main .call .wrapper header{
  font-size: 22px;
  font-weight: 600;
  padding: 20px 30px;
  border-bottom: 1px solid #ccc;
}
main .call .wrapper form{
  margin: 35px 30px;
}
main .call .wrapper form.disabled{
  pointer-events: none;
  opacity: 0.7;
}
main .call form .dbl-field{
  display: flex;
  margin-bottom: 25px;
  justify-content: space-between;
}
main .call .dbl-field .field{
  height: 50px;
  display: flex;
  position: relative;
  width: calc(100% / 2 - 13px);
}
main .call .wrapper form i{
  position: absolute;
  top: 50%;
  left: 18px;
  color: #ccc;
  font-size: 17px;
  pointer-events: none;
  transform: translateY(-50%);
}
main .call form .field input,
main .call form .message textarea{
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 15px 0 15px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
main .call .field input::placeholder,
main .call .message textarea::placeholder{
  color: #ccc;
}
main .call .field input:focus,
main .call .message textarea:focus{
  padding-left: 47px;
  border: 2px solid #0D6EFD;
}
main .call .field input:focus ~ i,
main .call .message textarea:focus ~ i{
  color: #0D6EFD;
}
main .call form .message{
  position: relative;
}
main .call form .message i{
  top: 30px;
  font-size: 20px;
}
main .call form .message textarea{
  min-height: 130px;
  max-height: 230px;
  max-width: 100%;
  min-width: 100%;
  padding: 10px 0 20px 15px;
}
main .call form .message textarea::-webkit-scrollbar{
  width: 0px;
}
main .call .message textarea:focus{
  padding-top: 14px;
}
main .call form .button-area{
  margin: 25px 0;
  display: flex;
  align-items: center;
}
main .call .button-area button{
  color: #fff;
  border: none;
  outline: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  padding: 13px 25px;
  background: #4368b0;
  transition: background 0.3s ease;
}
main .call .button-area button:hover{
  background: #4368b0;
}
main .call .button-area span{
  font-size: 17px;
  margin-left: 30px;
  display: none;
}
@media (max-width: 600px){
  .wrapper header{
    text-align: center;
  }
  .wrapper form{
    margin: 35px 20px;
  }
  form .dbl-field{
    flex-direction: column;
    margin-bottom: 0px;
  }
  form .dbl-field .field{
    width: 100%;
    height: 45px;
    margin-bottom: 20px;
  }
  form .message textarea{
    resize: none;
  }
  form .button-area{
    margin-top: 20px;
    flex-direction: column;
  }
  .button-area button{
    width: 100%;
    padding: 11px 0;
    font-size: 16px;
  }
  .button-area span{
    margin: 20px 0 0;
    text-align: center;
  }
}

@media screen and (max-width: 850px) {
  main .call{
      margin-top: 10vh;
      padding: 2vh;
  }
  main .call .dbl-field .field{
    width: 100%;
  }
}