@import url("https://fonts.googleapis.com/css2?family=Poppins&amp;display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

section .container .section-header {
  margin-bottom: 50px;
  text-align: center;
}
section .container .section-header h2 {
  font-size: 35px;
  font-weight: 700;
}
section .container .section-header h2::after {
  content: " ";
  display: block;
  width: 60px;
  height: 5px;
  background-color: #23A9AF;
  margin: 5px auto;
}
section .container .section-footer {
  text-align: center;
  margin-top: 50px;
}
section .container .section-footer .btn {
  color: #ffffff;
  background: #3FD0D4;
  transition: 0.5s ease;
  padding: 13px 60px;
  border-radius: 50px;
}
section .container .section-footer .btn:hover {
  background: #23A9AF;
}

#header {
  background: #ffffff;
}
#header .navbar .navbar-brand .img-fluid {
  width: 130px;
}
#header .navbar .navbar-brand h1 {
  font-size: 40px;
  font-weight: 700;
}
#header .navbar .menu-top-menu-container {
  margin-left: auto;
}
#header .navbar .menu-top-menu-container #menu-top-menu > li > a {
  font-size: 17px;
  margin-left: 25px;
  padding: 0;
  font-weight: 600;
  color: #000000;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-bottom: 2px solid #ffffff;
  transition: 0.3s ease;
}
#header .navbar .menu-top-menu-container #menu-top-menu > li > .sub-menu {
  position: absolute;
  background: #ffffff;
  box-shadow: 1px 5px 15px #868686;
  z-index: 99;
  border-radius: 5px;
  list-style: none;
  min-width: 200px;
  height: auto;
  overflow: hidden;
  padding: 10px;
  display: none;
}
#header .navbar .menu-top-menu-container #menu-top-menu > li > .sub-menu > li a {
  color: #000000;
  padding: 5px;
  border-radius: 5px;
  transition: 0.3s ease;
  display: flex;
  text-decoration: none;
}
#header .navbar .menu-top-menu-container #menu-top-menu > li > .sub-menu > li .active,
#header .navbar .menu-top-menu-container #menu-top-menu > li > .sub-menu > li a:hover {
  background: #3FD0D4;
  color: #ffffff;
}
#header .navbar .menu-top-menu-container #menu-top-menu > li .active,
#header .navbar .menu-top-menu-container #menu-top-menu > li a:hover {
  color: #23A9AF;
  border-bottom: 2px solid #23A9AF;
}
#header .navbar .menu-top-menu-container #menu-top-menu li:hover .sub-menu {
  display: block;
}
#header .navbar .btn {
  font-size: 17px;
  background: #3FD0D4;
  border-radius: 50px;
  color: #ffffff;
  padding: 8px 30px;
  transition: 0.5s ease;
  font-weight: 600;
}
#header .navbar .btn:hover {
  background: #23A9AF;
}
#header .navbar-bottom .menu-bottom-menu-container {
  width: 100%;
}
#header .navbar-bottom .menu-bottom-menu-container #menu-bottom-menu li a {
  font-size: 15px;
  color: #ffffff;
  text-decoration: none;
  transition: 0.5s ease;
}
#header .navbar-bottom .menu-bottom-menu-container #menu-bottom-menu li .sub-menu {
  position: absolute;
  background: #ffffff;
  box-shadow: 1px 5px 15px #868686;
  z-index: 99;
  border-radius: 5px;
  list-style: none;
  min-width: 100px;
  height: auto;
  overflow: hidden;
  padding: 10px;
  display: none;
}
#header .navbar-bottom .menu-bottom-menu-container #menu-bottom-menu li .sub-menu li {
  padding: 3px;
}
#header .navbar-bottom .menu-bottom-menu-container #menu-bottom-menu li .sub-menu li a {
  color: #000000;
  padding: 5px;
  border-radius: 5px;
  transition: 0.3s ease;
  display: flex;
}
#header .navbar-bottom .menu-bottom-menu-container #menu-bottom-menu li .sub-menu li .active,
#header .navbar-bottom .menu-bottom-menu-container #menu-bottom-menu li .sub-menu li a:hover {
  background: #3FD0D4;
  color: #ffffff;
}
#header .navbar-bottom .menu-bottom-menu-container #menu-bottom-menu li .active,
#header .navbar-bottom .menu-bottom-menu-container #menu-bottom-menu li a:hover {
  color: #3FD0D4;
}
#header .navbar-bottom .menu-bottom-menu-container #menu-bottom-menu li:hover .sub-menu {
  display: block;
}
#header .offcanvas .offcanvas-body li {
  margin-top: 10px;
}
#header .offcanvas .offcanvas-body li a {
  font-size: 17px;
  font-weight: 600;
  color: #000000;
  letter-spacing: 0.5px;
  text-decoration: none;
}
#header .offcanvas .offcanvas-body li .active,
#header .offcanvas .offcanvas-body li a:hover {
  color: #23A9AF;
  border-bottom: 2px solid #23A9AF;
}
#header .offcanvas .offcanvas-body .btn {
  font-size: 17px;
  background: #3FD0D4;
  border-radius: 50px;
  color: #ffffff;
  padding: 8px 30px;
  transition: 0.5s ease;
  font-weight: 600;
}
#header .offcanvas .offcanvas-body .btn:hover {
  background: #23A9AF;
}
#header #bookingTourNow {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
#header #bookingTourNow .tourForm {
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
}
#header #bookingTourNow .tourForm .tour-header {
  background: #f2f2f2;
  display: flex;
  padding: 10px 15px;
}
#header #bookingTourNow .tourForm .tour-header h2 {
  font-size: 25px;
  font-weight: 600;
  padding: 0;
}
#header #bookingTourNow .tourForm .tour-header i {
  font-size: 30px;
}
#header #bookingTourNow .tourForm .tour-body .btn {
  font-size: 17px;
  background: #3FD0D4;
  border-radius: 50px;
  color: #ffffff;
  padding: 8px 30px;
  transition: 0.5s ease;
  font-weight: 600;
}
#header #bookingTourNow .tourForm .tour-body .btn:hover {
  background: #23A9AF;
}
@media screen and (max-width: 600px) {
  #header #bookingTourNow {
    padding: 10px;
  }
  #header #bookingTourNow .tourForm .tour-body {
    height: 550px;
    overflow: scroll;
  }
}

