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

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: hsl(220, 24%, 12%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: rgb(240, 245, 255);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

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

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

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
 
body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  overflow-x: hidden;

 
}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}

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

/*=============== HEADER ===============*/
.main-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
/* left spacer (balances Book Now width) */
.main-header::before {
    content: "";
    width: 120px; /* MUST match Book Now width */
}
.main-header .logo img {
    height: 55px;
}

.main-header .right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== MAIN NAV ===== */
.main-header nav ul.level-1 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.main-header nav li.level-1 {
    position: relative;
}

/* main links */
.main-header nav a.level-1 {
    text-decoration: none;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: #222;
    padding: 10px 10px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    /* display: flex; */
    gap: 6px;
    transition: color 0.3s ease;
}

.main-header nav li.level-1:hover > a.level-1,
.main-header nav li.level-1.active > a.level-1 {
    color: #c49a4b;
}

/* ===== DROPDOWN ICON ===== */
.main-header nav a .icon::after {
    content: "▾";
    font-size: 12px;
    transition: transform 0.3s ease;
    right: 2px;
    height: 50%;
}

.main-header nav li.level-1:hover a .icon::after {
    transform: rotate(180deg);
}

/* ===== DROPDOWN ===== */
.main-header ul.level-2 {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* show dropdown on hover */
.main-header li.level-1:hover > ul.level-2 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* dropdown items */
.main-header ul.level-2 li {
    list-style: none;
}

.main-header ul.level-2 a.level-2 {
    display: block;
    padding: 10px 18px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Times New Roman', Times, serif;
    transition: background 0.3s ease, color 0.3s ease;
}

.main-header ul.level-2 a.level-2:hover,
.main-header ul.level-2 li.active a.level-2 {
    background: #f6f2ea;
    color: #c49a4b;
}


/* ===== BOOK NOW BUTTON ===== */
.main-header nav li.booknow {
    margin-left: auto;
}

.main-header li.booknow a.level-1 {
    background: #c49a4b;
    color: #ffffff !important;
    padding: 10px 18px;
    border-radius: 30px;
    margin-left: 200px;
}

.main-header li.booknow a.level-1:hover {
    background: #b08a3f;
}
/* ===============================
   SWITCH BUTTON (HAMBURGER)
================================ */

.switch-btn {
  display: none; /* hidden on desktop */
  font-size: 26px;
  cursor: pointer;
  position: relative;
}

.switch-btn i {
  color: #111;
  font-size: 22px;
  display: none;
}

/* Show hamburger by default */
.switch-btn .fa-bars {
  display: block;
}

/* Active state (menu open) */
.switch-btn.active .fa-bars {
  display: none;
}

.switch-btn.active .fa-xmark {
  display: block;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    text-align: center;
    z-index: 1000;
    background: #ffffff;
    padding: 0px;
    flex-direction: column;
    width: 60%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    border-top: 1px solid #eee;
    justify-content: center;
  }
  .mobile-nav.active{
    display: block;
  }


button:hover{
    color: white;
}
.banner video{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}
@media(min-aspect-ratio: 16/9){
    .banner video{
        width: 100%;
        height: auto;
    }
} 
 /* =========================== video bg styling============================= */
 .vid-container{
  overflow-x: hidden;
 }
 
.container-pop {
  height: 50px;
  width: 100vw;
  z-index: 10;
  position: relative;
  /* background-color: #111; */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  display: none;
}
.container-pop.active{
  display: block;
}
.close-container {
  height: 50px;
  width: 50px;
  background-color: rgba(1, 1, 1, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 7rem;
  z-index: 10000;
}

.container:hover .close-container {
  margin-top: 10px;
  animation: slideDowen 1s ease;
  z-index: 9999;
}
.container-pop.show {
    display: block;
}
.container.show {
  opacity: 1;
}

@keyframes slideDowen {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(8%);
  }
  65% {
    transform: translateY(-4%);
  }
  80% {
    transform: translateY(4%);
  }
  95% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%);
  }
}

.close-container p {
  cursor: pointer;
}

.close-container p:hover {
  transform: scale(1.1);
}

