html {
    scroll-behavior: smooth;
}


/**============ ROOT ============*/
:root{
    --nb-primary:#794000;
    --nb-bg-section:#FCFCEF;
    --nb-sky:#90DBF8;
    --nb-light-sky:#F4FBFB;
    --nb-yellow:#FFCB2B;
}

/**============== BACKGROUND COLORS =============*/
.bg-darkbrown{
  background-color: var(--nb-primary);
}
.bg-section{
  background-color: var(--nb-bg-section);
}
.bg-light-sky{
  background-color: var(--nb-light-sky);
}
.bg-yellow{
  background-color: var(--nb-yellow);
}

/**============== FONT COLORS =============*/
.text-brown{
  color: var(--nb-primary);
}
.text-sky{
  color: var(--nb-sky);
}
.text-yellow{
  color: var(--nb-yellow);
}

/**============= FONT SIZES ============*/
h1{
  font-size: 220px;
  line-height: 230px;
  font-weight:normal;
  letter-spacing: 5px;
  font-family:'Anton';
}
h2{
  font-size: 60px;
  line-height: 70px;
  font-weight: 600;
}
h3{
  font-size: 40px !important;
  line-height: 50px;
}
h4{
  font-size: 36px;
  line-height: 46px;
}
h5{
  font-size: 32px;
  line-height: 42px;
}
h6{
  font-size: 28px;
  line-height: 38px;
}
p{
  font-size: 22px;
  line-height: 32px;
}
.font-w-500{
  font-weight: 500 !important;
}
.font-w-600{
  font-weight: 600 !important;
}
.font-16{
  font-size: 16px;
  line-height: 22px; 
}
.font-18{
  font-size: 18px;
  line-height: 24px; 
}
.font-25{
  font-size: 25px;
  font-weight: 35px;
}
.font-80{
  font-size: 80px;
  line-height: 90px;
}

/**============ MARGIN / PADDINGS ===========*/
.py-150{
padding-top: 250px;
padding-bottom: 150px;
}
.py-80{
  padding-top: 80px;
  padding-bottom: 80px;
}
.pt-80{
  padding-top: 80px;
}
.pb-80{
  padding-bottom: 80px;
}
.ps-200{
 padding-left: 140px;
}
.px-140{  
 padding-right: 140px;
 padding-left: 140px;
}

/**=============== POSITION CSS ==============*/
.position-relative{
  position: relative !important;
}

/**============ NAVBAR CSS ==========*/
header.inverted {
  background-color: var(--nb-primary);
  box-shadow: 0 3px 5px 0.3px rgba(0, 0, 0, 0.1);
}
.header {
  transition: background-color 0.3s ease;
  margin: 0;
  padding: 0;
  position: fixed;
  text-align: center;
  top: 0;
  z-index: 100;
  width: 100%;
  box-shadow: var(--shadow-medium);
  }
  .navbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    align-content: center;
    height: auto;
    padding-top: 0.5rem;
  }  
  .brand img{
    height: 80px;
    width: 80px;
  }
  @media only screen and (min-width: 62rem) {
    .navbar {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      width: 100%;
      height: 100px;
      margin: 0px auto 0px auto;
    }
  }
  .brand {
    justify-self: start;
    font-family: inherit;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--color-red-500);
  }
  .menu {
    position: fixed;
    right: -100%;
    top: 0px;
    width: 100%;
    height: auto;
    padding-block: 0.9rem 2rem;
    background:var(--nb-primary);
    box-shadow: var(--shadow-medium);
    transition: all 0.45s ease-in-out;
  }
  .menu.is-active {
    right: 0;
    height: 100vh;    
    z-index: -1 !important;
  }
  .menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 1.25rem;
  }
  .menu-link {
    color: #fff;
    transition: all 0.35s ease-in-out;
  }
  .menu-link:hover {
    outline: none;
    color: #fff;
  }
  @media only screen and (min-width: 780px) {
    .menu {
      position: relative;
      justify-self: end;
      right: 0;
      left: inherit;
      width: auto;
      height: auto;
      padding-block: 0;
      background: none;
      box-shadow: none;
      transition: none;
    }
    .menu-inner {
      display: flex;
      flex-direction: row;
      column-gap: 1.25rem;
      margin: 0 auto;
    }
  }
  .burger {
    position: relative;
    justify-self: end;
    cursor: pointer;
    user-select: none;
    z-index: 10;
    width: 1.6rem;
    height: 1.15rem;
    border: none;
    outline: none;
    background: none;
    visibility: visible;
    transform: rotate(0deg);
    transition: 0.35s ease;
  }
  @media only screen and (min-width: 780px) {
    .burger {
      display: none;
      visibility: hidden;
    }
  }
  .burger-line {
    position: absolute;
    display: block;
    right: 0;
    width: 100%;
    height: 2.1px;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 1rem;
    transform: rotate(0deg);
    background-color: #fff;
    transition: 0.25s ease-in-out;
  }
  .burger-line:nth-child(1) {
    top: 0px;
  }
  .burger-line:nth-child(2) {
    top: 0.5rem;
    width: 70%;
  }
  .burger-line:nth-child(3) {
    top: 1rem;
  }
  .burger.is-active .burger-line:nth-child(1) {
    top: 0.5rem;
    transform: rotate(135deg);
  }
  .burger.is-active .burger-line:nth-child(2) {
    opacity: 0;
    visibility: hidden;
  }
  .burger.is-active .burger-line:nth-child(3) {
    top: 0.5rem;
    transform: rotate(-135deg);
  }