#hero .container-fluid .carousel-inner {
  position: relative;
}
#hero .container-fluid .carousel-inner .carousel-item .img-fluid {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#hero .container-fluid .carousel-inner .image-overley {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  padding-top: 80px;
}
#hero .container-fluid .carousel-inner .image-overley h2 {
  font-size: 55px;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 1px 5px 10px #000000;
}
#hero .container-fluid .carousel-inner .image-overley h2::after {
  content: " ";
  animation: textAni 15s linear 1s infinite;
}
@keyframes textAni {
  0% {
    content: " ";
  }
  1% {
    content: "D";
  }
  2% {
    content: "Do";
  }
  3% {
    content: "Do ";
  }
  4% {
    content: "Do D";
  }
  5% {
    content: "Do Dh";
  }
  6% {
    content: "Do Dha";
  }
  7% {
    content: "Do Dham";
  }
  8% {
    content: "Do Dham ";
  }
  9% {
    content: "Do Dham Y";
  }
  10% {
    content: "Do Dham Ya";
  }
  11% {
    content: "Do Dham Yat";
  }
  12% {
    content: "Do Dham Yatr";
  }
  13% {
    content: "Do Dham Yatra";
  }
  16% {
    content: "Do Dham Yatra";
  }
  17% {
    content: "Do Dham Yatr";
  }
  18% {
    content: "Do Dham Yat";
  }
  19% {
    content: "Do Dham Ya";
  }
  20% {
    content: "Do Dham Y";
  }
  21% {
    content: "Do Dham ";
  }
  22% {
    content: "Do Dham";
  }
  23% {
    content: "Do Dha";
  }
  24% {
    content: "Do Dh";
  }
  25% {
    content: "Do D";
  }
  26% {
    content: "Do ";
  }
  27% {
    content: "Do";
  }
  28% {
    content: "D";
  }
  29% {
    content: " ";
  }
  30% {
    content: "C";
  }
  31% {
    content: "Ch";
  }
  32% {
    content: "Cha";
  }
  33% {
    content: "Char";
  }
  34% {
    content: "Char ";
  }
  35% {
    content: "Char D";
  }
  36% {
    content: "Char Dh";
  }
  37% {
    content: "Char Dha";
  }
  38% {
    content: "Char Dham";
  }
  39% {
    content: "Char Dham ";
  }
  40% {
    content: "Char Dham Y";
  }
  41% {
    content: "Char Dham Ya";
  }
  42% {
    content: "Char Dham Yat";
  }
  43% {
    content: "Char Dham Yatr";
  }
  44% {
    content: "Char Dham Yatra";
  }
  47% {
    content: "Char Dham Yatra";
  }
  48% {
    content: "Char Dham Yatr";
  }
  49% {
    content: "Char Dham Yat";
  }
  50% {
    content: "Char Dham Ya";
  }
  51% {
    content: "Char Dham Y";
  }
  52% {
    content: "Char Dham ";
  }
  53% {
    content: "Char Dha";
  }
  54% {
    content: "Char Dh";
  }
  55% {
    content: "Char D";
  }
  56% {
    content: "Char ";
  }
  57% {
    content: "Char";
  }
  58% {
    content: "Cha";
  }
  59% {
    content: "Ch";
  }
  60% {
    content: "C";
  }
  61% {
    content: " ";
  }
  62% {
    content: "H";
  }
  63% {
    content: "Ha";
  }
  64% {
    content: "Har";
  }
  65% {
    content: "Hari";
  }
  66% {
    content: "Harid";
  }
  67% {
    content: "Haridw";
  }
  68% {
    content: "Haridwa";
  }
  69% {
    content: "Haridwar";
  }
  72% {
    content: "Haridwar";
  }
  73% {
    content: "Haridwa";
  }
  74% {
    content: "Haridw";
  }
  75% {
    content: "Harid";
  }
  76% {
    content: "Hari";
  }
  77% {
    content: "Har";
  }
  78% {
    content: "Ha";
  }
  79% {
    content: "H";
  }
  80% {
    content: " ";
  }
  81% {
    content: "R";
  }
  82% {
    content: "Ri";
  }
  83% {
    content: "Ris";
  }
  84% {
    content: "Rish";
  }
  85% {
    content: "Rishi";
  }
  86% {
    content: "Rishik";
  }
  87% {
    content: "Rishike";
  }
  88% {
    content: "Rishikes";
  }
  89% {
    content: "Rishikesh";
  }
  92% {
    content: "Rishikesh";
  }
  93% {
    content: "Rishikes";
  }
  94% {
    content: "Rishike";
  }
  95% {
    content: "Rishik";
  }
  96% {
    content: "Rishi";
  }
  97% {
    content: "Rish";
  }
  98% {
    content: "Ris";
  }
  99% {
    content: "Ri";
  }
  100% {
    content: "R";
  }
}
#hero .container-fluid .carousel-inner .image-overley strong {
  font-size: 30px;
  color: #ffffff;
  text-shadow: 1px 5px 10px #000000;
}
#hero .container-fluid .carousel-inner .image-overley .hstack {
  margin-top: 40px;
}
#hero .container-fluid .carousel-inner .image-overley .hstack .image {
  border-radius: 100%;
  overflow: hidden;
  padding: 5px;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#hero .container-fluid .carousel-inner .image-overley .hstack .image .img-fluid {
  width: 110px;
  height: 110px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 100%;
}
#hero .container-fluid .carousel-control-prev,
#hero .container-fluid .carousel-control-next {
  width: 5%;
}
@media screen and (max-width: 600px) {
  #hero .container-fluid .carousel-inner {
    position: relative;
  }
  #hero .container-fluid .carousel-inner .carousel-item .img-fluid {
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  #hero .container-fluid .carousel-inner .image-overley {
    padding-top: 80px;
  }
  #hero .container-fluid .carousel-inner .image-overley h2 {
    font-size: 38px;
    font-weight: 600;
    height: 85px !important;
  }
  #hero .container-fluid .carousel-inner .image-overley strong {
    font-size: 20px;
  }
  #hero .container-fluid .carousel-inner .image-overley .hstack {
    margin-top: 40px;
  }
  #hero .container-fluid .carousel-inner .image-overley .hstack .image {
    border-radius: 100%;
    overflow: hidden;
    padding: 2px;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
  #hero .container-fluid .carousel-inner .image-overley .hstack .image .img-fluid {
    width: 50px;
    height: 50px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    border-radius: 100%;
  }
  #hero .container-fluid .carousel-control-prev,
  #hero .container-fluid .carousel-control-next {
    width: 5%;
  }
}
@media screen and (max-width: 992px) {
  #hero .container-fluid .carousel-inner .image-overley {
    padding-top: 60px;
  }
  #hero .container-fluid .carousel-inner .image-overley h2 {
    height: 135px;
  }
}

