@import url('https://fonts.googleapis.com/css2?family=Pliant:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --default-color: #ffffff;
    --primary-color: #0085c9;
    --secondary-color: #bdf906;
    --title-color: #000000;
    --light-color:#f8f8f8;
}

html{
    font-size: 10px;
    scroll-behavior: smooth;
}

body{
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #232323;
    font-size: 1.6rem;
    font-weight: 400;
    font-family: "Pliant", sans-serif;
}

.default-color{
    color: var(--default-color)!important;
}

.primary-color{
    color: var(--primary-color)!important;
}

.secondary-color{
    color: var(--secondary-color)!important;
}

.title-color{
    color: var(--light-color)!important;
}

h1,h2,h3,h4,h5,h6,p,figure{
    margin: 0;
}

h1, h2{
    font-size: 2.5rem;
}

h3{
    font-size: 2.4rem;
}

h4{
    font-size: 2.2rem;
}

h5, h6{
    font-size: 2rem;
}

p {
    font-size: 1.6rem;
    line-height: 1.7;
}

.form-control {
    padding: 1rem 1.5rem;
    font-size: 1.3rem;
}

/* header starts here */

header .navbar {
    padding: 0 0;
    box-shadow: 0 0 9px #ddd;
}

header .navbar-toggler {
    font-size: 3rem;
    color: var(--title-color);
    border: 0;
    padding: 0;
}

header .navbar-toggler:focus{
    box-shadow: none;
}

header .logo .navbar-brand {
    max-width: 25rem;
    margin: 0;
    display: block;
}

.logo .navbar-brand figure {
    margin: 0;
}

.header-menu-right .navbar-nav {
    gap: 3rem;
}

.header-menu-right .navbar-nav li .nav-link {
    font-size: 2rem;
    letter-spacing: -0.3px;
    line-height: 1.5;
    transition: all 0.3s;
    padding: 2.5rem 0;
    position: relative;
}

.header-menu-right .navbar-nav li .nav-link::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 1.5rem;
    width: 100%;
    height: 1rem;
    transform: scaleX(0);
    transform-origin: center;
    transition: .35s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='12' viewBox='0 0 20 12'%3E%3Cpath d='M1 6C3 2 7 2 10 6C13 10 17 10 19 6' stroke='%23C6FF00' stroke-width='2.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 2rem 1.2rem;
}

.header-menu-right .navbar-nav li .nav-link:hover::before,
.header-menu-right .navbar-nav li .nav-link.active::before{
    transform: scaleX(1);
}

.header-menu-right .navbar-nav li .nav-link.active, .header-menu-right .navbar-nav li .nav-link:hover {
    color: var(--primary-color);
}

.header-dropdown-menu {
    width: 100%;
    margin: 0 !important;
    padding: 0;
    border-radius: 0;
    background: #fff;
    border: 0;
    left: 0;
    top: 100%;
    box-shadow: 0 2px 9px #ddd;
}

#navbar-menu .dropdown {
    position: static;
}

.header-dropdown-menu {
    width: 100%;
    margin: 0 !important;
    padding: 0;
    border-radius: 0;
    background: #fff;
    border: 0;
    left: 0;
    top: 100%;
    box-shadow: 0 2px 9px #ddd;
}

.header-dropdown-tab-box {
    border-radius: 0.5rem;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .16);
    overflow: hidden;
}

.header-dropdown-tab-box .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: #1b515d;
    font-size: 1.8rem !important;
    border-bottom: 1px solid #e9e9e9;
    border-radius: 0;
    padding: 0.8rem 1rem !important;
    line-height: 1.3 !important;
}

.header-dropdown-tab-box .nav-link.active, .header-dropdown-tab-box .nav-link:hover {
    background: #ff8204;
    color: #ffffff !important;
}

.header-dropdown-menu-list {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0rem 2rem;
    position: relative;
    overflow: hidden;
}

.header-dropdown-menu-list::after {
    position: absolute;
    content: "";
    background: #579bab;
    width: 1px;
    height: 100%;
    left: 0px;
    right: 2rem;
    margin: auto;
    top: 1rem;
}

.header-dropdown-menu-list li {
    list-style: none;
    width: calc(50% - 2rem);
}

.header-dropdown-menu-list li a {
    text-decoration: none;
    font-size: 1.4rem;
    line-height: 2;
    color: #1b515d;
    border-bottom: 1px solid #e9e9e9;
    display: block;
    padding: 0.6rem 0;
    transition: all 0.3s;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

.header-dropdown-menu-list li a:hover {
    color: #ff8204;
}

.header-dropdown-right {
    padding-bottom: 1rem;
}

.header-destination-box {
    box-shadow: 0 3px 6px 0 rgba(0,0,0,.16);
    border-radius: 1rem;
    overflow: hidden;
}

.header-destination-box .item-box-img {
    margin: 0;
}

.header-destination-box .item-box-img figure {
    height: 21rem;
}

.header-destination-box .item-box-details {
    padding: 1rem 2rem;
}

.header-destination-box .item-box-details p {
    -webkit-line-clamp: 2;
}

/* header ends here */

.custom-btn {
    background: var(--primary-color);
    padding: 0.5rem 1rem 0.5rem 2rem;
    border-radius: 10rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--default-color);
    font-size: 1.6rem;
    font-weight: 600;
    border: 1px solid var(--primary-color);
    transition: all 0.5s;
    max-width: max-content;
    gap: 1rem;
    justify-content: center;
}

