@media screen and (max-width: 600px) {
  .hide-mobile {
    display: none !important;
  }
}

.show-mobile {
  display: none !important;
}

@media screen and (max-width: 600px) {
  .show-mobile {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.show-mobile_block {
  display: none !important;
}

@media screen and (max-width: 600px) {
  .show-mobile_block {
    display: block !important;
  }
}

html,
body {
  font-size: 62.5%;
  font-family: "Open Sans", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.btn {
  display: inline-block;
  outline: none;
  border: none;
  padding: 1.1rem 2.6rem;
  font-size: 1.6rem;
  border-radius: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-grey {
  color: #f2f2f2;
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-dark {
  color: #011c45;
  background-color: #fff;
}

.btn-link {
  background-color: transparent;
  color: #fff;
}

.control {
  font-size: 18px;
  position: relative;
  display: block;
  cursor: pointer;
  width: 100%;
}

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.control__indicator {
  position: absolute;
  top: 2px;
  right: 0;
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid #cccccc;
  border-radius: 2px;
}

.control--radio .control__indicator {
  border-radius: 50%;
}

/* Check mark */
.control__indicator:after {
  position: absolute;
  display: none;
  content: "";
}

/* Show check mark */
.control input:checked ~ .control__indicator:after {
  display: block;
}

/* Checkbox tick */
body.blue-theme .control--checkbox .control__indicator:after {
  top: 0px;
  left: 5px;
  width: 6px;
  height: 12px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border: solid #0b4194;
  border-width: 0 2px 2px 0;
}

body.green-theme .control--checkbox .control__indicator:after {
  border: solid #15481a;
  top: 0px;
  left: 5px;
  width: 6px;
  height: 12px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-width: 0 2px 2px 0;
}

/* Radio button inner circle */
.control--radio .control__indicator:after {
  top: 7px;
  left: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.input {
  height: 4rem;
  border-radius: 0.4rem;
  outline: none;
  padding: 1rem;
}

.input::-webkit-input-placeholder {
  color: #bdbdbd;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
}

.input:-ms-input-placeholder {
  color: #bdbdbd;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
}

.input::-ms-input-placeholder {
  color: #bdbdbd;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
}

.input::placeholder {
  color: #bdbdbd;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
}

.input-textarea {
  background-color: #fff;
  border: 1px solid #dbe1e9;
  padding: 1rem;
  border-radius: 0.4rem;
  font-family: inherit;
  outline: none;
  height: 8.7rem;
  resize: none;
}

.input-textarea::-webkit-input-placeholder {
  color: #bdbdbd;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
}

.input-textarea:-ms-input-placeholder {
  color: #bdbdbd;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
}

.input-textarea::-ms-input-placeholder {
  color: #bdbdbd;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
}

.input-textarea::placeholder {
  color: #bdbdbd;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
}

.input-default {
  background-color: #fff;
  border: 1px solid #dbe1e9;
}

body.blue-theme .card-header_left h1 {
  color: #011c45;
}

body.blue-theme .card-header_right span {
  color: #011c45;
}

body.blue-theme .card-subtitle {
  color: #011c45;
}

body.blue-theme .card-desc {
  color: #536787;
}

body.blue-theme .card-options_item {
  background-color: #ebf2f7;
  color: #536787;
}

body.green-theme .card-header_left h1 {
  color: #000;
}

body.green-theme .card-header_right span {
  color: #4f4f4f;
}

body.green-theme .card-subtitle {
  color: #000;
}

body.green-theme .card-desc {
  color: #4f4f4f;
}

body.green-theme .card-options_item {
  background: #edf2ef;
  color: #4f4f4f;
}

.card {
  max-width: 69.2rem;
  width: 100%;
  height: auto;
  padding-bottom: 4rem;
}

.card-header {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.card-header_left h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 3.2rem;
  margin-right: 2rem;
  max-width: 50rem;
}

@media screen and (max-width: 600px) {
  .card-header_left h1 {
    margin-right: 0;
    margin-top: 1.2rem;
    font-size: 2rem;
    max-width: 100%;
  }
}

.card-header_right span {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
}

@media screen and (max-width: 600px) {
  .card-header_right span {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 600px) {
  .card-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.card-subtitle {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 600;
  margin-top: 0.8rem;
}

.card-desc {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
  margin-top: 0.8rem;
}

.card-options {
  margin-top: 1.6rem;
}

.card-options_item {
  padding: 0.7rem 1.6rem;
  border-radius: 0.4rem;
  font-size: 1.3rem;
  line-height: 2.4rem;
  font-weight: 700;
}

.card-options_item:not(:last-child) {
  margin-right: 0.8rem;
}

.card:not(:first-child) {
  border-top: 0.5px solid rgba(83, 103, 135, 0.4);
}

.card:not(:first-child) {
  padding-top: 2.4rem;
}

@media screen and (max-width: 600px) {
  .card:nth-child(1) {
    border-top: 0.5px solid rgba(83, 103, 135, 0.4);
    padding-top: 1.2rem;
  }
}

.subscribe {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 4rem;
}

.subscribe h1 {
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.subscribe form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.subscribe form .input-group label {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
}

.subscribe form .input-group input {
  width: 100%;
  margin-bottom: 1.6rem;
  margin-top: 0.8rem;
}

.subscribe form .btn-subscribe {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.subscribe .form_inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.subscribe .form_inline .input-group {
  display: inline-block;
  max-width: 28.5rem;
  width: 100%;
}

.subscribe .form_inline .input-group input {
  margin-bottom: 0;
}

.subscribe .form_inline .btn-subscribe {
  margin-top: 1.6rem;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-left: 1.6rem;
}

body.blue-theme .subscribe h1 {
  color: #011c45;
}

body.blue-theme .subscribe form label {
  color: #536787;
}

body.blue-theme .subscribe form .btn-subscribe {
  color: #011c45;
  background: rgba(11, 65, 148, 0.1);
}

body.green-theme .subscribe h1 {
  color: #000;
}

body.green-theme .subscribe form label {
  color: #000;
}

body.green-theme .subscribe form .btn-subscribe {
  color: #000;
  background: #fff;
  border: 1px solid #15481a;
}

.filter {
  width: 100%;
  height: auto;
  border-radius: 0.8rem;
  padding: 1.6rem;
}

.filter form {
  width: 100%;
  height: auto;
}

.filter form .input-group {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 1.6rem;
  border-bottom: 0.5px solid rgba(83, 103, 135, 0.44);
}

.filter form .input-group:nth-child(2) {
  margin-top: 0.8rem;
}

.filter form .input-group label {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.4rem;
  margin-bottom: 0.8rem;
}

.filter form .input-group input {
  max-width: 25.3rem;
  width: 100%;
}

@media screen and (max-width: 600px) {
  .filter form .input-group input {
    max-width: 100%;
  }
}

.filter form .input-group_inline {
  margin-top: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.filter form .input-group_inline label {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.4rem;
}

.filter form .btn-search {
  width: 100%;
  margin-top: 2.4rem;
}

.filter-mobile {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 4rem;
}

.filter-mobile p {
  font-size: 1.6rem;
  font-weight: 400;
  color: #000;
  margin-right: 2rem;
}

.filter-mobile .btn-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.filter-mobile .btn-holder .btn-search_icon {
  padding: 0.8rem;
}

.filter-mobile .btn-holder .btn-filter {
  padding: 1.2rem 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.filter-mobile .btn-holder .btn-filter img {
  margin-right: 0.8rem;
}

.filter-mobile .btn-holder button:first-child {
  margin-right: 0.8rem;
}

body.blue-theme .filter {
  background-color: #f1f5fb;
}

body.blue-theme .filter form .input-group label {
  color: #011c45;
}

body.blue-theme .filter form .input-group_inline label {
  color: #011c45;
}

body.blue-theme .filter form .btn-search {
  background-color: #0b4194;
  color: #fff;
}

body.green-theme .filter {
  background: rgba(34, 97, 59, 0.08);
}

body.green-theme .filter form .input-group label {
  color: #000;
}

body.green-theme .filter form .input-group_inline label {
  color: #000;
}

body.green-theme .filter form .btn-search {
  background-color: #15481a;
  color: #fff;
}

.apply {
  width: 100%;
  height: auto;
  background: rgba(34, 97, 59, 0.08);
  border-radius: 0.8rem;
  padding: 1.6rem;
}

.apply--title {
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 700;
}

.apply form {
  width: 100%;
  height: auto;
}

.apply form .input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 1.6rem;
}

.apply form .input-group label {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.4rem;
  margin-bottom: 0.8rem;
}

.apply form .upload {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2.4rem;
}

.apply form .upload_left h3 {
  color: #000;
  font-size: 1.6rem;
  font-weight: 2.4rem;
  font-weight: 600;
}

.apply form .upload_left p {
  font-size: 1.2rem;
  line-height: 1.6rem;
  color: #4f4f4f;
  font-weight: 400;
  margin-top: 0.4rem;
}

.apply form .upload_right .btn-choose {
  border: 1px solid #15481a;
  padding: 0.8rem 1.6rem;
  color: #011c45;
  border-radius: 0.4rem;
}

@media screen and (max-width: 768px) {
  .apply form .upload_right .btn-choose {
    margin-top: 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  .apply form .upload {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.apply form .btn-holder {
  width: 100%;
  margin-top: 3.2rem;
}

.apply form .btn-holder .btn-send {
  width: 100%;
  background: #15481a;
  color: #fff;
  font-weight: 400;
}

@media screen and (max-width: 600px) {
  .apply {
    margin-top: 4.8rem;
  }
}

.apply-job {
  max-width: 38.7rem !important;
  width: 100%;
}

.single-job_desc {
  max-width: 69.2rem;
  width: 100%;
  height: auto;
}

.single-job_desc .job-subheading {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.4rem;
  color: #333333;
}

.single-job_desc .job-info--title {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 800;
  margin-top: 2.4rem;
}

.single-job_desc .job-info--list {
  list-style: none;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #4f4f4f;
}

.single-job_desc .job-info--list li {
  margin-top: 0.8rem;
}

.single-job_desc .job-info--list li img {
  width: 100%;
  height: auto;
}

.other-listings {
  width: 100%;
  height: auto;
  background: rgba(242, 242, 242, 0.5);
  padding: 2.4rem 2.4rem 4.8rem 2.4rem;
  border-radius: 0.8rem;
  margin-top: 5.6rem;
}

.other-listings--title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 3.2rem;
}

.other-listings .other-job {
  margin-top: 2.4rem;
}

.other-listings .other-job--title {
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.other-listings .other-job--subtitle {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.4rem;
  color: #333;
}

.other-listings .other-job_location_type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.6rem;
}

.other-listings .other-job_location_type--item {
  background-color: #edf2ef;
  border-radius: 0.4rem;
  padding: 0.4rem 1.6rem;
  font-size: 1.3rem;
  line-height: 2.4rem;
  color: #4f4f4f;
  font-weight: 700;
}

.other-listings .other-job_location_type--item:not(:last-child) {
  margin-right: 0.8rem;
}

@media screen and (max-width: 600px) {
  .other-listings {
    margin-top: 4rem;
  }
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem 3.5rem;
}

.nav-wrapper {
  max-width: 120rem;
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-wrapper_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: inherit;
  text-decoration: none;
}

.nav-wrapper_left img {
  margin-right: 1.2rem;
}

.nav-wrapper_left span {
  font-size: 2rem;
  color: inherit;
  font-weight: 300;
}

.nav-wrapper_right .btn:first-child {
  margin-right: 1.6rem;
}

@media screen and (max-width: 600px) {
  .nav {
    padding: 2rem 1.5rem;
  }
}

body.blue-theme .nav {
  background-color: #0b4194;
  color: #fff;
}

body.green-theme .nav {
  background: linear-gradient(261.03deg, #21613f 27.77%, #266f46 68.42%);
  color: #fff;
}

.header {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 6rem 3.5rem;
}

.header-content {
  max-width: 120rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-content_left {
  max-width: 57.8rem;
  width: 100%;
  height: auto;
  margin-right: 2rem;
  /*Job Listing*/
  /**/
}

.header-content_left h1 {
  font-size: 5.6rem;
  line-height: 6.4rem;
  font-weight: 800;
}

.header-content_left h1 p {
  position: relative;
  display: inline-block;
}

.header-content_left h1 p span {
  position: absolute;
  font-size: 2rem;
  font-weight: normal;
  right: -4rem;
  color: #f2f2f2;
}

@media screen and (max-width: 768px) {
  .header-content_left h1 p span {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .header-content_left h1 {
    font-size: 3.2rem;
    max-width: 40rem;
    line-height: 4rem;
  }
}

@media screen and (max-width: 600px) {
  .header-content_left h1 {
    max-width: 100%;
    text-align: center;
  }
}

.header-content_left .btn-back {
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

.header-content_left .btn-back img {
  margin-right: 0.8rem;
}

.header-content_left .job-date {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 400;
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
}

@media screen and (max-width: 600px) {
  .header-content_left .job-date {
    text-align: center;
    margin-top: 3.2rem;
  }
}

.header-content_left .job-type_location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2.4rem;
}

.header-content_left .job-type_location--item {
  font-size: 1.3rem;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border: 1px solid #fff;
  border-radius: 0.4rem;
  font-weight: 700;
}

.header-content_left .job-type_location--item:not(:last-child) {
  margin-right: 0.8rem;
}

@media screen and (max-width: 600px) {
  .header-content_left .job-type_location {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 600px) {
  .header-content_left {
    margin-right: 0;
  }
}

.header-content_right {
  /*Single Job*/
  /**/
}

.header-content_right p {
  font-size: 5.6rem;
  line-height: 5.6rem;
  font-weight: 300;
  opacity: 0.66;
}

@media screen and (max-width: 768px) {
  .header-content_right p {
    font-size: 3.2rem;
    line-height: 4rem;
  }
}

.header-content_right .btn {
  margin-top: 1.6rem;
}

.header-content_right .company-logo {
  width: 18.3rem;
  margin-top: 3.6rem;
  margin-right: 12rem;
}

@media screen and (max-width: 768px) {
  .header-content_right .company-logo {
    margin-right: 0;
  }
}

.header-content_right .company-name {
  font-size: 2rem;
  color: #fff;
  line-height: 2.4rem;
  font-weight: 700;
  opacity: 1;
  margin-top: 1.6rem;
  margin-bottom: 0.8rem;
}

.header-content_right .btn-website {
  font-size: 1.6rem;
  font-weight: 400;
}

.header-content_right .btn-apply {
  max-width: 27rem;
  width: 100%;
  padding: 1.2rem 11.3rem;
  border-radius: 0.8rem;
  background-color: #000;
  color: #fff;
  margin-top: 2.4rem;
}

@media screen and (max-width: 600px) {
  .header-content_right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .header-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 600px) {
  .header {
    padding: 4rem 1.5rem;
  }
}

.header-single_job {
  padding-top: 0.6rem;
  padding-bottom: 3.2rem;
}

.header-single_job .header-content {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

body.blue-theme .header {
  background-color: #0b4194;
  color: #fff;
}

body.green-theme .header {
  background: linear-gradient(261.03deg, #21613f 27.77%, #266f46 68.42%);
  color: #fff;
}

body.blue-theme .footer-content_left h1 {
  color: #0b4194;
}

body.blue-theme .footer-content_right ul {
  color: #011c45;
}

body.blue-theme .footer-content_right ul li a {
  color: #011c45;
}

body.blue-theme .footer .copy-right {
  color: #536787;
}

body.green-theme .footer-content_left h1 {
  color: #15481a;
}

@media screen and (max-width: 600px) {
  body.green-theme .footer-content_left h1 {
    color: #fff;
  }
}

body.green-theme .footer-content_right ul {
  color: #011c45;
}

body.green-theme .footer-content_right ul li a {
  color: #011c45;
}

@media screen and (max-width: 600px) {
  body.green-theme .footer-content_right ul li a {
    color: #fff;
  }
}

body.green-theme .footer .copy-right {
  color: #4f4f4f;
}

@media screen and (max-width: 600px) {
  body.green-theme .footer .copy-right {
    color: #fff;
  }
}

@media screen and (max-width: 600px) {
  body.green-theme .footer {
    background-color: #266f46 !important;
  }
}

.footer {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f6f6f6;
  padding: 3.2rem 3.5rem 2rem 3.5rem;
}

.footer .copy-right {
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin-top: 7.2rem;
}

@media screen and (max-width: 600px) {
  .footer .copy-right {
    font-size: 1.2rem;
    margin-top: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer-content {
  max-width: 120rem;
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-content_left {
  margin-right: 3rem;
}

.footer-content_left h1 {
  font-size: 3.2rem;
  line-height: 3.2rem;
  max-width: 35.4rem;
}

@media screen and (max-width: 600px) {
  .footer-content_left h1 {
    font-size: 2rem;
    line-height: 2rem;
  }
}

.footer-content_right ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-content_right ul li {
  font-size: 1.6rem;
  line-height: 2.4rem;
}

.footer-content_right ul li a {
  text-decoration: none;
}

.footer-content_right ul li:not(:last-child) {
  margin-right: 3.4rem;
}

@media screen and (max-width: 600px) {
  .footer-content_right ul li:not(:last-child) {
    margin-bottom: 1.2rem;
  }
}

@media screen and (max-width: 600px) {
  .footer {
    padding: 4rem 1.5rem 1.2rem 1.5rem;
  }
}

.main {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 6.4rem 3.5rem;
}

.main-content {
  max-width: 120rem;
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-content_left {
  margin-right: 3rem;
  /*Single Job*/
  /**/
}

.main-content_left .show-older {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0.8rem;
}

.main-content_left .show-older .btn-older {
  border: 1px solid #bdbdbd;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  background-color: #fff;
  color: #011c45;
}

@media screen and (max-width: 600px) {
  .main-content_left .show-older .btn-older {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .main-content_left {
    margin-right: 0;
    margin-top: 4rem;
  }
}

.main-content_right {
  max-width: 28.5rem;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 600px) {
  .main-content_right {
    max-width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .main-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

@media screen and (max-width: 450px) {
  .main {
    padding: 4rem 1.5rem;
  }
}

.main-single_job {
  padding-top: 4.8rem;
  padding-bottom: 8rem;
}

@media screen and (max-width: 600px) {
  .main-single_job {
    padding-bottom: 3.2rem;
    padding-top: 0.8rem;
  }
}
/*# sourceMappingURL=main.css.map */