#booking .container .booking-form {
  position: relative;
  top: -60px;
  border-radius: 5px;
  padding: 30px;
  z-index: 1;
}
#booking .container .booking-form .btn {
  background: #3FD0D4;
  color: #ffffff;
  font-weight: 700;
  transition: 0.5s ease;
}
#booking .container .booking-form .btn:hover {
  background: #23A9AF;
}
@media screen and (max-width: 600px) {
  #booking .container {
    padding: 0 20px;
  }
  #booking .container .booking-form {
    top: -60px;
  }
}

#about .container {
  padding-bottom: 70px;
}
#about .container .section-header h2 {
  font-size: 50px;
  margin-bottom: 40px;
}
#about .container .section-header h2::after {
  width: 150px;
}
#about .container .row .col {
  text-align: center;
}
#about .container .row .col .image i {
  font-size: 40px;
  color: #23A9AF;
}
#about .container .row .col h3 {
  font-size: 22px;
  margin-top: 10px;
}
@media screen and (max-width: 600px) {
  #about .container {
    padding: 0 20px 40px 20px;
  }
  #about .container .section-header h2 {
    font-size: 35px;
    margin-bottom: 40px;
  }
  #about .container .row .col {
    text-align: center;
  }
  #about .container .row .col .image i {
    font-size: 40px;
    color: #23A9AF;
  }
  #about .container .row .col h3 {
    font-size: 22px;
    margin-top: 10px;
  }
}

