@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.link {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}
.link span {
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease-in-out;
}
.link span::before {
  position: absolute;
  top: 100%;
  color: #fdc123;
  content: attr(data-hover);
  transform: translate3d(0, 0, 0);
}
.link span:hover, .link span:focus {
  transform: translateY(-100%);
}
.link.is-dark {
  color: #142553;
  font-weight: 700;
  text-transform: uppercase;
  float: none;
}

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

body {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #000;
}

a {
  text-decoration: none;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

[class*=col-] {
  width: 100%;
  position: relative;
  padding: 0 1rem;
}

section,
footer {
  padding: 60px 0;
}

.col {
  width: 100%;
  padding: 0 1rem;
  position: relative;
}

.shade {
  background: rgba(20, 37, 83, 0.0509803922);
}

p {
  line-height: 24px;
}

.mt-30 {
  margin-top: 30px;
}

.p0 {
  padding: 0;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.social-links {
  position: absolute;
  right: 5%;
  bottom: 20%;
  z-index: 9;
}

ul.social-list {
  display: flex;
  align-items: start;
  justify-content: inherit;
  flex-direction: column;
  list-style: none;
  gap: 5px;
}
ul.social-list li a {
  padding: 0;
  margin: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(20, 37, 83, 0.75);
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: inherit;
  color: #fff;
}
ul.social-list li a::after {
  background: #fdc123;
}
ul.social-list li a:hover {
  color: #142553;
  scale: 1.1;
}
ul.social-list.is-horizontal {
  flex-direction: row;
}

.scroll-down-line {
  position: absolute;
  z-index: 9;
  bottom: 0;
  right: 5.99%;
  text-align: center;
}
.scroll-down-line span {
  display: block;
  width: 1px;
  height: 130px;
  background-color: #fff;
  position: relative;
  animation: scrolldown 1.2s cubic-bezier(1, 0, 0, 1) infinite;
}

.social-links,
.scroll-down-line {
  display: none;
}

.header {
  position: fixed;
  height: 100px;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  transition: 0.3s ease-out;
  display: flex;
}
.header .flex {
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.header .flex .logo img {
  width: 180px;
  transition: 0.3s ease-out;
}
.header .flex .nav-bar {
  display: flex;
  align-items: center;
  justify-content: inherit;
  flex-direction: row;
}
.header .flex .nav-bar .nav-btn {
  display: none;
}
.header .flex .nav-items {
  display: none;
}
.header .flex button {
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  width: 32px;
  height: 32px;
  padding: 0;
  font-size: 1rem;
  margin-left: 1rem;
  margin-top: 0;
}
.header .flex button::after {
  background: #fdc123;
}
.header.is-filled {
  top: 0;
  background-color: #142553;
}
.header.fixed {
  height: 80px;
  background: #142553;
  top: 0;
}
.header.fixed .flex .logo img {
  width: 130px;
}
.header.is-bg-primary {
  background: #142553;
}

.hamburger-menu {
  position: relative;
  height: 27px;
  width: 35px;
  margin-left: 10px;
  cursor: pointer;
  z-index: 100;
  transition: opacity 0.25s ease;
}
.hamburger-menu:hover {
  opacity: 0.7;
}
.hamburger-menu.active .top {
  transform: translateY(10px) translateX(0) rotate(45deg);
  background: #fff;
}
.hamburger-menu.active .middle {
  opacity: 0;
  background: #fff;
}
.hamburger-menu.active .bottom {
  transform: translateY(-10px) translateX(0) rotate(-45deg);
  background: #fff;
}
.hamburger-menu span {
  background: #fff;
  border: none;
  height: 1px;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  transition: all 0.35s ease;
  cursor: pointer;
}
.hamburger-menu span:nth-of-type(2) {
  top: 10px;
}
.hamburger-menu span:nth-of-type(3) {
  top: 20px;
}

.overlay {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, width 0.35s;
  z-index: 50;
}
.overlay:after {
  content: "";
  background: #142553;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  transition: 0.35s ease;
}
.overlay.open {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.overlay.open:after {
  right: 0;
}
.overlay.open li {
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 0.35s;
}
.overlay.open li:nth-of-type(2) {
  animation-delay: 0.45s;
}
.overlay.open li:nth-of-type(3) {
  animation-delay: 0.55s;
}
.overlay.open li:nth-of-type(4) {
  animation-delay: 0.65s;
}
.overlay.open li:nth-of-type(5) {
  animation-delay: 0.75s;
}
.overlay.open li:nth-of-type(6) {
  animation-delay: 0.85s;
}
.overlay.open li:nth-of-type(7) {
  animation-delay: 0.95s;
}
.overlay nav {
  position: relative;
  z-index: 100;
}
.overlay ul {
  list-style: none;
  padding: 0 1rem;
  margin-bottom: 50px;
  position: relative;
  float: left;
  width: 100%;
}
.overlay ul li {
  display: block;
  position: relative;
  opacity: 0;
  padding: 0.5rem 0;
  float: left;
  width: 100%;
}
.overlay ul li a {
  position: relative;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
}
.overlay ul.social-list li {
  width: auto;
}
.overlay.is-kerala-menu ul {
  margin: 0;
}
.overlay.is-kerala-menu ul li {
  padding: 0.4rem 0;
}
.overlay.is-kerala-menu ul.main-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.0509803922);
  border-bottom: 1px solid rgba(255, 255, 255, 0.0509803922);
  padding: 1rem;
}
.overlay ul.social-list {
  flex-direction: row;
}

.hero {
  overflow: hidden;
}
.hero .item {
  height: 100vh;
  position: relative;
}
.hero .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .item .cover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #142553 0%, rgba(115, 115, 115, 0) 100%);
}
.hero .item .cover .header-content {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 1rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.hero .item .cover .header-content h2 {
  font-weight: 800;
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 1rem;
}
.hero .item .cover .header-content p {
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 1rem;
}
.hero .item .cover .header-content .btn-group .btn {
  width: 195px;
}
.hero .item .cover .header-content .btn-group .btn:nth-child(2) {
  background: #fff;
  color: #142553;
}
.hero .item .cover .header-content .btn-group .btn:nth-child(2)::after {
  background: #fdc123;
}
.hero .item .cover .header-content a {
  text-decoration: none;
  font-weight: 700;
}
.hero .item .cover .header-content a i {
  margin-left: 10px;
}
.hero .item .slider--count {
  position: fixed;
  pointer-events: none;
  right: 10%;
  bottom: 70px;
  z-index: 1;
  color: #fff;
}
.hero .item .slider--count span {
  color: #fdc123;
}
.hero .owl-item.active h2 {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
}
.hero .owl-item.active p {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.6s;
}
.hero .owl-item.active .btn {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 1s;
}
.hero .owl-item.active .btn:nth-child(2) {
  animation-delay: 0.9s;
}
.hero .owl-theme .owl-dots {
  width: 100%;
  position: absolute;
  bottom: 50px;
  right: 10%;
  text-align: right;
}
.hero .owl-theme .owl-dots .owl-dot span {
  width: 30px;
  height: 4px;
  margin: 0 0 0 5px;
  background: #fff;
  display: block;
}
.hero .owl-theme .owl-dots .active span {
  background: #fdc123;
}

.btn {
  margin-top: 1rem;
  padding: 14px 28px;
  opacity: 1;
  border-radius: 30px;
  display: inline-block;
  text-align: center;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  background: #fdc123;
  color: #142553;
}
.btn::after {
  position: absolute;
  content: "";
  width: 0;
  bottom: 0;
  background: #142553;
  height: 100%;
  left: -10%;
  transform: skewX(10deg);
  z-index: 0;
  transition: 0.3s ease-in-out;
}
.btn:hover {
  color: #fdc123;
}
.btn:hover::after {
  left: -10%;
  width: 120%;
}
.btn span {
  z-index: 1;
  position: relative;
}
.btn.is-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  padding: 0;
  text-align: center;
  line-height: 46px;
}

.section--title {
  margin-bottom: 32px;
}
.section--title h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}
.section--title h2 span {
  color: #fdc123;
  display: block;
}
.section--title small {
  color: #808080;
}
.section--title.is-center-align, .section--title.is-left-align, .section--title.is-one-line {
  text-align: center;
}
.section--title.is-center-align h2 span, .section--title.is-left-align h2 span, .section--title.is-one-line h2 span {
  display: inline-block;
}
.section--title.is-left-align, .section--title.is-one-line {
  text-align: left;
}