.section {
 position: relative; 
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.video-container {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.video-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(1, 1, 1, 0.6);
}

.video {
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video2 {
  width: 0%;
  height: 0%;
  min-height: 0%;
  min-width: 0%;
}

.video2.play {
  z-index: 11;
  position: relative;
  animation: popup 1500ms ease-in-out forwards;
}

@keyframes popup {
  0% {
    width: 0%;
    height: 0%;
  }
  50% {
    height: 2px;
    width: 100%;
  }
  100% {
    height: 100%;
    width: 100%;
  }
}

.text-p {
  z-index: 10;
  position: relative;
  /* background-color: #111; */
 
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.text-p h1 {
  color: transparent;
  -webkit-text-stroke: 2px #a16b25;
  font-size: 1.7rem;
   font-family: "Bellefair", serif;
   text-transform: uppercase;
   line-height: 2.0;
}

.btn-p {
  border: none;
  outline: none;
  background: transparent;
  border: 1px solid #a16b25;
  padding: 0.5rem 2rem;
  color: #a16b25;
  cursor: pointer;
  font-weight: 600;
  transition: 0.8s;
  font-family: "open sans";
  border-radius: 4px;
}

button:hover {
  background-color: #fff;
  color: #111;
}

/* ===================================== VIDEO STYLING END===================================== */
/* welcome msg designs */
.welcome-msg{
  padding: 50px 0;
  text-align: center;
  background-color: #f0c3c3;
  position: relative;
}
.top{
  position: absolute;
  height: 10px;
  top: -10px;
  left: 0;
  width: 100%;
  background: url(../../assets/images/separatorp-02.png) repeat-x center 0;
  z-index: 1000;
}
.top-1{
  position: absolute;
  height: 10px;
  bottom:0;
  left: 0;
  width: 100%;
  background: url(../../assets/images/separator-02.png) repeat-x center 0;
  z-index: 1000;
}
.welcome-msg h2{
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #a16b25;
   font-family: "Bellefair", serif;
}
.welcome-msg p{
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.5;
  font-family: var(--body-font);
  margin-bottom: 30px;
}
.scroll-down{
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 100%;
  height: 30px;
  pointer-events: none;
  display: inline-block;
  text-align: center;
  z-index: 100;
}
.scroll-down .scroll-down-wrapper{
  width: auto;
  padding: 0 10px;
}
.scroll-down .scroll-down-wrapper .d-icon{
  background: url(../../assets/images/scrolldon.png) no-repeat center center;
  display: inline-block;
  width: 30px;
  height: 30px;
  z-index: 100;
}

/* CONTAINER B STYLING */
.home-box-a{
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 16px;
  line-height: 22px;
  vertical-align: baseline;
  font-weight: 300;
  color: #423f40;
  box-sizing: border-box;
  padding:  0 auto;
  align-items: center;
}
.icon-des{
  margin: 30px 40px 0 40px;
  position: relative;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.icon-des::before{
  display: inline-flex;
  content: '';
  height: 0;
  width: 50%;
  border-top: 3px dotted #a16b25;
}
.icon-des::after{
  display: inline-flex;
  content: '';
  height: 0;
  width: 50%;
  border-top: 3px dotted #a16b25;
}
.box-ico{
  width: 40px;
  height: 40px;
  background-image: url(../../assets/images/newi.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0 40px;
  margin: 0 40px;
}
.box-ico.email{
  width: 50px;
  height: 50px;
  background-image: url(../../assets/images/email.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0 30px;
  margin: 0 30px;
}
.box-ico.kili{
   width: 40px;
  height: 40px;
  background-image: url(../../assets/images/mountain-icon.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0 40px;
  margin: 0 40px;
}
.list-a{
  background: #f4f0eb;
  position: relative;
  width: 100%;
  padding: 0 30px;
  align-items: center;
  margin: 0 auto;

}
.list-a li{
  width: 470px;
  float: left;
  margin: 0 30px 30px 0;
}
.list-a li:nth-child(2){
  width: 850px;
  height: 270px;
  margin-right: 0;
  vertical-align: baseline;
  
}
.list-a li:nth-child(3){
  width: 850px;
  height: 270px;
  margin-right: 0;
  vertical-align: baseline;
  
}
.list-a li:nth-child(4){
  width: 100%;
  height: 270px;
  margin-right: 0;
  vertical-align: baseline;
  
}
.list-a li:nth-child(2) .arrow{
  
    top: 50%;
    margin-top: -20px;
    left: auto;
    right: -20px;
    width: 40px;
}
.list-a li:nth-child(3) .arrow{
  
    top: 50%;
    margin-top: -20px;
    right: auto;
    left: -20px;
    width: 40px;
}
.list-a li:nth-child(4) .arrow{
      top: 50%;
    margin-top: -20px;
    left: -20px;
    width: 40px;
}

.list-a li .image{
  background-color: #423f40;
  height: 300px;
  display: block;
  position: relative;
  overflow: hidden;
}
.list-a li:nth-child(2) .image{
  width: 40%;
  height: 270px;
  margin-right: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}
.list-a li:nth-child(3) .image{
  width: 40%;
  height: 270px;
  margin-right: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}
.list-a li:nth-child(4) .image{
      flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 470px;
    width: 470px;
    height: 270px;
}

.list-a li:nth-child(2) .info{
  width: 60%;
  height: 270px;
  margin-right: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}
.list-a li:nth-child(3) .info{
  width: 60%;
  height: 270px;
  margin-right: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}
.list-a li:nth-child(4) .info{
  width: 60%;
}
.list-a li:nth-child(2) a{
 display: flex;
 flex-direction: row-reverse;
}
.list-a li:nth-child(3) a{
 display: flex;
 flex-direction: row ;
}
.list-a li:nth-child(4) a{
 display: flex;
 flex-direction: row ;
}
.list-a li a{
  display: block;
  position: relative;
}

.list-a li .image .mask{
  background: url(../../assets/images/highlight-a-mask.png) no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: all 1s ease-in-out;
  opacity: 1;
}
.list-a li .image .img{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 100%;
  transition: all 1s ease;
}
.list-a li:hover .image .img{
 transform: scale(1.1);
}
.cont-wrapper{
  padding-top: 80px;
  padding-bottom:0px;
}
.cont-wrapper h2{
  margin-bottom: 40px;
  text-align: center;
}
.cont-wrapper h2 span{
  color: #a16b25;
  border: solid 1px #dedede;
  border-left: none;
  border-right: none;
  padding: 20px 0;
  display: inline-block;
   font-family: "Bellefair", serif;
}
.it-desc .it-wrapper{
  column-count: 2;
  padding: 40px 10px;
  text-align: center;
  column-count: 2;
  max-width: 1200px;
  margin: 0 auto;
}
 .it-desc .it-wrapper p{
  text-align: start;
  line-height: 1.5;
} 
.list-a li .info{
  background-color: #a16b25;
  display: flex;
  align-items: center;
  padding: 55px;
  position: relative;
}
.info .arrow{
  display: block;
  text-align: center;
  position: absolute;
  text-align: center;
  left: 0;
  top: -20px;
  width: 100%;
  z-index: 5;
}
.info .arrow span{
  background-color: #a16b25;
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 40px;
}
.list-a li .info .text{
  display: block;
 
}
.list-a li .info .text .title{
  line-height: 25px;
  text-transform: uppercase;
  color: #9e9b90;
  margin-bottom: 15px;
  display: block;
}
.list-a li .info .text .description{
  display: block;
  color: #fff;
  text-transform: uppercase;
}
.list-a .clearfix{
  clear: both;
  display: block;
  height: 0;
}
@media only screen and (max-width: 992px) {
    .list-a li, .list-a li:nth-child(2), .list-a li:nth-child(3), .list-a li:nth-child(4) {
        width: calc(100% - 30px);
        margin: 15px;
    }
    .list-a li a {
        display: flex;
    }
    .list-a li .image, .list-a li:nth-child(4) .image {
        width: 40%;
        height: 270px;
        flex-basis: 40%;
    }
        .list-a li .info {
        height: auto;
        width: 60%;
    }
        .list-a li .arrow {
        top: 50%;
        margin-top: -20px;
        left: -20px;
        width: 40px;
    }
        .list-a li:nth-child(4) a {
        flex-direction: row-reverse;
    }
    .list-a li:nth-child(4) .arrow {
        top: 50%;
        margin-top: -20px;
        left: auto;
        right: -20px;
        width: 40px;


}
}
@media only screen and (max-width: 600px) {
      * {
        font-size: 14px;
        line-height: 20px;
    }
    .cont-wrapper h2{
  margin-bottom: 20px;
  text-align: center;
}
.cont-wrapper h2 span{
  font-size: 20px;
  color: #a16b25;
  border: solid 1px #dedede;
  border-left: none;
  border-right: none;
  padding: 10px 0;
  display: inline-block;
   font-family: "Bellefair", serif;
}
    .home-box-a{
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 16px;
  line-height: 22px;
  vertical-align: baseline;
  font-weight: 300;
  color: #423f40;
  box-sizing: border-box;
  margin:  0 auto;
  height: auto;
}
   .list-a{
    width: 100%;
    height: auto;
    
   }
   .list-a .item{
    height: auto;
   }
    .list-a li, .list-a li:nth-child(2), .list-a li:nth-child(3), .list-a li:nth-child(4) {
        width: 100%;
        margin: 0;
        margin-bottom: 10px;
    }
    .list-a li:nth-child(2),.list-a li:nth-child(3),.list-a li:nth-child(4){
  width: 100%;
  height: auto;
  margin-right: 0;
  vertical-align: baseline;
  
}
    .list-a li:nth-child(2) .arrow,.list-a li:nth-child(3) .arrow,.list-a li:nth-child(4) .arrow{
 top: 50%;
        margin-top: -20px;
        left: auto;
        right: -20px;
        width: 40px;
    }
    .list-a li a ,.list-a li:nth-child(2) a ,.list-a li:nth-child(3) a ,.list-a li:nth-child(4) a{
display: block;
    }
        .list-a li .image, .list-a li .image, .list-a li:nth-child(2) .image, .list-a li:nth-child(3) .image, .list-a li:nth-child(4) .image {
        width: 100%;
        height: 200px;
        
}
    .list-a li .info, .list-a li:nth-child(2) .info, .list-a li:nth-child(3) .info, .list-a li:nth-child(4) .info {
        width: 100% !important;
        padding: 30px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        flex-wrap: wrap;
       opacity: 1 !important;
       visibility: visible !important;
       height: auto;
       padding: 15px;
    }
        .list-a li .arrow, .list-a li:nth-child(2) .arrow, .list-a li:nth-child(3) .arrow, .list-a li:nth-child(4) .arrow {
        left: 50%;
        margin-left: -20px;
        top: 0;
    }
    .list-a .info .text{
  display: block;
  height: auto;
}
}
/* btn know more designs */
.box-knowmore{
  display: flex;
  justify-content: center;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
  align-items: center;
  position: relative;
}
.box-knowmore:before{
  content: '';
  display: inline-flex;
  width: 50%;
  height: 0;
  border-top: 1px solid #a88d62;
}
.box-knowmore:after {
    content: "";
    display: inline-flex;
    width: 50%;
    height: 0;
    border-top: solid 1px #a88d62;
}
.box-knowmore a{
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 40px;
  border-radius: 40px;
  border: 1px solid #a88d62;
  margin: 0 40px;
  flex-shrink: 0;
  text-transform: uppercase;
  position: relative;
}
.box-knowmore a:hover{
  background-color: #a16b25;
   transition: all 0.3s ease;
}
.box-knowmore a .text{
      white-space: nowrap;
    color: #a88d62;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
        display: inline-block;
    vertical-align: middle;
    transition: all 0.3s ease;
}
.box-knowmore a .text:hover{
  color: #fff;
}
.box-knowmore a .icons{
  background: url(../../assets/images/sprite-25x25.png) no-repeat 0 0;
  display: inline-block;
  width: 25px;
  height: 25px;
  vertical-align: middle;
  margin-left: 10px;

}


/* title design */
.general-section {
  padding: 100px 0;
  position: relative; }

.general-section h2 {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 30px;
  line-height: 35px;
  text-transform: uppercase; }

.general-section .badge {
  text-align: center;
  margin-bottom: 30px; }

.general-section .description blockquote,
.general-section .description blockquote * {
  font-family: "Bellefair", serif;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  font-weight: normal;
  margin-left: 0;
  font-size: 40px;
  line-height: 50px; }

.general-section .description blockquote:after {
  background: url("../images/line-blockquote.png") no-repeat center center;
  content: "";
  height: 30px;
  display: block;
  margin-top: 20px; }
#home-highlights .swiper-slide .mask {
    background-color: #19110a;
    opacity: 0.8;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

#home-highlights * {
    color: #a16b25;
}
.swiper-slide .wrapper {
    display: flex
;
    align-items: center;
    justify-content: center;
    position: relative;
}
.wrapper {
    width: 1170px;
    margin: 0 auto;
}
/* home highlights */

#home-highlights {
  background-color: #19110a;
  padding: 0;
  height: 550px; }
  #home-highlights * {
    color: #fff; }
  #home-highlights .swiper-container {
    height: 100%; }
  #home-highlights .swiper-slide {
    padding: 100px 50px;
    height: 100% !important;
    display: flex;
    align-content: center; }
    #home-highlights .swiper-slide .wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative; }
    #home-highlights .swiper-slide .mask {
      background-color: #19110a;
      opacity: 0.8;
      position: absolute;
      height: 100%;
      width: 100%;
      top: 0;
      left: 0; }
    #home-highlights .swiper-slide .content {
      width: 60%;
      text-align: center; }
    #home-highlights .swiper-slide .title {
      font-family: "Bellefair", serif;
      font-size: 30px;
      line-height: 30px;
      white-space: nowrap;
      display: flex;
      flex-direction: column;
      text-transform: uppercase;
      color: #a16b25;
      position: relative; }
    #home-highlights .swiper-slide .title:before,
    #home-highlights .swiper-slide .title:after {
      content: "";
      background: url("../../assets/images/line-white-1.png") no-repeat center center;
      display: inline-flex;
      width: 100%;
      height: 25px; }
    #home-highlights .swiper-slide .title:before {
      background: url("../images/home-highlights-grap1.png") no-repeat center 0;
      margin-bottom: 30px;
      height: 31px; }
    #home-highlights .swiper-slide .box-knowmore .btn {
      background: #fff; }
    #home-highlights .swiper-slide .box-knowmore .btn .text {
      color: #19110a; }
    #home-highlights .swiper-slide .box-knowmore .btn:hover {
      background-color: #c39b78; }
    #home-highlights .swiper-slide .box-knowmore .btn:hover .text {
      color: #fff; }
  #home-highlights .swiper-pagination {
    right: 0;
    display: flex;
    flex-direction: column;
    display: none; }
  #home-highlights .swiper-button-next:after, #home-highlights .swiper-button-prev:after {
    font-size: 20px; }
  #home-highlights .swiper-button-prev, #home-highlights .swiper-container-rtl .swiper-button-next {
    left: 5px; }
  #home-highlights .swiper-button-next, #home-highlights .swiper-container-rtl .swiper-button-prev {
    right: 5px; }
  #home-highlights .w2-pagination {
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    width: 100%;
    display: flex;
    align-items: center; }
  #home-highlights .w2-pagination .wrapper {
    position: relative; }
  #home-highlights .w2-pagination .wrapper .swiper-pagination-bullet {
    flex-direction: column;
    width: 10px;
    height: auto; }
  #home-highlights .w2-pagination .wrapper .swiper-pagination-bullet:after {
    height: 40px;
    width: 1px;
    border: none; }

    /* home others */
    
