.hero {
  position: relative;
  height: 600px;
}
.hero .container {
  height: 100%;
}
.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero .hero-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 2;
}
.hero .hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
}
.hero .hero-content h1 {
  font-size: 39px;
  font-weight: 600;
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  color: #ffb600;
}
@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.hero .hero-content .search-form {
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  width: 80%;
  max-width: 800px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero .hero-content .search-form:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.hero .hero-content .search-form .search-field {
  align-items: center;
  gap: 12px;
  display: flex;
  flex: 1;
}
.hero .hero-content .search-form .search-field label {
  display: block;
  font-weight: 600;
  color: #333;
  font-size: 16px;
  white-space: nowrap;
}
.hero .hero-content .search-form .search-field input {
  flex: 1;
  width: 100%;
  padding: 8px 0;
  border-radius: 6px;
  font-size: 15px;
  transition: all 0.3s ease;
  border: none;
  background-color: transparent;
}
.hero .hero-content .search-form .search-field input:focus {
  outline: none;
}
.hero .hero-content .search-form .search-field input::-moz-placeholder {
  color: #999;
}
.hero .hero-content .search-form .search-field input::placeholder {
  color: #999;
}
.hero .hero-content .search-form .dash-line {
  width: 1px;
  height: 30px;
  background-color: #dcdcdc;
}
.hero .hero-content .search-form .search-btn {
  background: #cbcbcb;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.hero .hero-content .search-form .search-btn:hover {
  background: #a9a9a9;
  transform: translateY(-1px);
}
.hero .hero-content .search-form .search-btn img {
  width: 25px;
  height: 25px;
}

.section_title {
  text-transform: uppercase;
}

.outstanding-positions {
  padding: 80px 0;
  background: #fff;
}
.outstanding-positions h2 {
  font-size: 33.33px;
  color: #303030;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 600;
  position: relative;
}
.outstanding-positions .positions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
.outstanding-positions .positions-grid .position-card {
  text-decoration: none;
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid #e1e0e0;
}
.outstanding-positions .positions-grid .position-card:hover {
  transform: translateY(-5px);
}
.outstanding-positions .positions-grid .position-card .position-image {
  height: 200px;
  overflow: hidden;
}
.outstanding-positions .positions-grid .position-card .position-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.outstanding-positions .positions-grid .position-card .position-image:hover img {
  transform: scale(1.1);
}
.outstanding-positions .positions-grid .position-card .position-info {
  padding: 25px;
}
.outstanding-positions .positions-grid .position-card .position-info h3 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
}
.outstanding-positions .positions-grid .position-card .position-info .position-details .detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #666;
}
.outstanding-positions .positions-grid .position-card .position-info .position-details .detail-item:last-child {
  margin-bottom: 0;
}
.outstanding-positions .positions-grid .position-card .position-info .position-details .detail-item .icon {
  font-size: 16px;
}
.outstanding-positions .positions-grid .position-card .position-info .position-details .detail-item .icon img {
  width: 16px;
}
@media (max-width: 768px) {
  .outstanding-positions {
    padding: 60px 0;
  }
  .outstanding-positions .positions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .outstanding-positions .positions-grid .position-card .position-info {
    padding: 20px;
  }
  .outstanding-positions .positions-grid .position-card .position-info h3 {
    font-size: 1rem;
  }
}

.positions-by-department {
  padding: 80px 0;
}
.positions-by-department .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.positions-by-department h2 {
  font-size: 33.33px;
  color: #303030;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 600;
  position: relative;
}
.positions-by-department .departments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.positions-by-department .departments-grid .department-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
}
.positions-by-department .departments-grid .department-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
  border-top-color: #1976d2;
}
.positions-by-department .departments-grid .department-card:nth-child(1) .department-icon svg {
  color: #2196f3;
}
.positions-by-department .departments-grid .department-card:nth-child(2) .department-icon svg {
  color: #4caf50;
}
.positions-by-department .departments-grid .department-card:nth-child(3) .department-icon svg {
  color: #ff9800;
}
.positions-by-department .departments-grid .department-card:nth-child(4) .department-icon svg {
  color: #9c27b0;
}
.positions-by-department .departments-grid .department-card:nth-child(5) .department-icon svg {
  color: #f44336;
}
.positions-by-department .departments-grid .department-card:nth-child(6) .department-icon svg {
  color: #607d8b;
}
.positions-by-department .departments-grid .department-card .department-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}
.positions-by-department .departments-grid .department-card .department-icon svg {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}
.positions-by-department .departments-grid .department-card:hover .department-icon {
  transform: scale(1.1);
}
.positions-by-department .departments-grid .department-card:hover .department-icon svg {
  transform: scale(1.1);
}
.positions-by-department .departments-grid .department-card h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}
.positions-by-department .departments-grid .department-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}
.positions-by-department .departments-grid .department-card .view-btn {
  background: #fff;
  color: #1976d2;
  border: 1px #1976d2 solid;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-size: 13px;
  padding: 10px 20px;
}
.positions-by-department .departments-grid .department-card .view-btn:hover {
  background: #0d47a1;
  transform: translateY(-2px);
  color: #fff;
}
@media (max-width: 768px) {
  .positions-by-department {
    padding: 24px 0;
  }
  .positions-by-department .departments-grid {
    gap: 20px;
  }
  .positions-by-department .departments-grid .department-card {
    padding: 12px 12px;
  }
  .positions-by-department .departments-grid .department-card .department-icon {
    width: 100px;
    height: 100px;
  }
}