.btn-icon {
  width: 46px;
  height: 46px;
  background-color: #fdc123;
  color: #000;
  text-align: center;
  line-height: 46px;
  border-radius: 50%;
}

.nav-top .owl-nav {
  position: absolute;
  top: -100px;
  right: 0;
}
.nav-top .owl-nav button.owl-prev,
.nav-top .owl-nav button.owl-next {
  width: 48px;
  height: 48px;
  background: #fdc123;
  border-radius: 50%;
}

.pakage-card {
  width: 100%;
  position: relative;
}
.pakage-card figure {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 20px;
}
.pakage-card figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease-in-out;
}
.pakage-card figure .label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #fdc123;
  border-radius: 20px;
  color: #333;
  padding: 5px 10px;
}
.pakage-card .btn {
  position: absolute;
  top: -60px;
  right: 1rem;
  z-index: 1;
}
.pakage-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #142553;
  margin-top: 1rem;
  display: -webkit-box;
  height: 60px;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pakage-card p {
  margin-top: 5px;
}
.pakage-card .inclusions {
  display: flex;
  margin-top: 10px;
}
.pakage-card .inclusions span {
  margin-right: 15px;
}
.pakage-card .inclusions i {
  margin-right: 5px;
}
.pakage-card .price {
  margin-top: 1rem;
  color: #333;
}
.pakage-card .price a,
.pakage-card .price span {
  font-weight: 700;
  color: #333;
}
.pakage-card:hover figure img {
  scale: 1.1;
}

.benefits {
  display: flex;
  align-items: start;
  justify-content: inherit;
  flex-direction: column;
}
.benefits figure img {
  border-radius: 20px;
  margin-top: 30px;
}

ul.benefits-list {
  margin-top: 18px;
  list-style: none;
}
ul.benefits-list li {
  display: flex;
  margin-top: 12px;
}
ul.benefits-list li .benefits-list--icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #142553;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: inherit;
}
ul.benefits-list li .benefits-list--icon img {
  width: 40px;
}
ul.benefits-list li .benefits-list--desc {
  padding-left: 2rem;
  width: 80%;
}
ul.benefits-list li .benefits-list--desc p {
  margin-top: 1rem;
}

.hotselling-pkgs .flex {
  display: flex;
  align-items: start;
  justify-content: inherit;
  flex-direction: column;
}
.hotselling-pkgs a {
  display: inline-block;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  margin-top: 25px;
}
.hotselling-pkgs .pakage-card .btn {
  top: -40px;
}

.hotselling-carousel {
  margin-top: 30px;
}
.hotselling-carousel .owl-dots {
  padding-top: 30px;
}
.hotselling-carousel .owl-dots .owl-dot span {
  background: #d9d9d9;
}
.hotselling-carousel .owl-dots .owl-dot.active span {
  background: #fdc123;
}

.txt-center {
  text-align: center;
}

.img-card {
  position: relative;
}
.img-card figure {
  width: 100%;
  margin-top: 30px;
  height: 300px;
  position: relative;
}
.img-card figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.img-card figure .img-card--desc {
  border-radius: 0 0 20px 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(20, 37, 83, 0) 45%, #142553 100%);
  padding: 1rem;
  color: #fff;
}
.img-card figure .img-card--desc h3 {
  font-weight: 700;
  font-size: 24px;
}
.img-card figure .img-card--desc p {
  font-weight: 600;
}
.img-card .btn {
  position: absolute;
  bottom: -20px;
  right: 48px;
  text-decoration: none;
  z-index: 1;
}

.poplr-destinations .col.flex {
  display: flex;
  align-items: start;
  justify-content: inherit;
  flex-direction: column;
}

ul.package-list {
  margin-bottom: 2rem;
}
ul.package-list .pakage-card {
  margin-bottom: 1rem;
}

.center-btn {
  margin: 0 auto;
  display: table;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: #142553;
}

.reviews {
  background-color: #142553;
}
.reviews .section--title h2,
.reviews .section--title small {
  color: #fff;
}
.reviews .review-card {
  background: #fff;
  border-radius: 20px;
  padding: 1rem;
  text-align: center;
  height: 455px;
}
.reviews .review-card .reviwer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.reviews .review-card .reviwer img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}
.reviews .review-card .review-rating {
  color: #fdc123;
  margin: 12px 0;
}
.reviews .review-card .review-rating i {
  margin: 0 2px;
}

.blog-highlights {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
}