#package {
  background: #f2f2f2;
}
#package .container-fluid {
  padding: 70px 0;
}
#package .container-fluid .section-header {
  margin-bottom: 40px;
  text-align: center;
}
#package .container-fluid .section-header h2 {
  font-size: 35px;
  font-weight: 700;
}
#package .container-fluid .section-header h2::after {
  content: " ";
  display: block;
  width: 100px;
  height: 5px;
  background-color: #23A9AF;
  margin: 5px auto;
}
#package .container-fluid .swiper {
  padding: 20px;
  height: 450px;
  padding: 20px 100px;
}
#package .container-fluid .swiper .card {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: 0;
  height: 90%;
  overflow: hidden;
}
#package .container-fluid .swiper .card .card-image .img-fluid {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
#package .container-fluid .swiper .card .card-body {
  text-align: center;
  padding: 10px;
}
#package .container-fluid .swiper .card .card-body h3 {
  font-size: 22px;
  font-weight: 600;
}
#package .container-fluid .swiper .card .card-body p {
  font-size: 15px;
}
#package .container-fluid .swiper .card .card-body strong {
  font-size: 20px;
}
#package .container-fluid .swiper .card .card-body strong del {
  font-size: 17px;
}
#package .container-fluid .swiper .swiper-pagination {
  margin-top: 60px;
}
@media screen and (max-width: 600px) {
  #package .container-fluid {
    padding: 40px 0;
  }
  #package .container-fluid .section-header {
    margin-bottom: 30px;
    text-align: center;
  }
  #package .container-fluid .section-header h2 {
    font-size: 35px;
    font-weight: 700;
  }
  #package .container-fluid .section-header h2::after {
    content: " ";
    display: block;
    width: 100px;
    height: 5px;
    background-color: #23A9AF;
    margin: 5px auto;
  }
  #package .container-fluid .swiper {
    padding: 20px;
    height: 440px;
    padding: 20px;
  }
  #package .container-fluid .swiper .card {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 0;
  }
  #package .container-fluid .swiper .card .card-image .img-fluid {
    width: 100%;
    height: 180px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
  #package .container-fluid .swiper .card .card-body {
    text-align: center;
    padding: 10px;
  }
  #package .container-fluid .swiper .card .card-body h3 {
    font-size: 22px;
    font-weight: 600;
  }
  #package .container-fluid .swiper .card .card-body p {
    font-size: 15px;
  }
  #package .container-fluid .swiper .card .card-body strong {
    font-size: 20px;
  }
  #package .container-fluid .swiper .card .card-body strong del {
    font-size: 17px;
  }
  #package .container-fluid .swiper .swiper-pagination {
    margin-top: 60px;
  }
}

