@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;500;600;800&display=swap");
:root {
  --header-height: 3.5rem;
  --title-color: hsl(0, 0%, 95%);
  --text-color: hsl(0, 0%, 0%);
  --text-color-light: hsl(0, 0%, 60%);
  --body-color: hsl(0, 0%, 0%);
  --container-color: hsl(132, 8%, 13%);
  --primary-color: hsl(200, 56%, 63%);
  --secondary-color: hsl(209, 66%, 30%);
  --menu-divider-line: lightblue;
  --menu-transparent-background-lite: hsla(0, 0%, 0%, 0.3);
  --menu-transparent-background-strong: hsla(0, 0%, 0%, 0.99);
  --body-font: "Kumbh Sans", sans-serif;
  --biggest-font-size: 2.75rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 1152px) {
  :root {
    --biggest-font-size: 5.5rem;
    --h1-font-size: 2.5rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body,
button,
input {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--text-color);
  overflow-x: hidden;
}

body {
  background-color: var(--title-color);
}

button,
input {
  outline: none;
  border: none;
}

h1, h2, h3, h4 {
  color: var(--body-color);
  font-family: var(--body-font);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 8rem 1rem;
}

section.hero.section{
  padding-top: 0;
}

.section__title {
  text-align: center;
  font-size: var(--h1-font-size);
  margin-bottom: 1.5rem;
}

main {
  overflow: hidden;
}

@-webkit-keyframes slide-in-anim {
  20% {
    opacity: 0;
    -webkit-transform: translateX(20%);
            transform: translateX(20%);
  }
  60% {
    opacity: 0.3;
    -webkit-transform: translateX(40%);
            transform: translateX(40%);
  }
  75% {
    opacity: 0.6;
    -webkit-transform: translateX(60%);
            transform: translateX(60%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slide-in-anim {
  20% {
    opacity: 0;
    -webkit-transform: translateX(20%);
            transform: translateX(20%);
  }
  60% {
    opacity: 0.3;
    -webkit-transform: translateX(40%);
            transform: translateX(40%);
  }
  75% {
    opacity: 0.6;
    -webkit-transform: translateX(60%);
            transform: translateX(60%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.header {
  width: 100%;
  background-color: transparent;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  z-index: 10000;
}

.base_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 50px;
  z-index: 100 !important;
  padding: 0 2.5rem;
}
.base_nav .quick__nav {
  display: none;
}
.base_nav .header__logo {
  color: var(--body-color);
  font-family: var(--second-font);
  font-weight: var(--font-semi-bold);
  max-width: 250px;
}
.base_nav .quick__nav {
  min-width: 400px;
}
.base_nav .quick__nav ul.quick__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.base_nav .quick__nav ul.quick__nav__list li.q__nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 2rem;
}
.base_nav .quick__nav ul.quick__nav__list li.q__nav__item i.icon {
  border-radius: 50%;
  height: 30px;
  width: 30px;
  background-color: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--title-color);
  margin-right: 0.5rem;
}
.base_nav .quick__nav ul.quick__nav__list li.q__nav__item span.q__nav__item__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.base_nav .quick__nav ul.quick__nav__list li.q__nav__item span.q__nav__item__cont span.q__nav__cont {
  font-weight: 600;
  display: inline-block;
}
.base_nav .quick__nav ul.quick__nav__list li.q__nav__item span.q__nav__item__cont .q__nav__title,
.base_nav .quick__nav ul.quick__nav__list li.q__nav__item span.q__nav__item__cont .q__nav__cont {
  color: var(--secondary-color);
}

.dropdown {
  position: absolute;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  right: 10rem;
  top: 6rem;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 10rem;
  -webkit-box-shadow: rgba(65, 120, 175, 0.58) 0px 8px 24px;
          box-shadow: rgba(65, 120, 175, 0.58) 0px 8px 24px;
  z-index: 5000;
}

.dropdown__button,
.dropdown__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
}

.dropdown__button {
  border: none;
  outline: none;
  background-color: var(--primary-color);
  padding: 1.25rem;
  border-radius: 0.75rem;
  cursor: pointer;
  min-width: 13rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.dropdown__icon,
.dropdown__icons {
  font-size: 1.25rem;
  color: var(--secondary-color);
}

.dropdown__name {
  font-weight: 500;
  text-decoration: none;
  color: var(--secondary-color);
  font-size: 1rem;
}

.dropdown__icons {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
}

.dropdown__arrow,
.dropdown__close {
  position: absolute;
  -webkit-transition: opacity 0.1s, -webkit-transform 0.4s;
  transition: opacity 0.1s, -webkit-transform 0.4s;
  transition: opacity 0.1s, transform 0.4s;
  transition: opacity 0.1s, transform 0.4s, -webkit-transform 0.4s;
}

.dropdown__close {
  opacity: 0;
}

.dropdown__menu {
  background-color: var(--primary-color);
  padding: 1rem 1.25rem;
  padding: 0 2rem;
  border-radius: 0.75rem;
  display: grid;
  position: absolute;
  width: 100%;
  left: 0;
  top: 4.5rem;
  -webkit-transform: scale(0.1);
          transform: scale(0.1);
  -webkit-transform-origin: 9rem -2rem;
          transform-origin: 9rem -2rem;
  pointer-events: none;
  -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.4s, transform 0.4s;
  transition: opacity 0.4s, transform 0.4s, -webkit-transform 0.4s;
  opacity: 0;
}

.dropdown__item:last-child {
  border-bottom: 0;
  margin-bottom: 0.5rem;
}

.dropdown__item {
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  border-bottom: 1px solid var(--menu-divider-line);
  padding: 1rem 0.4rem;
}

.dropdown__item:hover {
  color: var(--primary-color);
}

.show-dropdown .dropdown__close {
  opacity: 1;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.show-dropdown .dropdown__arrow {
  opacity: 0;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.show-dropdown .dropdown__menu {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  pointer-events: initial;
}

.nav {
  height: var(--header-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
}

.nav__toggle,
.nav__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2.5rem;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 0;
}

.nav__menu {
  position: fixed;
  top: -100%;
  left: 0;
  background-color: var(--menu-transparent-background-lite);
  background-color: var(--title-color);
  width: 100%;
  padding-block: 4rem;
  z-index: 10;
}

.nav__list {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2.5rem;
}

.nav__link {
  color: var(--body-color);
  font-family: var(--second-font);
  font-weight: var(--font-medium);
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.show-menu {
  top: 0;
}

@media screen and (min-width: 800px) {
  .nav__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    top: 0;
  }
  .base_nav {
    background-color: var(--title-color);
    min-height: 100px;
    padding: 0 5rem;
  }
  .base_nav .quick__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 6rem;
  }
  .nav {
    margin: 0 auto;
  }
  .nav__menu {
    position: relative;
    z-index: 100;
    padding-block: 2rem;
    border-radius: 10px;
    background-color: var(--menu-transparent-background-strong);
    -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
            box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-top: 2rem;
  }
  .nav__menu .nav__list {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .nav__menu .nav__list .nav__link {
    color: var(--title-color);
  }
  .nav__close,
  .nav__toggle {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .nav {
    height: 7.5rem !important;
  }
  .base_nav {
    background-color: var(--title-color);
    min-height: 10rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/* Add blur to header */
/* Active link */
/*=============== HERO ===============*/
section.hero {
  /* background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -2; */

  /* position: absolute; */
  /*! min-height: 30rem */
  /*! height: 500px */
  /*! margin-bottom: 400px */

  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;   /* ⭐ vertical center */
  overflow:hidden;
}

/* Video becomes background layer */
.hero__video{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
}

.hero__video video{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Text layout now uses FLEX instead of absolute */
.hero__content{
  position:relative;
  z-index:2;
  max-width:700px;
  left: clamp(2rem, 8vw, 10%);
}


/* section.hero .video-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    
    min-width: 100%;
    min-height: 100%;

    width: auto;
    height: auto;

    transform: translate(-50%, -50%);
    object-fit: cover;
}
section.hero #text {
  position: absolute;
  z-index: 2;
  color: var(--title-color);

  left: clamp(2rem, 8vw, 10%);
  top: 50%;
  transform: translateY(-50%);
  max-width: 700px;
} */
section.hero::after{
   content:"";
   position:absolute;
   inset:0;
   background:linear-gradient(
      to right,
      rgba(0,0,0,.55) 0%,
      rgba(0,0,0,.25) 40%,
      rgba(0,0,0,0) 70%
   );
   z-index:1;
}
section.hero > div.container {
  /* margin-top: 15rem; */
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 4rem;
  padding: 2rem;
  padding-left: 0;
  margin-left: 0rem;
}
section.hero > div.container h1.hero__title {
  color: var(--title-color);
  font-weight: 600;
  font-size: 3.5rem;
  max-width: 35rem;
}
section.hero > div.container p.hero__text {
  max-width: 30rem;
  color: var(--title-color);
  font-size: 1rem;
  line-height: 1.8rem;
}
section.hero > div.container a.hero__btn {
  color: var(--title-color);
  font-weight: 600;
  font-size: 1rem;
  background-color: var(--secondary-color);
  padding: 1rem 1.2rem;
  border-radius: 5px;
  max-width: 13rem;
  text-align: center;
}


@media screen and (min-width: 900px) {
  section.hero {
    background-size: cover;
  }
  section.hero > div h1.hero__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 600px) {
  section.hero > div h1.hero__title {
    font-size: 2.5rem;
  }
}
/*=============== BUTTON ===============*/
.title__box {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 1rem 1.5rem;
  border-radius: 5px;
  text-align: center;
  padding: 1rem 1.3rem;
  color: var(--secondary-color);
}

/*=============== Explore ===============*/
section.explore {
  min-height: 600px;
  /* top: 38.7rem; */
  /* position: relative; */
  background-color: var(--title-color);
  padding-block: 20rem;
  /* padding-block:clamp(4rem,8vw,8rem); */
}
section.explore div.container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
section.explore div.container .text__area {
  margin: 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2rem;
}
section.explore div.container .text__area h2 {
  font-size: 2.5rem;
}
section.explore div.container .text__area p {
  line-height: 1.5rem;
}
section.explore div.container .text__area .cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  gap: 2.5rem;
}
section.explore div.container .text__area .cta > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.5rem;
  justify-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
section.explore div.container .text__area .cta > span i.icon {
  border-radius: 50%;
  height: 40px;
  width: 40px;
  background-color: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--secondary-color);
}
section.explore div.container .text__area .cta > span span.q__nav__item__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
section.explore div.container .text__area .cta > span span.q__nav__item__cont .q__nav__title {
  font-weight: 600;
}
section.explore div.container .text__area .cta > a {
  color: var(--title-color);
  font-weight: 600;
  font-size: 1rem;
  background-color: var(--secondary-color);
  padding: 1rem 1.9rem;
  border-radius: 5px;
  max-width: 15rem;
  text-align: center;
}
section.explore div.container .imgs_section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  position: absolute;
  right: -1rem;
  top: -8rem;
}
section.explore div.container .imgs_section img {
  width: 15rem;
  height: 15rem;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
section.explore div.container .imgs_section img:nth-child(1),
section.explore div.container .imgs_section img:nth-child(3) {
  margin-top: 0.2rem;
}
section.explore div.container .imgs_section img:nth-child(2),
section.explore div.container .imgs_section img:nth-child(4) {
  margin-top: -3rem;
}

@media screen and (max-width: 700px) {
  section.explore div.container {
    grid-template-columns: 1fr !important;
    gap: 5rem;
  }
  section.explore div.container .imgs_section {
    display: none;
  }
}
/*=============== OUR_TEAM ===============*/
section.our__team {
  background-color: var(--secondary-color);
  min-height: 700px;
  position: relative;
  /* top: 40rem; */
  color: var(--title-color);
  padding-block: 10rem;
}
section.our__team > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 3rem;
}
section.our__team > div .img_section {
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 10px;
}
section.our__team > div .img_section img {
  width: 134%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
section.our__team > div .text__area {
  margin: 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
}
section.our__team > div .text__area > span {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
section.our__team > div .text__area h2 {
  color: var(--title-color);
  font-size: 2rem;
}
section.our__team > div .text__area p {
  color: var(--primary-color);
  line-height: 1.4rem;
  text-align: justify;
  text-justify: inter-word;
}

@media screen and (max-width: 700px) {
  section.our__team > div {
    display: block;
  }
  .img_section {
    display: none;
  }
}
/*=============== POPULAR ===============*/
section.popular {
  position: relative;  /* only this section has position:relative to move the section a bit up */
  /* top: 38rem; */
  padding-block: 8rem 6rem;
}

section.popular .popular_box {
  position: absolute;
  top: -1rem;
  background-image: url("/static/images/world_map_blue.png");
  background-color: var(--primary-color);
  background-blend-mode: lighten;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
}
section.popular .popular_box > span {
  min-width: 15rem;
  padding: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.popular .popular_box > span i.icon {
  height: 80px;
  width: 80px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
  font-size: 2rem;
  border-radius: 50%;
  background-color: var(--title-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  margin-right: 0.5rem;
}
section.popular .popular_box > span > span {
  font-weight: 600;
  font-size: 2.5rem;
  color: var(--title-color);
}
section.popular .popular_box > span > p {
  font-size: 1.1rem;
  color: var(--title-color);
}

@media screen and (max-width: 700px) {
  section.popular .popular_box {
    min-height: 400px;
  }
}
/*=============== Destinations ===============*/
section.destination {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  position: relative;
  padding-block: 5rem;
  /* top: 40rem; */
}
section.destination h2 {
  font-size: 2.5rem;
  font-weight: 900;
}
section.destination > div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
section.destination > div .destination_card {
  min-width: 300px;
  background-color: var(--title-color);
  min-height: 450px;
  background-image: url("/static/images/hero_img.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  color: var(--title-color);
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
          box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}
section.destination > div .destination_card p {
  font-size: 1.2rem;
  margin-top: 100%;
  color: var(--primary-color);
}
section.destination > div .destination_card h3 {
  font-size: 2rem;
  color: var(--title-color);
}
section.destination > div .destination_card:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}
section.destination > div .destination_card:first-child {
  background-image: url("/static/images/destinations/kerala/kerala_thrissur_pooram_Small.jpeg");
}
section.destination > div .destination_card:nth-child(2) {
  background-image: url("/static/images/destinations/karnataka/karnataka-Kambala-Festival__Small.jpg");
}
section.destination > div .destination_card:nth-child(3) {
  background-image: url("/static/images/destinations/tamilnadu/tamilnadu_kanyakumari.jpg");
}
section.destination > div .destination_card:nth-child(4) {
  background-image: url("/static/images/destinations/andaman/andaman_underwater.jpg");
}
section.destination > div .destination_card:nth-child(5) {
  background-image: url("/static/images/destinations/lakshadweep/Lakshadweep.webp");
}
section.destination > div .destination_card:nth-child(6) {
  background-image: url("/static/images/destinations/sri-lanka/srilanka-train.jpg");
}

@media screen and (max-width: 700px) {
  section.destination {
    margin-top: 10rem;
  }
  section.destination > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-template-columns: 1fr;
    margin-top: 5rem;
  }
}
/*=============== Testimonials ===============*/
section.testimonials {
  background-color: var(--secondary-color);
  /* color: var(--title-color); */
  
  margin-top: 5rem;
  /* text-align: center; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  position: relative;
  /* top: 40rem; */
  padding-block: 10rem;
}
section.testimonials h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--title-color);
}
section.testimonials > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2rem;
}
section.testimonials > div .testimonial_card {
  min-width: 500px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
          box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 2rem 2rem;
  background-color: var(--title-color);
}
section.testimonials > div .testimonial_card .title__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  justify-items: center;
  text-align: left;
}
section.testimonials > div .testimonial_card .title__row > img.review_icon {
  max-height: 80px;
}
section.testimonials > div .testimonial_card .title__row > span {
  margin-left: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
}
section.testimonials > div .testimonial_card .title__row > span h3 {
  font-size: 1.5rem;
  /* color: var(--title-color); */
}
span.testimonial_card > h4 {
  /* color: var(--title-color); */
}

section.testimonials > div .testimonial_card .title__row > span span.stars i {
  color: orange;
  font-size: 1.5rem;
}
section.testimonials > div .testimonial_card p {
  /* color: #000; */
  margin-top: 2rem;
  line-height: 1.5rem;
  text-align: justify;
  text-justify: inter-word;
  /* color: var(--title-color); */
}
section.testimonials > div .testimonial_card span.reviewer {
  padding-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
section.testimonials > div .testimonial_card span.reviewer img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
}
section.testimonials > div .testimonial_card span.reviewer span.reviewer_details {
  text-align: left;
}
section.testimonials > div .testimonial_card span.reviewer span.reviewer_details h4 {
  font-weight: 600;
}
section.testimonials > div .testimonial_card span.reviewer span.reviewer_details sub {
  font-size: 2rem;
  /* color: var(--title-color); */
}

@media screen and (max-width: 1100px) {
  section.testimonials > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section.testimonials > div .testimonial_card {
    max-width: 90vw;
  }
}
@media screen and (max-width: 700px) {
  section.testimonials > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section.testimonials > div .testimonial_card {
    min-width: 100vw;
  }
}
/*=============== Our Partners ===============*/
section.partners {
  padding: 3rem 0;
  /* margin: 24rem 0; */
  /* position: relative; */
  /* top: 22rem; */
  padding-block: 10rem;
}
section.partners h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  font-weight: 900;
}
section.partners div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section.partners div img {
  max-width: 150px;
}

@media screen and (max-width: 700px) {
  section.partners > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    justify-items: center;
    gap: 2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.itinerary_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3rem;
}
.itinerary_links a {
  display: block;
  text-decoration: none;
  padding: 0.2rem 2rem;
  color: var(--title-color);
  background-color: var(--primary-color);
  border-radius: 0.5rem;
}

/*=============== FOOTER ===============*/
footer {
  background-color: var(--secondary-color);
  color: var(--title-color);
  padding: 0 1rem;
  position: relative;
  bottom: 0rem;
}
footer a,
footer h3 {
  color: var(--title-color);
}
footer .row__two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  padding-top: 1rem;
  min-height: 300px;
  justify-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .row__two span:first-child {
  max-width: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
footer .row__two span:first-child img {
  margin: 0;
  max-width: 250px;
}
footer .row__two span:first-child span.footer__social__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 2rem;
}
footer .row__two span:first-child span.footer__social__icons i {
  height: 40px;
  width: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
  font-size: 1.5rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-content: center;
  color: var(--title-color);
  margin-right: 0.5rem;
}
footer .row__two span.site__map {
  padding: 0 2rem;
}
footer .row__two span.site__map h3 {
  margin-bottom: 1.5rem;
}
footer .row__two span.site__map ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
}
footer .row__two span.newsletter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  max-width: 250px;
}
footer .row__two span.newsletter h3 {
  margin-bottom: 0.5rem;
}
footer .row__two span.newsletter form {
  position: relative;
}
footer .row__two span.newsletter form input {
  padding: 0.5rem;
  border-radius: 10px;
  width: 100%;
}
footer .row__two span.newsletter form i {
  position: absolute;
  top: 0;
  right: 0.1rem;
  margin-top: 0.05rem;
  height: 2rem;
  width: 2rem;
  background-color: var(--primary-color);
  border-radius: 10px;
  font-size: 1.4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4px;
  -webkit-box-shadow: hsl(208, 100%, 74%) 2px 1px 4px;
          box-shadow: hsl(208, 100%, 74%) 2px 1px 4px;
  overflow: hidden;
}
footer .row__two span.newsletter p i {
  font-size: 1rem;
  opacity: 0.6;
}
footer .row__two span.footer__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .row__two span.footer__contact li.q__nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 2rem;
  gap: 1.5rem;
  margin-top: 1rem;
}
footer .row__two span.footer__contact li.q__nav__item i.icon {
  border-radius: 50%;
  height: 40px;
  width: 40px;
  color: var(--title-color);
  background-color: var(--primary-color);
  
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  
  margin-right: 0.5rem;
}
footer .row__two span.footer__contact li.q__nav__item span.q__nav__item__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
footer .row__two span.footer__contact li.q__nav__item span.q__nav__item__cont span.q__nav__cont {
  font-weight: 600;
  display: inline-block;
}
footer .row__copyright {
  margin-top: 2rem;
  min-height: 3rem;
  padding: 1rem 0;
  text-align: center;
  border-top: 1px solid var(--text-color-light);
}

@media screen and (max-width: 700px) {
  footer .row__two {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .row__two span:first-child img {
    max-width: 20rem;
    margin: 0 auto;
  }
  footer .row__two span:first-child span.footer__social__icons {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  footer .row__two span:first-child span.footer__social__icons i {
    height: 50px;
    width: 50px;
  }
  footer .row__two span.site__map {
    text-align: center;
  }
}
/*=============== SCROLL BAR ===============*/
/*=============== SCROLL UP ===============*/
/* Show Scroll Up */
.page__title {
  min-height: 400px;
  text-align: center;
  background-image: url("/static/images/destinations/andaman/andaman_underwater.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: var(--title-color);
}
.page__title > div {
  padding-top: 10rem;
}
.page__title > div h1.hero__title {
  color: var(--title-color);
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 900;
}
.page__title > div p.hero__text {
  margin-top: 1rem;
}

.disp__left__imgs,
.disp__right__imgs {
  min-height: 600px;
  position: relative;
}

.itinerary_links {
  max-height: 120px;
  overflow: auto;
}

.disp__left__imgs {
  min-height: 600px;
  background-color: var(--secondary-color);
  color: var(--title-color);
}
.disp__left__imgs > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.disp__left__imgs > div .imgs_section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.disp__left__imgs > div .imgs_section img {
  width: 15rem;
  height: 15rem;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.disp__left__imgs > div .imgs_section img:nth-child(1),
.disp__left__imgs > div .imgs_section img:nth-child(3) {
  margin-top: -2rem;
}
.disp__left__imgs > div .text__area {
  margin: 5rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2rem;
}
.disp__left__imgs > div .text__area h2 {
  font-size: 2.5rem;
  color: var(--title-color);
}
.disp__left__imgs > div .text__area p {
  line-height: 1.8rem;
}
.disp__left__imgs > div .hero__title {
  color: var(--title-color);
  font-size: 2rem;
  grid-area: heroTitle;
}
.disp__left__imgs > div p.hero__text {
  margin-top: 1rem;
  grid-area: heroText;
}

.disp__right__imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.disp__right__imgs .text__area {
  margin: 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2rem;
}
.disp__right__imgs .text__area h2 {
  font-size: 2.5rem;
}
.disp__right__imgs .text__area p {
  line-height: 1.5rem;
}
.disp__right__imgs .text__area .cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2.5rem;
}
.disp__right__imgs .text__area .cta > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  justify-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.disp__right__imgs .text__area .cta > span i.icon {
  border-radius: 50%;
  height: 40px;
  width: 40px;
  color: var(--secondary-color);
  background-color: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--title-color);
}
.disp__right__imgs .text__area .cta > span span.q__nav__item__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.disp__right__imgs .text__area .cta > span span.q__nav__item__cont .q__nav__title {
  font-weight: 600;
}
.disp__right__imgs .text__area .cta > span span.q__nav__item__cont .q__nav__title,
.disp__right__imgs .text__area .cta > span span.q__nav__item__cont .q__nav__cont {
  color: var(--text-color);
}
.disp__right__imgs .text__area .cta > a {
  color: var(--title-color);
  font-weight: 600;
  font-size: 1rem;
  background-color: var(--secondary-color);
  padding: 1rem 1.9rem;
  border-radius: 5px;
  max-width: 15rem;
  text-align: center;
}
.disp__right__imgs .imgs_section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  position: absolute;
  right: -1rem;
}
.disp__right__imgs .imgs_section img {
  width: 15rem;
  height: 15rem;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.disp__right__imgs .imgs_section img:nth-child(1),
.disp__right__imgs .imgs_section img:nth-child(3) {
  margin-top: 0.2rem;
}
.disp__right__imgs .imgs_section img:nth-child(2),
.disp__right__imgs .imgs_section img:nth-child(4) {
  margin-top: -3rem;
}

/* ITINERARY PAGE SYTELS */
main.itineary_page {
  margin-bottom: 5rem;
}
main.itineary_page .disp__right__imgs {
  grid-template-columns: 1fr;
}
main.itineary_page .disp__right__imgs .text__area h2,
main.itineary_page .disp__right__imgs .text__area h5,
main.itineary_page .disp__right__imgs .text__area span.day__title {
  color: var(--secondary-color);
}
main.itineary_page .disp__right__imgs .text__area span.day__title {
  font-weight: 600;
  display: block;

  text-align: center;
  margin-bottom: 1rem;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  color: var(--title-color);
  border-radius: 5px;
  padding-top: 1rem;
  padding-bottom: 1rem;

  font-size: 1.1rem;
  
}
/* main.itineary_page .img-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(5, 1fr);
  width: 100%;
  height: 100%;
  grid-gap: 1px;

  margin-bottom: -30px;
  margin-top: -30px;
  align-content: center;
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
} */

main.itineary_page .text__area h5 {
  font-size: 1.1rem;
}

.day__images-block{
  display:flex;
  justify-content:space-between;   /* centers the whole image row */
  justify-content:center;   /* centers the whole image row */
  align-items:center;
  gap:0.1rem;
  flex-wrap:wrap;
  margin: -30px 0;   /* cleaned your duplicate margins */
}

.day__images-block img{
  width:100%;
  max-width:350px;
  height:250px;
  object-fit:cover;
  border-radius:10px;
}

main.itineary_page .grid-item1 {
  background-image: url("https://images.unsplash.com/photo-1534719156993-f3c9448673bf?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=f089cfa06eb1cd7c0f654b39d8fdfd07&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  grid-column: 1/4;
  grid-row: 1/2;
}
main.itineary_page .grid-item2 {
  background-image: url("https://images.unsplash.com/photo-1534759846116-5799c33ce22a?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=19c8355cd5aff72debf2f4720f4c7e09&auto=format&fit=crop&w=688&q=80");
  background-size: cover;
  background-position: center;
  grid-column: 1/2;
  grid-row: 2/5;
}
main.itineary_page .grid-item3 {
  background-image: url("https://images.unsplash.com/photo-1508097549463-97f74cb9a6aa?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=52c257bf60c788a1332419c74c6a8a01&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  grid-column: 1/5;
  grid-row: 5/5;
}
main.itineary_page .grid-item4 {
  background-image: url("https://images.unsplash.com/photo-1507562534834-42ebd36b00ea?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=f712012a42c9e9d9163fd9a0c80fd66a&auto=format&fit=crop&w=1202&q=80");
  background-size: cover;
  background-position: center;
  grid-column: 2/4;
  grid-row: 2/5;
}
main.itineary_page .grid-item5 {
  background-image: url("https://images.unsplash.com/photo-1534714259038-764cb4cf1d58?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=d07ea713fcf12221034dafd8f4ffe82b&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  grid-column: 4/6;
  grid-row: 1/3;
}
main.itineary_page .grid-item6 {
  background-image: url("https://images.unsplash.com/photo-1515694581961-1fbdb6840a5f?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=4267be6fb944c94b672e0b3ddb458286&auto=format&fit=crop&w=634&q=80");
  background-size: cover;
  background-position: center;
  grid-column: 4/5;
  grid-row: 3/5;
}
main.itineary_page .grid-item7 {
  background-image: url("https://images.unsplash.com/photo-1534703580202-6123d4189ef6?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=5478b30dec2346f00a40ab259d162068&auto=format&fit=crop&w=634&q=80");
  background-size: cover;
  background-position: center;
  grid-column: 5/6;
  grid-row: 3/6;
}
main.itineary_page .grid-item8 {
  background-image: url("https://images.unsplash.com/photo-1534743901536-d184ed4194bc?ixlib=rb-0.3.5&s=21fd4555141d93425b8ee3f80f764e69&auto=format&fit=crop&w=634&q=80");
  background-size: cover;
  background-position: center;
  grid-column: 6/8;
  grid-row: 1/6;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
/* For medium devices */
/* For large devices */
@media screen and (max-width: 700px) {
  .disp__left__imgs,
  .disp__right__imgs {
    min-height: 430px;
  }
  .disp__left__imgs .imgs_section,
  .disp__right__imgs .imgs_section {
    display: none !important;
  }
  .disp__left__imgs > div,
  .disp__right__imgs > div {
    min-height: 200px;
  }
  .disp__left__imgs {
    grid-template-columns: 0 1fr;
  }
  .disp__left__imgs .text__area {
    width: 100vw;
    padding-right: 5rem;
  }
  .disp__right__imgs {
    grid-template-columns: 1fr 0;
  }

  /* itinerary page */
  .day__images-block{
    justify-content:center;   /* centers the whole image row */
    gap:0.3rem;
  }
}