.other-positions {
  padding: 80px 0;
  background: #fff;
}
.other-positions .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.other-positions h2 {
  font-size: 33.33px;
  color: #303030;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 600;
  position: relative;
}
.other-positions .positions-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 25px;
       column-gap: 25px;
  row-gap: 50px;
}
.other-positions .positions-list .position-item {
  display: flex;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
}
.other-positions .positions-list .position-item .position-image {
  width: 45%;
  overflow: hidden;
}
.other-positions .positions-list .position-item .position-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.other-positions .positions-list .position-item .position-image:hover img {
  transform: scale(1.05);
}
.other-positions .positions-list .position-item .position-content {
  width: 50%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.other-positions .positions-list .position-item .position-content h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.other-positions .positions-list .position-item .position-content .position-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.other-positions .positions-list .position-item .position-content .position-meta span {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.other-positions .positions-list .position-item .position-content .position-meta span.location {
  color: #636161;
}
.other-positions .positions-list .position-item .position-content .position-meta span.salary {
  color: #636161;
}
.other-positions .positions-list .position-item .position-content .position-meta span.deadline {
  color: #636161;
}
.other-positions .positions-list .position-item .position-content .position-meta span img {
  width: 16px;
  height: auto;
}
@media (max-width: 768px) {
  .other-positions {
    padding: 24px 0;
  }
  .other-positions .positions-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .other-positions .positions-list .position-item .position-image {
    flex: 0 0 120px;
  }
  .other-positions .positions-list .position-item .position-content {
    padding: 15px 0;
  }
  .other-positions .positions-list .position-item .position-content h3 {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  .other-positions .positions-list .position-item .position-content .position-meta {
    gap: 4px;
  }
  .other-positions .positions-list .position-item .position-content .position-meta span {
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .other-positions .positions-list .position-item {
    flex-direction: column;
  }
  .other-positions .positions-list .position-item .position-image {
    flex: none;
  }
  .other-positions .positions-list .position-item .position-content .position-meta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
}

@media screen and (max-width: 768px) {
  .hero {
    height: auto;
    padding-bottom: 40px;
    padding-top: 20px;
    position: relative;
  }
  .hero .hero-content .hero-title {
    font-size: 18px;
  }
  .hero .hero-content .hero-description {
    font-size: 14;
  }
  .hero .hero-content .search-form {
    background: #ffffff;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    margin: 0 auto;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  .hero .hero-content .search-form .search-field {
    display: flex;
    flex-direction: row;
    gap: 5px;
    flex: 1;
    align-items: center;
    min-width: 0;
  }
  .hero .hero-content .search-form .search-field label {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    color: #333;
  }
  .hero .hero-content .search-form .search-field input[type=text] {
    width: 100%;
    flex: 1;
    padding: 4px 0;
    font-size: 13px;
    border: none;
    background: transparent;
    min-width: 0;
  }
  .hero .hero-content .search-form .search-field input[type=text]::-moz-placeholder {
    color: #999;
    text-overflow: ellipsis;
  }
  .hero .hero-content .search-form .search-field input[type=text]::placeholder {
    color: #999;
    text-overflow: ellipsis;
  }
  .hero .hero-content .search-form .dash-line {
    display: block;
    width: 1px;
    height: 25px;
    background-color: #dcdcdc;
    flex-shrink: 0;
    margin: 0 5px;
  }
  .hero .hero-content .search-form .search-btn {
    padding: 8px;
    background: #cbcbcb;
    border: none;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .hero .hero-content .search-form .search-btn img {
    width: 18px;
    height: 18px;
  }
  .outstanding-positions {
    padding: 24px 0px;
  }
  .outstanding-positions .container h2 {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .outstanding-positions .container .positions-grid-wrapperr {
    display: block;
    overflow-x: scroll;
  }
  .outstanding-positions .container .positions-grid {
    display: flex;
    gap: 20px;
    width: -moz-max-content;
    width: max-content;
  }
  .outstanding-positions .container .positions-grid .position-card .position-image {
    height: 145px;
  }
  .outstanding-positions .container .positions-grid .position-card .position-image img {
    aspect-ratio: 2/1;
  }
  .positions-by-department {
    padding: 24px 0;
  }
  .positions-by-department .container h2 {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .positions-by-department .container .departments-grid {
    grid-template-columns: 1fr 1fr;
  }
  .positions-by-department .container .departments-grid .department-card .department-icon img {
    width: 100%;
    height: 100%;
  }
  .positions-by-department .container .departments-grid .department-card h3 {
    height: 38px;
    font-size: 16px;
  }
  .positions-by-department .container .departments-grid .department-card p {
    font-size: 14px;
  }
  .positions-by-department .container .departments-grid .department-card .view-btn {
    width: 100%;
  }
  .other-positions {
    padding: 24px 0;
  }
  .other-positions .container h2 {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .other-positions .container .positions-list .position-item .position-image {
    width: 100%;
  }
  .other-positions .container .positions-list .position-item .position-content {
    width: 100%;
  }
}
