* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary_green: #00bb98;
  --main_black: #111b19;
  --primary_black: #444444;
  --main_red: #fd4c5c;
  --primary_grey: #acacac;
  --main_white: #fff;
  --bg_color: #f0faf8;
}
@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-3/Manrope-Regular.ttf"), format("truetype");
}
@font-face {
  font-family: "Hanken Grotesk";
  src:
    url("fonts/hanken-grotesk/HankenGrotesk-Regular.otf"), format("OpenType");
}
@font-face {
  font-family: "La Belle Aurore";
  src:
    url("fonts/La_Belle_Aurore/LaBelleAurore-Regular.ttf"), format("truetype");
}
body {
  font-family: "Hanken Grotesk";
  color: #444444;
  line-height: 1.64;
  font-weight: 400;
  font-size: 14px;
}
figure {
  display: block;
  margin: 0;
}
a {
  text-decoration: none;
}
ul {
  padding: 0;
  margin: 0;
}
ul li {
  list-style: none;
  margin: 0;
}
img {
  max-width: 100%;
  height: auto;
}
.navbar_container {
  max-width: 1630px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.container {
  max-width: 1330px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
/* ////navbar css start here////// */
.header {
  padding: 15px 0;
}
.navbar-brand {
  display: block;
  max-width: 170px;
}
.navbar-nav .nav-item .nav-link {
  font-family: "Hanken Grotesk";
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--main_black);
  text-align: center;
  transition: all 0.5ms ease-in;
}
.navbar-nav .nav-item .nav-link:hover {
  color: var(--main_red);
  border-bottom: 2px solid var(--main_red);
}
/* ///navbar reveal/// */
.box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.box a {
  position: relative;
  display: inline-block;
  outline: none;
  border: 0;
  text-decoration: none;
  background: transparent;
}
a.learn_more {
  width: 165px;
  height: auto;
}
a.learn_more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  background: var(--main_red);
  border-radius: 26px;
}
a.learn_more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: var(--main_white);
}
a.learn_more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 10px;
  width: 18px;
  height: 2px;
  background: none;
}
a.learn_more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -4px;
  right: 1px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--main_white);
  border-right: 2px solid var(--main_white);
  transform: rotate(45deg);
}
a.learn_more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 0;
  margin: 0 0 0 30px;
  color: var(--main_red);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
