@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&display=swap");
/* Andy Bells css Properties */
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Input and Textareas Focus Changes */
input:focus {
  outline: 1px solid maroon;
}

textarea:focus {
  outline: 1px solid maroon;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Initialization of Colours, fonts and etc */
:root {
  --bg-primary: #F2EEEB;
  --secondary: rgb(236, 99, 0);
  --poppins: 'Poppins', sans-serif;
  --playfair: 'Playfair Display', serif;
  --fs-80: 80px;
  --fs-60: 60px;
  --fs-30: 30px;
  --fs-22: 22px;
  --fs-20: 20px;
  --fs-18: 18px;
  --fs-15: 15px;
  --lh-40: 40px;
  --lh-35: 35px;
}

.font-playfair {
  font-family: var(--playfair);
}

.font-poppin {
  font-family: var(--poppins);
}

.bg-blue {
  background-color: #084F80;
}

.font-white {
  color: white;
}

.font-maroon {
  color: maroon;
}

.bigfont {
  font-size: var(--fs-80);
}

.navbar-expand-lg .navbar-nav .nav-link {
  display: inline-block;
  position: relative;
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 18px;
  color: black;
}

.navbar-expand-lg .navbar-nav .nav-link:after {
  content: '';
  position: absolute;
  width: 100%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: maroon;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.25s ease-out;
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.navbar-expand-lg .navbar-nav .nav-link:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

.navbar-expand-lg .navbar-nav {
  -webkit-column-gap: 20px;
          column-gap: 20px;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  width: 250px;
  border-radius: 0;
}

.dropdown-menu li {
  position: relative;
}

.dropdown-menu .dropdown-submenu {
  display: none;
  position: absolute;
  left: 99.6%;
  top: -9px;
}

.dropdown-menu .dropdown-submenu-left {
  right: 100%;
  left: auto;
}

.dropdown-menu > li:hover > .dropdown-submenu {
  display: block;
}

.navbar .off-canvas-body .fulldrop button {
  z-index: 4;
}

.navbar .off-canvas-body .fulldrop .dropdown {
  display: none;
  position: absolute;
  background-color: white;
  z-index: 2;
}

.navbar .off-canvas-body .fulldrop .dropdown .dropmenu {
  border-right: 1px solid maroon;
  text-align: center;
}

.navbar .off-canvas-body .fulldrop .dropdown .dropmenudiff {
  text-align: center;
}

.navbar .off-canvas-body .fulldrop .dropdown a {
  text-decoration: none;
  color: inherit;
}

.navbar .off-canvas-body .fulldrop .dropdown p {
  font-family: var(--poppins);
  font-weight: 400;
  font-size: var(--fs-18);
  padding: 10px;
  margin-bottom: 5px;
  color: black;
}

.navbar .off-canvas-body .fulldrop .dropdown p:hover {
  cursor: pointer;
  background-color: maroon;
  color: white;
}

.navbar .off-canvas-body .fulldrop #dropbtn:hover .dropdown {
  display: block;
}

.navbar .offcanvas form {
  border: 1px solid gray;
  border-radius: 25px;
  background-color: white;
}

.navbar .offcanvas form .nav-form-search {
  background-color: white;
  border-radius: 25px;
}

.navbar .offcanvas form .input-search {
  border: none;
  border-radius: 25px;
}

#home-form {
  border: 1px solid gray;
  border-radius: 10px;
  background-color: white;
}

form .nav-form-search {
  background-color: white;
  border-radius: 10px;
}

form .input-search {
  border: none;
  border-radius: 10px;
}

.footer .newsletter h4 {
  font-family: var(--poppins);
  font-weight: 700;
}

.footer .footer-main {
  /* background-color: #252525; */
  background-color: #A34550;
  color: white;
}

.footer .footer-main h3 {
  font-family: var(--poppins);
  font-weight: 700;
}

.footer .footer-main a {
  text-decoration: none;
}

.footer .footer-main p {
  font-family: var(--poppins);
  font-weight: 500;
  margin-bottom: 5px;
  color: #c3c3c3;
}

.footer .footer-secondary {
  background-color: #8C3B44; /* #1a1a1a */
  color: white;
}

.footer .footer-secondary p {
  font-family: var(--poppins);
  font-weight: 500;
  margin-bottom: 5px;
  color: #c3c3c3;
}

