body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Quicksand", Arial, sans-serif;
  font-weight: 400;
}

* {
  box-sizing: border-box;
}

.home {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.navbar {
  background-color: transparent;
  padding: 0 30px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 1366px;
  z-index: 99;
}

.navbar a {
  float: left;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-size: 17px;
  font-weight: lighter;
  line-height: 12px;
  padding: 12px;
}

.logo-cover,
.footer-logo {
  width: 70px;
  height: 70px;
  background-color: #ccc;
  padding: 0;
  margin: 12px;
  border-radius: 50%;
}

.logo-cover img,
.footer-logo img {
  width: 100%;
  height: 100%;
}

.navbar-right a:hover {
  color: #00bbf0;
}

.navbar-right a.active {
  color: #00bbf0;
}

.navbar-right a {
  transition: color 0.5s ease;
}

.navbar-right {
  float: right;
}

.navbar .nav-icon {
  display: none;
}

.service-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  padding: 7em 2em;
}

.services {
  display: flex;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  text-align: center;
  line-height: 25px;
  font-weight: lighter;
  color: #000;
  box-shadow: rgba(3, 8, 20, 0.1) 0px 0.15rem 0.5rem,
    rgba(2, 8, 20, 0.1) 0px 0.075rem 0.175rem;
  height: 100%;
  width: 100%;
  border-radius: 9px;
  transition: all 500ms;
  overflow: hidden;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service:hover {
  box-shadow: rgba(2, 8, 20, 0.1) 0px 0.35em 1.175em,
    rgba(2, 8, 20, 0.08) 0px 0.175em 0.5em;
  transform: translateY(-3px) scale(1.1);
}

.icon {
  margin: 0 auto;
  padding: 0 auto;
  margin-bottom: 20px;
  background: #f7f7f7;
  width: 120px;
  height: 120px;
  display: table;
  justify-content: center;
  border: 1px solid #00bbf0;
  border-radius: 50%;
}

.icon i {
  font-size: 60px;
  color: #00bbf0;
  display: table-cell;
  vertical-align: middle;
}

.nav-icon i {
  font-size: 23px;
}

@media screen and (max-width: 600px) {
  .navbar {
    padding: 10px;
  }

  .navbar .menu {
    display: none;
  }

  .navbar .nav-icon {
    display: block;
    position: absolute;
    top: 13px;
    right: 13px;
  }

  .navbar.show {
    background: #000;
    color: #ffffff;
  }

  .navbar.show .menu {
    display: block;
    width: 100%;
  }

  .navbar.show .menu a {
    width: 100%;
  }

  .destinations {
    margin-bottom: 50px;
  }
}

.home .slide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  display: none;
  padding: 0 15px;
  animation: slide 2s ease;
}
.home .slide.active {
  display: flex;
}
@keyframes slide {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.container {
  max-width: 1170px;
  margin: auto;
}

.home .container {
  flex-grow: 1;
}
.home .caption {
  width: 50%;
}
.home .caption h1 {
  font-size: 42px;
  color: #fafafa;
  margin: 0;
}
.home .slide.active .caption h1 {
  opacity: 0;
  animation: captionText 0.5s ease forwards;
  animation-delay: 1s;
}
.home .caption p {
  font-size: 18px;
  margin: 15px 0 30px;
  color: #fafafa;
}
.home .slide.active .caption p {
  opacity: 0;
  animation: captionText 0.5s ease forwards;
  animation-delay: 1.2s;
}
.home .caption a {
  display: inline-block;
  padding: 10px 30px;
  background-color: #00bbf0;
  text-decoration: none;
  color: #ffffff;
  border-radius: 16px;
}

.home .slide.active .caption a {
  opacity: 0;
  animation: captionText 0.5s ease forwards;
  animation-delay: 1.4s;
}

@keyframes captionText {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

.home .controls .prev,
.home .controls .next {
  position: absolute;
  z-index: 2;
  top: 50%;
  height: 40px;
  width: 40px;
  margin-top: -20px;
  color: #ffffff;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.5s ease;
}
.home .controls .prev:hover,
.home .controls .next:hover {
  background-color: #00bbf0;
}
.home .controls .prev {
  left: 0;
}
.home .controls .next {
  right: 0;
}

.home .indicator {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 2;
  transform: translateX(-50%);
}

.home .indicator div {
  display: inline-block;
  width: 25px;
  height: 25px;
  color: #ffffff;
  background-color: #00bbf0;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  margin: 0 3px;
}

.home .indicator div.active {
  background-color: #000;
}

.logo-cover {
  padding: 0;
}

/*responsive*/
@media (max-width: 767px) {
  .controls {
    display: none;
  }
}

.section_head {
  text-align: center;
  font-weight: 400;
  margin: 55px;
  font-size: 2.2rem;
}

.popular-experiences {
  margin-bottom: 70px;
  width: 100%;
}

.popular_container {
  display: grid;
  grid-template-columns: 1fr 10fr 1fr;
  margin: 120px 0;
}

.pop_cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  transition: all 500ms;
  overflow: hidden;
}

#left_scroll,
#right_scroll {
  border-radius: 50%;
  font-size: 20px;
  width: 40px;
  color: #00bbf0;
  height: 40px;
  text-align: center;
  outline: none;
  border: none;
  background: transparent;
}

