@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../fonts/fa-solid-900.woff2") format("woff2"),
       url("../fonts/fa-solid-900.ttf") format("truetype");
}
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../fonts/fa-regular-400.woff2") format("woff2"),
       url("../fonts/fa-regular-400.ttf") format("truetype");
}
@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../fonts/fa-brands-400.woff2") format("woff2"),
       url("../fonts/fa-brands-400.ttf") format("truetype");
}
@font-face {
    font-family: 'nunito';
    src: url('../fonts/nunito.ttf');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'BricolageGrotesque';
    src: url('../fonts/BricolageGrotesque.ttf');
   

}

/* new Travels */

::-moz-selection {
    /* Code for Firefox */
    color: white;
    background: var(--primarycolor)
}

::selection {
    color: rgb(255, 255, 255);
    background: var(--primarycolor);
}

body {
    font-family: "Sansation", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
    font-size: 15px;
}

a {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

/* ===================
Date picker css 
====================== */
.ui-datepicker {
    z-index: 50 !important;
    font-family: "Sansation", sans-serif;
}

.ui-datepicker .ui-datepicker-header .ui-corner-all>span,
.ui-datepicker .ui-datepicker-header .ui-state-hover>span {
    display: none;
}

.ui-datepicker.ui-widget-content {
    border: none;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

.ui-datepicker .ui-datepicker-header .ui-corner-all,
.ui-datepicker .ui-datepicker-header .ui-state-hover {
    cursor: pointer;
    border: 0;
    background: none;
    font-weight: 500;
    top: 3px;
}

.ui-datepicker .ui-datepicker-prev:after {
    content: url(../images/prev.png);
    left: 5px;
    top: 4px;
    position: absolute;
    font-family: "Font Awesome 6 Pro";
}

.ui-datepicker .ui-datepicker-next:after {
    content: url(../images/next.png);
    right: 5px;
    top: 4px;
    position: absolute;
    font-family: "Font Awesome 6 Pro";
}

.ui-datepicker .ui-widget-header {
    background: #333;
    color: white;
    border: none;
    border-radius: 8px;
}

.ui-datepicker td span,
.ui-datepicker td a {
    display: block;
    padding: 0.2em;
    text-align: center;
    text-decoration: none;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: none;
    border-radius: 8px;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: none;
    background: #013f7e88;
    color: white;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    background: var(--primarycolor);
    color: white;
}

/* swap icon img */
.swap-image img {
    -moz-transition: all .5s linear;
    -webkit-transition: all .5s linear;
    transition: all .5s linear;
}

.swap-image img.swapani {
    -moz-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

/* ---------------------sidebar------------------------------------ */

#sidenavebar h3 {
    color: #fff;
    font-size: 13px;
    margin: 10px 0;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

#sidenavebar {
    background: #f9f9f9;
    width: 190px;
    position: fixed;
    top: 215px;
    z-index: 999;
    right: -190px;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.5);
    border-radius: 0 0 0 15px;
    transition: 0.5s;
}

#sidenavebar:hover {
    right: 0px;
}

#sidenavebar ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

#sidenavebar h2 {
    background: var(--primarycolor);
    color: #fff;
    font-size: 15px;
    line-height: 50px;
    padding: 0;
    text-align: center;
    margin-top: 0;
    font-weight: 500;
    text-transform: capitalize;
}

#sidenavebar h2 span {
    background-color: var(--primarycolor);
    display: block;
    height: 50px;
    position: absolute;
    left: -50px;
    top: 0;
    width: 50px;
    border-radius: 25px 0px 0px 25px;
    font-size: 22px;
    color: #fff;
    text-align: center;
}

#sidenavebar h2 span i {
    position: absolute;
    top: 29%;
    left: 30%;
}

.colors {
    list-style: none;
    margin: 0 0px 10px 0;
    overflow: hidden;
}

.colors li {
    margin: 6px 3px 0 3px;
}

.colors li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 5px 10px;
    color: #1b1d21;
}

.colors li a:hover {
    background-color: var(--primarycolor);
    color: white;
}

@media only screen and (max-width: 767px) {
    #sidenavebar {
        display: none;
    }
}


/* scrollUp */
.scroll-top {
    width: 35px;
    height: 35px;
    line-height: 35px;
    position: fixed;
    bottom: 7%;
    right: 22px;
    border-radius: 50%;
    z-index: 99;
    color: white;
    text-align: center;
    cursor: pointer;
    background: var(--secondarycolor);
    transition: all 1s ease 0s;
    border: none;
    border: 1px solid white;
}

.scroll-top.open {
    bottom: 30px;
}