.custom-btn i {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.8rem;
    transform: rotate(322deg);
    color: var(--title-color);
    transition: all 0.5s;
}

.custom-btn:hover {
    background: var(--secondary-color);
    color: var(--title-color);
}

.custom-btn:hover i {
    background: var(--primary-color);
    color: var(--default-color);
}

.custom-btn-1 {
    padding: 0.5rem 1rem 0.5rem 1.5rem;
    border-radius: 10rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--title-color);
    font-size: 1.4rem;
    font-weight: 600;
    border: 1px solid var(--secondary-color);
    transition: all 0.5s;
    max-width: max-content;
    gap: 1rem;
}

.custom-btn-1:hover {
    background: var(--secondary-color);
}

.custom-btn-1 i {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.8rem;
    transform: rotate(322deg);
    color: var(--title-color);
    transition: all 0.5s;
}

.custom-btn-1:hover i{
    background: var(--primary-color);
    color: var(--default-color);
}

/* top slider */

.top-slider {
    position: relative;
}

.top-home-slider .item {
    height: calc(100vh - 20rem);
    display: flex;
    align-items: flex-end;
    padding: 3rem 0;
}

.section-tagline {
    border: 1px solid var(--primary-color);
    max-width: max-content;
    color: var(--primary-color);
    font-size: 1.8rem;
    padding: 1rem 2rem 1rem 4rem;
    border-radius: 10rem;
    position: relative;
    margin-bottom: 1rem;
}

.section-tagline::before {
    position: absolute;
    content: "";
    background: var(--secondary-color);
    width: 2rem;
    height: 0.2rem;
    left: 1.5rem;
    top: 0;
    bottom: 0;
    margin: auto;
}

.top-home-slider-details .section-tagline {
    border: 1px solid var(--secondary-color);
    color: var(--default-color);
}

.banner-heading {
    font-size: 6rem;
    color: var(--default-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

.top-home-slider-details p {
    color: var(--default-color);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: absolute;
    bottom: 2rem;
    right: 15rem;
    z-index: 99;
    min-width: max-content;
}

.slider-controls button {
    padding: 4px 12px;
    font-size: 18px;
    background: 0;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 100;
}

.slider-controls .slider-counter {
    font-size: 4rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 0;
}

.section-padding {
    padding: 6rem 0;
}

.section-padding-top {
    padding-top: 6rem;
}

.section-padding-bottom {
    padding-bottom: 6rem;
}

.heading-btn-row {
    margin-bottom: 3rem;
}

.section-heading {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.4;
    color: #010101;
}

.popular-dest-item {
    position: relative;
    overflow: hidden;
    display: block;
}

.popular-dest-img {
    display: block;
    width: 100%;
    height: 40rem;
    overflow: hidden;
    border-radius: 2rem;
}

.popular-dest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.popular-dest-item:hover img {
    transform: scale(1.05);
}

.place-title {
    position: absolute;
    top: 2rem;
    right: 2rem;
    border: 1px solid rgba(255,255,255,0.29);
    box-shadow: inset 4.455px 2.27px 53px rgb(0 0 0 / 66%);
    border-radius: 1.6rem;
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--default-color);
}

.popular-dest-details {
    position: absolute;
    bottom: 0;
    padding: 2rem;
    color: var(--default-color);
}

.column-heading {
    font-size: 2rem;
    margin-bottom: 0.6rem;
    transition: all 0.5s;
}

.column-heading:hover, .column-heading a:hover {
    color: var(--primary-color);
}

.column-heading a {
    color: var(--title-color);
    text-decoration: none;
}

.popular-dest-details p {
    font-size: 1.5rem;
    font-weight: 300;
}

.custom-bg{
    background: var(--light-color);
}

.island-destination-left p {
    margin: 1rem 0 2rem;
}

.circle-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    min-width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: 0;
    border: 1px solid var(--default-color);
    color: var(--default-color);
    font-size: 2rem;
}

.circle-btn i {
    transform: rotate(-45deg);
}

