@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@400;500;600;700&display=swap");
:root {
  --side-padding: 0;
}
@media (max-width: 1199px) {
  :root {
    --side-padding: 2.5rem;
  }
}

body {
  --main-color: #FF1414;
  --slope-foreground: #000;
}
body.elementor-page {
  --main-color: var(--e-global-color-primary);
  --slope-foreground: var(--e-global-color-secondary);
}

/********************
keyframe
********************/
@keyframes box-rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  12.5% {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  25% {
    transform: translate(-50%, -50%) rotate(180deg);
  }
  37.5% {
    transform: translate(-50%, -50%) rotate(270deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  62.5% {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  75% {
    transform: translate(-50%, -50%) rotate(180deg);
  }
  87.5% {
    transform: translate(-50%, -50%) rotate(270deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/********************
defaults
********************/
h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 6.4rem;
  color: #000;
}

h2 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 5.9rem;
  color: #000;
}

h3 {
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 5.5rem;
  color: #000;
}

h4 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 5rem;
  color: #000;
}

h5 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 4.7rem;
  color: #000;
}

h6 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 4.4rem;
  color: #000;
}

/********************
general
********************/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 100%;
  margin-top: 0 !important;
  padding: 0 !important;
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
  overflow-x: hidden;
}

body {
  position: relative;
  box-sizing: border-box;
  overflow-x: hidden;
}
body button:focus {
  outline: none;
}

:focus-visible {
  outline: none;
}

a {
  text-decoration: none !important;
}

input,
textarea {
  border: none;
  border-bottom: 2px solid;
  border-color: #ddd;
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 3rem;
  padding: 0 0.5rem;
  transition: all 0.25s ease;
  color: #000;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: var(--slope-main-color);
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #000;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #000;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #000;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #000;
}

input {
  height: 4.4rem;
}

textarea {
  resize: none;
}

img {
  image-rendering: -moz-crisp-edges;
  /* Firefox */
  image-rendering: -o-crisp-edges;
  /* Opera */
  image-rendering: -webkit-optimize-contrast;
  /* Webkit (non-standard naming) */
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

.banner-detail {
  position: relative;
}
.banner-detail .banner-bg {
  height: auto;
  margin-bottom: 0;
  display: block;
}
.banner-detail .banner-bg img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-detail .banner-bg:before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  inset-inline-start: 0;
  inset-block-end: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 50%);
}
.banner-detail .content {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 100px;
  margin: 0 auto;
  z-index: 99;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
.banner-detail .content h1 {
  font-size: 66px;
  color: #fff;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .banner-detail .content h1 {
    font-size: 32px;
  }
}
.banner-detail .content .breadcrumb {
  align-items: center;
  justify-content: center;
}
.banner-detail .content .breadcrumb .breadcrumb-item a {
  color: #c4c4c4;
}
.banner-detail .content .breadcrumb .breadcrumb-item.active {
  color: #fff;
}
.banner-detail.fullScreen .banner-bg {
  height: 700px;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .banner-detail.fullScreen .banner-bg {
    height: 450px;
  }
}

.activities {
  margin: auto;
  border-top: 1px solid #eaeaea;
  /* Tabs */
}
.activities .tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
.activities .tabs .tab {
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid #ddd;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .activities .tabs .tab {
    padding: 6px 14px;
  }
}
.activities .tabs .tab.active {
  border-color: #ccc;
  color: var(--main-color);
}
.activities .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .activities .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .activities .grid {
    grid-template-columns: 1fr;
  }
}

/* Grid */
.section-desc .flex-box-desc .block-start {
  flex: 3;
}
.section-desc .flex-box-desc .block-end {
  flex: 1.2;
}
.section-desc .block-content .title {
  margin-block-end: 40px;
}
.section-desc .block-content .title h3 {
  font-size: 30px;
  font-weight: 700;
  margin-block-end: 50px;
}
@media (max-width: 767.98px) {
  .section-desc .block-content .title h3 {
    font-size: 24px;
    font-weight: 500;
  }
}
.section-desc .block-content .text {
  margin-block-end: 30px;
}
.section-desc .block-content .text:last-child {
  margin-block-end: 0;
}
.section-desc .block-content .text p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .section-desc .block-content .text p {
    font-size: 18px;
  }
}

.flex-box-desc {
  gap: 100px;
}
@media (max-width: 767.98px) {
  .flex-box-desc {
    gap: 50px;
  }
}

.sidebar-sticky {
  position: sticky;
  top: 120px;
  /* same or slightly more than header height */
}

.sidebar aside {
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 0 5px #e5e5e5;
}

.info-card {
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .info-card {
    margin-bottom: 30px;
  }
}
.info-card .info-icon-wrap {
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-direction: row;
}
.info-card .info-icon-wrap h4 {
  color: var(--main-color);
  font-size: 22px;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .info-card .info-icon-wrap h4 {
    font-size: 18px;
  }
}
.info-card p {
  font-size: 20px;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .info-card p {
    font-size: 18px;
  }
}
.info-card:last-child {
  margin-bottom: 0;
}