#taxi .container-fluid .row .col:first-child .img-fluid {
  width: 100%;
  height: 550px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#taxi .container-fluid .row .col:last-child {
  padding: 0 80px;
  align-self: center;
  text-align: center;
}
#taxi .container-fluid .row .col:last-child h2 {
  font-size: 40px;
  font-weight: 700;
}
#taxi .container-fluid .row .col:last-child h2::after {
  content: " ";
  display: block;
  width: 200px;
  height: 5px;
  background-color: #23A9AF;
  margin: 5px auto;
}
#taxi .container-fluid .row .col:last-child p {
  font-size: 18px;
  margin: 30px 0;
}
#taxi .container-fluid .row .col:last-child .btn {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  background: #3FD0D4;
  transition: 0.5s ease;
  border-radius: 50px;
  padding: 13px 60px;
}
#taxi .container-fluid .row .col:last-child .btn:hover {
  background: #23A9AF;
}
@media screen and (max-width: 600px) {
  #taxi .container-fluid {
    padding-bottom: 40px;
  }
  #taxi .container-fluid .row .col:first-child .img-fluid {
    width: 100%;
    height: 350px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  #taxi .container-fluid .row .col:last-child {
    padding: 20px;
  }
  #taxi .container-fluid .row .col:last-child h2 {
    font-size: 40px;
    font-weight: 700;
  }
  #taxi .container-fluid .row .col:last-child p {
    font-size: 18px;
    margin: 30px 0;
  }
  #taxi .container-fluid .row .col:last-child .btn {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    background: #3FD0D4;
    transition: 0.5s ease;
    border-radius: 50px;
    padding: 13px 60px;
  }
  #taxi .container-fluid .row .col:last-child .btn:hover {
    background: #23A9AF;
  }
}
@media screen and (max-width: 992px) {
  #taxi .container-fluid .row .col:last-child {
    padding-bottom: 40px;
  }
}

#image-home {
  width: 100%;
  height: 500px;
  background: url("../webp/collage-image.webp") no-repeat fixed center center;
  background-size: cover;
}
#image-home .container-fluid {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.3);
}
#image-home .container-fluid .image-overlay h2 {
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 5px 10px 30px rgba(0, 0, 0, 0.4);
}
#image-home .container-fluid .image-overlay p {
  font-size: 20px;
  margin-bottom: 40px;
  text-shadow: 5px 10px 30px rgba(0, 0, 0, 0.4);
}
#image-home .container-fluid .image-overlay .btn {
  background: #ffffff;
  padding: 13px 65px;
  font-size: 18px;
  border-radius: 50px;
  color: #212121;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: 4s ease;
}
#image-home .container-fluid .image-overlay .fa-arrow-right {
  display: none;
}
#image-home .container-fluid .image-overlay .btn:hover .fa-arrow-right {
  display: inline;
}

