.jobs .sub-header {
  background-color: var(--light-color);
  overflow: hidden;
  position: relative;
  padding: 120px 0;
  width: 100%;
  height: 100%;
  background-position: bottom;
  background-size: cover;
}
.jobs .sub-header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  top: 0;
}
.jobs .sub-header .sub-header-block {
  width: 760px;
  margin: auto;
  z-index: 10;
}
.jobs .sub-header .sub-header-block h1 {
  text-align: center;
  font-size: 48px;
  line-height: 56px;
  padding-bottom: 14px;
  color: #FFF;
}
.jobs .sub-header .sub-header-block p {
  text-align: center;
  color: #FFF;
}
.jobs .search-box {
  position: relative;
  text-align: center;
  border-radius: 40px;
  width: 600px;
  background: var(--bg-color);
  box-shadow: 0px 6px 8px 0 rgba(0, 0, 0, 0.1);
  margin: auto;
  margin-top: -25px;
}
.jobs .search-box input[type=text] {
  min-width: 600px;
  border-radius: 40px 0 0 40px;
  height: 54px;
}
.jobs .search-box input[type=text]::-ms-clear {
  display: none;
}
.jobs .search-box .searchbtn {
  position: absolute;
  background: var(--red-color);
  border: 0;
  color: var(--white-color);
  cursor: pointer;
  padding: 0 20px;
  float: right;
  height: 54px;
  outline: none;
  border-radius: 0 40px 40px 0;
  box-shadow: 0px 6px 8px 0 rgba(0, 0, 0, 0.1);
}
.jobs .search-box .searchbtn svg {
  height: 20px;
  fill: #FFF;
}
.jobs .jobs-body {
  padding: 110px 0;
}
.jobs .jobs-body .sidebar-area {
  margin-bottom: 40px;
}
.jobs .jobs-body .sidebar-area .filter-group {
  margin-bottom: 30px;
}
.jobs .jobs-body .sidebar-area .filter-group h3 {
  font-size: 1.125rem;
  color: var(--black-color);
  line-height: 24px;
}
.jobs .jobs-body .sidebar-area .filter-group .checkbox {
  display: block;
  position: relative;
  cursor: pointer;
  margin-left: 30px;
  margin-bottom: 8px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.jobs .jobs-body .sidebar-area .filter-group .checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.jobs .jobs-body .sidebar-area .filter-group .checkbox-tick {
  position: absolute;
  top: 0;
  left: -30px;
  height: 18px;
  width: 18px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}
.jobs .jobs-body .sidebar-area .filter-group .checkbox:hover input ~ .checkbox-tick {
  border-color: var(--red-color);
}
.jobs .jobs-body .sidebar-area .filter-group .checkbox input:checked ~ .checkbox-tick {
  background-color: var(--red-color);
  border-color: var(--red-color);
}
.jobs .jobs-body .sidebar-area .filter-group .checkbox-tick:after {
  content: "";
  position: absolute;
  display: none;
  transition: all 0.2s ease;
}
.jobs .jobs-body .sidebar-area .filter-group .checkbox input:checked ~ .checkbox-tick:after {
  display: block;
}
.jobs .jobs-body .sidebar-area .filter-group .checkbox .checkbox-tick:after {
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid var(--white-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.jobs .jobs-body .jobs .find h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  line-height: 34px;
}
.jobs .jobs-body .jobs .job-box {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin-bottom: 30px;
  transition: all 250ms ease;
  padding: 30px;
}
.jobs .jobs-body .jobs .job-box .first-block {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.jobs .jobs-body .jobs .job-box .first-block .job-title {
  margin-right: 10px;
}
.jobs .jobs-body .jobs .job-box .first-block .job-title h3 {
  font-size: 1.0625em;
  margin-bottom: 0;
  color: var(--black-color);
}
.jobs .jobs-body .jobs .job-box .first-block .employment-type {
  background: var(--red-color);
  border-radius: 40px;
  padding: 0px 8px;
}
.jobs .jobs-body .jobs .job-box .first-block .employment-type p {
  font-size: 12px;
  color: #FFF;
}
.jobs .jobs-body .jobs .job-box .second-block {
  display: flex;
  align-items: center;
}
.jobs .jobs-body .jobs .job-box .second-block .location {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.jobs .jobs-body .jobs .job-box .second-block .location svg {
  height: 16px;
  margin-right: 10px;
  fill: var(--black-color);
}
.jobs .jobs-body .jobs .job-box .second-block .location p {
  font-size: 14px;
  color: var(--black-color);
}
.jobs .jobs-body .jobs .job-box .second-block .category {
  display: flex;
  align-items: center;
}
.jobs .jobs-body .jobs .job-box .second-block .category svg {
  height: 16px;
  margin-right: 10px;
  fill: var(--black-color);
}
.jobs .jobs-body .jobs .job-box .second-block .category p {
  font-size: 14px;
  color: var(--black-color);
}
.jobs .jobs-body .jobs .job-box:hover {
  border: 1px solid var(--red-color);
}

@media (max-width: 767.98px) {
  .jobs .search-box {
    width: 80%;
    display: flex;
    flex-direction: row-reverse;
  }
  .jobs .search-box input[type=text] {
    min-width: 100%;
    background: transparent;
    border: 0;
    height: 46px;
  }
  .jobs .search-box .searchbtn {
    height: 46px;
  }
  .jobs .jobs-body {
    padding: 80px 0;
  }
  .jobs .jobs-body .jobs .job-box .first-block {
    align-items: flex-start;
    flex-direction: column-reverse;
  }
  .jobs .jobs-body .jobs .job-box .second-block {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 1199.98px) {
  .jobs .search-box {
    width: 80%;
    display: flex;
    flex-direction: row-reverse;
  }
  .jobs .search-box input[type=text] {
    min-width: 100%;
    background: transparent;
    border: 0;
    height: 46px;
  }
  .jobs .search-box .searchbtn {
    height: 46px;
  }
  .jobs .sub-header {
    padding: 60px 0;
    background-attachment: inherit;
  }
  .jobs .sub-header .sub-header-block h1 {
    font-size: 32px;
    line-height: 34px;
    margin-bottom: 0;
  }
  .jobs .sub-header .sub-header-block p {
    font-size: 17px;
    line-height: 20px;
  }
}

/*# sourceMappingURL=jobs.css.map*/