p,
a {
  font-size: 12px !important;
}

.employment {
  padding-top: 50px;
}

.cohesive-jobs {
  display: grid;
  gap: 24px;
}

.cohesive-jobs .job {
  background-color: #f3f3f3;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: ease-in-out 0.3s;
}

.cohesive-jobs .job:hover {
  margin-top: -4px;
  margin-bottom: 4px;
}

.cohesive-jobs .job:hover .job-content .description a {
  background-color: #0f76bc;
  color: white;
  padding: 2px 12px;
  border-radius: 6px;
  text-decoration: none;
}

.cohesive-jobs .job .job-content {
  display: grid;
  gap: 12px;
}

.cohesive-jobs .job .job-content .job-title {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.cohesive-jobs .job .job-content .job-title .title {
  text-transform: capitalize;
}

.cohesive-jobs .job .job-content .job-title .title::after {
  content: ",";
}

.cohesive-jobs .job .job-content .job-title .duration {
  color: #0f76bc;
}

.cohesive-jobs .job .job-content .description a {
  margin-left: 6px;
  color: #0f76bc;
  transition: ease-in-out 0.3s;
}

.job-details {
  position: fixed;
  display: none;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.617);
  padding: 5%;
}

.job-details .job-content {
  height: 100%;
  overflow-y: scroll;
  transition: ease-in-out 0.3s;
  padding: 10%;
  position: relative;
  border-radius: 12px;
  background-color: white;
}

.job-details .job-content .pup-up-close {
  display: flex;
  justify-content: end;
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
}

.job-details .job-content .pup-up-close h1 {
  font-size: 22px;
  text-decoration: underline;
}

.job-details .job-content .image-title {
  display: flex;
  align-items: start;
  gap: 20px;
}

.job-details .job-content .image-title .title {
  display: grid;
  gap: 24px;
}

.job-details .job-content .image-title .title img {
  height: 120px;
}

.job-details .job-content .image-title .title .job-title span {
  font-size: 22px;
  color: #0f76bc;
}

.job-details .job-content .image-title .title .applybutton {
  background-color: #0f76bc;
  padding: 12px;
  color: white;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  border-radius: 12px;
}

.displaBlock {
  display: block;
}

.job-image {
  max-width: 100px !important;
}

@media screen and (max-width: 560px) {
  .job-image {
    max-width: 100px;
  }
  .description {
    font-size: 14px;
  }
  .title {
    font-size: 16px;
  }
  .job-content {
    padding: 12px;
  }
  .job-details .job-content {
    padding-top: 19%;
  }
  .job-details .job-content .image-title .job-image {
    display: none;
  }
  .job-details .job-content .image-title .title .job-title {
    font-size: 18px;
  }
  .job-details .job-content .image-title .title .job-title span {
    font-size: 16px;
  }
} /*# sourceMappingURL=employment.css.map */