.video-block .video-btn {
  position: relative;
  display: block;
  height: 100%;
}
.video-block .video-btn img {
  width: 100%;
}
.video-block .video-btn::after {
  background-color: #fff;
  -webkit-mask: url("https://www.keralatourism.org/assets/images/adventure/icons/btn-play.svg") no-repeat center;
          mask: url("https://www.keralatourism.org/assets/images/adventure/icons/btn-play.svg") no-repeat center;
  mask-size: contain;
  height: 80px;
  width: 80px;
  content: "";
  position: absolute;
  margin: 0 auto;
  inset-inline-start: 0;
  inset-inline-end: 0;
  inset-block-start: 40%;
  -webkit-mask: url("https://www.keralatourism.org/assets/images/adventure/icons/btn-play.svg") no-repeat center;
  -webkit-mask-size: contain;
  transition: background-color 0.3s ease;
}
@media (max-width: 991.98px) {
  .video-block .video-btn::after {
    height: 60px;
    width: 60px;
  }
}
.video-block .video-btn:hover::after {
  background-color: var(--main-color);
}
@media (max-width: 991.98px) {
  .video-block .video-btn {
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media (max-width: 991.98px) {
  .video-block .video-btn img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.image-block .image-btn {
  position: relative;
  display: block;
  height: 100%;
}
.image-block .image-btn img {
  width: 100%;
}
.image-block .image-btn::after {
  background-color: #fff;
  -webkit-mask: url("https://www.keralatourism.org/assets/images/adventure/icons/btn-plus.svg") no-repeat center;
          mask: url("https://www.keralatourism.org/assets/images/adventure/icons/btn-plus.svg") no-repeat center;
  mask-size: contain;
  height: 50px;
  width: 50px;
  content: "";
  position: absolute;
  margin: 0 auto;
  inset-inline-start: 0;
  inset-inline-end: 0;
  inset-block-start: 40%;
  -webkit-mask: url("https://www.keralatourism.org/assets/images/adventure/icons/btn-plus.svg") no-repeat center;
  -webkit-mask-size: contain;
  transition: background-color 0.3s ease;
}
@media (max-width: 991.98px) {
  .image-block .image-btn::after {
    height: 60px;
    width: 60px;
  }
}
.image-block .image-btn:hover::after {
  background-color: var(--main-color);
}
@media (max-width: 991.98px) {
  .image-block .image-btn {
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media (max-width: 991.98px) {
  .image-block .image-btn img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.section .intro.intro-space h2 {
  margin: 0;
}
.section .intro.intro-space {
  margin-bottom: 60px;
}
.section .intro.title-with-carousel {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.custom-arrows {
  display: flex;
  gap: 15px;
}
.custom-arrows .custom-arrow {
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 36px;
  height: 36px;
  width: 36px;
  border: none;
  padding: 0;
  border-radius: 50%;
  background-color: var(--main-color);
}
.custom-arrows .custom-arrow.slick-disabled {
  background-color: #f2f2f2;
}
.custom-arrows .slick-next-custom {
  -webkit-mask-image: url(https://www.keralatourism.org/assets/images/adventure/icons/arrow-right-circle-fill.svg);
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(https://www.keralatourism.org/assets/images/adventure/icons/arrow-right-circle-fill.svg);
  transform: rotate(0deg);
}
.custom-arrows .slick-prev-custom {
  -webkit-mask-image: url(https://www.keralatourism.org/assets/images/adventure/icons/arrow-right-circle-fill.svg);
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(https://www.keralatourism.org/assets/images/adventure/icons/arrow-right-circle-fill.svg);
  transform: rotate(180deg);
}
.custom-arrows .title-with-carousel .custom-arrows .slick-arrow {
  background-color: var(--main-color);
}
.custom-arrows .title-with-carousel .custom-arrows .slick-arrow.slick-disabled {
  background-color: #fff;
}

.horizontal-card .slide-item .card figure {
  height: 360px;
  width: 100%;
}
.horizontal-card .slide-item .card figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.vertical-card .slide-item .card figure {
  height: 440px;
  width: 100%;
}
.vertical-card .slide-item .card figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.grid-destination {
  display: grid;
  row-gap: 30px;
  -moz-column-gap: 30px;
       column-gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .grid-destination {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .grid-destination {
    grid-template-columns: repeat(1, 1fr);
  }
}
.grid-destination .card {
  padding-block: 24px;
  padding-inline: 24px;
  display: flex;
  justify-content: center;
}
.grid-destination .card::before {
  display: none;
}
.grid-destination .card figure {
  width: 70px;
  margin-bottom: 5px;
}
.grid-destination .card figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.grid-destination .card h3 a {
  font-weight: 600;
  color: #000;
  font-size: 24px;
}
.grid-destination .card .explore-btn {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 10px;
}

.find-operator {
  background-color: #f3f3f3;
  padding: 10px;
  text-align: center;
}
.find-operator p {
  font-size: 20px;
  color: #f47920;
}
.find-operator p a {
  color: #09b250;
}

:lang(en) body {
  font-family: "Plus Jakarta Sans", sans-serif;
}

:lang(ml) body {
  font-family: "Noto Sans Malayalam", sans-serif;
}

:lang(ta) body {
  font-family: "Noto Sans Tamil", sans-serif;
}

:lang(hi) body {
  font-family: "Hind", sans-serif;
}

/********************
heading
********************/
:lang(en) h1,
:lang(en) h2,
:lang(en) h3,
:lang(en) h4,
:lang(en) h5,
:lang(en) h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
}

:lang(ml) h1,
:lang(ml) h2,
:lang(ml) h3,
:lang(ml) h4,
:lang(ml) h5,
:lang(ml) h6 {
  font-family: "Noto Sans Malayalam", sans-serif;
}

:lang(ta) h1,
:lang(ta) h2,
:lang(ta) h3,
:lang(ta) h4,
:lang(ta) h5,
:lang(ta) h6 {
  font-family: "Noto Sans Tamil", sans-serif;
}

:lang(hi) h1,
:lang(hi) h2,
:lang(hi) h3,
:lang(hi) h4,
:lang(hi) h5,
:lang(hi) h6 {
  font-family: "Hind", sans-serif;
}

.heading,
.heading > * {
  margin: 0;
}

.heading.heading-very-large,
.heading.heading-very-large > *,
.page-title {
  font-size: 7rem;
  font-weight: 700;
  line-height: 10rem;
  letter-spacing: -0.4rem;
}
@media (max-width: 1199px) {
  .heading.heading-very-large,
  .heading.heading-very-large > *,
  .page-title {
    font-size: calc(30px + 40 * (100vw - 200px) / 999);
    line-height: calc(45px + 45 * (100vw - 200px) / 999);
  }
}
@media (max-width: 991px) {
  .heading.heading-very-large,
  .heading.heading-very-large > *,
  .page-title {
    letter-spacing: -0.3rem;
  }
}

.heading.heading-large,
.heading.heading-large > * {
  font-size: 4rem;
  font-weight: 700;
  line-height: 6.4rem;
  letter-spacing: -0.1rem;
}
@media (max-width: 1024px) {
  .heading.heading-large,
  .heading.heading-large > * {
    font-size: 3rem;
    line-height: 4.2rem;
  }
}

.heading.heading-medium,
.heading.heading-medium > * {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 3.4rem;
}

.heading.heading-small,
.heading.heading-small > * {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.2rem;
  letter-spacing: 0.1rem;
}

.light-1,
.light-1 * {
  color: #fff;
}

.light-2,
.light-2 * {
  color: #ccc;
}

.dark-1,
.dark-1 *,
.page-title {
  color: #000;
}

.dark-2,
.dark-2 * {
  color: #ccc;
}

.heading > span {
  display: inline;
}

.heading.quote > *:first-child::before {
  content: "“";
  display: inline-block;
  font-size: 8rem;
  font-weight: 700;
  line-height: 0;
  color: var(--slope-main-color);
  transform: translateY(3.2rem);
}
.heading.quote > *:last-child::after {
  content: "”";
  display: inline-block;
  font-size: 8rem;
  font-weight: 700;
  line-height: 0;
  color: var(--slope-main-color);
  transform: translateY(3.2rem);
}
@media (max-width: 991px) {
  .heading.quote > *:first-child::before, .heading.quote > *:first-child::after,
  .heading.quote > *:last-child::before,
  .heading.quote > *:last-child::after {
    transform: translateY(3.8rem);
  }
}

/********************
paragraph
********************/
.paragraph,
.paragraph > * {
  font-size: 1.8rem;
  line-height: 3.4rem;
  font-weight: 500;
  margin: 0;
}
.paragraph a,
.paragraph > * a {
  text-decoration: underline !important;
  color: inherit;
  transition: all 0.25s ease;
}
.paragraph a > *,
.paragraph > * a > * {
  color: inherit;
  transition: all 0.25s ease;
}
.paragraph a:hover,
.paragraph > * a:hover {
  color: var(--slope-main-color);
}
.paragraph a:hover > *,
.paragraph > * a:hover > * {
  color: var(--slope-main-color);
}

.btn-theme.btn,
.btn-theme {
  color: #fff;
  border-radius: 30px;
  padding-inline: 16px;
  border: 1px solid #fff;
}
.btn-theme.btn:hover,
.btn-theme:hover {
  background-color: var(--main-color);
  color: #fff;
  border: 1px solid var(--main-color);
}
.btn-theme.btn .lang-btn,
.btn-theme .lang-btn {
  color: #fff;
}
.btn-theme.btn.btn-fill,
.btn-theme.btn-fill {
  background-color: var(--main-color);
}

.explore-btn {
  border-radius: 30px;
  display: inline-flex;
  background-color: #fff;
  border: 1px solid var(--main-color);
  transition: all 0.4s ease;
  margin-block-start: 30px;
}
.explore-btn a {
  font-size: 20px;
  font-weight: 600;
  display: inline-flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  color: var(--main-color);
  transition: all 0.4s ease;
  padding: 9px 14px 10px 20px;
}
@media (max-width: 991.98px) {
  .explore-btn a {
    font-size: 16px;
    padding: 6px 8px 7px 14px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .explore-btn a {
    font-size: 16px;
    padding: 7px 12px 8px 16px;
  }
}
.explore-btn i.icon {
  -webkit-mask-image: url("http://202.88.244.195/keralatourism.org/assets/images/adventure/icons/arrow-up-right-circle.svg");
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("http://202.88.244.195/keralatourism.org/assets/images/adventure/icons/arrow-up-right-circle.svg");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  height: 28px;
  width: 28px;
  transition: all 0.4s ease;
  background-size: 28px;
  background-color: var(--main-color);
}
.explore-btn:hover a {
  color: #fff;
  transition: all 0.4s ease;
}
.explore-btn:hover i.icon {
  background-color: #fff;
  transform: rotate(45deg);
  transition: all 0.4s ease;
}
.explore-btn:hover {
  transition: all 0.4s ease;
  background-color: #fff;
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
}
.explore-btn.btn-light {
  background-color: transparent;
  border-color: #fff;
  transition: all 0.4s ease;
  border: 1px solid #fff;
}
.explore-btn.btn-light a {
  color: #fff;
}
.explore-btn.btn-light i.icon {
  background-color: #fff;
}
.explore-btn.btn-light:hover a {
  color: #fff;
  transition: all 0.4s ease;
}
.explore-btn.btn-light:hover i.icon {
  background-color: #fff;
  transform: rotate(45deg);
  transition: all 0.4s ease;
}
.explore-btn.btn-light:hover {
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
}
.explore-btn.btn-sm a {
  font-size: 12px;
  font-weight: 400;
  padding: 4px 6px 4px 10px;
}
.explore-btn.btn-sm a i {
  height: 16px;
  width: 16px;
  background-size: 16px;
}
.explore-btn.btn-fill {
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
}
.explore-btn.btn-fill a {
  color: #fff;
}
.explore-btn.btn-fill i.icon {
  background-color: #fff;
}
.explore-btn.btn-fill:hover {
  background-color: #fff;
  border: 1px solid var(--main-color);
}
.explore-btn.btn-fill:hover a {
  color: var(--main-color);
}
.explore-btn.btn-fill:hover i.icon {
  background-color: var(--main-color);
}

@media (max-width: 767.98px) {
  .quick-contact-btn {
    justify-content: space-between;
  }
  .btn-theme.btn-contact {
    display: none !important;
  }
}
#header {
  top: 0;
  width: 100%;
  z-index: 1000;
  position: fixed;
  padding-block: 16px;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
#header .bootstrap-select > .dropdown-toggle {
  padding-inline: 0;
}
#header .bootstrap-select > .dropdown-toggle.focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}
#header .bootstrap-select > .dropdown-toggle::after {
  margin: 0;
  border: 0;
  height: 18px;
  width: 22px;
  -webkit-mask-image: url("https://www.keralatourism.org/assets/images/adventure/icons/arrow-down-round.svg");
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("https://www.keralatourism.org/assets/images/adventure/icons/arrow-down-round.svg");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
}
#header .bootstrap-select > .dropdown-menu .selected.active {
  background-color: #a7a7a7;
}
#header .btn-side-panel {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 7px;
}
#header .btn-side-panel .line {
  height: 3px;
  transition: all 0.4s ease;
  background-color: #fff;
}
#header .btn-side-panel .line.line-01 {
  width: 40px;
}
#header .btn-side-panel .line.line-02 {
  width: 30px;
}
#header .btn-side-panel .line.line-03 {
  width: 20px;
}
#header .btn-side-panel:hover .line {
  height: 3px;
  transition: all 0.4s ease;
  background-color: var(--main-color);
}
#header .btn-side-panel:hover .line.line-01 {
  width: 40px;
}
#header .btn-side-panel:hover .line.line-02 {
  width: 40px;
}
#header .btn-side-panel:hover .line.line-03 {
  width: 40px;
}
#header.scrolled {
  background: #222;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
