@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,200..900;1,200..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


:root {
  --main-color: #FF8315;
  --greycolor-bg: #f3f4f5;
  --secondary-text: #282f34;
  --fonts-color: #787878;
  --blackfont-color: #282f34;
  --body-font-family: "Nunito Sans", serif;
  --head-font-family: "Roboto Condensed", serif;
}

body {
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

::-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 {
  font-family: 'Roboto 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;
}

.call-button {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 800;
  color: var(--main-color);
}

.form-button {
  padding: 10px 20px;
  display: inline-block;
  margin-bottom: 16px;
  background-color: #002203;
  letter-spacing: 1px;
  border-radius: 4px;
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  transition: all 0.4s;
}

.form-button:hover {
  background-color: var(--main-color);
  color: #000;
}

/* ----------------------------------------------------------------------------------------------------------------- */


.cursor-follower {
  width: 32px;
  height: 32px;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
  background: url(../img/icons/tiger.png);
  transition: all 0.1s linear;
  background-size: cover;
  z-index: 99;
}




/* ================================================================================================== */

.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 800px;
}

.hero-slider .video-box {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slider .video-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-slider .video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.hero-slider .hero-slider-content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.hero-slider .slider-content {
  text-align: center;
  padding: 50px 0;
}

.hero-slider .slider-content h6 {
  padding: 10px 20px;
  border-radius: 50px;
  background-color: var(--main-color);
  width: fit-content;
  margin: 0 auto;
  color: #fff;
  border: 1px solid #e76c00;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInDown 1.4s linear forwards;
  animation-delay: 1s;
}




.hero-slider .slider-content h1 {
  font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
  color: rgb(255, 255, 255);
  font-weight: 600;
  font-size: 94px;
  line-height: 80px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  opacity: 0;
  animation: fadeIn 1.4s linear forwards;
  animation-delay: 1.2s;
}

.hero-slider .slider-content h1 span {
  color: var(--main-color);
  font-size: 120px;
}

.hero-slider .slider-content a {
  display: inline-block;
  padding: 14px 50px;
  margin-top: 20px;
  border-radius: 50px;
  border: 2px solid var(--greycolor-bg);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  background-color: rgba(0, 0, 0, 0.24);
  opacity: 0;
  animation: fadeIn 1.4s linear forwards;
  animation-delay: 1.2s;
  transition: all 0.4s;
}

.hero-slider .slider-content a:hover {
  background-color: var(--main-color);
  transform: scale(1.2);
  color: #000;
  border-color: #000;
}


@media (min-width:992px) and (max-width:1200px) {
  .hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 680px;
  }

  .hero-slider .slider-content h1 {
    font-weight: 600;
    font-size: 72px;
    line-height: 80px;
  }

  .hero-slider .slider-content h1 span {
    color: var(--main-color);
    font-size: 96px;
  }

}

@media (max-width:992px) {
  .hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 600px;
  }

  .hero-slider .slider-content h1 {
    font-weight: 600;
    font-size: 56px;
    line-height: 60px;
  }

  .hero-slider .slider-content h1 span {
    color: var(--main-color);
    font-size: 82px;
  }

  .hero-slider .slider-content a {
    display: inline-block;
    padding: 8px 50px;
    font-size: 16px;
  }

}

@media (max-width:768px) {


  .hero-slider .slider-content h1 {
    font-weight: 600;
    font-size: 46px;
    line-height: 50px;

  }

  .hero-slider .slider-content h1 span {
    font-size: 64px;
  }

  .hero-slider .slider-content a {
    display: inline-block;
    padding: 8px 50px;
    font-size: 16px;
  }

}

@media (max-width:568px) {
  .hero-slider .slider-content h1 {
    font-weight: 600;
    font-size: 42px;
    line-height: 50px;

  }

  .hero-slider .slider-content h1 span {
    font-size: 52px;
  }
}




.about-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-section .heading span.sub-title {
  display: block;
  text-transform: capitalize;
  position: relative;
  font-size: 18px;
  color: #171717;
  padding-left: 14px;
  border-left: 4px solid var(--main-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.about-section .heading h2.title {
  font-weight: 700;
  position: relative;
  font-size: 56px;
  line-height: 60px;
  margin-bottom: 20px;

}

.about-section .heading h2.title span {
  color: var(--main-color);
}

.about-section p.text {
  color: #848484;
  line-height: 26px;
  font-weight: 400;
  position: relative;
  margin-bottom: 30px;
}

.about-section .features {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.about-section .features::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: .4px;
  background-color: #E3E3E3;
  transform: translate(-50%, -50%);
}

.about-section .features::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: .4px;
  background-color: #E3E3E3;
  transform: translate(-50%, -50%) rotate(90deg);
}

.about-section .item-box {
  text-align: center;
  padding: 20px 6px;
  position: relative;
}

.about-section .item-box h6 {
  font-weight: 700;
  font-size: 24px;
  text-transform: capitalize;
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
}

.about-section .item-box p {
  margin-bottom: 0;
}

.about-section .btn-group a {
  padding: 10px 20px;
  border-radius: 50px;
  transition: all 0.4s;
  position: relative;
  font-weight: 700;
  text-transform: capitalize;
  margin-right: 14px;
  transition: all 0.4s;
}

.about-section .btn-group a:first-child {
  background-color: var(--main-color);
  color: #fff;
  border: 1px solid transparent;
}

.about-section .btn-group a:last-child {
  border: 1px solid #848484;
  color: #282f34;
}

.about-section .btn-group a:hover {
  background-color: #171717;
  color: #fff;
}

.about-section .right-content {
  width: 100%;
  height: 100%;
  position: relative;
}

.about-section .right-content .img-box {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: end;
}

.about-section .right-content .img-box .img1 {
  width: 80%;
  object-fit: cover;
  height: 320px;
  position: relative;
}

.about-section .right-content .img-box .img2 {
  position: absolute;
  top: 280px;
  left: 0;
  border: 10px solid #fff;
  width: 85%;
  object-fit: cover;
}

@media (min-width:992px) and (max-width:1200px) {
  .about-section .heading h2.title {
    font-weight: 700;
    position: relative;
    font-size: 42px;
    line-height: 60px;
    margin-bottom: 20px;

  }
}

@media (max-width:992px) {
  .about-section .right-content {
    margin-top: 40px;
  }

  .about-section .right-content .img-box {
    text-align: center;
  }

  .about-section .right-content .img-box .img1 {
    width: 90%;
    object-fit: cover;
    height: auto;
    position: relative;
    border: 0;
    border-top-left-radius: 60px;
    border-top-right-radius: 6px;
    border-bottom: 6px solid #fff;
  }

  .about-section .right-content .img-box .img2 {
    border-bottom-right-radius: 60px;
    border-bottom-left-radius: 6px;
    position: relative;
    top: 0;
    left: 0;
    border: 0;
    width: 90%;
    object-fit: cover;
  }

}

@media (max-width:768px) {
  .about-section .heading h2.title {
    font-size: 42px;
    line-height: 46px;

  }


}

@media (max-width:568px) {
  .about-section .features::before {
    display: none;
  }

  .about-section .features::after {
    display: none;
  }

  .about-section .features .item-box {
    border-bottom: 1px solid #E3E3E3;
  }

  .about-section .heading h2.title {
    font-size: 34px;
    line-height: 40px;

  }

  .about-section .right-content .img-box .img1 {
    width: 100%;
    border-top-left-radius: 60px;
    border-top-right-radius: 6px;
    border-bottom: 6px solid #fff;
  }

  .about-section .right-content .img-box .img2 {
    width: 100%;
    border-bottom-right-radius: 60px;
    border-bottom-left-radius: 6px;
  }

}



.cta-textbox {
  padding: 40px 0;
  position: relative;
  background-color: #002203;
}

.cta-textbox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg_pattern.png);
  opacity: .02;
}

.cta-textbox p.text {
  margin-bottom: 0;
  color: #fff;
  font-family: 'Crimson Pro', Arial, Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 40px;
}

.cta-textbox a {
  padding: 14px 50px;
  background-color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  color: #282f34;
  transition: all 0.4s;
  display: inline-block;
}

.cta-textbox a:hover {
  background-color: var(--main-color);
  color: #fff;
}




.video-ctabox {
  position: relative;
  background-color: #002203;
}

.video-ctabox .container-fluid {
  padding: 0;
}

.video-ctabox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg_pattern.png);
  opacity: .02;
}

.video-ctabox .row>* {
  padding: 0;
}

.video-ctabox .video-box {
  width: 100%;
  height: 700px;
  position: relative;
}

.video-ctabox .video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-ctabox .text-content {
  padding-left: 60px;
  padding-right: 40px;
  position: relative;
}

.video-ctabox .text-content .logo {
  width: 200px;
  margin-bottom: 40px;
}

.video-ctabox .text-content h2 {
  font-size: 80px;
  color: #adadad;
  margin-bottom: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.video-ctabox .text-content h2 span {
  color: #fff;
}

.video-ctabox .text-content h4 {
  color: var(--main-color);
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: 700;
}

.video-ctabox .text-content ul li {
  color: #E3E3E3;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.video-ctabox .text-content ul li svg {
  color: #e76c00;
  margin-right: 10px;
}

.video-ctabox .text-content a {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 30px;
  border: 2px solid #FF8315;
  border-radius: 50px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  transition: all 0.4s;
}

.video-ctabox .text-content a:hover {
  background-color: var(--main-color);
  color: #000;
}

@media (max-width:1600px) {
  .video-ctabox .text-content .logo {
    margin-bottom: 20px;
  }

  .video-ctabox .text-content h2 {
    font-size: 74px;
  }
}

@media (max-width:1400px) {

  .video-ctabox .text-content h2 {
    font-size: 62px;
  }

  .video-ctabox .text-content a {
    margin-top: 20px;
  }
}

@media (max-width:1200px) {

  .video-ctabox .text-content h2 {
    font-size: 56px;
  }

  .video-ctabox .text-content a {
    margin-top: 20px;
  }
}

@media (max-width:992px) {


  .video-ctabox .text-content {
    padding: 60px 40px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
  }

  .video-ctabox .text-content h2 {
    font-size: 78px;
    font-weight: 700;
  }
}

@media (max-width:768px) {

  .video-ctabox .text-content h2 {
    font-size: 62px;
  }
}

@media (max-width:568px) {
  .video-ctabox .text-content {
    padding: 60px 20px 0;
  }

  .video-ctabox .text-content h2 {
    font-size: 42px;
    font-weight: 700;
  }

  .video-ctabox .text-content a {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    border: 2px solid #FF8315;
    border-radius: 50px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.4s;
  }
}













.section-title {
  position: relative;
}

.section-title span.sub-title {
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  font-size: 16px;
  color: #282f34;
  padding-left: 14px;
  border-left: 4px solid var(--main-color);
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-title h2.title {
  font-weight: 700;
  position: relative;
  font-size: 56px;
  line-height: 60px;
  margin-bottom: 10px;

}

.section-title h2.title span {
  color: var(--main-color);
}

.section-title p.tagline {
  color: #787878;
  font-weight: 500;
}

@media (max-width:568px) {
  .section-title h2.title {
    font-size: 34px;
    line-height: 40px;

  }
}

.package-section {
  position: relative;
  padding: 60px 0 80px;
}

.package-section .content-wrapper {
  position: relative;
  margin-top: 40px;
}

.package-section .item-box {
  position: relative;
  width: 100%;
  height: 520px;

  overflow: hidden;
}

.package-section .item-box .img-box {
  width: 100%;
  height: 100%;
  position: relative;
}

.package-section .item-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}

.package-section .item-box .content {
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  -webkit-transition: .45s ease-in-out;
  -moz-transition: .45s ease-in-out;
  -ms-transition: .45s ease-in-out;
  transition: .45s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(4, 62, 76, 0) 50%, rgb(23 23 23) 100%);

}

.package-section .item-box .content .content-inner {
  padding: 0 30px;
  transform: translateY(60px);
  transition: all 0.4s;
}

.package-section .item-box:hover .content .content-inner {
  transform: translateY(-20px);
}

.package-section .item-box .content h4 {
  color: #fff;
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 26px;
  margin-bottom: 10px;
}

.package-section .item-box .content p.type {
  color: var(--main-color);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 40px;

}

.package-section .item-box span {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  background-color: #FF8315;
  padding: 6px 10px;
  border-radius: 50px;
  font-size: 14px;
}

.package-section .item-box span svg {
  margin-right: 5px;
  animation: iconAnime 1s infinite alternate;
}

@keyframes iconAnime {
  0% {
    transform: scale(.9) rotate(0);
  }

  100% {
    transform: scale(1.2) rotate(360deg);
  }
}

.package-section .item-box .btn-group a {
  padding: 10px 20px;
  border-radius: 50px;
  transition: all 0.4s;
  position: relative;
  font-weight: 700;
  text-transform: capitalize;
  margin-right: 14px;
  transition: all 0.4s;
}


.package-section .item-box .btn-group a:first-child {
  background-color: var(--main-color);
  color: #fff;
  border: 1px solid transparent;
}

.package-section .item-box .btn-group a:last-child {
  border: 1px solid #848484;
  color: #fff;
  margin-right: 0;
}

.package-section .item-box .btn-group a:hover {
  background-color: #fff;
  color: #171717;
}

@media (max-width:400px) {
  .package-section .item-box .btn-group a {
    padding: 10px 16px;
    margin-right: 8px;
  }
}


.cta-section {
  position: relative;
  background: url(../img/ranthambore-bg1.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center bottom;
  padding: 200px 0;
}

.cta-section::before {
  content: "";
  background-color: #0D1A0080;
  background: url(../img/divider-top.png) repeat-x;
  background-position: top;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.cta-section::after {
  content: "";
  background-color: #0D1A0080;
  background: url(../img/divider-bottom.png) repeat-x;
  background-position: bottom;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.cta-section h2 {
  font-size: 86px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 20px #000;
  line-height: 90px;
}

.cta-section h2 span {
  color: var(--main-color);
}

.cta-section p {
  color: var(--greycolor-bg);
  text-transform: capitalize;
  font-size: 20px;
}

.cta-section p strong {
  color: var(--main-color);
  font-weight: 900;
}

.cta-section a {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--main-color);
  border-radius: 50px;
  color: #fff;
  font-weight: 800;
  margin-top: 30px;
}

@media (min-width:992px) and (max-width:1200px) {
  .cta-section {
    padding: 140px 0;
  }

  .cta-section h2 {
    font-size: 76px;
    line-height: 80px;
  }

}

@media (max-width:992px) {
  .cta-section {
    padding: 120px 0;
  }

  .cta-section h2 {
    font-size: 56px;
    line-height: 60px;
  }

  .cta-section a {
    margin-top: 20px;
  }

  .cta-section p {
    font-size: 18px;
  }
}


@media (max-width:568px) {
  .cta-section {
    padding: 120px 0;
  }

  .cta-section h2 {
    font-size: 46px;
    line-height: 50px;
  }

  .cta-section a {
    margin-top: 20px;
  }
}


.attraction-section {
  padding: 80px 0;
  position: relative;
}

.attraction-section .content-box-wrapper {
  margin-top: 30px;
}

.attraction-section .item-box {
  position: relative;
  background-color: #002203;
  border-radius: 10px;
  margin-bottom: 35px;
}

.attraction-section .item-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg_pattern.png);
  opacity: .05;
}

.attraction-section .item-box .img-box {
  position: relative;
  border-radius: 10px 10px 0 0;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.attraction-section .item-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 2s;
}

.attraction-section .item-box:hover img {
  transform: scale(1.4);
}

.attraction-section .item-box .content {
  position: relative;
  padding: 20px 30px;
}

.attraction-section .item-box .content .icon svg {
  width: 30px;
  height: 30px;
  padding: 30px;
  background-color: #fff;
  color: #002203;
  border-radius: 50%;
  margin-top: -65px;
  margin-bottom: 20px;
}

.attraction-section .item-box .content h4 {
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  color: #fff;
}

.attraction-section .item-box .content p {
  color: var(--greycolor-bg);
}

.attraction-section .item-box .content a {
  color: var(--main-color);
  font-weight: 900;
  text-shadow: 0 0 3px #000;
  display: block;
  text-transform: uppercase;
  text-decoration: underline !important;
  transition: all 0.4s;
}

.attraction-section .item-box .content a:hover {
  color: #fff;
}

@media (max-width:568px) {
  .attraction-section .item-box .content {
    position: relative;
    padding: 20px;
  }

  .attraction-section .item-box .img-box {
    height: 260px;
  }

  .attraction-section .item-box .content .icon svg {
    width: 22px;
    height: 22px;
    padding: 20px;
    margin-top: -40px;
    margin-bottom: 10px;
  }
}


.testimonial-bg-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.testimonial-bg-section .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.testimonial-bg-section .row>* {
  padding-left: 0;
  padding-right: 0;
}

.testimonial-bg-section .left-content {
  position: relative;
  width: 100%;
  height: 100%;
  background: url(../img/testi-bg1.jpg) no-repeat;
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonial-bg-section .right-content {
  position: relative;
  padding: 80px 80px;
  height: 700px;
  background-image: url(../img/testi-bg2.jpg);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonial-bg-section .right-content::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.testimonial-bg-section .right-content .section-title span.sub-title {
  color: var(--greycolor-bg);
}

.testimonial-bg-section .right-content .section-title h2 {
  color: #fff;
}

.testimonial-bg-section .right-content .section-title p {
  max-width: 70%;
  color: var(--greycolor-bg);
}

.main-testimonial-box {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: -300px;
  transform: translateX(335px);
  margin-bottom: 60px;
}

.main-testimonial-box .testimonial-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  position: relative;

}



.main-testimonial-box .testimonial-box .img-box {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
}

.main-testimonial-box .testimonial-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-testimonial-box p.text {
  font-style: italic;
  font-weight: 500;
  color: #787878;
}

.main-testimonial-box .content {
  width: 80%;
}

.main-testimonial-box .content span {
  display: block;
  font-style: italic;
  font-weight: 800;
  color: #787878;
}

.main-testimonial-box .content p.name {
  color: var(--main-color);
  text-transform: uppercase;
  font-weight: 700;
}

@media (max-width:1400px) {
  .main-testimonial-box {
    transform: translateX(280px);

  }

}

@media (max-width:1200px) {
  .testimonial-bg-section .right-content {
    position: relative;
    padding: 50px 30px 80px 60px;
  }

}

@media (max-width:992px) {

  .main-testimonial-box {
    transform: translateX(70px);
  }

  .main-testimonial-box .testimonial-box {
    display: block;
  }

  .main-testimonial-box .content {
    width: auto;
    margin-top: 20px;
  }
}

@media (max-width:768px) {
  .testimonial-bg-section .right-content {
    position: relative;
    padding: 50px 30px;
    height: 500px;
  }

  .testimonial-bg-section .right-content .section-title h2 {
    color: #fff;
    font-size: 40px;
    line-height: 40px
  }

  .main-testimonial-box {
    transform: translateX(0px);
    margin-top: -160px;
  }

  .main-testimonial-box .testimonial-box {
    display: block;
  }

  .main-testimonial-box .content {
    width: auto;
    margin-top: 20px;
  }
}

@media (max-width:568px) {
  .testimonial-bg-section .right-content {
    position: relative;
    padding: 50px 30px;
    height: auto;
  }

  .main-testimonial-box {
    transform: translateX(0px);
    margin-top: 0;
    margin-bottom: 0;
  }
}

.gallery-section {
  padding: 60px 0 20px;
  position: relative;
}

.gallery-section .gallery-wrapper {
  margin-top: 30px;
}

.gallery-section .gallery-box {
  width: 100%;
  height: 420px;
  border-radius: 8px;
  overflow: hidden;
}

.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);
  cursor: zoom-in;
}

.gallery-section .main-btn {
  text-align: center;
  margin-top: 40px;
}

.gallery-section .main-btn a {
  display: inline-block;
  padding: 10px 30px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.4s;
}

.gallery-section .main-btn a:hover {
  transform: scale(1.1);
  background-color: #000;

}

@media (max-width:568px) {
  .gallery-section .gallery-box {
    width: 100%;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
  }
}


.main-enquiry-form.modal {
  background-color: rgba(0, 0, 0, 0.7);
}

.main-enquiry-form .modal-dialog {
  min-width: 600px;
}

.main-enquiry-form .modal-content {
  border: 1px solid #fff;
  overflow: hidden;
  border-radius: 20px;
  background-image: url(../img/bengal-tiger.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}

.main-enquiry-form .modal-content .form-content {
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.8);
}

.main-enquiry-form .modal-content h5 {

  color: #fff;
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
  font-size: 28px;
}

.main-enquiry-form .modal-content .btn-close {
  opacity: 1;
  background: none;
  box-shadow: none;
}

.main-enquiry-form .modal-content .btn-close svg {
  color: #fff;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
}

.main-enquiry-form .modal-content p {
  color: var(--greycolor-bg);
}