.dest-heading {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.featured-dest-left .custom-btn-1 {
    margin-top: 2rem;
}

.featured-dest-right {
    position: relative;
    display: block;
    width: 100%;
    height: 40rem;
    overflow: hidden;
    border-radius: 2rem;
}

.featured-dest-img, .featured-dest-img img {
    width: 100%;
    height: 100%;
}

.featured-dest-img img{
    transition: all 0.5s;
}

.featured-dest-img img:hover{
    transform: scale(1.05);
}

.box-img {
    width: 100%;
    height: 20rem;
    display: block;
    overflow: hidden;
    border-radius: 2rem;
}

.box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.box-item:hover img {
    transform: scale(1.05);
}

.box-item .column-heading {
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
}

.box-item .column-heading a {
    text-decoration: none;
    color: var(--title-color);
    transition: all 0.5s;
}

.box-item .column-heading a:hover {
    color: var(--primary-color);
}

.two-item-padding-slider .owl-nav {
    position: absolute;
    top: -7.5rem;
    right: 6rem;
    margin: 0;
}

.six-item-slider .owl-nav {
    position: absolute;
    top: -7.5rem;
    right: 0;
    margin: 0;
}

.six-item-slider .owl-nav button,
.two-item-padding-slider .owl-nav button{
    width: 4rem;
    height: 4rem;
    background: var(--secondary-color) !important;
    border-radius: 50% !important;
    font-size: 1.8rem !important;
    box-shadow: 1.782px 0.908px 3px rgba(0,0,0,0.23);
}

.two-item-padding-slider .owl-dots {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.two-item-padding-slider .owl-dots .owl-dot span {
    margin: 0;
}

.two-item-padding-slider .owl-dots .owl-dot.active span {
    width: 2rem;
    height: 2rem;
    background: var(--secondary-color) !important;
}

.touring-img {
    width: 100%;
    display: block;
    height: 46rem;
    overflow: hidden;
    border-radius: 2rem;
    margin-bottom: 2rem;
}

.touring-img img {
    width: 100%;
    height: 100%;
    transition: all 0.5s;
}

.touring-item:hover img {
    transform: scale(1.05);
}

.touring-details .column-heading {
    margin-bottom: 1rem;
}

.touring-details .column-heading a {
    text-decoration: none;
    color: var(--title-color);
    transition: all 0.5s;
}

.touring-details .column-heading a:hover {
    color: var(--primary-color);
}

/* footer starts here */

footer {
    background: var(--title-color);
    padding: 5rem 0 2rem;
}

.footer-logo {
    margin-bottom: 2rem;
}

footer p {
    color: var(--default-color);
    font-weight: 100;
    font-size: 1.5rem;
}

.social-icon {
    gap: 0.5rem;
    margin-top: 2rem;
}

.social-icon a {
    background: var(--default-color);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1.6rem;
    transition: all 0.5s;
}

.social-icon a:hover {
    transform: translateY(-4px);
    background: var(--primary-color);
    color: var(--default-color);
}

.footer-heading {
    font-size: 2rem;
    color: var(--default-color);
    margin-bottom: 3rem;
    margin-top: 2.5rem;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-list li {
    margin-bottom: 2rem;
}

.footer-menu-list li:last-child {
    margin-bottom: 0;
}

.footer-menu-list li a {
    text-decoration: none;
    color: var(--default-color);
    font-weight: 200;
    font-size: 1.5rem;
    transition: all 0.5s;
    display: inline-block;
}

.footer-menu-list li a i {
    margin-right: 0.6rem;
}

.footer-menu-list li a:hover {
    transform: translateX(5px);
    color: var(--secondary-color);
}

.copyright {
    padding-top: 2rem;
    border-top: 1px solid #101010;
    margin-top: 3rem;
}

.copyright p {
    font-size: 1.3rem;
}

.copyright .footer-menu-list {
    display: flex;
    gap: 2rem;
}

.copyright .footer-menu-list li {
    margin: 0;
}

/* footer ends here */

/* comparison page starts here */

.top-deals-grabbed {
    padding-top: 5rem;
}

.destination-slider{
    padding-top: 3rem;
}

.destination-slider-img {
    display: block;
    width: 25rem;
    height: 30rem;
    border-radius: 2rem;
    overflow: hidden;
}

.destination-slider-img img {
    width: 100%;
    height: 100%;
}

.popular-city-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 1rem;
}

.popular-city-item {
    display: inline-block;
    text-decoration: none;
    color: var(--title-color);
    font-size: 1.6rem;
    font-weight: 300;
    transition: all 0.3s;
}

.popular-city-item:hover {
    text-decoration: underline;
    color: var(--primary-color);
    transform: translateX(2px);
}

.section-hading-para {
    margin-bottom: 3rem;
}

.compare-column {
    border: 1px solid var(--secondary-color);
    padding: 2rem;
    border-radius: 1.5rem;
}

.compare-item {
    text-align: center;
    width: 50%;
    text-decoration: none;
    display: block;
}

.compare-item-img {
    width: 100%;
    height: 10rem;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compare-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 10rem;
}

.compare-heading {
    font-size: 2.5rem;
    color: var(--title-color);
    margin-top: 1rem;
}

.compare-price {
    color: #3A3A3A;
    font-weight: 400;
    font-size: 1.5rem;
}

.compare-column .custom-btn {
    max-width: 90%;
    margin: auto;
    margin-top: 2rem;
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: 5rem;
    justify-content: center;
}

.compare-column span {
    width: 4rem;
    height: 4rem;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    min-width: 4rem;
    font-size: 2rem;
    color: var(--default-color);
    line-height: 0;
    position: relative;
}

.compare-item:first-child {
    position: relative;
}

.compare-item:first-child::before {
    position: absolute;
    content: "";
    background: var(--secondary-color);
    width: 1px;
    height: 86%;
    right: -2rem;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(10deg);
}

/* comparison page ends here */

/* about us starts */

.page-hero {
    background: linear-gradient(135deg, #06b2e0 0%, #0085c9 100%);
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 40rem;
  height: 40rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -10rem;
  right: -8rem;
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 25rem;
  height: 25rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  bottom: -8rem;
  left: 5%;
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.25);
  color: #000;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  padding: 0.6rem 1.6rem;
  border-radius: 10rem;
  margin-bottom: 2rem;
}
.page-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #000;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.page-hero p {
  font-size: 1.8rem;
  color: rgba(0, 0, 0, 0.75);
  max-width: 55rem;
  line-height: 1.8;
}
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2.5rem;
  font-size: 1.4rem;
  color: rgba(0, 0, 0, 0.6);
}
.page-breadcrumb a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}
.page-breadcrumb a:hover {
  text-decoration: underline;
}

