* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* ....................Navbar 1....................... */

.topNav {
  background-color: #1e2472;
  font-family: Jost;
  font-size: 15px;
  padding: 0.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topNavLeft > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.topNavLeft > ul > li {
  color: #fff;
  list-style: none;
  margin: 0 10px;
}

.topNavLeft > ul > li > a {
  text-decoration: none;
  color: #fff;
}

.topNavRight > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.topNavRight > ul > li {
  color: #fff;
  list-style: none;
  margin: 0 10px;
}

.topNavRight > ul > li > a {
  text-decoration: none;
  color: #fff;
}

@media only screen and (max-width: 1047px) {
  .topNavRight {
    display: none;
  }
}

@media only screen and (max-width: 1200px) {
  #postReviewAndTerms {
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  .topNav {
    padding: 10px;
  }
}

.button1 {
  color: #fff;
  background-color: #f87813;
  border: none;
  border-radius: 0.3rem;
  padding: 0.7rem 1rem;
  text-transform: uppercase;
}

.button1:hover {
  background-color: #eb6600;
}

/* ...................Navbar 2................. */

.topnav2 {
  overflow: hidden;
  background-color: #fff;
  display: flex;
  align-items: center;
}

.topnav2 a {
  font-family: Jost;
  font-size: 15px;
  font-weight: 500;
  /* float: right; */
  display: block;
  color: #4c4c4c;
  /* text-align: center; */
  padding: 10px 16px;
  text-decoration: none;
}

.topnav2 .logo {
  flex: 1;
  display: flex;
  align-items: center;
}
.topnav2 .logo #first-logo {
  height: 60px;
  display: block;
}
.topnav2 .logo #logo-slogan {
  padding-left: 10px;
  height: 60px;
  display: block;
}
/* .topnav2 .logo span {
  font-family: "Kalam", cursive;
  font-weight: 700;
  padding-left: 10px;
  font-size: 26px;
  font-style: italic;
  color: #0a1175;
} */

.topnav2 .icon {
  display: none;
  /* float: right; */
}

.topnav2 .icon:hover {
  background-color: #1e2472;
  color: #139df2;
  border-radius: 8px;
}

.dropdown {
  /* float: right; */
  overflow: hidden;
}

.dropdown .dropbtn {
  font-family: Jost;
  font-size: 15px;
  font-weight: 500;
  border: none;
  outline: none;
  color: #4c4c4c;
  padding: 14px 16px;
  background-color: inherit;
  margin: 0;
}

.dropdown-content {
  border-radius: 6px;
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav2 a:hover,
.dropdown:hover .dropbtn {
  color: #1e2472;
}

.dropdown-content a:hover {
  background-color: #fff;
  color: #1e2472;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 984px) {
  .topnav2 a:not(:first-child),
  .dropdown .dropbtn {
    display: none;
  }
  .topnav2 a.icon {
    /* float: right; */
    display: block;
    margin-right: 10px;
  }

  .topnav2 {
    flex-wrap: wrap;
  }
  .topnav2 .navigation-links,
  .dropdown {
    width: 100%;
  }
}

@media screen and (max-width: 984px) {
  .topnav2.responsive {
    position: relative;
  }

  .topnav2.responsive .icon {
    position: absolute;
    right: 0;
    top: 14px;
  }

  .topnav2 .logo {
    position: relative;
  }

  .topnav2 .logo #logo-slogan {
    height: 50px;
    position: absolute;
    left: 65px;
    top: 14px;
  }

  .topnav2.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav2.responsive .dropdown {
    float: none;
  }
  .topnav2.responsive .dropdown-content {
    position: relative;
  }
  .topnav2.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}

/* ...........................Banner.......................... */

/* Slideshow container */
.slideshow-container {
  background: #1e2472;
  max-width: 100%;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  font-family: Jost;
  color: #f2f2f2;
  font-size: 6vw;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* The dots/bullets/indicators */
.dot {
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #949bff;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #ffffff;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {
    font-size: 11px;
  }
}

.dotSection {
  background: #1e2472;
}

