@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Libertinus+Serif:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif !important;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  font-size: 17px;
}

::-webkit-scrollbar {
  display: none;
}

.container {
  position: relative;
}


.display-none {
  display: none !important;
}

.display-block {
  display: block !important;
}

.pointer-cursor {
  cursor: pointer !important;
}

.container {
  position: relative;
  z-index: 2;
}

a {
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Barlow Semi Condensed', Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  position: relative;
}

input[type='number']::-webkit-inner-spin-button {
  display: none;
}

.sticky-top {
  position: fixed !important;
  animation: fadeInDown 0.6s linear;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}


/* --------------------------------------------------------------------------------------------------- */

.main-hero-section {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background-size: cover;
}

.main-hero-section .video-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

}

.main-hero-section .video-box video {
  width: 100%;
  height: 60%;
  object-fit: cover;
  object-position: bottom;
}


.main-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.main-hero-section .slider-content {
  padding-top: 260px;
  text-align: center;
}

.main-hero-section .slider-content h1 {
  font-size: 90px;
  font-family: 'Libertinus Serif', sans-serif !important;
  color: #fff;
  font-weight: 400;
  text-transform: capitalize;
}

.main-hero-section .slider-content h1 span {
  text-transform: uppercase;
  color: #FF8C00;
  font-weight: 700;
  font-family: 'Barlow Semi Condensed', sans-serif !important;
}

.main-hero-section .slider-content h4 {
  color: #fff;
  text-transform: uppercase;
  margin-top: 20px;

}

.main-hero-section .slider-content h4 span {
  display: inline-block;
  position: relative;
}


.main-hero-section .slider-button-group {
  margin: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.main-hero-section .slider-button-group a.video-btn {
  position: relative;
  transition: all 0.4s;
}

.main-hero-section .slider-button-group a.video-btn::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #fff;
  animation: btnBgZoom 1.5s infinite linear;
  border-radius: 50%;

}

@keyframes btnBgZoom {
  0% {
    transform: translate(-50%, -50%) scale(.4);
  }

  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;

  }
}

.main-hero-section .slider-button-group a.video-btn svg {
  position: relative;
  width: 20px;
  height: 20px;
  padding: 20px;
  border-radius: 50%;
  color: #000;
  background-color: #fff;
  animation: vibrateIcon 1s infinite alternate;
  transition: all 0.4s;
}

.main-hero-section .slider-button-group a.video-btn:hover {
  transform: scale(1.1);
}

.main-hero-section .slider-button-group a:nth-child(2n) {
  padding: 6px 40px 6px 10px;
  color: #fff;
  border-radius: 6px;
  font-size: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-weight: 600;
  transition: all 0.4s;
  position: relative;
}

.main-hero-section .slider-button-group a:nth-child(2n) svg {
  rotate: -30deg;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  padding-left: 5px;
}

.main-hero-section .slider-button-group a:nth-child(2n):hover svg {
  webkit-animation: flyLeftToRight 0.3s forwards;
  -moz-animation: flyLeftToRight 0.3s forwards;
  animation: flyLeftToRight 0.3s forwards;
}

.main-hero-section .slider-button-group a:nth-child(2n):hover {
  color: #FF8C00;
}





.main-hero-section .gallery-wrapper {
  margin-top: 30px;
  padding: 0;
  overflow: hidden;
  position: relative;
  background-color: #000;
}

.main-hero-section .gallery-wrapper .scroll-text {
  position: absolute;
  top: 16px;
  color: #fff;
  z-index: 2;
  width: 50%;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-hero-section .gallery-wrapper .scroll-text span.title {
  color: #000;
  padding: 5px 10px;
  background-color: #FF8C00;
  border-radius: 5px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
  display: inline-block;
  width: 170px;
  text-align: center;
  animation: vibrateBtn .4s infinite alternate;
}

@keyframes vibrateBtn {

  0%,
  100% {
    transform: rotate(2deg);
  }

  50% {
    transform: rotate(-2deg);
  }
}

.main-hero-section .gallery-wrapper .scroll-text marquee {
  font-size: 20px;
}

.main-hero-section .gallery-wrapper .scroll-text marquee span {
  color: #FF8C00;
  font-weight: 800;
}

.main-hero-section .gallery-wrapper::before {
  content: "";
  position: absolute;
  top: -190px;
  left: 0;
  width: 100%;
  height: 280px;
  -webkit-mask-image: url(../img/background/masking-top.png);
  -webkit-mask-size: cover;
  -webkit-mask-position: top center;
  background-color: #000;
  z-index: 2;
}

.main-hero-section .gallery-wrapper::after {
  content: "";
  position: absolute;
  bottom: -190px;
  left: 0;
  width: 100%;
  height: 280px;
  -webkit-mask-image: url(../img/background/masking-bottom.png);
  -webkit-mask-size: cover;
  -webkit-mask-position: top center;
  background-color: #000;
  z-index: 2;
}

.main-hero-section .gallery-wrapper .img-box {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.main-hero-section .gallery-wrapper .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}

.main-hero-section .gallery-wrapper .img-box a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;

  text-align: center;
  padding: 14px 0;
  color: #fff;
  font-size: 38px;
  text-transform: uppercase;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 600;
  transition: all 0.4s;
  line-height: 46px;
}

.main-hero-section .gallery-wrapper .img-box a svg {
  display: block;
  text-align: center;
  margin: 5px auto;

}

.main-hero-section .gallery-wrapper .owl-item.center a {
  transform: translate(-50%, -50%) scale(1);
}

.main-hero-section .gallery-wrapper .owl-item.center img {
  transform: scale(1.1);
  filter: brightness(60%);
}





@media (min-width:1201px) and (max-width:1400px) {

  .main-hero-section .gallery-wrapper .scroll-text {
    width: 70%;
    left: 50%;
  }
}

@media (min-width:992px) and (max-width:1200px) {

  .main-hero-section .slider-content h1 {
    font-size: 68px;
  }

  .main-hero-section .slider-content {
    padding-top: 240px;
    text-align: center;
  }

  .main-hero-section .gallery-wrapper .scroll-text {
    width: 70%;
    left: 50%;
  }
}

@media (max-width:992px) {

  .main-hero-section .slider-content h1 {
    font-size: 68px;
  }

  .main-hero-section .slider-content {
    padding-top: 240px;
    text-align: center;
  }

  .main-hero-section .gallery-wrapper .scroll-text {
    width: 100%;
    padding: 0 10px;
    left: 50%;
  }

}

@media (max-width:768px) {

  .main-hero-section .slider-content h1 {
    font-size: 56px;
  }

  .main-hero-section .slider-content {
    padding-top: 240px;
    text-align: center;
  }

  .main-hero-section .gallery-wrapper .img-box a {
    padding: 0 30px;
    font-size: 32px;
  }

  .main-hero-section .gallery-wrapper .img-box {
    width: 100%;
    height: 530px;
  }

  .main-hero-section .gallery-wrapper .scroll-text {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }


}