.blog-img-card figure {
  position: relative;
  width: 100%;
  margin-top: 20px;
  overflow: hidden;
  height: 450px;
}
.blog-img-card figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.blog-img-card figure .blog-img--desc {
  display: flex;
  align-items: start;
  justify-content: inherit;
  flex-direction: column;
  border-radius: 0 0 20px 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(20, 37, 83, 0) 45%, #142553 100%);
  padding: 1rem;
  color: #fff;
}
.blog-img-card figure .blog-img--desc h3 {
  font-weight: 700;
  font-size: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.blog-img-card figure .blog-img--desc p {
  font-weight: 600;
  margin: 10px 0 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.blog-img-card figure .blog-img--desc .btn {
  margin-top: 30px;
}

ul.blog-list {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  list-style: none;
  gap: 32px;
  margin: 32px 0;
  padding: 0 1rem;
}
ul.blog-list li {
  width: 100%;
}
ul.blog-list li .blog-list--card {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: row;
}
ul.blog-list li .blog-list--card figure {
  width: 40%;
  height: 140px;
}
ul.blog-list li .blog-list--card figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
ul.blog-list li .blog-list--card .blog-list--card--desc {
  width: 60%;
  padding-left: 1rem;
  color: #142553;
}
ul.blog-list li .blog-list--card .blog-list--card--desc h3 {
  margin-top: 10px;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  height: 25px;
  overflow: hidden;
}
ul.blog-list li .blog-list--card .blog-list--card--desc p {
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  height: 48px;
  overflow: hidden;
  margin-top: 0.5rem;
}
ul.blog-list li .blog-list--card .blog-list--card--desc .date {
  margin-top: 10px;
  color: #808080;
}
ul.blog-list li .blog-list--card .blog-list--card--desc .date span {
  color: #142553;
}

.line-x {
  width: 100%;
  height: 1px;
  background: #fff;
}

footer {
  background: #0a1535;
  color: #fff;
}
footer a {
  color: #fff;
}
footer .call-mail {
  margin-top: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
footer .call-mail a {
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: inherit;
  flex-direction: row;
}
footer .call-mail a img {
  width: 18px;
  margin-right: 5px;
}
footer .footer-right .call-mail {
  margin-top: 0;
  font-size: 13px;
}
footer .address-box .footer-logo {
  width: 190px;
}
footer .address-box address {
  font-style: normal;
  margin: 40px 0;
  line-height: 24px;
}
footer .address-box .call-mail {
  display: flex;
  align-items: start;
  justify-content: inherit;
  flex-direction: column;
  gap: 1rem;
  display: none;
}
footer h4 {
  font-size: 20px;
  font-weight: 700;
}
footer ul.footer-links {
  margin-top: 40px;
  list-style: none;
}
footer ul.footer-links .line-x {
  margin: 20px 0;
}
footer ul.footer-links li {
  margin-top: 10px;
  display: flex;
}
footer .footer-flex {
  display: flex;
  align-items: center;
  justify-content: inherit;
  flex-direction: column;
  gap: 30px;
}
footer .connect {
  text-align: center;
  margin-top: 130px;
}
footer .connect ul.social-list {
  margin-top: 20px;
  flex-direction: row;
}
footer .mail-subscribe {
  text-align: center;
}
footer .mail-subscribe h4 {
  margin: 35px 0 20px;
}
footer .mail-subscribe .btn {
  border: none;
  margin-top: 1rem;
}
footer .credits {
  text-align: center;
  margin-top: 60px;
}
footer .credits .line-x {
  margin-bottom: 1rem;
}

.field {
  width: 100%;
  background: #fff;
  border: none;
  height: 50px;
  border-radius: 30px;
  padding: 1rem;
}

.pr-1 {
  padding-right: 1rem;
}

.pl-1 {
  padding-left: 1rem;
}

.mobile-hide,
.lg-txt {
  display: none;
}

ul.count-list {
  display: flex;
  align-items: start;
  justify-content: inherit;
  flex-direction: column;
  list-style: none;
  gap: 20px;
  margin-top: 20px;
}
ul.count-list li {
  flex: 1;
  text-align: center;
  background: #d9d9d9;
  border-radius: 15px;
  padding: 20px 0;
  width: 100%;
  color: #000;
}
ul.count-list li h4 {
  font-size: 24px;
  font-weight: 700;
}
ul.count-list li h5 {
  font-weight: 400;
}

.pt-0 {
  padding-top: 0;
}

.package-list-main {
  padding: 0 1rem;
  position: relative;
  width: 100%;
  margin-top: 2rem;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
}
.package-list-main .filter-btn {
  width: 100%;
  background: none;
  height: 50px;
  background: #f0f0f0;
  position: sticky;
  top: 90px;
  left: 0;
  margin: 0 0 20px;
  z-index: 4;
}
.package-list-main .sidebar-filter {
  position: sticky;
  top: 100px;
  width: 100%;
  background: #f0f0f0;
  border-radius: 20px;
  float: left;
  display: none;
}
.package-list-main .package-list-container {
  width: 100%;
}

form.filter {
  width: 100%;
  float: left;
  position: relative;
  padding: 1rem;
}
form.filter .label {
  width: 100%;
  float: left;
  margin: 20px 0 10px;
  font-size: 16px;
  font-weight: 300;
  color: #000;
}

.field,
.area,
.select select {
  border-radius: 25px;
  border: 1px solid rgba(20, 37, 83, 0.6);
  padding-bottom: 16px;
  background: #fff;
  box-sizing: border-box;
  width: 100%;
  float: left;
  height: 50px;
  padding: 0 1.5rem;
}

.area {
  height: 100px;
  resize: none;
  padding: 1.5rem;
  font-family: inherit;
}

.select {
  position: relative;
  float: left;
  width: 100%;
}
.select::after {
  content: "\eb3a";
  font-family: "unicons-line";
  position: absolute;
  font-size: 17px;
  color: #222;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: none;
  word-break: normal;
}
.select select::-ms-expand {
  display: none;
}

.radioboxes {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: inherit;
  flex-direction: row;
  width: 100%;
}
.radioboxes label {
  margin-right: 1rem;
}
.radioboxes input[type=radio] {
  display: none;
}
.radioboxes input[type=radio]:checked + .ku {
  background-color: #fdc123;
}
.radioboxes input[type=radio]:checked + .ku span {
  color: #fff;
}
.radioboxes input[type=radio]:checked + .ku span:before {
  transform: translateY(0px);
  opacity: 1;
}
.radioboxes .ku {
  padding: 5px 10px;
  background-color: #fff;
  transition: all 250ms ease;
  display: inline-block;
  cursor: pointer;
  position: relative;
  border-radius: 20px;
}
.radioboxes .ku span {
  text-transform: capitalize;
  display: inline-block;
  transition: all 300ms ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #000;
}

.checkboxes {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: inherit;
  flex-direction: column;
}
.checkboxes input[type=checkbox] {
  display: none;
}
.checkboxes input[type=checkbox] + label {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #142553;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.checkboxes input[type=checkbox] + label:last-child {
  margin-bottom: 0;
}
.checkboxes input[type=checkbox] + label:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #c0c0c0;
  background: #fff;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.6;
  transition: 0.12s, border-color 0.08s;
}
.checkboxes input[type=checkbox]:checked + label:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top: transparent;
  border-left: transparent;
  transform: rotate(45deg);
  background: none;
  border-color: #fdc123;
  border-width: 2px;
}

ul.pagination {
  width: 100%;
  list-style: none;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: row;
  gap: 5px;
}
ul.pagination li a,
ul.pagination li span {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  color: #333;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: #f1f1f1 1px solid;
  text-align: center;
  transition: 0.3s ease-in-out;
}
ul.pagination li a:hover {
  background: #f1f1f1;
}

.mt-2 {
  margin-top: 2rem;
}

.accordion .accordion-item {
  border-bottom: 1px solid #808080;
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #142553;
  font-weight: 700;
  font-size: 15px;
  border: none;
  background: none;
  outline: none;
  transition: 0.4s ease;
  cursor: pointer;
}
.accordion button:hover, .accordion button:focus {
  cursor: pointer;
  color: #03b5d2;
}
.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}
.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border-radius: 22px;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded=true] {
  color: #03b5d2;
}
.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
.accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 100%;
  transition: 0.4 ease-in-out;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.mt-100 {
  margin-top: 100px;
}