a:hover .circle {
  width: 100%;
}
a:hover .circle .icon.arrow {
  background: var(--main_white);
  transform: translate(16px, 0);
}
a:hover .button-text {
  color: var(--main_white);
}
/* ///////footer css start here/////// */
.foot_top {
  padding-top: 90px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.copy_bottom {
  padding: 28px 0;
}
.footer_header {
  font-family: "Manrope";
  font-size: 20px;
  font-weight: 700;
  color: var(--main_black);
  margin-top: 15px;
  margin-bottom: 25px;
}
.footer_logo {
  max-width: 150px;
  margin-bottom: 20px;
}
.footer-in p {
  color: var(--primary_black);
  font-size: 16px;
  line-height: 1.625;
  max-width: 300px;
  margin: 0;
}
.footer_social {
  margin-top: 25px;
}
.social li a {
  color: var(--primary_black);
  font-size: 18px;
  transition: all 0.5s ease-in;
}
.social li a:hover {
  color: var(--main_red);
}
.social li {
  margin-right: 20px;
}
.social li:last-child {
  margin-right: 0;
}
.ftr_link li a {
  font-size: 15px;
  color: var(--primary_black);
  transition: all 0.5s ease-in;
}
.ftr_link li a:hover {
  color: var(--main_red);
}
.ftr_link li {
  margin-bottom: 13px;
}
.ftr_link li:last-child {
  margin-bottom: 0;
}
.contact_link {
  margin-top: 20px;
}
.contact_link li a {
  font-size: 15px;
  color: var(--primary_black);
  transition: all 0.5s ease-in;
}
.contact_link li a:hover {
  color: var(--main_red);
}
.contact_link li i {
  color: var(--main_red);
  margin-right: 8px;
  font-size: 18px;
}
.contact_link li {
  margin-bottom: 13px;
}
.contact_link li:last-child {
  margin-bottom: 0;
}
.copy_right {
  font-size: 16px;
  color: var(--primary_black);
}
.copy_right a {
  color: var(--primary_black);
  transition: all 0.5s ease-in;
}
.copy_right a:hover {
  color: var(--main_red);
}
/* ////Home Page CSS Start Here//// */
/* Common Css for Home Page*/
.cmn-gap {
  padding: 110px 0 90px;
}
.cmn_title {
  color: var(--primary_green);
  font-size: 24px;
  line-height: 1.166;
  font-family: "La Belle Aurore";
}
.cmn_heading {
  font-size: 44px;
  line-height: 1.23;
  color: var(--main_black);
  font-weight: 800;
  font-family: "Manrope";
}
.cmn_text {
  color: var(--primary_black);
  font-size: 16px;
  line-height: 1.625;
}
/* ....Banner Section...*/
.banner {
  overflow: hidden;
  background: var(--bg_color);
  padding: 120px 0 170px;
}
.banner .circle_one {
  left: -103px;
  top: -103px;
  width: 207px;
  height: 207px;
  z-index: 1;
  border-radius: 150px;
  background: var(--main_red);
  animation: zoomFadeSmooth 6s ease-in-out infinite;
}
.banner .circle_two {
  left: 50%;
  bottom: -103px;
  width: 207px;
  height: 207px;
  z-index: 1;
  border-radius: 150px;
  background: var(--primary_green);
  animation: longLeftRight 18s ease-in-out infinite;
}
.banner .banner_bg {
  background: url(images/banner_bg.png);
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  background-repeat: repeat;
}
.banner_right_img {
  right: 0px;
  top: -105px;
}
.banner_title {
  font-size: 30px;
  line-height: 1;
  color: var(--primary_green);
  font-family: "La Belle Aurore";
  margin-bottom: 13px;
}
.banner_heading {
  color: var(--main_black);
  max-width: 600px;
  font-size: 74px;
  letter-spacing: 1px;
  line-height: 1.111;
  font-weight: 700;
  font-family: "Manrope";
}
.banner_text {
  color: var(--primary_black);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  margin-top: 35px;
  margin-bottom: 45px;
}
.banner_form {
  max-width: 780px;
  border-radius: 10px;
  padding: 30px;
  background-color: var(--main_white);
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.08);
}
.red-icon {
  color: var(--main_red);
  margin-right: 4px;
  font-size: 16px;
}
.item label {
  color: var(--main_black);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.search-btn {
  background-color: var(--main_red);
  color: var(--main_white);
  font-size: 22px;
  cursor: pointer;
  border: none;
  border-radius: 12px;
  padding: 15px 18px;
}
.item .custom-select {
  border: none;
  color: var(--primary_grey);
}
.custom-select:focus {
  box-shadow: none;
}
.custom-select option {
  color: var(--primary_black);
}
/* Discover weekly section start here*/
.discover_tour_inn .cmn_text {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 15px;
}
.discover_tour_inn .cmn_heading {
  margin-top: 10px;
}
.discover_tour_inn {
  margin-bottom: 45px;
}
.discover-tour .swiper-wrapper {
  padding-bottom: 80px;
}
.discover-tour .swiper-pagination-bullet-active {
  background-color: var(--main_red);
}
.home-discover_tour_heading a.learn_more .button-text {
  margin: 0 0 0 50px;
}
.home-discover_tour_heading {
  margin-bottom: 20px;
}
/* Travel Perfection section css*/
.travel_perfection {
  background: var(--bg_color);
}
.travel_perfection .cmn_title {
  margin-bottom: 10px;
}
.travel_perfection .cmn_text {
  max-width: 750px;
  margin: 0 auto;
  margin-top: 15px;
}
.perfection_cont {
  margin-bottom: 45px;
}
.feature-in {
  padding: 65px 30px 75px;
  border-radius: 10px;
  background-color: var(--main_white);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in;
}
.feature-icon {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  line-height: 120px;
  transition: all 0.3s ease-in;
}
.feature-in:hover .feature-icon {
  transform: scaleX(-1);
}
.feature-icon::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  background-color: #ffe4e7;
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
}
.feature-icon i {
  position: absolute;
  color: var(--main_red);
  font-size: 50px;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.feature-in h3 {
  font-size: 22px;
  line-height: 1.454;
  font-weight: 700;
  color: var(--main_black);
  font-family: "Manrope";
  margin: 20px 0;
}
.blue::before {
  background-color: #dfe6ff;
}
.blue i {
  color: #2b59ff;
}
.green::before {
  background-color: #d9f5f0;
}
.green i {
  color: var(--primary_green);
}
/*Counter Section css*/
.counter {
  background-color: var(--primary_green);
}
.counter-icon {
  width: 90px;
  height: 95px;
  margin: 0 auto;
  line-height: 95px;
  color: var(--main_white);
  transition: all 0.3s ease-in;
}
.counter-in:hover .counter-icon {
  transform: scaleX(-1);
}
.counter-icon::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  /* z-index: -1; */
  background-color: rgba(253, 76, 92, 0.1);
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
}
.counter-icon i {
  position: absolute;
  font-size: 50px;
  font-size: 35px;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.counter-in .number {
  font-size: 60px;
  font-weight: 700;
  line-height: 1em;
  margin-top: 20px;
  color: var(--main_white);
  margin-left: -37px;
}
.counter-in .number::after {
  content: "K";
  position: absolute;
  right: -47px;
  top: 4px;
}
.counter-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1em;
  margin-top: 15px;
  opacity: 0.8;
  color: var(--main_white);
}
/*Guidline section CSS*/
.guideline {
  background: url(images/tour-guide-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.guide_dot_img {
  background: url(images/tour-guide-reddot.png);
  left: 0px;
  top: 90px;
  width: 54px;
  height: 190px;
  background-repeat: no-repeat;
  animation: floatUpDown 3s ease-in-out infinite;
}
.guide-clock {
  margin-bottom: 35px;
}
.guide-cont .cmn_title {
  margin-bottom: 12px;
}
.guide-cont .cmn_heading {
  margin-bottom: 10px;
}
.guide-cont .cmn_text {
  max-width: 500px;
}
.guide_list li {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--primary_black);
}
.guide_list li:last-child {
  margin-bottom: 0;
}
.guide_list li i {
  color: var(--primary_green);
  font-size: 16px;
  position: relative;
  top: 1px;
  margin-right: 10px;
}
.guide-img-one {
  border-radius: 250px 250px;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  border: 10px solid var(--main_white);
}
.guide_img_two {
  left: 0;
  bottom: 0;
  border-radius: 250px 250px;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  border: 10px solid var(--main_white);
  animation: floatUpDown 3s ease-in-out infinite;
}
.guide-img-inner {
  padding-bottom: 90px;
}
.guide-inner a.learn_more .button-text {
  margin: 0 0 0 40px;
}
/*.....Destination  CSS Start Here.....*/
.destination {
  background-color: #1a1a3c;
}
.destination_cont {
  margin-bottom: 45px;
}
.destination_cont .cmn_text {
  max-width: 750px;
  margin: 0 auto;
  margin-top: 20px;
}
.destination_cont .cmn_heading {
  margin-top: 10px;
}
.dest-block-img {
  border-radius: 10px;
}
.dest-block-in:hover .dest-block-img img {
  transform: scale(1.05, 1.05);
}
.dest-block-img img {
  position: relative;
  width: 100%;
  display: block;
  transition: all 500ms ease;
}
.dest-block-img::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 50%;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  background: rgba(var(--white-color-rgb), 0);
  background: linear-gradient(to top, #000000 0%, rgba(255, 255, 255, 0) 100%);
}
.dest_block_cont {
  left: 40px;
  bottom: 40px;
  right: 40px;
  z-index: 2;
}
.dest_block_heading a {
  position: relative;
  color: var(--main_white);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Manrope";
  line-height: 1.238;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 2px;
}
.dest_block_heading a:hover {
  color: var(--main_red);
}
.dest_block_hour {
  position: relative;
  border-radius: 5px;
  font-size: 16px;
  margin-top: 20px;
  padding: 8px 20px;
  display: inline-block;
  color: var(--main_white);
  background-color: var(--main_red);
}
/*....Testimonial Section CSS Start Here....*/
.testimonial {
  background: #f2fbfa;
  padding-bottom: 140px;
}
.testimonial_bg {
  position: absolute;
  background-image: url(images/testimonial_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
}
.testimonial-heading .cmn_title {
  margin-bottom: 10px;
}
.testimonial-heading {
  margin-bottom: 50px;
}
.testimonial_container {
  position: relative;
  max-width: 670px;
  margin: 0 auto;
  z-index: 1;
}
.testimonial_carousel_box {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  padding: 55px 75px 55px;
  background-color: var(--main_white);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.testimonial_block_quote {
  position: absolute;
  right: 20px;
  bottom: 30px;
}
.testimonial_block_quote img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.test_inn_text {
  color: var(--main_black);
  font-size: 19px;
  line-height: 1.57;
  padding-bottom: 10px;
  font-family: "Hanken Grotesk";
  font-weight: 400;
  text-align: center;
}
.test_author {
  margin-top: 35px;
}
.author_img img {
  width: 100%;
  border-radius: 100px;
}
.author_img {
  width: 100px;
  height: 100px;
}
.author_name {
  font-family: "Hanken Grotesk";
  font-size: 20px;
  line-height: 1.6;
  color: var(--main_black);
  margin-bottom: 10px;
}
.author_details {
  margin-left: 15px;
}
.testimonial_slide_in .swiper-wrapper {
  padding-bottom: 80px;
}
.testimonial
  .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, -6px);
  left: 20px;
}
.test_colour_layer_one {
  position: absolute;
  left: 30px;
  right: 30px;
  height: 50px;
  bottom: -20px;
  border-radius: 12px;
  background-color: var(--main_white);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.test_colour_layer_two {
  position: absolute;
  left: 50px;
  right: 50px;
  height: 50px;
  bottom: -40px;
  z-index: -1;
  border-radius: 12px;
  background-color: var(--main_white);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.testimonial .swiper-pagination-bullet-active {
  background-color: var(--main_red);
}
/*....Info Section CSS Start Here.....*/
.info {
  background: var(--main_red);
  padding: 70px 0 50px;
}
.info-icon {
  margin-right: 20px;
  transition: all 0.4s ease;
}
.info_inner:hover .info-icon {
  transform: scaleX(-1);
}
.info-cont h3 {
  position: relative;
  display: block;
  font-family: "Hanken Grotesk";
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.6;
  color: var(--main_white);
}
.info-cont p {
  font-family: "Hanken Grotesk";
  position: relative;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
/*....youtube Section CSS Start here.....*/
.youtube {
  background: url(images/youtube-bg.jpg);
  position: relative;
  text-align: center;
  padding: 220px 0px 220px;
  background-size: cover;
  background-attachment: fixed;
}
.youtube::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0.4;
  background-color: #000;
}
.youtube .cmn_title {
  font-size: 44px;
  line-height: 1;
  color: var(--main_white);
  position: relative;
  z-index: 1;
}
.youtube .cmn_heading {
  font-size: 65px;
  font-weight: 800;
  color: var(--main_white);
  line-height: 1.16;
  position: relative;
  z-index: 1;
  letter-spacing: 2px;
  margin-top: 10px;
  margin-bottom: 45px;
}
/* .you-tube {
  width: 150px;
  height: 150px;
} */
.video-link {
  position: relative;
  display: inline-block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--main_white);
  color: var(--main_red);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 2;
}
/*News feed Section Css start*/
.news_feed {
  background: #f2fbfa;
}
.news-cont {
  margin-bottom: 50px;
}
.news-cont .cmn_title {
  margin-bottom: 10px;
}
.news-cont .cmn_text {
  max-width: 750px;
  margin: 0 auto;
  font-weight: 500;
  color: var(--primary_black);
  margin-top: 15px;
}
.news-inner {
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px;
  background-color: var(--main_white);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.news-inner-cont {
  padding: 30px 25px;
}
.news-inner:hover .news-img img {
  opacity: 0.5;
  transform: scale(1.05, 1.05);
}
.news-img img {
  transition: all 500ms ease;
  width: 100%;
}
.news-img {
  position: relative;
  overflow: hidden;
  background-color: var(--main_red);
}
.news-meta li {
  margin-right: 20px;
  color: #999999;
  font-size: 16px;
}
.news-meta li i {
  margin-right: 10px;
}
.news-inn-heading {
  margin: 15px 0;
}
.news-inn-heading {
  font-size: 22px;
  line-height: 1.45;
  font-weight: 700;
  font-family: "Manrope";
  letter-spacing: 1px;
}
.news-inn-heading a {
  color: var(--main_black);
  transition: all 0.5s ease;
}
.news-inn-heading a:hover {
  color: var(--main_red);
}
.news-inn-text {
  color: #444444;
  font-size: 16px;
  line-height: 1.625;
  margin-bottom: 20px;
}
.read-more {
  font-size: 16px;
  font-weight: 600;
  color: var(--main_red);
  transition: all 0.5s ease-in;
}
.read-more:hover {
  color: var(--main_black);
}
.read-more i {
  margin-left: 10px;
}
/* /
/
/
/
/
/Contact Page CSS START HERE................ */
/*All Inner Page common Banner ......*/
.ban_gap {
  padding: 120px 0;
}
.inner_cmn_banner {
  background: url(images/contact-banner.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
}
.inner_cmn_banner::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0.5;
  background-color: #1a1a3d;
}
.inner-cmn_heading {
  font-family: "Manrope";
  font-size: 82px;
  line-height: 1.146;
  font-weight: 700;
  color: var(--main_white);
  letter-spacing: 2px;
}
.bread_crumb {
  margin-top: 20px;
}
.bread_crumb li {
  position: relative;
  font-size: 16px;
  color: var(--main_white);
  font-weight: 600;
}
.bread_crumb li a {
  color: var(--main_white);
}
.bread_crumb li a:hover {
  color: var(--main_red);
}
.bread_crumb li i {
  padding-left: 13px;
  margin-right: 13px;
}
/*........Contact Info Section......*/
.cont-info {
  padding-bottom: 100px;
}
.cont-info-inner {
  padding: 75px 70px;
  margin-top: -130px;
  background-color: var(--main_white);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.07);
}
.info-title {
  margin-bottom: 50px;
}
.info-title .cmn_title {
  margin-bottom: 10px;
}
.info-title .cmn_text {
  margin-top: 15px;
}
.address-info li .icon {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 80px;
  height: 80px;
  border-radius: 5px;
  line-height: 80px;
  text-align: center;
  background-color: #e5f8f5;
}
.address-info li .icon img {
  width: 40px;
  height: 40px;
}
.address-info li {
  position: relative;
  padding-left: 95px;
  min-height: 80px;
  color: #444444;
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 25px;
}
.address-info li a {
  color: #444444;
}
.address-info li strong {
  position: relative;
  display: block;
  color: #111b19;
  font-size: 18px;
  margin-bottom: 5px;
}
.chat-inn {
  position: relative;
  padding: 30px 40px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.help-box {
  padding-left: 75px;
  display: flex;
  color: #444444;
  font-size: 16px;
  flex-direction: column;
}
.help-box-img {
  left: 0px;
  top: 5px;
  width: 60px;
  height: 60px;
  border-radius: 50px;
}
.help-box strong {
  position: relative;
  color: var(--main_black);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 3px;
  display: inline-block;
  font-family: "Hanken Grotesk";
}
.help-box .phone {
  position: relative;
  font-weight: 600;
  font-size: 18px;
  margin-top: 3px;
  display: inline-block;
  color: var(--main_red);
}
.help-box-btn {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.help-box-btn a {
  position: relative;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  display: block;
  text-align: center;
  color: var(--main_red);
  text-transform: capitalize;
  border: 1px solid var(--main_red);
  font-family: "Hanken Grotesk";
  transition: all 0.5s ease-in;
}
.help-box-btn a:hover {
  color: var(--main_white);
  border-color: var(--main_red);
  background-color: var(--main_red);
}
.help-box-time {
  color: #999999;
  font-size: 16px;
  line-height: 26px;
  margin-top: 20px;
  font-family: "Hanken Grotesk";
}
.help-box-time span {
  position: relative;
  display: block;
  color: var(--primary_black);
}
.cont-form-outr {
  position: relative;
  padding-left: 40px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.cont-form-outr h3 {
  color: var(--main_black);
  font-weight: 700;
  margin-bottom: 15px;
  font-family: "Hanken Grotesk";
}
.text {
  margin-bottom: 35px;
  color: var(--primary_black);
}
.btn-dark {
  background-color: var(--main_red);
  border-color: var(--main_red);
}
/* .contact-form.btn{
  background-color: var(--main_red);
} */
/* /
 /
 /
 /
 /
 / 
 ..................DESTINATION PAGE START HERE.......*/
/* ......Destination banner CSS........ */
.destination_bann {
  background: url(images/destination_bg_img.jpg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  z-index: 1;
}
/*.....Destination Body CSS......*/
.dest_block_heading .reduce {
  font-size: 32px;
}
.reduce-tour {
  font-size: 12px;
  padding: 6px 12px;
}
.shine::after {
  content: "";
  position: absolute;
  top: -110%;
  left: -210%;
  width: 200%;
  height: 200%;
  opacity: 0;
  transform: rotate(30deg);
  background: rgba(255, 255, 255, 0.13);
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.13) 0%,
    rgba(255, 255, 255, 0.13) 77%,
    rgba(255, 255, 255, 0.5) 92%,
    rgba(255, 255, 255, 0) 100%
  );
}
.shine:hover::after {
  opacity: 1;
  top: -30%;
  left: -30%;
  transition-property: left, top;
  transition-duration: 0.7s, 0.7s, 0.15s;
  transition-timing-function: ease;
}
.shine:active::after {
  opacity: 0;
}
/* /
/
/
/
/
/ ........TOUR PAGE CSS START HERE.......
////////TOUR BANNER//////*/
.tour_bann {
  background: url(images/tour-ban-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
}
.tour_ban_gap {
  padding: 170px 0;
}
.tour_banner_form {
  width: 100%;
  border-radius: 10px;
  padding: 40px;
  background-color: var(--main_white);
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.08);
}
.tour_banner_form {
  margin-top: -75px;
  z-index: 1;
}
/* .....tour grid CSS..... */
.tour-heart {
  right: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
  z-index: 1;
  color: #999999;
  font-size: 17px;
  font-weight: 400;
  line-height: 40px;
  border-radius: 50px;
  background-color: #ffffff;
  text-align: center;
}
.tour-inner-cont {
  padding: 30px 20px 20px;
}
.tour_cont_day {
  position: absolute;
  left: 25px;
  top: -20px;
  z-index: 1;
  font-size: 15px;
  border-radius: 5px;
  padding: 4px 10px 4px;
  display: inline-block;
  color: var(--primary_green);
  text-transform: uppercase;
  border: 1px solid var(--primary_green);
  background-color: var(--main_white);
}
.tour_cont_day i {
  margin-right: 5px;
}
.tour-hd {
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.54;
  font-family: "Hanken Grotesk";
}
.tour-hd a {
  color: var(--main_black);
  transition: all 0.5s ease-in;
}
.tour-hd a:hover {
  color: var(--primary_green);
}
.tour-cont-location {
  font-size: 14px;
  line-height: 1.56;
  color: #444444;
  margin-bottom: 10px;
  font-family: "Hanken Grotesk";
  font-weight: 500;
}
.tour-cont-location i {
  color: var(--primary_green);
}
.tour-rating {
  color: #ffc83e;
  margin-bottom: 30px;
}
.tour_price {
  font-size: 17px;
  font-weight: 700;
  color: #111b19;
  font-family: "Hanken Grotesk";
  line-height: 1.6;
}
.tour_price span {
  color: #999999;
  margin-left: 5px;
  text-decoration: line-through;
}
.explore-btn {
  border-radius: 5px;
  font-size: 15px;
  padding: 6px 20px 6px;
  display: inline-block;
  color: var(--main_white);
  background-color: var(--main_red);
  transition: all 0.3s ease-in;
}
.explore-btn:hover {
  background-color: var(--primary_green);
  color: var(--main_white);
}
/* /
/
/
/
/
/............GALLERY PAGE CSS START HERE........
.......Gallery Body........ */
.gallery_cont .cmn_heading {
  letter-spacing: 2px;
}
.gallery_cont {
  margin-bottom: 45px;
}
.gal_img img {
  position: relative;
  width: 100%;
  display: block;
}
.gal_overlay {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(26, 26, 61, 0.8);
  transition: transform 0.4s ease;
  transform: scale(0, 1);
  transform-origin: right center;
}
.gallery-inner:hover .gal_overlay {
  transform: scale(1, 1);
  transform-origin: left center;
}
.gal_overlay .overlay_icon {
  width: 50px;
  height: 50px;
  color: var(--main_white);
  font-size: 18px;
  line-height: 50px;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  transform: rotate(-45deg);
  background-color: var(--main_red);
}
.gal_in_cont {
  padding-top: 20px;
}
.gal-in-hd {
  position: relative;
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  font-family: "Manrope";
  letter-spacing: 1px;
}
.gal-in-hd a {
  position: relative;
  color: var(--main_black);
  transition: all 0.3s ease-in;
}
.gal-in-hd a:hover {
  color: var(--main_red);
}
/* /
/
/
/About Us PAGE CSS START HERE//// 
....Skill Bar Section cs.....*/
.guide-cont {
  padding-bottom: 15px;
}
.skill {
  margin: 15px 0;
  width: 85%;
}

.skill-header {
  display: flex;
  justify-content: space-between;
}

.skill-header p {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary_black);
}

.skill-header .percent {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary_black);
}

.skill-bar {
  width: 100%;
  height: 12px;
  background: #e1e1e1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.skill-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--primary_green);
  border-radius: 20px;
  animation: animate 2s forwards;
}

@keyframes animate {
  from {
    width: 0;
  }
  to {
    width: var(--progress);
  }
}

/* /
/
/
/
/Animation for guideline red dot image//// */
@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-35px);
  }
  100% {
    transform: translateY(0);
  }
}
/* /////animation for banner green image/// */
@keyframes longLeftRight {
  0% {
    transform: translateX(-40px);
    opacity: 0.4;
  }
  25% {
    transform: translateX(0px);
    opacity: 1;
  }
  50% {
    transform: translateX(40px);
    opacity: 0.6;
  }
  75% {
    transform: translateX(0px);
    opacity: 1;
  }
  100% {
    transform: translateX(-40px);
    opacity: 0.4;
  }
}
/* /////animation for banner red image/// */
@keyframes zoomFadeSmooth {
  0% {
    transform: scale(0.9);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.3;
  }
}
/*
/
/
/
/
RESPONSIVE CSS START HERE..
/
//////////////*/
@media (max-width: 1200px) {
  .banner_heading {
    font-size: 66px;
    max-width: 100%;
  }
  .banner_right_img {
    display: none;
  }
  h2 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .banner_heading {
    font-size: 56px;
  }
  h2 {
    font-size: 30px;
  }

  .navbar-brand img {
    width: 130px;
  }

  .hero {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .home-discover_tour_heading {
    display: block !important;
  }
  .discover_tour_inn {
    text-align: center;
    margin-bottom: 30px;
  }
  .home-discover_tour_heading {
    margin-bottom: 40px;
  }
  .feature-in {
    margin-bottom: 10px;
  }
  .guide-inner {
    text-align: center;
  }
  .guide-cont .cmn_text {
    max-width: 100%;
  }
  .guide-inner .box {
    justify-content: center !important;
  }
  .guide-cont {
    margin-bottom: 0 !important;
  }
  .guide-inner {
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }
  .banner_form {
    max-width: 100%;
  }
  .banner_form form {
    display: block !important;
  }
  .form-group.item {
    margin-bottom: 13px;
  }
  .navbar ul {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 20px 0;
    background: #fff;
    gap: 20px;
  }

  .navbar ul.show {
    display: flex;
  }
  .discover_tour_inn .cmn_heading {
    font-size: 35px;
  }
  .banner_heading {
    font-size: 50px;
  }
  p {
    font-size: 15px;
  }
  .counter-in {
    margin-bottom: 15px;
  }
  .guide-cont .cmn_heading {
    font-size: 35px;
  }
  .dest-block-in {
    margin-bottom: 20px;
  }
  .info_inner {
    margin-bottom: 20px;
  }
  .youtube .cmn_heading {
    font-size: 55px;
  }
  .news-img img {
    width: 100%;
  }
  .news-inner {
    margin-bottom: 15px;
  }
  .footer-in {
    text-align: center !important;
  }
  .footer-in p {
    max-width: 100%;
  }
  .footer_logo {
    margin: 0 auto;
  }
  .footer_social .social{
    justify-content: center;
  }
  .inner-cmn_heading{
    font-size: 50px;
  }
  .cmn_text{
    font-size: 14px;
  }
  .skill {
    width: 100%;
  }
  .skills-section{
    margin-bottom: 20px;
  }
  .tour_banner_form form{
    display: block !important;
  }
}
@media (max-width: 600px) {
  .youtube .cmn_heading {
    font-size: 45px;
  }
  .testimonial-heading .cmn_heading {
    font-size: 30px;
  }
  .copy_bottom{
    display: block !important;
    text-align: center !important;
  }
  .cont-info-inner{
    padding: 40px;
  }
}
@media (max-width: 576px) {
  .banner_heading {
    font-size: 35px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 20px;
  }
  p {
    font-size: 14px;
  }

  .btn {
    font-size: 14px;
    padding: 10px 22px;
  }

  .navbar-brand img {
    width: 110px;
  }

  .hero {
    padding: 60px 0;
  }
  .discover_tour_inn .cmn_heading {
    font-size: 28px;
  }
  .discover_tour_inn .cmn_text {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .banner_heading {
    font-size: 36px;
  }
  h2 {
    font-size: 22px;
  }

  .card-body h3 {
    font-size: 18px;
  }
  .card-body p {
    font-size: 13px;
  }

  footer h4 {
    font-size: 18px;
  }
}
@media (max-width: 375px) {
  .youtube .cmn_heading {
    font-size: 30px;
  }
  .inner-cmn_heading{
    font-size: 40px;
  }
}
@media (max-width: 320px) {
  .banner_heading {
    font-size: 22px;
  }
  h2 {
    font-size: 18px;
  }
  h3 {
    font-size: 16px;
  }
  p {
    font-size: 12px;
  }

  .navbar-brand img {
    width: 80px;
  }

  .btn {
    padding: 8px 15px;
    font-size: 12px;
  }

  .hero {
    padding: 40px 0;
  }

  .card-body h3 {
    font-size: 16px;
  }
  .card-body p {
    font-size: 12px;
  }
}
