/* Global */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Nunito", sans-serif;
  overflow-x: hidden;
}

h1,
h2 {
  font-size: 48px;
  font-family: "Prata", serif;
  font-weight: 300;
}

a {
  text-decoration: none;
  color: #fff;
}

ul {
  list-style: none;
}

img {
  width: 100%;
  height: 100%;
}

section {
  padding: 10px 50px;
}

/* Start Mobile Navbar  */
.mob-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  overflow: auto;
}

.open {
  position: absolute;
  top: 8%;
  right: 7%;
  z-index: 999999;
  display: none;
}

.line {
  display: block;
  width: 20px;
  height: 1px;
  background-color: #fff;
  margin-bottom: 5px;
}

.line:nth-of-type(2) {
  width: 30px;
}

.mob-pages {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.mob-pages li {
  margin-bottom: 25px;
}

.mob-pages li a {
  font-size: 3rem;
  position: relative;
}

.mob-pages li a::before,
.mob-pages li a::after {
  content: "";
  display: block;
  width: 0;
  height: 5px;
  background-color: #fa8700;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.mob-pages li a::before {
  left: -2.5px;
}

.mob-pages li a::after {
  right: 2.5px;
  background: #fa8700;
  transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.mob-pages li a:hover:before {
  background: #fa8700;
  width: 100%;
  transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.mob-pages li a:hover:after {
  background: transparent;
  width: 100%;
  transition: 0s;
}

.mob-nav {
  transform: translateX(100%);
}

@media screen and (max-width: 900px) {
  .mob-nav .links {
    flex-direction: column;
  }
}

/* End Mobile Navbar  */

/* Start Main Hero Section  */

.main-hero-section {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.sliders {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
}

.slide {
  width: 100vw !important;
  height: 100vh;
  position: relative;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
}

.content-slide {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 9999;
}

.content-slide p {
  margin: 30px 0;
}

.next-slide {
  position: absolute;
  filter: blur(3px);
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  cursor: pointer;
}

.slider h2 {
  font-size: 80px;
}

.arrows span {
  width: 50px;
  height: 50px;
  background-color: #eee;
  color: #fff;
}

.slide a {
  background-color: #fa8700;
  padding: 15px 35px;
  border-radius: 50px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  display: block;
  width: fit-content;
}

.slide a:hover {
  background-color: #fff;
  color: #fa8700;
  border: 1px solid #fa8700;
}

.sliders .slick-prev {
  right: 15% !important;
}

.sliders .slick-arrow {
  bottom: 20%;
  right: 10%;
}
/* End Main Hero Section  */

/* Start Hero Section */

.hero-section {
  background-image: url(../images/imgs/plant.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 50vh;
  position: relative;
  color: #fff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  position: relative;
  z-index: 9;
}

.logo a {
  color: #fa8700;
  font-size: 30px;
  font-family: "Prata", serif;
  font-weight: 300;
}

.links,
.navigate-dest {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid #fff;
  padding: 15px 50px;
  border-radius: 50px;
}

.links {
  flex-wrap: nowrap;
}

.links a,
.navigate-dest a {
  color: #fff;
  margin-right: 2em;
  font-size: 20px;
  font-weight: 300;
}

.links li:last-of-type a,
.navigate-dest li:last-of-type a {
  margin-right: 0;
}

.links .active {
  background-color: rgba(217, 217, 217, 0.5);
  padding: 5px 25px;
  border-radius: 50px;
}

.hero-section h1 {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  font-size: 48px;
  width: fit-content;
  margin-left: 5rem;
}

.lang a {
  color: #fa8700;
}

@media screen and (max-width: 1220px) {
  .next-slide {
    display: none;
  }

  .sliders .slick-arrow {
    right: 13%;
  }

  .sliders .slick-prev {
    right: 20% !important;
  }
}

@media screen and (max-width: 845px) {
  .links {
    padding: 15px 25px;
  }

  .links a {
    font-size: 15px;
  }

  .sliders .slick-prev {
    right: 25% !important;
  }
}

@media screen and (max-width: 600px) {
  .destination {
    padding: 10px 2rem;
  }

  .navigate-dest .active {
    padding: 10px 20px;
  }

  .links a {
    margin-right: 20px;
  }
}

@media screen and (max-width: 545px) {
  .sliders .slick-prev {
    right: 35% !important;
  }
}
/* End Hero Section  */

/* Start Home Page  */

.popular {
  padding: 100px 50px;
}

.popular-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.popular-heading a,
.search-footer input {
  padding: 15px 30px;
  background-color: #fa8700;
  border-radius: 50px;
}

.pop-slide {
  width: 690px;
  height: 350px;
  border-radius: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  color: #fff;
}

.pop-slide1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../images/imgs/japan.jpg);
}

.pop-slide2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../images/imgs/italy.jpg);
}

.pop-slide3 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../images/imgs/africa.jpg);
}

.pop-heading {
  position: absolute;
  top: 8%;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 35px;
}

