  html {
    scroll-behavior: smooth;
  }
  .contact-btn {
    display: flex;
    width: 100%;
    padding: 10px 20px;
    justify-content: center;
  }
  .contact-btn .button {
    background: #1C6992;
    border: 1px solid #1C6992;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    transition: .25s;
  }
  .contact-btn .button:hover {
    box-shadow: inset 0 0 0 2em white;
    color:#46a9d4;
    border: 1px solid white;
  }
  .contact-form {
    margin-top: 50px;
    max-width: 75%;
  }
  .contact-form input {
    border-radius: 5px;
    background-color: transparent;
    border: 1px solid #46a9d4 ;
    transition: all 0.3s;
    padding: 13px;
    margin-top: 15px;
    width:100%;
    box-sizing: border-box;
    outline:0;
    font-size: 1rem;
  }

.contact-form input:focus { border:2px solid #5cb3d9 ; }

.contact-form textarea {
  border-radius: 5px;
  background-color: transparent;
  border: 1px solid #46a9d4 ;
  transition: all 0.3s;
  padding: 13px;
  margin-top: 15px;
  width:100%;
  height: 100px;
  min-height: 100px;
  max-height: 400px;
  box-sizing: border-box;
  outline:0;
  font-size: 1rem;
  resize: vertical;
}

.form-submit {
  background:#46a9d4  !important;
  cursor:pointer;
  color:white !important;
  padding-top:10px;
  padding-bottom:10px;
  margin-top:10px;
}
.form-submit:hover { background:#5cb3d9 !important; }

.recaptcha-container {
  display: flex;
  justify-content: center;
  margin: 15px 0;
}
.checkbox-div {
  display: flex;
  justify-content: center;
}
.checkbox-div input {
  width: 20px;
  margin: 0;
  cursor:pointer;
  margin-right: 10px;
}
.error-message {
  color: red;
  font-size: 0.8rem;
  font-weight: normal;
  margin-left: 5px;
}
.hidden {
  display: none;
}
.successfully-sended {
    color: #1B7C18;										
    padding: .75em;
    background: #D6F8DD;
    margin-top: 20px;
    transition: 1s;
    max-height: 50px;
}
.badly-sended {
    color: #c00f0f;										
    padding: .75em;
    background: #ffdada;
    margin-top: 20px;
    transition: 1s;
    max-height: 50px;
}
.fadeout {
    max-height: 0;
    padding: 0;
    margin: 0;
    opacity: 0;
}