#header.scrolled .logo,
#header.scrolled .nav-link {
  color: #a7a7a7;
}
#header.scrolled .btn-theme.btn,
#header.scrolled .btn-theme {
  color: #222;
  border-color: #ccc;
}
#header.scrolled .btn-theme.btn svg,
#header.scrolled .btn-theme svg {
  fill: #222;
}
#header.scrolled .icon-img {
  stroke: #a7a7a7;
}
#header.scrolled .bootstrap-select > .dropdown-toggle {
  padding-inline: 0;
}
#header.scrolled .bootstrap-select > .dropdown-toggle::after {
  background-color: #a7a7a7;
}
#header.scrolled .btn-theme .lang-btn {
  color: #222;
}
#header.scrolled .btn-side-panel .line {
  background-color: #fff;
}
#header.scrolled .btn-side-panel:hover .line {
  background-color: #a7a7a7;
}
#header.scrolled .btn-theme.btn:hover,
#header.scrolled .btn-theme:hover {
  background-color: #ccc;
}
#header.scrolled .text-block .text-block a {
  width: 60px;
  background-image: url("../../assets/images/icons/adventure-logo.png");
  background-size: cover;
  background-position: center;
  -webkit-mask-image: url("../../assets/images/icons/adventure-logo.png");
  mask-image: url("../../assets/images/icons/adventure-logo.png");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  display: block;
  height: 50px;
  background-color: #222;
}
#header.scrolled .text-block .text-block a:hover {
  color: var(--main-color);
}
#header .text-block a {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  width: 60px;
  background-image: url("https://www.keralatourism.org/assets/images/icons/adventure-logo.png");
  background-size: cover;
  background-position: center;
  -webkit-mask-image: url("https://www.keralatourism.org/assets/images/icons/adventure-logo.png");
  mask-image: url("https://www.keralatourism.org/assets/images/icons/adventure-logo.png");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  display: block;
  height: 50px;
  background-color: #fff;
}
#header .text-block a:hover {
  color: var(--main-color);
}
@media (max-width: 767.98px) {
  #header .text-block {
    display: block;
  }
}
#header .logo-block {
  width: 80px;
}
#header .main-nav .nav-item {
  border-block-end-color: #363636;
  border-block-end-style: solid;
  border-block-end-width: 1px;
}