.pop-dest {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.pop-dest i {
  font-size: 8px;
  color: #fa8700;
}

.pop-heading span {
  color: #fff;
  font-size: 16px;
}

.pop-info {
  position: absolute;
  left: 0%;
  bottom: 12%;
  padding: 0 35px;
  width: 100%;
}

.pop-info h2 {
  font-size: 35px;
  margin-bottom: 30px;
}

.pop-trip-details,
.pop-trip-details ul,
.stars {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.pop-trip-details ul {
  justify-content: flex-start;
  gap: 5px;
}

.pop-trip-details span {
  color: #fa8700;
  font-weight: bold;
}

.top-destination {
  padding: 100px 3rem;
}

.destination-heading h2 {
  margin-bottom: 15px;
  font-size: 48px;
  font-family: "Prata", serif;
  font-weight: 300;
}

.destinations {
  margin-top: 30px !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.destinations .card {
  height: 330px;
  border-radius: 10px;
  text-align: center;
  flex: 0 1 calc(30% - 20px);
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .destinations .card,
  .all-dest .card {
    flex: 0 1 calc(33.333% - 20px);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .destinations .card,
  .all-dest .card {
    flex: 0 1 calc(50% - 20px);
  }
}

@media (max-width: 767px) {
  .destinations {
    justify-content: center !important;
  }
  .destinations .card {
    flex: 0 1 calc(100%);
  }

  .all-dest .card {
    flex: 0 1 100%;
  }
}

@media screen and (max-width: 535px) {
  .links {
    padding: 10px 0;
  }
  .navigate-dest .active {
    padding: 10px 20px;
  }

  .navigate-dest a {
    font-size: 12px !important;
  }
}

@media (max-width: 425px) {
  .all-dest .card {
    flex: none;
  }
}

.destinations .dest-info {
  justify-content: center;
  bottom: 25px;
}

.destinations .dest {
  font-size: 35px;
}

.destinations .card:nth-of-type(1) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../images/imgs/america.jpg) !important;
}

.destinations .card:nth-of-type(2) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../images/imgs/autrilia.jpg);
}

.destinations .card:nth-of-type(3) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../images/imgs/port.jpg);
}

.destinations .card:nth-of-type(4) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../images/imgs/russia.jpg);
}

.destinations .card:nth-of-type(5) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../images/imgs/africa.jpg);
}

.destinations .card:nth-of-type(6) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../images/imgs/italy.jpg);
}

.destinations .card:nth-of-type(7) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../images/imgs/maldives.jpg);
}

.destinations .card:nth-of-type(8) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../images/imgs/japan.jpg);
}

.descover {
  margin-top: 0 !important;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  height: fit-content;
  padding: 80px;
  gap: 50px;
}

.descover h2 {
  font-size: 48px;
}

.learn p {
  width: 70%;
  text-align: left;
  color: #919193;
  margin-bottom: 25px;
}

.learn a,
.popular-heading a {
  padding: 10px 25px;
  border-radius: 50px;
  color: #fff;
  background-color: #fa8700;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.learn a:hover,
.popular-heading a:hover {
  background-color: #fff;
  color: #fa8700;
  border: 1px solid #fa8700;
}

@media screen and (max-width: 1066px) {
  .descover {
    flex-direction: column;
    text-align: center;
    padding: 80px 1rem;
  }

  .descover h2 {
    font-size: calc(35px - 0.5rem);
  }

  .learn p {
    text-align: center;
    width: 100%;
  }
}

@media screen and (max-width: 900px) {
  .post-content p {
    font-size: 12px;
    text-align: left;
    margin-bottom: 15px !important;
  }

  .post-content h4 {
    font-size: 15px;
    text-align: center;
  }

  .main-post h2 {
    font-size: 35px;
  }
}

@media screen and (max-width: 445px) {
  .main-post h2 {
    font-size: 28px;
  }
}

.blog {
  padding: 100px;
}

.blog-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
}

.main-post h2 {
  margin-bottom: 25px;
}

.main-post p {
  margin-bottom: 50px;
  width: 80%;
  font-size: 18px;
}

.post {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../images/imgs/post1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 90%;
  height: 405px;
  color: #fff;
  position: relative;
  border-radius: 30px;
}

.post a {
  position: absolute;
  bottom: 30%;
  left: 10%;
}

.post a:nth-of-type(1) {
  font-size: 25px;
  width: 70%;
}

.post a:nth-of-type(2) {
  bottom: 20%;
}

.o-post {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 20px;
}

.post-img a {
  border-radius: 30px;
  width: 200px;
  height: 134px;
  display: inline-block;
}

.post-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.post-content p {
  margin-top: 15px;
  margin-bottom: 30px;
}

.post-content a {
  color: #000;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 1300px) {
  .blog-wrapper {
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    text-align: center;
  }

  .main-post p,
  .post {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .blog {
    padding: 100px 2rem;
  }

  .other-posts {
    width: 100%;
  }

  .o-post {
    flex-direction: column;
    align-items: center;
  }

  .post-img,
  .post-img a {
    width: 100%;
  }
}
/* End Home Page  */

/* Start Trip Page  */
.destination {
  margin-top: 100px;
  position: relative;
}

.des-start,
.brief-start {
  text-align: center;
}

.des-start h2,
.brief-start h2 {
  font-family: "Prata", serif;
  font-size: 48px;
  font-weight: 300;
}

.sm-paragraph {
  color: rgba(74, 74, 74, 0.5);
  margin-top: 25px;
}

.navigate-dest {
  padding: 5px 30px 5px 10px;
  border: 1px solid #000;
  width: fit-content;
  margin: 100px auto;
}

.navigate-dest a {
  color: #000;
  font-size: 15px;
  font-weight: 400;
}

.navigate-dest .active {
  background-color: #fa8700;
  color: #fff;
  padding: 10px 40px;
}

.all-dest {
  margin-top: 100px;
  display: flex;
  justify-content: stretch;
  align-items: start;
  flex-wrap: wrap;
}

.card {
  height: 500px;
  border-radius: 50px;
  width: 24%;
  margin-right: 1%;
  margin-bottom: 50px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../images/imgs/egypt.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  position: relative;
}

.like-pricing,
.dest-info {
  position: absolute;
  left: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 88%;
}

.like-pricing {
  top: 40px;
}

.dest-info {
  bottom: 40px;
}

.price {
  text-align: center;
}
.price p:first-of-type {
  font-size: 12px;
}

.price p:last-of-type {
  font-size: 23px;
  font-family: "Prata", serif;
  font-weight: 300;
}

.like {
  border: 1px solid #fff;
  border-radius: 100%;
  padding: 10px;
}

.like:hover {
  color: #fa8700;
}

.dest {
  font-size: 20px;
  font-family: "Prata", serif;
  font-weight: 300;
  margin-bottom: 15px;
}

.dest-city {
  font-size: 10px;
}

.dest-city i {
  margin-right: 5px;
}

.trip {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 5px 10px;
}

.trip:hover {
  background-color: #fa8700;
  color: #fff;
  border: 1px solid #fa8700;
}

.card:nth-of-type(2) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../images/imgs/turkey.png);
}

