body {
  margin: 0;
}

* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  list-style: none;
  vertical-align: top;
  text-decoration: none;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

.d-flex {
  display: flex;
}

.pl0 {
  padding-left: 0 !important;
}

:root {
  --primary-color: #0D6EFD;
  --secondary-color: #070823;
  --font-blue: #070823;
  --font-2: #4F4F4F;
  --white-color: #fff;
  --black-color: #000;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/*  */
.search {
  margin-top: 70px;
}

.AD186900_1 .tab-block {
  width: 100%;
}

/*  */
/* header */
.header {
  margin: 60px 0 60px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
}

.nav_section_responsive {
  display: none;
}

.nav_section_responsive .menu-icon {
  width: 40px;
  cursor: pointer;
}

.logo-img {
  text-align: left;
}

.logo-img a {
  position: relative;
}

.logo-img a::after {
  border-radius: 0 0px 30px 0;
  top: -51px;
  left: -786px;
  width: 1080px;
  height: 122px;
  content: '';
  position: absolute;
  z-index: -1;
  background: #ffffff;
}

.logo-img a::before {
  border-radius: 30px 0;
  top: -50px;
  left: 294px;
  width: 60px;
  height: 60px;
  content: '';
  position: absolute;
  z-index: 0;
  background: transparent;
  box-shadow: -10px -12px #ffffff;
}

/* .header::after {
  border-radius: 0 0px 30px 0;
  top: -30px;
  left: 30px;
  width: 20%;
  height: 121px;
  content: '';
  position: absolute;
  z-index: -1;
  background: #ffffff;
} */

/* .header::before {
    border-radius: 30px 0;
    top: -30px;
    left: 480px;
    width: 60px;
    height: 60px;
    content: '';
    position: absolute;
    z-index: 0;
    background: transparent;
    box-shadow: -10px -12px #ffffff;
} */

.header-shape::after {
  border-radius: 30px 0;
  top: 91px;
  left: 30px;
  width: 60px;
  height: 60px;
  content: '';
  position: absolute;
  z-index: 0;
  background: transparent;
  box-shadow: -10px -12px #ffffff;
}

.header-menu {
  display: flex;
  flex-direction: row;
  gap: 0 30px;
  width: 100%;
  justify-content: center;
  height: 100%;
}


.header-menu ul {
  display: flex;
  gap: 0 15px;
  margin-bottom: 0 !important;
  padding-left: 0;
  align-items: center;
}

.header-menu ul li a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  color: var(--white-color);
  transition: all ease .5s;
  padding: 3px 10px;
  border-radius: 100px;
}

.header-menu .hactivebtn {
  background: #ffffff21;
}

.header-menu ul li a:hover {
  background: #ffffff21;
}

.header_signup {
  font-size: 15px;
  font-weight: 600;
  color: var(--white-color);
  text-decoration: none;
  background: var(--primary-color);
  border: none;
  border-radius: 50px;
  padding: 12px 15px 12px;
  line-height: 25px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
  transition: all ease .4s;
  width: fit-content;
}

.header_signup i {
  font-size: 18px;
  margin-right: 8px;
}

.header_signup:hover {
  box-shadow: inset 0 1.9em 0em 0em var(--secondary-color),
    inset 0 -1.9em 0em 0em var(--secondary-color);
  border-color: var(--primary-color);
  color: #fff;
}

/*  */



.hamburger {
  cursor: pointer;
  display: inline-block;
  z-index: 1001;
  position: relative;
}

.hamburger svg {
  height: 45px;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
  fill: none;
  stroke: rgb(255, 255, 255);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
  stroke-dasharray: 12 63;
}

.hamburger.active svg {
  transform: rotate(-45deg);
}

.hamburger.active .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

/* nav menu */
.navmenu {
  position: fixed;
  top: 0;
  right: -345px;
  width: 330px;
  height: 100%;
  background: #1c1c1c;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  padding-top: 100px;
  transition: right 0.5s ease;
  z-index: 1000;
}

.navmenu.active {
  right: 0;
}

.navmenu li {
  border-bottom: 1px solid;
  margin: 0 10px;
}

.navmenu li a {
  color: white;
  text-decoration: none;
  padding: 20px 20px 8px;
  font-size: 17px;
  font-weight: 500;
  transition: background 0.3s;
  display: inline-block;
}

