/** Home Section **/
.home-section {
  /* background-image: url('./../../images/banner.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: 76px; */
  /* min-height: 300px; */
  /* min-height: 550px;
  position: relative; */
  padding-top: 115px;
  padding-bottom: 25px;
  background: #0077c8 !important;
}

.home-section img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.home-section__container {
  /* position: relative; */
}

.home-section__info-list {}

.home-section__info-list .info {
  position: relative;
  transition: 0.5s;
}

.home-section__info-list .info .top-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: linear-gradient(180deg, #000000db, #0000000f);
  transform: 0.5s;
}

.home-section__info-list .info .top-section .date {
  margin: 0;
  padding: 25px;
  font-size: 18px;
  color: #FFFFFF;
  text-transform: uppercase;
}

.home-section__info-list .info .bottom-section {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 25px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  background: linear-gradient(360deg, #000000db, #00000000);
  transition: 0.5s;
}

.home-section__info-list .info .bottom-section .title {
  font-size: 22px;
  text-transform: uppercase;
  margin: 0;
  line-height: 24px;
  color: #FFF;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.home-section__info-list .info .bottom-section .description {
  margin: 0;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: #FFF;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}

.home-section__info-list .info .bottom-section .learn-more a {
  font-size: 12px;
  color: #EDC8A3;
  text-transform: uppercase;
  line-height: 25px;
  font-weight: 800;
  transition: 0.5s;
}

.home-section__info-list .info .image-wrapper {
  /* position: absolute;
    width: 100%;
    height: 100%;
    padding-top: calc(420 / 467 * 100%); */
}

.home-section__info-list .info .image-wrapper img {
  width: 100%;
  height: 100%;
  /* position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0; */
}

.home-section__info-list .info:hover {
  cursor: pointer;
}

.home-section__info-list .info:hover .bottom-section .learn-more a {
  display: none;
}

.home-section__info-list .info:hover .top-section {
  height: 170px;
  background: linear-gradient(180deg, #000000db, #00000000);
}

.home-section__search-section {
  /* position: absolute; */
  /* position: absolute; */
  /* z-index: 10; */
  /* width: 70%; */
  /* width: 100%; */
  /* bottom: -70px; */
}

@media (max-width:1650px) {
  .home-section__search-section {
    /* translate: 10% 0%; */
  }
}

/** Home Section Job List **/
.job-list {
  /* padding: 120px 0 60px 0; */
  padding: 25px 0 60px 0;
}

.job-list .job-list-row {
  margin-top: 25px;
}

.job-list .job {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 18px 20px;
  border-radius: 10px;
  position: relative;
  margin-bottom: 10%;
  height: 400px;
  display: flex;
  flex-direction: column;

  @media(min-width: 1367px) {
    height: 380px;
  }
}

.job-list .job__banner {
  height: 200px;
  width: 100%;
  border-radius: 10px 10px 0px 0px;
  background: #0077C8;
}

.job-list .job__title {
  margin: 0;
  background: #FFF;
  padding: 8px 0px 16px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  text-transform: capitalize;
  vertical-align: middle;
  /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
  /* position: absolute; */
  /* top: 20px;
  left: 0; */
  /* width: 240px; */
  /* display: flex; */
  /* align-items: flex-end; */
  /* border-radius: 0px 5px 5px 0px; */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* height: 75px; */
}

.job-list .job__title i {
  color: #E35205;
  margin-top: 6px;
}

.job-list .job__info {
  /* padding: 20px; */
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

/* .job-list .job__info .content {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 58px;
} */

.job-list .job__info .content {
  color: #8a8989;
  /* font-family: Lato; */
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  /* text-transform: uppercase; */
  margin: 0;
  padding: 0;
  column-gap: 8px;

  @media(min-width: 1367px) {
    font-size: 15px;
  }
}

.job-list .job__info .education {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
}

.job-list .job__info .content .content-title {
  font-weight: 700;
  color: #333;
  font-size: 14px;

  @media(min-width: 1367px) {
    font-size: 15px;
  }
}

.job-list .job__info .divider {
  height: 1px;
  width: 100%;
  background: #00000017;
  margin-bottom: 8px;
}

.job-list .job__info .description {
  margin: 0;
  overflow: hidden;
  color: #212121;
  text-overflow: ellipsis;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  -webkit-line-clamp: 3;
  line-break: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}

.job-list .learn-more {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}

.job-list .learn-more a {
  text-decoration: none;
  text-transform: uppercase;
  background: #007EC7;
  padding: 10px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  border-radius: 4px;
  font-weight: 600;
}

/** Job Details **/
.job-detail-section {
  margin: 100px 0;
}

.job-detail {
  background: #FFF;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 0px 0px 10px 10px;
}

.job-detail__header {
  padding: 40px 20px 100px 20px;
  background: #0077C8;
  position: relative;
  column-gap: 20px;
  border-radius: 10px 10px 0px 0px;
  gap: 12px;
}

.job-detail__header .job-post {
  overflow: hidden;
  color: #222221;
  text-overflow: ellipsis;
  font-family: inherit;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  background: #FFF;
  display: flex;
  align-items: center;
  gap: 10px;
  column-gap: 8;
  padding: 10px;
  border-radius: 8px;
  height: 60px;
  max-height: 60px;
  max-width: fit-content;
}

.job-detail__header .job-post .header-content {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: fit-content;
  width: 100%;
  display: -webkit-box;
}

.job-postprofile {
  overflow: hidden;
  color: #222221;
  text-overflow: ellipsis;
  font-family: Nunito Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  background: #FFF;
  display: flex;
  align-items: flex-end;
  column-gap: 8;
  padding: 10px;
  border-radius: 8px;
  height: 60px;
  max-height: 60px;
  max-width: 240px;
}

.job-detail__header .job-post i {
  color: #0077c8;
}

.job-detail__header .job-infos {
  flex-wrap: wrap;
  /* width: calc(100% - 240px - 20px); */
  column-gap: 10px;
}

.job-detail__header .job-infos .job-info {
  display: flex;
  align-items: center;
  column-gap: 14px;
}

.job-detail__header .job-infos .job-info .fa-calendar {
  color: #FFF;
}

.job-detail__header .job-infos .job-info h2 {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  margin: 0;
}

.job-detail-body {
  padding: 20px;
  column-gap: 20px;
  width: 100%;
  gap: 18px;
}

.job-detail-body .job-body-content {
  /* width: calc(100% - 350px - 20px); */
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.job-detail-body .job-body-content .context {
  color: #007EC7;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  text-transform: uppercase;
  margin: 0;
}

.job-detail-body .job-body-content .context-content {
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 20;
  color: #212121;
  text-overflow: ellipsis;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  text-align: justify;
  margin: 0;
}

.job-detail-body .job-body-content .job-content .title {
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 20;
  color: #212121;
  text-overflow: ellipsis;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  margin: 0;
}

.job-detail-body .apply-now-card {
  width: 350px;
  background: #FFF;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  position: relative;
  border-radius: 0px 0px 10px 10px;
  max-height: fit-content;
  height: fit-content;
}

.job-detail-body .apply-now-card .header {
  width: 100%;
  height: 120px;
  background: #5bc2e7;
  border-radius: 10px 10px 0 0;
}

.job-detail-body .apply-now-card .apply-now-card__title {
  margin: 0;
  overflow: hidden;
  color: #222221;
  text-overflow: ellipsis;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
  width: 240px;
  background: #FFF;
  position: absolute;
  top: 20px;
  left: 0;
  padding: 10px;
  border-radius: 0px 6px 6px 0;
  display: flex;
  align-items: flex-end;
  column-gap: 4px;
}

.job-detail-body .apply-now-card .apply-now-card__title i {
  color: #0077c8;
}

.job-detail-body .apply-now-card .apply-now-card__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.job-detail-body .apply-now-card .apply-now-card__content .description {
  overflow: hidden;
  color: #212121;
  text-overflow: ellipsis;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  text-align: justify;
  margin: 0;
}

.job-detail-body .apply-now-card .apply-now-card__content .rules .title {
  overflow: hidden;
  color: #212121;
  text-overflow: ellipsis;
  font-family: Nunito;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  text-align: justify;
  margin: 0;
}

.job-detail-body .apply-now-card .apply-now-card__content .rules ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-detail-body .apply-now-card .apply-now-card__content .rules ul li {
  color: #212121;
  text-overflow: ellipsis;
  /* font-family: Nunito; */
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  text-align: justify;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.job-detail-body .apply-now-card .apply-now {
  padding: 20px;
  display: flex;
  justify-content: flex-end;
  row-gap: 10px;
}

.job-detail-body .apply-now-card .apply-now a {
  width: 140px;
  color: #FFF;
  background: #007EC7;
  border-radius: 4px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  margin-right: 20px;
}

.job-list .filter-search {
  position: unset !important;
}

.hi-bg-loader {
  background: #FFF;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  row-gap: 10px;
}

.hi-bg-loader .spinner-border {
  width: 100px;
  height: 100px;
  border-color: #0077c8;
  border-right-color: transparent;
}

.hi-bg-loader .text {
  font-size: 20px;
  font-weight: bolder;
}

@media(max-width: 1367px) {
  .home-section {
    /* min-height: 450px; */
  }
}