@media screen and (max-width: 600px) {
  #image-home {
    height: 600px;
  }
  #image-home .container-fluid .image-overlay h2 {
    font-size: 35px;
  }
}
#testimonials {
  background: #f2f2f2;
}
#testimonials .container-fluid {
  padding: 70px 0;
}
#testimonials .container-fluid .section-header {
  margin-bottom: 30px;
  text-align: center;
}
#testimonials .container-fluid .section-header h2 {
  font-size: 35px;
  font-weight: 700;
}
#testimonials .container-fluid .section-header h2::after {
  content: " ";
  display: block;
  width: 100px;
  height: 5px;
  background-color: #23A9AF;
  margin: 5px auto;
}
#testimonials .container-fluid .swiper {
  width: 100%;
  height: 340px;
  padding: 30px 100px;
}
#testimonials .container-fluid .swiper .swiper-slide .card {
  padding: 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: 0;
}
#testimonials .container-fluid .swiper .swiper-slide .card .col-lg-4 {
  align-self: center;
}
#testimonials .container-fluid .swiper .swiper-slide .card .col-lg-4 .img-fluid {
  width: 140px;
}
#testimonials .container-fluid .swiper .swiper-slide .card .col-lg-8 h3 {
  font-size: 28px;
  margin-bottom: 10px;
}
#testimonials .container-fluid .swiper .swiper-slide .card .col-lg-8 i {
  font-size: 19px;
  margin-right: 2px;
  margin-bottom: 15px;
}
@media screen and (max-width: 600px) {
  #testimonials .container-fluid {
    padding: 40px 0;
  }
  #testimonials .container-fluid .section-header {
    margin-bottom: 30px;
    text-align: center;
  }
  #testimonials .container-fluid .section-header h2 {
    font-size: 35px;
    font-weight: 700;
  }
  #testimonials .container-fluid .section-header h2::after {
    content: " ";
    display: block;
    width: 100px;
    height: 5px;
    background-color: #23A9AF;
    margin: 5px auto;
  }
  #testimonials .container-fluid .swiper {
    width: 100%;
    height: 450px;
    padding: 20px;
  }
  #testimonials .container-fluid .swiper .swiper-slide .card {
    padding: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 0;
    height: 93%;
    text-align: center;
  }
  #testimonials .container-fluid .swiper .swiper-slide .card .col-lg-4 {
    align-self: center;
  }
  #testimonials .container-fluid .swiper .swiper-slide .card .col-lg-4 .img-fluid {
    width: 140px;
  }
  #testimonials .container-fluid .swiper .swiper-slide .card .col-lg-8 h3 {
    font-size: 28px;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  #testimonials .container-fluid .swiper .swiper-slide .card .col-lg-8 i {
    font-size: 19px;
    margin-right: 2px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 992px) {
  #testimonials .container-fluid .swiper {
    height: 450px;
  }
  #testimonials .container-fluid .swiper .swiper-slide .card {
    height: 90%;
  }
}

#blog .container {
  padding: 70px 0;
}
#blog .container .row .card .card-image .img-fluid {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
#blog .container .row .card .card-body h3 {
  font-size: 22px;
}
#blog .container .row .card .card-body .btn {
  color: #ffffff;
  background: #3FD0D4;
  transition: 0.5s ease;
  border-radius: 50px;
  padding: 8px 20px;
}
#blog .container .row .card .card-body .btn:hover {
  background: #23A9AF;
}
@media screen and (max-width: 600px) {
  #blog .container {
    padding: 40px 20px !important;
  }
  #blog .container .row .card .card-image .img-fluid {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
  #blog .container .row .card .card-body h3 {
    font-size: 22px;
  }
  #blog .container .row .card .card-body .btn {
    color: #ffffff;
    background: #3FD0D4;
    transition: 0.5s ease;
    border-radius: 50px;
    padding: 8px 20px;
  }
  #blog .container .row .card .card-body .btn:hover {
    background: #23A9AF;
  }
}

#contact {
  background: #f2f2f2;
}
#contact .container {
  padding: 70px 0;
}
#contact .container .row {
  border-radius: 5px;
  overflow: hidden;
  background: #ffffff;
}
#contact .container .row .btn {
  color: #ffffff;
  background: #3FD0D4;
  transition: 0.5s ease;
  border-radius: 50px;
  padding: 8px 20px;
}
#contact .container .row .btn:hover {
  background: #23A9AF;
}
@media screen and (max-width: 600px) {
  #contact .container {
    padding: 40px 20px;
  }
  #contact .container .row {
    border-radius: 5px;
    overflow: hidden;
    background: #ffffff;
  }
  #contact .container .row .btn {
    color: #ffffff;
    background: #3FD0D4;
    transition: 0.5s ease;
    border-radius: 50px;
    padding: 8px 20px;
  }
  #contact .container .row .btn:hover {
    background: #23A9AF;
  }
}