.offcanvas-body {
  background-color: #000;
}

.nav-link {
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}

.nav-link:hover {
  background-color: #1a1a1a;
}

.submenu-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.collapse.show + .nav-link .submenu-arrow,
.collapse.show ~ .nav-link .submenu-arrow {
  transform: rotate(90deg);
}

.side-panel .offcanvas .offcanvas-body .nav-item .nav-link {
  font-size: 20px;
}

.side-panel .offcanvas .offcanvas-body .accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.side-panel .offcanvas .offcanvas-body .accordion-item:first-of-type > .accordion-header .accordion-button {
  color: #ff1414;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 #3d3f40;
}

.side-panel .offcanvas .offcanvas-body .accordion-body {
  background-color: #414141;
}

.side-panel .offcanvas .offcanvas-body .accordion-button {
  background-color: #2d2d2d;
  padding-block: 24px;
  font-size: 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.side-panel .offcanvas .offcanvas-body .accordion-body ul li {
  border-bottom: 1px solid #333;
  padding-block: 12px;
  text-decoration: none;
  list-style: none;
}

.side-panel .offcanvas .offcanvas-body .accordion-body ul li a {
  color: #fff;
  text-decoration: none;
}

.side-panel .offcanvas .offcanvas-body .accordion-button::after {
  background: url(https://www.keralatourism.org/images/sabarimala/down-arrow.svg);
  background-repeat: no-repeat;
}

.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  color: #fff;
}

.footer {
  background-color: #000;
  padding-block-start: 120px;
}
@media (max-width: 991.98px) {
  .footer {
    padding-block-start: 40px;
  }
}
@media (max-width: 991.98px) {
  .footer .intro {
    display: none;
  }
}
.footer .footer-content {
  display: grid;
  grid-template-columns: 80% 20%;
}
@media (max-width: 991.98px) {
  .footer .footer-content {
    grid-template-columns: 100%;
  }
}
@media (max-width: 991.98px) {
  .footer .footer-content .navigation-wrap {
    display: none;
  }
}
.footer .footer-content .navigation-wrap .navigation {
  display: grid;
  gap: 15px;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991.98px) {
  .footer .footer-content .navigation-wrap .navigation {
    row-gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer .footer-content .navigation-wrap .navigation li {
  list-style: none;
}
.footer .footer-content .navigation-wrap .navigation li a {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  background-image: url("http://202.88.244.195/keralatourism.org/assets/images/adventure/icons/arrow-right-bold.svg");
  background-repeat: no-repeat;
  background-position: 0px 8px;
  padding-inline-start: 16px;
  transition: all 0.3s ease;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .footer .footer-content .navigation-wrap .navigation li a {
    font-size: 14px;
  }
}
.footer .footer-content .navigation-wrap .navigation li a:hover {
  color: var(--main-color);
  background-position: 2px 8px;
  transition: all 0.2s ease;
}
.footer .footer-contact h4 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-block-end: 30px;
}
.footer .footer-contact .contact-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .footer-contact .contact-text .elem-contact {
  display: flex;
  gap: 10px;
  align-items: start;
  justify-content: flex-start;
  flex-direction: row;
}
.footer .footer-contact .contact-text .elem-contact a,
.footer .footer-contact .contact-text .elem-contact p {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}
.footer .footer-contact .contact-text .elem-contact a:hover,
.footer .footer-contact .contact-text .elem-contact p:hover {
  color: var(--main-color);
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .footer .footer-contact .contact-text .elem-contact a,
  .footer .footer-contact .contact-text .elem-contact p {
    font-size: 14px;
  }
}
.footer .footer-contact .contact-text .elem-contact p {
  margin-bottom: 0;
}
.footer .footer-contact .footer-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  align-items: center;
  flex-direction: row;
}
.footer .footer-contact .footer-social a {
  width: 36px;
}
.footer .footer-contact .footer-social a img {
  width: 100%;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .footer .footer-contact .footer-social a {
    width: 24px;
  }
}
.footer .sec-footer {
  padding-block: 30px;
  border-top: 1px dashed #707070;
  text-align: center;
  margin-top: 80px;
}
@media (max-width: 991.98px) {
  .footer .sec-footer {
    margin-top: 40px;
  }
}
.footer .sec-footer p {
  color: #fff;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .footer .sec-footer p {
    font-size: 14px;
  }
}
.footer .sec-footer p a {
  color: #fff;
}
.footer .sec-footer p a:hover {
  color: var(--main-color);
}