/**================= NAVBAR DROPDOWN CSS ===============*/
.Drop1,
[id^=drop] {
	display: none;
}
.Drop{
  position: relative !important;
}
.Drop-ul li {
  width: 100%;
  max-width: 150px;
  display: grid !important; 
}
.Drop-ul{
  min-width: 200px;
	background-color: #ffffffd1;
	/* background-color: rgba(128, 128, 128, 0.643); */
}
 .drop-icon{
  font-size:14px !important;
  position: relative;
  bottom: 2px;
  left: 2px;
}
nav ul .Drop ul li a{
  color: #794000 !important;
}
nav ul .Drop ul li {
  min-width: 200px;
	margin: 0px;
  padding: 10px 10px;
  text-align: left;
	float: left;
  border-bottom: 1px solid #fff;
}
nav ul .Drop ul li:hover{
  background-color: #794100a2;
  width: 100%;
}
nav ul .Drop-ul {
	display: none;
	position: absolute; 
}
nav ul .Drop:hover > .Drop-ul {
	display:inherit;
}
nav ul .Drop{  
  transition: transform .8s ease-in-out;  
}

@media all and (max-width : 768px) {
	[id^=drop]:checked + .Drop-ul {
		display: block;
	}
}

 /**================= HERO SECTION CSS =============*/
 .Hero-bg{
    background:url(../images/hero.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
 }
 .Hero-content{
    position: relative;
 }
/* .Explore-btn form button{
  padding: 14px 80px; 
  border-radius: 10px;
 }
 .Explore-btn form button:hover{
  background-color: var(--nb-primary) !important;
  color: #fff !important;
 }*/

  /**================= SAFARI TOUR SECTION CSS =============*/

 .Safari-text{
  font-size: 160px;
  line-height: 170px;
  font-weight: 800;
  opacity: 0.1;
}
.Browse-tour{
  position: relative;
  bottom: 70px;
}
.Safari-Img{
  position: relative; 
  word-wrap: break-word;
  overflow: hidden;
}
.Safari-Img img{
  height: 350px;
  min-height: 350px;
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
}
.owl-carousel{
  display: block;
}
.Bottom-text{
  position: absolute;  
  height: auto;
  max-height: 450px;
  width: 100%;
  max-width: 350px;
  bottom: 0;
  padding: 15px 10px;
  overflow: visible;
  overflow-wrap: anywhere;
  box-sizing: border-box;
  background-color: #00000075;
  border-radius: 10px;
}
.safari-carousel .owl-nav, .safari-carousel .owl-dots{
  display: none;
}

/**================= SAFARI TOUR SECTION CSS =============*/
.Guided-img img{
  height: 250px;
  width: 250px;
  border-radius: 50%;
  object-fit: cover;
}
.Guided-img{
  text-align: center !important;
  align-items: center !important  ;
}
.bg-guided{
  background: url(../images/guidedimg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}
.Guided-carousel .owl-nav{
  display: none;
}

/**================= NAMIBIA DESINATION SECTION CSS =============*/
  .Destination-img img{
    height: 340px;
    width: 100%;
    border-radius: 10px;
    opacity: 0.9;
    z-index: 0;
    transition: 0.5s;
  }
  .Destination-img img:hover{
    transform: scale(1.2);
  }
  .Destination-img{
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
  }
  .Destination-img p{
    position: absolute;
    bottom: 0px;
    padding: 12px 10px;
    z-index: 1;
  }

  /**=================  WHO WE ARE SECTION CSS =============*/
  .who-img img{
    height: 700px;
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
  }

  /**================= TESTIMONIAL SECTION CSS =============*/
  .testi-img img{
    height: 90px;
    width: 90px !important;
    border-radius: 50%;
  }
  .testi-quote i{
    font-size: 50px;
    position: relative;
    top: 25px;
    right: 25px;
  }
  .testi-carousel .owl-nav{
    display: flex !important;
    justify-content: end !important;
    font-size: 30px;
    color: #fff !important;
  }
  .testi-carousel .owl-nav .owl-prev,   .testi-carousel .owl-nav .owl-next{
    background-color: var(--nb-primary) !important;
    border-radius: 50%;
    height: 60px;
    width: 60px;
  }

  /**================= DOWNLOAD SECTION CSS =============*/
  .bg-download::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #794100d0;
    z-index: -1;
  } 
  .download-img img{
    height: 500px;
    width: 100%;
    object-fit: contain;
  }
  .App-imgs img{
    height: 70px;
    width: 100%;
    object-fit: contain;
  }
  .bg-download{
    background: url(../images/guidedimg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    z-index: 1;
  }
  
  /**================= BLOGS SECTION CSS =============*/
  .Blog-img img{
    height: 270px;
    border-radius: 10px;
    object-fit: cover;
  }
  .Blog-img:hover{
    background-color: #fff !important;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);    
    transform: scale(1.01);
  }
  .Blog-img{
    border-radius: 10px !important;
    height: auto;
    transition: 0.3s;
  }
  .Blog-carousel .owl-nav,  .Blog-carousel .owl-dots{
    display: none;
  }
  
  /**================= FOOTER SECTION CSS =============*/
  .Footer-logo img{
    height: 80px;
    width: 80px;
  }
  .Footer-hr hr{
    height: 3px !important;
  }

  /** ================ EXPIRIENCE PAGE (TABS SECTION) ===============*/
  .Hero-Experience{
    background:url(../images/Experience-hero.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
 }
.Tabs-bg a{
  border: 1px solid rgba(128, 128, 128, 0.67);
  padding: 15px;
  width: 100%;
}
.Tabs-bg a:hover{
  color: #794000;
}
.Tabs-bg{
  display: flex;
  justify-content: space-between;
  text-align: center;
  position: relative;
  bottom: 64px;
}

/** ================ WHY US SECTION (EXPERIENCE PAGE) ================*/
.Whyus-img img{
  border-radius: 10px;
  min-width: 100%;
  width: 100%;
  height: 350px;
  min-height: 350px;
}

/** ================ ACCOMMODATION SECTION (EXPERIENCE PAGE) ================*/
.Accommo-img img{
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 500px;
  min-height: 500px;
  border-radius: 10px;
}
.Accomo-text{
  position: absolute;
  height: auto;
  max-height: 450px;
  width: 100%;
  bottom: 0;
  padding: 15px 10px;
  overflow: visible;
  overflow-wrap: anywhere;
  box-sizing: border-box;
  background-color: #f7f7f79f;
  border-radius: 10px;
}
.Accommo .owl-nav{
  display: flex !important;
  justify-content: end;
  font-size: 20px;
  color: #fff !important;
  position: relative;
  bottom: 140px;
  right: 10px;
}
.Accommo .owl-nav .owl-prev,   .Accommo .owl-nav .owl-next{
  background-color: var(--nb-primary) !important;
  border-radius: 50%;
  height: 40px;
  width: 40px;
}
.Tour-img img{
  border-radius: 10px;
  height: 350px;
  width: 400px;
  object-fit: cover;
}

/** ================ EXPERIENCE & ACTIVITIES SECTION (EXPERIENCE PAGE) ================*/
.Activity .owl-nav{
  display: flex !important;
  justify-content: end;
  font-size: 20px;
  color: #fff !important;
  position: relative;
  bottom: 140px;
  right: 10px;
}
.Activity .owl-nav .owl-prev,   .Activity .owl-nav .owl-next{
  background-color: var(--nb-primary) !important;
  border-radius: 50%;
  height: 40px;
  width: 40px;
}
.accordion-button:not(.collapsed) {
  color: var(--nb-primary) !important;
  background-color: #fff;
  box-shadow: none !important;
}
.accordion-button{
  padding: 5px 0px !important;
}
.accordion-item{
  border: none !important;
}
.accordion-header{
  border-bottom: 2px solid var(--nb-primary) !important;
}
.accordion-button:focus {
  z-index: 3;
  border-color: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}
.Activity-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 450px;
  min-height: 450px;
  border-radius: 10px;
}
.accordion-body{
  padding: 20px 0px 0px 0px !important;
}

/** ================ MEET OUR GUIDE SECTION (EXPERIENCE PAGE) ================*/
.Person-img img{
  height: auto;
  min-height: 290px;
  max-height: 290px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/** ================  FORM SECTION (TOUR DETAILS PAGE) ================*/
.Form-bg{  
  background-color: #ffffffda;
  border-radius: 10px;
}
.Enquire-radius{
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.my-form{
  padding: 0px 20px 10px 20px;
}
.form-title{
  text-align: center;
  margin-bottom: 40px;
}
.form-title h1{
  margin: 0px;
}
.single-input{
  background:#fff;
  width: 100%;
  border:1px solid #c1c1c1;
  display: flex;
  margin-bottom: 15px;
}
.single-input i{
  padding: 16px 16px;
  color: var(--nb-primary);
}
.single-input input, .single-input textarea{
  border:0px solid #c1c1c1;
  width: 100%;
  outline: none;
  font-size: 18px;
  padding: 10px 0px;
}
.submit-btn{
   border:0px solid #c1c1c1;
   margin-top: 30px;  
}
.submit-btn input{
   background: var(--nb-yellow);
   padding: 14px 14px;
   font-size: 22px;
   color: #fff;
   cursor: pointer; 
}

/**================ TABS SECTION (TOUR DETAILS PAGE) ================*/
.Tabs-up{
position: relative;
bottom: 70px;
}
.tabs {
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  padding: 0px 0px 50px 0px;
  padding-bottom: 0px;
  height: auto;
  border-radius: 5px;
  min-width: 240px;
}
.tabs input[name=tab-control] {
  display: none;
}
.tabs ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  background-color: var(--nb-bg-section);
  flex-wrap: wrap;
}
.tabs ul li {
  box-sizing: border-box;
  border: 1px solid rgba(128, 128, 128, 0.549);
  padding: 15px 0px 15px 10px;
  flex: 1;
  width: 25%;
  text-align: center;
}
.tabs ul li label {
  transition: all 0.3s ease-in-out;
  padding: 5px auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.tabs ul li label br {
  display: none;
}
.tabs ul li label i {
  fill: #929daf;
  height: 1.2em;
  vertical-align: bottom;
  margin-right: 0.2em;
  transition: all 0.2s ease-in-out;
}
.tabs ul li label:hover, .tabs ul li label:focus, .tabs ul li label:active {
  outline: 0;
}
.tabs ul li label:hover i, .tabs ul li label:focus i, .tabs ul li label:active i {
  fill: #bec5cf;
}
.tabs .slider {
  position: relative;
  width: 25%;
  transition: all 0.33s cubic-bezier(0.38, 0.8, 0.32, 1.07);
}
.tabs .content section {
  display: none;
  -webkit-animation-name: content;
          animation-name: content;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  line-height: 1.4;
}
.tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) {
  cursor: default;
  color: #fff !important;
  background-color: #794000;
}
.tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label i {
  fill: #fff;
}
@media (max-width: 600px) {
  .tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label {
    background: rgba(0, 0, 0, 0.08);
  }
}
.tabs input[name=tab-control]:nth-of-type(1):checked ~ .slider {
  transform: translateX(0%);
}
.tabs input[name=tab-control]:nth-of-type(1):checked ~ .content > section:nth-child(1) {
  display: block;
}
.tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) {
  cursor: default;
  color: #fff;
  background-color: #794000;
}
.tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label i {
  fill: #fff;
}
@media (max-width: 600px) {
  .tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label {
    background: rgba(0, 0, 0, 0.08);
  }
}
.tabs input[name=tab-control]:nth-of-type(2):checked ~ .slider {
  transform: translateX(100%);
}
.tabs input[name=tab-control]:nth-of-type(2):checked ~ .content > section:nth-child(2) {
  display: block;
}
.tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) {
  cursor: default;
  color: #fff;
  background-color: #794000;
}
.tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label i {
  fill: #fff;
}
@media (max-width: 600px) {
  .tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label {
    background: rgba(0, 0, 0, 0.08);
  }
}
.tabs input[name=tab-control]:nth-of-type(3):checked ~ .slider {
  transform: translateX(200%);
}
.tabs input[name=tab-control]:nth-of-type(3):checked ~ .content > section:nth-child(3) {
  display: block;
}
.tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) {
  cursor: default;
  color: #fff;
  background-color: #794000;
}
.tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label i {
  fill: #fff;
}
@media (max-width: 600px) {
  .tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label {
    background: rgba(0, 0, 0, 0.08);
  }
}
.tabs input[name=tab-control]:nth-of-type(4):checked ~ .slider {
  transform: translateX(300%);
}
.tabs input[name=tab-control]:nth-of-type(4):checked ~ .content > section:nth-child(4) {
  display: block;
}
@-webkit-keyframes content {
  from {
    opacity: 0;
    transform: translateY(5%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes content {
  from {
    opacity: 0;
    transform: translateY(5%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
@media (max-width: 1000px) {
  .tabs ul li label {
    white-space: initial;
  }
  .tabs ul li label br {
    display: initial;
  }
}
@media (max-width: 600px) {
  .tabs ul li label {
    padding: 5px;
    border-radius: 5px;
  }
  .tabs ul li label span {
    display: none;
  }
  .tabs .slider {
    display: none;
  }
  .tabs .content section h2 {
    display: block;
  }
}

/**================= DEPARTURE SECTION (TOUR DETAILS PAGE) =============*/
.Departure-table table tr td{
  width: 100%;
}
.Departure-table{
  overflow: hidden;
}
.Departure-table tr{
  border-bottom: 2px solid rgba(128, 128, 128, 0.395);
  margin-bottom: 25px;
}

/**================= HIGHLIGHTS SECTION (TOUR DETAILS PAGE) =============*/
.High-Img img{
  height: 300px;
  min-height: 300px;
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
}
.High-text{
  position: absolute;  
  height: auto;
  max-height: 300px;
  width: 100%;
  max-width: 350px;
  bottom: 0;
  padding: 15px 10px;
  overflow: visible;
  overflow-wrap: anywhere;
  box-sizing: border-box;
  background-color: #00000075;
  border-radius: 10px;
}
.Highlight .owl-nav{
  display: none;
}

/**================= PLAN TAB SECTION (TOUR DETAILS PAGE) =============*/
.Plan-number h2{
  width: 70px;
  height: 70px;
  border-radius: 10px;
}
.Gallery-img img{
  height: 300px;
  width: 100%;
  border-radius: 10px;
  opacity: 0.9;
  z-index: 0;
  transition: 0.5s;
}
.Gallery-img img:hover{
  transform: scale(1.2);
}
.Gallery-img{
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
}
.Gallery-img p{
  position: absolute;
  bottom: 0px;
  padding: 12px 10px;
  z-index: 1;
}

/**================= MAP SECTION (TOUR DESTINATIONS PAGE) =============*/
.Destination-map img{
height: 700px;
width: 100%;
object-fit: fill;
}

/**================= BLOGS SECTION ( BLOGS PAGE) =============*/
.Blogs-img img{
  height: 270px;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.Blogs-img:hover{
  background-color: #fff !important;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);    
  transform: scale(1.01);
}
.Blogs-img{
  border-radius: 10px !important;
  height: auto;
  transition: 0.3s;
}

/**================= PAGINATION SECTION ( BLOGS PAGE) =============*/
.title {
  color: #FFF;
  margin-bottom: 20px;
}
.title,.center {
  text-align: center;
  font-family: monospace;
}
.pagination {
  display: inline-block;
}
.pagination a {
  color: var(--nb-primary);
  float: left;
  margin: 0 5px;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color 0.5s;
  border: 1px solid var(--nb-primary);
}
.pagination a.active {
  color: #FFF;
  background-color: var(--nb-primary);
}
.pagination a:hover:not(.active) {
  background-color: var(--nb-primary);
  color: #fff;
}

/**================= SERVICES SECTION ( ABOUT US PAGE) =============*/
.Service-img i{
  font-size: 40px;
  padding-bottom: 20px;
}
.Service-style {
  transition: 0.4s;
  padding: 15px 10px; 
}
.Service-style:hover{
  background-color: #fff;  
  box-shadow: 0 3px 5px 0.3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  border-radius: 10px;
  padding: 15px 10px;
  transform: scale(1.009);
}

/**================= FORM SECTION ( CONTACT US PAGE) =============*/
.Contact-form form .user__details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 0 12px 0;
}
form .user__details .input__box {
  margin-bottom: 15px;
}

.user__details .input__box .details {
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
}
.user__details .input__box input, .user__details .input__box textarea{
  width: 100%;
  outline: none;
  border-radius: 5px;
  border: 1px solid rgba(128, 128, 128, 0.332) !important;
  box-shadow: 0 3px 5px 0.3px rgba(0, 0, 0, 0.1);
  padding: 15px;
  font-size: 16px;
  transition: all 0.3s ease;
}
.user__details .input__box input:focus,
.user__details .input__box input:valid {
  border-color: var(--main-purple);
}
.bg-contact::before{
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #10100f77 !important;
  z-index:-1;
} 
.bg-contact{
  background: url(../images/1.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  z-index: 0;
}
.Map-index{
  z-index: -1 !important;
}
.Contact-map img{
  height: 690px;
  width: 100%;
  object-fit: cover;
}

/**================= BLOG DETAIL PAGE =============*/
.Blogdetail-img img{
  object-fit: cover;
  border-radius: 10px;
  height: 500px;
  width: 100%;
}
.Related-blog img{
  height: 200px;
  width: 100%;
  border-radius: 10px;
}
.Related-blog{
  border-radius: 10px;
  cursor: pointer;
}
.Recent-blog img{
  border-radius: 10px;
  object-fit: cover;
  height: 80px;
  width: 100%;
}
.Blog-video iframe{
  border-radius: 10px !important;
}

.Route-distance li{
  border-bottom: 2px solid var(--nb-primary);
}
.Desti-map img{
  height: 500px;
  width: 100%;
}

/**================= EXPEDITION DETAIL PAGE =============*/
.Expedition-map img{
  height: 600px;
  object-fit: cover;
  width: 100%;
}
.Related .owl-nav{
  display: none;
}
.accordion-button::after{
  background: url(../images/arrow-d.png) !important;
  width: 2.5rem !important;
}
.Itinerary-acc .accordion-button:not(.collapsed)::after{
  margin-top:10px;
  margin-bottom:0px !important;
}
.Itinerary-acc .accordion-button::after{
  margin-bottom:10px;
}
.Itinerary-acc .accordion-button:not(.collapsed){
  border-radius: 10px !important;
  padding: 15px 10px !important;
  background-color: var(--nb-primary) !important;
}
.Itinerary-acc .accordion-button:not(.collapsed) p{
  color: #fff !important;
}
.Itinerary-acc .accordion-button{
  background-color: #fff;
  padding: 15px 10px !important;
  margin-bottom: 12px;
  border-radius: 10px !important;
}
.Itinerary-acc .accordion-button p{  
color: var(--nb-primary) !important;
}
.Itinerary-acc .accordion-header{
  border-bottom: 0px !important;
}

.Photos .owl-nav, .Photos .owl-dots{
  display: none;
}
.Photos-popup .owl-nav{
  position: relative;
  display: flex !important;
  justify-content:space-between !important ;
  font-size: 25px;
  bottom: 270px;
}
.Photos-popup .owl-nav .owl-prev,.Photos-popup .owl-nav .owl-next{
  background-color: var(--nb-primary) !important;
  border-radius: 50%;
  height: 40px;
  width: 40px;
}
.Photos-popup .owl-nav .owl-prev span,.Photos-popup .owl-nav .owl-next span{
  color:  #fff !important;
  padding: 6px 2px 5px 0px;
}
.High-Img-popup img{
  height:450px;
  width: 700px !important;
  border-radius: 10px;
}
.modal-content{
  background-color: transparent !important;
  border: none !important;
}
.modal-dialog{
  margin: 0rem !important;
}
.btn-close{
  color: var(--nb-sky) !important;
}

 .modal {
  text-align: center;
}

.modal:before {
  display: inline-block;
  vertical-align: middle;
  content: " ";
  height: 100%;
}

.modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}