#home-others {
  display: flex;
  text-align: center; }
  #home-others .left {
    background-color: #ffe9d6;
    width: 50%;
    position: relative;
    overflow: hidden; }
  #home-others .right {
    background-color: #19110a;
    width: 50%;
    position: relative;
    overflow: hidden; }
  #home-others .left a:before, #home-others .right a:before {
    background: rgba(195, 155, 120, 0.9) url("../../assets/images/highlights-plus.png") no-repeat center center;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    z-index: 3;
    position: absolute;
    top: -30px;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease, top 0.3s ease; }
  #home-others .left a, #home-others .right a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 100px; }
    #home-others .left a .mask, #home-others .right a .mask {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1; }
    #home-others .left a .content, #home-others .right a .content {
      display: block;
      width: 70%;
      margin: 0 auto;
      position: relative;
      z-index: 2; }
    #home-others .left a .title, #home-others .right a .title {
      font-family: "Bellefair", serif;
      font-size: 30px;
      line-height: 30px;
      white-space: nowrap;
      color: #fff;
      display: flex;
      flex-direction: column;
      text-transform: uppercase;
      position: relative; }
    #home-others .left a .title:before,
    #home-others .left a .title:after, #home-others .right a .title:before,
    #home-others .right a .title:after {
      content: "";
      background-color: rgba(200, 0, 0, 0.2);
      display: inline-flex;
      width: 100%;
      height: 25px; }
    #home-others .left a .title:before, #home-others .right a .title:before {
      margin-bottom: 30px;
      color: #fff;
      height: 31px; }
    #home-others .left a .description, #home-others .right a .description {
      display: block;
      padding-top: 30px;
    color: #fff; }
  #home-others .left a .title:before {
    background: url("../../assets/images/home-destinations-top.png") no-repeat center 0;
    height: 44px; }
  #home-others .left a .title:after {
    background: url("../../assets/images/line-brown-1.png") no-repeat center center; }
  #home-others .left a .mask {
    background-color: rgba(247, 212, 182, 0.7); }
  #home-others .right a .title:before {
    background: url("../../assets/images/home-preparation-top.png") no-repeat center 0;
    height: 50px; }
  #home-others .right a .title:after {
    background: url("../../assets/images/line-white-1.png") no-repeat center center; }
  #home-others .right a .mask {
    background-color: rgba(109, 110, 113, 0.8); }
  #home-others .right a * {
    color: #fff; }
  #home-others .left a:hover:before, #home-others .right a:hover:before {
    opacity: 1;
    top: 0; }
     

    /* ======================= PACKAGE PAGE STYLING START======================== */
    .package-banner{
      position: relative;
      display: block;
      width: 100%;
      height: 400px;
      overflow: hidden;
    }
    .overlay{
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1;
    }
    .package-banner::before{
      position: absolute;
      content: "";
      width: 100%;
      height: 50px;
      bottom: 0;
      left: 0;
      background: url(../../assets/images/cloudss.png);
      background-repeat: repeat-x;
      background-size: contain;
      background-position: center;
      z-index: 1000;
    }
    .package-banner .package-inner{
      display: flex;
      justify-content: center;
      align-items: center;
      position: absolute;
       background:
        linear-gradient(
            rgba(0, 0, 0, 0.4),   /* color with opacity */
            rgba(0, 0, 0, 0.4)
        ),
        url('../images/20180613_163506eto.jpg');  
       /* background:url(../images/20180613_163506eto.jpg) ; */
       top: 0px;
       left: 0;
       width: 100%;
       height: 100%;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }
     .package-banner .package-inner.bn1{
     
       background:
        linear-gradient(
            rgba(0, 0, 0, 0.4),   /* color with opacity */
            rgba(0, 0, 0, 0.4)
        ),
        url('../../assets/images/Coquer-mount-kilimanjaro.png');  
       /* background:url(../images/20180613_163506eto.jpg) ; */
       top: 0px;
       left: 0;
       width: 100%;
       height: 100%;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }
    .package-banner .package-inner.pg{
     
       background:
        linear-gradient(
            rgba(0, 0, 0, 0.4),   /* color with opacity */
            rgba(0, 0, 0, 0.4)
        ),
        url('../../assets/images/baby-leopard.jpg');  
       /* background:url(../images/20180613_163506eto.jpg) ; */
       top: 0px;
       left: 0;
       width: 100%;
       height: 100%;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }
    .package-banner .package-inner.bn2{
     
       background:
        linear-gradient(
            rgba(0, 0, 0, 0.4),   /* color with opacity */
            rgba(0, 0, 0, 0.4)
        ),
        url('../../assets/images/images5.jpg');  
       /* background:url(../images/20180613_163506eto.jpg) ; */
       top: 0px;
       left: 0;
       width: 100%;
       height: 100%;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }
        .package-banner .package-inner.bn3{
     
       background:
        linear-gradient(
            rgba(0, 0, 0, 0.4),   /* color with opacity */
            rgba(0, 0, 0, 0.4)
        ),
        url('../../assets/images/shutterstock_244933717-scaled.webp');  
       /* background:url(../images/20180613_163506eto.jpg) ; */
       top: 0px;
       left: 0;
       width: 100%;
       height: 100%;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }
      .package-banner .package-inner.bn4{
     
       background:
        /* linear-gradient(
            rgba(0, 0, 0, 0.4),   /* color with opacity 
            rgba(0, 0, 0, 0.4)
        ), */
        url('../../assets/images/zanzibar.jpg');  
       /* background:url(../images/20180613_163506eto.jpg) ; */
       top: 0px;
       left: 0;
       width: 100%;
       height: 100%;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }
     .package-banner .package-inner.bn5{
     
       background:
        /* linear-gradient(
            rgba(0, 0, 0, 0.4),   /* color with opacity 
            rgba(0, 0, 0, 0.4)
        ), */
        url('../../assets/images/kilimanjaro-marangu_640.jpg');  
       /* background:url(../images/20180613_163506eto.jpg) ; */
       top: 0px;
       left: 0;
       width: 100%;
       height: 100%;
      background-position: bottom;
      background-size: cover;
      background-repeat: no-repeat;
    }
    .package-banner .package-inner .title{
      font-size: 1.7rem;
      text-transform: uppercase;
      color: #fff;
      position: relative;
       font-family: "Bellefair", serif;
       line-height: 1.5;
       z-index: 2;
    }
    .package-banner .package-inner .title::before{
      content: "";
      position: absolute;
      top: 70px;
      left: 0;
      width: 50px;
      height: 20px;
      background: url(../images/line-white-1.png);
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
    }
    .list-c{
      padding: 0 10px;
      width: 100%;
      align-items: center;
    
    }
    .it-container{
     display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 30px;
  align-items: center;

    }
    .package{
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }
    .it-img{
      position: relative;
      height: 400px;
      width: 100%;
      overflow: hidden;
    }
    .it-img img{
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;

    }
   .it-img .pack-day{
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 20px;
    background-color: #a16b25;
    z-index: 100;
    border-radius: 10px;
     font-family: "Bellefair", serif;
   }
   .it-img .pack-day span:nth-child(1){
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-right: 20px;
   }
   .it-img .pack-day span:nth-child(2){
    color: #423F40;
    font-size: 14px;
    font-weight: 600;
    margin-right: 20px;
   }
   .h-detail{
    font-size: 24px;
    padding: 20px 0; 
    text-align: center;
    font-weight: bold;
    color: #a16b25;
    font-family: "Bellefair", serif;
    text-transform: uppercase;
    border-bottom: 2px dotted #a16b25;

   }
   .it-wrapper-cont{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    font-family: "Bellefair", serif;
    color: #423F40;
   }
   .it-wrapper-cont .p-left span{
    font-weight: 600;
    font-size: 16px;
    font-family: "Bellefair", serif;
   }
   .it-wrapper-cont:nth-child(2){
    padding-top: 0;
   }
   .explore{
    display: flex;
    justify-content: center;
    align-items: center;
   }
   .explore a{
    display: block;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    background: #a16b25;
    color: #fff;
    padding: 20px 0;
   }
    /* ============================= PACKAGE PAGE STYLING END======================================== */
    /* ================================== ITINENARIES DESIGNS================================= */