.footer .footer-secondary .footer-socials {
  gap: 10px;
}

.footer .footer-secondary .footer-socials a {
  text-decoration: none;
}

.footer .footer-secondary h4 {
  font-family: var(--poppins);
  font-weight: 700;
}

.footer .footer-end {
  background-color: #8C3B44; /*black;*/
  color: #c3c3c3;
}

.footer .footer-end a {
  text-decoration: none;
}

.footer .footer-end a p {
  margin-bottom: 0;
  font-family: var(--poppins);
  color: #c3c3c3;
}

.footer-social-icon:hover {
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

/*----------- Carousel-------------*/
.carousel .carousel-caption {
  text-align: start;
  bottom: 10.25rem;
  left: 7%;
}

.carousel .carousel-caption h1 {
  font-family: var(--poppins);
}

.carousel .carousel-caption p {
  font-size: var(--fs-20);
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
  width: 7%;
}

/*-------------Breadcrumbs -------------*/
.breadcrumbs {
  padding: 20px;
}

.breadcrumbs .breadcrumb {
  margin-bottom: 0;
}

.breadcrumbs .breadcrumb li {
  font-size: 20px;
}

.breadcrumbs .breadcrumb .breadcrumb-item a {
  text-decoration: none;
  color: var(--secondary);
}

/* Background Colour*/
.bg-color {
  background-color: #ebebe7;
}

.long-border {
  border-bottom: 1px solid black;
}

/*Description*/
.description h1 {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-60);
  font-weight: 700;
  margin-bottom: 15px;
}

.description p {
  font-family: 'Poppins', sans-serif;
  font-size: var(--fs-22);
  font-weight: 500;
  line-height: var(--lh-40);
}

.description .second-dec {
  font-family: 'Poppins', sans-serif;
  font-size: var(--fs-20);
  font-weight: 400;
  line-height: var(--lh-35);
}

/*Experience*/
.experience h1 {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-60);
  font-weight: bold;
}

.experience p {
  font-family: 'Poppins', sans-serif;
  font-size: var(--fs-22);
  font-weight: 500;
}

.experience .details {
  padding: 10px 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.experience .details .sub-detail {
  bottom: 1px;
}

.experience .experiencetrips {
  height: 100%;
}

.experience .experiencetrips .experienceouter {
  padding: 10px;
  width: 100%;
  height: 100%;
}

#id-expimg-info {
  top: 73%;
}

.experienceimg_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 40%;
  width: 100%;
}

.experienceimg_info h2 {
  color: white;
  text-align: center;
  z-index: 2;
}

.experienceimg_info .experiencebtn {
  padding: 10px 40px;
  opacity: 0;
  background-color: white;
  border: 1px solid white;
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 22px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.experienceimg_info .experiencebtn a {
  color: black;
}

.experienceimg {
  position: relative;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  overflow: hidden;
}

.experienceimg img {
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}

.experienceimg img:hover {
  cursor: pointer;
  -webkit-filter: brightness(0.7);
          filter: brightness(0.7);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}

.experienceimg-desc {
  color: transparent;
  bottom: 10px;
}

.experience_btn {
  padding: 15px 60px;
  background: transparent;
  color: black;
  border: 1px solid black;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.experience_btn p {
  font-size: 18px;
  font-weight: bold;
}

.trip_inspobtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: maroon;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid transparent;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.trip_inspobtn p {
  font-size: 18px;
  font-weight: 500;
}

.experience_btn:hover {
  background-color: maroon;
  border-color: maroon;
  color: white;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.experienceimg:hover .expimgjs {
  cursor: pointer;
  -webkit-filter: brightness(0.7);
          filter: brightness(0.7);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}

.experienceimg:hover .experienceimg-desc {
  color: white;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.experienceimg:hover .experienceimg-desc .star-color {
  color: #efdc33;
}

.trip_inspobtn:hover {
  border: 1px solid maroon;
  color: maroon;
  background-color: white;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.trip_inspobtn:hover .iconify {
  color: maroon;
}

.centerdesc {
  text-align: center;
}

.centerdesc h1 {
  font-family: var(--playfair);
  font-size: var(--fs-60);
  font-weight: bold;
}

.centerdesc p {
  font-family: var(--poppins);
  font-size: var(--fs-22);
  font-weight: 500;
}

#experienceouter_id {
  padding: 0;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

#experiencedetails {
  padding: 20px;
}

#experiencedetails h4 {
  font-family: var(--poppins);
  font-weight: 600;
}

#experiencedetails .minordesc p {
  font-family: var(--poppins);
  font-size: 15px;
  font-weight: 600;
}

#experiencedetails .tripreviews p {
  font-family: var(--poppins);
  color: #c3c3c3;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: var(--fs-18);
  background: #fff;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiperswipe {
  overflow: hidden;
}

.whyprecious .whyprecious-desc h3 {
  font-family: var(--poppins);
  font-weight: 600;
  text-align: center;
}

.whyprecious .whyprecious-desc p {
  font-family: var(--poppins);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

.contact-sec1 h1 {
  font-family: var(--playfair);
  font-weight: bold;
  font-size: var(--fs-60);
}

.contact-sec1 p {
  font-family: var(--poppins);
  font-weight: 500;
  margin-bottom: 0;
}

.contact-sec1 h2 {
  font-family: var(--poppins);
  font-size: var(--fs-30);
  font-weight: 700;
}

.contact-sec1 h4 {
  font-family: var(--poppins);
  font-size: var(--fs-22);
  font-weight: bold;
}

.contact-sec1 a {
  text-decoration: none;
  color: black;
}

.contact-sec1 .con-innericon {
  padding: 5px 5px 0 5px;
  border: 1px solid maroon;
  border-radius: 100px;
}

.contact-sec2 h1 {
  font-family: var(--poppins);
  font-weight: bold;
  font-size: var(--fs-60);
}

.contact-sec2 p {
  font-family: var(--poppins);
  font-weight: 500;
  margin-bottom: 0;
}

.contact-sec2 h4 {
  font-family: var(--poppins);
  font-size: var(--fs-22);
  font-weight: bold;
}

.contact-sec2 a {
  text-decoration: none;
  color: black;
}

.contact-sec2 .con-innericon {
  padding: 5px 5px 0 5px;
  border: 1px solid maroon;
  border-radius: 100px;
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.form .textinput {
  border: 1px solid gainsboro;
}

.form h1 {
  font-family: var(--playfair);
  font-weight: bold;
  font-size: var(--fs-60);
}

.blog-heading h1 {
  font-family: var(--playfair);
  font-size: var(--fs-60);
  font-weight: 700;
}

.blog-heading h3 {
  font-family: var(--poppins);
  font-size: var(--fs-22);
  font-weight: 600;
  line-height: var(--lh-40);
}

.blog-heading #date {
  font-family: var(--poppins);
  font-size: var(--fs-18);
  color: gray;
}

.blog-heading .blog-desc p {
  font-family: var(--poppins);
  font-size: var(--fs-20);
  line-height: var(--lh-40);
}

.blog-heading .blog-desc h2 {
  font-family: var(--poppins);
  font-weight: 700;
}

#caption {
  color: gray;
  text-align: center;
  font-size: var(--fs-18);
}

#captions {
  color: gray;
  font-size: var(--fs-22);
}

.breadcrumbs {
  row-gap: 15px;
}

.breadcrumbs .shareit p {
  font-family: var(--poppins);
  font-size: 20px;
}

.breadcrumbs .shareit .socials {
  gap: 10px;
}

.breadcrumbs .shareit .socials a {
  height: 10px;
}

.breadcrumbs .shareit .socials .social-colour {
  height: 27px;
  width: 27px;
  border-radius: 100px;
  background-color: #7650A0;
}

.breadcrumbs .shareit .socials .social-colour:hover {
  cursor: pointer;
}

.shortdetail {
  border-top: 1px solid rgba(128, 128, 128, 0.777);
  border-bottom: 1px solid rgba(128, 128, 128, 0.777);
}

.shortdetail .title {
  font-family: var(--poppins);
  font-size: 16px;
  font-weight: 600;
}

.shortdetail .answer {
  font-family: var(--poppins);
  font-size: 16px;
  font-weight: 500;
}

.tripadvisor .reviews {
  background-color: #F7F8F7;
  border-radius: 10px;
  border: 1px solid #D4D6D4;
}