ul.package-highlights {
  display: flex;
  align-items: start;
  justify-content: inherit;
  flex-direction: row;
  list-style: none;
  flex-wrap: wrap;
}
ul.package-highlights li {
  display: flex;
  align-items: center;
  justify-content: inherit;
  flex-direction: row;
  gap: 10px;
  color: #000;
  width: 50%;
  margin-bottom: 1rem;
}
ul.package-highlights li img {
  width: 30px;
}
ul.package-highlights li span {
  font-weight: 700;
}
ul.package-highlights li span small {
  display: block;
  font-weight: 400;
  margin-top: 5px;
}

.d-flex {
  display: flex;
  align-items: start;
  justify-content: inherit;
  flex-direction: column;
}
.d-flex.is-align-center {
  align-items: center;
}

.share {
  margin-top: 2rem;
}
.share ul.social-list {
  margin-top: 10px;
}
.share ul.social-list li a {
  background: #142553;
}

.smk_accordion {
  width: 100%;
  position: relative;
  padding: 0;
  list-style: none;
  overflow: hidden;
  margin-top: 2rem;
}
.smk_accordion .accordion_in {
  position: relative;
  z-index: 10;
  overflow: hidden;
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 10px;
  border: 1px solid #f0f0f0;
  margin-bottom: 1rem;
}
.smk_accordion .accordion_in .acc_head {
  width: 100%;
  padding: 15px;
  font-weight: 600;
  color: #142553;
  cursor: pointer;
  background: #fff;
}
.smk_accordion .accordion_in .acc_head span {
  color: #fdc123;
}
.smk_accordion .accordion_in .acc_head .acc_icon_expand {
  position: absolute;
  right: 15px;
  top: 15px;
  font-weight: 400;
  font-size: 20px;
  color: #fdc123;
}
.smk_accordion .accordion_in .acc_head .acc_icon_expand::before {
  content: "\eb3a";
  font-family: unicons-line;
}
.smk_accordion .accordion_in .acc_content {
  background: #fff;
  padding: 0 1rem 1rem;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 1rem;
}
.smk_accordion .accordion_in .acc_content .itinery-content p {
  margin-top: 1rem;
}
.smk_accordion .accordion_in .acc_content .itinery-content p:first-child {
  margin: 0;
}
.smk_accordion .accordion_in .acc_content .itinery-content ul {
  padding: 0 1rem;
  margin-top: 1rem;
}
.smk_accordion .accordion_in .acc_content .itinery-content ul li {
  padding: 0.5rem 0;
}
.smk_accordion .accordion_in .acc_content figure img {
  border-radius: 10px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.smk_accordion .acc_active .acc_head .acc_icon_expand::before {
  content: "\eb56";
  font-family: unicons-line;
}

figure.pack-detail--hero {
  position: relative;
  margin-top: 72px;
}
figure.pack-detail--hero img {
  border-radius: 16px;
}
figure.pack-detail--hero img.md {
  display: none;
}
figure.pack-detail--hero figcaption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0 1rem 1rem;
  background: linear-gradient(180deg, rgba(20, 37, 83, 0) 0%, #142553 90%);
  border-radius: 0 0 16px 16px;
}
figure.pack-detail--hero figcaption h2 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
}
figure.pack-detail--hero figcaption h2 span {
  color: #fdc123;
}
figure.pack-detail--hero figcaption ul {
  margin-top: 1rem;
}
figure.pack-detail--hero figcaption ul li {
  color: #fff;
  display: inline-block;
  padding: 0 1rem;
  border-right: 1px solid #fff;
}
figure.pack-detail--hero figcaption ul li:first-child {
  padding-left: 0;
}
figure.pack-detail--hero figcaption ul li:last-child {
  border: none;
}

ul.package-nav {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: row;
  list-style: none;
  gap: 10px;
  flex-wrap: wrap;
  margin: 2rem 0;
}
ul.package-nav a {
  background: #142553;
  padding: 12px 30px;
  color: #fff;
  border-radius: 20px;
  display: inline-block;
  text-align: center;
}

ul.tick-list {
  list-style: none;
  margin: 2rem 0 1rem;
}
ul.tick-list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}
ul.tick-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  left: 0;
  top: 3px;
  color: #099245;
}
ul.tick-list.is-cross li::before {
  content: "\f057";
  color: #db2f28;
}

.cost-bar {
  width: 100%;
  border: 1px solid #f4f4f4;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  padding: 2rem 1rem;
  margin: 2rem 0;
  color: #333;
  font-size: 20px;
}
.cost-bar h3 {
  font-weight: 600;
  font-size: 18px;
}
.cost-bar h4 {
  text-transform: uppercase;
  font-weight: 700;
  color: #142553;
}

.decor {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  color: #142553;
}
.decor::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #fdc123;
}

.map-container {
  margin-top: 2rem;
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
}

.booking-card {
  width: 100%;
  border-radius: 10px;
  background-color: #142553;
  position: relative;
  padding-bottom: 4rem;
}
.booking-card .tag {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 10px;
  border-radius: 10px 0px 10px 0px;
  background: #fd2373;
  color: #fff;
}
.booking-card .booking-price {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: row;
  color: #fff;
  top: 2.5rem;
}
.booking-card .booking-price h4 {
  font-size: 24px;
  font-weight: 800;
  text-align: right;
}
.booking-card .booking-price h4 span {
  font-size: 14px;
  font-weight: 400;
  display: block;
}
.booking-card .booking-price .btn {
  margin: 0;
}

form.enquire {
  width: 100%;
  position: relative;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  padding: 2rem;
}
form.enquire h4 {
  font-size: 24px;
  font-weight: 700;
  color: #142553;
  text-align: center;
  margin-bottom: 1rem;
}
form.enquire div {
  margin-top: 1rem;
  width: 100%;
  float: left;
}
form.enquire div label {
  display: block;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
}
form.enquire .btn {
  border: none;
  width: 100%;
}

.address-bar {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  margin: 2rem 0;
  gap: 1rem;
}
.address-bar address {
  font-style: normal;
  line-height: 24px;
}
.address-bar .call-mail a {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: row;
  color: #333;
  transition: 0.3s ease-in-out;
  margin-bottom: 0.5rem;
}
.address-bar .call-mail a img {
  width: 16px;
  margin-right: 0.5rem;
  transition: 0.3s ease-in-out;
}
.address-bar .call-mail a:hover {
  color: #142553;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.address-bar .call-mail a:hover img {
  width: 18px;
}

.act-details,
.payment-method {
  margin-bottom: 2rem;
}
.act-details p,
.payment-method p {
  margin-top: 1rem;
  line-height: 24px;
}
.act-details img,
.payment-method img {
  width: 80%;
  margin: 1rem 0;
}
.act-details button,
.payment-method button {
  border: none;
}

.cancel-policy {
  margin-bottom: 2rem;
}
.cancel-policy h4 {
  margin-top: 1rem;
}
.cancel-policy p {
  margin-top: 0.5rem;
}
.cancel-policy a {
  color: #142553;
  display: inline-flex;
}

form.enquire {
  margin-top: 2rem;
}

.date-container {
  border-radius: 25px;
  border: 1px solid rgba(20, 37, 83, 0.6);
  padding-bottom: 16px;
  background: #fff;
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  position: relative;
  float: left;
}
.date-container .date-text {
  position: absolute;
  top: 6px;
  left: 12px;
  color: #aaa;
}
.date-container .date-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  cursor: pointer;
  color: #aaa;
}

#date {
  background: none;
  width: 100%;
  outline: none;
  border: none;
  padding: 0 1rem;
  color: #000;
  height: 50px;
}

.select-boxes {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: row;
  gap: 1rem;
}
.select-boxes .col-6 {
  padding: 0;
  width: 100%;
}

form.contact .form-group {
  margin-top: 1rem;
  width: 100%;
  float: left;
}
form.contact .form-group .label {
  margin-bottom: 0.5rem;
  width: 100%;
  float: left;
}
form.contact button {
  border: none;
  width: 100%;
  height: 50px;
}

.custom-carousel {
  width: 100%;
  padding: 0;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 3rem;
}

.md-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 50%;
  max-width: 630px;
  min-width: 320px;
  height: auto;
  z-index: 2000;
  visibility: hidden;
  backface-visibility: hidden;
  transform: translateX(-50%) translateY(-50%);
}
.md-modal .md-content {
  color: #000;
  background: #fff;
  position: relative;
  width: 100%;
  float: left;
  padding: 2rem 1rem;
}
.md-modal .md-content h3 {
  font-size: 24px;
  color: #142553;
  font-weight: 700;
  margin-top: 100px;
}
.md-modal .md-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 48px;
  height: 48px;
  padding: 0;
  margin: 0;
  border: none;
  background-color: transparent;
  border: #142553 1px solid;
}

.md-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  visibility: hidden;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0;
  background: rgba(20, 37, 83, 0.8);
  transition: 0.3s;
}

.md-show {
  visibility: visible;
}
.md-show ~ .md-overlay {
  opacity: 1;
  visibility: visible;
}

.search-bar {
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: none;
}
.search-bar .md-content {
  transform: translateY(-100%);
  transition: 0.3s ease-in-out;
  opacity: 0;
}
.search-bar .md-content .search-bar--container {
  width: 100%;
  margin-top: 20px;
  background: #fff;
  border: #333 1px solid;
  height: 50px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.search-bar .md-content .search-bar--container .field {
  border: none;
  height: 48px;
  flex: 1;
}
.search-bar .md-content .search-bar--container .field:focus {
  outline: none;
}
.search-bar .md-content .search-bar--container .btn {
  width: 45px;
  height: 45px;
  padding: 0;
  margin: 0;
  border: none;
  margin-right: 2px;
}

.filter-modal {
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  height: 100vh;
}
.filter-modal .md-content {
  display: flex;
  align-items: center;
  background-color: #142553;
  height: 100%;
  transform: translateY(20%);
  opacity: 0;
  padding: 0;
  transition: 0.3s ease-in-out;
}
.filter-modal .md-content form.filter .label,
.filter-modal .md-content .checkboxes input[type=checkbox] + label {
  color: #fff;
}
.filter-modal .md-content .checkboxes input[type=checkbox] + label {
  flex: 1;
}
.filter-modal .md-close {
  background: rgba(217, 217, 217, 0.3019607843);
}
.filter-modal .md-close i {
  font-size: 20px;
  color: #fff;
}
.filter-modal .btn::after {
  background-color: #fdc123;
}

.kerala-menu {
  top: 0;
  right: 0;
  left: auto;
  transform: none;
  height: 100vh;
  width: 300px;
}
.kerala-menu .md-content {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: row;
  background-color: #142553;
  height: 100%;
  transform: translateX(20%);
  opacity: 0;
  transition: 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.kerala-menu .md-content ul.nav-items {
  list-style: none;
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 1rem;
}
.kerala-menu .md-content ul.nav-items li {
  opacity: 0;
}
.kerala-menu .md-content ul.nav-items li a {
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}
.kerala-menu .md-close {
  border-color: #fdc123;
  color: #fff;
}
.kerala-menu .md-close::after {
  background: #fdc123;
}
.kerala-menu .md-close:hover {
  color: #142553;
}

.enquiry-modal {
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  height: 100vh;
}
.enquiry-modal .md-content {
  display: flex;
  align-items: center;
  justify-content: inherit;
  flex-direction: row;
  height: 100%;
  border-radius: 1rem;
  transform: translateY(20%);
  opacity: 0;
  padding: 0;
  transition: 0.3s ease-in-out;
}
.enquiry-modal .md-content form.enquire {
  padding: 0 1rem;
  margin: 0;
  border: 0;
}

.md-show.search-bar .md-content {
  transform: translateY(0);
  border-radius: 0 0 20px 20px;
  opacity: 1;
}
.md-show.filter-modal .md-content, .md-show.enquiry-modal .md-content {
  transform: translateY(0);
  opacity: 1;
}
.md-show.kerala-menu ul.nav-items li {
  opacity: 1;
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 0.35s;
}
.md-show.kerala-menu ul.nav-items li:nth-of-type(2) {
  animation-delay: 0.45s;
}
.md-show.kerala-menu ul.nav-items li:nth-of-type(3) {
  animation-delay: 0.55s;
}
.md-show.kerala-menu ul.nav-items li:nth-of-type(4) {
  animation-delay: 0.65s;
}
.md-show.kerala-menu ul.nav-items li:nth-of-type(5) {
  animation-delay: 0.75s;
}
.md-show.kerala-menu ul.nav-items li:nth-of-type(6) {
  animation-delay: 0.85s;
}
.md-show.kerala-menu ul.nav-items li:nth-of-type(7) {
  animation-delay: 0.95s;
}
.md-show.kerala-menu .md-content {
  transform: translateX(0);
  opacity: 1;
}

ul.article-listing {
  list-style: none;
  margin-top: 20px;
  display: flex;
  align-items: start;
  justify-content: inherit;
  flex-direction: column;
  flex-wrap: wrap;
}
ul.article-listing li {
  width: 100%;
  padding: 0.5rem 1rem;
}

.article-card {
  width: 100%;
  background-color: #f9f9f9;
  border-radius: 10px;
  padding-bottom: 1rem;
}
.article-card figure {
  width: 100%;
  height: 195px;
}
.article-card figure img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article-card .date {
  font-size: 12px;
  margin-top: 20px;
}
.article-card h4 {
  margin: 10px 0;
  font-size: 24px;
  font-weight: 700;
  color: #142553;
}
.article-card h5 {
  font-size: 10px;
  font-weight: 400;
}
.article-card p {
  margin: 1rem 0;
}
.article-card .link {
  color: #142553;
  text-transform: uppercase;
  font-weight: 500;
}

.is-1-line {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.is-2-line {
  display: -webkit-box;
  height: 65px;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.is-3-line {
  display: -webkit-box;
  height: 70px;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-detail h2 {
  font-size: 24px;
  font-weight: 700;
  color: #142553;
  line-height: 34px;
  margin: 1rem 0;
}
.blog-detail .date {
  background-color: #fdc123;
  color: #fff;
  padding: 5px 10px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 1rem;
}
.blog-detail article p {
  margin-top: 1rem;
}
.blog-detail h3 {
  font-size: 24px;
  font-weight: 700;
  color: #142553;
}
.blog-detail h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 1rem;
}

ul.list-items {
  list-style: none;
  margin: 2rem 0 1rem;
}
ul.list-items li {
  padding: 0.3rem 0 0.3rem 1.5rem;
  position: relative;
}
ul.list-items li::before {
  content: "\e9c2";
  font-family: "unicons-line";
  position: absolute;
  left: 0;
  top: 7px;
}

.pl-0,
.pr-0 {
  padding: 0;
}

.privacy h2 {
  font-size: 24px;
  font-weight: 700;
}
.privacy p {
  margin-top: 0.5rem;
}
.privacy h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 1rem;
}

.intermediate .section--title {
  margin-top: 1rem;
}

.about-breif p {
  margin-top: 1rem;
}

.dots-pattern {
  position: relative;
}
.dots-pattern::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -10px;
  top: -50px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle at 2px 2px, rgba(253, 191, 35, 0.2705882353) 2px, transparent 0);
  background-size: 12px 12px;
}
.dots-pattern.is-center::before {
  right: auto;
  left: 50%;
  transform: translateX(-50%);
  top: -48px;
}

.about-breif h2 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 2rem;
  color: #142553;
}
.about-breif h2 span {
  -webkit-text-stroke: 1px #142553;
  color: transparent;
  font-size: 40px;
  font-weight: 900;
}

.raduis-1 {
  border-radius: 1rem;
}

.mission-box {
  width: 100%;
  border: #fdc123 1px solid;
  border-radius: 1rem;
  padding: 2rem 1rem;
  text-align: center;
  margin-top: 2rem;
}
.mission-box h3 {
  font-size: 40px;
  font-weight: 800;
  color: #142553;
}

.team {
  display: flex;
  align-items: start;
  justify-content: inherit;
  flex-direction: column;
  margin-top: 2rem;
}
.team .team--box,
.team .team--figure {
  width: 100%;
}
.team h3 {
  font-size: 24px;
  font-weight: 700;
  color: #142553;
  margin-bottom: 1rem;
}
.team figure {
  margin: 4rem 0 2rem;
}
.team .team--box img {
  width: 75px;
  margin-bottom: 0.5rem;
}

.values {
  display: flex;
  align-items: start;
  justify-content: inherit;
  flex-direction: column-reverse;
  margin-top: 2rem;
}
.values h3 {
  font-size: 24px;
  font-weight: 700;
  color: #142553;
  margin-top: 2rem;
}

table.highlights {
  width: 100%;
  color: #000;
  margin-top: 1rem;
  border: #c0c0c0 1px solid;
  border-collapse: collapse;
}
table.highlights tr {
  border-bottom: #c0c0c0 1px solid;
}
table.highlights td {
  padding: 0 1rem;
  height: 50px;
}
table.highlights td.th {
  width: 35%;
  background: #f4f4f4;
}

.package-navbar {
  height: 50px;
  background-color: #1f387e;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 24;
  position: fixed;
}
.package-navbar ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 16px;
}
.package-navbar .active {
  color: #fff;
  text-decoration: none;
  line-height: 50px;
  background: #fdc123;
  border-radius: 50px;
}
.package-navbar a {
  font-size: 10px;
  color: #fff;
  text-decoration: none;
  line-height: 50px;
  padding: 3px 10px;
}

#itinerary,
#inclusions,
#tour-cost,
#location {
  width: 100%;
  padding: 1rem 0;
}

.hero-inner {
  position: relative;
  width: 100%;
  top: 0;
  text-align: center;
  color: #fff;
  height: 430px;
  padding: 0;
}
.hero-inner figure {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}
.hero-inner figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-inner figure img.md {
  display: none;
}
.hero-inner figcaption {
  position: absolute;
  bottom: 50%;
  left: 0;
  width: 100%;
  transform: translateY(50%);
  padding: 0 1rem;
  z-index: 9;
}
.hero-inner::before {
  content: "";
  background: linear-gradient(180deg, #142553 0%, rgba(115, 115, 115, 0) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 9;
}
.hero-inner h1 {
  font-size: 32px;
  font-weight: 800;
}
.hero-inner p {
  font-size: 1rem;
}

.connect-btns {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 12;
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 10px;
}
.connect-btns .is-connect-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: inherit;
  width: 40px;
  margin: 0;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: white;
  border: #f0f0f0 1px solid;
  padding: 0;
  font-size: 20px;
  color: #142553;
}
.connect-btns .is-connect-btn:first-child {
  background-color: #3edb36;
  color: #fff;
}
.connect-btns .is-connect-btn:hover {
  color: #fff;
}
.connect-btns .is-connect-btn::after {
  background: #fdc123;
}

form.contact {
  margin-top: 2rem;
  border: 1px solid #f0f0f0;
  padding: 2rem;
  border-radius: 10px;
}
form.contact h4 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #142553;
}

.package-themes {
  margin-top: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: inherit;
  flex-direction: column;
  gap: 10px;
}
.package-themes h3 {
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  color: #142553;
}
.package-themes ul {
  width: 100%;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: inherit;
  flex-direction: row;
  font-size: 12px;
  font-weight: 600;
  color: #777;
  gap: 10px;
}
.package-themes ul li {
  padding-right: 10px;
  border-right: 1px solid #ececec;
}
.package-themes ul li:last-child {
  border: none;
}

.article-carousel .owl-nav button.owl-next,
.article-carousel .owl-nav button.owl-prev {
  width: 40px;
  height: 40px;
  background-color: #fdc123;
  border-radius: 50%;
  transition: 0.4s;
}
.article-carousel .owl-nav button.owl-next:hover,
.article-carousel .owl-nav button.owl-prev:hover {
  background-color: #142553;
}

section.blog > .link {
  color: #142553;
  margin: 0 auto;
  display: table;
}

.enquire-btn {
  position: fixed;
  top: 50%;
  right: -53px;
  z-index: 99;
  transform: rotate(-90deg) translateY(-50%);
}
.enquire-btn .btn {
  border: none;
  border-radius: 10px 10px 0 0;
  padding: 10px 15px;
}

.mt-5 {
  margin-top: 5rem;
}

.select2-container--open .select2-dropdown--below,
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 0;
  background: none;
}

.no-result {
  text-align: center;
  margin-top: 2rem;
}
.no-result img {
  height: 400px;
  margin: auto;
}
.no-result h3 {
  font-size: 24px;
  font-weight: 700;
  color: #142553;
}

@keyframes scrolldown {
  0% {
    transform-origin: 0% 0%;
    transform: scale(1, 0);
  }
  50% {
    transform-origin: 0% 0%;
    transform: scale(1, 1);
  }
  50.1% {
    transform-origin: 0% 100%;
    transform: scale(1, 1);
  }
  100% {
    transform-origin: 0% 100%;
    transform: scale(1, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
  }
}
@media only screen and (max-width: 320px) {
  .hero .item .cover .header-content h2 {
    font-size: 25px;
    line-height: 35px;
  }
}
@media only screen and (max-width: 576px) {
  .img-card .btn {
    padding: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    right: 16px;
    bottom: -13px;
    text-align: center;
    line-height: 32px;
  }
  .img-card .btn span small {
    display: none;
  }
  .pr-1,
  .pl-1 {
    padding: 0;
  }
  .hero .item .cover .container {
    width: 90%;
  }
  .no-result img {
    height: auto;
  }
}
@media only screen and (min-width: 576px) {
  .container {
    max-width: 100%;
  }
  .hero .item .cover .header-content {
    align-items: start;
    text-align: left;
    width: 70%;
  }
  .hero .item .cover .header-content .btn-group {
    display: flex;
    align-items: start;
    justify-content: inherit;
    flex-direction: row;
  }
  .hero .item .cover .header-content .btn-group .btn {
    margin-right: 10px;
  }
  .benefits,
  .poplr-destinations .col.flex,
  ul.blog-list {
    flex-direction: row;
  }
  .hotselling-pkgs .flex .col-3,
  .hotselling-pkgs .flex .col-9 {
    width: 100%;
  }
  .img-card figure.img-xl {
    height: 420px;
  }
  .img-card figure.img-sm {
    height: 190px;
  }
  ul.package-list {
    display: flex;
    align-items: start;
    justify-content: inherit;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
  }
  ul.package-list .pakage-card {
    width: 48%;
  }
  .section--title h2 {
    font-size: 40px;
    line-height: 50px;
  }
  footer .col-3,
  footer .col-9 {
    width: 100%;
  }
  footer .footer-nav {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: row;
  }
  .pakage-card figure {
    height: 300px;
  }
  .blog-highlights .col-8 {
    width: 100%;
  }
  ul.package-highlights li {
    width: auto;
    padding-right: 1rem;
  }
  .package-themes {
    flex-direction: row;
  }
  .package-themes h3,
  .package-themes ul {
    width: auto;
  }
}
@media only screen and (min-width: 768px) {
  .col-1 {
    width: 8.33%;
  }
  .col-2 {
    width: 16.66%;
  }
  .col-3 {
    width: 25%;
  }
  .col-4 {
    width: 33.33%;
  }
  .col-5 {
    width: 41.66%;
  }
  .col-6 {
    width: 50%;
  }
  .col-7 {
    width: 58.33%;
  }
  .col-8 {
    width: 66.66%;
  }
  .col-9 {
    width: 75%;
  }
  .col-10 {
    width: 83.33%;
  }
  .col-11 {
    width: 91.66%;
  }
  footer .connect {
    text-align: left;
    margin-top: 0;
  }
  footer .footer-flex {
    margin-top: 60px;
    display: flex;
    align-items: start;
    justify-content: inherit;
    flex-direction: row;
    gap: 30px;
  }
  footer .footer-flex .mail-subscribe {
    text-align: left;
  }
  footer .footer-flex .mail-subscribe h4 {
    margin: 0;
  }
  footer .footer-flex .mail-subscribe .mail-subscribe--box {
    display: flex;
    align-items: start;
    justify-content: inherit;
    flex-direction: row;
    margin-top: 10px;
  }
  footer .footer-flex .mail-subscribe .mail-subscribe--box .field {
    flex: 1;
  }
  footer .footer-flex .mail-subscribe .mail-subscribe--box .btn {
    margin: 0 0 0 24px;
    height: 50px;
  }
  footer .footer-right {
    flex: 1;
  }
  footer .footer-right .call-mail {
    display: none;
  }
  ul.count-list {
    flex-direction: row;
    margin-top: 30px;
  }
  .features ul.benefits-list {
    display: flex;
    align-items: end;
    justify-content: inherit;
    flex-direction: row;
    gap: 30px;
  }
  .features ul.benefits-list li {
    flex-direction: column;
  }
  .features ul.benefits-list li .benefits-list--desc {
    padding: 0;
    width: 100%;
    margin-top: 20px;
  }
  .pack-detail .accordion .accordion-item .accordion-content.is-itinery {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .pack-detail .accordion .accordion-item .accordion-content.is-itinery p {
    width: 80%;
    padding-right: 1rem;
  }
  .pack-detail .accordion .accordion-item .accordion-content.is-itinery figure {
    width: 20%;
  }
  .address-bar {
    flex-direction: row;
    gap: 50px;
  }
  form.enquire {
    margin-top: 0;
  }
  .payment-method img {
    width: 200px;
  }
  .contact-details .d-flex {
    flex-direction: row;
  }
  .md-modal .md-content h3 {
    margin-top: 50px;
  }
  ul.article-listing {
    flex-direction: row;
  }
  ul.article-listing li {
    width: 33.33%;
    padding: 1rem;
  }
  .pl-0 {
    padding-left: 0;
    padding-right: 1rem;
  }
  .pr-0 {
    padding-right: 0;
    padding-left: 1rem;
  }
  footer .address-box .call-mail {
    display: flex;
  }
  .package-list-main {
    flex-direction: row;
  }
  .package-list-main ul.package-list.with-cards-3 .pakage-card {
    width: 48%;
  }
  .package-list-main .sidebar-filter {
    display: block;
  }
  .package-list-main .filter-btn {
    display: none;
  }
  .package-list-main .sidebar-filter {
    width: 29%;
  }
  .package-list-main .package-list-container {
    width: 70%;
    padding-left: 1rem;
  }
  .team .team--figure {
    padding: 0 75px;
  }
  .values {
    flex-direction: row-reverse;
    align-items: center;
    margin-top: 100px;
  }
  table.highlights {
    width: 75%;
  }
  ul.package-nav {
    justify-content: flex-start;
  }
  figure.pack-detail--hero {
    height: 480px;
    width: 100%;
  }
  figure.pack-detail--hero img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  figure.pack-detail--hero img.md {
    display: block;
  }
  figure.pack-detail--hero img.sm {
    display: none;
  }
  .package-main {
    gap: 2rem;
  }
  .package-main .pack-detail {
    width: 70%;
  }
  .package-main .pack-enquiry {
    width: 30%;
    position: sticky;
    top: 120px;
  }
  .smk_accordion .accordion_in .acc_content {
    flex-direction: row;
  }
  .smk_accordion .accordion_in .acc_content .itinery-content {
    width: 70%;
  }
  .smk_accordion .accordion_in .acc_content figure {
    width: 30%;
  }
  .package-navbar ul {
    justify-content: start;
  }
  .package-navbar ul a {
    font-size: 14px;
    padding: 8px 18px;
  }
  .hero-inner {
    height: 300px;
  }
  .hero-inner figure img.md {
    display: block;
  }
  .hero-inner figure img.sm {
    display: none;
  }
  figure.pack-detail--hero {
    margin-top: 60px;
  }
  .enquiry-modal {
    width: 25%;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    height: auto;
  }
  .enquiry-modal .md-content {
    padding: 2rem 1rem;
  }
  .d-flex.package-main {
    flex-direction: row;
  }
  .d-flex.package-main .pack-detail {
    width: 60%;
  }
  .d-flex.package-main .pack-enquiry {
    width: 40%;
  }
  .d-flex {
    flex-direction: row;
  }
  #inclusions .col-6.p0:first-child {
    padding-right: 1rem;
  }
  #inclusions .col-6.p0:last-child {
    padding-left: 1rem;
  }
  .team {
    flex-direction: row;
    justify-content: space-between;
  }
  .team .team--figure {
    align-self: center;
  }
  .img-card .btn {
    bottom: -12px;
    right: 10px;
    padding: 5px 10px;
  }
}
@media only screen and (max-width: 768px) {
  .package-main .pack-detail,
  .package-main .pack-enquiry,
  table.highlights {
    width: 100%;
  }
  .mt-100 {
    margin-top: 32px;
  }
  .related-packages h2 {
    width: 60%;
  }
}
@media only screen and (min-width: 992px) {
  .container {
    max-width: 960px;
  }
  .col-1 {
    width: 8.33%;
  }
  .col-2 {
    width: 16.66%;
  }
  .col-3 {
    width: 25%;
  }
  .col-4 {
    width: 33.33%;
  }
  .col-5 {
    width: 41.66%;
  }
  .col-6 {
    width: 50%;
  }
  .col-7 {
    width: 58.33%;
  }
  .col-8 {
    width: 66.66%;
  }
  .col-9 {
    width: 75%;
  }
  .col-10 {
    width: 83.33%;
  }
  .col-11 {
    width: 91.66%;
  }
  .md-txt {
    display: none;
  }
  .lg-txt {
    display: block;
  }
  footer .flex {
    display: flex;
    align-items: start;
    justify-content: inherit;
    flex-direction: row;
  }
  footer .col-3 {
    width: 30%;
  }
  footer .col-9 {
    width: 70%;
  }
  .lg-hide {
    display: none;
  }
  .img-card .btn {
    padding: 6px 20px;
    width: auto;
    height: auto;
    border-radius: 20px;
    right: 16px;
    bottom: -13px;
    text-align: center;
    z-index: 9;
    line-height: normal;
  }
  .img-card .btn span {
    display: inline-block;
  }
  .social-links,
  .scroll-down-line {
    display: inline-block;
  }
  .about-sec .benefits {
    flex-direction: row-reverse;
  }
  .about-sec .benefits figure img {
    margin: 0;
  }
  .hotselling-carousel {
    margin-top: 0;
  }
  .contact-details .col-8 {
    width: 66.66%;
  }
  .contact-details .col-4 {
    width: 33.33%;
  }
  .section--title small {
    font-size: 20px;
  }
  .dots-pattern::before {
    right: -75px;
    top: -75px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(circle at 3px 3px, rgba(253, 191, 35, 0.2705882353) 3px, transparent 0);
    background-size: 20px 20px;
  }
  .dots-pattern.is-center::before {
    top: -75px;
    width: 150px;
    height: 150px;
  }
  .about-breif h2 {
    font-size: 40px;
  }
  .mission-box {
    margin: 100px 0;
  }
  .about-breif--txtbox {
    padding-left: 3rem;
  }
  .hero-inner {
    height: 350px;
  }
  .d-flex.package-main .pack-detail {
    width: 70%;
  }
  .d-flex.package-main .pack-enquiry {
    width: 30%;
  }
  .img-card figure.img-xl {
    height: 495px;
  }
  .img-card figure.img-sm {
    height: 240px;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  .col-1 {
    width: 8.33%;
  }
  .col-2 {
    width: 16.66%;
  }
  .col-3 {
    width: 25%;
  }
  .col-4 {
    width: 33.33%;
  }
  .col-5 {
    width: 41.66%;
  }
  .col-6 {
    width: 50%;
  }
  .col-7 {
    width: 58.33%;
  }
  .col-8 {
    width: 66.66%;
  }
  .col-9 {
    width: 75%;
  }
  .col-10 {
    width: 83.33%;
  }
  .col-11 {
    width: 91.66%;
  }
  section,
  footer {
    padding: 100px 0;
  }
  .header .flex .nav-bar .nav-items {
    display: flex;
    align-items: start;
    justify-content: inherit;
    flex-direction: row;
    gap: 15px;
    list-style: none;
  }
  .header .flex .nav-bar .nav-items li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
  }
  .header .flex .nav-bar button.nav-btn {
    display: none;
  }
  .header .flex .nav-bar button.search-btn {
    margin-left: 2rem;
  }
  .header.kerala .flex .nav-bar button.nav-btn {
    display: flex;
    align-items: center;
    justify-content: inherit;
    flex-direction: row;
    gap: 5px;
  }
  .header.kerala .flex .nav-bar button.nav-btn span {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
  }
  .hamburger-menu {
    display: none;
  }
  ul.package-list .pakage-card {
    width: 23.22%;
  }
  .blog-highlights {
    flex-direction: row;
  }
  .mobile-hide {
    display: block;
  }
  .hero .item .cover .header-content h2 {
    font-size: 48px;
    line-height: 68px;
  }
  .hero .item .cover .header-content p {
    font-size: 20px;
    line-height: 30px;
  }
  ul.benefits-list li {
    margin-top: 2rem;
  }
  .pakage-card .btn-icon {
    top: -25px;
    right: 1.5rem;
  }
  .hotselling-pkgs .flex {
    flex-direction: row;
  }
  .hotselling-pkgs .flex .col-3 {
    width: 30%;
  }
  .hotselling-pkgs .flex .col-9 {
    width: 70%;
  }
  .hero-inner {
    height: 450px;
  }
  .package-list-main ul.package-list.with-cards-3 .pakage-card {
    width: 30%;
  }
  .package-list-main .sidebar-filter {
    width: 25%;
  }
  .package-list-main .package-list-container {
    width: 75%;
    padding-left: 2rem;
  }
  figure.pack-detail--hero {
    margin-top: 20px;
  }
  .pakage-card figure {
    height: 320px;
  }
}
@media only screen and (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  .col-1 {
    width: 8.33%;
  }
  .col-2 {
    width: 16.66%;
  }
  .col-3 {
    width: 25%;
  }
  .col-4 {
    width: 33.33%;
  }
  .col-5 {
    width: 41.66%;
  }
  .col-6 {
    width: 50%;
  }
  .col-7 {
    width: 58.33%;
  }
  .col-8 {
    width: 66.66%;
  }
  .col-9 {
    width: 75%;
  }
  .col-10 {
    width: 83.33%;
  }
  .col-11 {
    width: 91.66%;
  }
  .header .flex .nav-bar .nav-items li a {
    font-size: 13px;
  }
  ul.article-listing li {
    width: 25%;
  }
  .hero-inner {
    height: 500px;
  }
  .pakage-card figure {
    height: 380px;
  }
  .img-card figure.img-xl {
    height: 680px;
  }
  .img-card figure.img-sm {
    height: 330px;
  }
}/*# sourceMappingURL=app.css.map */