/* MAIN CONTENT STYLES */
#map-container {
    height: 100%;
    padding-bottom: 30px;
  }
  
  #map {
    height: 650px;
    background-color: cornflowerblue;
    width:100%;
  
  }
  #contact-form{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  
  #contact-form > div.form-group
  {
    width:50%;
  }
  
  @media only screen and (max-width: 750px) {
    #contact-form > div.form-group {
      width: 80%!important;	
    }
  }
  
  .contact-form-button{
    width:180px;
    height: 40px;
    font-size: 22px ;
    margin-top:30px;
  }
  
  .background-color-2 {
    background-color: rgba(101, 131, 254, 0.05);
  }

  .form-group{
    margin-bottom:1rem
  }
  
  input {
    overflow: visible;
  }

  .form-control {
    display: block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    cursor: text;
}
textarea.form-control{
  height:auto
}

input,textarea
{
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

#contact-form-message {
  display: none;
}
  /* END MAIN CONTENT STYLES */
  