.tripadvisor .reviews .iconpic img {
  border-radius: 100px;
  margin: auto;
  width: 90%;
}

.tripadvisor .reviews .name h4 {
  font-family: var(--poppins);
  font-weight: 600;
}

.tripadvisor .reviews .name h5 {
  font-family: var(--poppins);
  font-weight: 600;
}

.tripadvisor .reviews .name h6 {
  font-family: var(--poppins);
  font-weight: 100;
}

.tripadvisor .reviews .textsreview a {
  text-decoration: none;
}

.tripadvisor .reviews .traveldate {
  font-family: var(--poppins);
  font-size: 12px;
  font-weight: 500;
  color: #464646;
}

.tripadvisor .morereviews {
  font-family: var(--poppins);
  text-align: center;
}

.tripadvisor .morereviews a {
  color: #464646;
}

.plantrip {
  background-color: #F2EEE3;
}

.plantrip h3 {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: var(--fs-30);
}

.plantrip p {
  font-family: var(--poppins);
  font-size: var(--fs-22);
  line-height: var(--lh-40);
}

.plantrip .plantripbtn {
  padding: 10px 30px;
  border: none;
  font-family: var(--poppins);
  font-weight: 600;
  color: white;
  letter-spacing: 5px;
  background-color: #F89A3B;
}

.multiday-iterinary h2 {
  font-family: var(--poppins);
  font-weight: 700;
}

.multiday-iterinary a {
  text-decoration: none;
  color: black;
}

.multiday-iterinary h5 {
  font-family: var(--poppins);
  font-weight: 700;
  text-decoration: underline;
}

.multiday-iterinary .headerrow {
  font-family: var(--poppins);
  font-weight: 600;
  padding: 8px 0;
}

.multiday-iterinary .row {
  font-family: var(--poppins);
  padding: 8px 0;
}

.iterinary h1 {
  font-family: var(--playfair);
  font-size: var(--fs-60);
  font-weight: 700;
}

.iterinary h2 {
  font-family: var(--poppins);
  font-weight: 700;
}

.iterinary h4 {
  font-family: var(--poppins);
  font-weight: 600;
}

.iterinary p {
  font-family: 'Poppins', sans-serif;
  font-size: var(--fs-22);
  font-weight: 500;
  line-height: var(--lh-40);
}

.bookings h2 {
  font-family: var(--poppins);
  font-weight: 600;
}

.bookings .bookingdetails {
  background-color: #eaeaea;
  row-gap: 20px;
}

.bookings .bookingdetails .row {
  border-bottom: 1px solid rgba(170, 170, 170, 0.438);
  row-gap: 20px;
}

.bookings .bookingdetails .bdcol1 h1 {
  font-family: var(--poppins);
  font-size: 14px;
  font-weight: 600;
}

.bookings .bookingdetails .bdcol1 h2 {
  font-family: var(--poppins);
  font-size: 12px;
  font-weight: 600;
}

.bookings .bookingdetails .bdcol2 h1 {
  font-family: var(--poppins);
  font-size: 25px;
  font-weight: 600;
}

.bookings .bookingdetails .bdcol3 h2 {
  font-family: var(--poppins);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 0;
  padding-top: 3px;
}

.bookings .bookingdetails .booking-xtr-div .blue {
  padding: 5px 10px;
  background-color: #2b8191;
  color: white;
  border: none;
}

.bookings .bookingdetails .booking-xtr-div .blue :hover {
  cursor: pointer;
}

.bookings .bookingdetails .booking-xtr-div .darkblue {
  color: white;
  background-color: #252525;
  border: none;
  padding: 5px 20px;
  font-family: var(--poppins);
}

.colour-sidebar {
  background-color: #eaeaea;
}

.colour-sidebar .stickybar {
  border-bottom: 2px solid #d5d5d5;
}

.colour-sidebar .stickybar p {
  font-family: 'Poppins', sans-serif;
  font-size: var(--fs-18);
  margin-bottom: 0;
  vertical-align: text-bottom;
}

.colour-sidebar .stickybar .trip_inspobtn p {
  font-size: 20px;
}

.colour-sidebar .form h2 {
  font-family: 'Poppins', sans-serif;
  font-size: var(--fs-22);
}