/* =============================== galleys desidns START============================= */
/* ======================================= gallleys designs end================================================= */
.images-container{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}
.gallery{
    width: 80%;
    height: 90vh;
    max-width: 1600px;
    max-height: 800px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.gallery-image{
    width: 30%;
    height: calc(50% - 20px);
    min-width: 300px;
    min-height: 200px;
    margin: 10px;
    overflow: hidden;
}

.image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

/* popup */

.popup{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 80%;
    max-width: 1600px;
    height: 90vh;
    max-height: 800px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
    transition: 1s;
    opacity: 0;
}

.popup.active{
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.popup.active .close-btn,
.popup.active .image-name,
.popup.active .index,
.popup.active .large-image,
.popup.active .arrow-btn{
    opacity: 1;
    transition: opacity .5s;
    transition-delay: 1s;
}

.top-bar{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #000;
    color: #fff;
    text-align: center;
    line-height: 50px;
    font-weight: 300;
}

.image-name{
    opacity: 0;
}

.close-btn{
    opacity: 0;
    position: absolute;
    top: 15px;
    right: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f00;
    cursor: pointer;
}

.arrow-btn{
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    border-radius: 50%;
    border: none;
    background: none;
    cursor: pointer;
}

.left-arrow{
    left: 10px;
}

.right-arrow{
    right: 10px;
    transform: translateY(-50%) rotate(180deg);
}

.arrow-btn:hover{
    background: rgba(0, 0, 0, 0.5);
}

.index{
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 80px;
    font-weight: 100;
    color: rgba(255, 255, 255, 0.4);
    opacity: 0;
}

.large-image{
    margin-top: 5%;
    width: 80%;
    height: 80%;
    object-fit: contain;
    opacity: 0;
}
      /* ================================== ITINENARIES DESIGNS END================================= */
.it-btn-box{
  background: url(../images/go-to-page-decoration.png) no-repeat center center;
  text-align: center;
  margin: 60px 0;
}

.btn-quote {
    background-color: #fff;
    border-top: solid 2px #b67c31;
    border-bottom: solid 2px #b67c31;
    display: inline-flex;
    align-items: center;
     font-family: "Bellefair", serif;
    height: 50px;
    padding: 0 23px;
    color: #404040;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s 
ease;
}
.btn-quote:hover {
background-color: #a16b25;
}

.btn-quote:before {
    background-color: #fff;
    content: "";
    border: solid 2px #b67c31;
    transform: rotate(45deg);
    width: 32px;
    height: 32px;
    position: absolute;
    top: 6px;
    left: -17px;
    border-right: none;
    border-top: none;
    transition: background-color 0.3s 
ease;
}
.btn-quote:after {
    background-color: #fff;
    content: "";
    border: solid 2px #b67c31;
    transform: rotate(45deg);
    width: 32px;
    height: 32px;
    position: absolute;
    top: 6px;
    right: -17px;
    border-left: none;
    border-bottom: none;
    transition: background-color 0.3s 
ease;
}
#experience-days .it-out-wrapper{
  width: 750px; 

}

.kili-description{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 450px;
  overflow: hidden;
  padding: 10px 20px;
}
.kil-left{
  width: 40%;
  min-height: 400px;
  padding: 20px;
  overflow: hidden;
}
.kil-left ,.kil-right{
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  font-family: "Bellefair", serif;
}
.kil-right{
  width: 50%;
}
.kil-right h2{
  font-size: 30px;
  text-transform: uppercase;
  font-family: "Bellefair", serif;
  color: #a16b25;
}
.kil-right p{
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: justify;
  
}
.kil-left img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.it-out-wrapper{
  max-width: 1170px;
  padding: 0 10px;
  margin: 0 auto;
}
.it-out-wrapper .item{
display: flex;
}
#experience-days .it-out-wrapper .it-left{
      width: 50px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    justify-content: center;
}
#experience-days .it-out-wrapper .it-left .it-day{
  background-color: #fff;
  width: 50px;
  height: 50px;
  border: 2px solid #a16b25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  position: relative;
  z-index: 2;

}
#experience-days .it-out-wrapper .item.end .it-left .it-day{
  background-color: #fff;
  width: 16px;
  height: 16px;
  border: 2px solid #a16b25;
  background-color: #a16b25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  position: relative;
  z-index: 2;

}
#experience-days .it-out-wrapper .item.end .it-left .line{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  margin-left: -1px;
  background-color: #a16b25;

}
#experience-days .it-out-wrapper .it-left .it-day span{
  color: #a16b25;
    font-size: 18px;
    line-height: 21px;
    display: inline-flex;
    transform: rotate(-45deg);
}
#experience-days .it-out-wrapper .it-left .line{
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  margin-left: -1px;
  background-color: #a16b25;
}
#experience-days .it-out-wrapper .itna-right{
  width: 100%;
  padding-left: 30px;
  margin-bottom: 50px;
  padding-top: 10px;
  overflow: hidden;
}
#experience-days .it-out-wrapper .itna-right .it-title,#experience-days .it-out-wrapper .itna-right .it-title span{
      font-size: 30px;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 50px;
    font-size: 1.3rem;
}
#experience-days .it-out-wrapper .itna-right .it-title{
  color: #a6a6a6;
    text-align: left;
    text-transform: uppercase;
     font-family: "Bellefair", serif;
     line-height: 2.0;
     font-size: 1.3rem;
}
#experience-days .it-out-wrapper .itna-right .it-description p{
line-height: 1.5;
text-align: justify;
 font-family: "Bellefair", serif;
 font-size: 1.5rem;
}
 .itna-right .it-title span{
  color: #a16b25;
  
 }
