#travel-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  flex-direction: row;
  padding: 0px 20px;
}
#loader1 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#loader1.wrap-load-more .loader {
  position: unset;
}

/* Categories */
#category-list-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  width: 250px;
  align-items: flex-start;
  align-content: flex-start;
  flex-direction: column;
}
.dest-holder {
  flex: 1;
}
#destination-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: start;
  gap: 50px;
}
.destination-title {
  color: #333;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.8px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin-bottom: 28px;
}
.category {
  color: #333;
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.8px;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 45px;
  transition: all 0.3s ease;
  background: transparent;
  width: 100%;
}

.category.selected {
  color: #fff;
  font-weight: 400;
  background: #c94a30;
}

/* Loader */
#loader-holder {
  height: 60px;
}
.wrap-load-more {
  width: 100%;
  text-align: center;
  display: none;
}

.wrap-load-more svg.loader {
  animation: rotate 1s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Destinations */
#destination-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}

.destination-card {
  width: calc(33% - 20px);
  max-width: 315px;
  height: 372px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  /* padding: 10px; */
  box-sizing: border-box;
  background: #fff;
  transition: transform 0.3s ease;
  text-align: center;
  position: relative;
}

.destination-card img {
  width: 343px;
  height: 296px;
  object-fit: cover;
  border-radius: 20px;
}
.destination-card .dest-details {
  width: 100%;
  padding: 0;
  margin: 21px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 5px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.83);
}
.destination-card .dest-details .location {
  color: #23262f;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  line-height: normal;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
  gap: 10px;

  color: var(--Neutrals-2, #23262f);
  font-size: 20px;
  font-weight: 600;
  line-height: 32px; /* 133.333% */
}
.destination-card .dest-details .location i {
  font-size: 12px;
  color: #878181;
  margin-top: 4px;
}
.destination-card .dest-details .sub-location {
  color: #878181;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 5px;
  text-align: left;
}
.book-now {
  border-radius: 24px;
  background: #fff;
  color: #323232;
  font-family: "Montserrat";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 12px 22px;
}

/* Pagination */
.pagination-holder {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: end;
}
#pagination {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.pagination-arrow {
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  background: #c94a30;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.pagination-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive */
@media (max-width: 1140px) {
  #travel-wrapper {
    gap: 30px;
  }
  #category-list-wrapper {
    width: 160px;
  }
  .category {
    font-size: 13px;
  }
}
@media (max-width: 960px) {
  #travel-wrapper {
    gap: 0px;
  }
  #category-list-wrapper {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 4px 20px;
  }
  .category {
    width: auto;
    font-size: 14px;
  }
  .destination-title {
    width: 100%;
    text-align: center;
  }
  #destination-section {
    gap: 20px;
  }
  .pagination-holder {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .destination-card .dest-details .location {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #travel-wrapper {
    padding: 0px 0px;
  }
  .category {
    padding: 7px 14px;
  }
  .destination-card {
    width: 276px;
    max-width: unset;
    min-width: unset;
  }
  .destination-card .dest-details .location {
    font-size: 14px;
  }
  .book-now {
    font-size: 12px;
    padding: 7px 16px;
  }
  .destination-card {
    width: 233px;
  }
}

@media (max-width: 540px) {
  .destination-card {
    width: 100%;
    max-width: 400px;
  }
}
@media (max-width: 540px) {
}