.colour-sidebar .form .formdetail {
  row-gap: 10px;
}

.colour-sidebar .form .formdetail .icons {
  background-color: #b9b9b9;
}

.colour-sidebar .form .formdetail p {
  margin-bottom: 0;
  font-family: var(--poppins);
}

.stickyfooter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  z-index: 1;
  background-color: #e0e0e0;
}

.orangebackground {
  background-color: #EC6300;
  height: 400px;
  position: relative;
}

.orangebackground h1 {
  font-family: var(--poppins);
  font-weight: 700;
  color: white;
  position: absolute;
  bottom: 0;
}

.orangebackground p {
  font-family: var(--poppins);
  font-weight: 500;
  font-size: var(--fs-30);
  color: white;
  position: absolute;
  bottom: 0;
}

.onlinebook h1 {
  font-family: var(--playfair);
  font-weight: bold;
  text-align: center;
}

.onlinebook .form .forminput {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.onlinebook .form .forminput .name {
  width: 20%;
  font-family: var(--poppins);
  font-weight: 600;
  font-size: var(--fs-20);
  padding: 10px;
}

.onlinebook .form .forminput .inputarea {
  width: 40%;
}

.onlinebook .form .forminput .inputarea label {
  padding: 10px;
}

.onlinebook .form .forminput .extratext {
  width: 40%;
}

.onlinebook .form .forminput .extratext h2 {
  font-family: var(--playfair);
  font-weight: bold;
}

.onlinebook .form .forminput .extratext p {
  font-family: var(--poppins);
  font-size: var(--fs-18);
  color: gray;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  width: 30px;
  height: 20px;
  padding-left: 20px;
  border-left: 1px solid black;
  border-width: thin;
}

.team-sh-desc {
  background-color: white;
}

.team-sh-desc h4 {
  font-family: var(--poppins);
  font-weight: 600;
}

.team-sh-desc p {
  font-family: var(--poppins);
  margin-bottom: 0;
}

.descbox {
  background-color: white;
}

.descbox h4 {
  font-family: var(--poppins);
  font-weight: 600;
}

.descbox p {
  font-family: var(--poppins);
}

.experience .teamdiv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.experience .teamdiv .teamdiv-sections {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--poppins);
  font-size: var(--fs-20);
  font-weight: 500;
  padding: 10px 30px 10px 30px;
}

.experience .teamdiv .nav-pills {
  gap: 15px;
}

.experience .teamdiv .nav-pills .nav-link.active {
  background-color: maroon;
}

.experience .teamdiv .nav-link {
  font-family: var(--poppins);
  font-size: var(--fs-20);
  font-weight: 500;
  color: black;
}

.experience .teamdiv .nav-link:hover {
  color: white;
  background-color: maroon;
}

.experience .team-mem {
  -webkit-filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.479));
          filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.479));
}

.teamdiv-sections:hover {
  cursor: pointer;
  background-color: maroon;
  color: white;
}

.diff-iter {
  font-family: var(--playfair);
  font-weight: 500;
  font-size: var(--fs-30);
  font-style: italic;
}

.diff-iter h1 {
  font-family: var(--playfair);
  font-weight: 500;
  font-style: italic;
}

.region-list .region-name button {
  text-align: start;
  width: 100%;
  background-color: white;
  padding: 12px;
  font-family: var(--poppins);
  font-size: var(--fs-22);
  font-weight: 500;
  color: maroon;
  margin-bottom: 8px;
  border-radius: 0;
}

.region-name button:hover {
  background-color: maroon;
  color: white;
}

.experiencedetails {
  padding: 20px 0 20px 0;
}

.experiencedetails h5 {
  font-family: var(--poppins);
  line-height: 30px;
  font-weight: 600;
}

.space .count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.space .count .count-num {
  font-family: var(--playfair);
  font-size: 100px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.space .count .count-topic {
  font-family: var(--playfair);
  font-size: var(--fs-80);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.whyus-review {
  background-repeat: no-repeat;
  background-position: top;
  background-size: 300px 200px;
  margin: 100px 0;
}

.whyus-review h2 {
  font-family: var(--playfair);
  font-weight: 500;
  font-style: italic;
  text-align: center;
}

.whyus-review h1 {
  text-align: center;
  font-family: var(--playfair);
  font-weight: 700;
}

.whyus-review h5 {
  font-family: var(--poppins);
  text-align: center;
}

.modal-content {
  background-color: #eaeaea;
}

.modal-content .modal-header {
  border: none;
}

.modal-content .modal-header h2 {
  font-family: var(--playfair);
  font-weight: 700;
}

.modal-content .modal-footer {
  border: none;
}

#home {
  text-align: center;
  bottom: 10.25rem;
  left: 15%;
}

#home img {
  width: 25%;
  margin: auto;
}

#home h1 {
  font-family: var(--playfair);
  font-weight: 700;
}

.homesearch h4 {
  font-family: var(--poppins);
}

.homesearch h5 {
  font-family: var(--poppins);
  font-weight: 700;
  margin-bottom: 5px;
}

#whyprecious-desc-home h5 {
  font-family: var(--poppins);
  font-weight: 700;
  text-align: start;
}

#whyprecious-desc-home p {
  font-family: var(--poppins);
  font-size: 15px;
  font-weight: 400;
  text-align: start;
}

#home-experience-head h1 span {
  color: maroon;
}

.green-thing {
  font-family: var(--poppins);
  text-align: center;
  color: #56d01d;
}

#footer-home .footer-secondary {
  background-color: black;
}

#footer-home .footer-secondary .img-img img {
  width: 20%;
}

#footer-home .footer-secondary .footer-img img {
  width: 40%;
}

#footer-home .footer-secondary .footer-desc h4 {
  font-family: var(--poppins);
  font-weight: 600;
}

#footer-home .footer-secondary .footer-desc p {
  color: white;
  font-family: var(--poppins);
  font-weight: 300;
}

.whyprecious .about-us-desc p {
  font-family: var(--poppins);
  text-align: center;
  line-height: 25px;
}

.bg-image {
  background-size: cover;
  background-repeat: no-repeat;
}

.white-text {
  color: white;
}

.about-us-start h5 {
  width: 25%;
  border-bottom: 5px solid pink;
}

.about-us-start p {
  font-family: var(--poppins);
  font-weight: 400;
}

.experience-album img {
  padding: 50px 100px 50px 100px;
}