.scroll-top::after {
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

/* new Travels end */

.datepicker {
    border: none;
    color: var(--placeholder-color);
}

.form-select:focus {
    box-shadow: unset;
}

.errorMessageFixed {
    color: red;
    font-size: 12px;
}


#nextDates div.dateday {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 64px;
    height: 43px;
    border: 1px solid rgba(16, 16, 16, .07);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 8px;
    cursor: pointer;
    background-color: white;
}

#nextDates div.dateday div:nth-child(1) {
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: -.32px;
    color: #101010;
}

#nextDates div.dateday div:nth-child(2) {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0;
    text-align: left;
    color: #101010;
}

#nextDates div.dateday:hover {
    background-color: var(--primarycolor);
}

#nextDates div.dateday:hover div {
    color: white;
}

/* Right label (Onward Trip) */
.header-right a{
    color: #ffffff !important;
    border-radius: 4px;
    margin: 0px 10px;
    background-color: var(--primarycolor);
}

/* About-us */
.inline-title {
    display: inline;
}

.ourroutecard h4 {
    font-size: 14px;
    font-weight: 700;
}

.hotroutes-wrapper {
    overflow: hidden;
    width: 100%;
}

.hotroutes-list {
    position: relative;
    display: flex;
    padding: 17px 0;
    animation: marquee 15s linear infinite;
    transition: 0.3s;
}

.hotroutes-list:hover {
    animation-play-state: paused;
}

.ourroutecard {
    width: 260px;
    min-width: 260px;
    height: 120px;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 400;
    padding: 38px;
    color: black;
    font-size: 0.7rem;
    line-height: 14px;
    letter-spacing: 1.2px;
    background-image: url(../images/kss_routes.png);
    background-size: 260px 120px; 
    background-position: center;
    background-repeat: no-repeat;
    border: 0;
    overflow: hidden;
    cursor: pointer;
    align-items: center;
    display: flex;
    justify-content: center;
}
.ourroutecard{
  -webkit-animation: upDownMover 3s ease-in-out infinite;
  animation: upDownMover 3s ease-in-out infinite;
}
@keyframes upDownMover {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px); /* move up */
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes upDownMover {
  0% {
    -webkit-transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}

@keyframes marquee {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(50%);
    }
}
.route-deerimg{
    position: absolute;
    bottom: -97px;
    z-index: 999;
    position: absolute;
    left: -88px;
}
/* stop animation when no scroll needed */
.no-scroll {
    animation: none !important;
    transform: translateX(0) !important;
}

/* center routes when stopped */
.main-menu .navigation li.menu-item-has-children .dropdown-btn {
    display: none;
}

/*=============================
	03. Mobile Menu
===============================*/
.nav-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    display: none;
    color: #fff;
    margin-right: 30px;
    top: 15px;
}

.mobile-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    z-index: 99;
    border-radius: 0px;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86)e;
    -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transform: translateX(-101%);
    -ms-transform: translateX(-101%);
    transform: translateX(-101%);
}

/* .mobile-menu .navbar-collapse {
    display: block !important;
} */

.mobile-menu .nav-logo {
    position: relative;
    padding: 30px 25px;
    text-align: left;
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .navigation li.current>a:before {
    height: 100%;
}

.menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.5);
}