.card:nth-of-type(3) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../images/imgs/sharm.png);
}

.card:nth-of-type(4) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../images/imgs/alex.png);
}

.card:nth-of-type(5) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../images/imgs/istanbul.png);
}

.card:nth-of-type(6) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../images/imgs/greec.png);
}

.card:nth-of-type(7) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../images/imgs/axuor.png);
}

.card:nth-of-type(8) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../images/imgs/cairo.png);
}

.more {
  width: 30px;
  height: 30px;
  line-height: 30px;
  padding-left: 6px;
  color: #000;
  border: 1px solid #000;
  border-radius: 50px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

/* End Trip Section */

/* Start Slogan Section  */

.slogan,
.contact {
  /* margin-top: 100px; */
  padding: 0;
  background-color: #000;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #fff;
  height: fit-content;
}

.slog-img,
.contact-img {
  width: 50%;
  max-height: 559px;
  height: 559px;
}

.slog,
.contact-info,
.feat-info {
  margin: 0 auto;
  text-align: center;
}
.slog p {
  font-size: 48px;
  letter-spacing: 16px;
  line-height: 2;
  font-family: "Prata", serif;
  font-weight: 200;
  text-align: center;
}
/* End Slogan Section  */

/* Start Brief Section  */

.brief {
  margin-top: 120px;
}

.features {
  margin-top: 100px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
}

.feat {
  border: 1px solid #eeeeee;
  border-radius: 50px;
  max-width: 32%;
  width: 32%;
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 20px 30px;
  margin-right: 20px;
  margin-top: 20px;
}

.icon {
  width: 5rem;
  height: 5rem;
  line-height: 7rem;
  border-radius: 100%;
  background-color: #fa8700;
  text-align: center;
}

.icon img {
  width: 50%;
  height: 50%;
}

.feat-info p:first-of-type {
  font-size: 30px;
  font-family: "Prata", serif;
  font-weight: 200;
}

.feat-info p:last-of-type {
  font-size: 20px;
  color: #797878;
  font-weight: 200;
}

.img-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 80px auto;
}

.img-container img:first-of-type {
  width: 60%;
  height: 315px;
  border-radius: 30px;
}

.img-container img:last-of-type {
  width: 30%;
  height: 315px;
  border-radius: 30px;
}
/* End Brief Section  */

/* Start Contact Us  */
.contact-info h2 {
  font-size: 48px;
  font-family: "Prata", serif;
  font-weight: 200;
  margin-bottom: 50px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  /* line-height: 68px; */
  border-radius: 100%;
  background-color: #fa8700;
  color: #fff;
  text-align: center;
  margin-right: 15px;
  padding: 17px 0;
}

.contact-list {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
}

.contact-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 47%;
  margin-bottom: 80px;
}

.contact-list li:nth-last-of-type(2) {
  margin-left: 29px;
}

.contact-list li i {
  font-size: 24px;
}
/* End Contact Us  */

/* Start Footer  */
footer {
  background-color: #131312;
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 85px 50px;
  color: #fff;
}

footer h3 {
  font-size: 25px;
  font-family: "Prata", serif;
  font-weight: 200;
}

.social p {
  margin-top: 20px;
  margin-bottom: 40px;
  font-size: 15px;
}

.social ul,
.social-details ul {
  display: flex;
  justify-content: start;
  align-items: center;
}

.social ul li:not(:last-of-type),
.social-details ul li:not(:last-of-type) {
  margin-right: 20px;
}

.social ul li a,
.social-details ul li a {
  font-size: 24px;
  font-weight: 200;
  color: #fff;
}

.import-links {
  display: flex;
  justify-content: start;
  align-items: start;
}

.main-links {
  margin-right: 60px;
}

.import-links a,
.newsletter p {
  color: rgba(255, 255, 255, 0.7);
}

.import-links li {
  margin-bottom: 5px;
}

.import-links li:first-of-type {
  margin-top: 30px;
}

.newsletter {
  text-align: center;
}

.newsletter p {
  width: 60%;
  font-size: 12px;
  line-height: 2;
  margin: 25px auto;
}

