/* Container for the job articles */
.jobs-container {
    display: flex;
    flex-wrap: wrap;
   
}
.jobs-container article {
    margin: 10px;
}

.jobs-container {
    margin-left: -10px;
    margin-right: -10px;
}

/* Job article styles */
.job-article {
    flex-basis: calc(33.33% - 20px);
    box-sizing: border-box;
    background-color: #fdfdfd;
    margin-bottom: 20px;
    border: #eee;
    border-style: solid;
    border-width: 2px;
    border-radius: 10px;
}

/* Mobile styles */
@media screen and (max-width: 767px) {
    .job-article {
        flex-basis: 100%;
    }
  
}

@media only screen and (max-width: 640px) {

  .jobs-container {
    margin-left: -50px!important;
    margin-right: -50px!important;
}
.job-search-form .form-group {
  width: 100%!important;
}
}

.job-title-blue {
  color: #4797a8;
  font-weight: 500;
}

.entry-header {
  background-image: url(http://monkeypuzzledaynurseries.com/wp-content/uploads/2023/06/careers-bg.webp);
  height: 240px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  line-height: 240px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

h2.entry-title {
    margin-top: 0px;
    margin-bottom: 0px;
    color: #fff!important;
    padding-left: 20px;
    padding-right: 20px;
}

.job-meta {
  line-height: 16px;
  margin-bottom: 20px;
  height: 180px;
}

.job-buttons {
    display: flex;
    justify-content: space-between;
}

.job-link-button,
.apply-link-button {
    display: inline-block;
    padding: 10px 35px;
    text-decoration: none;
    color: #fff!important;
    border-radius: 4px;
    transition: background-color 0.2s;
    font-size: 18px!important;
}

.job-link-button {
    background-color: #4797a8;
}

.job-link-button:hover {
    background-color: #15588d;
}

.apply-link-button {
    background-color: #73c04e;
}

.apply-link-button:hover {
    background-color: #5baa2d;
}

.job-search-form {
  display: flex;
  flex-wrap: wrap;
 margin-top:30px;
}

h1 {
  color:#4797a8;
  font-size: 42px;
}

.job-search-form label {
  display: block;
  margin-right: 10px;
}

.job-search-form .form-group {
  margin-bottom: 10px;
}

.job-search-form .form-control {
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.job-search-form .form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}

@media screen and (min-width: 768px) {
  .job-search-form .form-group {
    flex: 1;
    margin-right: 10px;
    margin-bottom: 0;
  }
 
}

.entry-footer {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom:20px;
}

.btn-primary {
  padding: 12px 35px;
  text-decoration: none;
  color: #fff!important;
  border-radius: 4px;
  transition: background-color 0.2s;
  font-size: 20px!important;
  width: 100%;
  margin-top: 31px;
  background-color: #73c04e;
  font-family: 'filson-pro'!important;
  border: none;
}

.no-jobs {
  margin-top: 30px;
  margin-bottom: 30px;
}