/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 80px;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  /* --first-color: hsl(18, 95%, 55%); */
  --first-color: #aa8a36;
  --second-color: hsl(42, 98%, 52%);
  --first-gradient: linear-gradient(90deg,
                  hsl(18, 95%, 55%),
                  hsl(18, 98%, 64%));
  --title-color: hsl(255, 12%, 12%);
  --text-color: hsl(225, 12%, 24%);
  --text-color-light: hsl(255, 4%, 70%);
  --body-color: hsl(0, 0%, 100%);
  --container-color: hsl(0, 0%, 100%);
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(255, 20%, 10%);
  --gray-border: hsl(255, 6%, 90%);
  --black-border: hsl(255, 10%, 20%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --big-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --big-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: #fefefe;
  color: var(--text-color);
}

h1, h2, h3, h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
  padding-left: 0;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
/* .container {
  max-width: 1120px;
  margin-inline: 1.5rem;
} */



/*@media screen and (max-width:600px){*/
/*  .section {*/
/*    padding: 20px 0 !important; */
/*  }*/
/*}*/


.section__title, 
.section__subtitle {
  text-align: center;
}

.section__title {
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 1.5rem;
}

.section__subtitle {
  display: block;
  font-size: var(--normal-font-size);
  font-weight: 300;
  color: var(--first-color);
  margin-bottom: .5rem;
  text-align: left;
  text-transform: uppercase;
}

.main {
  overflow: hidden;
}

/*=============== HEADER & NAV ===============*/
.header{
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: var(--z-fixed);
  height:100px;
}
.header .nav{
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
}

.nav_logo {
  max-width: 100px;
  /* width: 120px; */
}

.nav_toggle,
.nav_close{
  font-size: 1.5rem;
  color: var(--first-color);
  cursor: pointer;
  transition: color .4s;
}

/* Navigation for mobile devices */

@media screen and (max-width:1150px){
  .nav_menu{
    position: fixed;
    top: 0;
    right: -100%;
    background-color: #fff;
    width: 80%;
    height: 100%;
    padding: 7.5rem 3.5rem 0;
    border-left: .3px solid var(--black-border);
    transition: right .4s;
  }
}

.nav_list{
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
  margin-bottom: 0;
}
.nav_link{
  color: #333;
  font-weight: 500;
  transition: color .4s;
}
.nav_link:hover{
  color: var(--first-color);
}

.nav_close{
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}


/* Show menu */
.show-menu{
  right: 0;
}

/* Change background header */


/* Active link */


/*=============== BUTTON ===============*/
.main_btn{
  display: inline-flex;
  background: var(--first-color);
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  padding: 14px 40px;
  transition: box-shadow .4s;
  border-radius: 50px;
  gap: 10px;
}
.main_btn:hover{
  box-shadow: 0 8px 32px hsla(18,95%,55%,.3);
  color: var(--white-color);
}




/*=============== HOME ===============*/
.home{
  padding-top: 120px;
}
.home .grid_row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.home .content h1{
  font-size: 48px;
  font-weight: 700;
}
.home .content p{
  line-height: 32px;
}


@media screen and (max-width:1399px){
  .home .content h1{
    font-size: 40px;
  }
}

