:root {
  --primary-color: #FE6700;
}

.home-banner {
  width: 100%;
  min-height: 900px;
  height: 100vh;
  position: relative;
  background-image: url(../../images/home-banner.jpg);
  background-size: cover;
  background-position: top;
  overflow: hidden;

  animation: fadeImage 1s ease-in-out;
}

@-webkit-keyframes fadeImage {
  0% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;

  }
}

@keyframes fadeImage {
  0% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;

  }
}


.home-banner::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 30%;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}

@media screen and (min-width: 1200px) {
  .home-banner {
    margin-bottom: 8.4375rem;
    overflow: visible;
    height: 900px;
    background-position: top;
  }
}

@media screen and (min-width: 1600px) {
  .home-banner {
    height: 1100px;
    margin-bottom: 10rem;
  }
}

@media screen and (max-width: 1199px) {
  .home-banner {
    background-image: url(../../images/home-banner-sm.jpg);
    background-position: 53% 0;
  }
}

@media screen and (max-width: 575px) {
  .home-banner {
    background-image: url(../../images/home-banner-sm.jpg);
    background-position: 53% 0;
  }
}

.home-banner::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -170px;
  width: 100%;
  height: 317px;
  background-image: url(../../images/banner-bottom.png);
  background-size: cover;
  background-position: center;
  z-index: 2;
}

@media screen and (min-width: 1600px) {
  .home-banner::before {
    bottom: -210px;
    height: 387px;
  }
}

@media screen and (max-width: 1199px) {
  .home-banner::before {
    display: none;
    background-position: bottom bottom;
  }
}

.home-banner .hero-head {
  position: absolute;
  z-index: 1;
  top: 250px;
  width: 100%;
  left: 0;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .home-banner .hero-head {
    top: 160px;
  }
}

.home-banner .hero-head .title {
  font-size: 4.375rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  line-height: 90px;
}

@media screen and (max-width: 575px) {
  .home-banner .hero-head .title {
    font-size: 40px;
    line-height: 60px;
  }
}

.home-banner .hero-head .title span {
  color: #498611;
  display: inline-block;
  position: relative;
}

.home-banner .hero-head .title span::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: #498611;
}

.home-banner .hero-head p {
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 0;
}

@media screen and (max-width: 575px) {
  .home-banner .hero-head p {
    font-size: 20px;
  }
}

.home-banner .hero-head p span {
  color: #FE6700;
}

.home-banner .hero-head.animate {
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  /* -webkit-transition: all 0.6s ease-in-out; */
  /* transition: all 0.6s ease-in-out; */
  -webkit-transition: all 1.5s ease-in-out;
  transition: all 1.5s ease-in-out;
}

.home-banner .hero-head.over {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.home-banner .floating-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  position: absolute;
  left: 0;
  bottom: -15px;
  gap: 50px;
  width: 100%;
}

@media screen and (min-width: 1600px) {
  .home-banner .floating-text {
    bottom: -10px;
  }
}

.home-banner .floating-text p {
  display: inline-block;
  font-size: 11.25rem;
  font-weight: 600;
  line-height: 165px;
  color: rgba(255, 255, 255, 0.4);
  -webkit-animation: marquee 40s linear infinite;
  animation: marquee 40s linear infinite;
}

@media screen and (min-width: 1600px) {
  .home-banner .floating-text p {
    font-size: 12.5rem;
    line-height: 165px;
  }
}

@media screen and (max-width: 575px) {
  .home-banner .floating-text p {
    font-size: 80px;
    line-height: 90px;
  }
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.home-carry {
  padding-top: 120px;
  padding-bottom: 50px;
  overflow: hidden;
}

@media screen and (min-width: 576px) {
  .home-carry {
    padding-bottom: 70px;
  }
}

@media screen and (min-width: 1200px) {
  .home-carry {
    padding-bottom: 120px;
  }
}

.home-carry .carry-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.home-carry .carry-wrap .image-div {
  width: 100%;
  position: relative;
  padding-bottom: 370px;
}

@media screen and (min-width: 576px) {
  .home-carry .carry-wrap .image-div {
    padding-bottom: 540px;
  }
}

@media screen and (min-width: 992px) {
  .home-carry .carry-wrap .image-div {
    padding-bottom: 550px;
  }
}

@media screen and (min-width: 1200px) {
  .home-carry .carry-wrap .image-div {
    width: 50%;
  }
}

.home-carry .carry-wrap .image-div .figure {
  position: absolute;
  margin-bottom: 0;
  max-width: 60%;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1/1;
}

@media screen and (min-width: 992px) {
  .home-carry .carry-wrap .image-div .figure {
    max-width: 40%;
  }
}

.home-carry .carry-wrap .image-div .figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border: 8px solid #fff;
  border-radius: 30px;
}

@media screen and (min-width: 1200px) {
  .home-carry .carry-wrap .image-div .figure {
    position: absolute;
    max-width: 48%;
  }
}

@media screen and (max-width: 1199px) {
  .home-carry .carry-wrap .image-div .figure-2 {
    left: 27%;
    top: 100px;
  }
}

@media screen and (max-width: 991px) {
  .home-carry .carry-wrap .image-div .figure-2 {
    left: 27%;
    top: 100px;
  }
}

@media screen and (max-width: 575px) {
  .home-carry .carry-wrap .image-div .figure-2 {
    left: 20%;
    top: 100px;
  }
}

@media screen and (max-width: 1199px) {
  .home-carry .carry-wrap .image-div .figure-3 {
    right: 0;
    top: -50px;
  }
}

@media screen and (max-width: 991px) {
  .home-carry .carry-wrap .image-div .figure-3 {
    right: 0;
    top: -50px;
  }
}

@media screen and (min-width: 1200px) {
  .home-carry .carry-wrap .image-div.animate .figure {
    top: 0;
    right: 0;
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }

  .home-carry .carry-wrap .image-div.over .figure {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .home-carry .carry-wrap .image-div.over .figure-3 {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  .home-carry .carry-wrap .image-div.over .figure-1 {
    -webkit-transform: translateX(-330px) translateY(30px);
    transform: translateX(-330px) translateY(30px);
  }

  .home-carry .carry-wrap .image-div.over .figure-2 {
    -webkit-transform: translateX(-170px) translateY(185px);
    transform: translateX(-170px) translateY(185px);
  }
}

.home-carry .carry-wrap .content-div {
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .home-carry .carry-wrap .content-div {
    width: 50%;
    padding-left: 90px;
  }
}

.home-carry .carry-wrap .content-div .title {
  margin-bottom: 25px;
  line-height: 35px;
}

@media screen and (min-width: 1200px) {
  .home-carry .carry-wrap .content-div .title {
    line-height: 45px;
    margin-bottom: 1.875rem;
  }
}

.home-carry .carry-wrap .content-div p {
  font-size: 16px;
  margin-bottom: 0;
  color: #3c3c3c;
  font-weight: 300;
}

.home-carry .carry-wrap .content-div p+p {
  margin-top: 20px;
  margin-bottom: 2.5rem;
}

.home-carry .carry-wrap .content-div.animate {
  -webkit-transform: translateX(500px);
  transform: translateX(500px);
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.home-carry .carry-wrap .content-div.over {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.home-services {
  padding: 50px 0;
  background-color: #F6F6F6;
}

@media screen and (min-width: 576px) {
  .home-services {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media screen and (min-width: 1200px) {
  .home-services {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.home-services .sec-title {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: auto;
  margin-bottom: 60px;
}

.home-services .slide-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  margin-bottom: 30px;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 20px;
}

@media screen and (min-width: 1200px) {
  .home-services .slide-wrap {
    height: 441px;
    position: relative;
  }
}

.home-services .slide-wrap .item {
  width: 100%;
  height: 300px;
  border: 1px solid #bbbbbb;
  position: relative;
  border-radius: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

@media screen and (min-width: 1200px) {
  .home-services .slide-wrap .item {
    position: absolute;
    max-width: 515px;
    left: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 515px;
    flex: 0 0 515px;
    height: 441px;
  }
}

.home-services .slide-wrap .item::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.home-services .slide-wrap .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.home-services .slide-wrap .item .content {
  position: absolute;
  left: 0;
  padding: 0 20px;
  bottom: 22px;
  z-index: 2;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 1200px) {
  .home-services .slide-wrap .item .content {
    padding: 0;
    left: 40px;
    bottom: 42px;
    max-width: 350px;
    -webkit-transform: translateY(80%);
    transform: translateY(80%);
  }
}

.home-services .slide-wrap .item .content .title {
  margin-bottom: 10px;
  line-height: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 1200px) {
  .home-services .slide-wrap .item .content .title {
    margin-bottom: 15px;
  }
}

.home-services .slide-wrap .item .content p {
  margin-bottom: 25px;
  color: #000;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 1200px) {
  .home-services .slide-wrap .item .content p {
    margin-bottom: 30px;
    opacity: 0;
  }
}

.home-services .slide-wrap .item .count {
  position: absolute;
  left: 20px;
  top: 20px;
  color: #000;
  font-size: 16px;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 70%;
}

@media screen and (min-width: 1200px) {
  .home-services .slide-wrap .item .count {
    left: 40px;
    top: 40px;
  }
}

.home-services .slide-wrap .item.active::before {
  background-color: rgba(73, 134, 17, 0.95);
}

.home-services .slide-wrap .item.active .content {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.home-services .slide-wrap .item.active .content .title {
  color: #fff;
}

.home-services .slide-wrap .item.active .content p {
  opacity: 1;
  color: #fff;
}

.home-services .slide-wrap .item.active .count {
  color: #fff;
}

.home-services .btn-wrap {
  text-align: center;
  margin-top: 60px;
}

.home-engg {
  padding-top: 50px;
  padding-bottom: 50px;
}

@media screen and (min-width: 576px) {
  .home-engg {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media screen and (min-width: 1200px) {
  .home-engg {
    padding-top: 120px;
    padding-bottom: 180px;
  }
}

.home-engg .head {
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (min-width: 1200px) {
  .home-engg .head {
    margin-bottom: 60px;
  }
}

.home-engg .head .sec-title {
  margin-bottom: 20px;
  line-height: 45px;
  color: #000;
}

.home-engg .head p {
  color: #3C3C3C;
  max-width: 745px;
  margin: auto;
}

.home-engg .head p span {
  color: #FE6700;
}

.home-engg .engg-swiper {
  padding-bottom: 50px;
}

@media screen and (min-width: 1200px) {
  .home-engg .engg-swiper {
    padding-bottom: 80px;
  }
}

.home-engg .engg-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 1;
  background-color: #D9D9D9;
}

@media screen and (min-width: 1200px) {
  .home-engg .engg-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
  }
}

.home-engg .engg-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #FE6700;
}

.home-destination {
  position: relative;
}

.home-destination .destination .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  min-height: 700px;
  overflow: hidden;
}

.home-destination .destination .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  min-height: 700px;
  display: block;
}

.home-destination .destination .swiper-slide .map {
  position: absolute;
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.home-destination .destination .swiper-slide .map img {
  min-height: 100px;
  width: 100%;
}

.home-destination .destination .swiper-slide .detail {
  position: absolute;
  bottom: 95px;
  text-align: center;
  max-width: 350px;
}

.home-destination .destination .swiper-slide .detail .title {
  font-size: 30px;
  line-height: 35px;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 500;
}

@media screen and (min-width: 1200px) {
  .home-destination .destination .swiper-slide .detail .title {
    font-size: 55px;
    line-height: 45px;
    font-weight: 400;
    margin-bottom: 35px;
  }
}

.home-destination .destination .swiper-slide .detail p {
  color: #fff;
}

.home-destination .destination .swiper-slide-active .map {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.home-destination .fixed-content-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  z-index: 2;
  pointer-events: none;
}

.home-destination .fixed-content-top .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 50px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (min-width: 1200px) {
  .home-destination .fixed-content-top .head {
    padding-top: 100px;
  }
}

.home-destination .fixed-content-top .head .title {
  color: #fff;
  margin-bottom: 20px;
  line-height: 35px;
}

@media screen and (min-width: 1200px) {
  .home-destination .fixed-content-top .head .title {
    line-height: 45px;
  }
}

.home-destination .fixed-content-top .head p {
  color: #fff;
  width: 100%;
  margin-bottom: 30px;
}

@media screen and (min-width: 1200px) {
  .home-destination .fixed-content-top .head p {
    max-width: 657px;
  }
}

.home-destination .fixed-content-top .head .btn {
  pointer-events: all;
}

.home-destination .fixed-content-top .head .places ul {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  margin: 0;
  padding: 10px;
  list-style-type: none;
  pointer-events: all;
}

.home-destination .fixed-content-top .head .places ul li {
  background: rgba(52, 52, 52, 0.45);
  border: 1px solid rgba(250, 250, 250, 0.2);
  -webkit-backdrop-filter: blur(7.5px);
  backdrop-filter: blur(7.5px);
  padding: 10px 15px;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

.home-destination .fixed-content-top .head .places ul li+li {
  margin-top: 5px;
}

.home-destination .fixed-content-top .head .places ul li:hover {
  background-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border: 1px solid #498611;
}

.home-destination .fixed-content-top .head .places ul li.active {
  background-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border: 1px solid #498611;
}

.home-destination .fixed-content-bottom {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
  z-index: 2;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
}

@media screen and (min-width: 1200px) {
  .home-destination .fixed-content-bottom {
    bottom: 100px;
  }
}

.home-destination .fixed-content-bottom .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .home-destination .fixed-content-bottom .bottom {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.home-destination .fixed-content-bottom .bottom a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
  text-decoration: none;
}

@media screen and (min-width: 1200px) {
  .home-destination .fixed-content-bottom .bottom a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    pointer-events: all;
  }
}

.home-destination .fixed-content-bottom .bottom a span {
  display: inline-block;
}

.home-destination .fixed-content-bottom .bottom a .icon-point {
  font-size: 30px;
  font-weight: 500;
  margin-left: 20px;
}

.home-destination .fixed-content-bottom .bottom .swiper-paginations {
  position: relative;
  color: #fff;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  line-height: 45px;
  bottom: 0;
}

.home-destination .fixed-content-bottom .bottom .swiper-paginations .swiper-pagination-current {
  font-size: 30px;
  font-weight: 400;
  display: inline-block;
}

@media screen and (min-width: 1200px) {
  .home-destination .fixed-content-bottom .bottom .swiper-paginations .swiper-pagination-current {
    font-size: 55px;
    line-height: 45px;
  }
}

.home-destination .fixed-content-bottom .bottom .swiper-paginations .swiper-pagination-total {
  font-size: 18px;
  display: inline-block;
  font-weight: 300;
}

@media screen and (min-width: 1200px) {
  .home-destination .fixed-content-bottom .bottom .swiper-paginations .swiper-pagination-total {
    font-size: 25px;
  }
}

.home-next-dest {
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 576px) {
  .home-next-dest {
    padding-bottom: 70px;
  }
}

@media screen and (min-width: 1200px) {
  .home-next-dest {
    padding-bottom: 120px;
  }
}

.home-next-dest::before {
  position: absolute;
  left: -30px;
  top: -100px;
  content: "";
  width: 1250px;
  height: 978px;
  background-image: url(../../images/map.png);
}

.home-next-dest .dest-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.home-next-dest .dest-wrap .content {
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 1200px) {
  .home-next-dest .dest-wrap .content {
    width: 50%;
    text-align: left;
  }
}

.home-next-dest .dest-wrap .content img {
  width: 320px;
  height: 312px;
}

@media screen and (min-width: 1200px) {
  .home-next-dest .dest-wrap .content img {
    margin: 0;
  }
}

.home-next-dest .dest-wrap .content .title {
  margin-bottom: 20px;
  line-height: 35px;
  text-align: left;
}

@media screen and (min-width: 1200px) {
  .home-next-dest .dest-wrap .content .title {
    line-height: 45px;
    margin-bottom: 30px;
  }
}

.home-next-dest .dest-wrap .content p {
  color: #3c3c3c;
  font-size: 16px;
  text-align: left;
}

.home-next-dest .dest-wrap .quot {
  width: 100%;
  padding-top: 50px;
}

@media screen and (min-width: 1200px) {
  .home-next-dest .dest-wrap .quot {
    width: 50%;
    padding-top: 120px;
  }
}

.home-next-dest .dest-wrap .quot .form-wrap {
  width: 100%;
  height: 580px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  padding: 10px;
  margin-left: auto;
}

@media screen and (min-width: 576px) {
  .home-next-dest .dest-wrap .quot .form-wrap {
    padding: 20px;
  }
}

@media screen and (min-width: 1200px) {
  .home-next-dest .dest-wrap .quot .form-wrap {
    max-width: 473px;
    height: 631px;
    padding: 10px;
  }
}

.home-next-dest .dest-wrap .quot .form-wrap figure {
  position: absolute;
  width: 100%;
  top: 0;
  height: 100%;
  margin-bottom: 0;
  left: 0;
  -webkit-animation: translateYAnimation 12s ease-in-out infinite;
  animation: translateYAnimation 12s ease-in-out infinite;
}

@media screen and (min-width: 992px) {
  .home-next-dest .dest-wrap .quot .form-wrap figure {
    height: 912px;
  }
}

@media screen and (min-width: 1200px) {
  .home-next-dest .dest-wrap .quot .form-wrap figure {
    width: 680px;
    left: -103.5px;
  }
}

.home-next-dest .dest-wrap .quot .form-wrap figure img {
  width: 100%;
  height: 750px;
}

@media screen and (min-width: 992px) {
  .home-next-dest .dest-wrap .quot .form-wrap figure img {
    height: 912px;
  }
}

@media screen and (min-width: 1200px) {
  .home-next-dest .dest-wrap .quot .form-wrap figure img {
    max-width: 680px;
    height: 912px;
  }
}

.home-next-dest .dest-wrap .quot .form-wrap .form {
  position: relative;
  z-index: 2;
  padding: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 10px;
}

.home-next-dest .dest-wrap .quot .form-wrap .form .form-group {
  margin-bottom: 30px;
}

.home-next-dest .dest-wrap .quot .form-wrap .form .group {
  position: relative;
}

.home-next-dest .dest-wrap .quot .form-wrap .form .group .calendar {
  background-color: white;
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  position: absolute;
  z-index: 1;
  display: none;
  z-index: 22;
}

.home-next-dest .dest-wrap .quot .form-wrap .form .group .header {
  background-color: #FE6700;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.home-next-dest .dest-wrap .quot .form-wrap .form .group #destinationPrevBtn,
.home-next-dest .dest-wrap .quot .form-wrap .form .group #destinationNextBtn,
.home-next-dest .dest-wrap .quot .form-wrap .form .group #departurePrevBtn,
.home-next-dest .dest-wrap .quot .form-wrap .form .group #departureNextBtn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 16px;
}

.home-next-dest .dest-wrap .quot .form-wrap .form .group #destinationMonthYear,
.home-next-dest .dest-wrap .quot .form-wrap .form .group #departureMonthYear {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.home-next-dest .dest-wrap .quot .form-wrap .form .group .days {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  padding: 10px;
}

.home-next-dest .dest-wrap .quot .form-wrap .form .group .day {
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
}

.home-next-dest .dest-wrap .quot .form-wrap .form .group .day.current {
  background-color: #FE6700;
  color: white;
}

.home-next-dest .dest-wrap .quot .form-wrap .form .group .day.selected {
  background-color: #2ecc71;
  color: white;
}

.home-next-dest .dest-wrap .quot .form-wrap .form .group #dateInput {
  width: 100%;
  cursor: pointer;
}

.home-next-dest .dest-wrap .quot .form-wrap .form .input-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 55px;
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.home-next-dest .dest-wrap .quot .form-wrap .form .input-wrap span {
  font-size: 20px;
  padding: 5px 20px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.home-next-dest .dest-wrap .quot .form-wrap .form label {
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
  display: inline-block;
}

.home-next-dest .dest-wrap .quot .form-wrap .form .form-control {
  height: 55px;
  width: 100%;
  background-color: transparent;
  padding-left: 20px;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  font-size: 16px;
  font-family: "Lexend", serif;
  font-weight: 400;
  color: #000;
}

.home-next-dest .dest-wrap .quot .form-wrap .form .form-control::-webkit-input-placeholder {
  color: #3c3c3c;
  font-size: 16px;
  font-family: "Lexend", serif;
  font-weight: 400;
}

.home-next-dest .dest-wrap .quot .form-wrap .form .form-control::-moz-placeholder {
  color: #3c3c3c;
  font-size: 16px;
  font-family: "Lexend", serif;
  font-weight: 400;
}

.home-next-dest .dest-wrap .quot .form-wrap .form .form-control:-ms-input-placeholder {
  color: #3c3c3c;
  font-size: 16px;
  font-family: "Lexend", serif;
  font-weight: 400;
}

.home-next-dest .dest-wrap .quot .form-wrap .form .form-control::-ms-input-placeholder {
  color: #3c3c3c;
  font-size: 16px;
  font-family: "Lexend", serif;
  font-weight: 400;
}

.home-next-dest .dest-wrap .quot .form-wrap .form .form-control::placeholder {
  color: #3c3c3c;
  font-size: 16px;
  font-family: "Lexend", serif;
  font-weight: 400;
}

@-webkit-keyframes translateYAnimation {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-150px);
    transform: translateY(-150px);
    /* Adjust this value to control how far it moves */
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes translateYAnimation {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-150px);
    transform: translateY(-150px);
    /* Adjust this value to control how far it moves */
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.home-testimonial {
  background-color: #f6f6f6;
  padding: 50px 0;
  overflow: hidden;
}

@media screen and (min-width: 576px) {
  .home-testimonial {
    padding: 70px 0;
  }
}

@media screen and (min-width: 1200px) {
  .home-testimonial {
    padding-bottom: 120px;
    padding-top: 120px;
  }
}

.home-testimonial .head {
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (min-width: 1200px) {
  .home-testimonial .head {
    text-align: center;
    margin-bottom: 50px;
  }
}

.home-testimonial .head .sec-title {
  margin-bottom: 20px;
  color: #000;
  line-height: 35px;
}

@media screen and (min-width: 1200px) {
  .home-testimonial .head .sec-title {
    line-height: 45px;
    margin-bottom: 20px;
  }
}

.home-testimonial .head p {
  max-width: 534px;
  color: #3c3c3c;
  margin: auto;
}

.home-testimonial .slider {
  width: 100%;
}

.home-testimonial .slider .swiper {
  overflow: visible;
  width: 100%;
}

.home-testimonial .slider .swiper .swiper-slide {
  width: 100%;
  height: auto;
  padding-bottom: 40px;
}

@media screen and (min-width: 1200px) {
  .home-testimonial .slider .swiper .swiper-slide {
    padding-bottom: 60px;
    /* max-width: 452px; */
  }
}

.home-testimonial .slider .swiper .controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.home-testimonial .slider .swiper .controls .navigate {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

@media screen and (min-width: 1200px) {
  .home-testimonial .slider .swiper .controls .navigate {
    width: 12%;
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
    margin-top: 0;
    gap: 10px;
  }
}

.home-testimonial .slider .swiper .controls .swiper-button-prev,
.home-testimonial .slider .swiper .controls .swiper-button-next {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: #498611;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.home-testimonial .slider .swiper .controls .swiper-button-prev::after,
.home-testimonial .slider .swiper .controls .swiper-button-next::after {
  display: none;
}

.home-testimonial .slider .swiper .controls .swiper-button-prev {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.home-testimonial .slider .swiper .controls .swiper-button-prev:hover {
  -webkit-transform: rotate(180deg) scale(1.05);
  transform: rotate(180deg) scale(1.05);
}

.home-testimonial .slider .swiper .controls .swiper-button-disabled {
  background-color: #ebebeb;
  border: 1px solid #dadada;
  opacity: 1;
}

.home-testimonial .slider .swiper .controls .swiper-button-prev {
  left: 0;
}

.home-testimonial .slider .swiper .controls .swiper-button-next {
  right: 0;
  left: auto;
}

.home-testimonial .slider .swiper .controls .swiper-button-next:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.home-testimonial .slider .swiper .swiper-scrollbar {
  height: 6px;
  background-color: #ebebeb;
  width: 100%;
  position: relative;
}

@media screen and (min-width: 1200px) {
  .home-testimonial .slider .swiper .swiper-scrollbar {
    width: 87%;
  }
}

.home-testimonial .slider .swiper .swiper-scrollbar-drag {
  background-color: #FE6700;
  cursor: pointer;
}

.home-testimonial .slider .card {
  width: 100%;
  height: 100%;
  padding: 20px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (min-width: 1200px) {
  .home-testimonial .slider .card {
    padding: 42px 53px 42px 40px;
  }
}

.home-testimonial .slider .card figure {
  width: 49px;
  height: 49px;
  border-radius: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

@media screen and (min-width: 992px) {
  .home-testimonial .slider .card figure {
    width: 59px;
    height: 59px;
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 1200px) {
  .home-testimonial .slider .card figure {
    margin-bottom: 40px;
    width: 69px;
    height: 69px;
  }
}

.home-testimonial .slider .card figure img {
  width: 100%;
  height: 100%;
}

.home-testimonial .slider .card .client-detail {
  margin-top: auto;
}

.home-testimonial .slider .card .client-detail strong {
  color: #3c3c3c;
  font-weight: 600;
  margin-bottom: 2px;
  display: inline-block;
  font-size: 18px;
}

.home-testimonial .slider .card .client-detail p {
  margin-bottom: 0 !important;
  color: #3c3c3c;
  font-size: 16px;
}

.home-testimonial .slider .text-card {
  background-color: #fff;
}

.home-testimonial .slider .text-card p {
  color: #3c3c3c;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 30px;
}

@media screen and (min-width: 1200px) {
  .home-testimonial .slider .text-card p {
    margin-bottom: 70px;
    font-size: 18px;
  }
}

.home-testimonial .slider .video-card .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.home-testimonial .slider .video-card .bg img {
  width: 100%;
  height: 100%;
}

.home-testimonial .slider .video-card .play-btn {
  width: 80px;
  height: 80px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100%;
  margin: auto;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (min-width: 1200px) {
  .home-testimonial .slider .video-card .play-btn {
    width: 120px;
    height: 120px;
  }
}

.home-testimonial .slider .video-card .client-detail strong {
  color: #fff;
}

.home-testimonial .slider .video-card .client-detail p {
  color: #fff;
}

.home-updates {
  padding: 50px 0;
}

@media screen and (min-width: 576px) {
  .home-updates {
    padding: 70px 0;
  }
}

@media screen and (min-width: 1200px) {
  .home-updates {
    padding-bottom: 120px;
    padding-top: 120px;
  }
}

.home-updates .sec-title {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: auto;
  color: #000;
  margin-bottom: 35px;
  line-height: 35px;
  font-weight: 600;
}

@media screen and (min-width: 1200px) {
  .home-updates .sec-title {
    margin-bottom: 50px;
    line-height: 45px;
  }
}

.home-updates .blog-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.home-updates .blog-wrap .blog-large {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 992px) {
  .home-updates .blog-wrap .blog-large {
    width: 60%;
  }
}

@media screen and (min-width: 1200px) {
  .home-updates .blog-wrap .blog-large {
    width: 60%;
    max-width: 680px;
  }
}

.home-updates .blog-wrap .blog-large .redirect-link {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 55px;
  height: 55px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 11;
  border-radius: 100%;
  text-decoration: none;
  -webkit-transform: translateX(200%);
  transform: translateX(200%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.home-updates .blog-wrap .blog-large .redirect-link span::before {
  color: #000;
}

.home-updates .blog-wrap .blog-large figure {
  margin-bottom: 0;
  width: 100%;
  height: 100%;
  padding-top: calc(585 / 680 * 100%);
  position: relative;
}

.home-updates .blog-wrap .blog-large figure img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  top: 0;
}

.home-updates .blog-wrap .blog-large img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  will-change: transform;
}

.home-updates .blog-wrap .blog-large .blog-detail {
  position: absolute;
  padding: 10px;
  width: 100%;
  left: 0;
  bottom: 0;
}

.home-updates .blog-wrap .blog-large .blog-detail .content {
  padding: 15px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  position: relative;
}

@media screen and (min-width: 1200px) {
  .home-updates .blog-wrap .blog-large .blog-detail .content {
    padding: 20px;
  }
}

.home-updates .blog-wrap .blog-large .blog-detail .content .pill {
  padding: 8px 30px;
  border: 1px solid #fff;
  font-size: 12px;
  font-weight: 300;
  color: #fff;
  border-radius: 300px;
  margin-bottom: 20px;
  display: inline-block;
  line-height: 15px;
}

.home-updates .blog-wrap .blog-large .blog-detail .content .title {
  font-size: 22px;
  font-weight: 500;
  line-height: 28px;
  color: #fff;
  margin-bottom: 10px;
}

@media screen and (min-width: 1200px) {
  .home-updates .blog-wrap .blog-large .blog-detail .content .title {
    font-size: 26px;
    line-height: 45px;
  }
}

.home-updates .blog-wrap .blog-large .blog-detail .content p {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.home-updates .blog-wrap .blog-large .blog-detail .content p span {
  font-size: 22px;
  margin-right: 10px;
}

.home-updates .blog-wrap .blog-large:hover figure img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

.home-updates .blog-wrap .blog-large:hover .redirect-link {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.home-updates .blog-wrap .blog-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  row-gap: 20px;
  margin-top: 20px;
}

@media screen and (min-width: 992px) {
  .home-updates .blog-wrap .blog-list {
    width: 40%;
    padding-left: 20px;
    margin-top: 0;
  }
}

@media screen and (min-width: 1200px) {
  .home-updates .blog-wrap .blog-list {
    margin-top: 0;
    width: 40%;
    padding-left: 20px;
  }
}

.home-updates .blog-wrap .blog-list .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.home-updates .blog-wrap .blog-list .items figure {
  width: 150px;
  height: 150px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 150px;
  flex: 0 0 150px;
  margin-bottom: 0;
  border-radius: 10px;
  overflow: hidden;
}

@media screen and (min-width: 1200px) {
  .home-updates .blog-wrap .blog-list .items figure {
    width: 175px;
    height: 175px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 175px;
    flex: 0 0 175px;
    border-radius: 15px;
  }
}

.home-updates .blog-wrap .blog-list .items figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  will-change: transform;
}

.home-updates .blog-wrap .blog-list .items .content {
  padding-left: 20px;
}

@media screen and (min-width: 1200px) {
  .home-updates .blog-wrap .blog-list .items .content {
    padding-left: 30px;
  }
}

.home-updates .blog-wrap .blog-list .items .content .pill {
  padding: 7px 25px;
  border: 1px solid #000;
  font-size: 10px;
  font-weight: 300;
  color: #000;
  border-radius: 300px;
  margin-bottom: 15px;
  display: inline-block;
  line-height: 14px;
}

@media screen and (min-width: 992px) {
  .home-updates .blog-wrap .blog-list .items .content .pill {
    font-size: 12px;
    padding: 7px 30px;
  }
}

.home-updates .blog-wrap .blog-list .items .content .title {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: #000;
  margin-bottom: 15px;
}

@media screen and (min-width: 1200px) {
  .home-updates .blog-wrap .blog-list .items .content .title {
    font-size: 22px;
    line-height: 28px;
  }
}

.home-updates .blog-wrap .blog-list .items .content p {
  font-weight: 300;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 992px) {
  .home-updates .blog-wrap .blog-list .items .content p {
    font-size: 16px;
  }
}

.home-updates .blog-wrap .blog-list .items .content p span {
  color: #000;
  font-size: 18px;
  margin-right: 10px;
}

.home-updates .blog-wrap .blog-list .items .content p span::before {
  color: #000;
}

.home-updates .blog-wrap .blog-list .items:hover figure img {
  -webkit-transform: scale(1.07);
  transform: scale(1.07);
}

.home-updates .btn-wrap {
  margin-top: 50px;
  text-align: center;
}