.employers-banner {
    width: 100%;
    height: 100%;
    background-image: url('/v3/assest/image/img/employers_banner_bg_web.svg');
    background-repeat: no-repeat;
    background-position-x: left;
    background-position-y: bottom;
  }

.responsive-button-link {
  width: 240px;
}

@media (max-width: 768px) {
    .responsive-button-link {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .employers-banner {
        background-position: center;
      }
}

@media screen and (max-width: 425px) {
    .employers-banner {
        background-position: right !important;
      }
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background: #C3F4FD;
  border-radius: 40px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  max-width: 800px;
  width: 100%;
}

.contact-intro {
  font-size: 20px;
  color: #373839;
  margin-bottom: 30px;
  font-weight: 400;
}

.contact-person {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.contact-img {
  border-radius: 50%;
  width: 180px;
  height: 180px;
  object-fit: cover;
  margin-right: 20px;
  margin-bottom: 10px;
}

.contact-name {
  font-family: Arial, sans-serif;
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
  font-size: 16px;
}

.contact-email {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #555;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .contact-intro {
    font-size: 16px;
    color: #373839;
    margin-bottom: 30px;
    font-weight: 400;
    text-align: center;
  }

  .contact-person {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .contact-img {
      margin-right: 0;
  }
}

.select-btn.open .arrow-dwn {
    transform: rotate(-180deg);
}

.list-items {
    display: none;
}

.select-btn.open~.list-items {
    display: block;
}


  @media screen and (max-width: 640px) {
    button {
      width: 100% !important;
    }

    .employers-banner {
      background-position: center;
    }
  }