/* about story */

.about-story-img {
  width: 100%;
  height: 45rem;
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
}
.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-story-img-badge {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.5rem 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.about-story-img-badge .badge-num {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--secondary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.about-story-img-badge .badge-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: #3a3a3a;
  line-height: 1.4;
}
.about-story-content {
  padding-left: 3rem;
}
.about-story-content .section-heading {
  margin-bottom: 2rem;
}
.about-story-content p {
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.9;
}
.about-check-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.about-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  font-size: 1.6rem;
  color: #3a3a3a;
  line-height: 1.6;
}
.about-check-list li .check-icon {
  width: 2.4rem;
  height: 2.4rem;
  min-width: 2.4rem;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #000;
  margin-top: 0.1rem;
}

/* about us ends */

/* contact us page css starts here */

.trusted-travels-container {
  padding: 2rem 0;
}

.trusted-travels-box {
  align-items: center;
  gap: 1.5rem;
  border-right: 1px solid var(--secondary-color);
  padding: 0 4rem;
}

.trusted-travels-box:last-child {
  border-right: 0;
}

.trusted-travels-box figure {
  min-width: 4rem;
  max-width: 4.5rem;
  height: 4rem;
}

.trusted-travels-box figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trusted-travels-text {
  color: var(--title-color);
}

.trusted-travels-text p {
  font-size: 1.4rem;
  font-weight: 700;
}

/* contact form */

.indiPro-contactUs-container {
  background: var(--default-color);
  box-shadow: 0 0 9px #ddd;
  border-radius: 0.8rem;
}

.start-journey-heading {
  background: var(--primary-color);
  padding: 2rem;
  border-radius: 0.8rem 0.8rem 0 0;
  position: relative;
  z-index: 1;
}

.start-journey-heading:before {
  position: absolute;
  content: "";
  background: var(--primary-color);
  width: 4rem;
  height: 4rem;
  bottom: -1rem;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
  z-index: -1;
}

.start-journey-heading .section-heading {
  margin-bottom: 0;
  padding-top: 0;
  font-size: 3rem;
  color: var(--default-color);
  font-weight: 400;
}

.start-journey-heading .section-heading::before {
  display: none;
}

.start-journeyForm-container {
  border-top: 0;
  border-radius: 0 0 0.8rem 0.8rem;
  padding: 5rem 5rem 3rem;
}

.start-journeyForm-container .form-group {
  margin-bottom: 4rem;
  position: relative;
}

.start-journey-label {
  position: absolute;
  top: -1rem;
  left: 3rem;
  background: #fff;
  padding: 0 1rem;
  line-height: 1;
  font-weight: 500;
  font-size: 1.5rem;
}

.start-journeyForm-container .form-control {
  padding: 1.4rem;
  font-size: 1.2rem;
  border: 1px solid #767676;
}

.start-journeyForm-container .form-control:focus {
  border: 1px solid var(--secondary-color);
  box-shadow: none;
}

.start-journeyForm-container .form-group.select-form-control:after {
  line-height: inherit;
}

.start-journeyForm-container .custom-btn {
  min-width: 20rem;
  margin: auto;
}

.select-form-control {
  position: relative;
}

.select-form-control:after {
  position: absolute;
  content: "\f078";
  font-family: "FontAwesome";
  top: 50%;
  right: 20px;
  bottom: 0;
  margin: auto;
  font-size: 14px;
  color: var(--title-color);
  transform: translateY(-50%);
  line-height: 1;
}

.select-form-control .form-control {
  cursor: pointer;
}

/* form ends */