.img-box{
  margin-top: 30px;
  overflow: hidden;
  width: 100%;
  height: 400px;
  align-items: center;
  position: relative;
}
.img-box img{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}
/* =================================== CONTACT US STYLING START=================================== */
.general-section {
    padding: 100px 0;
    position: relative;
}
.general-section .wrapper {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}
.twocolumns {
    column-count: 2;
    column-gap: 40px;
}
.general-section.alt1 {
    background-color: #f6f1e6;
}
.general-section h2 {
    text-align: center;
    padding: 0;
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 40px;
}
#contacts-container form {
    display: flex;
    align-items: flex-start;
}
#contacts-container form .left {
    width: 50%;
    padding-right: 15px;
    display: flex;
    flex-wrap: wrap;
}
#contacts-container form .box {
    margin-bottom: 30px;
}
#contacts-container form .box.box-name {
    width: 50%;
    padding-right: 15px;
}
#contacts-container form .label {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-family: "Amiri", serif;
    color: #a57809;
}
#contacts-container form .mandatory {
    background: url(../images/mandatory.png) no-repeat center center;
    width: 8px;
    height: 8px;
}
input[type="text"], input[type="password"], input[type="email"], input[type="date"], input[type="number"], textarea {
    border-color: #b9a179;
    height: 35px;
    font-size: 16px;
    line-height: 18px;
}
input[type="text"], input[type="password"], input[type="email"], input[type="date"], input[type="number"] {
    border: solid 1px #a6a6a6;
    height: 40px;
    padding: 0 10px;
    width: 100%;
    border-radius: 0;
    -webkit-appearance: none;
}
#contacts-container form .box.box-when {
    width: 50%;
    padding-left: 15px;
}
#contacts-container form .box.box-email {
    width: 70%;
    padding-right: 15px;
}
#contacts-container form .box.box-phone {
    width: 30%;
    padding-left: 15px;
}
#contacts-container form .box.box-adults {
    width: 33.3%;
    padding-right: 15px;
}
select {
   background: #fff url(../images/select-arrow.png) no-repeat center right;
    padding-right: 40px;
    border-color: #b9a179;
    height: 35px;
    border-radius: 0 !important;
    font-size: 16px;
        width: 100%;
}

