.title {
  font-size: 45px;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 500;
}

.title + p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* Job Category Summary section */
.jobs-category {
  margin: 10px 0px;
  border-radius: 10px;
}

.jobs-category--item {
  background-color: #15171a20;
  padding: 20px;
  margin: 10px 0px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.13);
  background: #f7f7f7;
  display: flex;
  flex-direction: column;
}

.jobs-category--item-job-head {
  display: flex;
  gap: 5px;
  align-items: center;
  margin: 10px 0px;
  padding: 5px 10px;
}

.jobs-category--item-job-head a {
  padding-left: 20px;
}

.job-category--content {
  margin-left: 5px;
}

.jobs-category--item--seemore {
  color: #f73b96;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  margin-top: 16px;
  margin-bottom: 6px;
}

.section-site_details {
  margin-top: 80px;
  margin-bottom: 80px;
}

.section-site_details .site_details--head{
  margin-bottom: 20px;
}

/* Spinners */

.loader {
  width: 18px;
  height: 18px;
  border: 5px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media only screen and (min-width: 1024px) {
  .main-content {
    display: flex;
    gap: 20px;
    flex-direction: row-reverse;
  }
}