#footer {
  background: #212121;
}
#footer .container {
  padding: 60px 0;
  color: #A9A9A9;
}
#footer .container .row:first-child .col .img-fluid {
  width: 60px;
  margin-bottom: 10px;
  border-radius: 50px;
}
#footer .container .row:first-child .col > strong {
  font-size: 18px;
}
#footer .container .row:first-child .col ul {
  margin-top: 15px;
}
#footer .container .row:first-child .col ul li {
  margin-bottom: 5px;
}
#footer .container .row:first-child .col ul li .nav-link,
#footer .container .row:first-child .col ul li a {
  padding: 0;
  color: #ffffff;
  text-decoration: none;
}
#footer .container .row:first-child .col ul li .nav-link:hover,
#footer .container .row:first-child .col ul li a:hover {
  color: #3FD0D4;
}
#footer .container .row:first-child .col .vstack p {
  color: #ffffff;
}
@media screen and (max-width: 600px) {
  #footer .container {
    padding: 40px 20px;
    color: #A9A9A9;
  }
  #footer .container .row:first-child .col .img-fluid {
    width: 60px;
    margin-bottom: 10px;
    border-radius: 50px;
  }
  #footer .container .row:first-child .col > strong {
    font-size: 18px;
  }
  #footer .container .row:first-child .col .nav {
    margin-top: 15px;
  }
  #footer .container .row:first-child .col .nav .nav-link {
    padding: 0;
    margin-bottom: 5px;
    color: #ffffff;
  }
  #footer .container .row:first-child .col .nav .nav-link:hover {
    color: #3FD0D4;
  }
  #footer .container .row:first-child .col .vstack p {
    color: #ffffff;
  }
}

.socialIcon {
  position: fixed;
  bottom: 20px;
  z-index: 2;
  width: 55px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 50px;
  padding: 0;
}

@media screen and (max-width: 600px) {
  .socialIcon {
    bottom: 10px;
    width: 55px;
  }
}
.whatsappBox {
  left: 20px;
}

@media screen and (max-width: 600px) {
  .whatsappBox {
    left: 10px;
  }
}
.callBox {
  right: 20px;
}

@media screen and (max-width: 600px) {
  .callBox {
    right: 10px;
  }
}
#bottomToTopScroll {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 40px;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 50px;
  padding: 0;
}

@media screen and (max-width: 600px) {
  #bottomToTopScroll {
    position: fixed;
    bottom: 70px;
    right: 10px;
    width: 40px;
    z-index: 2;
  }
}
#message-box {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999999;
  justify-content: center;
  align-items: center;
  display: none;
}
#message-box .message-detail {
  background: #ffffff;
  padding: 60px 30px;
  border-radius: 10px;
  animation: okayAni 0.4s ease;
}
#message-box .message-detail p {
  font-size: 20px;
  margin-top: 10px;
}
#message-box .message-detail .btn {
  background: #23A9AF;
  font-size: 16px;
  padding: 10px 30px;
  color: #ffffff;
  margin-top: 30px;
}
@keyframes okayAni {
  from {
    transform: scale(1);
  }
  from {
    transform: scale(0);
  }
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  display: none;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1977cc;
  border-top-color: #d1e6f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#hero .img-fluid {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

#about-us .container {
  padding: 60px 0;
}
#about-us .container .row .col {
  text-align: center;
}
#about-us .container .row .col .image i {
  font-size: 40px;
  color: #23A9AF;
}
#about-us .container .row .col h3 {
  font-size: 22px;
  margin-top: 10px;
}
@media screen and (max-width: 600px) {
  #about-us .container {
    padding: 40px 20px !important;
  }
}