#contacts-container form .box.box-teens {
    width: 33.3%;
    padding: 0 15px;
}
#contacts-container form .box.box-children {
     width: 33.3%;
    padding: 0 15px;
        padding-left: 10px;
    }
#contacts-container form .box.box-mandatory {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
    margin-top: 30px;
    font-size: 12px;
}
#contacts-container form .right {
    width: 50%;
    padding-left: 15px;
}
textarea {
    border: solid 1px #a6a6a6;
    padding: 10px 14px;
    width: 100%;
    height: 150px;
    resize: none;
    border-radius: 0;
    -webkit-appearance: none;
}
#contacts-container form .box-submit {
    margin-bottom: 0;
    text-align: right;
}
#contacts-container form input[type="submit"] {
    background: url(../images/input-arrow-gold.png) no-repeat center right;
}
input[type="submit"] {
    background-color: transparent;
    border: solid 2px #a57809;
    width: auto;
    height: 50px;
    padding: 0 50px 0 20px;
    color: #a57809;
    font-size: 14px;
    line-height: 14px;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s 
ease;
}
/* ======================= responsiveness=========================== */
@media screen and (max-width: 1200px) {
   .general-section .wrapper {
        width: auto;
        padding: 0 20px;
    }
}
@media screen and (max-width: 960px) {
  .it-container{
     display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 0 30px;
  align-items: center;

    }
    #contacts-container form {
        flex-direction: column;
        position: relative;
    }
}
@media screen and (max-width: 480px) {
    #contacts-container form .box.box-name, #contacts-container form .box.box-when, #contacts-container form .box.box-email, #contacts-container form .box.box-phone {
        width: 100%;
        padding: 0;
    }
     .it-container{
     display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 0 0px !important;
  align-items: center;

    }
    .explore a {
    display: block;
    font-size: 11px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    background: #a16b25;
    color: #fff;
    padding: 10px 0;
}
    input[type="text"], input[type="password"], input[type="email"], input[type="date"], input[type="number"] {
    border: solid 1px #a6a6a6;
    height: 40px;
    padding: 0 10px;
    width: 100%;
    border-radius: 0;
    -webkit-appearance: none;
}
#contacts-container form .left {
    width: 100%;
    padding-right: 8px;
    display: flex;
    flex-wrap: wrap;
}
    #contacts-container form .box.box-teens .label, #contacts-container form .box.box-children .label, #contacts-container form .box.box-adults .label {
        height: 36px;
    }
}
@media screen and (max-width: 600px) {
  .it-container{
     display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  padding: 0 30px;
  align-items: center;

    }
    .explore {
    display: flex;
    width: 120px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border-radius: 10px;
}
.explore a {
        display: block;
        font-size: 11px;
        width: 100%;
        text-align: center;
        text-transform: uppercase;
        background: #a16b25;
        color: #fff;
        padding: 10px 0;
        border-radius: 15px;
    }
    .h-detail {
    font-size: 18px;
    padding: 20px 0;
    text-align: center;
    font-weight: bold;
    color: #a16b25;
    font-family: "Bellefair", serif;
    text-transform: uppercase;
    border-bottom: 2px dotted #a16b25;
}
.it-img .pack-day {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 10px;
    background-color: #a16b25;
    z-index: 100;
    border-radius: 10px;
    font-family: "Bellefair", serif;
}
.it-img {
    position: relative;
    height: 300px;
    width: 100%;
    overflow: hidden;
}
   .twocolumns {
        column-count: 1;
        column-gap: 0;
    }
    #contacts-container form .box {
        margin-bottom: 10px;
    }
        #contacts-container form .box.box-children {
        padding-left: 10px;
    }
        #contacts-container form .box.box-teens .label, #contacts-container form .box.box-children .label, #contacts-container form .box.box-adults .label {
        font-size: 12px !important;
    }

}
@media screen and (max-width: 960px) {
    #contacts-container form .right {
        width: 100%;
        padding-left: 0;
    }
}
   
