.pb-4 {
    padding-bottom: 1.5rem !important;
}
.p-4 {
    padding: 1.5rem !important;
}
.justify-content-center {
    justify-content: center !important;
}
.w-100 {
    width: 100% !important;
}
.d-flex {
    display: flex !important;
}
.text-center {
    text-align: center !important;
}
h2, .h2 {
    font-size: 2rem;
}
#contact-form .form-outline {
    position: relative;
    width: 100%;
}
.mb-4 {
    margin-bottom: 1.5rem !important;
}
.mt-10{
    margin-top: 10px;
}
#contact-form .form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: .8rem;
    font-weight: 400;
    line-height: 1.6;
    color: #4f4f4f;
    appearance: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #bdbdbd;
    border-radius: 0.25rem;
    box-shadow: rgba(0, 0, 0, 0.075);
    transition: all .2s linear;
}
#contact-form .form-outline .form-control {
    min-height: auto;
    padding-top: .32rem;
    padding-bottom: .32rem;
    padding-left: .75rem;
    padding-right: .75rem;
    /* border: 0; */
    background: rgba(0,0,0,0);
    transition: all .2s linear;
}
#contact-form .form-outline .form-control~.form-label {
    position: absolute;
    top: 0;
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    left: .75rem;
    padding-top: .37rem;
    pointer-events: none;
    transform-origin: 0 0;
    transition: all .2s ease-out;
    color: #757575;
    margin-bottom: 0;
}
#contact-form label {
    display: inline-block;
}
#contact-form textarea{
    font-family: 'Rubik', sans-serif;
}
#contact-form textarea.form-control {
    min-height: calc(1.6em + 0.75rem + calc(1px * 2));
}
button:not(:disabled), [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled) {
    cursor: pointer;
}
#contact-form .btn-block {
    margin-top: 0.5rem;
    display: block;
    width: 100%;
}
#contact-form .btn-primary {
    background-color: #3b71ca;
    color: #fff;
    box-shadow: 0 4px 9px -4px #386bc0;
}
#contact-form .btn-primary:hover, #contact-form .btn-primary:focus, #contact-form .btn-primary:active {
    background-color: #386bc0;
    color: #fff;
}
#contact-form .btn {
    padding-top: 0.625rem;
    padding-bottom: 0.5rem;
    border-width: 0;
    border-color: none;
    border-radius: 0.25rem;
    box-shadow: 0 4px 9px -4px rgba(0,0,0, 0.35);
    padding-top: 0.625rem;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    vertical-align: bottom;
    border: 0;
    border-radius: 0.25rem;
    box-shadow: rgba(0,0,0, 0.35);
}
#contact-form .btn:hover{
    box-shadow: 0 8px 9px -4px rgba(0,0,0, 0.15), 0 4px 18px 0 rgba(0,0,0, 0.1);
}
#contact-form .btn:focus{
    box-shadow: 0 8px 9px -4px rgba(0,0,0, 0.15), 0 4px 18px 0 rgba(0,0,0, 0.1);
}
#contact-form .btn:active{
    box-shadow: 0 8px 9px -4px rgba(0,0,0, 0.15), 0 4px 18px 0 rgba(0,0,0, 0.1);
}
.spinner {
    display: inline-block;
    opacity: 0;
    width: 0;
    -webkit-transition: opacity 0.25s, width 0.25s;
    -moz-transition: opacity 0.25s, width 0.25s;
    -o-transition: opacity 0.25s, width 0.25s;
    transition: opacity 0.25s, width 0.25s;
  }
  
  .has-spinner.active {
    cursor: progress;
  }
  
  .has-spinner.active .spinner {
    opacity: 1;
    width: auto;
  }
  
  .has-spinner.btn.active .spinner {
    min-width: 20px;
  }