@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100&display=swap");
header {
  width: 100vw;
  height: 150px;
  background-color: #5da5a4;
}
header img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

main {
  background-color: #f0fafb;
}

.container {
  padding-top: 70px;
  padding-bottom: 70px;
}

.job-card {
  display: flex;
  padding: 30px;
  background-color: white;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border-radius: 5px;
  border-right: 0.5px solid #e1e1e1;
    border-bottom: 0.5px solid #e1e1e1;
    border-top: 0.5px solid #e1e1e1;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .job-card {
    display: block;
    padding: 20px;
  }
}
.job-card:hover {
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}
.job-card p {
  font-size: 15px;
  color: #58a9a7;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .job-card__info {
    padding-bottom: 20px;
  }
}
.job-card__info a:hover {
  text-decoration: none;
}
.job-card__info .img-c {
  height: 88px;
  width: 88px;
  margin-right: 15px;
}
@media (max-width: 767px) {
    .job-card__info .img-c {
        margin-bottom: 15px;
    }
}
.job-card__info .img-c img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.job-card__info p {
  font-weight: 700;
  margin-bottom: 7px;
}
.job-card__info .tag-new {
  padding: 7px 10px;
  background-color: #58a9a7;
  color: white;
  border-radius: 20px;
  margin-left: 10px;
  text-transform: uppercase;
  font-size: 11px;
  display: none;
}
.job-card__info .tag-featured {
  padding: 7px 10px;
  background-color: black;
  color: white;
  border-radius: 20px;
  margin-left: 10px;
  text-transform: uppercase;
  font-size: 11px;
  display: none;
}
.job-card__info h6 {
  color: #323838;
  font-size: 18px;
  font-weight: 700;
}
.job-card__info ul {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.job-card__info ul li {
  font-size: 15px;
  color: #939c9b;
  padding: 0 10px;
  position: relative;
}
.job-card__info ul li:before {
  content: "";
  height: 4px;
  width: 4px;
  position: absolute;
  top: 50%;
  background-color: #939c9b;
  border-radius: 50%;
  left: -2px;
  transform: translateY(-50%);
}
.job-card__info ul li:first-child {
  padding-left: 0;
}
.job-card__info ul li:first-child:before {
  display: none;
}
.job-card__info ul li:last-child {
  padding-right: 0;
}
.job-card.new .tag-new {
  display: block;
}
.job-card.featured {
  border-left: 5px solid #58a9a7;
}
.job-card.featured .tag-featured {
  display: block;
}
.job-card__tags {
  display: flex;
  flex-wrap: wrap;
  padding-left: 20px;
  list-style-type: none;
}
@media (max-width: 767px) {
  .job-card__tags {
    padding-top: 20px;
    padding-left: 0;
    border-top: 1px solid #939c9b;
  }
}
.job-card__tags li:last-child {
  margin-right: 0;
}

.filter-tags-c {
  background-color: white;
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-radius: 5px;
  margin-top: -105px;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}
@media (max-width: 767px) {
  .filter-tags-c {
    padding: 20px;
    margin-bottom: 50px;
  }
}
.filter-tags-c ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.filter-tags-c ul li {
  display: flex;
  margin: 5px 15px 5px 0;
  border-radius: 4px;
  overflow: hidden;
}
.filter-tags-c ul li p {
  margin-right: 10px;
  margin-bottom: 0;
  padding: 7px;
  background-color: #f1f7f5;
  margin: 0;
  color: #58a9a7;
  font-weight: 500;
}
.filter-tags-c ul li span {
  background-color: #58a9a7;
  color: white;
  font-size: 25px;
  line-height: 1.3;
  padding: 0 5px;
  cursor: pointer;
  transition: all ease 0.2s;
}
.filter-tags-c ul li span:hover {
  background-color: black;
}
.filter-tags-c .clear-tags {
  color: #58a9a7;
  font-weight: 500;
  margin: 0;
  margin-left: 20px;
  border-bottom: 1px solid #58a9a7;
  cursor: pointer;
}
.full-footer {
        min-height: 100vh;
}
.job-portal-panel {
    margin: 2rem auto !important;
    max-width: 900px !important;
    padding: 0 35px !important;
}

.job-portal .card-body {
    padding: 0;
}

.job-portal {
    margin-top: 5px;
}

.job-portal .card-title {
    font-size: 30px;
}

.job-portal-panel .card-title {
    font-size: 20px;
    margin-bottom: 25px;
}

@media (max-width: 400px) {
    .job-card__info .img-c {
        margin-bottom: 15px;
    }

    .job-card__tags li,.job-card__tags li a {
        width: 100%;
    }
    .job-card__tags {
        display: flex;
        gap: 10px;
    }
}