.mobile-menu-visible .menu-backdrop {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
    padding: 0px 0px;
    z-index: 5;
    box-shadow: -9px 0 14px 0px rgb(0 0 0 / 6%);
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .close-btn {
    position: absolute;
    right: 10px;
    top: 11px;
    line-height: 30px;
    width: 35px;
    text-align: center;
    font-size: 20px;
    color: #292b37;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    float: none;
    margin: 0;
    padding: 0;
}

.mobile-menu .navigation ul {
    padding: 0;
    margin: 0;
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-top: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .navigation:last-child {
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .navigation li>ul>li:first-child {
    border-top: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .navigation li>a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 60px 10px 25px;
    font-size: 14px;
    font-weight: 700;
    color: #636363;
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
}

.mobile-menu .navigation li ul li>a {
    margin-left: 20px;
    text-transform: uppercase;
}

.mobile-menu .navigation li ul li ul li a {
    margin-left: 40px;
}

.mobile-menu .navigation li ul li ul li ul li a {
    margin-left: 60px;
}

.mobile-menu .navigation li>a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .navigation li.menu-item-has-children .dropdown-btn {
    position: absolute;
    right: 15px;
    top: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    color: #fff;
    background: var(--primarycolor);
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 5;
}

.mobile-menu .navigation li.menu-item-has-children .dropdown-btn i {
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .navigation li.menu-item-has-children .dropdown-btn.open i {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    color: var(--primarycolor);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
    display: none;
}

.mobile-menu .social-links ul {
    display: flex;
    position: relative;
    text-align: center;
    padding: 30px 20px 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.mobile-menu .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 6px 10px;
}

.mobile-menu .social-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: relative;
    line-height: 32px;
    font-size: 16px;
    color: var(--secondarycolor);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid #000;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.mobile-menu .social-links li a:hover {
    border-color: var(--primarycolor);
    background: var(--primarycolor);
    color: #fff;
}

/* Responsive */

@media (max-width: 768px) {

    .my-carousel .owl-nav .owl-prev {
        bottom: 65px !important;
        left: -78px !important;
    }

}

@media (max-width: 426px) {

    h6 {
        font-size: 14px;
    }

}

@media (max-width: 376px) {
      .my-carousel .owl-nav .owl-prev {
        bottom: 71px !important;
    }

}

@media (min-width: 992px) {
    .col-lg-1.custom-col {
        flex: 0 0 4%;
        max-width: 4%;
    }
}

/* ================================= KSS TRAVELS ========================================================= */

body {
    overflow-x: hidden;
    font-family: "nunito";

}

:root {
    --placeholder-color: #000;
    --white-color: #fff;
    --black-color: #000;
    --head-color: #212529;
    --primarycolor:  #01255c;
    --secondarycolor: #d4a65a;
    --tertiarycolor: #ff8e01;
    --heading-font: "BricolageGrotesque";
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}
h3{
    font-family: var( --heading-font);
    font-weight: 700;
    font-size: 37px;
}
p{
    color: var(--black-color);
    font-size: 16px;
    text-align: justify;
}
a:hover {
    color: var(--secondarycolor);
}
/* Menu */
.logo{
    position: absolute;
    top: -54px;
}
.top-menu-bg{
    background: var(--secondarycolor);
    padding: 5px;
    border-radius: 0 0 20px 20px;
}
/* Header */

.header-top-left {
    font-size: 16px;
} 
.header-top-left a{
    color: var(--white-color);
}
 
.header-top-menu .list-wrap {
    display: flex;
    align-items: center;
    gap: 22px;
}

.header-top-menu .list-wrap li {
    position: relative;
    line-height: 1;
}

.header-top-menu .list-wrap li::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 12px;
    background: rgb(0, 0, 0);
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
}

.header-top-menu .list-wrap li:last-child::before {
    display: none;
}

/* Nav Bar */
/* Shadow for Next Page */
#sticky-header {
    box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.3);
}

.header-one #sticky-header {
    box-shadow: none;
}
.menu-area .mobile-nav-toggler {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10%;
    font-size: 23px;
    display: none;
}
.menu-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.logo img {
    width: 187px;
    height: auto;
}

.navbar-wrap {
    display: flex;
    flex-grow: 1;
    justify-content: center;
}

.navbar-wrap ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 15px;
    background: none;
    border-radius: unset;
}

.navbar-wrap>ul>li {
    list-style: none;
    display: block;
    position: relative;
    margin: 0px 0px 0px 25px;
}

.navbar-wrap ul li:last-child {
    margin-right: 0;
}

.navbar-wrap ul li a {
    font-size: 16px;
    color: var(--black-color);
    padding: 9px 17px;
    display: block;
    line-height: 1;
    position: relative;
    z-index: 1;
    font-weight: 600;
}
.navbar-wrap>ul>li>a::after {
    left: 10px;
    margin-left: 10px;
}

.navbar-wrap ul li .sub-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    min-width: 230px;
    border: 1px solid #d9d9d9;
    border-radius: 0px 0px 18px 18px !important;
    background: var(--secondarycolor);
    margin: 0 0;
    transform: scale(1, 0);
    transform-origin: 0 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    -moz-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    padding: 5px 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
}

.navbar-wrap ul li .sub-menu .sub-menu {
    right: auto;
    left: 100%;
    top: 0;
}

.navbar-wrap ul li .sub-menu li {
    margin-left: 0;
    text-align: left;
    display: block;
}

