.cargo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 77px;
  margin-top: 20px;
}

.cargo-card {
  width: 300px;
  background-color: #f7f7f7;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.cargo-card img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
}

.cargo-card h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.cargo-card hr {
  border: none;
  height: 1px;
  background-color: #ccc;
  margin: 10px 0;
}

.cargo-card p {
  font-size: 14px;
}

.button-container {
  margin-top: 20px;
}

.button {
  background-image: linear-gradient(180deg, #65bce8 0%, #306485 100%);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.popup.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 400px;
  text-align: center;
}

.popup-content h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.popup-content hr {
  border: none;
  height: 1px;
  background-color: #ccc;
  margin: 10px 0;
}

.popup-content p {
  font-size: 14px;
  margin-bottom: 20px;
}

.button-close {
  background-color: #ccc;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}
.title {
  font-size: 24px;
  color: #333;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px;
  background-color: #f7f7f7;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.job-description {
  /* font-family: "Arial", sans-serif; */
  font-size: 16px;
  text-align: inherit;
  color: #555;
  padding: 20px;
  background-color: #f9f9f9;
  border: 2px solid #aaa;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.job-description strong {
  font-size: 20px;
  color: #333;
  text-decoration: underline;
}
.search-container {
  display: flex;
  /* align-items: initial; */
  max-width: 300px;
  margin: 0 auto;
  margin-left: -1px;
}
.search-input {
  width: 100%;
  padding: 10px;
  border: 2px solid #ccc;
  border-right: none;
  border-radius: 5px 0 0 5px;
  font-size: 16px;
}
.search-button {
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 0 5px 5px 0;
  padding: 10px;
  cursor: pointer;
  font-size: 16px;
  height: 61px;
}
.search-button i {
  margin-right: 5px;
}