/* ========================================CONTACT US STYLING END=================================== */
/* ================================= faqs start========================= */
.acc-wrapper {
  max-width: 75%;
  margin: auto;
  padding-bottom: 30px;
}

.wrapper > p,
.acc-wrapper > h2 {
  margin: 1.5rem 0;
  text-align: center;
   font-family: "Bellefair", serif;
   color: #a16b25;
   font-size: 30px;
}

.acc-wrapper > h2 {
  letter-spacing: 3px;
}

.accordion {
  background-color: white;
  color: #a16b25;
   font-family: "Bellefair", serif;
  cursor: pointer;
  font-size: 1.2rem;
  width: 100%;
  padding: 2rem 2.5rem;
  border: none;
  outline: none;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.accordion i {
  font-size: 1.6rem;
}
.accordion i {
  transition: transform 0.3s ease;
}

.accordion.active i {
  transform: rotate(180deg);
}
.active,
.accordion:hover {
  background-color: #f1f7f5;
}
.pannel {
  padding: 0 2rem 2.5rem 2rem;
  background-color: white;
  overflow: hidden;
  background-color: #f1f7f5;
  display: none;
}
.pannel p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.2rem;
  line-height: 1.5;
   font-family: "Bellefair", serif;
}

.faq {
  border: 1px solid rgba(233, 206, 51, 0.2);
  margin: 10px 0;
}
.faq.active {
  border: none;
}
/* ================================== faqs end====================================== */
/* =================================== action button start=============================== */