.contact-address-box {
  background: var(--default-color);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 9px #ddd;
}

.contact-address-box .column-heading {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.contact-address-box address {
  font-size: 1.5rem;
  color: #5a5a5a;
}

.contact-address-box address a {
  color: var(--primary-color);
}

.contact-address-box address a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.discover-dream-container {
  text-align: center;
  padding: 8rem 2rem;
  position: relative;
  bottom: -4rem;
  border-radius: 2rem;
  overflow: hidden;
}

.get-started-container .custom-btn {
  margin-top: 2rem;
}

.discover-dream-container .section-heading {
  padding: 0;
  color: var(--default-color);
  font-size: 3.5rem;
}

.discover-dream-container .section-heading::before {
  display: none;
}

/* contact us ends */


/* login modal */

.login-modal-container .modal-dialog {
  max-width: 60rem;
}

.login-modal-container .modal-dialog .close {
  position: absolute;
  right: -15px;
  background: var(--secondary-color);
  width: 40px;
  height: 40px;
  z-index: 99;
  opacity: 1;
  border-radius: 50%;
  top: -15px;
  color: #fff;
  border: 0;
  font-size: 2.5rem;
  line-height: 0;
  font-weight: 600;
}

.login-modal-container .modal-dialog .modal-body {
  padding: 0;
}

.login_left {
  padding: 20px 25px;
}

.logIn_heading {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.5;
}

.logInFormIconItem {
  margin: 10px 0 30px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.loginWithGoogleImg {
  max-width: 300px;
  margin: auto;
}

.loginWithGoogleImg a img {
  max-width: 100%;
}

.logInFormIconItem .other_login {
  width: 35px;
  height: 35px;
  background: #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  margin: auto;
  position: relative;
  bottom: -20px;
}

.login_form {
  margin-top: 25px;
}

.login_labelHeading {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 1rem;
}

.login_input_row {
  display: flex;
  position: relative;
  align-items: center;
}

.login_input_row > i {
  position: absolute;
  left: 12px;
  color: var(--secondary-color);
  font-size: 15px;
}

.login_input_row .form-control {
  padding: 10px 40px;
  border: 0;
  box-shadow: 0 0 9px #ddd;
  font-size: 13px;
  height: auto;
}

.remember_row {
  display: flex;
  justify-content: space-between;
}

.remember_check_box {
  display: flex;
  margin-top: 5px;
  align-items: flex-start;
}

.remember_check_box input[type="checkbox"] {
  margin-top: 5px;
}

.remember_check_box > label {
  margin-bottom: 0;
  font-size: 11px;
  color: var(--text-color);
  font-weight: 500 !important;
  margin-left: 5px;
  margin-top: 2px;
}

.forgotPass_box > a {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
}

.login_welText {
  font-size: 13px;
  color: var(--primary-color);
  margin-top: 10px;
}

.login_welText .submit_btn {
  font-weight: 600;
  cursor: pointer;
}

.submit_btn {
  margin: auto;
  max-width: 20rem !important;
  margin-top: 2rem;
}

/* log in sign up forget end */

/* news page starts */

.all-news-top-slider .owl-nav {
  position: absolute;
  right: 150px;
  bottom: 20px;
  display: flex;
  gap: 10px;
}

.all-news-top-slider .owl-nav button {
  background: var(--default-color) !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--secondary-color) !important;
}

.all-news-top-slider .owl-nav button.disabled {
  background: #ddd !important;
  display: block !important;
  cursor: auto;
}

.all-news-top-slider .owl-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 15px;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
}