.dotSection div {
  color: #ffffff;
  font-family: Jost;
}

/* ...................Main Content.......................... */
.section1 {
  margin: 0 40px;
}
main .section1 h2 {
  font-family: Jost;
  color: #1e2472;
  font-size: 32px;
  /* line-height: 30px; */
  font-weight: 500;
  text-align: center;
  margin: 40px 0 20px 0;
}

main .section1 hr {
  width: 80%;
  border: 1px solid rgb(220, 220, 220);
  margin: auto;
}

main .section1 p {
  margin: 20px 20px;
  font-family: Jost;
  color: #222;
  text-align: justify;
  line-height: 26px;
}

main .section1 a {
  color: #e74343;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

/* Section 3 */
.section3{
  padding:0 50px;
}
.section3 .wrapper{
  padding: 0 60px;
}
main .section3 h2 {
  font-family: Jost;
  color: #1e2472;
  font-size: 32px;
  /* line-height: 30px; */
  font-weight: 500;
  text-align: center;
  margin: 40px 0 20px 0;
}

main .section3 hr {
  width: 80%;
  border: 1px solid rgb(220, 220, 220);
  margin: auto;
}

main .section3 p {
  margin: 20px 0;
  font-family: Jost;
  color: #222;
  text-align: center;
  line-height: 26px;
}

main .section3 a {
  color: #e74343;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (max-width: 600px) {
  main .section3 h2 {
    margin: 40px 20px;
  }
  main .section3 p {
    margin: 20px 20px;
  }
}

/* Section 5 Booking Info */

.section5 {
  background-color: #f2f2f2;
  padding: 40px 90px;
}

.booking-content {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

.booking-content .booking-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  flex-direction: column;
  background-color: white;
  border: 1px solid #e2dcdc;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  width: 300px;
  height: 150px;
}

@media screen and (max-width: 600px) {
  .section5 .booking-content .booking-info {
    width: 280px;
  }
}

#box1:hover {
  background-image: url(../img/places/Darjeeling.jpg);
  object-fit: cover;
}
#box2:hover {
  background-image: url(../img/places/ladakh.jpg);
  object-fit: cover;
}
#box3:hover {
  background-image: url(../img/places/Kerala.jpg);
  object-fit: cover;
}
#box4:hover {
  background-image: url(../img/places/Bhutan.jpg);
  object-fit: cover;
}

.booking-content .booking-info .desc {
  margin-bottom: 10px;
  font-family: Jost;
  font-size: 24px;
  font-weight: 500;
  color: #f87813;
  text-align: center;
}

.booking-content .booking-info button {
  font-weight: 500;
  width: 110px;
  font-family: Jost;
  background: #f87813;
  color: #fff;
  border: 2px solid #f87813;
  border-radius: 10px;
  padding: 10px;
}

.booking-content .booking-info button:hover {
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid white;
}

@media (max-width: 1320px) {
  .booking-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .booking-content .booking-info {
    width: 450px;
  }
}

/* Section 6 */
main .section6 h2 {
  font-family: Jost;
  color: #1e2472;
  font-size: 32px;
  /* line-height: 30px; */
  font-weight: 500;
  text-align: center;
  margin: 40px 0 20px 0;
}

main .section6 hr {
  width: 80%;
  border: 1px solid rgb(220, 220, 220);
  margin: auto;
}

main .section6 p {
  margin: 20px 0;
  font-family: Jost;
  color: #222;
  text-align: center;
  line-height: 26px;
}

@media screen and (max-width: 600px) {
  main .section6 h2 {
    margin: 40px 20px;
  }
  main .section6 p {
    margin: 20px 20px;
  }
}

main .section6 a {
  color: #e74343;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

main .section6 .packages {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  margin: 40px;
}

.section6card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 420px;
  text-align: center;
  font-family: arial;
  margin: 20px 0;
}

.section6card h3 {
  font-family: arial;
  font-size: 20px;
  font-weight: 500;
}

.section6card img {
  width: 400px;
  object-fit: cover;
}
.section6card img:hover {
  opacity: 0.8;
  transition: all 0.8s linear;
}

.section6card .section6button {
  margin: 20px 20px;
  border: none;
  border-radius: 8px;
  outline: 0;
  padding: 12px;
  color: white;
  background-color: #f87813;
  text-align: center;
  cursor: pointer;
  width: 80%;
  font-family: Jost;
  font-size: 18px;
}

.section6card .section6button:hover {
  background-color: #de6000;
}

.section6card .benifits {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-family: Jost;
  font-size: 12px;
  border: 1px solid #878787;
  border-radius: 5px;
  margin: 0 20px;
  padding: 20px 20px;
}

.section6card .benifits span {
  position: absolute;
  bottom: 13.5px;
  left: -20px;
  rotate: -90deg;
  font-family: Jost;
  font-size: 9px;
  background-color: #7e7e7e;
  color: white;
  font-weight: 400;
  padding: 6px;
  border-radius: 5px 5px 0 0;
}

@media screen and (max-width: 600px) {
  main .section6 .packages {
    margin: 20px;
  }
}

/* Section 7 */
main .section7 {
  background: linear-gradient(to bottom, #44003b, #c900ae);
}

@media screen and (max-width: 600px) {
  main .section7 .section4 {
    margin: 0 10px;
  }
}

main .section7 h2 {
  font-family: Jost;
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  padding: 60px 100px;
}

main .section7 p {
  font-family: Jost;
  color: #fff;
  line-height: 26px;
  text-align: justify;
  padding: 0 100px;
}

main .section7 h3 {
  font-family: Jost;
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  padding: 20px 100px;
}

@media screen and (max-width: 600px) {
  main .section7 h2 {
    text-align: center;
    padding: 60px 20px;
  }
  main .section7 p {
    padding: 0 20px;
  }
  main .section7 h3 {
    text-align: center;
    padding: 20px 20px;
  }
}

/* Section 8 */
main .section8 {
  text-align: center;
  margin-bottom: 40px;
}

main .section8 h2 {
  font-family: Jost;
  color: #1e2472;
  font-size: 32px;
  /* line-height: 30px; */
  font-weight: 500;
  text-align: center;
  margin: 40px 0 20px 0;
}

main .section8 hr {
  width: 80%;
  border: 1px solid rgb(220, 220, 220);
  margin: auto;
}

main .section8 p {
  margin: 20px 100px;
  font-family: Jost;
  color: #222;
  text-align: justify;
  line-height: 26px;
}

@media screen and (max-width: 600px) {
  main .section8 h2 {
    margin: 40px 20px;
  }
  main .section8 p {
    margin: 20px 20px;
  }
}

main .section8 .collapsible {
  background-color: #f2f3ff;
  color: #1e2472;
  cursor: pointer;
  padding: 18px;
  width: 1300px;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  border-radius: 8px;
  margin: 20px;
}

@media screen and (max-width: 600px) {
  main .section8 .collapsible {
    width: 300px;
  }
}

main .section8 .active,
.collapsible:hover {
  background-color: #d3d7ff;
}

main .section8 .collapsibleContent {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #fff;
}

/* Section 9 */
main .section9 {
  background-color: #dedede;
}

main .section9 .section9components h2 {
  font-family: Jost;
  color: #1e2472;
  font-size: 32px;
  font-weight: 500;
  text-align: left;
  padding: 40px 0 20px 0;
  margin: 0 100px;
}

main .section9 .section9components hr {
  border: 1px solid rgb(134, 134, 134);
  margin: 0 100px;
}

@media screen and (max-width: 1400px) {
  main .section9 .section9components h2 {
    margin: 0 40px;
  }
  main .section9 .section9components hr {
    margin: 0 40px;
  }
}

@media screen and (max-width: 600px) {
  main .section9 .section9components h2 {
    margin: 0 30px;
  }
  main .section9 .section9components hr {
    margin: 0 30px;
  }

  main .section9 .section9components .section4 {
    margin: 0 10px;
  }
}

/* Section 10 */
main .section10 {
  background-color: #f2f3ff;
}

main .section10 .section10components {
  padding-bottom: 40px;
}

@media screen and (max-width: 600px) {
  main .section10 .section10components {
    padding-bottom: 20px;
  }
}

main .section10 .section10components h2 {
  font-family: Jost;
  color: #1e2472;
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  padding: 40px 0 0 0;
}

main .section10 .section10components .section10flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

main .section10 .section10components .section10flex .section10flexBox {
  width: 550px;
  height: 150px;
  margin: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

main
  .section10
  .section10components
  .section10flex
  .section10flexBox
  .section10flexBoxes1 {
  height: 100%;
  width: 50%;
}

main
  .section10
  .section10components
  .section10flex
  .section10flexBox
  .section10flexBoxes1
  img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}

main
  .section10
  .section10components
  .section10flex
  .section10flexBox
  .section10flexBoxes2 {
  height: 100%;
  width: 50%;
  padding: 10px;
  position: relative;
  background-color: #fff;
  color: #1e2472;
}

main
  .section10
  .section10components
  .section10flex
  .section10flexBox
  .section10flexBoxes2
  h3 {
  font-family: Jost;
  color: #222;
  font-weight: 500;
  cursor: pointer;
}

main
  .section10
  .section10components
  .section10flex
  .section10flexBox
  .section10flexBoxes2
  h3:hover {
  color: #1e2472;
}

main
  .section10
  .section10components
  .section10flex
  .section10flexBox
  .section10flexBoxes2
  .date {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-family: Jost;
  color: #222;
  font-weight: 400;
  cursor: pointer;
}

main
  .section10
  .section10components
  .section10flex
  .section10flexBox
  .section10flexBoxes2
  .readMore {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-family: Jost;
  color: #222;
  background-color: #dcdcdc;
  font-weight: 400;
  cursor: pointer;
}

main
  .section10
  .section10components
  .section10flex
  .section10flexBox
  .section10flexBoxes2
  .readMore:hover {
  color: #1e2472;
}

@media screen and (max-width: 600px) {
  main .section10 .section10components .section10flex .section10flexBox {
    margin: 20px;
  }
  main
    .section10
    .section10components
    .section10flex
    .section10flexBox
    .section10flexBoxes1 {
    width: 60%;
  }
  main
    .section10
    .section10components
    .section10flex
    .section10flexBox
    .section10flexBoxes2 {
    width: 40%;
  }
  main
    .section10
    .section10components
    .section10flex
    .section10flexBox
    .section10flexBoxes2
    h3 {
    font-size: 13px;
  }
  main
    .section10
    .section10components
    .section10flex
    .section10flexBox
    .section10flexBoxes2
    .date {
    font-size: 12px;
    left: 10px;
    bottom: 30px;
  }
  main
    .section10
    .section10components
    .section10flex
    .section10flexBox
    .section10flexBoxes2
    .readMore {
    font-size: 12px;
    left: 10px;
    bottom: 10px;
  }
}

/* Section 11 */

.section11 {
  background: #032040;
}

.section11 .footerContents {
  padding: 50px 120px 0 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.section11 #footerContent2 {
  padding: 0 120px;
}

.section11 .h3 {
  margin: 0 140px;
  color: #fff;
  font-family: Jost;
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 20px;
  align-items: left;
}

.section11 .hr {
  margin: 0 140px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 600px) {
  .section11 .footerContents {
    padding: 20px;
  }
  .section11 .h3 {
    margin: 0 40px;
  }
  .section11 .hr {
    margin: 0 40px;
  }
  .section11 #footerContent2 {
    padding: 20px;
  }
}

.section11 .footerContents .footerContent {
  width: 380px;
  margin: 20px;
}

.section11 .footerContents .footerContent h3 {
  color: #fff;
  font-family: Jost;
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
  padding-bottom: 10px;
}

.section11 .footerContents .footerContent hr {
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}

.section11 .footerContents .footerContent p,
a {
  text-decoration: none;
  color: #fff;
  font-family: Jost;
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
  padding: 10px 0;
  cursor: pointer;
}

.section11 .footerCredit {
  background-color: #00152c;
  padding: 15px 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.section11 .footerCredit .left {
  float: left;
  color: #fff;
  font-family: Jost;
  font-size: 15px;
  font-weight: 400;
}

.section11 .footerCredit .right {
  float: right;
  color: #fff;
  font-family: Jost;
  font-size: 15px;
  font-weight: 400;
}

@media screen and (max-width: 600px) {
  .section11 .footerCredit {
    justify-content: center;
    padding: 15px 40px;
  }
}

/* Popup Chat Window */
.whatsApp {
  background: linear-gradient(to left, #1bc900 0, #22ff00 100%);
  padding: 30px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  bottom: 24px;
  left: 28px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsApp i {
  color: white;
  font-size: 40px;
}

.whatsApp:before,
.whatsApp:after {
  content: "";
  position: absolute;
  height: 70%;
  width: 70%;
  background: linear-gradient(to left, #1bc900 0, #22ff00 100%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
}
.whatsApp:before {
  animation: whatsApp 2s ease-out infinite;
}
.whatsApp:after {
  animation: whatsApp 2s 1s ease-out infinite;
}
@keyframes whatsApp {
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

@media screen and (max-width: 600px) {
  .whatsApp {
    padding: 30px;
    left: 15px;
    width: 40px;
    height: 40px;
  }

  .whatsApp i {
    font-size: 30px;
  }
}

/* Popup Form */
/* Button used to open the contact form - fixed at the bottom of the page */
.open-button {
  background-color: #00254e;
  color: white;
  padding: 30px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  position: fixed;
  bottom: 124px;
  left: 28px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.open-button i {
  color: white;
  font-size: 35px;
}

.open-button:before,
.open-button:after {
  content: "";
  position: absolute;
  height: 70%;
  width: 70%;
  background: linear-gradient(to left, #00254e 0, #004ea7 100%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
}
.open-button:before {
  animation: open-button 2s ease-out infinite;
}
.open-button:after {
  animation: open-button 2s 1s ease-out infinite;
}
@keyframes open-button {
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

/* The popup form - hidden by default */
.form-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}

/* Add styles to the form container */
.form-container {
  width: 100%;
  height: 90vh;
  overflow-y: scroll;
  padding: 20px;
  background-color: #f0f8ff;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 0 2000px #000000b3;
}

@media screen and (max-width: 600px) {
  .open-button {
    padding: 30px;
    left: 15px;
    width: 40px;
    height: 40px;
  }

  .open-button i {
    font-size: 26px;
  }

  .form-container {
    width: 90vw;
  }
}

::-webkit-scrollbar {
  display: none;
}

.form-container h1 {
  color: #1e2472;
  font-family: Jost;
  font-size: 28px;
  font-weight: normal;
  text-align: center;
}
.form-container p {
  color: #222;
  font-family: Jost;
  font-size: 15px;
  text-align: center;
}

/* Full-width input fields */
.form-container input[type="text"],
.form-container input[type="password"],
.form-container input[type="number"],
.form-container input[type="email"],
.form-container input[type="datetime-local"],
.form-container textarea[type="text"],
.form-container select {
  cursor: pointer;
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  border: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
  font-family: Jost;
  color: #676767;
}

/* When the inputs get focus, do something */
.form-container input[type="text"]:focus,
.form-container input[type="password"]:focus,
.form-container input[type="number"]:focus,
.form-container input[type="email"]:focus,
.form-container textarea[type="text"]:focus,
/* .form-container input[type="datetime-local"], */
.form-container select:focus {
  outline: 1px solid #1e2472;
}

/* Set a style for the submit/login button */
.form-container .btn {
  font-family: Jost;
  font-size: 15px;
  background-color: #1e2472;
  color: #fff;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom: 10px;
  opacity: 0.8;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: red;
}

/* Add some hover effects to buttons */
.form-container .btn:hover,
.open-button:hover {
  opacity: 1;
}