@media (max-width:568px) {

  .main-hero-section .slider-content h1 {
    font-size: 48px;
  }

  .main-hero-section .slider-content h1 span {
    display: block;
    min-height: 70px;
  }

  .main-hero-section .slider-content {
    padding-top: 200px;
    text-align: center;
  }
}





/* -------------------------------------------------------------------------------------------------------------------------------------- */


a.contact-btn-arrow {
  padding: 10px 40px 10px 20px;
  border: 1px solid #fff;
  border-radius: 50px;
  position: relative;
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  overflow: hidden;
  transition: all 0.4s;
  display: inline-block;
}

a.contact-btn-arrow svg {

  position: absolute;
  rotate: -30deg;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  padding-left: 5px;
}

a.contact-btn-arrow:hover {
  background-color: #fff;
  color: #000;
}

a.contact-btn-arrow:hover svg {
  webkit-animation: flyLeftToRight 0.3s forwards;
  -moz-animation: flyLeftToRight 0.3s forwards;
  animation: flyLeftToRight 0.3s forwards;
}

@keyframes flyLeftToRight {
  49% {
    transform: translateY(-50%) translateX(100%);
  }

  50% {
    opacity: 0;
    transform: translateY(-50%) translateX(-100%);
  }

  51% {
    opacity: 1;
  }
}



/* ------------------------------------------------------------------------------------------------------------------------- */


.counter-section {
  padding: 40px 0;
  background-color: #000;
  position: relative;
}

.counter-section .counter-box {
  padding: 30px 20px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  border-radius: 10px;
  transition: all 0.4s;
}

.counter-section .counter-box:hover {
  transform: scale(1.1);
  border-color: #FF8C00;
}

.counter-section .counter-box.first {
  border-left: 0;
}

.counter-section .counter-box.last {
  border-right: 0;
}

.counter-section .counter-box h3 {
  color: #fff;
  font-size: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.counter-section .counter-box h3 svg {
  width: 50px;
  height: 50px;
}

.counter-section .counter-box p {
  color: #FF8C00;
  text-transform: capitalize;
  font-weight: 600;
}

/* .counter-section .counter-box::before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #fff;
}
.counter-section .counter-box.last::before{
  display: none;
} */



@media (max-width:568px) {

  .counter-section .counter-box.first {
    border-left: 1px solid #fff;

  }

  .counter-section .counter-box.last {
    border-right: 1px solid #fff;
  }

}

/* -------------------------------------------------------------------------- */


.section-title span.sub-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  color: #002203;
}

.section-title h2.title {
  font-size: 56px;
  position: relative;
  color: #002203;
}

.section-title h2.title span {
  font-weight: 700;
  color: #FF8C00;
  text-transform: capitalize;
}

.section-title.dark-bg span.sub-title {
  color: #fff;
}

.section-title.dark-bg h2.title {
  color: #fff;
}

.section-title.dark-bg h2.title span {
  color: #FF8C00;
}

.section-title p.text {
  color: rgba(0, 0, 0, 0.7);
  letter-spacing: 1px;
}

.section-title.dark-bg p.text {
  color: rgba(255, 255, 255, 0.9);
}

.section-title p.text span {
  color: #FF8C00;
  font-weight: 500;
  font-style: italic;
}

.tiltBox {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
}

@media (max-width:768px) {}

.section-title h2.title {
  font-size: 46px;
}

.about-section {
  padding: 80px 0 150px;
  position: relative;
  background-size: cover;
  overflow: hidden;
}

.about-section .section-title h2 {
  font-size: 78px;
  font-weight: 900;
  color: #002203;
}


.about-section .about-content-wrapper {
  margin-top: 40px;
  position: relative;
}

.about-section .about-content-wrapper .text-content {
  position: relative;
  padding-right: 40px;
}

.about-section .about-content-wrapper .text-content h4.sub-heading {
  color: #000;
  text-transform: capitalize;
  font-style: italic;
  padding-left: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  border-left: 4px solid #002203;
  margin-bottom: 20px;
}

.about-section .about-content-wrapper .text-content h4.sub-heading span {
  color: #002203;
  font-weight: 600;
  text-transform: uppercase;
}

.about-section .about-content-wrapper .text-content p.text {
  color: rgba(0, 0, 0, 0.8);
  letter-spacing: 1px;
  font-weight: 400;
}

.about-section .about-content-wrapper .text-content p.text strong {
  color: #002203;
  font-weight: 700;
  text-transform: capitalize;
}

.about-section .about-content-wrapper .text-content p.text span {
  font-style: italic;
  color: #FF8C00;
  text-transform: capitalize;
  font-weight: 700;
}
.about-section .about-content-wrapper .text-content p.text a{
  font-weight: 700;
  text-transform: capitalize;
  text-decoration: underline!important;
  color: #FF8C00;
}



.about-section .about-content-wrapper .text-content ul.point-list {
  position: relative;
}

.about-section .about-content-wrapper .text-content ul.point-list li {
  color: #002203;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  font-weight: 700;
  transition: all 0.4s;

}