.newsletter form {
  border: 1px solid #fff;
  border-radius: 50px;
  width: 70%;
  padding: 8px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.newsletter form input[type="text"] {
  background-color: transparent;
  border: none;
  color: #fff;
}

.newsletter form input[type="text"]:focus {
  outline: none;
}

.newsletter form input[type="submit"] {
  border: none;
  border-radius: 50px;
  background-color: #fff;
  padding: 10px 25px;
  font-size: 12px;
  cursor: pointer;
  margin-left: 10px;
}
/* End Footer  */

@media screen and (max-width: 1440px) {
  .features {
    justify-content: space-around;
  }

  .feat {
    width: 30%;
    padding: 8px 25px;
  }

  .icon {
    width: 3.5rem;
    height: 3.5rem;
    line-height: 4.5rem;
  }

  .feat-info p:first-of-type {
    font-size: 20px;
  }

  .feat-info p:last-of-type {
    font-size: 15px;
  }
}

@media screen and (max-width: 768px) {
  .navbar .pages,
  .navbar .lang,
  .navbar .dropdown {
    display: none;
  }

  .open {
    display: block;
  }

  .mob-nav .dropdown {
    min-width: 15em;
  }

  .pop-trip-details {
    flex-direction: column;
  }

  .select {
    border-radius: 1em !important;
    width: 15em !important;
    height: auto !important;
  }

  .menu {
    top: 4em !important;
  }

  .hero-section h1 {
    width: 65%;
  }

  .slogan {
    flex-direction: column-reverse;
  }

  .slog-img {
    width: 100%;
    height: 550px;
    margin-right: 0;
  }

  .slog {
    font-size: 30px;
    width: 75%;
    margin: 0 auto;
    padding: 20px;
  }

  .icon {
    width: 3rem;
    height: 3rem;
    line-height: 4rem;
  }

  .feat-info p:first-of-type {
    font-size: 15px;
  }

  .feat-info p:last-of-type {
    font-size: 10px;
  }

  .contact {
    flex-direction: column;
  }

  .contact-img {
    width: 100%;
    margin-bottom: 50px;
  }

  .contact-list li {
    justify-content: center;
    width: 47%;
  }

  .contact-list li:nth-last-of-type(2) {
    margin-left: 20px;
  }

  footer {
    flex-direction: column;
    align-items: center;
  }

  .social,
  .import-links,
  .newsletter {
    text-align: center;
  }

  .social ul {
    justify-content: center;
  }

  .import-links,
  .newsletter {
    margin-top: 50px;
  }

  .newsletter p {
    margin: 25px auto;
  }

  .newsletter form {
    margin: 20px auto;
  }

  .slog p {
    padding: 40px 0;
  }
}

@media screen and (max-width: 425px) {
  .hero-section {
    height: 30vh;
  }

  .hero-section h1 {
    font-size: 24px;
    margin-left: 2rem;
    margin-top: 1rem;
  }

  .img-container img {
    height: 250px !important;
  }

  .navigate-dest {
    padding: 5px 0;
    margin: 25px auto;
    width: 100%;
  }

  .links {
    padding: 20px;
    margin: 0 auto;
  }

  .links a {
    font-size: 12px;
  }

  .navigate-dest .active {
    padding: 10px;
  }

  .navigate-dest a {
    margin-right: 8px;
  }

  .des-start h2,
  .brief-start h2,
  .slog p,
  .contact-info h2 {
    font-size: 24px;
  }

  .sm-paragraph {
    font-size: 12px;
  }

  .destination,
  .slogan,
  .contact,
  .brief {
    margin-top: 40px;
  }

  .all-dest {
    margin: 25px auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .card {
    max-width: 100%;
    width: 100%;
  }

  .slog {
    width: 100%;
  }

  .slog p {
    letter-spacing: 5px;
    padding: 40px 0;
  }

  .slog-img {
    height: 480px;
  }

  .features {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }

  .feat {
    max-width: 100%;
    width: 100%;
  }

  .icon {
    width: 70px;
    height: 70px;
    line-height: 90px;
  }

  .feat-info p:first-of-type {
    font-size: 24px;
  }

  .feat-info p:last-of-type {
    font-size: 20px;
  }

  .img-container {
    margin-top: 30px;
    flex-direction: column;
  }

  .img-container img:first-of-type {
    width: 100%;
    margin-bottom: 20px;
  }

  .img-container img:last-of-type {
    width: 100%;
  }

  .contact-info {
    padding: 0 20px;
  }

  .contact-info h2 {
    text-align: left;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    padding: 12px;
  }

  .contact-list li i {
    font-size: 15px;
  }

  .contact-list p {
    font-size: 12px;
  }

  .contact-list li:nth-of-type(3) p:nth-of-type(2),
  .contact-list li:nth-of-type(3) p:nth-of-type(3) {
    font-size: 10px !important;
  }

  .contact-list li:nth-last-of-type(2) {
    margin-left: 0;
    margin-right: 10px;
  }

  .newsletter form {
    width: 100%;
  }
  .links {
    padding: 10px 0;
  }
}

@media screen and (max-width: 320px) {
  section {
    padding: 10px 30px;
  }

  .hero-section h1,
  .des-start h2,
  .brief-start h2,
  .slog p,
  .contact-info h2 {
    font-size: 20px;
  }

  .hero-section h1 {
    margin-left: 1.5rem;
  }

  .all-dest {
    flex-wrap: nowrap;
  }

  .contact-list p {
    font-size: 8px;
  }
}

/* Start Blog Page  */

.blog-content {
  position: relative;
  padding-left: 10%;
  padding-right: 10%;
}

.blog-main-img {
  width: 70%;
  border-radius: 50px;
  margin: -170px auto 50px auto;
  overflow: hidden;
}

.blog-heading {
  width: 70%;
  margin: 0 auto;
}

.blog-heading h1 {
  line-height: 1.8;
}

.hr {
  width: 50%;
  height: 1px;
  margin: 75px auto;
  background-color: rgba(143, 143, 143, 0.3);
}

.blog-topic {
  padding: 0 16%;
}

.blog-topic h2 {
  font-size: 30px;
  margin-bottom: 60px;
}

.blog-topic p {
  margin-bottom: 70px;
  color: #757575;
  font-size: 18px;
}

.blog-topic-img {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin: 100px auto;
}

.img-1,
.img-2 {
  border-radius: 50px;
  max-width: 42%;
  height: auto;
  overflow: hidden;
}

.comments {
  width: 70%;
  margin: 50px auto;
}

.comments h2 {
  margin-bottom: 15px;
}

.comments p {
  color: #757575;
  margin-bottom: 25px;
}

.comments form label {
  display: block;
  margin-bottom: 10px;
}

.comments form textarea {
  width: 80%;
  height: 200px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  resize: none;
  padding: 20px 30px;
}

.comments input[type="text"] {
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  width: 80%;
  padding: 15px;
  margin-bottom: 20px;
}

.comment-submit,
.confirm button {
  width: 30%;
  padding: 20px 35px;
  background-color: #fa8700;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 50px;
  margin-top: 40px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.comment-submit:hover,
.confirm button:hover {
  background-color: #fff;
  color: #fa8700;
  border: 1px solid #fa8700;
}

@media screen and (max-width: 900px) {
  .blog-content {
    padding-left: 5%;
    padding-right: 5%;
  }

  .blog-content h1 {
    font-size: 2rem;
  }

  .comments form textarea,
  .comments input[type="text"] {
    width: 100%;
  }

  .comment-submit {
    width: 40%;
  }
}

@media screen and (max-width: 425px) {
  .blog-main-img,
  .blog-heading,
  .comments,
  .hr {
    width: 85%;
  }

  .blog-main-img {
    margin: -120px auto 40px auto;
  }

  .blog-content h1 {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .hr {
    margin-top: 0;
    margin-bottom: 0;
  }

  .blog-topic h2 {
    margin-top: 40px;
    font-size: 18px;
  }

  .blog-topic {
    padding: 0 10%;
  }

  .blog-topic p {
    font-size: 15px;
  }

  .blog-topic-img {
    flex-direction: column;
    margin-bottom: 0;
    margin-top: 0;
  }

  .img-1,
  .img-2 {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .comments h2 {
    font-size: 24px;
    margin-top: 50px;
  }

  .comments p {
    font-size: 15px;
  }

  .comment-submit {
    width: 65%;
  }

  .comments form textarea {
    height: 110px;
  }
}
/* End Blog Page  */

/* Start Contact Page  */
.contacts-container,
.confirmation-container {
  padding: 100px 9rem;
}
.contacts-heading {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contacts-heading h2 {
  width: 40%;
  margin-right: 50px;
}

.contacts-heading p {
  width: 40%;
  color: #757575;
  line-height: 1.8;
}

.contacts-details-wrapper {
  width: 90%;
  margin: 80px auto 0 auto;
  background-color: #fa8700;
  color: #fff;
  border-radius: 30px;
  padding: 50px 40px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.contacts {
  width: 35%;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  margin-right: 50px;
  padding-bottom: 90px;
}

.contacts h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.contacts p {
  font-size: 15px;
  width: 60%;
  margin-bottom: 30px;
  font-family: "Prata", serif;
  font-weight: 300;
}

.contacts-message {
  width: 60%;
}

.contacts-message label {
  display: block;
  margin-bottom: 20px;
}

.contacts-message textarea {
  width: 100%;
  height: 120px;
  border-radius: 10px;
  border: 1px solid #fff;
  background-color: transparent;
  margin-bottom: 20px;
  padding: 20px 30px;
  color: #fff;
}

.contacts-message textarea::placeholder,
.info-flex input[type="text"]::placeholder {
  color: #eee;
}

textarea:focus,
input:focus,
.map iframe:focus {
  outline: none;
  border: none;
}

.info-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* .input-parent {
  width: 48%;
} */

.info-flex input[type="text"] {
  border-radius: 10px;
  border: 1px solid #fff;
  background-color: transparent;
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
}

.contacts-submit {
  width: 100%;
  padding: 20px 35px;
  background-color: #fff;
  color: #fa8700;
  border: 1px solid transparent;
  border-radius: 50px;
  margin-top: 40px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.contacts-submit:hover {
  background-color: #fa8700;
  color: #fff;
  border: 1px solid #fff;
}

.map {
  padding: 0;
  height: 500px;
  margin-top: -200px;
  z-index: -1;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%);
}

@media screen and (max-width: 900px) {
  .contacts-container {
    padding: 100px 5rem;
  }

  .contacts-heading {
    flex-direction: column;
  }

  .contacts-heading h2 {
    width: fit-content;
    margin-right: 0;
    margin-bottom: 25px;
  }

  .contacts-heading p {
    font-size: 15px;
    width: 90%;
    text-align: center;
  }

  .contacts-details-wrapper {
    width: 100%;
  }

  .contacts {
    width: 50%;
  }

  .contacts h3 {
    font-size: 15px;
  }
}

@media screen and (max-width: 425px) {
  .contacts-container {
    padding: 100px 2rem;
  }

  .contacts-heading h2 {
    font-size: 24px;
  }

  .contacts-heading p {
    width: 100%;
    font-size: 12px;
  }

  .contacts-details-wrapper {
    padding: 50px 20px;
    flex-direction: column;
  }

  .contacts {
    margin-right: 15px;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #fff;
    text-align: center;
    padding-bottom: 60px;
    margin-bottom: 40px;
  }

  .contacts h3,
  .contacts p {
    font-size: 12px;
    width: 100%;
  }

  .social-details ul {
    justify-content: center;
  }

  .social-details ul li a {
    font-size: 15px;
  }

  .info-flex {
    flex-direction: column;
  }

  .input-parent {
    width: 100%;
  }

  .contacts-message label {
    font-size: 12px;
  }

  .info-flex input[type="text"] {
    padding: 10px 12px;
    font-size: 11px;
  }

  .contacts-message textarea,
  .info-flex input[type="text"] {
    margin-bottom: 12px;
  }

  .contacts-submit {
    padding: 15px 35px;
    margin-top: 10px;
  }

  .contacts-message {
    width: 100%;
  }
}
/* End Contact Page  */

/* Start Confirmation Page  */

.confirmation-container {
  background-image: url(../images/imgs/confirmation.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.confirmation-details {
  background-color: #fff;
  color: #000;
  padding: 25px;
  border-radius: 20px;
  width: fit-content;
  margin: 0 auto;
}

.confirmation-details .heading p {
  width: fit-content;
  margin-left: auto;
  padding: 15px;
  border: 1px solid #000;
}

.conform-details h2 {
  width: fit-content;
  border-bottom: 1px solid #000;
  margin-bottom: 25px;
}

.orange {
  color: #fa8700;
  font-weight: bold;
}

.conform-details ul {
  list-style: disc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 25px;
}

.conform-details ul li {
  width: 50%;
  margin-bottom: 20px;
}

.confirm {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
  margin: 40px auto;
}

.confirm button {
  font-weight: bold;
  margin-top: 20px;
  width: fit-content;
}

.confirm .price {
  padding: 25px;
  font-weight: bold;
  font-size: 25px;
  border: 1px solid #000;
}

.confirmation-details .hr {
  margin: 5px auto;
  background-color: #000;
}

@media screen and (max-width: 425px) {
  .confirmation-container {
    padding: 100px 2rem;
  }

  .confirmation-details .heading p {
    margin-bottom: 25px;
  }

  .conform-details ul {
    padding: 10px 20px;
  }

  .conform-details ul li {
    width: fit-content;
  }

  .conform-details h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
/* end Confirmation Page  */

/* Start Gallery Page */

.gallery {
  text-align: center;
  margin-bottom: 30px;
}

.gallery h2 {
  width: fit-content;
  margin: 50px auto;
  border-bottom: 2px solid #fa8700;
}

.gallery p {
  width: 50%;
  margin: 0 auto 30px;
  color: #797878;
}

figure {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-rows: auto;
  grid-auto-flow: dense;
  justify-items: stretch;
  align-items: stretch;
  gap: 2svmin;
}

img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (min-width: 500px) {
  figure {
    grid-template-columns: repeat(2, 1fr);
  }
  img:nth-of-type(11) {
    grid-row: span 2 / auto;
  }
}

@media (min-width: 1000px) {
  figure {
    grid-template-columns: repeat(4, 1fr);
    gap: 1svmin;
  }

  img:where(:nth-of-type(3), :nth-of-type(12)) {
    grid-row: span 2 / auto;
    grid-column: span 2 / auto;
  }

  img:nth-of-type(5) {
    grid-column: span 2 / auto;
  }

  img:nth-of-type(15) {
    grid-column: span 2 / auto;
  }
}

@media screen and (max-width: 900px) {
  .gallery p {
    width: 100%;
  }
}

/* End Gallery Page */

/* Search Popup Styles */
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: none;
}

.search-popup-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #191919;
  border-radius: 10px;
  width: 80%;
  max-width: 800px;
  z-index: 9;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.search-footer {
  padding: 15px 20px;
  margin-top: 25px;
  text-align: center;
}

.search-footer input {
  border: none;
  color: #fff;
  cursor: pointer;
}

.search-footer input:hover {
  background-color: #fff;
  color: #fa8700;
  border: 1px solid #fa8700;
}

.search-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.close-search {
  font-size: 24px;
  cursor: pointer;
  color: #999;
  transition: color 0.3s;
}

.close-search:hover {
  color: #fa8700;
}

.search-content {
  padding: 20px;
}

.search-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.search-input-container,
.search-date-container {
  flex: 1;
  position: relative;
}

.search-input,
.search-date {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

.search-input:focus,
.search-date:focus {
  border-color: #fa8700;
}

.date-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

.recent-settings {
  margin-top: 20px;
}

.recent-settings ul {
  list-style: none;
  padding: 0;
}

.recent-settings li {
  margin-bottom: 10px;
}

.recent-settings a {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.recent-settings a:hover {
  color: #fa8700;
}

.icon1 {
  margin-right: 10px;
  color: #fa8700;
}

/* Start Trip Details  */

.trip-info {
  position: relative;
  padding: 0;
}

.trip-images {
  margin-top: -200px;
}

.trip-images .trip-photo {
  max-height: max-content;
  min-height: 500px;
  width: 500px;
}

.trip-images .trip-photo img {
  width: 95%;
  height: 100%;
  border-radius: 50px;
  object-fit: cover;
}

.slick-slide {
  margin-right: 30px;
  height: max-content;
  width: 100px;
}

.slick-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  border: none;
  position: absolute;
  bottom: -120px;
  right: 50px;
  background-color: #fff;
  border: 1px solid #fa8700;
  cursor: pointer;
  font-weight: bold;
  font-size: 15px;
  z-index: 999;
}

.slick-arrow:hover {
  background-color: #fa8700;
  color: #fff;
}

.slick-prev {
  right: 120px;
  background-color: #fa8700;
  color: #fff;
}

.slick-prev:hover {
  color: #000;
  background-color: #fff;
  border: 1px solid #fa8700;
}

.trip-wrapper {
  padding: 100px 9rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.trip-details {
  padding: 0 0 0 5rem;
  width: 65%;
}

.trip-dest {
  font-size: 35px;
  font-family: "Prata", serif;
  margin-bottom: 12px;
}

.trip-city {
  margin-bottom: 40px;
}

.overview h2,
.include h2 {
  margin-bottom: 30px;
}

.overview {
  margin-bottom: 60px;
}

.overview p,
.data {
  color: #757575;
}

.wrap {
  margin-bottom: 50px;
}

.wrap .accordion {
  margin-top: 30px;
}

.accordion .menu-head {
  background-color: transparent;
  color: #000;
  padding: 5px 10px;
  overflow: hidden;
  zoom: 1;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0e0e0e5;
}

.menu-head h3 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.acc-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.menu-head .plus-minus {
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.accordion .data {
  padding: 5px 10px;
  display: none;
}

.data {
  margin-top: 20px;
}

.include-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.include-list li {
  width: 50%;
  margin-bottom: 25px;
  display: flex;
  justify-content: start;
  align-items: start;
}

.include .contact-icon {
  padding: 21px 0;
  margin-bottom: 20px;
}

.include .contact-icon + div {
  width: 84%;
}

.trip-bill {
  padding-top: 5rem;
  width: 30%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.bill-wrapper {
  background-color: #1e1e1e;
  border-radius: 20px;
  height: fit-content;
  padding: 25px 10px;
  width: 100%;
  color: #fff;
  text-align: center;
}

.bill-wrapper h2 {
  margin-bottom: 30px;
}

.reservation {
  padding: 0 10px;
  text-align: left;
}

.reservation p {
  margin-bottom: 15px;
  font-size: 18px;
}

.calender {
  position: relative;
}

.calender .calender-img {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  cursor: pointer;
}

.date {
  width: 100%;
  padding: 15px 15px;
  border-radius: 10px;
  font-size: 18px;
  border: 1px solid transparent !important;
}

.currency,
.currency-choices {
  display: flex;
  justify-content: end;
  align-items: start;
}

.currency {
  margin-top: 20px;
  width: fit-content;
  font-weight: bold;
  width: 100%;
}

.currency-choices {
  flex-wrap: wrap;
  margin-left: auto;
  width: 68%;
}

.currency-choices p {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50px;
  background-color: #fff;
  color: #757575;
  margin-right: 5px;
  font-size: 12px;
  text-align: center;
  cursor: not-allowed;
}

.choice {
  background-color: #fa8700 !important;
  color: #fff !important;
}

.family-wrapper,
.num {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  margin: 20px 0;
}

.num {
  margin: 10px 0;
}

.family-wrapper {
  margin: 0;
}

.add,
.remove {
  cursor: pointer;
  margin: 0 10px;
}

.family-wrapper p:nth-of-type(1),
.family-wrapper p:nth-of-type(2) {
  width: 30%;
}

.family-wrapper p {
  margin-bottom: 0;
}

.family-wrapper small {
  display: block;
  font-weight: 100;
  font-style: italic;
  font-size: 12px;
}

.family-choices .hr,
.family-info .hr {
  margin: 30px auto;
  color: #fff;
  border-top: 1px solid #fff;
  height: 1px;
}

.option {
  margin-bottom: 10px;
}

.option > input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.option > input:checked + label::before {
  border-color: #fff;
}

.option > input:checked + label::after {
  transform: scale(1) translateY(-50%);
  background-color: #fa8700;
}

.option > input:checked + label a {
  text-decoration: underline;
}

.option > label {
  cursor: pointer;
  position: relative;
  transition: all 0.1s;
  display: flex;
  width: 100%;
}

.option > label span:nth-of-type(2) {
  width: 15%;
  margin: 0 0 0 auto;
}

.option > label::before {
  border: calc(1px + 0.06em) solid #fff;
  content: "";
  display: inline-block;
  font-size: 1.1em;
  height: calc(3px + 0.8em);
  margin-right: calc(4px + 0.4em);
  transition: all 0.1s;
  vertical-align: middle;
  width: calc(3px + 0.8em);
}

.option > label::after {
  border-bottom: 7px solid #fa8700;
  border-left: 3px solid #fa8700;
  content: "";
  font-size: 1.1em;
  height: 3.5px;
  left: 5px;
  position: absolute;
  top: 46%;
  transform: scale(0) rotate(-45deg) translateY(-50%);
  transition: all 0.1s;
  width: 8.2px;
}

.total-price {
  text-align: center;
}

.total-price p:nth-of-type(1) {
  font-size: 20px;
  margin-bottom: 5px;
}

.total-price p:nth-of-type(2) {
  font-size: 40px;
  color: #fa8700;
}

.total-price button {
  background-color: #fa8700;
  border: 1px solid transparent;
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  margin-top: 15px;
}

.total-price button:hover {
  background-color: #fff;
  color: #fa8700;
}

.disabled {
  background: #ccc !important;
  pointer-events: none;
}

@media screen and (max-width: 1024px) {
  .trip-images {
    max-height: 250px;
  }

  .trip-wrapper {
    padding: 100px 2rem;
  }

  .trip-wrapper h1 {
    font-size: 40px;
  }

  .hr {
    margin: 40px auto;
    width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .trip-wrapper {
    flex-direction: column;
    padding: 150px 2rem;
  }

  .trip-details,
  .trip-bill {
    width: 100%;
  }

  .trip-details {
    padding: 0;
  }
}

@media screen and (max-width: 425px) {
  .trip-images {
    margin-top: -100px;
  }

  .include-list {
    align-items: flex-start;
  }

  .include .contact-icon {
    padding: 10px 0;
  }
  .include-list {
    flex-direction: column;
  }

  .include-list li {
    width: 100%;
  }
}

@media screen and (max-width: 375px) {
  .option > label span:nth-of-type(2) {
    width: 25px;
  }
}
/* End Trip Details  */

/* Filter Styles */
.filter-container {
  margin-top: 50px;
  width: 70%;
  margin: 0 auto;
  padding: 30px;
  background-color: #191919;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.filter-heading {
  text-align: center;
  margin-bottom: 30px;
}

.filter-heading h2 {
  font-family: "Prata", serif;
  font-size: 32px;
  margin-bottom: 10px;
  color: #fff;
}

.filter-heading p {
  font-size: 16px;
  color: #fff;
}

.filter-controls {
  width: 100%;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.filter-item {
  flex: 1;
  min-width: 200px;
}

.filter-item label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #fff;
}

.filter-item select,
.filter-item input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  background-color: #fff;
}

.date-filter-container {
  position: relative;
}

.date-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
}

.filter-buttons {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.filter-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:first-child {
  background-color: #fa8700;
  color: white;
}

.filter-btn:first-child:hover {
  background-color: #e67a00;
}

.filter-btn.reset {
  background-color: #f1f1f1;
  color: #333;
}

.filter-btn.reset:hover {
  background-color: #e1e1e1;
}

.no-results {
  text-align: center;
  padding: 50px 0;
  font-size: 18px;
  color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .filter-row {
    flex-direction: column;
  }

  .filter-container {
    width: 100%;
  }

  .filter-item {
    width: 100%;
  }

  .filter-buttons {
    flex-direction: column;
  }
}

/* Trip card modifications */
.trip-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Search Date Picker Styles */
.search-date-container {
  position: relative;
  margin-bottom: 15px;
}

.search-date {
  width: 100%;
  padding: 10px 40px 10px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  background-color: #fff;
}

.date-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #fa8700;
  cursor: pointer;
}

/* Datepicker customization */

@media screen and (max-width: 900px) {
  .popular-heading {
    flex-direction: column;
  }

  .popular-heading h2,
  .destination-heading h2 {
    font-size: 30px;
  }

  .popular-heading a {
    margin-top: 30px;
  }
}
/* Start Blog Page  */

.blog-page {
  padding: 100px 50px;
}

.blog-post {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}

.blog-post h3 {
  font-size: 35px;
  margin-bottom: 15px;
}

.blog-post a {
  color: #000 !important;
}

.blog-post-img {
  width: 80%;
  height: 300px;
  overflow: hidden;
  border-radius: 50px;
}

.blog-post-info {
  width: fit-content;
}

.read {
  font-weight: bold;
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
}

.other-posts h3 {
  margin-left: 1rem;
  margin-bottom: 1rem;
}

@media screen and (max-width: 1500px) {
  .blog {
    padding: 100px 50px;
  }

  .post-content p {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 1300px) {
  .other-posts h3 {
    text-align: left;
  }
}

@media screen and (max-width: 900px) {
  .blog-post h3 {
    text-align: left;
    font-size: 1.5rem;
  }

  .blog-post-info p {
    text-align: left;
  }

  .blog-post-img {
    height: auto;
  }

  .blog-post {
    align-items: flex-start;
  }
}

/* End Blog Page  */

/* Booking Form */

.form-input {
  padding: 15px 20px;
  border-radius: 20px;
  border: none;
  margin-bottom: 20px;
  margin-left: 5px;
  margin-top: 10px;
  width: 80%;
  display: block;
}

.add {
  margin-bottom: 15px;
}

.dropdown {
  min-width: 5em;
  display: flex;
  align-items: center;
  position: relative;
  top: 0;
  margin: 2em 2em 2em 0;
}
.select {
  background: #fa8700;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px #fa8700 solid;
  padding: 0.8em;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 100%;
  width: 4em;
  height: 4em;
}
.select-clicked {
  border: 2px #fa8700 solid;
  box-shadow: 0 0 0.8em #fa8700;
}
.select:hover {
  background: #323741;
}
.caret {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #fff;
  transition: 0.3s;
}
.caret-rotate {
  transform: rotate(180deg);
}
.menu {
  list-style: none;
  padding: 0.2em 0.5em;
  background: #323741;
  border: 1px #363a43 solid;
  box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.2);
  border-radius: 0.5em;
  color: #9fa5b5;
  position: absolute;
  top: 4.5em;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  opacity: 0;
  display: none;
  transition: 0.2s;
  z-index: 1;
}
.menu li {
  padding: 0.7em 0.5em;
  margin: 0.3em 0;
  border-radius: 0.5em;
  cursor: pointer;
}
.menu li:hover {
  background: #2a2d35;
}
.active1 {
  background: #23242a;
}
.menu-open {
  display: block;
  opacity: 1;
}

.success {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.success-wrapper {
  width: 30%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  padding: 2em;
  text-align: center;
  font-weight: bolder;
  position: relative;
}

.close {
  position: absolute;
  right: 30px;
  top: 20px;
  font-size: 20px;
  font-weight: bolder;
  color: #6d6464;
  cursor: pointer;
}

.success-animation {
  margin: 0 auto 50px;
}

.checkmark {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: block;
  stroke-width: 5;
  stroke: #4bb71b;
  stroke-miterlimit: 15;
  box-shadow: inset 0px 0px 0px #4bb71b;
  animation: fill 0.4s ease-in-out 0.4s forwards,
    scale 0.3s ease-in-out 0.9s both;
  position: relative;
  top: 5px;
  right: 5px;
  margin: 0 auto;
}
.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #4bb71b;
  fill: #fff;
  animation: stroke 0.9s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.8s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale {
  0%,
  100% {
    transform: none;
  }

  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #4bb71b;
  }
}

@media only screen and (max-width: 900px) {
  .success-wrapper {
    width: 70%;
  }
}

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.25);
}

body.open-modal .modal-container {
  visibility: visible;
  opacity: 1;
}

.main-container,
.modal-window,
.modal-container {
  transition: 0.5s;
}

.modal-window {
  position: fixed;
  top: 50%;
  left: 50%;
  background: #ffffff;
  color: #000000;
  padding: 48px 40px;
  width: 50%;
  border-radius: 12px;
  translate: -50% -50%;
  scale: 1;
  opacity: 0;
  visibility: hidden;
}

body.open-modal > .main-container {
  scale: 0.75;
}

body.open-modal .modal-window {
  opacity: 1;
  visibility: visible;
  animation: modal-window-in 0.5s;
}

h2 {
  margin: 0 0 8px;
  font-weight: 900;
  font-size: 21px;
  font-size: 48px;
  font-family: "Prata", serif;
  font-weight: 300;
}

p {
  margin: 0;
}

@keyframes modal-window-in {
  0% {
    translate: -50% 10%;
    scale: 0.5;
  }
  100% {
    opacity: 1;
    scale: 1;
    visibility: visible;
  }
}

.term-cancel {
  font-size: 12px;
  margin-bottom: 15px;
}

.search {
  width: 30px;
  height: 30px;
  margin-right: 25px;
  cursor: pointer;
}


.pagination {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  gap: 0.5rem;
}

.pagination li {
  list-style: none;
}

.pagination li a, .pagination li span {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #ddd;
}

.pagination li.active span {
  background-color: #fa8700;
  color: white;
  border-color: #fa8700;
}

.pagination li a:hover {
  background-color: #f8f9fa;
  border-color: #fa8700;
  color: #fa8700;
}

.pagination .disabled span {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #ddd;
}