.all-news-top-slider .owl-dots button.owl-dot {
  background: var(--secondary-color);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.all-news-top-slider .owl-dots button.owl-dot.active {
  background: var(--secondary-color);
}

.on-banner-icon-and-img {
  position: relative;
}

.on-banner-icon-and-img .share-icon {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 9;
}

.on-banner-review-img {
  display: block;
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

.on-banner-review-img img {
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}

.on-banner-review-img:hover img {
  transform: scale(1.05);
}

.on-review-content {
  padding-left: 10px;
}

.on-review-content h2 {
  font-size: 20px;
  color: var(--title-color);
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.on-review-content h2 a {
  color: var(--title-color);
  transition: all 0.3s;
  text-decoration: none;
}

.on-review-content h2 a:hover {
  color: var(--primary-color);
}

.on-review-content p {
  color: var(--title-color);
  line-height: 1.8;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.on-review-title-and-date {
  text-align: right;
  margin-top: 20px;
  margin-bottom: 0px;
  color: var(--title-color);
}

.review-date {
  margin-bottom: 12px;
  font-size: 12px;
}

.review-title {
  font-size: 12px;
}

.socialShareItem {
    background: var(--primary-color);
    width: 4rem;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 1rem;
}

.social-media-share {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 4px;
  box-shadow: 0 0 9px #ddd;
  border-radius: 4px;
  gap: 4px;
  position: absolute;
  right: -100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.social-share-item:hover > .social-media-share {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.ind-top-right-heading .share-icon .social-media-share {
    left: inherit;
    right: -100%;
}

.ind-top-right-heading .share-icon .social-share-item:hover > .social-media-share {
    left: inherit;
    right: 0;
}

.on-banner-review .social-share-item {
  background: var(--primary-color);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-share-item .socialShareItem i {
  color: var(--default-color);
  font-size: 25px;
}

.social-share-item .social-media-share {
  left: -100%;
  top: 100%;
  right: initial;
}

.social-media-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 3rem;
    min-width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    border-radius: 0.5rem;
    transition: all 0.4s;
}

.social-media-share a:hover {
    transform: translateY(-2px);
}

.social-media-share a i {
    color: var(--default-color);
    font-size: 1.5rem;
}

.news-item {
  box-shadow: 0 2px 9px #9e9e9e;
  margin-bottom: 20px;
  align-items: center;
  border-radius: 5px;
}

.news-item:last-child {
  margin-bottom: 0;
}

.news-item-img figure {
  width: 35rem;
  height: 27rem;
  border-radius: 5px 0 0 5px;
  overflow: hidden;
}

.news-item-img figure img {
  width: 100%;
  height: 100%;
}

.news-item-text {
  padding: 12px 20px;
}

.news-item-text a {
    text-decoration: none;
    color: var(--title-color);
    transition: all 0.4s;
    display: flex;
    margin-bottom: 1rem;
}

.news-item-text a:hover {
    color: var(--primary-color);
}

.items-heading {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item-text p{
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.items-meta span {
    font-size: 1.4rem;
}

.items-meta span i {
    color: var(--primary-color);
}

.news-item-text .custom-btn {
    color: var(--default-color);
    margin-top: 1rem;
    margin-bottom: 0;
}

.blog-details-container {
  box-shadow: 0 0 9px #ddd;
  padding: 2rem;
  border-radius: 1rem;
}

.destination-search {
    box-shadow: 0 0 9px #ddd;
    padding: 1.5rem;
    border-radius: 0.8rem;
    position: sticky;
    top: 1rem;
    z-index: 9;
    background: var(--default-color);
    margin-bottom: 2rem;
}

.destination-filter-form .select-form-control {
    position: relative;
    margin-bottom: 1rem;
}

.destination-filter-form .form-control {
    font-size: 1.4rem;
    padding: 1rem 3rem 1rem 1.2rem;
    border: 1px solid var(--title-color) !important;
    height: auto;
    color: var(--title-color);
    cursor: pointer;
    min-width: 16rem;
    border-radius: 0.5rem;
    appearance: none;
    -webkit-appearance: none;
    background: var(--default-color);
}

.destination-filter-form .select-form-control::after {
    position: absolute;
    content: "\f0b0";
    font-family: 'FontAwesome';
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--primary-color);
    pointer-events: none;
}

.trending-heading {
    background: var(--primary-color);
    text-align: center;
    padding: 1rem;
    color: #fff;
    border-radius: 0.6rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    line-height: 1.4;
}

.trip-vertical-box {
    margin-bottom: 2rem;
    max-height: 60rem;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 0 9px #ddd;
    padding: 1rem;
    border-radius: 0.5rem;
}

.trip-vertical-item {
    text-decoration: none;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
}

.trip-vertical-item figure {
    width: 9rem;
    min-width: 9rem;
    height: 9rem;
    min-height: 9rem;
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 1rem;
}

.trip-vertical-item figure img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.trip-vertical-right .column-heading {
    font-size: 1.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 0.4rem;
    transition: all 0.3s;
    margin-top: 0;
    color: var(--title-color);
}

.trip-vertical-right .column-heading:hover {
    color: var(--primary-color);
}

.trip-vertical-item p {
    margin-bottom: 0;
    color: var(--title-color);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 1.5rem;
    transition: all 0.3s;
    line-height: 1.4;
}

.subscribe-box {
    margin-top: 2rem;
    box-shadow: 0 0 9px #ddd;
    padding: 1rem;
    border-radius: 0.5rem;
    position: sticky;
    top: 2rem;
}

.subscribe-box .trending-heading {
    padding: 1rem 0;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.subscribe-box p {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.subscribe-form .form-control {
    font-size: 1.6rem;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--title-color);
}

.subscribe-form .custom-btn {
    margin: auto;
    margin-top: 2rem;
}

.select-form-control {
    position: relative;
}

.discover-box{
    position: relative;
}

.discover-img{
    width: 100%;
    height: 24rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.discover-img a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 3rem 3rem 0 0;
}

.discover-img a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.discover-box:hover img{
    transform: scale(1.05);
}

.discover-details {
    position: relative;
    margin-top: -2rem;
    z-index: 2;
    background: #fff;
    border-radius: 3rem;
    padding: 2rem;
    padding-top: 3.5rem;
    box-shadow: 0 0 9px #ddd;
}

.continent-title {
    position: absolute;
    background: var(--default-color);
    top: -2rem;
    padding: 1rem 1.5rem;
    border-radius: 3rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    box-shadow: 0px 2px 7px 0px #00000012;
}

.continent-title i {
    margin-right: 0.5rem;
}

.city-name {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.city-name i {
    margin-right: 0.5rem;
}

.discover-details .column-heading {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.discover-details p {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.featured-destination .three-item-slider .item,
.similar-destination .three-item-slider .item{
    padding: 0.6rem;
}

.travel-tips-row {
    margin-top: 2rem;
}

.travel-tips-column {
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.travel-tips-icon {
    width: 6rem;
    height: 6rem;
    background: var(--light-color);
    padding: 1rem;
    border-radius: 1.5rem;
    border: 1px solid #0085c90d;
    box-shadow: 0px 0px 4px 0px #0000001C;
}

.travel-tips-column p {
    line-height: 1.4;
    font-size: 1.5rem;
    color: #6A7695;
    transition: all 0.3s;
}

.travel-tips-column:hover p {
    color: var(--primary-color);
}

.destination-image-left {
    float: left;
    margin-right: 3rem;
    min-width: 40%;
    max-width: 45%;
    margin-bottom: 1rem;
}

.destination-block-img figure {
    width: 100%;
    height: 35rem;
    margin: 0;
    border-radius: 1rem;
    overflow: hidden;
}

.destination-block-img figure img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}

.destination-right-content {
    padding-top: 2rem;
}

.destination-right-content div, .destination-right-content p, .destination-right-content p span, .destination-right-content span{
    font-size: 1.5rem !important;
    line-height: 1.8;
}

/* faq */

.faq-container .accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-start;
}

.faq-item {
  width: calc(50% - 7.5px);
  box-shadow: 0 0 9px #ddd;
  padding: 1.5rem;
  border-radius: 1rem;
}

.faq-header h2 {
    font-size: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
    gap: 1rem;
    color: var(--title-color);
}

.faq-header h2::after {
    content: "\f067";
    font-family: "FontAwesome";
    font-weight: 100;
    display: inline-block;
    margin-left: auto;
    transition: transform 0.2s;
    background: none;
    border: 0;
    border-radius: 50%;
    font-size: 14px;
    color: var(--primary-color);
    top: 0;
}

.faq-header h2:not(.collapsed)::after {
    content: "\f068";
    font-family: "FontAwesome";
    transform: rotate(180deg);
    background: none;
    color: var(--primary-color);
}

.faq-body {
  margin-top: 1rem;
  font-size: 1.3rem;
}

.faq-body p {
  line-height: 1.8;
}

.faq-body ul {
  padding-left: 2rem;
}

.faq-body ul li {
  list-style: inherit;
}

/* faq ends */

.three-item-slider .owl-nav button {
    background: var(--primary-color) !important;
    width: 4rem;
    height: 4rem;
    border-radius: 0.8rem !important;
    color: var(--default-color) !important;
}







/* screen and mobile optimized */

@media (max-width:1399px) {
.popular-dest-img {
    height: 32rem;
}
.popular-dest-img {
    height: 31rem;
}
.banner-heading {
    font-size: 5rem;
}
.compare-column {
    padding: 1rem;
}
.compare-heading {
    font-size: 1.8rem;
}
}


@media (max-width:1199px) {
.travel-tips-column p {
    font-size: 1.3rem;
}
.discover-img {
    height: 20rem;
}
.discover-details {
    padding: 1rem;
    padding-top: 3rem;
}
.continent-title {
    padding: 1rem 1.5rem;
    font-size: 1.3rem;
}
.news-item-img figure {
    width: 26rem;
    height: 25rem;
}
.news-item-text {
    padding: 0.5rem 1rem;
}
.items-heading {
    font-size: 2rem;
}
}


@media (max-width:991px) {
#navbar-menu {
    position: absolute;
    top: 100%;
    background: var(--default-color);
    left: 0;
    z-index: 9;
    width: 100%;
    padding: 1rem 2rem;
}
.header-menu-right .navbar-nav {
    gap: 0rem;
}
.header-menu-right .navbar-nav li .nav-link {
    font-size: 1.6rem;
    padding: 0.5rem 0;
    display: inline-block;
}
.header-menu-right .navbar-nav li .nav-link::before {
    bottom: 0;
}
.travel-tips-row {
    flex-wrap: wrap;
    justify-content: center !important;
    gap: 2rem 1rem;
}
.destination-search {
    position: relative;
}
.section-padding {
    padding: 4rem 0;
}
.section-padding-top {
    padding-top: 4rem;
}
.section-padding-bottom {
    padding-bottom: 4rem;
}
.news-item-img figure {
    width: 16rem;
    height: 18rem;
}
.items-heading {
    -webkit-line-clamp: 1;
    font-size: 1.8rem;
}
.items-meta span {
    font-size: 1.1rem;
}
.news-item-text p {
    -webkit-line-clamp: 2;
    font-size: 1.3rem;
}
.news-item-text .custom-btn {
    font-size: 1.4rem;
}
.on-banner-review-img {
    height: 30rem;
}
.on-review-content p {
    line-height: 1.6;
    -webkit-line-clamp: 4;
}
}


@media (max-width:767px){
.faq-container .accordion {
    gap: 1rem;
}
.faq-item {
    width: 100%;
    padding: 1.5rem;
}
.faq-header h2 {
    font-size: 1.4rem;
}
.on-banner-review-img {
    height: 20rem;
}
.on-review-content {
    padding-left: 0;
}
.on-review-title-and-date {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}
.review-date {
    margin-bottom: 0;
    font-size: 11px;
}
.review-title {
    font-size: 11px;
}
.on-review-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.on-review-content p {
    line-height: 1.6;
    -webkit-line-clamp: 3;
    font-size: 1.4rem;
}
.all-news-left {
    margin-bottom: 2rem;
}
.blog-details-container {
    box-shadow: none;
    padding: 0;
}
}




@media (max-width:576px){
.top-home-slider .item {
    align-items: center;
}
.banner-heading {
    font-size: 3rem;
}
.section-tagline {
    font-size: 1.5rem;
    padding: 0.8rem 1rem 0.8rem 2rem;
}
.section-tagline::before {
    width: 1rem;
    left: 0.5rem;
}
.slider-controls {
    right: 2rem;
}
.slider-controls button {
    gap: 15px;
    font-size: 16px;
    border: 1px solid #ffffff;
}
.slider-controls .slider-counter {
    font-size: 3rem;
}
.custom-btn-1 {
    font-size: 1.3rem;
    min-width: max-content;
}
p {
    font-size: 1.4rem;
    line-height: 1.6;
}
.section-padding {
    padding: 3rem 0;
}
.section-padding-top {
    padding-top: 3rem;
}
.section-padding-bottom {
    padding-bottom: 3rem;
}
.section-heading {
    font-size: 2.5rem;
}
.two-item-padding-slider .owl-nav,
.six-item-slider .owl-nav {
    right: 0;
    position: relative;
    top: 0;
}
.two-item-padding-slider .owl-dots {
    margin-top: 0rem;
}
.touring-img {
    height: 30rem;
}
.two-item-padding-slider .owl-dots .owl-dot.active span {
    width: 1.2rem;
    height: 1.2rem;
}
footer {
    padding: 3rem 0 1rem;
}
.footer-heading {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}
.footer-menu-list li {
    margin-bottom: 1rem;
}
.footer-menu-list li a {
    font-size: 1.4rem;
}
.copyright {
    padding-top: 1rem;
    margin-top: 2rem;
    text-align: center;
}
.copyright .col-lg-9 {
    order: 1;
}
.copyright .footer-menu-list {
    justify-content: space-between;
    margin-bottom: 1rem;
}
.page-hero {
    padding: 3rem 0 3rem;
}
.page-hero-eyebrow {
    font-size: 1.1rem;
}
.page-hero h1 {
    font-size: 3rem;
}
.page-hero p {
    font-size: 1.6rem;
    max-width: 100%;
}
.about-story-content {
    padding-left: 0;
}
.about-story-img {
    height: 30rem;
}
.about-story-img-badge {
    bottom: 1.5rem;
    left: 1.5rem;
}
.custom-btn {
    padding: 0.5rem 0.7rem 0.5rem 1.2rem;
    font-size: 1.3rem;
    gap: 0.6rem;
}
.custom-btn i {
    width: 3rem;
    height: 3rem;
    font-size: 1.4rem;
}
.trusted-travels-box {
    gap: 1rem;
    padding: 0 1rem;
}
.trusted-travels-box figure {
    min-width: 3rem;
    max-width: 3rem;
    height: 3rem;
}
.trusted-travels-text p {
    font-size: 1.2rem;
    font-weight: 500;
}
.start-journey-heading .section-heading {
    font-size: 2rem;
}
.start-journeyForm-container {
    padding: 3rem 1rem 1rem;
}
.travel-tips-row {
    justify-content: flex-start !important;
    gap: 1rem 0.5rem;
}
.travel-tips-column {
    width: 100%;
}
.destination-right-content {
    padding-top: 0;
}
.on-banner-review-img {
    height: 25rem;
    margin-bottom: 1rem;
}
.on-review-content h2 {
    margin-bottom: 0.6rem;
    -webkit-line-clamp: 1;
}
.news-item {
    margin-bottom: 1.2rem;
}
.news-item-img figure {
    width: 12rem;
    height: 15rem;
}
.news-item-text a {
    margin-bottom: 0.6rem;
}
.items-heading {
    font-size: 1.6rem;
}
.news-item-text p {
    font-size: 1.2rem;
}
.news-item-text .custom-btn {
    margin-top: 0.6rem;
    font-size: 1.2rem;
}
}