.about-section .about-content-wrapper .text-content ul.point-list li span {
  font-size: 12px;
  padding: 1px 6px;
  margin-left: 10px;
  border-radius: 4px;
  background-color: #FF8C00;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}


.about-section .about-content-wrapper .text-content ul.point-list li svg {
  color: #002203;
  margin-right: 10px;
  width: 20px;
  height: 20px;
  transition: all 0.4s;
}

.about-section .about-content-wrapper .text-content ul.point-list li:hover svg {
  transform: scale(1.2);
}


.about-section .about-content-wrapper .text-content ul.point-list li:hover {
  color: #608600;
  cursor: pointer;
}

.about-section.innerpage .text-content ul.point-list li:hover {
  color: #608600;
}


.about-section .button-group {
  margin-top: 40px;
}

.button-group a {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  background-color: #002203;
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  border: 2px solid #002203;
  transition: all 0.4s;
}

.button-group.dark-bg a {
  background-color: #fff;
  color: #002203;
}

.button-group a:nth-child(2n) {
  background-color: #fff;
  color: #002203;
}

.button-group.dark-bg a:nth-child(2n) {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.button-group a:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
  transform: translateY(-10px);
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.button-group.dark-bg a:hover {
  transform: translateY(-10px);
  background-color: #FF8C00;
  color: #fff;
  border-color: #FF8C00;
}



.about-section .about-content-wrapper .img-content {
  position: relative;
}

.about-section .about-content-wrapper .img-content .img-box {
  position: relative;
  text-align: end;
}

.about-section .about-content-wrapper .img-box:hover .video-thumb-box {
  z-index: 5;
}

.about-section .about-content-wrapper .img-box:hover img.sec-img {
  opacity: .4;
}

.about-section .about-content-wrapper .img-content .img-box .video-thumb-box {
  position: relative;
  transition: all 0.4s;
}

.about-section .about-content-wrapper .img-content .img-box .video-thumb-box video {
  position: relative;
  overflow: hidden;
  width: 540px;
  height: 540px;
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}

.about-section .about-content-wrapper .img-content .img-box .video-thumb-box:hover img.video-thumbnail {
  display: none;
}

.about-section .about-content-wrapper .img-content .img-box img.video-thumbnail {
  position: absolute;
  top: 0;
  width: 540px;
  height: 540px;
  right: 0;
  object-fit: cover;
  transition: all 0.4s;
  border-radius: 10px;
  overflow: hidden;
}



.about-section .about-content-wrapper .img-content .img-box img.sec-img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 350px;
  height: 380px;
  border-radius: 30px 4px 4px;
  object-fit: cover;
  left: 0;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  transition: all 0.4s;
  filter: grayscale(0);

}


.about-section .about-content-wrapper .img-content .img-box img.sec-img:hover {
  filter: grayscale(100%);
}


.about-section .about-content-wrapper .img-content .info-box {
  position: absolute;
  bottom: 10px;
  right: 30px;
  text-align: center;
  padding: 15px 20px;
  border-radius: 10px;
  animation: headShake 2s infinite;
}

.about-section .about-content-wrapper .img-content .info-box p {
  margin-bottom: 10px;
  font-size: 66px;
  font-weight: 900;
  line-height: 40px;
  color: #fff;

}

.about-section .about-content-wrapper .img-content .info-box span {
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  font-weight: 700;

}





@media (min-width:1201px) and (max-width:1400px) {
  .about-section .about-content-wrapper .img-content .img-box .video-thumb-box video {
    width: 480px;
    height: 540px;
  }

  .about-section .about-content-wrapper .img-content .img-box img.video-thumbnail {
    width: 480px;
    height: 540px;
  }
}



@media (max-width:1200px) {
  .about-section .about-content-wrapper .text-content {
    padding-right: 20px;
  }

  .about-section .about-content-wrapper .img-content .img-box .video-thumb-box video {
    width: 450px;
    height: 450px;
  }

  .about-section .about-content-wrapper .img-content .img-box img.video-thumbnail {
    width: 450px;
    height: 450px;
  }

  .about-section .about-content-wrapper .img-content .img-box img.sec-img {
    width: 320px;
    height: 320px;
    left: -40px;

  }


}

@media (max-width:992px) {
  .about-section .section-title h2 {
    font-size: 56px;
    font-weight: 900;
    color: #002203;
  }

  .about-section .about-content-wrapper .text-content {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .button-group a {
    padding: 8px 14px;
  }

  .about-section .about-content-wrapper .img-content .img-box .video-thumb-box video {
    width: 100%;
    height: 420px;
  }

  .about-section .about-content-wrapper .img-content .img-box img.video-thumbnail {
    width: 100%;
    height: 420px;
  }

  .about-section .about-content-wrapper .img-content .img-box img.sec-img {
    width: 320px;
    height: 320px;
    display: none;
    left: -40px;

  }
}



.service-section {
  padding: 80px 0;
  position: relative;
  background: url(../img/background/rajasthan-jungle-bg.jpg) no-repeat fixed;
  background-size: cover;
  overflow: hidden;
}

.service-section .top-img {
  position: absolute;
  top: 0;
  right: -30px;
  z-index: 3;
  width: 560px;
  animation: moveUpDown 3s infinite alternate;
}

@keyframes moveUpDown {
  0% {
    transform: translateY(-10px) rotate(2deg);
  }

  100% {
    transform: translateY(-8px) rotate(-2deg);
  }
}

.service-section .top-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}


.service-section .inner-content-wrapper {
  margin-top: 50px;
}

.service-section .inner-content-wrapper .item-box {
  position: relative;
  margin-bottom: 30px;
}



.service-section .inner-content-wrapper .item-box .video-box {
  width: 100%;
  height: 540px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px inset #fff;
  position: relative;
}

.service-section .inner-content-wrapper .item-box .video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-section .inner-content-wrapper .item-box .video-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  transition: all 0.4s;
  object-fit: cover;
}

.service-section .inner-content-wrapper .item-box .content-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  text-align: center;
}

.service-section .inner-content-wrapper .item-box .content-box p {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0;
  text-transform: uppercase;
}

.service-section .inner-content-wrapper .item-box .content-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.service-section .inner-content-wrapper .item-box .content-box a svg {
  width: 20px;
  height: 20px;
  padding: 10px;
  color: #fff;
  position: relative;
}

.service-section .inner-content-wrapper .item-box .content-box a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  width: 100%;
  height: 100%;
  background-color: #FF8C00;
  border-radius: 5px;
  transition: all 0.4s;
}

.service-section .inner-content-wrapper .item-box:hover .content-box a::before {
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 1;
}

.service-section .inner-content-wrapper .item-box .content-box a:hover::before {
  background-color: #002203;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;

}

.service-section .inner-content-wrapper .item-box:hover .img-box img {
  filter: grayscale(0);
  transform: scale(1.1);
}


@media (min-width:992px) and (max-width:1200px) {
  .service-section .top-img {
    width: 450px;
  }

  .service-section .inner-content-wrapper .item-box .video-box {
    width: 100%;
    height: 460px;
  }

}

@media (max-width:992px) {
  .service-section .top-img {
    width: 360px;
  }

  .service-section .inner-content-wrapper .item-box .video-box {
    width: 100%;
    height: 420px;
  }
}

@media (max-width:768px) {

  .service-section h2.title span {
    display: block;
  }

  .service-section .top-img {
    width: 400px;
    z-index: 0;
  }



}

@media (max-width:568px) {

  .service-section h2.title span {
    display: block;
  }

  .service-section .top-img {
    width: 320px;
    z-index: 0;

  }

  .service-section .inner-content-wrapper .item-box .video-box {
    height: 360px;
  }



}




.main-cta-section {
  position: relative;
  padding: 80px 0;
}

.main-cta-section .left-content h2 {
  font-size: 76px;
  font-weight: 700;
  color: #002203;
  text-transform: uppercase;

}

.main-cta-section .left-content span.info {
  text-transform: uppercase;
  font-weight: 700;
  background-color: #FF8C00;
  padding: 4px 10px;
  border-radius: 50px;
  animation: vibrateBtn .5s infinite alternate;
  color: #fff;
  display: inline-block;
}

.main-cta-section .left-content p.text {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.7);
  letter-spacing: 1px;
}

.main-cta-section .left-content p.text span {
  font-style: italic;
  font-weight: 700;
  color: #FF8C00;
}