.navmenu .ham-btn {
  margin: 50px 20px 0;
  background-color: var(--primary-color);
  border-radius: 100px;
  display: flex;
  justify-content: center;
}

.navmenu .ham-btn a {
  padding: 20px;
}

.navmenu .ham-btn a i {
  padding: 0;
}


/*  */
/* banner */
.banner-main {
  padding: 30px;
  width: 100%;
  top: 0;
}

.banner-main-img {
  background-image: url(../images/banner12.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  border-radius: 30px;
  padding: 200px 15px 30px;
}

.banner-text-main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.banner-text-main p:nth-child(1) {
  font-size: 52px;
  font-weight: 500;
  font-family: "Ubuntu", sans-serif;
  color: var(--white-color);
  max-width: 58%;
  text-transform: capitalize;
  line-height: 125% !important;
}

.banner-text-main p:nth-child(2) {
  font-size: 16px;
  max-width: 380px;
  line-height: 19px !important;
  color: var(--white-color);
  height: fit-content;
  margin-bottom: 0 !important;
}

.ytplaybtnmaon {
  position: relative;
  top: 100px;
  left: -70px;
}

.yt-play {
  border-radius: 100px;
  background-color: var(--white-color);
  width: 60px;
  height: 60px;
  align-items: center;
  text-align: center;
  justify-content: center;
  display: flex;
  position: absolute;
  top: 0;
}

.yt-play i {
  font-size: 25px;
  color: var(--primary-color);
}

.circle {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: rotate 10s linear infinite;
}

.text {
  position: absolute;
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 12px;
  color: white;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -47px;
  left: 4px;
}

.text span {
  position: absolute;
  transform-origin: 0 55px;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}


/* pickdestination */
.pickdestination {
  padding: 30px;
}

.pickdestimain {
  border-radius: 30px;
  background-color: #ecf5ff;
  padding: 30px 15px;
}

.sliderheadmain {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}

.sliderheadmain p:nth-child(1) {
  font-size: 20px;
  font-weight: 600;
  color: var(--font-2);
  line-height: 35px !important;
  margin-bottom: 10px !important;
}

.sliderheadmain p:nth-child(2) {
  font-size: 30px;
  font-weight: 700;
  max-width: 500px;
  color: var(--font-2);
  margin-bottom: 0 !important;
  line-height: 40px !important;
}

.slidecardone {
  margin: 0 15px;
}

.slideimgcard {
  position: relative;
}

.slideimgcard img {
  width: 100%;
  height: 300px;
  border-radius: 30px;
}

.slideimgcard::after {
  border-radius: 0 30px;
  top: 0;
  right: 75px;
  width: 60px;
  height: 60px;
  content: '';
  position: absolute;
  z-index: 99999999;
  background: transparent;
  box-shadow: 7px -29px #ecf5ff;
}

.slideimgcard::before {
  border-radius: 0 30px;
  top: 75px;
  right: 0;
  width: 60px;
  height: 60px;
  content: '';
  position: absolute;
  z-index: 99999999;
  background: transparent;
  box-shadow: 15px -7px #ecf5ff;
}

.slidearrrowbtn {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary-color);
  display: flex;
  width: 75px;
  height: 75px;
  border-radius: 30px;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  border: 8px solid #ecf5ff;
  box-shadow: 13px -13px 0px 13px #ecf5ff;
}

.slidearrrowbtn:hover i {
  transform: rotate(360deg);
}

.slidearrrowbtn i {
  transition: all ease .5s;
  transform: rotate(316deg);
}

.slidecontent {
  padding: 15px 0;
}

.slidecontent1 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 10px;
}

.slidecontent1 p:nth-child(1) {
  font-size: 19px;
  font-weight: 700;
  color: var(--font-2);
  margin-bottom: 0 !important;
}

.slidecontent1 p:nth-child(2) {
  font-size: 19px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0 !important;
}

.slidecontent2 {
  font-size: 13px;
  font-weight: 600;
  color: var(--font-2);
  line-height: 18px !important;
  margin-bottom: 15px !important;
}

.slidecontent3 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 100%;
  align-items: center;
  margin: 12px 0 0;
}

.slidecontent3 p {
  font-size: 13px;
  font-weight: 500;
  color: #808080;
  margin-bottom: 0 !important;
}