.navbar-wrap ul li .sub-menu li a {
    padding: 9px 11px 9px 11px;
    line-height: 1.4;
    font-weight: 500;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.navbar-wrap ul li .sub-menu li a::before {
    content: "";
    display: block;
    width: 0;
    height: 7px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    transition: .3s ease-in-out;
}

.navbar-wrap ul li .sub-menu>li.active>a::before,
.navbar-wrap ul li .sub-menu li a:hover::before {
    width: 7px;
    margin-right: 8px;
}

.navbar-wrap ul li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.navbar-wrap>ul>li.active>a::after,
.navbar-wrap>ul>li.active>a::before,
.navbar-wrap>ul>li:hover>a::after,
.navbar-wrap>ul>li:hover>a::before {
    opacity: 1;
    margin-left: 0;
}

.header-one .logoimg{
    width: 183px;
    height: auto;
}
.fas {
    color: var(--black-color);
}
.fa-angle-down:before{
    color: white;
}
/* MGS - Home Section */

.boxed_wrapper {
    background: url(../images/kss_homebg.png) bottom center / 100% auto no-repeat;
    overflow-x: hidden;
}
.hero-title h1{
    font-family: var(--heading-font);
    font-size: 60px;
    font-weight: 800;
}
.homebusimg img{
    height: 372px;
}
.homebusimg{
    position: absolute;
    right: -734px;
    top: 9px;
}
/* SEARCH BOX */

.s-box {
    position: relative;
    padding: 15px;
    border-radius: 10px;
    max-width: 350px;
}

.s-box .form-content-in {
    border-radius: 5px;
}

.s-box .swap {
    width: 40px;
    height: 40px;
    background-color: var(--primarycolor);
    border-radius: 50px;
    display: grid;
    place-items: center;
    z-index: 1;
    top: 37px;
    right: 56px;
    font-size: 11px;
    transform: rotate(90deg);
}

.s-box .form-group {
    position: relative;
}

.s-box .form-group label.form-label {
    position: absolute;
    background-color: white;
    font-size: 12px;
    top: -9px;
    left: 18px;
    padding: 0px 11px;
    margin-bottom: 0px;
    color: rgb(0, 0, 0);
    z-index: 1;
}

.s-box .form-group .input-box {
    border-radius: 8px;
    border: 1px solid rgba(16, 16, 16, .07);
    background-color: white;
    height: 100%;
}

.s-box .form-group .input-box:has(.calendar) {
    padding-right: 0px;
}

.s-box .form-group .input-box .calendar {
    padding-right: 5px;
}

.s-box .form-group select:focus-visible,
.s-box .form-group input:focus-visible {
    outline: 0px;
}

.s-box .form-group .select2-selection,
.s-box .form-group input {
    border: 0px;
    border-radius: 8px;
    width: 100%;
    font-size: 13px;
    color: rgb(0, 0, 0);
    -webkit-padding: 12px 20px 12px 40px;
    /* Chrome, Opera, Safari */
    -moz-padding: 12px 20px 12px 40px;
    /* Firefox 2+ */
    -ms-padding: 12px 20px 12px 40px;
    /* IE 10+ */
    padding: 12px 20px 12px 32px;
    /* Standard syntax */
    -webkit-background: #ffffff;
    -ms-background: #ffffff;
    background: #ffffff;
    height: 41px;
}

.s-box .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 19px;
    padding-left: 5px;
}

.s-box .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 8px;
}

.select2-container--default .select2-results>.select2-results__options li {
    font-size: 13px;
}

.s-box .form-group input.hoverbtn {
    padding: 10px 15px;
    font-size: 16px;
    transition: 0.3s;
    background-color: var(--primarycolor);
    letter-spacing: 3px;
    color: rgb(255, 255, 255);
    border-radius: 4px;
    line-height: 0px;
}

.s-box .form-group input.hoverbtn:hover {
    background-color: var(--secondarycolor);
}

.s-box .form-group input.hoverbtn:active {
    transform: scale(0.9);
}

.s-box .form-group svg {
    position: absolute;
    top: 12px;
    left: 12px;
}
.searchbus {
    font-size: 15px;
    margin-bottom: 0px;
    border-right: 1px solid var(--primarycolor);
}
.custom-col {
    position: absolute;
    top: 26px;
    left: 91px;
}

.searchboxbg{
    height: 430px;
    width: 300px;
    width: auto;
    position: relative;
    top: 6px;
    margin: 0 auto 52px;
}
.form-content-in {
  position: relative;
  z-index: 1;
  overflow: visible; 
}

.form-content-in::before {
  content: url(../images/kss_searchbg.png);
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.features{
    overflow-x: hidden;
    overflow-y: hidden;
}

.owl-prev{
    display: none !important;
}
.owl-next{
    display: none !important;
}
.features  .my-carousel .item img {
    height: 100%;
    width: 260px !important;
    margin: 23px;
    background-color: var(--white-color);
    border-radius: 7px;
}

.features .owl-carousel .owl-item{
    background: #102C66;
    padding: 0px;
    border-radius: 20px;
}

.features p{
    text-align: justify;
}
.owl-prev,
.owl-next {
    display: none !important;
}

.features .owl-carousel .owl-item {
    background: #102C66;
}

#amenities .item {
    background: #102C66;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}

#amenities img {
    width: 260px;
    margin: 20px auto;
}
#amenities .slick-slide {
    width: 100% !important;
}

#amenities .item {
    width: 100%;
}
.features .my-carousel .item img,
#amenities img {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
}

/* Features carousel */
/* Layout */
.rtl-slider-flex {
  display: flex;
  width: 100%;
  gap: 23px; 
}