#left_scroll:hover,
#right_scroll:hover {
  cursor: pointer;
  background: #00bbf0;
  color: #fff;
}

.pop-container {
  width: 100%;
  height: 510px;
  overflow: hidden;
}

.popular_showcase {
  display: flex;
}

.pop_offer {
  width: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.popular-box {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 15px;
  border-radius: 13px;
  box-shadow: rgba(3, 8, 20, 0.1) 0px 0.15rem 0.5rem,
    rgba(2, 8, 20, 0.1) 0px 0.075rem 0.175rem;
}

.imgBx {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 13px;
}

.imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
  border-radius: 13px;
}

.popular-box .content {
  position: absolute;
  bottom: 20px;
  left: 10%;
  width: 80%;
  height: 0.1px;
  background: floralwhite;
  transition: 0.5s;
  overflow: hidden;
  opacity: 0.9;

  padding: 3px;
  box-sizing: border-box;
}

.popular-box .content h3 {
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-weight: 400;
}

.popular-box .content p {
  margin: 6px 0 0;
  padding: 0;
  opacity: 0;
  font-size: 14px;
  line-height: 1.1em;
  transition: 0.5s;
  text-align: justify;
}

.offer-includes {
  margin: 0;
  padding: 0;
}

.offer-list {
  margin: 7px 5px;
  padding: 0;
}

.offer-list li {
  font-size: 13px;
  margin: 0;
}

@media screen and (min-width: 600px) {
  .popular-box:hover .imgBx img {
    opacity: 0;
  }

  .popular-box:hover .content {
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
  }

  .popular-box:hover .content p {
    opacity: 1;
    transition-delay: 0.5s;
  }

  .destinations {
    margin-bottom: 200px;
  }
}

.popular-links {
  padding: 5px;
  color: #fff;
}

.popular-links a {
  text-decoration: none;
}

.popular-links div {
  margin: 20px 0;
}

.pop_more {
  color: #00bbf0;
}

.pop-calls,
.pop-wapp {
  padding: 4px 14px;
  border: 1px solid goldenrod;
  border-radius: 15px;
  color: goldenrod;
}

.pop-wapp {
  border: 1px solid #075e54;
  color: #075e54;
}

.featured-experiences {
  margin-bottom: 190px;
}

.packages-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 240px;
}

.packages-container a {
  text-decoration: none;
}

.deal-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-content: flex-end;
  background: #353535;
  color: #f7f7f7;
  height: 100%;
  width: 100%;
  transition: all 500ms;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.deal-title {
  font-size: 2rem;
  margin: 7px;
}

.deal-subs {
  font-size: 14px;
  color: #ccc;
  font-weight: bolder;
  margin: 0 7px;
}

.deal-tag {
  margin: 0 7px;
  font-size: 1.4rem;
  padding: 6px;
  background: #00bbf0;
  max-width: 150px;
}

