/*--------------------------------------------------------------
# employment
--------------------------------------------------------------*/
.employment {
  padding: 15px 0;
  background: whitesmoke;
  min-height: 40px;
  margin-top: 74px;
}

.employment h2 {
  font-size: 28px;
  font-weight: 400;
}

.employment ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.employment ol li+li {
  padding-left: 10px;
}

.employment ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 992px) {
  .employment {
    margin-top: 68px;
  }

  .employment .d-flex {
    display: block !important;
  }

  .employment ol {
    display: block;
  }

  .employment ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# careers
--------------------------------------------------------------*/
.careers .careers-icon-box {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 50px 20px;
  transition: all ease-in-out 0.3s;
  background: #f1eadc;
}

/* #option-select:hover {
  cursor: pointer;
} */
  
.careers .careers-icon-box h5 a:hover {
  color: #ffc451;
}

.careers .careers-icon-box h5 {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.careers .careers-icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}



/*
employment php-email-form
*/

.employment .php-email-form {
  width: 100%;
  /* background: #ffc55146 */
}

.employment .php-email-form .form-group {
  padding-bottom: 8px
}

.employment .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600
}

.employment .php-email-form .error-message br+br {
  margin-top: 25px
}

.employment .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600
}

.employment .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px
}

.employment .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite
}

.employment .php-email-form input,
.employment .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px
}

.employment .php-email-form input:focus,
.employment .php-email-form textarea:focus {
  border-color: #ffc451
}

.employment .php-email-form input {
  height: 44px
}

.employment .php-email-form textarea {
  padding: 10px 12px
}

.employment .php-email-form button[type=button] {
  background: #ffc451;
  border: 0;
  padding: 10px 24px;
  color: #151515;
  transition: .4s;
  border-radius: 4px
}

.employment .php-email-form button[type=button]:hover {
  background: #ffcd6b;
}