/* LEFT SIDE WIDTH */
.rtl-slider-nav {
  width: 40%;
}

/* NAV ITEM */
.nav-item {
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: var(--secondarycolor);
  transition: 0.3s;
}

/* FLEX instead of bootstrap row (prevents wrapping) */
.nav-item .row {
  flex-wrap: nowrap;  
}

/* IMAGE */
.nav-item img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

/* TEXT */
.nav-item h6 {
  margin: 0;
  font-size: 14px;
  white-space: nowrap;   
  font-weight : 700;
}

/* ACTIVE CENTER ITEM */
.slick-slide.slick-current > div > .nav-item {
  background: var(--primarycolor);
  color: #fff;
  transform: scale(1.05);
}
.rtl-slider-nav .nav-item.slick-center .img-wrap {
  background: #fff;
  padding: 3px;
  border-radius: 50%;
}
/* RIGHT SIDE */
.rtl-slider {
  width: 53%;
}

/* MAIN CARD */
.main-item {
  background: var(--secondarycolor);
  border-radius: 10px;
  padding: 11px;
  text-align: center;
}

/* IMAGE */
.main-item img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

/* TITLE */
.main-item h6 {
  margin-top: 10px;
  font-size: 16px;
  font-weight : 700;
}

/* ACTIVE RIGHT SLIDE */
.rtl-slider-nav .slick-slide.slick-current {
  background: var(--primarycolor);
  color: #fff;
}
/* ONLY affect slick slider */
.rtl-slider-flex .slick-slide {
  outline: none;
}

.rtl-slider-flex .nav-item {
  padding: 10px;
}

.rtl-slider-flex .img-wrap {
  width: 50px;
  height: 50px;
}
/* Facilities */
.facilities{
    overflow-x: hidden;
}
.facility-card{
    border-radius: 20px;
    text-align: center;
    background-image: url("../images/kss_facilitiescardbg.webp"); 
    padding: 106px 80px 94px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 70px 25px 10px;
    position: relative;
    transition: .8s ease;
    z-index: 1;
}
.facility-icon {
    background-image: url(../images/kss_facilitiescloud.png);
    transition: .8s ease;
    top: -29px;
    left: -45px;
    z-index: 1;
    width: 215px;
    height: 136px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1;
    font-size: 44px;
    font-weight: 500;
    position: absolute;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-size: 100% 100%;
    font-family: "January Night";
    background-repeat: no-repeat;
    background-position: center center;
}
.facility-icon img{
    height: 70px; 
    width: 70px;
}
.facility-title {
    margin: 10px 0;
    color: var(--primarycolor);
    font-size: 20px;
    font-weight: 700;
}
.facility-card p {
    margin: 0;
    transition: .8s ease;
}
.section-text {
    line-height: 1.7;
    word-spacing: 2px;
}
.facilities h4{
    font-size: 20px;
    font-weight: 600;
    font-family: var(--heading-font);
}

.facilities p{
    text-align: justify;
}

.facilitiesimg{
     width:100%;
     height:auto;
     display:block;
     max-width: 936px;
     margin-top: -140px;
     margin-left: 1025px;
     display: inline-block;
}
.facilitiesrock{
    position: absolute;
    z-index: 1;
    left: -50px;
    right: -50px;
    bottom: 0px;
}
.facilitiesrock img{
    height: auto;
    max-width: 100%;
}
.facilitiesbusimg{
    position: absolute;
    bottom: 34px;
    z-index: 999;
    right: 62px;
}
 .facilitiesbusimg img{
        width: 750px;
        height : auto;
 }
/* AMENITIES*/
.ame-bg{
    background-color: var(--primarycolor);
    border-radius: 20px;
    padding: 20px 0px;
}
.ame-title h6{
    color: white;
    font-size: 20px;
    font-weight: 700;
    padding-top: 22px;
}
.ame-bg img{
    height: 240px;
    width: 240px !important;
    background: var(--secondarycolor);
    border-radius: 10px;
}
#amenities-images .owl-stage {
  display: flex;
}

#amenities-images .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* ABOUT US */
.about-card img{
     max-width: 100%;
     height: auto;
}
.about-title{
    background: var(--secondarycolor);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    color: #fff;
    font-size: 1.125rem;
    display: inline-block;
    margin-bottom: 20px;
}
.section-highlight{
    text-transform: uppercase;
    font-size: 44px;
    line-height: 1.4;
    font-weight: 800 !important;
    color: var(--primarycolor);
    font-family: var(--heading-font);
}
.about-brown{
    color: var(--secondarycolor);
}
.aboutus{
    overflow-x: hidden;
    overflow-y: hidden;
}
.owl-dots{
    padding-top: 19px !important;
}
/* TRAVEL GUIDELINES */
.travel-tips{
    overflow-x: hidden;
    overflow-y: hidden;
}
.tip-icon img{
    width: 80px;
    height: auto;
}
.tips-card{
    padding: 15px;
}
.travel-tips h4{
    font-size: 20px;
    font-weight: 600;
    font-family: var(--heading-font);
    margin: 10px 0;
}
.tip-padding{
   padding: 14px 24px 13px 69px;
}
.text-justify{
    text-align: justify;
}
.tips-card {
 position: relative;
    padding: 17px 26px;
    border-radius: 18px;
    height: 100%;
    padding: 25px;
}