.main-cta-section .left-content .feature span {
  font-weight: 700;
  font-family: 'Barlow Semi Condensed';
}

.main-cta-section .left-content .feature li {
  display: block;
  font-weight: 700;
  color: #002203;
  margin: 4px 8px;
  transition: all 0.4s;
}

.main-cta-section .left-content .feature li:hover {
  color: #608600;
}

.main-cta-section .right-content .img-box {
  width: 100%;
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 10px;
  height: 275px;
}

.main-cta-section .right-content .img-box img.active,
.main-cta-section .right-content .img-box:hover img {
  filter: grayscale(0);
}

.main-cta-section .right-content .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.8s;
}

.main-cta-section .right-content .img-box img:hover {
  transform: scale(1.2);
}

.main-cta-section .right-content .img-box.verti-img {
  height: 560px;
}

.main-cta-section .right-content .img-box.h-img {
  height: 240px;
}


@media (max-width:1200px) {
  .main-cta-section .left-content h2 {
    font-size: 56px;

  }

}

@media (max-width:992px) {
  .main-cta-section .left-content {
    margin-bottom: 30px;
  }

  .main-cta-section .right-content .img-box.verti-img {
    height: 560px;
  }
}

@media (max-width:768px) {
  .main-cta-section .left-content {
    margin-bottom: 30px;
  }

  .main-cta-section .right-content .img-box.verti-img {
    height: 240px;
  }

  .main-cta-section .left-content h2 {
    font-size: 52px;
    font-weight: 700;
    color: #002203;
    text-transform: uppercase;

  }
}

.tour-packages-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: #000;

}

.tour-packages-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/background/tiger-black-bg.webp) no-repeat center left;
  background-size: cover;
  opacity: .16;
}

.tour-packages-section .tour-package-carousel {
  margin-top: 40px;
}

.tour-packages-section .tour-box {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.tour-packages-section .tour-box .img-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.tour-packages-section .tour-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}

.tour-packages-section .tour-box:hover .img-box img {
  transform: scale(1.2);
  filter: brightness(50%);
}

.tour-packages-section .tour-box span.tag {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  padding: 4px 6px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
}

.tour-packages-section .tour-box span.tag svg {
  color: #FF8C00;
}

.tour-packages-section .tour-box .content {
  position: absolute;
  bottom: 0;
  padding: 10px 20px;
  width: 100%;
  left: 0;
  transition: all 0.4s;
}

.tour-packages-section .tour-box:hover .content {
  height: auto;
}

.tour-packages-section .tour-box .content h3 {
  color: #fff;
  text-transform: capitalize;
  font-size: 36px;
  transition: all 0.4s;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.tour-packages-section .tour-box .content p {
  color: #fff;
  letter-spacing: 1px;
  transition: all 0.4s;
  display: none;
}

.tour-packages-section .tour-box:hover .content p {
  display: block;
}

.tour-packages-section .tour-box .content p span {
  color: #FF8C00;
  font-weight: 700;
}

@media (max-width:568px) {
  .tour-packages-section .tour-box {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
  }
}



.btn-group-icon a {
  position: relative;
  padding: 5px 10px;
  background-color: #002203;
  color: #fff;
  display: inline-block;
  border-radius: 5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: capitalize;
  transition: all 0.4s;
}

.btn-group-icon a:nth-child(2n) {
  background-color: transparent !important;
}

.btn-group-icon a:nth-child(2n) svg {
  color: #002203;
  width: 40px;
  height: 40px;
  animation: vibrateIcon .6s infinite alternate;
  transition: all 0.4s;

}

.btn-group-icon a:hover {
  background-color: #FF8C00;
  color: #fff
}

.btn-group-icon a:hover svg {
  color: #FF8C00;
}


.main-btn {
  padding: 10px 20px;
  border: 2px solid #002203;
  color: #002203;
  font-weight: 700;
  border-radius: 6px;
  text-transform: capitalize;
  transition: all 0.4s;
  display: inline-block;
}

.main-btn.dark-bg {
  border: 2px solid #fff;
  color: #fff;
}

.main-btn:hover {
  transform: translateY(-6px) scale(1.04);
  background-color: #002203;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.main-btn.dark-bg:hover {
  background-color: #fff;
  color: #002203;
}



.cta-section {
  padding: 90px 0px 90px 0px;
  position: relative;
  background-color: #091722;
  overflow: hidden;
  width: 100%;
}


.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/background/cta-bg.png) no-repeat center;
  background-size: cover;
  opacity: .6;
}

.cta-section .inner-content {
  position: relative;
}

.cta-section .inner-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 130px;
  width: 100%;
  height: 100%;
  background: url(../img/background/rectangle-border.png) no-repeat right;
}

.cta-section h4 {
  text-align: center;
  color: #fff;
  font-size: 50px;
  font-weight: 400;
  line-height: 57px;
  text-transform: capitalize;
}

.cta-section h4 span {
  font-size: 90px;
  font-family: 'Barlow Semi Condensed', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 90px;
}

.cta-section marquee {
  color: #fff;
  margin-top: 25px;

}

.cta-section marquee p {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 600;
}

.cta-section marquee svg {
  width: 20px;
  height: 20px;
  color: #fff;
  animation: vibrateIcon .5s infinite alternate;
  margin: 0 10px;
}

.cta-section h2 {
  font-size: 130px;
  color: #fff;
  font-weight: 700;
  line-height: 90px;
  text-transform: uppercase;

}

.cta-section .right-text span {
  display: inline-block;
  margin-top: 10px;
  color: #FF8C00;
  text-transform: uppercase;
  padding-left: 10px;
  font-weight: 600;
  letter-spacing: 3px;
}



@media (max-width:1200px) {
  .cta-section h4 {
    font-size: 42px;
  }

  .cta-section h4 span {
    font-size: 76px;
  }

  .cta-section h2 {
    font-size: 92px;

  }
}

@media (max-width:992px) {

  .cta-section .inner-content::before {
    display: none;
  }

  .cta-section .brand {
    text-align: center;
  }
}

@media (max-width:568px) {

  .cta-section h4 {
    font-size: 36px;
    margin-bottom: 0;
  }

  .cta-section h4 span {
    font-size: 66px;
  }

  .cta-section h2 {
    font-size: 84px;

  }
}


.testimonial-section {
  padding: 80px 0;
  position: relative;
}

.testimonial-section .left-content span.sub-title {
  text-transform: uppercase;
  font-weight: 600;
  color: #002203;
  position: relative;
  display: inline-block;
}

.testimonial-section .left-content span.sub-title::before {
  content: "";
  position: absolute;
  right: -35px;
  top: 9px;
  width: 20px;
  border-radius: 5px;
  height: 2px;
  background-color: #FF8C00;
}

.testimonial-section .left-content span.sub-title::after {
  content: "";
  position: absolute;
  right: -53px;
  top: 14px;
  width: 38px;
  border-radius: 5px;
  height: 2px;
  background-color: #FF8C00;
}

.testimonial-section .left-content h2 {
  font-size: 66px;
  text-transform: capitalize;
  color: #002203;

}

.testimonial-section .left-content h2 span {
  font-weight: 700;
  color: #FF8C00;
}

.testimonial-section .left-content .rating-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  position: relative;
}

.testimonial-section .left-content .rating-box .rating {
  width: 48%;
  text-align: center;
  border-left: 1px solid #002203;
  border-right: 1px solid #002203;
  border-radius: 10px;
  padding: 10px 0;
}

.testimonial-section .left-content .rating-box p {
  font-size: 56px;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 700;
  color: #002203;
  line-height: 40px;
}

.testimonial-section .left-content .rating-box .stars svg {
  color: #FF8C00;
}

.testimonial-section .left-content .rating-box .review {
  width: 48%;
  text-align: center;
  border-left: 1px solid #002203;
  border-right: 1px solid #002203;
  border-radius: 10px;
  padding: 10px 0;
}

.testimonial-section .left-content .rating-box .review span {
  text-transform: uppercase;
  font-weight: 700;
  color: #000;

}

.testimonial-section .right-content {
  padding-left: 40px;
  position: relative;
}

.testimonial-section .right-content .testimonial-carousel {
  padding-bottom: 50px;
}

.testimonial-section .right-content .testimonial-box {
  padding: 40px 30px;
  background-color: #002203;
  border-radius: 10px;
  position: relative;
}

.testimonial-section .right-content .testimonial-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg_pattern.webp);
  opacity: .04;
}

.testimonial-section .right-content .testimonial-box svg {
  position: absolute;
  top: 10px;
  left: 10px;
  opacity: .15;
  width: 60px;
  height: 60px;
  color: #fff;
}

.testimonial-section .right-content .testimonial-box p.message {
  color: #fff;
  position: relative;
  margin-top: 30px;
}

.testimonial-section .right-content .testimonial-box .author {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.testimonial-section .right-content .testimonial-box .author img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  filter: blur(2px);
}

.testimonial-section .right-content .testimonial-box .author p.name {
  color: #fff;
  text-transform: uppercase;

  font-weight: 700;
  font-family: 'Barlow Semi Condensed', sans-serif !important;
  margin-bottom: 0;
}

.testimonial-section .right-content .testimonial-box .author span {
  color: #FF8C00;
  font-size: 15px;
}

.testimonial-section .owl-nav {
  position: absolute;
  bottom: 0;
  right: 0;
}

.testimonial-section .owl-nav button svg {
  width: 20px;
  height: 20px;
  padding: 10px;
  border-radius: 50%;
  background-color: #002203;
  color: #fff;
  margin-left: 5px;
}




@media (max-width:1200px) {
  .testimonial-section .left-content h2 {
    font-size: 62px;

    text-transform: capitalize;
    color: #002203;
  }

}

@media (max-width:992px) {
  .testimonial-section .right-content {
    margin-top: 30px;
    padding-left: 0;

  }
}

@media (max-width:568px) {
  .testimonial-section .left-content .rating-box p {
    font-size: 42px;
  }

  .testimonial-section .left-content h2 {
    font-size: 46px;
    text-transform: capitalize;
    color: #002203;

  }
}



.gallery-section {
  padding: 80px 0;
  position: relative;
}

.gallery-section .gallery-box {
  width: 100%;
  height: 340px;
  overflow: hidden;
  border-radius: 6px;
}

.gallery-section .gallery-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}

.gallery-section .gallery-box:hover img {
  transform: scale(1.2);
}

.gallery-section .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.gallery-section .owl-nav button svg {
  width: 20px;
  height: 20px;
  padding: 10px;
  border-radius: 50%;
  background-color: #002203;
  color: #fff;
  opacity: .8;
  transition: all 0.4s;
}

.gallery-section .owl-nav .owl-prev {
  left: 0;
}

.gallery-section .owl-nav .owl-next {
  right: 0;
}

.gallery-section .owl-nav button:hover svg {
  transform: scale(1.4);
  opacity: 1;
  background-color: #000;
}

.gallery-section .owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.gallery-section .owl-dots .active span {
  width: 32px;
  border-radius: 50px;
  background-color: #FF8C00;
}

.gallery-section .owl-dots span {
  background-color: #002203;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
  transition: all 0.4s;
}

/* ------------------------------------------------------------------------------------------------------------------------------- */


.innerservice-title {
  padding: 220px 0 70px;
  width: 100%;
  background-color: #002203;
  background: url(../img/background/innertitle-bg.jpg) no-repeat center;
  background-size: cover;
  animation: bgZoom 10s ease-in-out infinite alternate;
  position: relative;
  overflow: hidden;
}


@keyframes bgZoom {
  0% {
    background-size: 110%;
    background-position: center;
  }

  100% {
    background-size: 120%;
    background-position: center center;
  }
}


.innerservice-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(255, 255, 255, 0.2));
}

.innerservice-title .inner-content {
  text-align: center;

}

.innerservice-title .inner-content h2 {
  color: #fff;
  font-size: 56px;
  font-family: 'Libertinus Serif', sans-serif;
  margin-bottom: 20px;
}

.innerservice-title .inner-content h2 span {
  font-weight: 700;
  color: #FF8C00;
  position: relative;
  padding-bottom: 14px;
  background: url(../img/background/scratch-border.webp) no-repeat bottom center;
  background-size: 130px;
  text-transform: uppercase;
}

.innerservice-title .inner-content h4 {
  color: #fff;
  font-size: 22px;
}

.innerservice-title .inner-content h4 span {
  font-size: 36px;
  color: #FF8C00;
  font-weight: 700;
}

.innerservice-title .inner-content a {
  padding: 5px 16px;
  display: inline-block;
  margin-top: 20px;
  background-color: #fff;
  color: #000;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.4s;
}

.innerservice-title .inner-content a:hover {
  transform: translateY(-4px) scale(1.1);
}




.breadcrumb-box {
  margin-top: 50px;
  margin-bottom: 20px;
  position: relative;
}

.breadcrumb-box ul li {
  display: inline-block;
  position: relative;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
}

.breadcrumb-box ul li a {
  color: #091722;
}

.breadcrumb-box ul li::after {
  content: "/";
  font-size: 14px;
  font-weight: 700;
  color: #091722;
  margin-left: 6px;

}

.breadcrumb-box ul li:last-child:after {
  display: none;
}



.innerservice-main-content {
  position: relative;
  padding-bottom: 60px;
  width: 100%;
}

.innerservice-main-content .main-content {
  padding-right: 40px;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.innerservice-main-content .main-content h2.title {
  font-size: 56px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 22px;
  color: transparent;
  background: url(../img/background/wild-tiger-bg.webp) no-repeat fixed right;
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
}

.innerservice-main-content .main-content h1.title{
  font-weight: 600;
  color: #002203;
}
.innerservice-main-content .main-content p.text {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 500;
}

.innerservice-main-content .main-content p.text span {
  color: #e03400;
  font-weight: 600;
  text-transform: capitalize;
  font-style: italic;
  
}
.innerservice-main-content .main-content p.text strong{
  color: #000;
  text-transform: capitalize;
  
}
.innerservice-main-content .main-content p.text a{
  text-transform: capitalize;
  text-decoration: underline!important;
  color: #e03400;
  font-weight: 800;
}

.innerservice-main-content .main-content .content-box {
  padding: 10px 0;
}

.innerservice-main-content .main-content h4.sub-title {
  font-weight: 600;
  color: #002203;
  position: relative;
  font-size: 26px;
  margin-bottom: 20px;
}

.innerservice-main-content .main-content h4.sub-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: #002203;
}

.innerservice-main-content .main-content ul li {
  margin-bottom: 7px;
  font-weight: 600;
  color: #002203;
  font-size: 16px;
  transition: all 0.4s;
  font-size: 18px;
}
.innerservice-main-content .main-content ul li a{
  color: #e03400;
  text-transform: capitalize;
  font-weight: 700;
  text-decoration: underline!important;
}

.innerservice-main-content .main-content ul li:hover {
  color: #608600;
}

.innerservice-main-content .main-content ul li svg {
  margin-right: 6px;
}
.innerservice-main-content .main-content .cta-box{
  padding: 20px 30px;
  background-color: #002203;
  border-radius: 20px;
}
.innerservice-main-content .main-content .cta-box h3{
  color: #fff;
  font-size: 36px;
}
.innerservice-main-content .main-content .cta-box h3 span{
  color: #FF8C00;
}
.innerservice-main-content .main-content .cta-box p{
  color: #fff;
}
.innerservice-main-content .main-content .cta-box p strong{
  color: #FF8C00;
}

.main-booking-form {
  padding: 30px;
  position: relative;
  background: url(../img/background/form-bg.jpg) no-repeat fixed;
  background-size: cover;
  overflow: hidden;
  border-radius: 10px;
  margin: 20px 0;
}

.main-booking-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.main-booking-form h6.heading {
  color: #fff;
  font-size: 28px;
  position: relative;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 5px;
}

.main-booking-form h6.heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #fff;
  border-radius: 5px;
}

.main-booking-form p.info {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
}

.main-booking-form form {
  position: relative;
}

.main-booking-form label {
  color: #fff;
  font-size: 12px;
  position: relative;
  margin-bottom: 0;
  font-weight: 600;
  letter-spacing: 1px;
}

.main-booking-form .form-control[type='date'] {
  text-transform: uppercase
}

.main-booking-form .form-control {
  box-shadow: none;
  outline: none;
}

.main-booking-form button {
  padding: 6px 20px;
  border-radius: 50px;
  margin-top: 20px;
  background-color: #002203;
  color: #fff;
  font-weight: 700;
  border-color: #fff;
  transition: all 0.4s;
}

.main-booking-form button:hover {
  background-color: #FF8C00;
  color: #000;
  transform: translateY(-5px);
}




.innerservice-main-content .main-content table thead {
  background-color: #002203;
  color: #fff;
}

.innerservice-main-content .main-content table tbody {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}

.innerservice-main-content .main-content table tbody tr {
  transition: all 0.4s;
  position: relative;
}

.innerservice-main-content .main-content table tbody tr:hover {
  color: #091722;
  border-bottom: 1px solid #002203;
}


.innerservice-main-content .content-box {
  margin: 20px 0;
  position: relative;
}
.innerservice-main-content .feature-box-wrapper {
  margin: 20px 0;
  position: relative;
}

.innerservice-main-content .feature-box-wrapper .item-box {
  padding: 30px 20px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  margin-bottom: 14px;
  position: relative;
  background-color: #091722;
  transition: all 0.4s;
  border-radius: 20px;
  
}

.innerservice-main-content .feature-box-wrapper .item-box:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transform: scale(1.03);
}

.innerservice-main-content .feature-box-wrapper .item-box svg {
  width: 20px;
  height: 20px;
  padding: 10px;
  background-color: #fff;
  color: #002203;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  right: 10px;
  animation: vibrateIcon .5s infinite;

}

.innerservice-main-content .feature-box-wrapper .item-box h5 {
  color: #fff;
  font-size: 24px;
  transition: all 0.4s;
}

.innerservice-main-content .feature-box-wrapper .item-box:hover h5 {
  color: #FF8C00;
}

.innerservice-main-content .feature-box-wrapper .item-box p {
  color: rgba(255, 255, 255, 0.8);
  height: 200px;
  overflow: auto;
}

.innerservice-main-content .feature-box-wrapper .item-box p span {
  color: #FF8C00;
}

.innerservice-main-content .side-menubar {
  width: 100%;
  position: sticky;
  top: 140px;
  margin-bottom: 30px;
}

.innerservice-main-content .side-menubar .related-link-box {

  margin-bottom: 20px;
}

.innerservice-main-content .side-menubar .related-link-box h5 {
  position: relative;
  font-weight: 700;
  color: #002203;

}

.innerservice-main-content .side-menubar .related-link-box h5 span {
  padding-right: 10px;
  background-color: #fff;
  position: relative;
}

.innerservice-main-content .side-menubar .related-link-box h5::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #002203;
}

.innerservice-main-content .side-menubar .related-link-box li a {
  display: block;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 600;
  margin-bottom: 7px;
  transition: all 0.4s;
}

.innerservice-main-content .side-menubar .related-link-box li a svg {
  color: #002203;
}

.innerservice-main-content .side-menubar .related-link-box li a:hover {
  color: #002203;
}

.innerservice-main-content .side-menubar .advertisement-box {
  margin-top: 30px;
}

.innerservice-main-content .side-menubar .advertisement-box .img-box {
  width: 100%;
  height: 430px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.innerservice-main-content .side-menubar .advertisement-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


@media (min-width:992px) and (max-width:1200px) {
  .innerservice-main-content .side-menubar .advertisement-box .img-box {
    width: 100%;
    height: 300px;
  }
}

@media (max-width:992px) {
  .innerservice-main-content .main-content {
    padding-right: 0;
    border: none;
  }

  .innerservice-title .inner-content h2 {
    color: #fff;
    font-size: 48px;
    font-family: 'Libertinus Serif', sans-serif;
    margin-bottom: 20px;
  }


  .innerservice-title {
    padding: 220px 0 70px;
    animation: none;
  }

}

@media (max-width:568px) {
  .innerservice-main-content .side-menubar .advertisement-box .img-box {
    width: 100%;
    height: 360px;
  }

  .innerservice-title .inner-content h2 {
    color: #fff;
    font-size: 36px;
    font-family: 'Libertinus Serif', sans-serif;
    margin-bottom: 20px;
  }

  .innerservice-main-content .main-content h2.title {
    font-size: 42px;
  }

  .main-booking-form {
    padding: 30px 20px;
    position: relative;
    background: url(../img/background/form-bg.jpg) no-repeat fixed;
    background-size: cover;
    overflow: hidden;
    border-radius: 10px;
    margin: 20px 0;
  }
}



.main-faq-section {
  padding: 60px 0 60px;
  position: relative;
  overflow: hidden;
}

.main-faq-section h3 {
  margin-bottom: 20px;
  font-size: 36px;
  color: #002203;
  font-weight: 700;
}

.main-faq-section .accordion {
  border-radius: 0;
  padding-right: 40px;
}

.main-faq-section .accordion-item {
  border: none;
  background-color: none;
  border-radius: 0 !important;
  margin-bottom: 10px;
}

.main-faq-section .accordion-button {
  border-radius: 4px !important;
  box-shadow: none;
  background-color: #002203;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 10px 20px;

}

.main-faq-section .accordion-button::after {
  background-image: url(../img/icons/down.png);
}

.main-faq-section .offer-box {
  padding: 30px;
  position: relative;
  background: url(../img/slider/jawai-leopard-safari.webp) no-repeat center;
  background-size: cover;
  border-radius: 10px;
  height: 400px;
  overflow: hidden;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.main-faq-section .offer-box .video-box {
  width: 100%;
  height: 100%;
  position: absolute;
}

.main-faq-section .offer-box .video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-faq-section .offer-box .video-box::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.65);
}

.main-faq-section .offer-box h4 {
  color: #fff;
  position: relative;
  text-align: center;
  font-size: 36px;
  text-transform: uppercase;
}

.main-faq-section .offer-box p {
  color: #fff;
}

.main-faq-section .offer-box p span {
  color: #FF8C00;
  font-style: italic;
  font-weight: 700;
}

.main-faq-section .offer-box p code {
  background-color: rgba(0, 0, 0, 0.17);
  padding: 4px 6px;
  font-weight: 700;
  color: #dd000b;
  display: block;
  font-size: 22px;
}

.main-faq-section .offer-box a {
  position: relative;
  padding: 6px 20px;
  background-color: #FF8C00;
  color: #091722;
  font-weight: 700;
  display: inline-block;
  margin-top: 10px;
  transition: all 0.4s;
  
}
.main-faq-section .offer-box a:hover{
  transform: translateY(-5px) scale(1.1);
  background-color: #fff;
}

.main-faq-section .offer-box span.tag{
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  color: #fff;
  font-size: 14px;
}
.main-faq-section .offer-box span.tag svg{
  color:#FF8C00;
  animation: spin 2s infinite alternate;
  margin-right: 5px;
}

@keyframes spin{
  0%{
    transform: rotate(0) scale(1);
  }
  100%{
    transform: rotate(360deg) scale(1.4);
  }
}


@media (max-width:992px){
  .main-faq-section .accordion {
  border-radius: 0;
  padding-right: 0;
  margin-bottom: 30px;
}

}







.innerservice-attraction {
  background-color: #002203;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.innerservice-attraction::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg_pattern.webp);
  opacity: .02;
}

.innerservice-attraction h2 {
  margin-bottom: 30px;
}

.innerservice-attraction .img-box {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.innerservice-attraction .img-box:hover {
  cursor: zoom-in;
}

.innerservice-attraction .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}

.innerservice-attraction .img-box:hover img {
  transform: scale(1.3);
  filter: brightness(50%);
}

.innerservice-attraction .img-box h6.box-title {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  color: #fff;
  font-size: 28px;
  width: 100%;
  text-align: center;
  opacity: 0;
  transition: all 0.4s;
}

.innerservice-attraction .img-box:hover h6.box-title {
  top: 10px;
  opacity: 1;
}

.innerservice-attraction .img-box p.text {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  padding: 0 10px;
  color: #fff;
  opacity: 0;
  transition: all 0.4s;

}

.innerservice-attraction .img-box:hover p.text {
  opacity: 1;
}

.innerservice-attraction .img-box p.text span {
  color: #FF8C00;
  font-weight: 700;
}




/* ------------------------------------------------------------------------------------------------------------------------------------ */
.enquiry-form-modal .modal-dialog {
  padding: 0;
  min-width: fit-content;
}

.enquiry-form-modal .modal-dialog .btn-close {
  position: absolute;
  top: 10px;
  right: 20px;
  background: transparent;
  opacity: 1;
  z-index: 10;
}

.enquiry-form-modal .modal-dialog .btn-close svg {
  color: #FFF;
  width: 24px;
  height: 24px;
}

.enquiry-form-modal .modal-body {
  padding: 0;

}

.enquiry-form-modal .modal-content {
  background-color: #002203;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
}

.enquiry-form-modal .modal-content .row>* {
  padding: 0;
}

.enquiry-form-modal .modal-content .img-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.enquiry-form-modal .modal-content .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 14s;
}

.enquiry-form-modal .modal-content .img-box:hover img {
  transform: scale(1.3);
}

.enquiry-form-modal .modal-content .img-box p.text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 32px;
  font-weight: 300;
  color: #fff;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.7);
}

.enquiry-form-modal .modal-content .img-box p.text svg {
  font-size: 54px;
  color: #fff;
}

.enquiry-form-modal .modal-content .img-box p.text span {
  color: #FF8C00;
  font-family: 'Barlow Semi Condensed', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
}

.enquiry-form-modal .modal-content .img-box p.offer {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  background-color: #FF8C00;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  border-radius: 5px;
  animation: animeText .5s infinite alternate;
}

@keyframes animeText {
  0% {
    transform: translateX(-50%) rotate(2deg);
  }

  50% {
    transform: translateX(-50%) rotate(-2deg);
  }
}

.enquiry-form-modal .modal-content .form-content {
  padding: 20px 40px;
  position: relative;
}

.enquiry-form-modal .modal-content .form-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg_pattern.webp);
  opacity: .03;
}

.enquiry-form-modal .modal-content .form-content form {
  position: relative;
}

.enquiry-form-modal .modal-content .form-content h4 {
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 10px;
}

.enquiry-form-modal .modal-content .form-content h4 span {
  color: #FF8C00;
}

.enquiry-form-modal .modal-content .form-content h4::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: #fff;

}

.enquiry-form-modal .modal-content .form-content p.short-info {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.enquiry-form-modal .modal-content .form-content .form-control {
  padding: 8px 20px;
  font-weight: 700;
  color: #002203;
  box-shadow: none;
  outline: none;
  border-color: #000;
  margin-bottom: 10px;
}

.enquiry-form-modal .modal-content .form-content button {
  background-color: #FF8C00;
  border: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  color: #091722;
  width: 100%;

  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.4s;
}

.enquiry-form-modal .modal-content .form-content button:hover {
  background-color: #fff;

}

.enquiry-form-modal .modal-content .form-content p.form-footer {
  color: #fff;
  font-size: 14px;
  text-align: center;
  margin-top: 6px;
}

@media (max-width:992px) {
  .enquiry-form-modal .modal-content .form-content .form-control {
    padding: 5px 20px;

  }

  .enquiry-form-modal .modal-content .form-content {
    padding: 20px;
  }
}

@media (max-width:768px) {
  .enquiry-form-modal .modal-content {
    background-color: #002203;
    background: url(../img/gallery/img-3.webp) no-repeat;
    background-size: cover;
    position: relative;
    border-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;

  }

  .enquiry-form-modal .modal-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
  }
}






.innercontact-page {
  padding: 0 0 80px;
  position: relative;
}

.innercontact-page .left-content .contact-box {
  padding: 30px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.17);
  display: flex;
  align-items: center;
  gap: 20px;
}

.innercontact-page .left-content .contact-box svg {
  width: 26px;
  height: 26px;
  padding: 20px;
  background-color: #002203;
  color: #FFF;
}

.innercontact-page .left-content .contact-box h5 {
  color: #002203;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
}

.innercontact-page .left-content .contact-box a {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 600;
  transition: all 0.4s;
}

.innercontact-page .left-content .contact-box a.call {
  font-size: 20px;
}

.innercontact-page .left-content .contact-box a:hover {
  color: #002203;

}




.innercontact-page .form-content {
  padding-right: 30px;
}

.innercontact-page .form-content h4 {
  color: #002203;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 10px;
}

.innercontact-page .form-content h4 span {
  color: #FF8C00;
}

.innercontact-page .form-content h4::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: #FF8C00;

}

.innercontact-page .form-content p.short-info {
  color: rgba(0, 0, 0, 0.7);
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.innercontact-page .form-content .form-control {
  padding: 8px 20px;
  font-weight: 700;
  color: #002203;
  box-shadow: none;
  outline: none;
  border: 2px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 10px;
}

.innercontact-page .form-content button {
  background-color: #002203;
  border: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  width: 100%;

  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.4s;
}

.innercontact-page .form-content button:hover {
  background-color: #000;
  color: #fff;

}

.innercontact-page .form-content p.form-footer {
  color: #000;
  font-size: 14px;
  text-align: center;
  margin-top: 6px;
  font-weight: 700;
}


@media (max-width:992px) {

  .innercontact-page {
    padding: 0 0 30px;
    position: relative;
  }

  .innercontact-page .form-content {
    padding-right: 0;
    margin-top: 30px;
  }

}

/* -------------------------------------------------------------------------------------------------------------------------------------- */

.whyus-section {
  background-color: #002203;
  padding: 60px 0;
  position: relative;
}

.whyus-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg_pattern.webp);
  opacity: .02;
}

.whyus-section .whyus-box {
  text-align: center;
  padding: 20px 30px;
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  background: url(../img/background/wild-tiger-bg.webp) no-repeat fixed;
  background-size: cover;
  overflow: hidden;
  transition: all 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.whyus-section .whyus-box:hover {
  border-color: #fff;
}

.whyus-section .whyus-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
}

.whyus-section .whyus-box h4 {
  color: #fff;
  position: relative;
  margin-bottom: 40px;
}

.whyus-section .whyus-box h4 span {
  background: url(../img/background/scratch-border.webp) no-repeat bottom center;
  background-size: 80px;
  padding-bottom: 12px;
  color: #FF8C00;
}

.whyus-section .whyus-box p {
  color: #fff;
  letter-spacing: 1px;

}

@media (max-width:1200px) {
  .whyus-section .whyus-box {
    padding: 20px 10px;

  }
}

@media (max-width:992px) {
  .whyus-section .whyus-box {
    margin-bottom: 20px;
    background-position: center;
  }
}


/* ------------------------------------------------------------------------------------------------------------------------------------------------ */


.taxi-wrapper {
  padding: 80px 0;
  position: relative;
  background-color: #091722;
}

.taxi-wrapper .owl-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.taxi-wrapper .owl-item .img-box {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.taxi-wrapper .owl-item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}

.taxi-wrapper .owl-item:hover img {
  transform: scale(1.1);
}

.taxi-wrapper .owl-item .content {
  padding: 0 20px 20px;
}

.taxi-wrapper .owl-item .content h4 {
  color: #091722;
  margin-top: -40px;
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

.taxi-wrapper .owl-item .content ul li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
}

.taxi-wrapper .owl-item .content ul li svg {
  width: 14px;
  height: 14px;
  padding: 8px;
  border-radius: 50%;
  background-color: #091722;
  color: #fff;
}

.taxi-wrapper .owl-item .content button {
  padding: 6px 20px;
  border-radius: 5px;
  background-color: #091722;
  color: #fff;
  font-weight: 700;
  transition: all 0.4s;
  border: none;

}

.taxi-wrapper .owl-item:hover .content button {
  background-color: #FF8C00;
  color: #091722;
}

@media (max-width:1200px) {
  .taxi-wrapper .owl-item .img-box {
    width: 100%;
    height: 240px;
    overflow: hidden;
  }

  .taxi-wrapper .owl-item .content h4 {
    margin-top: -20px;
    font-size: 26px;
  }

  .taxi-wrapper .owl-item .content ul li {
    gap: 10px;
    font-size: 16px;
  }
}

/* -------------------------------------------------------------------------------------------------------------------------------- */



/* CSS (ticker.css) */
.ticker-slider {
  overflow: hidden;
  position: relative;
}

.ticker-slider .ticker-item-wrapper {
  animation: scrollAnimation 60s linear infinite;
  padding: 0;
  margin: 0;
  display: flex;
  width: max-content;
  flex-wrap: nowrap;

}

.ticker-slider .ticker-item-wrapper .list-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 16px 20px 0;
}

.ticker-slider .ticker-item-wrapper .list-item p.text {
  font-size: 76px;
  font-weight: 900;
  margin-bottom: 0;
  text-transform: uppercase !important;
  transition: all 0.4s;
  color: transparent;
  font-family: 'Barlow Semi Condensed', sans-serif;
  -webkit-text-stroke: 1.5px #002203; /* Outline stroke */
  text-stroke: 1.5px #002203;
}

.ticker-slider .ticker-item-wrapper .list-item p.text:hover{
  color: #002203;
}
.ticker-slider .ticker-item-wrapper .list-item img {
  max-width: 54px;
}


.ticker-slider[data-animated='true'] {
  overflow: hidden;
}

@keyframes scrollAnimation {
  to {
    transform: translate(calc(-50%));
  }
}