.slidecontent3 p i {
  color: var(--primary-color);
  margin: 3px 6px 0 0;
}

.slidecontent3 a {
  background: var(--primary-color);
  padding: 5px 12px 7px;
  border-radius: 100px;
  font-size: 15px;
  color: #fff;
  align-items: center;
  display: flex;
  gap: 0 10px;
  transition: all ease 0.5s;
}
.slidecontent3 a i{
margin-top: 3px;
}

.slidecontent3 a:hover {
  background: var(--secondary-color);
}

.sliderpickmain .slick-prev,
.sliderpickmain .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: -112px;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.sliderpickmain .slick-prev:before,
.sliderpickmain .slick-next:before {
  font-family: 'slick';
  font-size: 32px;
  line-height: 1;
  opacity: 1;
  color: var(--primary-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.sliderpickmain .slick-prev {
  left: 92%;
}

.sliderpickmain .slick-next {
  right: 25px;
}

/* hoteltabsmain */
.hoteltabsmain {
  margin: 30px 0;
}

.hoteltabhead {
  margin: 20px 0;
}

.hthp p:nth-child(1) {
  font-size: 28px;
  font-weight: 700;
  color: var(--black-color);
  margin-bottom: 10px !important;
}

.hthp p:nth-child(2) {
  font-size: 16px;
  font-weight: 500;
  max-width: 700px;
  color: #808080;
  margin-bottom: 0 !important;
}

.hotabulli {
  display: flex;
  justify-content: end;
  height: 100%;
  align-items: center;
}

.hotaltaboneone {
  position: relative;
  width: 100%;
  border-radius: 30px;
  height: 500px;
}

.hotaltaboneone img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
}

.hotaltabtoneetext {
  position: absolute;
  bottom: 30px;
  left: 50px;
  padding: 5px 10px;
  border-radius: 15px;
  background: #00000063;
}

.hotaltabtwoone {
  position: relative;
  width: 100%;
  border-radius: 30px;
  height: 500px;
}

.hotaltabtwoone img {
  width: 100%;
  border-radius: 30px;
  height: 100%;
  object-fit: cover;
}

.hotaltabtoneetext {
  position: absolute;
  bottom: 30px;
  left: 50px;
}

.hotaltabtoneetext p {
  font-size: 22px;
  color: var(--white-color);
  font-weight: 600;
  margin-bottom: 5px !important;
}

.hotaltabtoneetext span {
  color: var(--white-color);
  font-size: 15px;
  font-weight: 400;
}

.hotaltabtoneetext span i {
  color: var(--white-color);
  margin: 5px 0px 0 0;
}

.hotaltabtwotwo img {
  width: 100%;
  border-radius: 30px;
  height: 350px;
  object-fit: cover;
}

.hotaltabtwotwo p {
  font-size: 22px;
  color: var(--black-color);
  font-weight: 600;
  margin: 5px 0 !important;
  max-width: 200px;
}

.hotaltabtwotwo span {
  color: var(--black-color);
  font-size: 15px;
  font-weight: 400;
}

.hotaltabtwotwo span i {
  color: var(--black-color);
  margin: 5px 0px 0 0;
}

.hotaltabtwothre {
  margin-top: 80px;
}

.tabs li {
  color: var(--white-color);
  font-size: 13px;
  display: inline-block;
  padding: 5px 15px;
  cursor: pointer;
  background: var(--black-color);
  border-radius: 100px;
  transition: all ease .5s;
}

.tabs li:hover {
  background: var(--primary-color);
}

.tabs li.current {
  background: var(--primary-color);
}

.tab-content {
  display: none;
}

.tab-content.current {
  display: inherit;
}

/* testimonial */

.testimonial {
  padding: 30px;
}

.testimonial-main {
  background-color: rgb(236, 245, 255);
  border-radius: 30px;
  padding: 30px 15px;
}


.testim-inmg-main p:nth-child(1) {
  font-size: 20px;
  font-weight: 600;
  color: var(--font-2);
  line-height: 35px !important;
  margin: 30px 0 10px !important;

}

.testim-inmg-main p:nth-child(2) {
  font-size: 30px;
  font-weight: 700;
  color: var(--font-2);
  line-height: 35px !important;
  margin: 0px 0 40px !important;
}

.testiimgmainafter {
  width: 100%;
  height: 500px;
}

.testiimgmainafter {
  background-image: url(../images/testiimg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  border-radius: 30px;
}

.testim-inmg-main img {
  width: 100%;
  border-radius: 30px;
}

.testihesdpilot {
  display: flex;
  align-items: center;
}

.testihesdpilot span p:nth-child(1) {
  font-size: 22px;
  font-weight: 700;
  color: var(--font-2);
  margin-bottom: 0 !important;
}

.testihesdpilot span p:nth-child(2) {
  font-size: 14px;
  font-weight: 500;
  color: var(--font-2);
  margin-bottom: 0 !important;
}

.testihesdpilot img {
  width: 35%;
}

.review-text {
  margin: 110px 0 30px;
}

.review-text p {
  font-size: 22px;
  font-weight: 700;
  color: var(--font-2);
  margin-bottom: 0 !important;
}

.testislidermain {
  margin-top: 200px;
}

.testislidermain .slick-prev,
.testislidermain .slick-next {
  top: -15%;
}

.testislidermain .slick-next {
  right: 10px;
}

.testislidermain .slick-prev {
  left: 85%;
}

.testislidermain .slick-prev:before,
.testislidermain .slick-next:before {
  font-size: 32px;
  opacity: 1;
  color: var(--primary-color);
}

.testicardone {
  background: #fff;
  border-radius: 30px;
  padding: 70px 20px 20px;
  box-shadow: 0px 3px 10px -8px #000;
  margin: 0 0 15px;
}

.testicardone i {
  font-size: 30px;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.testicardone p {
  font-size: 14px;
  font-weight: 500;
  color: var(--font-2);
  margin-bottom: 15px !important;
}

.testicardone .tstiimgname {
  display: flex;
  gap: 0 15px;
  align-items: center;
}

.testicardone .tstiimgname img {
  width: 80px;
  height: 80px;
  border-radius: 100px;
}

.testicardone .tstiimgname span p:nth-child(1) {
  font-size: 17px;
  font-weight: 700;
  color: var(--font-2);
  margin-bottom: 0 !important;
}

.testicardone .tstiimgname span p:nth-child(2) {
  font-size: 15px;
  font-weight: 400;
  color: #808080;
  margin-bottom: 0 !important;
}



/* toppickdesti */
.toppickdesti {
  padding: 30px;
}

.toppickdestimain {
  background: var(--white-color);
  border-radius: 30px;
  padding: 30px 15px;
  box-shadow: 0px 0px 6px 0px #e9e9e9;
}

.toppickdestihead p {
  font-size: 30px;
  font-weight: 700;
  max-width: 300px;
  color: var(--font-2);
  margin-bottom: 30px !important;
}

.toppcone {
  position: relative;
}

.toppcone a {
  overflow: hidden;
}

.toppcone:hover .toppcarroicon {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.toppcone img {
  width: 100%;
  border-radius: 30px;
}

.toppcone p {
  margin: 6px 0 0 20px !important;
  font-size: 19px;
  font-weight: 500;
  color: var(--black-color);
}

.toppcarroicon {
  position: absolute;
  bottom: 75px;
  left: 40px;
  background: #fff;
  display: flex;
  align-items: center;
  border-radius: 100px;
  width: 70px;
  height: 70px;
  justify-content: center;
  border: 5px solid #e5e5e5;
  transform: translateY(33px);
  transition: all ease 0.5s;
  opacity: 0;
  visibility: hidden;
}

.toppcarroicon i {
  font-size: 25px;
  color: var(--primary-color);
  transform: rotate(316deg);
}

/* appdwnsec */

.appdwnsec {
  padding: 30px;
}

.appdmain {
  /* background-color: #ECF5FF; */
  border-radius: 30px;
  padding: 30px 15px;
  position: relative;
}

/* .appdmain::after{
     background-image: url(../images/dwnbgicon.png);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: "";
    opacity: 0.1;
    z-index: 1;
} */
.adwntext {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #ECF5FF;
  padding: 30px;
  border-radius: 30px;
  position: relative;
  /* box-shadow: -15px -15px 0px 10px #C6D6FA; */
}

.adwntext::after {
  position: absolute;
  width: 70%;
  height: 70%;
  background-color: #C6D6FA;
  content: '';
  z-index: -1;
  border-radius: 30px;
  top: -20px;
  left: -20px;
  /* box-shadow: -15px -15px 0px 10px #C6D6FA; */
}

.adwntextp1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 55px !important;
  color: var(--font-2);
  margin: 0 !important;
}

.adwntextp2 {
  margin: 30px 0 60px !important;
  color: var(--font-2);
  font-size: 16px;
  font-weight: 500;
}

.dwntbnmain {
  display: flex;
  gap: 0 15px;
  width: 100%;
}

.btn-settings {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  width: 200px;
  height: 65px;
  border: none;
  border-radius: 50px;
  padding-left: 10px;
  /* background: linear-gradient(90deg, #8a2be2, #b233ff, #d640ff); */
  /* background: linear-gradient(90deg, #f6764f, #f78664, #ffa184); */
  background: linear-gradient(90deg, #88abf9, #a5c1ff, #c8d9ff);
  /* box-shadow: 0 6px 15px rgba(136, 0, 255, 0.3); */
  /* box-shadow: 0 6px 15px rgb(246 118 79 / 31%); */
  box-shadow: 0 6px 15px rgb(137 172 249 / 38%);
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-settings:hover {
  transform: translateY(-3px);
  /* box-shadow: 0 10px 20px rgba(136, 0, 255, 0.4); */
  box-shadow: 0 10px 20px #89acf9c2;
}

.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at top left, #ffffff, #dfe3f9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 4px 4px 8px rgba(0, 0, 0, 0.08),
    inset -4px -4px 8px rgba(255, 255, 255, 0.9),
    0 2px 4px rgba(0, 0, 0, 0.2);
  /* border: 2px solid rgba(158, 115, 255, 0.7); */
  /* border: 2px solid var(--primary-color, 0.7); */
  border: 2px solid #437cff;
}

.icon-circle i {
  font-size: 20px;
  /* color: var(--primary-color); */
  color: #6b98ff;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

.btn-text p:nth-child(1) {
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.3px;
  margin-bottom: 0 !important;
}


.btn-text p:nth-child(2) {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.3px;
  margin-bottom: 0 !important;
}

.adwnimg {
  text-align: center;
}

.adwimgmain {
  max-width: 600px;
  margin: 0 auto;
}

.adwimgmain img {
  width: 100%;
}











































/* footer */
.footer {
  padding: 30px;
}

.footer-main {
  border-radius: 30px;
  background-color: var(--primary-color);
  padding: 30px 15px;
}

.logopart p:nth-child(2) {
  font-size: 20px;
  font-weight: 500;
  color: var(--white-color);
  margin: 40px 0 10px !important;
  line-height: 30px !important;
}

.logopart p:nth-child(3) {
  margin-bottom: 0 !important;
  font-size: 15px;
  font-weight: 400;
  color: var(--white-color);
  max-width: 500px;
}

.footer-input {
  height: 100%;
  align-items: center;
  display: flex;
}

.footer-input .input-box {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #d0e7f9;
  border-radius: 100px;
  padding: 10px 15px 10px 20px;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.footer-input .input-box i:nth-child(1) {
  color: var(--white-color);
  font-size: 16px;
  margin-right: 10px;
  background: var(--font-blue);
  padding: 10px;
  border-radius: 6px;
}

.footer-input .input-box input {
  border: none;
  outline: none;
  font-size: 14px;
  flex: 1;
  color: #6a7894;
  background: transparent;
}

.arrowtextsapn {
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: 100px;
  gap: 0 10px;
}

.arrowtextsapn p {
  margin-bottom: 0 !important;
  font-size: 14px;
  color: var(--white-color);
}

.arrowtextsapn i {
  margin-bottom: 0 !important;
  font-size: 14px;
  color: var(--white-color);
}

.footer-input .input-box i:nth-child(3) {
  color: var(--white-color);
  font-size: 16px;
  margin-left: 10px;
  background: var(--font-blue);
  padding: 10px;
  border-radius: 6px;
}

.fmenupart {
  text-align: center;
  margin: 70px 0 50px;
}

.fmenupart ul {
  display: flex;
  justify-content: center;
  padding: 0;
  gap: 8px;
  flex-wrap: wrap;
}


.fmenupart ul li a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  color: var(--white-color);
  transition: all ease .5s;
  padding: 3px 10px;
  border-radius: 100px;
}

.fmenupart ul li a:hover {
  background: #ffffff21;
}

.fmenupart p {
  font-size: 200px;
  text-transform: capitalize;
  color: var(--white-color);
  line-height: 260px !important;
  letter-spacing: 40px;
}

.copyright-p {
  height: 100%;
  align-items: center;
  display: flex;
}

.copyright-p p {
  font-size: 15px;
  font-weight: 400;
  color: var(--white-color);
  margin-bottom: 0 !important;
}

.copyright-social ul {
  display: flex;
  gap: 0 25px;
  padding-left: 0;
  justify-content: center;
}


.copyright-social ul li a {
  color: var(--white-color);
  border: 2px solid var(--white-color);
  width: 35px;
  height: 35px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease .5s;
  text-decoration: none;
}

.copyright-social ul li a:hover {
  background-color: #fff;
  color: var(--secondary-color);
}

.copyright-img {
  display: flex;
  gap: 0 10px;
  justify-content: end;
}

.copyright-img img {
  display: flex;
  gap: 0 10px;
  justify-content: end;
  width: 95px;
  height: 25px;
}





/* all pages */
.retreivebooking1,
#contact_us_form {
  background: transparent !important;
}

.content-div,
.footer {
  clear: both
}

.pages-hero {
  padding: 0 20px 20px;
}

.pages-banner-img {
  background-repeat: repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  padding: 100px 0;
  z-index: 1;
}

.pages-banner-img::before {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  right: 0;
  opacity: 0.7;
  content: '';
  background-image: linear-gradient(45deg, #ff86619c, #000000);
  z-index: -1;
}

.pages-banner-h1 {
  font-size: 70px;
  font-weight: 600;
  line-height: 1.2;
  color: white;
}

.pages-banner-h2 {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: white;
}

.pages-content-main {
  margin: 20px auto;
  padding: 5px;
  width: 73%;
}

.pages-content-p1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  color: rgb(0, 0, 0);
  text-align: left;
  margin: 20px 0 0;
}


.pages-content-p2 {
  font-size: 15px;
  margin: 20px 0 0;
  font-weight: 500;
  line-height: 28px;
  text-align: left;
  color: #000;
}

.pages-content-p3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  text-transform: uppercase;
  text-align: left;
  color: rgb(0, 0, 0);
  margin: 20px 0 0;
}

.p-highlight {
  font-weight: 800;
}

.p-dot-p4 {
  font-size: 16px;
  margin-top: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  color: rgb(0, 0, 0);
  position: relative;
  margin-left: 20px;
  list-style: none;
}

.p-dot-p4::before,
.hf {
  content: "•";
  position: absolute;
  left: -15px;
  font-size: 20px;
  color: black;
  top: -3px;
}

.pp-content-p5 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  color: rgb(0, 0, 0);
  margin: 20px 0 0;
}

.pp-content-p6 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  color: rgb(0, 0, 0);
  margin: 8px 0 0;
}

/* all pages */








@media screen and (max-width: 1400px) {}

@media screen and (max-width: 1300px) {
  .menu-col-main {
    display: none;
  }

  .hamburger-active {
    margin-right: 50px;
    align-items: center;
    height: 100%;
    display: flex;
    justify-content: end;
  }

  .sliderheadmain {
    gap: 0 250px;
  }




  .nav_section_responsive {
    padding: 0 60px 0 0;
    align-items: center;
    display: flex;
    width: 100%;
    justify-content: end;
  }






}

@media screen and (max-width: 1200px) {
  .fmenupart p {
    font-size: 170px;
  }

  .testihesdpilot {
    justify-content: space-between;
  }

  .review-text {
    margin: 30px 0 30px;
  }

  .footertop .row {
    gap: 25px 0;
  }


  .tab-content .row {
    gap: 24px 0;
  }



}

@media screen and (max-width: 992px) {

  .banner-text-main {
    flex-direction: column;
  }

  .banner-text-main p:nth-child(1) {
    max-width: 100%;
  }

  .banner-text-main p:nth-child(2) {
    max-width: 90%;
  }


  .ytplaybtnmaon {
    top: 50px;
    left: 23px;
    margin-bottom: 30px;
  }


  .fmenupart p {
    font-size: 120px;
    line-height: 185px !important;
  }

  .sliderheadmain {
    gap: 30px 250px;
    display: flex;
    flex-direction: column;
  }

  .toppickdestimain .row {
    gap: 25px 0;
  }

  .testimonial-main .row {
    gap: 20px 0;
  }

  .testim-inmg-main p {
    margin: 5px 0 15px !important;
  }

  .hotaltabtwothre {
    margin-top: 0;
  }



  .hotaltabtwotwo p {
    margin: 5px 0 0 !important;
    max-width: 100%;

  }

  .footerbottom .row {
    gap: 20px 0;
  }

  .foocpysec {
    width: 100%;
    align-items: center;
  }

  .copyright-p {

    justify-content: center;
  }

  .copyright-img {
    justify-content: center;
  }

}

@media screen and (max-width: 768px) {
  .fmenupart p {
    font-size: 88px;
    line-height: 84px !important;
    margin-top: 30px;
    letter-spacing: 25px;
  }

  .hthp p {
    margin-bottom: 30px !important;
  }

  .banner-text-main p:nth-child(1) {
    font-size: 50px;
  }
.hotabulli {
  margin-top: 15px;
}
}

@media screen and (max-width: 576px) {

  .header {
    margin: 15px 0 15px;
  }

  .hlogoafterfive {
    width: 60%;
  }

  .hmenuafterfive {
    width: 40%;
  }

  .banner-main-img {
    padding: 130px 5px 30px;
  }

  .logo-img a img {
    width: auto;
  }

  .header-shape::after {
    top: 69px;
    left: 10px;
    width: 60px;
    height: 60px;
  }

  .logo-img a::after {
    left: -100px;
    width: 330px;
    height: 100px;
  }

  .logo-img a::before {
    top: -25px;
    left: 230px;
    width: 45px;
    height: 40px;
  }

  .banner-text-main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .banner-text-main p:nth-child(1) {
    font-size: 29px;
    max-width: 100%;
  }

  .banner-text-main p:nth-child(2) {
    font-size: 15px;
    max-width: 100%;
  }

  .ytplaybtnmaon {
    top: 35px;
    left: 20px;
    margin: 20px 0;
  }

  .nav_section_responsive {
    padding: 7px 10px 0 0;
  }



  .hamburger-active {
    margin-right: 5px;
    align-items: center;
    height: 100%;
    display: flex;
    justify-content: end;
  }

  .banner-main {
    padding: 10px;
  }

  .pickdestination {
    padding: 10px;
  }

  .pickdestimain {
    padding: 30px 5px;
  }

  .testimonial {
    padding: 10px;
  }

  .testimonial-main {
    padding: 30px 5px;
  }

  .toppickdesti {
    padding: 10px;
  }

  .toppickdestimain {
    padding: 30px 5px;
  }

  .testihesdpilot {
    justify-content: space-between;
    display: flex;
    flex-direction: column;
  }

  .appdwnsec {
    padding: 10px;
  }

  .appdmain {
    padding: 30px 5px;
  }

  .testihesdpilot span p:nth-child(1) {
    font-size: 20px;
  }

  .toppickdestihead p {
    max-width: 100%;
    font-size: 24px;
  }

  .footer {
    padding: 10px;
  }

  .footer-main {
    border-radius: 30px;
    background-color: var(--primary-color);
    padding: 30px 5px;
  }

  .dwntbnmain {
    display: flex;
    gap: 15px 15px;
    width: 100%;
    flex-wrap: wrap;
  }

  .adwntext {
    padding: 10px 15px 20px;
  }

  .adwntextp1 {
    font-size: 24px;
    line-height: 39px !important;
  }

  .adwntextp2 {
    margin: 15px 0 30px !important;
    font-size: 14px;
  }

  .arrowtextsapn {
    padding: 5px 11px;
    gap: 0 5px;
  }

  .arrowtextsapn p {
    font-size: 12px;
  }

  .footer-input .input-box input {
    font-size: 14px;
    width: 100%;
  }

  .fmenupart p {
    font-size: 47px;
    line-height: 45px !important;
    margin-top: 30px;
    letter-spacing: 16px;
  }

}