@media screen and (max-width:1156px){
  .home .content h1{
    font-size: 30px;
  }
}
@media screen and (max-width:991px){
  .home .grid_row{
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width:600px){
  .home{
    padding-top: 120px !important;
  }
}




/* =============== packages ================== */
.packages{
  padding: 70px 0;
}
.packages .grid_row{
  display: grid;
  grid-template-columns: 25% 72%;
  gap: 50px;
}


.packages .package_box{
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  padding: 10px;
  border-radius: 20px;
}
.packageSwiper{
  padding: 0px 0px 70px 20px;
}
.packages .package_box .package_image{
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 300px;
}
.packages .package_box .package_image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.packages .package_box .flex_row{
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: space-between;
}
.packages .package_box .flex_row .main_btn{
  min-height: 40px;
  min-width: 40px;
  max-width: 40px;
  max-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.swiper-pagination-bullet {
  width: 6;
  height: 6;
  background-color: #ccc;
  opacity: 1;
  margin: 0 6px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Active bullet style */
.swiper-pagination-bullet-active {
  background-color: var(--first-color);
  transform: scale(1.2);
}


@media screen and (max-width:1156px){
  .packages .left h2{
    font-size: 26px;
  }
}
@media screen and (max-width:991px){
  .packages .grid_row{
    grid-template-columns: 100%;
  }
  .packageSwiper {
    padding: 0px 0px 70px 0px;
}
}


/*=============== ABOUT ===============*/

.about{
  padding: 70px 0;
}
.about .grid_row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about .image{
  border-radius: 20px;
  overflow: hidden;
}
.about .content h2{
  font-size: 40px;
  font-weight: 700;
}
.about .content p{
  line-height: 32px;
}


@media screen and (max-width:1399px){
  .about .content p{
    line-height: 28px;
  }
}
@media screen and (max-width:1156px){
  .about .grid_row{
    grid-template-columns: 1fr;
  }
  .about .image{
    order: 2;
  }
}
@media screen and (max-width:600px){
  .about .content h2{
    font-size: 30px;
  }
}





/*=============== SERVICES ===============*/
.services .grid_row{
  display: grid;
  grid-template-columns:55% 42%;
  gap: 50px;
  align-items: center;
}
.services h2{
  font-size: 48px;
  font-weight: 700;
}


.services .flex_row{
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}

.services .flex_row .item{
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  margin-bottom: 30px;
  border-radius: 20px;
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 30px 20px;
  max-width: 90%;
  border-left: 4px solid var(--first-color);
  background: #fff;
}
.services .flex_row .item h6{
  font-size: 20px;
  margin-bottom: 0;
}
.services .flex_row .icon{
  width: 60px;
}


@media screen and (max-width:1399px){
  .services h2{
    font-size: 40px;
  }
}
@media screen and (max-width:1156px){
  .services h2{
    font-size: 30px;
  }
}
@media screen and (max-width:991px){
  .services .grid_row{
    grid-template-columns: 1fr;
    gap: 20p;
  }
  .services .flex_row .item{
    max-width: 100%;
  }
}





.testimonial_section{
  padding: 70px 0;
}

.testimonial_section .user-image{
  width: 80px;
  height: 80px;
  margin: 20px auto;
  border-radius: 50px;
  overflow: hidden;
}
.testimonial_section .user-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial_section .card{
  height: 400px;
  border: none;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.testimonial_section .ratings i{
  color: #F5D521;
}

.testimonial_section h5{
  margin-bottom: 20px;
}







footer {
  background: #333;
  padding: 30px 0;
}

footer .booking_logos{
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 0px 0 50px;
  border-bottom: 0.5px solid #f2eee938;
}
footer .booking_logos img{
  width: 150px;
}

footer .footer_container{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 50px;
  padding: 30px 0;
  color: #fff;
}

footer .footer_logo{
  width: 120px;
  margin-bottom: 20px;
}
footer .footer_title{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}

footer .contact-details p{
  margin-bottom: 0;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 100;
}
footer a{
  color: #f5f5f5;
  transition: all .3s;
  font-size: 16px;
  font-family: var(--primary-font);
  font-weight: 300;
}
footer a:hover{
  color: var(--green-color);
}
footer ul li{
  margin-top: 10px;
}

footer .social_links{
  display: flex;
  gap: 10px;
}
footer .social_links a{
  font-size: 25px;
}


@media screen and (max-width:991px){
  footer .footer_container{
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width:600px){
  footer .footer_container{
    grid-template-columns: 1fr;
  }
}







/* Swiper class */


/*=============== PROJECTS ===============*/


/*=============== CONTACT ===============*/


/*=============== FOOTER ===============*/


/*=============== SCROLL BAR ===============*/


/*=============== SCROLL UP ===============*/


/* Show Scroll Up */


/*=============== BREAKPOINTS ===============*/
/* For small devices */


/* For medium devices */

@media screen and (max-width:340px){
  .container{
    margin-inline: 1rem;
    
  }
  
}

@media screen and (min-width:768px){
  .nav_menu{
    width: 50%;
  }
}


@media screen and (min-width:1150px){
  .header .nav{
    height: calc(var(--header-height) + 2rem);
  }
  .nav_toggle,
  .nav_close{
    display: none;
  }
  .nav_menu{
    width: initial;
  }
  .nav_list{
    flex-direction: row;
    align-items: center;
    column-gap: 4rem;
  }

  .bg-header .nav_link{
    color: var(--text-color);
  }
  .bg-header .active-link,
  .bg-header .nav_link:hover{
    color: var(--first-color);
  }

  .bg-header .main_btn,
  .bg-header .main_btn:hover{
    color: var(--white-color);
  }

}


/* For large devices */







.pt-170{
  padding-top: 170px;
}
.pt-140{
  padding-top: 140px;
}
.pb-70{
  padding-bottom: 70px;
}

.section_title{
  margin-bottom: 50px;
}
.section_title h2{
  font-size: 48px;
  font-weight: 700;
}
.section_title p{
  max-width: 70%;
  margin: 20px auto;
}

@media screen and (max-width:1399px){
  
}
@media screen and (max-width:1156px){

}
@media screen and (max-width:991px){
  .section_title h2{
    font-size: 40px;
  }
}
@media screen and (max-width:600px){
  .section_title h2{
    font-size: 32px;
  }
  .section_title p{
    max-width: 100%;
  }
}



.package_page_wrapper .grid_row .item{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  align-items: center;
  margin-bottom: 50px;
}

.package_page_wrapper .item h2{
  font-size: 40px;
  color: #fff;
}
.package_page_wrapper .item .image{
  border-radius: 20px;
  overflow: hidden;
}

.package_page_wrapper .item .content{
  background-color: #aa8a36;
  padding: 40px;
  margin-left: -30px;
  color: #fff;
  border-radius: 20px;
}
.package_page_wrapper .item_two .content{
  margin-left: 0;
  margin-right: -30px;
  z-index: 2;
}

@media screen and (max-width:1399px){
  .package_page_wrapper .item h2{
    font-size: 30px;
  }
}
@media screen and (max-width:1156px){
  .package_page_wrapper .item .content{
    padding: 20px;
  }
  .package_page_wrapper .item h2{
    font-size: 22px;
  }
}
@media screen and (max-width:991px){
  .package_page_wrapper .grid_row .item{
    grid-template-columns: 1fr;
  }
  .package_page_wrapper .item .image{
    order: 1;
  }
  .package_page_wrapper .item .content{
    margin: -30px auto 0px;
    z-index: 2;
    max-width: 80%;
    order: 2;
  }
}
@media screen and (max-width:600px){
  .package_page_wrapper{
    padding-top: 150px !important;
  }
  .package_page_wrapper .item .content{
    max-width: 90%;
  }
}













.package_page_wrapper .package_box{
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  padding: 10px;
  border-radius: 20px;
}
.package_page_wrapper .package_box .package_image{
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 300px;
}
.package_page_wrapper .package_box .package_image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.package_page_wrapper .package_box .flex_row{
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: space-between;
}
.package_page_wrapper .package_box .flex_row .main_btn{
  min-height: 40px;
  min-width: 40px;
  max-width: 40px;
  max-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}





.why_travel{
  padding: 70px 0;
}

.why_travel h2{
  font-size: 40px;
  font-weight: 700;
}

.why_travel .box{
  width: 100%;
  height: 200px;
  text-align: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 20px;
}

.why_travel .box h3{
  font-size: 20px;
}












.contact_wrapper .loaction_details .item {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.contact_wrapper .item .icon {
  min-width: 60px;
  max-width: 60px;
  min-height: 60px;
  max-height: 60px;
}

.contact_wrapper .item p {
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 500;
}

.contact_wrapper .item a {
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 500;
  color: #000;
}

.contact_wrapper .contact-img{
  border-radius: 20px;
  overflow: hidden;
}