.testimonials {
  width: 90%;
  margin: 120px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.testimonial-text {
  max-width: 600px;
  margin: auto;
  text-align: center;
  padding: 30px;
}

.testimonial {
  display: none;
}

.testimonial.starred {
  display: block;
  animation: testi 1s ease;
}

@keyframes testi {
  0% {
    opacity: 0;
    transform: translateX(-15px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

.testimonial-text p {
  font-size: 18px;
  color: #000;
  word-spacing: 2px;
}

.client-name {
  font-weight: bold;
  color: #00bbf0;
  font-size: 18px;
  margin: 30px 0 10px;
}

.client-info span {
  display: block;
  font-size: 16px;
  color: #000;
}

.client_dp {
  text-align: center;
  padding-top: 30px;
}

.client_dp img {
  max-height: 80px;
  max-width: 80px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 8px;
  background: blue;
  opacity: 0.2;
  border: 4px solid #00bbf0;
  cursor: pointer;
  transition: opacity 1s ease;
}

.client_dp img.starred {
  opacity: 1;
}

.country-columns {
  width: 90%;
  margin: auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.country-img {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-auto-rows: 220px;
}

.city-pic {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-content: flex-end;
  background: #353535;
  color: #fff;
  height: 100%;
  width: 100%;
  transition: all 500ms;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.city-pichead,
.city_price {
  margin: 0 7px;
}

.city_price span {
  color: goldenrod;
  font-weight: bold;
}

.country-details p {
  line-height: 24px;
  padding: 7px;
}

.country-head,
.country-subhead {
  font-weight: 200;
}

.package-list {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
 
}

.packlist {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 15px;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.packlist-link {
  text-decoration: none;
  color: grey;
  margin: 4px 0;
}

.packlist-link:hover {
  text-decoration: underline;
}

.packlist-button {
  display: inline-block;
  margin: 30px 0;
  padding: 10px 30px;
  background-color: goldenrod;
  text-decoration: none;
  color: #ffffff;
  border-radius: 16px;
}

.newsletter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url(../img/background/area12.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 450px;
  color: white;
}

.newsletter-content,
#newsletter_form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.newsletter-head {
  margin: 0;
  font-size: 2rem;
  font-weight: 200;
}

.newsletter-text {
  font-size: 1.2rem;
  text-align: center;
  font-weight: 400;
}

.newsform-group input {
  margin: 10px 0;
  width: 100%;
  border-radius: 13px;
  font-size: 1.3rem;
  padding: 5px;
}

.news-button {
  margin: 0 auto;
  color: #fff;
  font-size: 1rem;
  border-radius: 17px;
  background: goldenrod;
  padding: 5px 13px;
  cursor: pointer;
}

.page-intro,
.expepage-intro div,
.contactpage-intro {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url(../img/background/aboutbg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 2.4rem;
  font-weight: 200;
}

.contactpage-intro {
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url(../img/background/conbg.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.about-container {
  padding: 10px;
}

.abtus-head {
  font-weight: 400;
}

.abtus-offers {
  margin-bottom: 90px;
}

.abtus-offers li {
  list-style: none;
  font-size: 15px;
  margin: 18px;
}

.abtus-details p {
  line-height: 1.7rem;
}

.company-mission span {
  color: #00bbf0;
  font-weight: 400;
}

.founder-pic {
  width: 320px;
  margin: 0 auto;
}

.founder-pic img {
  width: 100%;
  height: 100%;
}

.abt-founder {
  text-align: center;
}

@media screen and (min-width: 550px) {
  .about-container {
    display: grid;
    grid-template-columns: 2fr 4fr;
    margin-bottom: 120px;
    grid-template-rows: 1200px;
    padding: 0;
  }

  .abtus-services {
    background: #00bbf0;
    text-align: end;
    color: #fff;
    padding: 50px 50px 0 0;
  }

  .abtus-details {
    padding: 50px;
  }

  .founder-pic {
    width: 500px;
  }

  .contact-container {
    padding: 0 120px;
  }

  .visitor-name {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    grid-auto-rows: 180px;
  }

  .contact-cells {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-auto-rows: 180px;
  }
}

.contact-container {
  width: 90%;
  margin: auto;
}

.cont-body {
  margin: 70px 0;
}

.cont-head {
  font-weight: 400;
}

.form-group input,
.form-group textarea {
  width: 100%;
  margin: 20px 0;
  padding: 13px;
  font-size: 15px;
  border: none;
  border-bottom: 1px solid goldenrod;
}

.hidden-field {
  display: none;
}

.cont-button {
  padding: 7px 20px;
  margin: 16px;
  border-radius: 16px;
  color: #fff;
  background: goldenrod;
  border: none;
  cursor: pointer;
  font-size: 18px;
}

.cont-call h3 {
  font-weight: lighter;
  font-size: 18px;
}

.cont-info {
  margin-bottom: 40px;
}

.contact-cells a {
  text-decoration: none;
  color: gray;
  margin: 17px;
}

.destpage-container {
  width: 90%;
  margin: 80px auto;
}

.destpage-content1,
.destpage-content2,
.destpage-content3 {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  grid-auto-rows: 320px;
  margin: 35px 15px;
}

.destpage-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (min-width: 760px) {
  .destpage-container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    padding: 30px;
  }
}

#destpage-form {
  width: 100%;
  background: #00bbf0;
  box-shadow: rgba(3, 8, 20, 0.1) 0px 0.15rem 0.5rem,
    rgba(2, 8, 20, 0.1) 0px 0.075rem 0.175rem;
}

.hidden {
  padding: 0;
  margin: 0;
  display: none;
}
.destform-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  color: floralwhite;
  padding: 15px;
}

.destform-group input {
  width: 100%;
  padding: 5px 15px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #000;
  margin: 15px 0;
}

.dest-button {
  padding: 10px;
  color: #fff;
  background: goldenrod;
  border: none;
  border-radius: 18px;
}

.kids-box input {
  width: 18px;
  height: 17px;
  margin: 13px;
}

#formstatus {
 text-align: center;
 padding: 5px;
}


#formstatus.form-success {
  background-color: rgb(211, 250, 153);
  animation: formStatus 6s ease forwards;
}

#formstatus.form-error {
  background-color: rgb(250, 129, 92);
  animation: formStatus 6s ease forwards;
}

@keyframes formStatus {
   0% {
	opacity: 1;
	pointer-events: all;
  }
  90% {
	opacity: 1;
	pointer-events: all;
  }
  100% {
	opacity: 0;
	pointer-events: none;
  }
}

.kids-box input:hover,
.category-box input:hover {
  cursor: pointer;
}

.destbasis {
  margin: 0;
  text-align: center;
  font-size: 14px;
  color: goldenrod;
  font-weight: 600;
}

.desttags-heads {
  text-align: center;
  font-size: 16px;
  margin: 15px 0;
}

.destprice-tag {
  margin-bottom: 60px;
}

.desttag-col div {
  margin: 0 20px;
  font-size: 15px;
  color: rgb(77, 72, 72);
}

.desttag-col {
  padding: 5px;
}

.desttag-col p {
  padding: 0px;
  margin: 0px;
}

.category-span {
  color: orangered;
  font-size: 14px;
  text-align: center;
}

.footer {
  background: #0e293c;
  min-height: 500px;
}

.footer p {
  text-align: center;
  color: #ccc;
  margin: 5px;
}

.last-remarks {
  padding: 10px 35px;
  font-size: 14px;
}

.footer-head {
  font-weight: lighter;
  letter-spacing: 2px;
  font-size: 18px;
}

.social-links i,
.footstamp,
.footer-address i {
  color: goldenrod;
}

.social-links .fab,
.footer-address .fas,
.footer-address .far {
  font-size: 22px;
  padding: 12px;
}

.social-links a {
  text-decoration: none;
}

.bottom-links div,
.footer-address div {
  margin: 10px;
}

.bottom-links a,
.footer-address a {
  text-decoration: none;
  color: #ccc;
  letter-spacing: 1px;
  font-size: 14px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  grid-auto-rows: 340px;
}

.footer-tags {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  height: 100%;
  width: 100%;
  transition: all 500ms;
  overflow: hidden;
}
