:root {
  --primaryColor: #ff4d29;
  --secondaryColor: #ffe262;
  --whiteColor: #fff;
  --blackColor: #000;
  --greyColor: #f6f8fa;
  --labelColor: #64b1f5;
  --yellowColor: #448feb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  font-family: "Archivo", sans-serif;
  /* font-family: "Nunito", sans-serif; */
}

body {
  width: 100%;
  height: auto;
}

h1 {
  line-height: 1.5;
}

/* navbar start */
.navbar {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  padding: 1rem 2.5rem;
  z-index: 10;
  color: var(--whiteColor);
}
.navbar-logo > a {
  letter-spacing: 2.5;
  text-decoration: none;
  color: var(--whiteColor);
}
.navbar-logo span {
  color: var(--primaryColor);
}
.navbar-menu {
  width: 400px;
  display: flex;
  justify-content: space-between;
}
.navbar-menu > a {
  color: var(--whiteColor);
  text-decoration: none;
}
.menu-toggle {
  display: none;
}
.menu-toggle .bar {
  width: 15px;
  height: 2px;
  margin: 3px auto;
  transition: all 0.3 ease-in-out;
  background-color: var(--whiteColor);
  cursor: pointer;
}
/* navbar end */

/* header start */
.header {
  width: 100%;
  height: 75vh;
  background-image: url("../img/banner.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--whiteColor);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1rem 3rem;
  align-items: center;
  position: relative;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      180deg,
      rgba(5, 5, 5, 0.6) 0%,
      rgba(2, 2, 2, 0.5) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
  z-index: 1;
}
.header-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 400px;
  width: 80%;
  z-index: 2;
  margin-bottom: 1rem;
}
.header-detail > h1 {
  font-size: 50px;
  letter-spacing: 2;
}
.section-title span {
  color: var(--primaryColor);
}
.header-input {
  display: flex;
  margin-top: 15px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 300px;
  width: 100%;
}
.input {
  height: 100%;
  width: 100%;
  border: none;
  padding: 1rem;
  border-radius: 20px;
}
.btn-search {
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 20px;
  background: var(--primaryColor);
  border: none;
  color: var(--whiteColor);
  cursor: pointer;
  transition: 0.3s;
}
.btn-search:hover {
  background-color: transparent;
  border: 1px solid var(--primaryColor);
  font-size: 16px;
}
/* header end */

/* filter start */
.filter-box {
  width: 100%;
  height: auto;
  font-size: 0.8rem;
  width: 60%;
  min-width: 300px;
  margin: 50px auto 0 auto;
}
.title-sectoin {
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 1.5;
  font-size: 36px;
}
.title-sectoin span {
  color: var(--primaryColor);
}
.filter-dropdown {
  width: 100%;
  /* border-bottom: 1px solid var(--labelColor); */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  /* gap: 0.3rem; */
}
.filter-select {
  border: 0.5 solid #000;
  padding: 1rem 0.2rem;
  font-size: 19px;
  text-align: center;
  border: 2px solid #ff4d29a8;
  font-family: fangsong;
  font-weight: bold;
  color: #b72507;
}
.filter-select:hover {
  background-color: var(--greyColor);
}
.filter-chosen {
  width: 100%;
  padding: 0.3rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.chosen-card {
  background: transparent;
  padding: 0.5rem 0.5rem;
  border-radius: 20px;
  color: var(--blackColor);
  border: 1px solid var(--primaryColor);
  cursor: pointer;
}
.chosen-card i {
  padding-left: 8px;
}
.btn-sc {
  display: none;
}
/* filter end */

/* job start */
.job-list {
  margin: 2% 5% 5% 5%;
  padding: 1rem;
  background-color: var(--greyColor);
}
.job-card {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  margin: 1rem;
  min-height: 100px;
  align-items: center;
  background-color: var(--whiteColor);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  cursor: pointer;
  transition: 0.3s;
}
.job-card:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  transform: scale(1.06);
}
.job-name {
  display: flex;
}
.job-profile {
  width: 60px;
  height: 60px;
  margin: 0.5rem;
}
.job-drtails > h4 {
  color: var(--primaryColor);
  font-size: 0.9rem;
}
.job-drtails > p {
  display: -webkit-box;
  overflow: hidden;
  /* -webkit-line-clamp: 2; */
  -webkit-box-orient: vertical;
}
.job-label {
  display: flex;
  flex-wrap: wrap;
}
.job-label > a {
  padding: 10px 1rem;
  margin: 0.2rem;
  color: var(--whiteColor);
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.8rem;
}
.label-a {
  background-color: var(--yellowColor);
}
.label-b {
  background-color: var(--primaryColor);
}
.label-c {
  background-color: var(--blackColor);
}
.job-posted {
  font-size: 0.8rem;
}
.job-more {
  display: block;
  padding: 1rem 2.5rem;
  margin: 20px auto;
  width: 250px;
  font-size: 20px;
  background-color: transparent;
  color: var(--primaryColor);
  border: 1px solid var(--primaryColor);
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.job-more:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  font-size: 22px;
}
/* job start */

