.job-detail {
  color: #15214B;
  font-family: "rm_pro-light", serif;
  padding-top: 80px;
}

.job-detail [style*="font-family"]{
  font-family: "rm_pro-light", serif!important;
}

.job-detail [style*="font-size"] {
  font-size: unset!important;
}

.job-detail [style*="color:"]{
  color: #15214B!important;
}

.job-detail .bold {
  font-weight: bold;
  font-family: "rm_pro-bold", sans-serif;
}

.job-detail > .content {
  clear: both;
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-gap: 30px;
  margin-bottom: 64px;
}

.job-detail .main .heading h2 {
  margin: 0 0 20px;
  font-size: 40px;
}

.job-detail .main .heading .location {
  font-size: 16px;
  margin-bottom: 50px;
}

.job-detail .main .heading .info {
  list-style-type: none;
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}

.job-detail .main .heading .info li {
  background: #E9EDEF;
  font-size: 11px;
  padding: 2px 5px;
  color: #15214B;
}

.job-detail .main section {
  padding: 40px 0;
  border-bottom: 3px solid #87BF40;
}

.job-detail .main section:last-child {
  border-bottom: 0;
}

.job-detail .main .heading + section {
  padding-top: 20px;
}

.job-detail .main section > h3 {
  font-size: 24px;
  margin-top: 0;
}
.job-detail .main section > div p {
  color: #15214B;
}

.job-detail .main section > div h1, .job-detail .main section > div h1 > *, .job-detail .main section > div strong span[style*="underline"] {
  line-height: 1.2!important;
  font-size: 18px!important;
  margin: 15px 0!important;
  font-family: "rm_pro-bold", sans-serif!important;
  text-transform: none;
}

.job-detail .main section > div ul {
  margin: 0;
}

.job-detail .main section > div ul li {
  position: relative;
  padding-left: 20px!important;
  color: #15214B;
}

.job-detail .main section > div ul li:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #000;
  position: absolute;
  left: 0;
  top: 7px;
}

.job-detail aside h3 {
  margin-top: 0;
  font-size: 16px;
}

.job-detail aside .share-icons {
  display:  flex;
  gap: 10px;
  justify-content: flex-start
}

.job-detail aside .share-icons a {
  display: inline-block;
  width: 33px;
  height: 33px;
}

.job-detail aside .share-icons a i {
  display: inline-block;
  width: 100%;
  height: 100%;
  text-indent: -999999px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
}

.job-detail aside .share-icons a i.facebook {
  background-image: url(../assets/facebook.svg)
}

.job-detail aside .share-icons a i.linkedin {
  background-image: url(../assets/linkedin.svg)
}

.job-detail aside .share-icons a i.twitter {
  background-image: url(../assets/twitter.svg)
}

.job-detail aside .button {
  width: 100%;
  margin-bottom: 20px;
}

@media all and (max-width: 768px) {
  .job-detail .content {
    grid-template-columns: 1fr
  }
  .job-detail aside .button {
    width: auto;
    min-width: 50%
  }
}

@media all and (max-width: 480px) {
  .job-detail aside .button {
    width: 100%;
  }
}