.main-enquiry-form .modal-content label {
  text-align: center;
  font-size: 14px;
  text-transform: capitalize;
  color: var(--main-color);
  font-weight: 600;
}

.main-enquiry-form .modal-content input,
.main-enquiry-form .modal-content select,
.main-enquiry-form .modal-content textarea {
  width: 100%;
  padding: 8px 14px;
  margin-bottom: 12px;
  border-radius: 5px;
  border: none;
  outline: none;
  box-shadow: none;
  position: relative;
  color: #282f34;
  font-weight: 600;
  color: #282f34;
}

.main-enquiry-form .modal-content input::placeholder,
.main-enquiry-form .modal-content textarea::placeholder {
  color: #282f34;

}

.main-enquiry-form .modal-content input[type='date'] {
  text-transform: uppercase;
}

.main-enquiry-form .modal-content input[type='submit'] {
  background-color: transparent;
  transition: all 0.3s;
  text-transform: uppercase;
  border-radius: 5px;
  font-weight: 700;
  padding: 10px 20px;
  border: 2px solid var(--main-color);
  color: #fff;

}

.main-enquiry-form .modal-content input[type='submit']:hover {
  background-color: var(--main-color);
  color: #fff;
}

.main-enquiry-form .modal-content .feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.main-enquiry-form .modal-content .feature span {
  color: #fff;
  font-size: 14px;
}

.main-enquiry-form .modal-content .feature span svg {
  color: var(--main-color);
  animation: spin 1s infinite alternate;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* --------------------------------------------------------------------------------------------------------------------------------------- */


.innerpage-title {
  position: relative;
  background: url(../img/innertitle-bg.jpg);
  background-size: cover;
  background-position: center;
  padding: 260px 0 140px;
  text-align: center;
}

.innerpage-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.innerpage-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/divider-bottom.png) repeat-x;
  background-position: bottom;

}

.innerpage-title h2 {
  color: #fff;
  font-size: 62px;
  position: relative;
}






.innerpage-content {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}


.innerpage-content .top-content-box {
  text-align: center;
}

.innerpage-content span.sub-title {
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  font-size: 16px;
  color: #282f34;
  padding-left: 14px;
  border-left: 4px solid var(--main-color);
  margin-bottom: 0px;
  font-weight: 700;
  letter-spacing: 1px;
}

.innerpage-content h2.title {
  font-size: 46px;
  font-weight: 700;
  color: var(--main-color);
}

.innerpage-content p.text,
.innerpage-content p.note {
  color: #282f34;
  line-height: 26px;
  letter-spacing: 1px;
  position: relative;
  font-weight: 500;
}

.innerpage-content p.text span {
  font-weight: 600;
  text-transform: capitalize;
  color: #1d1d1d;
}

.innerpage-content p.text strong {
  text-transform: capitalize;
}

.innerpage-content p.note strong {
  color: red;
}

.innerpage-content p.note strong svg {
  margin-right: 2px;
  width: 15px;
  height: 15px;
  margin-bottom: 1px;
}

.innerpage-content p.text a {
  color: var(--main-color);
}

.innerpage-content p.note span {
  font-weight: 600;
  text-transform: capitalize;
  color: #1d1d1d;
}

.innerpage-content .main-btn {
  padding: 10px 20px;
  border-radius: 50px;
  background-color: #002203;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  margin-top: 10px;
  transition: all 0.4s;
}

.innerpage-content .main-btn:hover {
  background-color: var(--main-color);
  color: #000;
  transform: scale(1.1);
}

.innerpage-content .index-table-wrapper {
  background: url(../img/forest-bg.jpg);
  border-radius: 20px;
  margin: 30px 0;
  border: 2px solid #171717;
  position: relative;
  overflow: hidden;
}

.innerpage-content .index-table-wrapper::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.innerpage-content .index-table {
  padding: 40px 35px;
  position: relative;
}

.innerpage-content .index-table-wrapper h6 {
  color: #fff;
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
  font-size: 26px;
  position: relative;
  text-transform: capitalize;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.innerpage-content .index-table-wrapper h6::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  border-radius: 5px;
  background-color: var(--main-color);
}

.innerpage-content .index-table-wrapper ul li {
  position: relative;
}

.innerpage-content .index-table-wrapper ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  transform: translateY(-50%);
  height: 2px;
  background-color: var(--greycolor-bg);
  transition: all 0.3s;
}

.innerpage-content .index-table-wrapper ul li a {
  display: block;
  margin-bottom: 6px;
  color: var(--greycolor-bg);
  padding-left: 20px;
  transition: all 0.4s;
}

.innerpage-content .index-table-wrapper ul li:hover a {
  transform: translateX(10px);
  color: var(--main-color);
}

.innerpage-content .index-table-wrapper ul li:hover::before {
  width: 15px;
}

.innerpage-content .index-table-wrapper .enquiry-form {
  padding: 40px 50px;
  position: relative;
  background: url(../img/bengal-tiger.jpg);
  background-size: cover;
}

.innerpage-content .index-table-wrapper .enquiry-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.innerpage-content .index-table-wrapper .enquiry-form form {
  position: relative;
}

.innerpage-content .index-table-wrapper .enquiry-form input,
.innerpage-content .index-table-wrapper .enquiry-form select,
.innerpage-content .index-table-wrapper .enquiry-form textarea {
  width: 100%;
  padding: 8px 18px;
  margin-bottom: 8px;
  border-radius: 3px;
  background-color: #fff;
  border: none;
  box-shadow: none;
  outline: none;
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #282f34;
}

.innerpage-content .index-table-wrapper .enquiry-form input::placeholder,
.innerpage-content .index-table-wrapper .enquiry-form textarea::placeholder {
  color: #282f34;

}

.innerpage-content .index-table-wrapper .enquiry-form input[type='date'] {
  text-transform: uppercase;
  color: #282f34;
}

.innerpage-content .index-table-wrapper .enquiry-form input[type='submit'] {
  background-color: var(--main-color);
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.4s;
}

.innerpage-content .index-table-wrapper .enquiry-form input[type='submit']:hover {
  background-color: #fff;
  color: #000;
}

.innerpage-content .text-content-wrapper h4.heading {
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
  font-size: 26px;
  font-weight: 800;
  position: relative;
  padding-bottom: 6px;
  margin-bottom: 13px;
}

.innerpage-content .text-content-wrapper h4.heading span {
  color: var(--main-color);
}

.innerpage-content .text-content-wrapper h4.heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 2px;
  border-radius: 5px;
  background-color: var(--main-color);
}

.innerpage-content .text-content-wrapper {
  width: 100%;
}

.innerpage-content .img-box-wrapper {
  width: 50% !important;
  margin: 0 0 0 10px;
  padding-bottom: 10px;
  position: relative;
  float: right;
}

.innerpage-content .img-box-wrapper .carousel-item {
  width: 100%;
  height: 440px;
  overflow: hidden;
  border-radius: 80px 20px;
  border-right: 4px solid #FF8315;
}

.innerpage-content .img-box-wrapper .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.innerpage-content .img-box-wrapper .carousel span {
  text-align: center;
  display: block;
  font-weight: 700;
  position: relative;
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
  color: var(--main-color);
  font-size: 18px;
}


.innerpage-content .img-box-single {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
}

.innerpage-content .img-box-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.innerpage-content .inner-cta-box {
  padding: 30px 0;
  text-align: center;
  position: relative;
  background: url(../img/testi-bg2.jpg) no-repeat fixed;
  background-position: center right;
  background-size: cover;
  margin: 30px 0;
  border-radius: 20px;
  overflow: hidden;
}

.innerpage-content .inner-cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.innerpage-content .inner-cta-box h4 {
  color: #fff;
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
  font-size: 56px;
}

.innerpage-content .inner-cta-box h4 span {
  color: var(--main-color);
}

.innerpage-content .inner-cta-box p {
  color: var(--greycolor-bg);
  font-size: 18px;
}

.innerpage-content .inner-cta-box a {
  padding: 10px 30px;
  display: inline-block;
  background-color: var(--main-color);
  position: relative;
  border-radius: 50px;
  font-weight: 700;
  color: #fff;
  border: 2px inset #b65500;
  transition: all 0.4s;
}

.innerpage-content .inner-cta-box a:hover {
  background-color: #fff;
  color: #002203;
  border-color: #000;
  transform: scale(1.15);
}

.innerpage-content .point-list li {
  position: relative;

  margin-bottom: 5px;
  letter-spacing: 1px;
  color: #1d1d1d;
  font-weight: 500;

}

.innerpage-content .point-list li span {
  font-weight: 600;
  text-transform: capitalize;
  color: #1d1d1d;
}

.innerpage-content .point-list li a {
  font-weight: 700;
  color: var(--main-color);
}

.innerpage-content .table-content h6 {
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
  font-size: 22px;
  color: var(--main-color);
  text-align: center;
  position: relative;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.innerpage-content .table-content thead tr {
  background-color: #002203;
  color: #fff;
}

.innerpage-content .package-box-wrapper {
  margin-top: 50px;
  position: relative;
}

.innerpage-content .package-box-wrapper .package-box {
  margin-bottom: 50px;
  position: relative;
}

.innerpage-content .package-box-wrapper .package-box .img-box {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 6px;
}

.innerpage-content .package-box-wrapper .package-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.9s;
}

.innerpage-content .package-box-wrapper .package-box:hover .img-box img {
  transform: scale(1.3);
}

.innerpage-content .package-box-wrapper .package-box .content-box {
  padding: 0 10px;
}

.innerpage-content .package-box-wrapper .package-box h4 a {
  color: #000;
  display: block;
  font-weight: 700;
  transition: all 0.4s;
}

.innerpage-content .package-box-wrapper .package-box h4:hover a,
.innerpage-content .package-box-wrapper .package-box:hover h4 a {
  color: var(--main-color);
}

.innerpage-content .package-box-wrapper .package-box p.day {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  padding: 5px 14px;
  font-weight: 700;
  text-transform: capitalize;
  background-color: #002203;
  border-radius: 6px;
  color: #fff;

}

.innerpage-content .package-box-wrapper .package-box p.day svg {
  color: var(--main-color);
  animation: spin 1s infinite alternate;
}

.innerpage-content .package-box-wrapper .package-box li {
  margin-bottom: 5px;
  font-size: 14px;
  color: #434d53;
}

.innerpage-content .package-box-wrapper .package-box li svg {
  margin-right: 5px;
  color: #171717;
}

.innerpage-content .package-box-wrapper .package-box p.price {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
}

.innerpage-content .package-box-wrapper .package-box p.price span {
  font-weight: 900;
  font-size: 32px;
  color: var(--main-color);
}

.innerpage-content .package-box-wrapper .package-box .button-box a {
  display: inline-block;
  font-size: 18px;
  padding: 6px 26px;
  margin-top: 10px;
  background-color: var(--main-color);
  font-weight: 800;
  color: #000;
  border-radius: 6px;
  transition: all 0.4s;
}

.innerpage-content .package-box-wrapper .package-box .button-box a:hover {
  background-color: #000;
  color: #fff;
}

@media (min-width:992px) and (max-width:1200px) {
  .innerpage-title {
    padding: 200px 0 140px;
  }


  .innerpage-title h2 {
    color: #fff;
    font-size: 54px;
    position: relative;
  }

  .innerpage-content h2.title {
    font-size: 42px;
  }
}

@media (max-width:992px) {
  .innerpage-title {
    padding: 200px 0 140px;
  }


  .innerpage-title h2 {
    color: #fff;
    font-size: 48px;
    line-height: 46px;
  }

  .innerpage-content h2.title {
    font-size: 36px;
    line-height: 40px;
  }

  .innerpage-content .img-box-wrapper {
    width: 100% !important;
  }

  .innerpage-content .index-table-wrapper {
    padding: 20px 10px;
  }

  .innerpage-content .index-table {
    padding: 20px 10px;
    position: relative;
  }

  .innerpage-content .index-table-wrapper .enquiry-form {
    padding: 20px 10px;
    position: relative;
  }

  .innerpage-content .inner-cta-box {
    padding: 30px 10px;
  }

  .innerpage-content .inner-cta-box h4 {
    font-size: 46px;
    line-height: 48px;
  }

}

@media (max-width:568px) {
  .innerpage-content .img-box-wrapper .carousel-item {
    width: 100%;
    height: 360px;
  }

  .innerpage-content .inner-cta-box h4 {
    font-size: 38px;
    line-height: 42px;
  }
}



.innercontact-page {
  padding: 60px 0;
  position: relative;
}

.innercontact-page .contact-box-wrapper {
  margin-top: 30px;
}

.innercontact-page .contact-box-wrapper .item-box {
  text-align: center;
  padding: 50px 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  position: relative;
  border-radius: 10px;
  margin-bottom: 30px;
}

.innercontact-page .contact-box-wrapper .item-box.call a {
  font-size: 24px;

}

.innercontact-page .contact-box-wrapper .item-box.active {
  background-color: #002203;
}

.innercontact-page .contact-box-wrapper .item-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg_pattern.png);
  opacity: .05;
}

.innercontact-page .contact-box-wrapper .item-box svg {
  width: 24px;
  height: 24px;
  padding: 24px;
  border-radius: 8px;
  background-color: #002203;
  color: #fff;
  margin-bottom: 5px;
  position: relative;
  transition: all 0.4s;
}

.innercontact-page .contact-box-wrapper .item-box:hover svg,
.innercontact-page .contact-box-wrapper .item-box.active:hover svg {
  transform: scale(1.2);
  background-color: var(--main-color);
  color: #fff;
}

.innercontact-page .contact-box-wrapper .item-box.active svg {
  background-color: #fff;
  color: #002203;

}

.innercontact-page .contact-box-wrapper .item-box p {
  margin-bottom: 0;
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
  position: relative;
  font-size: 42px;
  font-weight: 600;
  color: #002203;
}

.innercontact-page .contact-box-wrapper .item-box.active p {
  color: #fff;
}

.innercontact-page .contact-box-wrapper .item-box a {
  font-size: 18px;
  color: #000;
  font-weight: 700;
  transition: all 0.4s;
  position: relative;
}

.innercontact-page .contact-box-wrapper .item-box a:hover,
.innercontact-page .contact-box-wrapper .item-box.active a:hover {
  color: var(--main-color);
}

.innercontact-page .contact-box-wrapper .item-box.active a {
  color: #fff;
}

.innercontact-page .map iframe {
  border: none;
  margin-top: 80px;
  width: 100%;
  height: 500px;
}

.innercontact-page .contact-form {
  padding: 80px 0 0;
  position: relative;
}

.innercontact-page .contact-form .section-title {
  margin-bottom: 30px;
}

.innercontact-page .contact-form form {
  padding: 40px 30px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 20px;
  position: relative;
  background-color: #002203;
}

.innercontact-page .contact-form form input,
.innercontact-page .contact-form form select,
.innercontact-page .contact-form form textarea {
  width: 100%;
  border-radius: 4px;
  padding: 10px 14px;
  border: none;
  margin-bottom: 12px;
  font-weight: 600;
  color: #282f34;
  outline: none;
  box-shadow: none;

}

.innercontact-page .contact-form form input::placeholder,
.innercontact-page .contact-form form textarea::placeholder {
  color: #282f34;
}

.innercontact-page .contact-form form input[type='date'] {
  text-transform: uppercase;
}

.innercontact-page .contact-form form input[type='submit'] {
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.4s;
}

.innercontact-page .contact-form form input[type='submit']:hover {
  background-color: var(--main-color);
  color: #fff;
}

@media (max-width:992px) {

  .innercontact-page .contact-box-wrapper .item-box {
    height: auto;
    margin-bottom: 30px;
  }
}

@media (max-width:568px) {

  .innercontact-page .map iframe {
    height: 380px;
  }
}





.innergallery-section {
  padding: 80px 0 0;
  position: relative;
}

.innergallery-section .gallery-img-wrapper {
  position: relative;
  margin-bottom: 40px;
}


.innergallery-section .gallery-img-wrapper .img-box {
  position: relative;
  width: 100%;
  height: 400px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 6px;
  border-bottom: 5px solid #002203;
}

.innergallery-section .gallery-img-wrapper .img-box.vertical {
  position: relative;
  width: 100%;
  height: 600px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 6px;
  border-bottom: 5px solid #002203;
}

.innergallery-section .gallery-img-wrapper .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}

.innergallery-section .gallery-img-wrapper .img-box:hover img {
  transform: scale(1.2);
  filter: brightness(50%);
}

.innergallery-section .gallery-img-wrapper .img-box svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 60px;
  height: 60px;
  color: #fff;
  transition: all 0.4s;
}

.innergallery-section .gallery-img-wrapper .img-box:hover svg {
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width:992px) {
  .innergallery-section .gallery-img-wrapper .img-box {
    height: 360px;
  }

  .innergallery-section .gallery-img-wrapper .img-box.vertical {

    height: 480px;
  }
}

@media (max-width:568px) {
  .innergallery-section .gallery-img-wrapper .img-box {
    height: 320px;
  }
}


/* ---------------------------------------------------------------------------------------------------------------------- */

.faq-section {
  position: relative;
}

.faq-section .faq-main-content h3.title {
  color: #000;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
  font-size: 26px;
  font-weight: 800;
  position: relative;
}

.faq-section .faq-main-content h3.title span {
  font-weight: 800;
  color: var(--main-color);
}

.faq-section .faq-main-content h3.title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 3px;
  border-radius: 10px;
  background-color: var(--main-color);
}

.faq-section .faq-main-content .accordion-item {
  border: none;
  margin-bottom: 10px;
  border-radius: 0 !important;
  background-color: transparent;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);

}

.faq-section .faq-main-content .accordion-button {
  background-color: transparent;
  letter-spacing: 1px;
  border: none;
  box-shadow: none;
  font-size: 18px;
  color: #434d53;
  font-weight: 600;
}

.faq-section .faq-main-content .accordion-button::after {
  background-image: url(../img/icons/plus.png);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--main-color);
  background-position: center;
}

.faq-section .faq-main-content .accordion-button:not(.collapsed)::after {
  background-image: url(../img/icons/minus.png);
}

.faq-section .faq-main-content .accordion-body p {
  color: #434d53;
  letter-spacing: 1px;
  line-height: 28px;
}

.faq-section .faq-main-content .accordion-body p span {
  color: #000;
  font-weight: 500;
  text-transform: capitalize;
}

.faq-section .faq-main-content .accordion-body a {
  color: var(--main-color);
  font-weight: 600;
}

.faq-section .faq-main-content .accordion-body ul.point-list li {
  color: #434d53;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.faq-section .faq-main-content .accordion-body ul.point-list li::marker {
  color: var(--main-color);
}

/* --------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------------------------------------ */

.popular-search {
  padding: 60px 0;
  position: relative;
}

.popular-search h3.title {
  color: #000;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 600;
  position: relative;
}


.popular-search h3.title span {
  font-weight: 800;
  color: var(--main-color);
}

.popular-search h3.title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 3px;
  border-radius: 10px;
  background-color: var(--main-color);
}
/* ------------------------------------------------------------------------------------------------------------------ */

.innerblog-page{
  padding: 100px 0;
  text-align: center;
  position: relative;
}
.innerblog-page h1{
  font-size: 58px;
  font-weight: 300;
}
.innerblog-page h1 span{
  font-weight: 800;
  color: var(--main-color);
}
.innerblog-page p{
  color: #282f34;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 17px;
}
.innerblog-page p span{
  font-weight: 700;
  color: #171717;
}

.innerblog-page .form-button{
  width: fit-content;
  margin: 0 auto 10px;
}
.innerblog-page .icon a svg{
  width: 18px;
  height: 18px;
  padding: 10px;
  border-radius: 50%;
  border: 1px solid #787878;
  color: #787878;
  margin-right: 5px;
  transition: all 0.4s;
}
.innerblog-page .icon a:last-child svg{
  margin-right: 0;
}
.innerblog-page .icon a svg:hover{
  transform: scale(1.2);
  color: #fff;
  border-color: #000;
  background-color: #002203;
}

/* HTML: <div class="loader"></div> */
.loader {
  position: fixed;
  display: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  --d: 22px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  z-index: 99999;
  color: var(--main-color);
  box-shadow:
    calc(1*var(--d)) calc(0*var(--d)) 0 0,
    calc(0.707*var(--d)) calc(0.707*var(--d)) 0 1px,
    calc(0*var(--d)) calc(1*var(--d)) 0 2px,
    calc(-0.707*var(--d)) calc(0.707*var(--d)) 0 3px,
    calc(-1*var(--d)) calc(0*var(--d)) 0 4px,
    calc(-0.707*var(--d)) calc(-0.707*var(--d))0 5px,
    calc(0*var(--d)) calc(-1*var(--d)) 0 6px;
  animation: l27 1s infinite steps(8);
}

@keyframes l27 {

  100% {
    transform: translate(-50%, -50%) rotate(1turn)
  }
};