.experience-album .experience-album-desc {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.experience-album .experience-album-desc h1 {
  font-family: var(--playfair);
  font-weight: 700;
}

.experience-album .experience-album-desc h5 {
  font-family: var(--poppins);
  font-weight: 600;
}

.experience-album .experience-album-desc p {
  font-family: var(--poppins);
  line-height: 30px;
}

@media (max-width: 576px) {
  :root {
    --fs-80: 30px;
    --fs-60: 40px;
    --fs-30: 20px;
    --fs-22: 12px;
    --fs-20: 12px;
    --fs-18: 8px;
    --fs-15: 5px;
    --lh-40: 30px;
    --lh-35: 25px;
  }
  .carousel .carousel-caption {
    text-align: start;
    bottom: 0px;
    left: 7%;
  }
  .carousel #home {
    bottom: 0;
  }
  .experience_btn {
    padding: 10px 30px;
    background: transparent;
    color: black;
    border: 1px solid black;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: 0.6s;
    transition: 0.6s;
  }
  .experience_btn p {
    font-size: 18px;
    font-weight: bold;
  }
  .onlinebook h1 {
    font-family: var(--playfair);
    font-weight: bold;
    text-align: center;
  }
  .onlinebook .form .forminput {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .onlinebook .form .forminput .name {
    width: 80%;
  }
  .onlinebook .form .forminput .inputarea {
    width: 100%;
  }
  .onlinebook .form .forminput .extratext {
    width: 100%;
  }
  #footer-home .footer-secondary {
    background-color: black;
  }
  #footer-home .footer-secondary .img-img img {
    width: 40%;
  }
  #footer-home .footer-secondary .footer-img {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  #footer-home .footer-secondary .footer-img img {
    width: 20%;
  }
  .about-us-start .innerdesc {
    text-align: center;
  }
  .about-us-start .innerdesc h5 {
    margin: auto;
    width: 50%;
  }
  .experience-album #text-end {
    text-align: center;
  }
  .experience-album .experience-album-desc {
    text-align: center;
  }
  .experience-album img {
    padding: 50px;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  :root {
    --fs-80: 60px;
    --fs-60: 45px;
    --fs-30: 28px;
    --fs-22: 18px;
    --fs-20: 16px;
    --fs-18: 12px;
    --fs-15: 10px;
    --lh-40: 32px;
    --lh-35: 28px;
  }
  .carousel .carousel-caption {
    text-align: start;
    bottom: 10px;
    left: 7%;
  }
  .carousel #home {
    bottom: 0;
  }
  .onlinebook h1 {
    font-family: var(--playfair);
    font-weight: bold;
    text-align: center;
  }
  .onlinebook .form .forminput {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .onlinebook .form .forminput .name {
    width: 40%;
  }
  .onlinebook .form .forminput .inputarea {
    width: 100%;
  }
  .onlinebook .form .forminput .extratext {
    width: 100%;
  }
  #footer-home .footer-secondary {
    background-color: black;
  }
  #footer-home .footer-secondary .img-img img {
    width: 50%;
  }
  #footer-home .footer-secondary .footer-img {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #footer-home .footer-secondary .footer-img img {
    width: 20%;
  }
  .about-us-start .innerdesc {
    text-align: center;
  }
  .about-us-start .innerdesc h5 {
    margin: auto;
    width: 50%;
  }
  .experience-album .experience-album-desc {
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  :root {
    --fs-60: 50px;
    --fs-30: 28px;
    --fs-22: 18px;
    --fs-20: 16px;
    --fs-18: 12px;
    --fs-15: 10px;
    --lh-40: 32px;
    --lh-35: 28px;
  }
  .carousel .carousel-caption {
    text-align: start;
    bottom: 0px;
    left: 7%;
  }
  .carousel #home {
    bottom: 0;
  }
  .onlinebook .form .forminput {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .onlinebook .form .forminput .name {
    width: 40%;
  }
  .onlinebook .form .forminput .inputarea {
    width: 50%;
  }
  .onlinebook .form .forminput .extratext {
    width: 50%;
  }
  #footer-home .footer-secondary {
    background-color: black;
  }
  #footer-home .footer-secondary .img-img img {
    width: 40%;
  }
  #footer-home .footer-secondary .footer-img {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #footer-home .footer-secondary .footer-img img {
    width: 20%;
  }
  .experience-album #text-end {
    text-align: end;
  }
  .experience-album img {
    padding: 20px;
  }
}

@media (min-width: 993px) and (max-width: 1200px) {
  :root {
    --fs-60: 45px;
    --fs-30: 26px;
    --fs-22: 16px;
    --fs-20: 15px;
    --fs-18: 10px;
    --fs-15: 9px;
    --lh-40: 32px;
    --lh-35: 28px;
  }
  .stickyfooter {
    display: none;
  }
  .colour-sidebar .stickybar .trip_inspobtn {
    display: none;
  }
  .colour-sidebar .form h2 {
    display: none;
  }
}

@media (min-width: 1201px) and (max-width: 1400px) {
  :root {
    --fs-60: 45px;
    --fs-30: 26px;
    --fs-22: 16px;
    --fs-20: 15px;
    --fs-18: 10px;
    --fs-15: 9px;
    --lh-40: 32px;
    --lh-35: 28px;
  }
  .stickyfooter {
    display: none;
  }
  .colour-sidebar .stickybar .trip_inspobtn {
    display: none;
  }
  .colour-sidebar .form h2 {
    display: none;
  }
}

@media (min-width: 1401px) and (max-width: 1600px) {
  :root {
    --fs-60: 45px;
    --fs-30: 26px;
    --fs-22: 16px;
    --fs-20: 15px;
    --fs-18: 12px;
    --fs-15: 9px;
    --lh-40: 32px;
    --lh-35: 28px;
  }
  .stickyfooter {
    display: none;
  }
  .colour-sidebar .form h2 {
    display: none;
  }
}

@media (min-width: 1601px) {
  :root {
    --fs-60: 45px;
    --fs-30: 26px;
    --fs-22: 16px;
    --fs-20: 15px;
    --fs-18: 12px;
    --fs-15: 9px;
    --lh-40: 32px;
    --lh-35: 28px;
  }
  .stickyfooter {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */

.mt-6 {
    margin-top: 4rem !important
}
