.text-main{
    color: rgb(0, 54, 121) !important; 
}
.form-group {
    margin-bottom: calc(1rem + 8px);
}
.form-control-container {
    position: relative;
  }
  
  .form-control:focus {
    box-shadow: none;
  }
  .contact-form-area textarea.form-control{
      height: auto ;
  }
  
  .contact-form-area .form-control {
    border: none;
    border-bottom: 1px solid #e0e0e0 ;
    background-color: transparent !important;
    border-radius: 0;
    font-size: 13px;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    padding-left: 0;
    padding-right: 0;
    height: 40px;
    margin-bottom:0;
  }
  .contact-form-area label {
    top: -7.5px;
    margin: 0;
    color: rgb(109, 109, 109);
    font-weight: 700;
    position: absolute;
    font-size: 12px;
    z-index: 10;
  }
  
  
  
  .form-control:focus ~ label {
    color: rgb(0, 54, 121);
  }
  .form-control[required] ~ label::after{
      content: ' *';
      color: #f00;
      vertical-align: middle;
  }
  
  .form-control-line {
    position: absolute;
    content: '';
    background-color: rgb(0, 54, 121);
    height: 2px;
    left: 50%;
    right: 50%;
    bottom: -1px;
    z-index: 2;
    transition: .15s ease-in-out all;
  }

  .form-control:focus ~ .form-control-line {
    left: 0;
    right: 0;
  }

  .check-box {
    background: none;
    border: 2px solid #ddd;
    border-radius: 2px;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    flex-shrink: 0;
    height: 24px;
    margin: 0;
    outline: none;
    padding: 0;
    position: relative;
    transform: none;
    width: 24px;
  }

  .check-box.checked{
    background: rgb(0, 54, 121);
    border-color: rgb(0, 54, 121);
  }
  .check-mark{
    border-color: #fff;
    border-style: solid;
    border-width: 0 2px 2px 0;
    content: '';
    display: block;
    height: 73%;
    transform: scale(0) rotate(45deg);
    transform-origin: 100% 80%;
    width: 36%;
  }


.check-box.checked .check-mark{
  transform: scale(1) rotate(45deg);
  transition: transform 140ms ease-out;
}

.btn-main, .btn-other{
  font-size: 13px;
  text-transform: uppercase;
  border-radius: 0 !important;
  font-weight: bold;
  width: 120px;
}
.btn-main{
  background-color: rgb(0, 54, 121);
  color: #fff;
}
.btn-other{
  background-color: #fff;
  color: rgb(0, 54, 121);
  border: 2px solid;
}

.btn-main:focus, .btn-main:active{
  background-color: #0c5460;
  box-shadow: none !important;
}

.btn-other:focus, .btn-other:active{
  background-color: #fff;
  box-shadow: none !important;
}
  