/* soft circular glow INSIDE each card only */
.tips-card::before {
    content: "";
    position: absolute;
    left: -11px;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    height: 160px;
    background: var(--secondarycolor);
    border-radius: 16%;
    z-index: 0;
    border: 12px solid #ffffff;
}
/* icon circle */
.tip-icon {
  position: relative;
  z-index: 1;
}


/* text */
.tips-card h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
}

.tips-card p {
  margin-top: 6px;
  font-size: 14px;
  color: #000000;
  line-height: 1.6;
}

/* GALLERY */
.gallery{
    overflow-x: hidden;
}
.swiper {
      width: 100%;
      padding-top: 50px;
      padding-bottom: 50px;
      overflow: visible !important;
    }

    .swiper-slide {
      background-position: center;
      background-size: cover;
      width: 40% !important;
      height: auto;
      
    }

    .swiper-slide img {
      display: block;
      width: 100%;
    }
   .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal{
    display: none !important;
   }
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #102c66 !important;
}
.owl-theme .owl-dots .owl-dot span {
    background: #cccccc !important;
}

.amenity p{
    text-align: justify;
}
.amenity{
    overflow-x: hidden;
    overflow-y: hidden;
}
/* FOOTER */
 .footer{
    background-color: var(--secondarycolor);
 }
 .footer-margin img{
    width: auto;        
    max-width: 100%;   
    height: auto;
 }
 
.footer-bar li {
    list-style: none;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.1px;
    line-height: 2.1;
    text-align: justify;
}

.widget-title {
    color: var(--white-color);
    font-size: 24px;
    font-weight: 600;
}

.footer-bar a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.footer-text {
    padding: 10px 0px;
    list-style: none;
    color: var(--white-color);

}

.footer-text a {
    color: var(--white-color);
}

.footer-wave {
    margin-bottom: -10px;
}

.footercustom-path {
    stop-color: var(--primarycolor);
}


.copy-right {
    text-align: center;
    border-top: 1px solid #fff;
    background-color: var(--primarycolor);
}

.footer-list {
    width: 7px;
}

.routes-mob {
    position: relative;
}

.routes-mob-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

.inline-title {
    display: inline;
    font-size: 15px;
    font-weight: 800;
}

.getin-contact h3 {
    color: var(--white-color);
    font-size: 30px;
    font-weight: 600;
}

.footer-contact li {
    list-style: none;
    color: var(--white-color);
}

.footer-contact a {
    list-style: none;
    color: var(--white-color);
}

.footer-appdownload {
    padding: 10px;
    background-color: #dfdfdf8f;
    backdrop-filter: blur(2px);
    border-radius: 7px;
    border: 2px solid #ffffff;
}

.download-text {
    color: var(--black-color);
    font-size: 14px;
    font-family: unset;
}


.copy-right{
    color: rgb(255, 255, 255) !important;
}
.footer-margin{
    overflow-x: hidden;
    bottom: -89px;
}
/* MEDIA Query */
@media (max-width: 1550px) { 
     .facilitiesbusimg img{
        width: 744px;
        height: auto;
     }
}

/* // `xxl` applies to x-large devices (large desktops, less than 1400px) */
@media (max-width: 1400px) { 
 .navbar-wrap>ul>li {
        margin: 0px 21px;
    }
 #features h6 {
    font-size: 16px;
    }
    .features .my-carousel .item img {
    width: 260px !important;
   }
   .facilitiesimg{
    margin-left: 897px;
   }
   .ame-bg img{
    height: 220px;
    width: 220px !important;
   }
   .route-deerimg{
    left: -68px;
    height: 130px;
    bottom: -77px;
   }
   .footer-margin{
    bottom: -57px;
   }
   .homebusimg img{
    height: 312px;
}
   .homebusimg{
    position: absolute;
    right: -702px;
    top: 83px;
}
.facilitiesbusimg img {
        width: 685px;
}
 }
 @media (max-width: 1300px) { 
    .hero-title h1 {
    font-size: 54px !important;
    }
     .section-highlight{
    font-size: 44px;
    }
    .facilitiesimg {
        margin-left: 802px;
    }
    .ame-bg img{
    height: 210px;
    width: 210px !important;
   }
   .homebusimg img{
    height: 286px;
}
   .homebusimg{
    position: absolute;
    right: -693px;
    top: 101px;
}
.facilitiesbusimg img {
        width: 639px;
    }
    .facilitiesbusimg {
        right: 46px;
    }
}
 