#contact-us .contact-form .btn {
  color: #ffffff;
  background: #3FD0D4;
  transition: 0.5s ease;
  border-radius: 50px;
  padding: 12px;
}
#contact-us .contact-form .btn:hover {
  background: #23A9AF;
}
#contact-us #head-office {
  text-align: center;
  overflow: hidden;
  border-radius: 5px;
}
#contact-us #head-office .col {
  padding: 40px;
}
#contact-us #head-office .col h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
}
#contact-us #head-office .col .vstack .vstack strong {
  font-size: 20px;
}
#contact-us #head-office .col .vstack .vstack p {
  font-size: 16px;
}

#blog .container {
  padding: 60px 0;
}
#blog .container .row .card .card-image .img-fluid {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
#blog .container .row .card .card-body h3 {
  font-size: 22px;
}
#blog .container .row .card .card-body .btn {
  color: #ffffff;
  background: #3FD0D4;
  transition: 0.5s ease;
  border-radius: 50px;
  padding: 8px 20px;
}
#blog .container .row .card .card-body .btn:hover {
  background: #23A9AF;
}
#blog .container .row .wp-pagenavi {
  text-align: center;
}
#blog .container .row .wp-pagenavi .pages, #blog .container .row .wp-pagenavi .smaller, #blog .container .row .wp-pagenavi .larger, #blog .container .row .wp-pagenavi .nextpostslink, #blog .container .row .wp-pagenavi .previouspostslink {
  padding: 10px 20px;
  background: #f2f2f2;
  color: #000000;
}
#blog .container .row .wp-pagenavi .current {
  padding: 10px 20px;
  background: #23A9AF;
  color: #ffffff;
  border: 0;
}
#blog .container .row .wp-pagenavi a {
  transition: 0.3s ease;
}
#blog .container .row .wp-pagenavi a:hover {
  background: #23A9AF;
  color: #ffffff;
  border: 1px solid #23A9AF;
}

#package .container {
  padding: 60px 0;
}
#package .container .row .card {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: 0;
  height: 100%;
  border: 0;
  overflow: hidden;
}
#package .container .row .card .card-image .img-fluid {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
#package .container .row .card .card-body {
  text-align: center;
  padding: 10px;
}
#package .container .row .card .card-body h3 {
  font-size: 22px;
  font-weight: 600;
}
#package .container .row .card .card-body p {
  font-size: 15px;
}
#package .container .row .card .card-body strong {
  font-size: 20px;
}
#package .container .row .card .card-body strong del {
  font-size: 17px;
}

#hero .wp-post-image {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.content-blog .container {
  padding: 60px 0;
}
.content-blog .container .section-header h1 {
  font-size: 40px;
  font-weight: 700;
}
.content-blog .container .section-header h1::after {
  content: " ";
  display: block;
  width: 60px;
  height: 5px;
  background-color: #23A9AF;
  margin: 5px auto;
}
.content-blog .container .row h2 {
  font-size: 35px;
}
.content-blog .container .row h3 {
  font-size: 25px;
  font-weight: 600;
  margin: 20px 0;
}
.content-blog .container .row h4 {
  font-size: 22px;
  font-weight: 600;
  margin: 20px 0;
}
.content-blog .container .row h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 20px 0;
}
.content-blog .container .row p {
  font-size: 16px;
}
.content-blog .container .row .table {
  border: 1px solid #000000;
}
.content-blog .container .row .table thead {
  background: #F2F2F2;
}
.content-blog .container .row #about-box .col {
  text-align: center;
}
.content-blog .container .row #about-box .col .image i {
  font-size: 40px;
  color: #23A9AF;
}
.content-blog .container .row #about-box .col h3 {
  font-size: 22px;
  margin-top: 10px;
}
.content-blog .container .row #bookingNewTourForm2 {
  background: #FF0000;
  padding: 20px 20px 40px 20px;
  height: 100vh;
}
.content-blog .container .row #bookingNewTourForm2 .btn {
  font-size: 17px;
  background: #3FD0D4;
  border-radius: 10px;
  color: #ffffff;
  padding: 10px 30px;
  transition: 0.5s ease;
  font-weight: 600;
}
.content-blog .container .row #bookingNewTourForm2 .btn:hover {
  background: #23A9AF;
}
@media screen and (max-width: 600px) {
  .content-blog .container {
    padding: 20px !important;
  }
}/*# sourceMappingURL=main.css.map */