.section-video {
  background-color: #373331;
}

.section-spotligt .video-js .vjs-progress-control,
.section-spotligt .video-js .vjs-fullscreen-control {
  display: none;
}
.section-spotligt .video-js .vjs-tech {
  -o-object-fit: cover;
     object-fit: cover;
}
.section-spotligt .video-js .vjs-control-bar {
  justify-content: flex-end;
  background-color: rgba(43, 51, 63, 0);
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  color: #fff;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero__text {
  max-width: 600px;
}
.hero__subtitle {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-style: italic;
  display: block;
  margin-bottom: 0.5rem;
}
.hero__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 800;
  letter-spacing: 2px;
  margin: 0;
  line-height: 1;
  margin-inline-start: 55px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .hero__title img {
    width: 100%;
  }
}
.hero__location {
  font-size: 4.5rem;
  margin-top: 0.5rem;
  opacity: 0.9;
  margin-inline-start: 55px;
}
.hero__actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}
.hero__actions .btn {
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  border-radius: 50px;
}
.hero .video-js.hero__video {
  position: absolute;
}

/* Responsive */
@media (max-width: 768px) {
  .hero__title img {
    width: 80%;
  }
  .hero__title {
    margin-inline-start: 0;
  }
  .hero__subtitle {
    font-size: 1.5rem;
  }
  .hero__subtitle img {
    width: 50%;
  }
  .hero__location {
    font-size: 1.2rem;
  }
}
.section-video .video-block .video-btn {
  display: block;
}
.section-video .video-block .video-btn svg {
  margin: 0 auto;
  position: absolute;
  stroke: #fff;
  inset-inline-start: 0;
  inset-inline-end: 0;
  inset-block-start: 40%;
}
.section-video .video-block .video-btn:hover svg {
  stroke: var(--main-color);
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  :lang(en) .hero__title {
    max-width: 480px;
  }
  :lang(en) .hero__title img {
    width: 100%;
  }
  :lang(en) .hero__subtitle {
    max-width: 220px;
  }
  :lang(en) .hero__subtitle img {
    width: 100%;
  }
  .hero__location {
    font-size: 3rem;
  }
}
.section-block {
  padding-block: 150px;
}
@media (max-width: 991.98px) {
  .section-block {
    padding-block: 60px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .section-block {
    padding-block: 80px;
  }
}

.section-block-md {
  padding-block: 80px;
}
@media (max-width: 991.98px) {
  .section-block-md {
    padding-block: 60px;
  }
}

.space-btm {
  padding-block-end: 150px;
}
@media (max-width: 991.98px) {
  .space-btm {
    padding-block-end: 60px;
  }
}

.section-title .title-content h2 {
  font-weight: 700;
  font-size: 72px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .section-title .title-content h2 {
    font-size: 48px;
  }
}
@media (max-width: 991.98px) {
  .section-title .title-content h2 {
    font-size: 32px;
  }
}
.section-title.title-cstm {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-direction: row;
}
@media (max-width: 991.98px) {
  .section-title.title-cstm {
    gap: 20px;
    flex-direction: column;
  }
}

.explore-gallery-grid {
  margin-block-start: 60px;
}
@media (max-width: 991.98px) {
  .explore-gallery-grid {
    margin-block-start: 30px;
  }
}
.explore-gallery-grid .gallery-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  grid-template-rows: repeat(2, 300px);
  gap: 0;
  max-width: 1200px;
  margin: auto;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .explore-gallery-grid .gallery-grid {
    grid-template-rows: repeat(2, 240px);
  }
}
.explore-gallery-grid .gallery-grid .item {
  overflow: hidden;
  border-radius: 0;
}
.explore-gallery-grid .gallery-grid .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.explore-gallery-grid .gallery-grid .item.item-left {
  grid-row: 1/3;
}
@media (max-width: 767.98px) {
  .explore-gallery-grid .gallery-grid .item.item-top, .explore-gallery-grid .gallery-grid .item.item-bottom {
    display: none;
  }
}
@media (max-width: 768px) {
  .explore-gallery-grid .gallery-grid {
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .explore-gallery-grid .gallery-grid .item {
    height: 250px;
  }
  .explore-gallery-grid .gallery-grid .item.item-left {
    grid-row: auto;
  }
  .explore-gallery-grid .gal-content-wrap {
    margin-block-start: 30px;
  }
}

.card-section .water-thrills .card {
  height: 393px;
}
.card-section .water-thrills .card a.link_internal {
  display: block;
  height: 393px;
}
.card-section .card {
  border-radius: 0;
  border: none;
  position: relative;
  transition: all 0.3s ease;
}
.card-section .card .explore-btn {
  position: absolute;
  margin-block-start: 0;
  inset-block-end: 30px;
  inset-inline-start: 30px;
}
.card-section .card .overlay h3 {
  font-size: 22px;
}

.gal-content-wrap .gal-content {
  padding-inline-start: 1rem;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .gal-content-wrap .gal-content {
    padding-inline-start: 0;
    margin-block-start: 30px;
  }
}
.gal-content-wrap .gal-content p {
  font-weight: 400;
  font-size: 20px;
}
.gal-content-wrap {
  display: flex;
  align-items: center;
}

.section .intro.intro-cstm {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-block-end: 60px;
}
@media (max-width: 767.98px) {
  .section .intro.intro-cstm {
    flex-direction: column;
    margin-block-end: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .section .intro.intro-cstm {
    margin-block-end: 50px;
  }
}
.section .intro.intro-light {
  color: #fff;
}
.section .intro.intro-space-btm {
  margin-bottom: 80px;
}
.section .intro.intro-space-btm h2 {
  margin-bottom: 0;
}
.section .intro.intro-sm h2 {
  font-size: 42px;
}
@media (max-width: 767.98px) {
  .section .intro.intro-sm h2 {
    font-size: 32px;
  }
}

.helpline {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.helpline__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.helpline__icon svg,
.helpline__icon img {
  width: 100%;
  height: 100%;
}
.helpline__content h3 {
  color: #FF1414;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
}
.helpline__content p {
  font-size: 18px;
  line-height: 1.6;
  color: #373737;
  margin-bottom: 6px;
}
.helpline__content p strong {
  font-weight: 700;
}
.helpline__content p span {
  color: #444;
}

/* Responsive */
@media (max-width: 576px) {
  .helpline {
    align-items: flex-start;
  }
  .helpline__content h3 {
    font-size: 20px;
  }
  .helpline__icon {
    width: 36px;
    height: 36px;
  }
}
.travel-tips .travel-tips-wrap {
  display: grid;
  gap: 20px;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 991.98px) {
  .travel-tips .travel-tips-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.travel-tips .travel-tips-wrap li {
  list-style: none;
}

.location-block .block-map {
  padding: 20px;
  border: 1px solid #ccc;
}

.sectoin-desc .description h3 {
  font-size: 30px;
  margin-bottom: 30px;
}
.sectoin-desc .description p {
  font-size: 20px;
  margin-bottom: 0;
}
.sectoin-desc .description {
  margin-bottom: 50px;
}

.section-quick-info {
  background-color: #F5F5F5;
}
.section-quick-info.info-custom {
  border-top: 1px solid #ddd;
  background-color: rgb(247, 252, 255);
}

/* Masonry using CSS columns */
.masonry {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.masonry .card {
  background: #ffffff;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  transition: 0.3s ease;
}
.masonry .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
}
.masonry .card .icon {
  font-size: 22px;
  margin-bottom: 16px;
}
.masonry .card .icon img {
  width: 32px;
  height: 32px;
}
.masonry .card h3 {
  color: #ff2a2a;
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 600;
}
.masonry .card p {
  color: #555;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 6px;
}
.masonry .card span {
  font-size: 13px;
  color: #777;
}
.masonry .card:before {
  display: none;
}
.masonry.masonry-4-item {
  -moz-column-count: 4;
       column-count: 4;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.masonry.masonry-4-item figure img {
  max-width: 120px;
}

/* Responsive Masonry */
@media (max-width: 992px) {
  .masonry {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media (max-width: 576px) {
  .masonry {
    -moz-column-count: 1;
         column-count: 1;
  }
  .wrapper {
    margin: 30px auto;
  }
}
#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 999;
}

.water-thrills-wrap.section-block {
  border-top: 1px solid #ddd;
}
@media (max-width: 768px) {
  .water-thrills-wrap {
    background-color: #f1f1f1;
  }
}

.water-thrills {
  margin: auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: max-content;
  gap: 20px;
}

/* Intro block */
.intro {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.intro .tag {
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .intro .tag {
    font-size: 20px;
  }
}
.intro h2 {
  font-size: 72px;
  margin: 0 0 10px 0;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .intro h2 {
    font-size: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .intro h2 {
    font-size: 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .intro h2 {
    font-size: 48px;
  }
}
.intro p {
  color: #555;
  line-height: 1.6;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .intro p {
    font-size: 18px;
  }
}
.intro .btn {
  display: inline-block;
  padding: 12px 24px;
  background: #FF1414;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
}

/* Cards */
.card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.2s ease;
}
.card:hover img {
  transform: scale(1.1);
}
.card:hover::before {
  transition: all 0.2s ease-in-out;
}
.card .overlay {
  position: absolute;
  inset-block-end: 70px;
  inset-inline-start: 30px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  word-break: break-word;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .card .overlay {
    font-size: 20px;
  }
}
@media (max-width: 991.98px) {
  .card .overlay {
    font-size: 20px;
  }
}
.card .overlay a {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}
.card:before {
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 30%);
}

/* Tall cards */
.tall {
  grid-row: span 2;
}

/* Wide card */
.wide {
  grid-column: span 2;
}

/* Responsive */
@media (max-width: 992px) {
  .water-thrills {
    grid-template-columns: repeat(2, 1fr);
  }
  .intro {
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .water-thrills {
    gap: 0;
    grid-template-columns: 1fr;
  }
  .tall,
  .wide {
    grid-column: auto;
    grid-row: auto;
  }
}
.wildlife-experience {
  background: url("http://202.88.244.195/keralatourism.org/assets/images/adventure/wildlife/bg.webp") no-repeat 0 0;
}

.slick-slider.multiple-card .slick-list {
  margin-inline: -16px;
}
.slick-slider.multiple-card .slick-track .slide-item {
  padding-inline: 16px;
}
.slick-slider.multiple-card .slick-track {
  padding-bottom: 80px;
}
@media (max-width: 991.98px) {
  .slick-slider.multiple-card .slick-track {
    padding-bottom: 40px;
  }
}
.slick-slider.multiple-card.arrow-enabled .slick-prev,
.slick-slider.multiple-card.arrow-enabled .slick-next {
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  height: 32px;
  width: 32px;
  transition: all 0.4s ease;
  background-size: 32px;
  background-color: #fff;
}
.slick-slider.multiple-card.arrow-enabled .slick-prev:before,
.slick-slider.multiple-card.arrow-enabled .slick-next:before {
  display: none;
}
.slick-slider.multiple-card.arrow-enabled .slick-prev {
  -webkit-mask-image: url("http://202.88.244.195/keralatourism.org/assets/images/adventure/icons/arrow-right-circle-fill.svg");
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("http://202.88.244.195/keralatourism.org/assets/images/adventure/icons/arrow-right-circle-fill.svg");
  transform: rotate(180deg);
}
.slick-slider.multiple-card.arrow-enabled .slick-next {
  -webkit-mask-image: url("http://202.88.244.195/keralatourism.org/assets/images/adventure/icons/arrow-right-circle-fill.svg");
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("http://202.88.244.195/keralatourism.org/assets/images/adventure/icons/arrow-right-circle-fill.svg");
  transform: rotate(0deg);
}
.slick-slider.multiple-card .slick-arrow.slick-disabled {
  background-color: var(--main-color);
}
.slick-slider.multiple-card.carousel-activities .slide-item figure {
  height: 90px;
  display: flex;
  justify-content: center;
}
.slick-slider.multiple-card.carousel-activities .slide-item {
  text-align: center;
}
.slick-slider.multiple-card.carousel-activities .slide-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
}
.slick-slider.multiple-card.carousel-activities .slide-item h4 a {
  color: #000;
}
.slick-slider.multiple-card.carousel-activities .slide-item h4 a:hover {
  color: #ccc;
}
.slick-slider.multiple-card.dots-enabled .slick-dots li {
  height: 5px;
}
.slick-slider.multiple-card.dots-enabled .slick-dots li button {
  height: 5px;
  padding: 0;
  border-radius: 30px;
  background-color: #000;
}
.slick-slider.multiple-card.dots-enabled .slick-dots li button:before {
  display: none;
}
.slick-slider.multiple-card.dots-enabled .slick-dots li.slick-active {
  width: 32px;
}
.slick-slider.multiple-card.dots-enabled .slick-dots li.slick-active button {
  width: 32px;
  background-color: var(--main-color);
}
.slick-slider.multiple-card.custom-arrow .slick-track {
  padding-bottom: 0;
}
.slick-slider.arrow-btm-middle .slick-prev,
.slick-slider.arrow-btm-middle .slick-next {
  top: 100%;
  position: absolute;
}
.slick-slider.arrow-btm-middle .slick-prev {
  right: auto;
  left: 46%;
}
@media (max-width: 767.98px) {
  .slick-slider.arrow-btm-middle .slick-prev {
    left: 38%;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .slick-slider.arrow-btm-middle .slick-prev {
    left: 40%;
  }
}
.slick-slider.arrow-btm-middle .slick-next {
  right: 46%;
  left: auto;
}
@media (max-width: 767.98px) {
  .slick-slider.arrow-btm-middle .slick-next {
    right: 38%;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .slick-slider.arrow-btm-middle .slick-next {
    right: 40%;
  }
}

.gallery {
  padding: 0;
}

/* TOP SECTION */
.gallery__wrapper {
  display: flex;
  gap: 0;
}

/* LEFT CONTENT */
.gallery__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gallery__left h5 {
  font-size: 16px;
  margin-bottom: 10px;
}
.gallery__left h1 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 30px;
}
.gallery__left .img-box {
  height: 360px;
}
.gallery__left .img-box:last-child {
  height: 440px;
}
@media (max-width: 767.98px) {
  .gallery__left .img-box:last-child {
    height: 240px;
  }
}
@media (max-width: 767.98px) {
  .gallery__left .img-box.intro {
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .gallery__left .img-box.intro {
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media (max-width: 767.98px) {
  .gallery__left {
    gap: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .gallery__left {
    gap: 0;
  }
}

/* MIDDLE COLUMN */
.gallery__middle {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.gallery__middle .img-box {
  height: 265px;
}
.gallery__middle .img-box:last-child {
  height: 270px;
}
@media (max-width: 767.98px) {
  .gallery__middle .img-box:last-child {
    height: 240px;
  }
}
@media (max-width: 767.98px) {
  .gallery__middle .img-box {
    height: 240px;
  }
}

/* RIGHT COLUMN */
.gallery__right {
  flex: 1;
  overflow: hidden;
}
.gallery__right .img-box {
  height: 500px;
}
.gallery__right .img-box:last-child {
  height: 300px;
}
@media (max-width: 767.98px) {
  .gallery__right .img-box:last-child {
    height: 240px;
  }
}
@media (max-width: 767.98px) {
  .gallery__right .img-box {
    height: 240px;
  }
}

/* IMAGE BOX */
.img-box {
  overflow: hidden;
}
.img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* BOTTOM ROW */
.gallery__bottom {
  display: flex;
  gap: 0;
}
.gallery__bottom .img-box {
  flex: 1;
  height: 260px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .gallery__wrapper,
  .gallery__bottom {
    flex-direction: column;
  }
  .gallery__left h1 {
    font-size: 38px;
  }
  .img-box {
    height: 240px;
  }
  .gallery__wrapper .gallery__middle,
  .gallery__wrapper .gallery__right {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */