/** contact-form-section **/

.contact-form-section{
    position: relative;
    display: block;
  }
  
  .contact-form-section .sec-title{
    position: relative;
    display: block;
    margin-bottom: 40px;
  }
  
  .contact-form-section .contact-form .form-group{
    position: relative;
    display: block;
    margin-bottom: 20px;
  }

  
  .contact-form-section .contact-form .form-group input[type='text'],
  .contact-form-section .contact-form .form-group input[type='number'],
  .contact-form-section .contact-form .form-group input[type='email'],
  .contact-form-section .contact-form .form-group textarea,select{
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    background: #fff;
    border: 0.5px solid #aaaaaa;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 15px;
    color: #2b3c6b;
    transition: all 500ms ease;
  }
  
  .contact-form-section .contact-form .form-group textarea{
    height: 170px;
    resize: none;
    margin-bottom: 30px;
  }
  
  .contact-form-section .contact-form .form-group input:focus,
  .contact-form-section .contact-form .form-group textarea:focus,select:focus{
    border-color: #f39b29;
  }
  
  .contact-form-section .contact-form .form-group input::-webkit-input-placeholder,
  .contact-form-section .contact-form .form-group textarea::-webkit-input-placeholder{
    color:#2b3c6b;
  }
  
  .theme-btn{
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    padding: 17px 40px;
    background-color: #64B8F0;
    line-height: 26px;
    color: #ffffff !important;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    transition: all 500ms ease;
    z-index: 1;
    border: 0;
    border-radius: 30px;
  }
  
  .theme-btn:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background-color: #FDD300;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0.2, 1);
    transform: scale(0.2, 1);
    border-radius: 30px;
  }
  
  .theme-btn:hover:before {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  .error{
      margin-top: 1rem;
  }