/* PULSE / ZOOM ANIMATION */
@keyframes zoomPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* MAIN FAB */
.fabb {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #3A7A5A ;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    user-select: none;
    animation: zoomPulse 1.5s infinite;
}

.fabb.active {
    animation: none;
    transform: scale(1.1) rotate(180deg);
    background: #2F5F47;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.4);
}

/* ICONS (custom images) */
.icon {
    position: absolute;
    width: 40px;
    height: 40px;
    transition: all 0.25s ease;
    pointer-events: none;
}

.icon.open-icon { opacity: 1; }
.icon.close-icon { opacity: 0; }

.fabb.active .open-icon { 
    opacity: 0; 
    transform: rotate(90deg) scale(0); 
}
.fabb.active .close-icon { 
    opacity: 1; 
    transform: rotate(0deg) scale(1); 
}

/* MENU */
.fab-menu {
    position: fixed;
    bottom: 110px;
    right: 45px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
    z-index: 9999;
}

.fab-menu.active {
    opacity: 1;
    pointer-events: auto;
}

/* MENU ROW */
.fab-row {
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(15px);
    opacity: 0;
    transition: 0.3s ease;
}

.fab-menu.active .fab-row {
    transform: translateY(0px);
    opacity: 1;
}

/* LABEL WITH POINTER */
.fab-label {
    position: relative;
    background: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.2);
    font-size: 15px;
    text-transform: capitalize;
    font-family: "Bellefair", serif;
}

/* TRIANGLE POINTER */
.fab-label::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #b92222;
}

/* MINI BUTTONS */
.fab-item {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
    background: #1e90ff;
}

.fab-item img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.fab-item:hover {
    transform: scale(1.1);
}
/* ====================================== action button end=========================================== */
/* ===================== preloder start======================== */
/* PRELOADER BACKGROUND */
preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff; /* background color */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity 0.5s ease, visibility 0.5s;
}

/* HIDE PRELOADER */
#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

/* PRELOADER IMAGE */
#preloader img {
    width: 50px; /* change size */
    height: 50px;
    animation: pulse 1.5s infinite ease;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}
/* ======================= preloder end================ */
    /* ============================= FOOTER DESIGNS================================== */
    
footer{
    display: flex;
    flex-wrap: wrap;
    margin-top: auto;
    background-color: #a16b25;
    padding: 60px 10%;
    position: relative;
}
.footer-top{
  position: absolute;
  height: 10px;
  top: -10px;
  left: 0;
  width: 100%;
  background: url(../../assets/images/footr-pretop.png) repeat-x center 0;
  z-index: 1000;
}
ul{
    list-style: none;
}

.footer-col{
    width: 25%;
}

.footer-col h4{
    position: relative;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 22px;
    color: #fff;
     font-family: "Bellefair", serif;
    text-transform: capitalize;
}

.footer-col h4::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    background-color: #fff;
    height: 2px;
    width: 40px;
}

ul li:not(:last-child){
    margin-bottom: 8px;
}

.footer-col ul li a{
    display: block;
    font-size: 19px;
    text-transform: capitalize;
    color: #fff;
     font-family: "Bellefair", serif;
    text-decoration: none;
    transition: 0.4s;
}

ul li a:hover{
    color: rgb(93, 89, 89);
    padding-left: 2px;
}

.links a{
    display: inline-block;
    height: 44px;
    width: 44px;
    color: #404040;
    background-color: #fff;
    margin: 0 8px 8px 0;
    text-align: center;
    line-height: 44px;
    border-radius: 50%;
    transition: 0.4s;
}

.links a:hover{
    color: #4d4f55;
    background-color: #19e126;
}

@media(max-width: 740px){
    .footer-col{
        width: 50%;
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-col h4::before{
        all: unset;
    }
}


@media(max-width: 555px){
    .footer-col{
        width: 100%;
    }
}