/* join start */
.join {
  width: 100%;
  height: 350px;
  background-image: url("../img/banner.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--whiteColor);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1rem 3rem;
  align-items: center;
  position: relative;
}
.join::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      180deg,
      rgba(0, 85, 177, 0.6) 0%,
      rgba(0, 122, 255, 0.5) 100%
    ),
    linear-gradient(180deg, rgba(0, 122, 255, 0.65) 0%, transparent 100%);
  z-index: 1;
}
.join-detail {
  min-width: 280px;
  width: 50%;
  z-index: 2;
  margin-bottom: 1rem;
}
.join-detail > h1 {
  font-size: 36px;
  letter-spacing: 2;
}
.join-button {
  width: 200px;
  padding: 1rem;
  border: none;
  color: var(--blackColor);
  background-color: var(--secondaryColor);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  z-index: 2;
  cursor: pointer;
  transition: 0.3s;
}
.join-button:hover {
  background: transparent;
  border: 2px solid var(--secondaryColor);
  color: var(--whiteColor);
}
/* join end */

/* featured start */
.featured {
  width: 100%;
  height: auto;
  text-align: center;
  padding: 4rem 1rem;
  background-color: var(--greyColor);
}
.featured span {
  color: var(--primaryColor);
}
.section-title {
  margin-bottom: 0.5rem;
  letter-spacing: 1.5;
  font-size: 36px;
}
.featured-img {
  height: 100px;
  margin-bottom: 0.2rem;
}
.featured-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
  width: 100%;
  padding: 2% 10%;
}
.featured-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background-color: var(--whiteColor);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.featured-card h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 10px 0px;
  color: var(--primaryColor);
}
.featured-card p {
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}
.featured-card:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.featured-button {
  border: 1px solid var(--primaryColor);
  background-color: transparent;
  margin-top: 0.5rem;
  padding: 3px 10px;
  cursor: pointer;
  color: var(--primaryColor);
  transition: 0.3s;
}
.featured-button:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}
/* featured end */

/* testimonial start */
.testimonial {
  width: 100%;
  text-align: center;
  padding: 5rem 1rem;
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}
.swiper {
  width: 80%;
  height: 400px;
  margin-top: 2rem;
}
.swiper-slide {
  background: var(--whiteColor);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  color: var(--blackColor);
}
.swiper-slide i {
  font-size: 40px;
  color: var(--yellowColor);
  margin-bottom: 1rem;
}
.swiper-slide h3 {
  font-family: "Noto Serif", serif;
}
.testimoni-pic {
  padding: 1rem;
}
.testimoni-pic img {
  display: block;
  margin: 1rem auto;
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}
/* testimonial end */

/* blog start */
.blog {
  width: 100%;
  height: auto;
  text-align: center;
  padding: 5rem 1rem;
}
.blog span {
  color: var(--primaryColor);
}
.blog-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  padding: 1rem;
}
.blog-card {
  width: 300px;
  height: auto;
  margin: 1rem;
  box-shadow: 0px 1px 6px 0 rgba(49 53 59 / 12%);
  cursor: pointer;
}
.blog-card:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0;
}
.blog-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.blog-details {
  padding: 20px;
}
.blog-details span {
  color: var(--blackColor);
  font-size: 0.7rem;
}
.blog-details h4 {
  padding: 10px 0;
}
.divider {
  margin: 1rem 0;
  border: 0.5px solid var(--greyColor);
}
.blog-more {
  color: var(--primaryColor);
  text-decoration: none;
  font-size: 1rem;
  transition: 0.3s;
}
.blog-more:hover {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  font-size: 1.1rem;
}
/* blog end */

/* footer start */
footer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  background: var(--primaryColor);
  color: var(--whiteColor);
  padding: 3rem;
}
.footer-wropper {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer-wropper h3,
.footer-wropper h4 {
  line-height: 3;
  color: var(--secondaryColor);
}
.footer-wropper p {
  max-width: 400px;
  line-height: 1.5;
}
.social-media {
  margin-top: 1rem;
}
.social-media a {
  text-decoration: none;
  color: var(--greyColor);
  margin-right: 10px;
  transition: 0.2s;
}
.social-media a:hover {
  background-color: var(--whiteColor);
  color: var(--primaryColor);
  padding: 7px 11.5px;
  border-radius: 100%;
}
.footer-wropper a {
  text-decoration: none;
  color: var(--greyColor);
  line-height: 2;
  transition: 0.3s;
}
.footer-wropper a:hover {
  text-decoration: underline;
}
/* footer end */

/* scroll top start */
#toTop {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 998;
  background: var(--primaryColor);
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  transition: 0.2s;
}
#toTop:hover {
  background-color: var(--blackColor);
}
/* scroll top end */

/* mobile responsive start */
@media screen and (max-width: 600px) {
  .menu-toggle,
  .bar {
    display: block;
    z-index: 3;
  }
  .menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }
  .menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }
  .navbar-menu {
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    text-align: center;
    background-color: var(--blackColor);
    display: none;
    padding: 5rem;
  }
  .navbar-menu.active {
    display: flex;
  }
  .navbar-menu a {
    color: var(--whiteColor);
    padding: 1.5rem;
  }
  .header-title {
    font-size: 38px;
  }
  .header-input {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 50%;
  }
  .header-detail > h1 {
    font-size: 27px;
    letter-spacing: 2;
  }
  .job-label {
    display: none;
  }
  .filter-select {
    width: 100%;
    margin-bottom: 10px;
  }
  .filter-select {
    border: 2px solid #ff4d298f;
  }
  .btn-sc {
    display: block;
    width: 100%;
    padding: 1rem;
    margin-bottom: 10px;
    background-color: #222222;
    border: none;
    font-size: 19px;
    color: var(--greyColor);
    transition: 0.3s;
  }
  .btn-sc:hover {
    background-color: var(--primaryColor);
  }
}

@media screen and (max-width: 480px) {
  .job-posted {
    display: none;
  }
  .header-title {
    left: 3rem;
  }
}
/* mobile responsive end */