/* // `xl` applies to large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) { 
    .navbar-wrap>ul>li {
        margin: 0px 10px;
    }
    .s-box .form-group input.hoverbtn {
        font-size: 12px !important;
    }
    .facilitiesbusimg img {
        width: 600px;
    }
        .facilitiesbusimg {
        right: 38px;
        bottom: 18px;
    }
    .features .my-carousel .item img {
    width: 139px !important;
    padding: 7px;
    }
    .hero-title h1 {
        font-size: 50px !important;
    }
    .tip-padding {
    padding: 10px 24px 7px 64px;
}
.tips-card::before {
    width: 185px;
    height: 185px;
}
.tips-card {
    padding: 15px 26px;
 }
 .tip-icon img {
    width: 62px;
 }
 .tips-card::before {
        width: 135px;
        height: 135px;
    }
    .logo {
    top: -21px;
}
.header-one .logoimg {
    width: 151px;
}
.facilitiesimg {
        margin-left: 693px;
    }
      .ame-bg img {
        height: 180px;
        width: 180px !important;
    }
    .navbar-wrap ul li a{
        padding : 14px 9px;
    }
    .logo img {
    width: 145px;
    }
    .footer-margin {
        bottom: -32px;
    }
   .homebusimg img{
    height: 295px;
    }
   .homebusimg{
    position: absolute;
    right: -528px;
    top: 109px;
    }
}
 @media (max-width: 1099.98px) { 
    .hero-title h1 {
        font-size: 46px !important;
    }
      .facilitiesimg {
        margin-left: 590px;
    }
    .facilitiesbusimg img {
        width: 544px;
    }
    .facilitiesbusimg {
        right: 26px;
    }
 }
/* // `lg` applies to medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
   .logo{
       position: static;
    }
    .form-content-in::before{
        top: 59%;
    }
    .menu-area .mobile-nav-toggler {
        display: block;
    }
    .s-box .form-content-in {
        padding: 0 !important;
    }
  
    .s-box .swap {
        position: absolute;
        transform: rotate(90deg);
        top: 48px;
    }
    
    #features h6 {
        font-size: 15px;
    }
    .facilitiesbusimg img {
        width: 497px;
    }
    .facilitiesbusimg {
        right: 26px;
    }
    .tip-icon img {
    width: 55px;
    }
    .tips-card::before {
        width: 135px;
        height: 135px;
    }
    .custom-col{
        top: -22px;
        left: 10px;
    }
    .searchboxbg{
        top: 21px;
    }
    .section-highlight {
        font-size: 2rem;
    }
    .facilitiesimg {
        margin-left: 496px;
    }
    .footer-margin {
        bottom: -22px;
    }
    .homebusimg img{
    height: 227px;
}
   .homebusimg{
    position: absolute;
    right: -440px;
    top: 175px;
}
}
@media (max-width: 899.98px) { 
    .homebusimg {
        position: absolute;
        right: -422px;
        top: 210px;
    }
    .homebusimg img {
        height: 199px;
    }
    .facilitiesbusimg img {
        width: 410px;
    }
}
/* // `md` applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) { 
    .section-highlight {
        font-size: 30px;
    }
 .s-box .form-content-in {
        padding: 0 !important;
    }
    .hero-title h1 {
        font-size: 35px !important;
    }
    .amenity {
        margin-bottom: 28px;
    }
    .tips-card::before {
        width: 155px;
        height: 155px;
    }
    .tip-icon img {
        width: 70px;
    }
    .searchboxbg {
        position: static;
    }
    .s-box{
        margin: 0 auto;
        top: 32px;
    }
    .facilitiesimg {
        margin-left: 359px;
    }
    .footer-margin {
        bottom: -16px;
    }
    .homebusimg {
        position: absolute;
        right: -443px;
        top: 395px;
        z-index: 1;
    }
    .homebusimg img {
        height: 162px;
    }
    .facilitiesbusimg img {
        width: 377px;
    }
 }
 @media (max-width: 700.98px) { 
    .homebusimg {
        position: absolute;
        right: -352px;
        top: 409px;
        z-index: 1;
    }
    .homebusimg img {
        height: 154px;
    }
    .facilitiesbusimg img {
        width: 303px;
    }
    .facility-card{
        padding: 84px 61px 52px;
    }
 }

/* // `sm` applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) { 
    .searchboxbg {
        left: 82px;
    }
    .form-content-in::before {
        top: 56%;
    }
    .s-box .form-content-in {
        padding: 0px !important;
    }

    .s-box .form-group {
        margin-bottom: 16px !important;
    }
    .amenities-carousel .owl-carousel::after {
        width: 65px;
        height: 65px;
        right: -146px;
        top: 23%;
    }
     .amenities-carousel .owl-carousel::before {
        width: 65px;
        height: 65px;
        left: -84px;
        top: 23%;
    }
        .hero-title h1 {
        font-size: 29px !important;
    }
        .amenity {
        margin-bottom: 8px;
    }
    .amenities .owl-carousel .owl-item img {
           height: 89px;
           width: auto;
    }
    .s-box {
        top: 44px;
    }
        .facilitiesimg {
        margin-left: 262px;
    }
    .homebusimg {
        position: absolute;
        right: -270px;
        top: 433px;
        z-index: 1;
    }
    .homebusimg img {
        height: 141px;
    }
    .facilitiesbusimg img {
        width: 270px;
    }
    #sticky-header{
        background: linear-gradient(178deg, #d4a65a, #d4a65a00);
    }
    .facility-card{
        margin: 22px 25px 10px;
    }
}

@media (max-width: 525.98px) {
    .s-box {
        top: 10px;
    }
    .searchboxbg {
    height: 387px;
    }
    .section-highlight {
        font-size: 26px;
    }
    .rtl-slider{
        width: 42%;
    }
    .main-item img{
        width: 145px;
    }
    .rtl-slider-nav{
        width: 50%;
    }
    .homebusimg {
        position: absolute;
        right: -230px;
        top: 393px;
        z-index: 1;
    }
    .homebusimg img {
        height: 141px;
    }
    .facilitiesbusimg img {
        width: 248px;
    }
    .facilitiesbusimg{
        bottom: 13px;
    }
    .form-content-in::before {
        top: 56%;
    }
}

@media (max-width: 480.98px) { 
.tip-padding {
        padding: 10px 18px 10px 55px;
    }
}
@media (max-width: 460.98px) { 
.tip-padding {
        padding: 0px 18px 0px 55px;
    }
        .tips-card::before {
        width: 160px;
        height: 160px;
    }
   .ame-bg img {
        height: 170px;
        width: 170px !important;
    }
    .homebusimg {
        position: absolute;
        right: -212px;
        top: 430px;
        z-index: 1;
    }
        .homebusimg img {
        height: 141px;
    }
    .facilitiesbusimg img {
        width: 213px;
    }
    .facilitiesbusimg{
        bottom: 13px;
    }
}
/* //  ( less than 426px) */
@media (max-width: 426.98px) { 
    .s-box {
        top: -5px;
    }
     .s-box .swap {
         top: 81px;
        }
 
    .logo img {
        width: 180px;
    }
    
    .s-box {
        padding: 0px;
    }

    .s-box .form-content-in {
        padding-top: 34px !important;
        padding-bottom: 34px !important;
    }
    
    .amenities-carousel .owl-carousel::after {
        width: 61px;
        height: 61px;
        right: -142px;
        top: 23%;
    }

    .amenities-carousel .owl-carousel::before {
        width: 61px;
        height: 61px;
        left: -87px;
        top: 23%;
    }
    .amenity {
        margin-bottom: 0px;
    }
        .tip-icon img {
        width: 67px;
    }
    .ame-bg img {
        height: 150px;
        width: 150px !important;
    }
   .footer-margin {
        bottom: -11px;
    }
    .homebusimg {
        position: absolute;
        right: -161px;
        top: 418px;
        z-index: 1;
    }
    .homebusimg img {
        height: 155px;
    }
    .facilitiesbusimg img {
        width: 161px;
    }
    .facilitiesbusimg{
        bottom: 13px;
    }
    .form-content-in::before {
        top: 55%;
    }
}

/* //  ( less than 376px) */
@media (max-width: 376.98px) { 
    .ame-bg img {
        height: 140px;
        width: 140px !important;
    }
    .ame-title h6{
        font-size: 16px;
    }
    .logo img {
        width: 180px;
    }
    
    .s-box {
        padding: 0px;
    }
    .tip-padding {
        padding: 0px 12px 0px 59px;
    }
    .tip-icon img {
        width: 60px;
    }
    .tips-card h4 {
        font-size: 18px;
    }
    #nextDates div.dateday{
        min-width: 50px;
    }
}

/* //  ( less than 320px) */
@media (max-width: 320.98px) { 

    .logo img {
        width: 180px;
    }
    
    .s-box {
        padding: 0px;
    }

}
/* HEIGHT */
@media (max-height: 570px) {
    .hero-title h1{
        padding: 16px !important;
    }
    .searchboxbg {
    height: 408px;
    top: -7px;
    }
}