body {
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f7f9fa;
}

.body-home {
  background-color: #fff;
}

/* Header */
header {
  background-color: #1a0dab;
  position: relative;
  padding-bottom: 10px;
  box-shadow: 0px 2px 8px #eeeeee;
}

header.home {
  clip-path: ellipse(75% 100% at top);
  padding-bottom: 46px;
}

.logo {
  margin-top: 10px;
}

.logo img {
  max-width: 100%;
  max-height: 50px;
}

header nav {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  padding-top: 10px;
}

header nav a,
.mobile-menu-list a {
  text-decoration: none;
  color: #fff;
  padding: 0;
  display: flex;
  justify-content: center;
}

header nav a:before,
.mobile-menu-list a:before {
  content: "";
  width: 20px;
  height: 3px;
  border-radius: 2px;
  position: absolute;
  top: -10px;
  transition: 0.3s;
}

header nav a.current-page:before,
header nav a:hover:before,
.mobile-menu-list a.current-page:before {
  background: #fff;
}

header nav ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
  height: 100%;
}

header nav ul li {
  padding: 0 20px;
  position: relative;
  display: flex;
  align-items: center;
}

.box-form {
  text-align: center;
}

.box-form h1 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-top: 25px;
}

.box-form .row > div {
  display: flex;
  justify-content: center;
}

.box-form form {
  display: flex;
  background-color: red;
  border-radius: 50px;
  min-height: 44px;
  padding: 5px 10px 5px 20px;
  width: 85%;
  justify-content: space-around;
  margin: 15px 0;
}

.box-form form div {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  width: 40%;
  position: relative;
}

.box-form form div:first-child:after {
  width: 1px;
  height: 70%;
  background: #c1c1c1;
  content: "";
  position: absolute;
  right: 5px;
}

.box-form form div:last-child {
  width: max-content;
}

.box-form form div label {
  font-size: 12px;
  font-weight: 600;
  color: #1a0dab;
  text-align: left;
}

.box-form form input {
  font-size: 14px;
  color: #333333;
  border: 0;
  width: 90%;
}

.box-form form input:focus {
  outline: none;
}

.box-form form button {
  border: 0;
  background: #1a0dab;
  box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  color: #fff;
  width: 90px;
  height: 32px;
}

.box-form form button:active {
  background-color: #160b8a;
}

.job-detail svg {
  width: 12px;
  height: 12px;
}

.job-detail svg path,
.job-detail svg polygon {
  fill: #909090;
}

#fill-none {
  fill: none;
}

/* .menu-mobile */
#pageContainer {
  position: relative;
  -webkit-transition: right 0.3s linear;
  transition: right 0.3s linear;
  right: 0;
  -webkit-transition: transform 0.7s ease;
  transition: transform 0.7s ease;
  -webkit-transform-origin: 50% 200px 0;
  transform-origin: 50% 200px 0;
}

#pageContainer.sidebar-open {
  position: fixed;
  transform: scale3d(0.9, 0.9, 0.9);
  -webkit-transform: scale3d(0.9, 0.9, 0.9);
  -webkit-box-shadow: 0 0 46px #000;
  box-shadow: 0 0 46px #000;
}

#menuSidebar {
  position: fixed;
  right: 0;
  transition: left 0.3s linear;
  top: 0;
  width: 100%;
  left: -100%;
  background: #fff;
  height: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
}

#menuSidebar.sidebar-open {
  left: 0;
}

#menuSidebar ul {
  margin: 0 0 0px;
  padding: 0 0px 0px 20px;
  list-style: none;
  font-size: 18px;
  width: calc(100% - 20px);
}

#menuSidebar ul li {
  padding-bottom: 10px;
  font-weight: bold;
  cursor: pointer;
}

#menuSidebar ul li a {
  font-size: 23px;
  color: #000;
  font-weight: 600;
  -webkit-text-decoration: none;
  text-decoration: none;
  padding: 12px 30px 12px 12px;
}

#menuSidebar ul li a:hover {
  opacity: 0.8;
}

.btn-close-menu-sidebar {
  border: 0;
  background: transparent;
  position: absolute;
  right: 16px;
  top: 16px;
}

.btn-close-menu-sidebar svg {
  width: 25px;
  height: auto;
}
/* end .menu-mobile */

/* Footer */
footer {
  background-color: #fff;
  border-top: 1px solid #c1c1c1;
  padding: 10px 0 10px;
}

.box-links-footer {
  border-bottom: 1px solid #c1c1c1;
  padding: 25px 0 10px;
  margin-bottom: 10px;
  background-color: #fff;
}

.box-links-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, 20%);
}

.box-links-footer ul li {
  font-size: 13px;
  margin-bottom: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  padding-right: 10px;
}

.box-links-footer ul li:before {
  content: url("https://api.iconify.design/raphael/arrowright.svg?height=9&color=%23757575");
}

.box-links-footer ul li a {
  color: #757575;
  text-decoration: none;
}

.box-links-footer ul li a:hover {
  text-decoration: underline;
}

footer .logo {
  margin: 0;
}

footer nav {
  margin-top: 5px !important;
}

footer nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

footer nav ul li {
  margin-right: 30px;
  display: flex;
  align-items: center;
}

footer nav ul li a {
  font-size: 13px;
  color: #757575;
  text-decoration: none;
}

footer nav ul li a:hover {
  text-decoration: underline;
}

footer .social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
}

footer .btn-twitter,
footer .btn-facebook {
  width: 27px;
  height: 27px;
  display: flex;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}

footer .btn-twitter {
  background: #000;
}

footer .btn-facebook {
  background: #1877f2;
}

footer .btn-twitter:hover,
footer .btn-facebook:hover {
  opacity: 0.8;
}

footer .btn-facebook svg,
footer .btn-twitter svg {
  width: 16px;
}

/* section */
.page-section {
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.mediabox {
  margin: 16px 0;
}

.mediabox .row .col-12 {
  display: flex;
}

.mediabox-big-grid-post {
  width: 50%;
  height: 399px;
  position: relative;
  padding: 1px;
}

.mediabox-big-grid {
  width: 50%;
  height: 399px;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 50% 50%;
}

.mediabox-big-grid > div {
  position: relative;
  padding: 1px;
}

.mediabox .post-thumb {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.mediabox .post-thumb a {
  transition: transform 0.3s ease, opacity 0.3s;
  -webkit-transition: -webkit-transform 0.3s ease, opacity 0.3s;
  transition-timing-function: ease !important;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  color: #fff;
}

.mediabox .post-thumb a:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(40%, rgba(0, 0, 0, 0)),
    color-stop(100%, rgba(0, 0, 0, 0.7))
  );
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.7) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.7) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#b3000000',GradientType=0);
}

.mediabox div.mediabox-big-grid-post:hover a,
.mediabox-big-grid > div:hover a {
  transform: scale3d(1.2, 1.2, 1.2);
}

.mediabox .post-thumb img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.mediabox .post-description {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 10px 20px;
}

.mediabox .post-description h3 {
  font-size: 27px;
  font-weight: 500;
  line-height: 34px;
  color: #fff;
  margin: 0;
}

.mediabox .post-description span {
  font-size: 11px;
  color: #fff;
}

.mediabox .post-description h3 a,
.mediabox .post-description span a {
  color: #fff;
  text-decoration: none;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.mediabox-big-grid > div .post-description h3 {
  margin-top: 2px;
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
}

.mediabox-big-grid > div .post-description span {
  display: none;
}

.home-boxes {
  width: 100%;
}

.home-boxes > div {
  padding: 20px 0;
}

.home-boxes > div:nth-child(even) {
  background-color: #f7f9fa;
}

.home-boxes h2 {
  font-size: 31px;
  font-weight: 600;
  color: #7e7e7e;
  margin-bottom: 20px;
}

.home-boxes h2 a {
  text-decoration: none;
  color: #7e7e7e;
}

.home-boxes ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, 20%);
}

.home-boxes ul li {
  margin-bottom: 15px;
}

.home-boxes ul li a {
  display: flex;
  text-decoration: none;
  flex-direction: column;
}

.home-boxes ul li a span {
  font-size: 16px;
  color: #0b71d9;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  padding-right: 10px;
}

.home-boxes ul li a strong {
  font-size: 14px;
  color: #9b9b9b;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  padding-right: 10px;
}

.home-boxes ul li a:hover span {
  text-decoration: underline;
}

.home-boxes .more a {
  font-weight: 600;
  font-size: 14px;
  color: #0b71d9;
  text-decoration: none;
}

.home-boxes .more a:hover {
  text-decoration: underline;
}

.home-boxes .more a:after {
  content: url("https://api.iconify.design/raphael/arrowright.svg?height=9&color=%230b71d9");
  margin-left: 4px;
}

.content-home-boxes .box-title,
.home-sidebar .box-title {
  margin-top: 10px;
}

.content-home-boxes .box-title h2,
.home-sidebar .box-title h2 {
  font-size: 16px;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 26px;
  border-bottom: 2px solid #222222;
  text-transform: uppercase;
}

.content-home-boxes .box-title h2 span,
.home-sidebar .box-title h2 span {
  line-height: 17px;
  display: inline-block;
  padding: 7px 12px 4px;
  background-color: #222222;
  color: #fff;
}

.post-home {
  margin-bottom: 10px;
}

.post-home img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.post-home a {
  text-decoration: none;
}

.post-home h4 {
  font-size: 21px;
  line-height: 25px;
  margin: 12px 0 6px 0;
  color: #000;
}

.post-home p {
  font-size: 15px;
  color: #767676;
  margin-top: 9px;
}

.home-sidebar img {
  height: 65px;
}

.home-sidebar h4 {
  font-size: 14px !important;
  line-height: 20px !important;
  margin: 0;
}

.post-home p {
  margin: 0;
  font-size: 14px;
}

.home-sidebar .post-home p {
  margin: 0;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.home-sidebar .post-home a {
  display: flex;
  align-content: center;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.pt-30 {
  padding-top: 30px;
}

.pt-20 {
  padding-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

/* Breadcrumb */
.breadcrumb {
  margin: 28px 0 0;
}

.breadcrumb li {
  font-size: 12px;
}

.breadcrumb li a {
  color: #555555;
  text-decoration: none;
  opacity: 0.6;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
}

/* Page title */

.page-article h1,
.post-detail h1,
.title-page h1 {
  font-size: 44px;
  margin-top: 10px;
  font-weight: 600;
}

.title-page h1 {
  margin-top: 10px;
  margin-bottom: 0;
}

.title-page p {
  color: #7e7e7e;
  font-size: 16px;
}

/* Category */
.post-category-detail-title {
  font-size: 1.12rem !important;
}

.post-item {
  margin-bottom: 20px;
}

.post-item > div {
  display: flex;
}

.sidebar > div,
.post-item > div {
  background-color: #fff;
  padding: 12px;
  border: 1px solid #c1c1c1;
}

.post-item .post-detail {
  width: 90%;
}

.sidebar-related-posts .post-detail {
  width: 100%;
}

.post-item h4 {
  font-size: 20px;
  color: #2a83dd !important;
  font-weight: 600;
}

.post-item p {
  font-size: 14px;
  color: #3f3f3f;
  margin: 10px 0 0;
}

.post-item ul.job-detail,
.post-detail ul.job-detail {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.post-item ul.job-detail li,
.post-detail ul.job-detail li {
  font-size: 12px;
  color: #909090;
  margin-right: 10px;
  display: flex;
  align-items: center;
  line-height: 12px;
  margin-bottom: 5px;
}

.post-item ul.job-detail li svg,
.post-detail ul.job-detail li svg {
  margin-right: 5px;
}

.post-item .button,
.post-detail .button {
  border: 0;
  background: #1a0dab;
  box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  color: #fff !important;
  padding: 0 15px;
  height: 32px;
  display: flex;
  width: max-content;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}

.post-item .actions,
.post-detail .actions {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

/* Sidebar */
.sidebar {
  margin-bottom: 20px;
}

.sidebar h2 {
  font-size: 20px;
  color: #8d8d8d;
  font-weight: 600;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  font-size: 14px;
  margin-bottom: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  padding-right: 10px;
}

.sidebar ul li:before {
  content: url("https://api.iconify.design/raphael/arrowright.svg?height=9&color=%23757575");
}

.sidebar ul li a {
  color: #757575;
  text-decoration: none;
}

.sidebar ul li a:hover {
  text-decoration: underline;
}

.post-item {
  margin-bottom: 20px;
}

.post-item .post-detail {
  margin: 0;
}

.post-item .post-detail p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: start;
}

.post-item a {
  color: #2a83dd;
  text-decoration: none;
}

.post-item a:hover {
  text-decoration: underline;
}

/* Post and Articles */

.post-detail.expired h1:before,
.post-item.expired h4:before {
  content: "Close job";
  font-size: 10px;
  color: red;
  border: 1px solid #ccc;
  border-radius: 2px;
  padding: 2px 5px;
  margin-right: 10px;
}

.post-detail h2,
.post-detail h3,
.post-detail h4,
.post-detail h5,
.post-detail h6 {
  color: #757575;
  font-weight: 700;
}

.post-detail p,
.post-detail strong,
.post-detail li {
  font-size: 15px;
  line-height: 1.74;
  color: #757575;
}

.post-detail h2 {
  font-size: 1.5rem;
}

.post-detail h3 {
  font-size: 1.25rem;
}

.post-detail h4 {
  font-size: 1.12rem;
}

.post-detail h5 {
  font-size: 1rem;
}

.post-detail h6 {
  font-size: 0.9rem;
}

.post-detail img {
  max-width: 100%;
  height: auto;
  width: auto !important;
}

.post-detail figure {
  max-width: 100%;
  height: auto;
  width: auto !important;
  display: flex;
  flex-direction: column;
}

.post-detail figcaption {
  background: #f9f9f9;
  font-size: 12px;
  color: #757575;
  font-style: italic;
  padding: 4px;
}

.post-detail .button {
  border-radius: 20px;
  padding: 0 25px;
  height: 40px;
}

.post-detail .actions {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

/* Contact */

.form-contact form label {
  width: 100%;
  font-weight: 400;
}

.form-contact form input[type="text"],
.form-contact form input[type="email"],
.form-contact form textarea {
  background: #f5f5f5;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 44px;
  border: 1px solid #828282;
  padding: 14px;
  color: #989595;
  font-size: 12px;
  margin-top: 4px;
}

.form-contact form textarea {
  height: 150px;
}

.form-contact form input:focus,
.form-contact form textarea:focus {
  outline: none;
}

.wpcf7-response-output {
  padding: 1rem !important;
  margin-bottom: 1rem;
  border-radius: 0.375rem;
  font-size: 0.8rem;
}

.wpcf7-submit {
  background: #1a0cab;
  border-radius: 74px;
  height: 35px;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #fff;
  text-decoration: none;
  border: 0;
  min-width: 120px;
}

.title-page-error h1 {
  font-size: 10em;
  font-weight: bold;
  text-align: center;
  margin-top: 50px;
  color: #0000002b;
}

.page-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #00000094;
}

.company {
  margin-bottom: 20px;
}

.company > div {
  background-color: #fff;
  padding: 12px;
  border: 1px solid #c1c1c1;
  position: relative;
}

.company > div:before {
  content: "";
  width: 100%;
  height: 120px;
  background: url(../img/company.png) no-repeat center;
  background-size: cover;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.6;
}

.company-detail {
  display: flex;
  position: relative;
  align-items: flex-end;
  padding: 34px 0 1rem;
}

.company img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
}

.company-detail h1 {
  margin-left: 16px;
  font-size: 32px;
  margin-top: 10px;
  font-weight: 600;
}

.mobile-menu-button button {
  border: 0;
  background-color: transparent;
}

.mobile-menu-button svg {
  width: 23px;
  height: auto;
  margin-top: 15px;
}

@media only screen and (max-width: 600px) {
  .body-home {
    padding-top: 0;
  }

  header {
    box-shadow: 0px 2px 8px #eeeeee;
    padding-bottom: 10px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
  }

  header.home {
    clip-path: ellipse(120% 100% at top);
    position: relative;
  }

  header .row {
    justify-content: space-between;
  }

  .page-section-distance {
    margin-top: 200px;
  }

  footer .row {
    justify-content: space-between;
  }

  footer .row .social {
    padding-top: 0;
  }

  .body-home #pageContainer {
    padding-top: 0;
  }

  #pageContainer {
    padding-top: 55px;
  }

  .logo img {
    max-width: 100%;
    max-height: 33px;
  }

  .box-form form {
    width: 100%;
    border-radius: 25px;
    flex-direction: column;
  }

  .box-form form div {
    width: 100%;
    margin-bottom: 10px;
  }

  .box-form form div:first-child:after {
    display: none;
  }

  .box-form form div:last-child {
    width: 100%;
    margin-bottom: 5px;
  }

  .box-form form div:last-child button {
    width: 100%;
  }

  .box-links-footer ul {
    grid-template-columns: repeat(auto-fit, 50%);
  }

  .home-boxes ul {
    grid-template-columns: repeat(auto-fit, 50%);
  }

  .post-category > div {
    flex-direction: column;
  }

  .post-category .actions {
    justify-content: center;
    margin-top: 15px;
  }

  .post-category ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, 50%);
  }

  .post-category ul li {
    margin-bottom: 10px;
  }

  .title-page-error h1 {
    font-size: 5em;
  }

  .page-error {
    text-align: center;
  }

  .post-item .actions {
    align-items: center;
  }

  .mobile-menu-list li:nth-child(2),
  .mobile-menu-list li:nth-child(3) {
    display: none;
  }

  .sidebar > div {
    border: 0;
    padding-bottom: 0;
  }

  .page-article h1,
  .post-detail h1,
  .title-page h1 {
    font-size: 22px;
  }

  .post-detail p,
  .post-detail li,
  .post-detail strong {
    font-size: 16px;
    line-height: 1.5;
  }

  .job-detail {
    margin-top: 8px !important;
  }

  .title-page h1 {
    margin-top: 10px;
  }

  .mediabox .row .col-12 {
    flex-direction: column;
    padding: 0;
  }

  .mediabox-big-grid-post {
    width: 100%;
    height: 350px;
  }

  .mediabox-big-grid {
    overflow-x: auto;
    white-space: nowrap;
    font-size: 0;
    overflow-y: hidden;
    padding-top: 3px;
    z-index: 0;
    -webkit-overflow-scrolling: touch;
    transform: translate3d(0, 0, 0);
    width: max-content;
    display: initial;
    height: auto;
    width: 100%;
  }

  .mediabox-big-grid > div {
    display: inline-block;
    white-space: normal;
    float: none;
    vertical-align: top;
    width: 80%;
  }

  .presell-title {
    font-size: 21px !important;
    text-transform: uppercase;
    line-height: 1.4 !important;
  }
}

@media (min-width: 601px) and (max-width: 932px) {
  #pageContainer {
    padding-top: 76px;
  }

  .body-home #pageContainer {
    padding-top: 0;
  }

  .title-page h1 {
    margin-top: 10px;
  }

  header {
    box-shadow: 0px 2px 8px #eeeeee;
    padding-bottom: 10px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
  }

  header.home {
    clip-path: ellipse(10 0% 100% at top);
    position: relative;
  }

  .page-section-distance {
    margin-top: 130px;
  }

  .box-links-footer ul {
    grid-template-columns: repeat(auto-fit, 33%);
  }

  .home-boxes ul {
    grid-template-columns: repeat(auto-fit, 33%);
  }

  .title-page-error h1 {
    font-size: 5em;
  }

  .page-error {
    text-align: center;
  }

  footer .btn-twitter,
  footer .btn-facebook {
    width: 25px;
    height: 20px;
    font-size: 14px;
  }

  .sidebar > div,
  .post-detail > div {
    border: 0;
    padding-bottom: 0;
  }

  .page-article h1,
  .post-detail h1,
  .title-page h1 {
    font-size: 30px;
  }

  .post-detail p,
  .post-detail li,
  .post-detail strong {
    font-size: 16px;
    line-height: 1.5;
  }

  .job-detail {
    margin-top: 8px !important;
  }

  .breadcrumb {
    margin: 12px 0 0;
  }

  .mediabox-big-grid-post,
  .mediabox-big-grid {
    height: 350px;
  }

  .home-sidebar .post-home h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .presell-title {
    font-size: 26px !important;
    line-height: 34px !important;
  }
}

.box-newsletter {
  padding: 16px;
  background: #fff;
  border: 5px dashed #fff;
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0px 0 9px 5px #0000000f;
}

.box-newsletter span:nth-child(1) {
  font-size: 30px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  line-height: 50px;
}

.box-newsletter span:nth-child(2) {
  font-size: 20px;
  text-align: center;
  margin: 15px 0;
  color: #fff;
}

.box-form h1,
header nav a,
.mobile-menu-list a {
  color: #1e4182 !important;
}
.jobs-theme-search form,
.jobs-theme-search form input {
  background-color: #f7f9fa !important;
}
.home-boxes > div:nth-child(odd) {
  background-color: #f7f9fa;
}
.home-boxes > div:nth-child(even) {
  background-color: initial;
}

@media (min-width: 1140px) {
  .container {
    width: 1064px;
  }
}

.presell-title {
  font-size: 40px;
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

.presell-description {
  font-size: 15px;
  line-height: 1.8rem;
  text-align: start;
}

.presell-section {
  width: 100%;
}

.presell-section > .box {
  padding: 20px 0;
  text-align: justify;
}

.presell-section h2 {
  font-size: 27px;
  line-height: 38px;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.presell-buttons {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  margin-top: 22px;
}

.presell-buttons button {
  width: 100%;
  border: 0;
  color: #fff;
  font-size: 1.125em;
  padding: 15px;
  border-radius: 100px;
  margin-bottom: 35px;
}

.presell-buttons a:nth-child(1) button {
  background: rgb(19, 141, 226);
  background: linear-gradient(
    90deg,
    rgba(19, 141, 226, 1) 28%,
    rgba(146, 85, 225, 1) 71%
  );
}

.presell-buttons a:nth-child(2) button {
  background: rgb(249, 97, 4);
  background: linear-gradient(
    90deg,
    rgba(249, 97, 4, 1) 28%,
    rgba(210, 49, 45, 1) 71%
  );
}

.presell-buttons a:nth-child(3) button {
  background: rgb(252, 185, 2);
  background: linear-gradient(
    90deg,
    rgba(252, 185, 2, 1) 28%,
    rgba(252, 185, 2, 1) 71%
  );
}

.presell-buttons a:nth-child(4) button {
  background: rgb(120, 214, 198);
  background: linear-gradient(
    90deg,
    rgba(120, 214, 198, 1) 28%,
    rgba(18, 72, 107, 1) 71%
  );
}

.presell-buttons a:nth-child(5) button {
  background: rgb(200, 92, 142);
  background: linear-gradient(
    90deg,
    rgba(200, 92, 142, 1) 28%,
    rgba(123, 40, 105, 1) 71%
  );
}

.presell-buttons a:last-child button {
  margin-bottom: 0;
}

.presell-buttons button:hover {
  text-decoration: underline;
  color: black;
}

.readmore-presell-box {
  text-align: center;
}

.readmore-presell-box > button {
  color: red;
  background: none;
  border: 0;
  font-size: 15px;
}

.readmore-presell-box > button:hover {
  text-decoration: underline;
}

.presell-complement-content {
  display: none;
}

.pagination {
  display: -ms-flexbox;
  flex-wrap: wrap;
  display: flex;
  padding-left: 0;
  list-style: none;
}

.pagination .page-link {
  font-size: 12px;
  border-color: #c1c1c1;
  color: #757575;
  border-radius: unset !important;
}

.pagination .active {
  color: #fff !important;
  background-color: #888787;
}

.expired-job-alert {
  color: #997404;
  background-color: #fff3cd;
  border: 1px solid #ffe69c;
  border-radius: 4px;
  padding: 8px 8px;
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
}
