.hero {
  /* background-color: blue; */
}
.contact-form {
  /* background-color: red; */
  position: relative;
  padding: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 160px;
}
.contact-form .content {
  display: flex;
  gap: 8px;
}
.contact-form .content .left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form .content .right {
  width: 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
  height: fit-content;
}

.return-date {
  display: none;
}
.destination-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dest-action-btns {
  display: none;
  margin-top: 8px;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.add_dest_btn {
  background-color: rgb(0, 123, 255);
}
.add_dest_btn:hover {
  background-color: rgba(0, 123, 255, 0.5);
}
.add_dest_btn:active {
  background-color: rgb(0, 123, 255);
}

.remove_dest_btn {
  display: none;
  background-color: rgb(241, 244, 245);
  color: black;
}

.custom-select {
  width: 100%;
  height: 36px;
  line-height: 22px;
}
.action-btns button {
  width: 200px;
}

/* mediq queries */
@media screen and (max-width: 850px) {
  .contact-form .content {
    flex-direction: column;
  }
  .contact-form .content .left {
    width: 100%;
  }
  .contact-form .content .right {
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
  .form-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-form .content .right {
    grid-template-columns: repeat(1, 1fr);
  }
}

.modal {
  z-index: 1041;
}
.list-item {
  cursor: pointer;
}
.footer-list-item .inner-list {
  padding-left: 20px;
}
.inner-list-item {
  margin-bottom: 10px;
}

.faq-question {
  font-size: 18px;
  font-weight: 500;
}
.accordion-item {
  margin-bottom: 8px;
}
.accordion-item h3 {
  cursor: pointer;
}
