@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --default-color: #ffffff;
    --primary-color: #F1592A;
    --secondary-color: #0B173D;
    --title-color: #000000;
    --light-color:#F2F4F6;
}

html{
    font-size: 10px;
    scroll-behavior: smooth;
}

body{
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #6A7695;
    font-size: 1.6rem;
    font-weight: 400;
    font-family: "Manrope", 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(--title-color)!important;
}

.light-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 {
    box-shadow: 0 0 3.5px rgba(0,0,0,0.15);
    z-index: 9;
    position: relative;
}

.logo .navbar-brand {
    max-width: 12rem;
    display: block;
}

#navbar-menu .navbar-nav {
    gap: 3rem;
}

#navbar-menu .navbar-nav li a {
    display: block;
    font-size: 1.6rem;
    color: var(--title-color);
    padding: 0 0 0.3rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    font-weight: 400;
}

#navbar-menu .navbar-nav li a.active {
    border-bottom: 1px solid var(--primary-color);
}

header .navbar-toggler {
    font-size: 3rem;
    color: var(--title-color);
    border: 0;
    padding: 0;
}

header .navbar-toggler:focus {
    box-shadow: none;
}

/* header ends */

.custom-btn {
    background: var(--primary-color);
    display: flex;
    color: var(--default-color);
    padding: 1rem 2rem;
    border: 1px solid var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 5rem;
    max-width: max-content;
    font-weight: 700;
    min-width: 15rem;
}

.custom-btn i {
    margin-left: 1rem;
}

.custom-btn:hover{
    background: var(--default-color);
    color: var(--primary-color);
}

/* top banner */

.top-banner {
    height: 50rem;
    display: flex;
    align-items: center;
}

.top-home-slider-details .custom-btn {
    margin-bottom: 2rem;
}

.banner-heading {
    font-size: 6rem;
    color: var(--default-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.top-home-slider-details p {
    font-size: 2rem;
    color: var(--default-color);
}

.discount-and-deals-box {
    border: 1px solid var(--light-color);
    border-radius: 1.5rem;
    padding: 2rem;
}

.offer-img {
    width: 10rem;
    height: 8rem;
    overflow: hidden;
}

.offer-img img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    object-position: left;
}

.offer-and-discount .custom-btn {
    min-width: max-content;
}

.offer-details {
    max-width: 60%;
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 1rem 0;
    line-height: 1.5;
}

.booking-left-and-btn {
    gap: 2rem;
}

.booking-left-and-btn p {
    font-size: 1.4rem;
    line-height: 1.4;
}

.custom-btn-1 {
    display: flex;
    min-width: max-content;
    text-decoration: none;
    background: var(--secondary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 0.8rem;
    font-size: 1.4rem;
    color: var(--default-color);
    transition: all 0.5s;
}

.custom-btn-1:hover {
    background: #17447D;
}

.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: 4rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.section-hading-para {
    margin-bottom: 3rem;
}

.section-hading-para .section-heading {
    margin-bottom: 0.5rem;
}

.travel-gallery {
    position: relative;
    height: 45rem;
}

.travel-card {
    position: absolute;
    width: 30rem;
    height: 35rem;
    border-radius: 3rem;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,.15);
    cursor: pointer;
    transition: .4s;
}

.travel-card-img {
    width: 100%;
    height: 100%;
}

.travel-card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.travel-card-details {
    position: absolute;
    bottom: 0;
    padding: 1rem;
    background: rgba(0,0,0,0.6);
    text-align: center;
}

.travel-card-details .column-heading {
    color: var(--default-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    -webkit-line-clamp: 1;
}

.travel-card-details p {
    color: var(--default-color);
    font-size: 1.5rem;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Position */

.card1 {
    left: 0;
    top: 60px;
    transform: rotate(-8deg);
    z-index: 1;
}

.card2{
    left:220px;
    top:0;
    transform:rotate(-8deg);
    z-index:2;
}

.card3{
    left:500px;
    top:50px;
    z-index:3;
}

.card4{
    right:-20px;
    top:20px;
    transform:rotate(-8deg);
    z-index:2;
}

/* Hover Effect */
.travel-card:hover{
    z-index:999;
    transform:translateY(-20px) scale(1.05) rotate(0deg);
}

.travel-cultrure-details p {
    color: #878FA7;
}

.travel-cultrure-details .custom-btn {
    margin: auto;
    margin-top: 2rem;
}

/* footer starts here */

footer {
    background: var(--title-color);
    padding: 5rem 0 2rem;
}

.footer-logo {
    margin-bottom: 1rem;
    width: 16rem;
}

.footer-logo a {
    display: block;
}

footer p {
    color: var(--default-color);
    font-weight: 100;
    font-size: 1.5rem;
}

.social-icon {
    gap: 0.5rem;
    margin-top: 2rem;
}

.social-icon a {
    border: 1px solid var(--default-color);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--default-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(--primary-color);
}

.newslatter-form {
    max-width: 100%;
    position: relative;
}

.newslatter-form .newslatter-group {
    background: 0;
    border: 1px solid var(--default-color);
    border-radius: 5rem;
    padding: 1.3rem 4rem;
    font-size: 1.5rem;
    position: relative;
    margin: 0;
    max-width: 100%;
    width: 100%;
}

.newslatter-form .newslatter-group::before {
    position: absolute;
    content: "\f0e0";
    font-family: 'FontAwesome';
    color: var(--default-color);
    left: 1.5rem;
}

.newslatter-group .form-control {
    background: 0;
    border: 0;
    padding: 0;
    font-size: 1.4rem;
    width: 100%;
    max-width: 100%;
}

.newslatter-group .form-control::placeholder{
    color: var(--default-color);
}

.newslatter-group .form-control:focus{
    box-shadow: none;
}

.copyright {
    padding-top: 2rem;
    border-top: 1px solid #101010;
    margin-top: 3rem;
}

.copyright p {
    font-size: 1.3rem;
}

/* footer ends here */

.custom-bg {
    background: var(--light-color);
}

.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;
}

.column-heading {
    font-size: 2rem;
    line-height: 1.4;
    color: var(--secondary-color);
    font-weight: 800;
    margin-bottom: 1.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.column-heading a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s;
}

.column-heading a:hover {
    color: var(--primary-color);
}

.city-name {
    font-size: 1.4rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.city-name i {
    margin-right: 0.5rem;
}

.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;
}

.custom-btn-2 {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}

.custom-btn-2:hover {
    color: var(--secondary-color);
    transform: translateX(3px);
}

.custom-btn-2 i {
    margin-left: 0.5rem;
}

.vertical-ads {
    border-radius: 3rem;
    overflow: hidden;
    max-height: 46rem;
}

.category-box {
    border: 1px solid #E4E6E8;
    border-radius: 3rem;
    padding: 2rem;
}

.category-img {
    width: 100%;
    height: 13rem;
    overflow: hidden;
    border-radius: 3rem;
    margin-bottom: 2rem;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}

.category-box:hover img {
    transform: scale(1.05);
}

.custom-btn-3 {
    display: flex;
    text-decoration: none;
    background: var(--light-color);
    width: 4rem;
    height: 4rem;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--title-color);
    box-shadow: 0 0 9px #ddd;
    transition: all 0.5s;
}

.custom-btn-3:hover {
    transform: translateX(3px);
    background: var(--secondary-color);
    color: var(--default-color);
}

.slider-ads-item {
    display: block;
    width: 100%;
    height: 26rem;
    overflow: hidden;
    border-radius: 3rem;
}

.slider-ads-item img {
    width: 100%;
    height: 100%;
    transition: all 0.4s;
}

.slider-ads-item:hover img {
    transform: scale(1.05);
}

.three-item-slider .owl-nav button,
.partners-slider .owl-nav button {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto !important;
}

.three-item-slider .owl-nav button.owl-prev,
.partners-slider .owl-nav button.owl-prev {
    left: -4rem;
}

.three-item-slider .owl-nav button.owl-next,
.partners-slider .owl-nav button.owl-next {
    right: -4rem;
}

.three-item-top-slider .owl-nav {
    position: absolute;
    top: -9rem;
    right: 0;
    margin: 0;
}

.three-item-slider .owl-nav button, .three-item-top-slider .owl-nav button,
.partners-slider .owl-nav button {
    width: 4rem;
    height: 4rem;
    background: var(--primary-color) !important;
    color: var(--default-color) !important;
    border-radius: 50% !important;
}

.news-img {
    width: 100%;
    height: 29rem;
    overflow: hidden;
    border-radius: 2rem;
}

.news-img a img {
    width: 100%;
    height: 100%;
    transition: all 0.4s;
}

.news-box:hover .news-img img {
    transform: scale(1.05);
}

.news-details {
    padding: 1.5rem  2rem;
}

.post-date {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.news-details .custom-btn-2 {
    margin-top: 1rem;
}

.globally-partners {
    overflow: hidden;
    position: relative;
}

.partners-slider .item {
    padding: 1rem;
}

.partner-item {
    box-shadow: 0px 4px 8px 0px #0000001A, 1px 2px 5px 0px #00000017;
    background: var(--default-color);
    padding: 1rem 0.5rem;
    border-radius: 3rem;
    overflow: hidden;
    text-decoration: none;
    gap: 0.4rem;
    justify-content: center;
    transition: all 0.3s;
    margin-bottom: 2rem;
}

.partner-item:last-child {
    margin-bottom: 0;
}

.partner-item:hover {
    transform: translateY(-5px);
}

.partner-img {
    width: 3rem;
    height: 2.5rem;
}

.partner-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partner-item h3 {
    font-size: 1.4rem;
    color: var(--title-color);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

/* train routes starts */

.listing-search-form {
    display: flex;
    border: 1px solid rgb(0 0 0 / 25%);
    border-radius: 5rem;
    padding: 0.6rem 2rem;
    margin-bottom: 3rem;
}

.listing-search-form .form-control {
    border: 0;
    background: 0;
    padding: 0;
    font-size: 1.5rem;
    font-weight: 500;
}

.listing-search-form .form-control::placeholder{
    color: rgb(0 0 0 / 25%);
}

.listing-search-form .form-control:focus {
    outline: none;
    box-shadow: none;
}

.search-icon {
    width: 4rem;
    cursor: pointer;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.route-item {
    border: 1px solid #FF4E50;
    border-radius: 10rem;
    padding: 0rem 0 0rem 2rem;
}

.route-item-left {
    width: 18rem;
}

.route-item-logo {
    width: 4rem;
    height: 4rem;
    min-width: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.route-item-logo::after {
    position: absolute;
    content: '';
    background: #ddd;
    width: 1px;
    height: 100%;
    right: -0.5rem;
}

.route-item-logo img {
    width: 100%;
    height: auto;
    max-height: 4rem;
    object-fit: contain;
}

.route-item-img {
    width: 5rem;
    padding-right: 1rem;
    border-right: 1px solid #ddd;
}

.route-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.route-name-and-date {
    padding-left: 1rem;
}

.route-name {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--secondary-color);
}

.route-name span {
    font-weight: 900;
}

.route-date {
    font-size: 1.5rem;
    color: #3A3A3A;
}

.route-icon {
    width: 4rem;
    margin-left: 3rem;
    margin-right: 2rem;
}

.route-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ticket-price {
    background: var(--primary-color);
    flex: 1;
    border-radius: 5rem;
    padding: 1rem;
    text-align: center;
    display: flex;
    justify-content: center;
    min-width: 17rem;
    max-width: 17rem;
    margin-left: auto;
    transition: all 0.3s;
}

.ticket-price:hover {
    background: var(--secondary-color);
}

.ticket-price a {
    font-size: 2.5rem;
    color: var(--default-color);
    text-decoration: none;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}

/* train routes ends */

/* comparison page starts */

.travel-banner-section{
    position:relative;
}

.travel-slide{
    position:relative;
    height:50rem;
    overflow:hidden;
}

.travel-bg{
    width:100%;
    height:100%;
    object-fit:cover;
}

.travel-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
}

.travel-content {
    position: absolute;
    left: 8rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--default-color);
    max-width: 70rem;
    z-index: 9;
}

.travel-thumb-box {
    position: absolute;
    right: 6rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
}

.travel-thumb {
    width: 16rem;
    height: 12rem;
    border-radius: 1.5rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    cursor: pointer;
    border: 3px solid var(--default-color);
    transition: .4s;
}

.travel-thumb.active{
    border-color: var(--primary-color);
}

.travel-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overview-box {
    gap: 1rem;
    margin-top: 2rem;
}

.overview-item {
    border: 1px solid #F1592A4D;
    background: #FFF4F0;
    border-radius: 1rem;
    padding: 1rem;
    min-width: 20%;
}

.overview-item h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.4rem;
}

.overview-item p {
    font-size: 1.4rem;
    line-height: 1.4;
}

.overview-right-img {
    border-radius: 3rem;
    overflow: hidden;
    width: 100%;
    height: 36rem;
}

.overview-right-img img {
    width: 100%;
    height: 100%;
}

.train-routes-item {
    border: 1px solid #F1592A40;
    padding: 2rem 2.5rem 3rem;
    border-radius: 2rem;
}

.route-destination {
    gap: 1rem;
    margin-bottom: 2rem;
}

.train-icon {
    width: 6rem;
    height: 6rem;
    background: #F1592A33;
    border-radius: 1.5rem;
    padding: 1.1rem;
}

.route-destination h3 a {
    font-size: 1.6rem;
    color: var(--secondary-color);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.route-destination h3 a:hover {
    color: var(--primary-color);
}

.route-from-and-to {
    gap: 2rem;
}

.route-from-and-to span {
    font-size: 1.6rem;
}

.route-hours {
    position: relative;
}

.route-hours span {
    color: var(--title-color);
    position: relative;
}

.route-hours span::after {
    position: absolute;
    content: '\f239';
    font-family: 'FontAwesome';
    font-size: 1.4rem;
    left: 1rem;
    top: -1rem;
}

.route-hours-number {
    position: absolute;
    font-size: 1.2rem;
    min-width: max-content;
    bottom: -1.4rem;
    left: -6px;
    color: #6A7695 !important;
}

.train-chart-table thead tr th {
    background: #F1592A33;
    padding: 0.8rem 1.5rem;
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 600;
}

.train-chart-table thead tr th:first-child {
    border-radius: 1.5rem 0 0 0 !important;
}

.train-chart-table thead tr th:last-child {
    border-radius: 0 1.5rem 0 0 !important;
}

.train-chart-table tbody tr td {
    padding: 0.8rem 1.5rem;
    vertical-align: middle;
    color: #6A7695;
    font-size: 1.5rem;
}

.train-chart-table tbody tr td .custom-btn {
    margin-left: auto;
}

.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(--secondary-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);
}

.book-ticket-list {
    margin: 0;
}

.book-ticket-list li {
    list-style: decimal;
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.book-ticket-list li:last-child {
    margin: 0;
}

.travel-tips-column {
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.travel-tips-icon {
    width: 6rem;
    height: 6rem;
    background: #F1592A1A;
    padding: 1rem;
    border-radius: 1.5rem;
    border: 1px solid #F1592A33;
    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(--secondary-color);
}

.attractions-item {
    border: 1px solid #00000033;
    border-radius: 1.5rem;
    overflow: hidden;
}

.attractions-img {
    width: 100%;
    height: 17rem;
}

.attractions-img a {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}

.attractions-img a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.attractions-item:hover img {
    transform: scale(1.05);
}

.attractions-details {
    padding: 1rem;
}

.attractions-details .column-heading {
    font-size: 2rem;
    margin-bottom: 0rem;
}

/* comparison page ends */

.featured-destination .three-item-slider .item,
.similar-destination .three-item-slider .item{
    padding: 0.6rem;
}

.all-destinations-left .column-heading {
    -webkit-line-clamp: 1;
}

.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);
}

.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(--secondary-color) !important;
    height: auto;
    color: var(--secondary-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;
}

.subscribe-box {
    margin-top: 2rem;
    box-shadow: 0 0 9px #ddd;
    padding: 1.5rem;
    border-radius: 0.8rem;
}

.subscribe-box p {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    text-align: center;
}

.subscribe-form .form-control {
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--secondary-color);
    border-radius: 0.6rem;
    width: 100%;
}

.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 */

/* about us starts */

.page-hero {
    background: linear-gradient(135deg, #fcc285 0%, #f1592a 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: var(--default-color);
    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(--secondary-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(--secondary-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 */

/* flight comparison page starts here */

.travellers-section {
    background: var(--light-color);
    overflow: hidden;
}

.travellers-section .section-heading {
    margin-bottom: 5rem;
}

.travel-slider{
    position:relative;
}

.deal-card{
    height:320px;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    transform:scale(.85);
    opacity:.45;
    position:relative;
}

.deal-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.deal-card img:hover {
    transform: scale(1.05);
}

.travel-slider .owl-item.center .deal-card{
    transform:scale(1.15);
    opacity:1;
    z-index:1;
}

.deal-info{
    opacity:0;
    visibility:hidden;
    transition:.35s;
}

.travel-slider .owl-stage-outer{
    overflow: visible !important;
}

.travel-slider .item {
    text-align: center;
    padding-bottom: 9rem;
}

.travel-slider .owl-item.center .deal-info{
    opacity:1;
    visibility:visible;
}

.travel-slider .owl-nav{
    margin:0;
}

.travel-slider .owl-prev,
.travel-slider .owl-next{
    width: 4.5rem;
    height: 4.5rem;
    border-radius:50% !important;
    position:absolute;
    top:40%;
    transform:translateY(-50%);
    display:flex !important;
    align-items:center;
    justify-content:center;
    background:var(--secondary-color) !important;
    color:#fff !important;
    font-size:14px !important;
}

.travel-slider .owl-prev{
    left: -6rem;
}

.travel-slider .owl-next{
    right: -6rem;
}

.travel-slider .owl-prev:hover,
.travel-slider .owl-next:hover{
    opacity:.8;
}

.price-tag {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 7.5rem;
    background: var(--secondary-color);
    color: var(--default-color);
    padding: 1.4rem 3rem;
    border-radius: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    min-width: 15rem;
    z-index: 99;
    line-height: 1;
}

.route-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    font-size: 3rem;
    font-weight: 600;
    white-space: nowrap;
}

.route-text a {
    color: var(--title-color);
    text-decoration: none;
    transition: all 0.3s;
}

.route-text a:hover {
    text-decoration: underline;
    margin-left: 0.5rem;
}

.route-text span{
    margin:0 10px;
}

.flight-offers {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.flight-offers-img {
    display: block;
    width: 100%;
    height: 30rem;
    border-radius: 1rem;
    overflow: hidden;
}

.flight-offers-img img {
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}

.flight-offers-img img:hover {
    transform: scale(1.05);
}

.flight-offers-details-top {
    position: absolute;
    top: 0;
    padding: 2rem 1rem;
    text-align: center;
    color: var(--default-color);
}

.flight-offers-details-top h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.flight-offers-details-top p {
    font-weight: 500;
    font-size: 1.5rem;
}

.flight-offers-details .custom-btn {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    margin: auto;
}

.trending-destination .item{
    padding: 0.6rem;
}

.tr-dest-column {
    background: var(--default-color);
    padding: 1rem;
    border-radius: 1rem;
    gap: 1.4rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 9px #ddd;
    transition: all 0.3s;
}

.tr-dest-column:hover {
    transform: translateY(-3px);
}

.tr-dest-img {
    width: 12rem;
    min-width: 12rem;
    height: 11rem;
    border-radius: 1rem;
    overflow: hidden;
}

.tr-dest-img a {
    display: block;
    width: 100%;
    height: 100%;
}

.tr-dest-img a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s;
}

.tr-dest-column:hover img {
    transform: scale(1.15);
}

.tr-dest-details {
    flex: 1;
}

.tr-dest-details h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 0.3rem;
}

.tr-dest-details h3 a {
    color: var(--title-color);
    text-decoration: none;
    transition: all 0.3s;
}

.tr-dest-details h3 a:hover {
    color: var(--secondary-color);
}

.tr-dest-details p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.tr-dest-details .post-author {
    padding: 0;
    margin: 0;
}

.tr-dest-details .post-author p {
    font-size: 1.3rem;
}

.section-hading-para {
    margin-bottom: 3rem;
}

.section-hading-para .section-heading {
    margin-bottom: 0.5rem;
}

.destination-city-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem 0.5rem;
}

.dest-city-item {
    border: 1px solid var(--secondary-color);
    padding: 1.2rem;
    border-radius: 1rem;
    transition: all 0.3s;
}

.dest-city-item:hover {
    transform: translateY(-4px);
}

.dest-city-img {
    width: 100%;
    height: 15rem;
    overflow: hidden;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.dest-city-img img {
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}

.dest-city-title a {
    font-size: 2rem;
    text-decoration: none;
    color: var(--title-color);
    margin-bottom: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    transition: all 0.3s;
}

.dest-city-title a:hover {
    color: var(--secondary-color);
}

.dest-city-price {
    color: var(--title-color);
    font-size: 1.5rem;
}

.circle-btn {
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(180deg, #FAD763 0%, #FE5CCB 100%) border-box;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    padding: 0.8rem;
    transition: all 0.3s;
}

.circle-btn:hover {
    background: linear-gradient(180deg, #FAD763 0%, #FE5CCB 100%);
    z-index: 9;
    transform: translateX(2px);
}

.circle-btn i {
    color: var(--secondary-color);
    line-height: 0;
    font-size: 2rem;
    transition: all 0.5s;
}

.globally-partners-list {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem 2.5rem;
    justify-content: center;
}

.partners-slider .item {
    padding: 1rem;
}

.flight-finder-list {
    margin: 0;
    padding: 0;
}

.flight-finder-list li {
    list-style: none;
    position: relative;
    padding-left: 3.5rem;
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.flight-finder-list li::before {
    position: absolute;
    content: "\f2f6";
    font-family: 'FontAwesome';
    left: 0;
    top: 1px;
    font-size: 2rem;
    color: var(--secondary-color);
}

.flight-finder-right {
    box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 3rem;
    width: 38rem;
    height: 38rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--light-color);
    margin-left: auto;
}

.flight-finder-right img {
    width: 22rem;
    height: 24rem;
}

.popular-destination-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 1rem;
}

.popular-dest-item {
    display: inline-block;
    text-decoration: none;
    color: var(--title-color);
    font-size: 1.6rem;
    font-weight: 400;
    transition: all 0.3s;
}

.popular-dest-item:hover {
    text-decoration: underline;
    color: var(--secondary-color);
    transform: translateX(2px);
}

.full-cat-grid-container {
    display: flex;
    gap: 20px;
}

.cat-grid-left {
    width: 250px;
    min-width: 250px;
    border: 1px solid #ddd;
    padding: 25px 15px;
    border-radius: 1rem;
}

.cat-grid-number {
    margin-bottom: 10px;
}

.cat-grid-number:last-child {
    margin-bottom: 0;
}

.cat-grid-number h4 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
}

.cat-grid-number p {
    font-size: 16px;
    font-weight: 700;
}

.cat-grid-right {
    width: calc(100% - 250px);
    margin-top: 20px;
}

.comparison_car_container_top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 16%;
}

.comparison_carColumn {
    padding: 20px;
    box-shadow: 0 0 9px #ddd;
    border-radius: 10px;
}

.comparison_addCar_icon {
    background: var(--default-color);
    width: 8rem;
    height: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    border-radius: 100%;
    box-shadow: -1px 2px 9px #a3a0a0;
}

.comparison_addCar_icon i {
    font-size: 3rem;
    color: var(--secondary-color);
}

.comparison_addCar_icon img {
    width: 5rem;
}

.comparison_addCarHead {
    font-size: 1.6rem;
    text-align: center;
    margin-top: 1.5rem;
    color: var(--title-color);
    font-weight: 600;
}

.comparison_car_selectItem {
    margin-top: 1.5rem;
}

.compare-column {
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: 0 0 9px #ddd;
    background: var(--default-color);
}

.compare-item {
    text-align: center;
    width: 50%;
    text-decoration: none;
    display: block;
}

.compare-item:first-child {
    position: relative;
}

.compare-item:first-child::before {
    position: absolute;
    content: "";
    background: #f1592a;
    width: 1px;
    height: 84%;
    right: -1.5rem;
    top: 0;
    bottom: 0;
    margin: auto;
}

.compare-item-img {
    width: 100%;
    height: 5rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

.compare-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.compare-column span {
    width: 3rem;
    height: 3rem;
    background: var(--default-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    min-width: 3rem;
    font-size: 1.5rem;
    color: var(--title-color);
    line-height: 0;
    position: relative;
    border: 1px solid var(--primary-color);
}

.compare-heading {
    font-size: 1.5rem;
    color: var(--title-color);
    margin-top: 1rem;
    margin-bottom: 0.2rem;
}

.compare-price {
    color: #3a3a3a;
    font-weight: 400;
    font-size: 1.3rem;
}

.compare-column .custom-btn {
    max-width: 100%;
    margin: auto;
    margin-top: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 5rem;
    padding: 1rem 0.5rem;
}

.comparison-portals, .flight-finder {
    overflow: hidden;
}

/* partner circle logo starts here */

.partner-circle-box {
    width: 100%;
    height: 40rem;
    margin: auto;
    position: relative;
}

.orbit {
    width: 32rem;
    height: 32rem;
    border: 2px dashed #ffcebc;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.center-logo {
    width: 16rem;
    height: 16rem;
    background: #fff;
    border-radius: 3rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, .08);
    z-index: 2;
}

.center-logo a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.center-logo img {
    width: 100%;
    height: 100%;
}

.partner-circle-item {
    width: 10rem;
    height: 10rem;
    background: #fff;
    border-radius: 2rem;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 3px 20px rgb(0 0 0 / 19%);
    transition: .3s;
    overflow: hidden;
}

.partner-circle-item:hover img {
    transform: scale(1.08);
}

.partner-circle-item img {
    max-width: 90%;
    transition: all 0.5s;
}

.partner-circle-item-1 {
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
}

.partner-circle-item-2 {
    top: 12rem;
    right: 4rem;
}

.partner-circle-item-3 {
    bottom: 1rem;
    right: 8rem;
}

.partner-circle-item-4 {
    bottom: 1rem;
    left: 7rem;
}

.partner-circle-item-5 {
    top: 10rem;
    left: 4rem;
}

/* partner circle logo ends here */

/* flight comparison page ends here */

/* 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: 2rem;
    left: 2rem;
    z-index: 9;
}

.on-banner-review-img {
    display: block;
    width: 100%;
    height: 40rem;
    border-radius: 3rem;
    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(--secondary-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;
    color: var(--default-color);
}

.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;
}

/* News item card */
.blog-news-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-item {
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.news-item:last-child {
    border-bottom: 0;
}

.news-item-img {
    flex-shrink: 0;
    width: 22rem;
    min-width: 22rem;
}

.news-item-img figure {
    width: 100%;
    height: 18rem;
    overflow: hidden;
    border-radius: 0.8rem;
    margin: 0;
}

.news-item-img figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}

.news-item-img:hover figure img {
    transform: scale(1.05);
}

.news-item-text {
    flex: 1;
}

.items-heading {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--title-color);
    margin-bottom: 0.8rem;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
}

.items-heading:hover,
.news-item-text > a:hover .items-heading {
    color: var(--primary-color);
}

.news-item-text > a {
    text-decoration: none;
}

.news-item-text > a:hover .items-heading {
    color: var(--primary-color);
}

.items-meta {
    flex-wrap: wrap;
}

.items-meta span {
    font-size: 1.3rem;
    color: #888;
}

.items-meta i {
    color: var(--primary-color);
}

.news-item-text p {
    margin-bottom: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.recent-news-right {
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 1rem;
    background: #fafafa;
    position: sticky;
    top: 2rem;
}

.recent-news-right > .column-heading {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1592a;
}

.recent-news-right-items {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.6rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid #eee;
}

.recent-news-right-items:last-of-type {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-news-smlImg {
    display: block;
    flex-shrink: 0;
}

.recent-news-smlImg figure {
    width: 7rem;
    height: 6rem;
    overflow: hidden;
    border-radius: 0.6rem;
    margin: 0;
}

.recent-news-smlImg figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}

.recent-news-smlImg:hover figure img {
    transform: scale(1.08);
}

.recent-news-right-items-text {
    flex: 1;
}

.recent-news-right-items-text .column-heading {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--title-color);
    text-decoration: none;
    display: block;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    transition: all 0.3s;
}

.recent-news-right-items-text .column-heading:hover {
    color: var(--primary-color);
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    margin: 18px 0 25px;
    padding-bottom: 18px;
    border-bottom: 1px solid #ececec;
    color: #666;
    font-size: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-meta i {
    color: var(--primary-color);
    font-size: 15px;
}

.blog-meta strong {
    color: #222;
    font-weight: 600;
}

.blog-news-content, .blog-details-content {
    font-size: 15px;
}

/* individual compare starts */

.saperate-container {
  padding: 18px;
  box-shadow: 0 0 9px #ddd;
  border-radius: 10px;
}

.compare-items-container {
  display: flex;
  gap: 0px;
  padding: 0 18px;
  align-items: center;
}

.compare-items {
  width: 25%;
  border-left: 1px solid #ddd;
  padding: 0 15px;
  position: relative;
}

.compare-items:first-child {
  border-left: transparent;
  display: flex;
  align-items: center;
}

.compare-items-img {
  display: block;
  width: 100%;
  height: 5rem;
}

.compare-items-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.compare-items-details {
  text-align: center;
  position: relative;
  margin-top: 5px;
}

.caar-heading {
  font-size: 18px;
  padding-top: 5px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--title-color);
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.caar-heading a {
  text-decoration: none;
  color: var(--title-color);
}

.caar-price {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 2px;
}

.review-rating span {
  font-size: 20px;
  font-weight: 800;
  margin-right: 10px;
}

.rating-star i {
  font-size: 14px;
  color: #b3b3b3;
}

.rating-fill {
  color: #ffbf0b !important;
}

.review-rating p {
  font-size: 12px;
  margin-left: 5px;
  color: #878585;
}

.compare-add-car {
  width: 100%;
  height: 17.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.compare-sticky .saperate-container .section-heading {
  margin-bottom: 2px;
  display: none;
}

.compare-sticky .compare-items {
  min-height: auto;
}

.compare-sticky .compare-items-img {
  height: 60px;
}

.compare-sticky .compare-items-details {
  padding: 0;
  margin-top: 0px;
  box-shadow: none;
}

.compare-sticky .compare-items-details .caar-heading {
  font-size: 14px;
  margin-bottom: 5px;
}

.compare-sticky .compare-items-details .review-rating span {
  font-size: 14px;
  margin-right: 5px;
}

.compare-sticky .compare-items-details .rating-star i,
.compare-sticky .compare-items-details .review-rating p {
  font-size: 10px;
}

.compare-sticky .compare-add-car {
  height: auto;
  padding-top: 15px;
}

.car-key-accordian {
  box-shadow: 0 0 9px #ddd;
  border-radius: 10px;
  border-bottom: 0;
}

.car-key-accordian .car-key-accordian-header {
  padding: 18px 18px;
  margin-bottom: 0;
  border-radius: 10px;
  border: none;
}

.car-key-accordian-header h2 {
  display: flex;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.car-key-accordian-header h2::after,
.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;
}

.car-key-accordian-header h2:not(.collapsed)::after,
.faq-header h2:not(.collapsed)::after {
  content: "\f068";
  font-family: "FontAwesome";
  transform: rotate(180deg);
  background: none;
  color: var(--primary-color);
}

.compare-car-key-body {
  padding: 0 18px 10px;
  overflow: auto;
}

.compare-car-key-body table {
  background: #f9f9f9;
  margin: 0;
}

.compare-car-key-body thead tr th {
    text-align: center;
    border-bottom: 1px solid #dee2e6;
    width: 25%;
    background: #f8f8f8;
    padding: 1.4rem 2rem;
}

.compare-car-key-body thead tr th:first-child,
.compare-car-key-body table tbody tr td:first-child {
  text-align: left;
}

.compare-car-key-body table tbody tr td {
  text-align: center;
  padding: 1.4rem 2rem;
}

.compare-car-key-body thead tr th:first-child,
.compare-car-key-body table tbody tr td:first-child {
  text-align: left;
}

.compare-add-car-popUp .modal-dialog {
  max-width: 350px;
}

.compare-add-car-popUp .modal-content {
  padding: 30px;
  border-radius: 10px;
}

.compare-add-car-popUp .modal-content .close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--secondary-color);
  opacity: 1;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  padding: 0;
  align-items: center;
  color: var(--default-color);
  border: 0;
  font-size: 3rem;
}

.compare-add-car-popUp .modal-content .comparison_carColumn {
  box-shadow: none;
  padding: 0;
}

.compare-grid-container {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0 !important;
  padding: 0 !important;
  border: 1px solid #ddd;
  border-radius: 1rem;
  overflow: auto;
}
.compare-grid-column {
  padding: 0 !important;
  border-left: 1px solid #ddd;
}
.compare-grid-column:first-child {
  border-left: none;
}
.compare-grid-column .col-head {
  background: #f8f8f8;
  padding: 1.4rem 2rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  border-bottom: 1px solid #ddd;
  text-align: center;
}
.compare-grid-column:first-child .col-head {
  text-align: left;
}
.compare-grid-column .col-row {
  padding: 1.2rem 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #3a3a3a;
  border-bottom: 1px solid #f0f0f0;
  text-align: center;
  line-height: 1.6;
}
.compare-grid-column:first-child .col-row {
  text-align: left;
  font-weight: 600;
  color: #555;
  /* background: #fafafa; */
}
.compare-grid-column .col-row:last-child {
  border-bottom: none;
}

/*  sticky header  */
.compare-sticky-header {
  width: 100%;
  background: #fff;
  transition: all 0.2s ease;
  margin-top: 2rem;
}
.compare-sticky-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  margin-top: 0 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.compare-sticky-header.is-sticky .compare-items {
  min-height: auto;
}
.compare-sticky-header.is-sticky .compare-items-img {
  height: 3rem;
}
.compare-sticky-header.is-sticky .caar-heading {
  font-size: 1.4rem;
}
.compare-sticky-header.is-sticky .saperate-container .section-heading {
  display: none;
}
.compare-sticky-header.is-sticky .compare-add-car {
  height: auto;
  padding-top: 1.5rem;
}

.route-discount {
    background: var(--primary-color);
    border-radius: 3rem;
    padding: 1.4rem 1.5rem;
    margin-left: 1rem;
    margin-top: 0rem;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0;
    font-weight: 700;
    height: max-content;
    color: var(--default-color);
    font-size: 1.3rem;
}

.compare-sticky-header .section-heading, .compare-flight-spec .section-heading {
    font-size: 3rem;
    line-height: 1.4;
}

/* Cancel button on each flight card */
.compare-remove-btn {
    position: absolute;
    top: 0;
    right: 0.6rem;
    width: 2.6rem;
    height: 2.6rem;
    background: var(--secondary-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    transition: transform 0.4s, box-shadow 0.2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.compare-remove-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 10px rgba(254, 92, 203, 0.4);
}
.compare-remove-btn i {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1;
}

/* badge */
.default-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--default-color);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 5rem;
    padding: 0.2rem 0.8rem;
    margin-left: 0.4rem;
    vertical-align: middle;
}

/* accordion */
.car-key-accordian {
  box-shadow: 0 0 9px #ddd;
  border-radius: 1rem;
  margin-top: 2rem;
}
.car-key-accordian-header {
  padding: 1.8rem;
  border-radius: 1rem;
}
.car-key-accordian-header h2 {
  display: flex;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  margin: 0;
}
.car-key-accordian-header h2::after {
  content: "\f067";
  font-family: "FontAwesome";
  margin-left: auto;
  font-size: 1.4rem;
  color: #000;
}
.car-key-accordian-header h2:not(.collapsed)::after {
  content: "\f068";
}
.compare-car-key-body {
  padding: 0 1.8rem 1.8rem;
  overflow-x: auto;
}
.compare-car-key-body table {
  background: #f9f9f9;
  font-size: 1.4rem;
  min-width: 50rem;
}
.compare-car-key-body thead th {
  text-align: center;
  border-bottom: 2px solid #dee2e6;
}
.compare-car-key-body thead th:first-child,
.compare-car-key-body tbody td:first-child {
  text-align: left;
  font-weight: 600;
}
.compare-car-key-body tbody td {
  text-align: center;
}

.similar-compare .three-item-slider .item,
.travel-routes .three-item-slider .item {
    padding: 0.6rem;
}

/* individual compare ends */

/* train details page starts */

.ind-top-left {
  width: 50%;
  float: left;
  margin-right: 20px;
}

.ind-top-left figure {
    width: 100%;
    height: 34rem;
    margin-bottom: 0.2rem;
    border-radius: 1rem;
    overflow: hidden;
}

.ind-top-left figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ind-top-right-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  align-items: flex-start;
}

.ind-top-right-heading-left h1 {
    font-size: 25px;
    font-weight: 800;
    color: var(--secondary-color);
}

.ind-top-right-heading .share-icon {
  margin-top: 0.5rem;
  align-items: center;
}

.share-icon {
  display: flex;
  gap: 12px;
}

.share-icon i {
  font-size: 20px;
  color: var(--secondary-color);
}

.like-btn i {
  cursor: pointer;
}

.like-btn {
  color: #666;
  transition: 0.3s;
}

.like-btn.liked {
  color: #e53935;
}

.like-btn.liked i {
  font-weight: 900;
}

.social-share-item {
  position: relative;
}

.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;
}

.write-review-and-win {
  margin: 10px 0 10px;
  border-radius: 10px;
}

.write-review-and-win-left h4 {
  font-size: 15px;
}

.review-rating span {
  font-size: 20px;
  font-weight: 800;
  margin-right: 10px;
}

.write-review-and-win-right {
  margin-left: 20px;
}

.write-review-and-win-right .custom-btn {
    background: 0;
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 14px;
    padding: 8px 22px;
    border: 1px solid var(--primary-color);
}

.discount-price {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  flex-wrap: wrap;
}

.highlight-text {
  font-size: 1.5rem;
}

.discount-price > i {
  margin-right: 5px;
}

.btn-and-updates-row {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.btn-and-updates-row .custom-btn:last-child {
    background: 0;
    color: var(--primary-color);
}

.btn-and-updates-row .custom-btn:hover:last-child {
  background: var(--primary-color);
  color: var(--default-color);
}

.left-side-bar .section-heading {
  font-size: 3rem;
}

.latest-updates-tag {
  background: #fbfbfb;
  padding: 14px 5px 8px;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 15px;
}

.latest-updates-tag h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  white-space: nowrap;
  padding-right: 80px;
}

.ind-top-right-content-details,
.ind-top-right-content-details p,
.ind-top-right-content-details p span {
  font-size: 15px !important;
  color: #525252 !important;
  line-height: 1.7;
  text-align: justify !important;
  font-family: "Montserrat", sans-serif !important;
}

.ind-top-right-content-details button {
  border: 0;
  background: 0;
  color: #4d4d4d;
  font-weight: 600;
  padding: 0;
  font-size: 14px;
}

.individual-flight-routes .flight-item {
  padding: 0rem 0 0rem 1rem;
}

.individual-flight-routes .flight-item-left {
  width: 42%;
}

.individual-flight-routes .flight-item-logo {
  width: 2rem;
  min-width: 3rem;
}

.individual-flight-routes .flight-icon {
  width: 2rem;
  margin-left: 0rem;
  margin-right: 0rem;
}

.individual-flight-routes .ticket-price {
  max-width: 7rem;
  min-width: 7rem;
}

.individual-flight-routes .ticket-price a {
  font-size: 1.6rem;
  color: var(--primary-color);
  text-decoration: none;
}

/* price tabs starts here */

.car-price-tab-container,
.car-specs-container,
.latest-updates {
  box-shadow: 0 0 9px #ddd;
  padding: 18px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.car-price-nav-list {
  border-bottom: 0;
  gap: 10px;
  margin-bottom: 15px;
}

.car-price-nav-list .nav-link {
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  border-radius: 5px;
  background: 0;
  font-size: 14px;
  padding: 6px 10px;
}

.car-price-nav-list .nav-link.active,
.car-price-nav-list .nav-link:hover {
  background: var(--secondary-color);
  color: var(--default-color);
}

.car-price-tab-table {
  margin-bottom: 0;
}

.car-price-tab-table tbody tr td {
  border-top: 0;
  border-bottom: 1px dashed #ddd;
  padding: 10px;
  padding-bottom: 12px;
}

.car-price-tab-table thead th {
  border: 0;
  font-size: 14px;
  font-weight: 700;
  padding: 8px;
  vertical-align: top;
}

.car-price-tab-table thead th .custom-btn-1 {
  font-size: 11px;
  margin: 0;
  font-weight: 600;
  color: var(--secondary-color);
}

.car-price-tab-table {
  line-height: 1;
}

.car-price-tab-table tbody td span {
  font-size: 12px;
  font-weight: 500;
  line-height: 0;
}

.car-price-tab-table tbody td h4 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
}

.car-price-tab-table tbody td p {
  font-size: 12px;
  color: #5e5e5e;
  margin-bottom: 5px;
}

.price-view-details {
  gap: 30px;
}

.price-details-on-road > p {
  color: var(--primary-coor) !important;
  font-weight: 800;
}

.price-details-on-road a {
  color: var(--secondary-color);
  font-size: 12px;
  font-weight: 600;
}

.price-view-details-right .custumBtn {
  border-radius: 5px;
  font-size: 13px;
  margin-top: 0;
  text-align: center;
  padding: 8px 10px;
}

.view-more-item {
  border-bottom: none !important;
}

/* price tabs ends here */
/* tab filters ends here */

.left-side-bar .section-heading h2 {
  text-align: center;
  font-weight: 600;
}

.latest-updates-item {
  padding-bottom: 10px;
  padding-left: 15px;
  position: relative;
}

.latest-updates-item::before {
  position: absolute;
  content: "";
  background: var(--primary-color);
  width: 6px;
  height: 6px;
  left: 0;
  top: 15px;
  border-radius: 50%;
}

.latest-updates-item::after {
  position: absolute;
  content: "";
  background: var(--primary-color);
  width: 2px;
  height: 100%;
  left: 2px;
  top: 20px;
}

.latest-updates-item:last-child:after {
  display: none;
}

.latest-updates-item p {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 600;
}

.updates-date {
  font-size: 12px;
  font-weight: 400;
}

.offers-and-deals-section {
  margin-top: 30px;
}

.offers-and-deals-box {
  padding: 20px;
  box-shadow: 0 0 9px #ddd;
  border-radius: 10px;
}

.offers-and-deals-item {
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.offers-and-deals-left {
  width: 100%;
  display: flex;
  gap: 20px;
  align-items: center;
}

.offers-and-deals-image {
    width: 50%;
    flex-shrink: 0;
    border: 1px solid var(--light-color);
    border-radius: 1rem;
}

.offers-and-deals-image p {
  font-size: 12px;
  margin-top: 5px;
}

.offers-and-deals-image p .custom-btn-1 {
  font-size: 11px;
  margin: 0;
}

.offers-and-deals-details {
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.7;
}

.offers-and-deals-details .custom-btn {
    margin-top: 2rem;
}

.offers-and-deals-details ul {
  padding-left: 20px;
}

.offers-and-deals-details ul li {
  list-style: inherit;
  font-size: 13px;
  margin-bottom: 5px;
  line-height: 1.6;
}

.offers-and-deals-details .offer-valid {
  margin-top: 8px;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.offers-tag {
  margin-top: 10px;
  background: var(--secondary-color);
  padding: 8px 20px;
  border-radius: 30px;
  color: var(--default-color);
  display: inline-block;
  font-size: 14px;
}

.offers-and-deals-left figure {
  width: 100%;
  height: 28rem;
  margin-bottom: 0;
  border-radius: 8px;
  overflow: hidden;
}

.offers-and-deals-left figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.offers-and-deals-right {
  flex: 1;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 0 9px #ddd;
  border-radius: 10px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.2rem;
}

.offers-and-deals-right h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0;
  color: #000;
}

.offers-and-deals-right .form-control {
  box-shadow: 0 0 9px #ddd;
  border: 0;
  padding: 12px 20px;
  height: auto;
  color: var(--primary-color);
  font-size: 14px;
}

.write-review-banner {
  padding: 6rem 0;
  margin-bottom: 4rem;
  border-radius: 1rem;
  box-shadow: 0 0 9px #ddd;
  min-height: 25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.write-review-banner h2 {
  text-align: center;
  line-height: 1.5;
  font-weight: 700;
  font-size: 2.5rem;
}

/* 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-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;
}

/* review css starts here */

.review-container {
  box-shadow: 0 0 9px #ddd;
  padding: 2rem 1.8rem;
  background: var(--default-color);
  margin-top: 2rem;
  border-radius: 1rem;
}

.review-rating-full-row {
  margin-bottom: 30px;
}

.review-rating-number > p > span {
  font-size: 4rem;
  font-weight: 700;
  margin-right: 5px;
  line-height: 1;
  color: var(--secondary-color);
}

.review-rating-number > p > i {
  font-size: 3.5rem;
  color: var(--hover-color);
}

.review-rating-number small {
  margin-left: 20px;
  font-size: 13px;
  color: #000;
  line-height: 16px;
  font-weight: 500;
  margin-right: 60px;
}

.review-rating-btn .custumBtn {
  width: 250px;
}

.review-container .nav-tabs {
  margin-bottom: 10px;
  border: 0;
}

.review-container .nav-tabs li a {
  padding: 8px 10px;
  border: 1px solid var(--secondary-color);
  margin-right: 5px;
  margin-top: 6px;
  color: var(--secondary-color) !important;
  font-size: 13px;
  font-weight: 400;
  transition: all 0.3s;
  border-radius: 5px;
}

.review-container .nav-tabs li a.active,
.review-container .nav-tabs li a:hover {
  background: var(--primary-color);
  color: var(--default-color) !important;
  border: 1px solid var(--primary-color);
}

/* .review-content .nav-tabs {
    border-bottom: 1px solid #ddd;
} */

.review-content .nav-tabs li a {
  text-transform: uppercase;
  border: none;
  font-size: 14px;
  padding: 0;
  margin-right: 30px;
  padding-bottom: 10px;
  border-bottom: 3px solid #ddd0;
  margin-bottom: 6px;
}

.review-content .nav-tabs li a.active {
  background: 0;
  color: var(--primary-color) !important;
  border: 0;
  border-bottom: 3px solid;
  font-weight: 600;
  border-radius: 0;
  padding-bottom: 5px;
}

/* .review-content .nav-tabs li a:hover {
    background: 0;
    border: 0;
    color: var(--primary-color)!important;
} */

#latest-review .review-item-box-container.collapse:not(.show) {
  /* max-height: 480px !important;
    overflow: hidden; */
  display: -webkit-box;
  transition: max-height 0.3s ease;
}

#latest-review .all-review-btn a.collapsed:after {
  content: "Read More Reviews";
}

#latest-review .all-review-btn a:not(.collapsed):after {
  content: "Read Less Reviews";
}

.review-item-user-content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.5rem;
}

.review-item-box {
    border-bottom: 1px solid var(--light-color);
    padding-bottom: 1.5rem;
    padding-top: 1rem;
}

.review-item-box:last-child {
    border: 0;
    padding-bottom: 0;
}

.review-star-box {
  font-size: 14px;
  color: #ffc000;
}

.review-item-box h4 {
  font-size: 18px;
  color: #000;
  font-weight: 600;
  margin: 10px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.review-item-box p {
  font-size: 14px;
  color: #000;
}

.review-item-box p.collapse:not(.show) {
  overflow: hidden;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: inherit;
  -webkit-box-orient: vertical;
}

/* .review-item-box p.collapsing {
    min-height: 42px !important;
} */

.review-item-box a.collapsed:after {
  content: "Read More";
}

.review-item-box a:not(.collapsed):after {
  content: "Read Less";
}

/* .review-item-box p {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
} */

.review-item-box > a {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
}

.review-user-box {
  margin-top: 20px;
}

.review-user-box h5 {
  line-height: 0.6;
  font-size: 14px;
  color: #000;
}

.review-user-box small {
  font-size: 10px;
  color: var(--primary-color);
  line-height: 1;
}

.all-review-btn {
  margin-top: 20px;
}

.all-review-btn .custumBtn {
  max-width: 250px;
  margin: auto;
}

/* loader-3 */
.loading {
  display: flex;
  justify-content: center;
  margin: 80px;
}
.loading .dot {
  position: relative;
  width: 1em;
  height: 1em;
  margin: 0.8em;
  border-radius: 50%;
}
.loading .dot::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  animation: wave 2s ease-out infinite;
}
.loading .dot:nth-child(1) {
  background: #de7388;
}
.loading .dot:nth-child(1)::before {
  animation-delay: 0.2s;
}
.loading .dot:nth-child(2) {
  background: #d73858;
}
.loading .dot:nth-child(2)::before {
  animation-delay: 0.4s;
}
.loading .dot:nth-child(3) {
  background: #df2046;
}
.loading .dot:nth-child(3)::before {
  animation-delay: 0.6s;
}
.loading .dot:nth-child(4) {
  background: #d30e35;
}
.loading .dot:nth-child(4)::before {
  animation-delay: 0.8s;
}
.loading .dot:nth-child(5) {
  background: #b81031;
}
.loading .dot:nth-child(5)::before {
  animation-delay: 1s;
}

@keyframes wave {
  50%,
  75% {
    transform: scale(2.5);
  }
  80%,
  100% {
    opacity: 0;
  }
}

.car-review-user-icon {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.user-review-icon {
    background: var(--primary-color);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
    color: var(--default-color);
}

.review-item-box .review-user-name h4 {
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 5px;
    line-height: 1;
}

.review-item-box .review-user-name p {
    font-size: 12px;
    line-height: 1;
}

.review-number {
  background: #17a348;
  padding: 4px 10px;
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.reply-review-user {
  font-size: 14px;
  margin-top: 5px;
  border-top: 1px solid #ddd;
  padding-top: 8px;
}

.review-like-and-reply {
  margin-top: 10px;
}

.review-like-and-reply button i {
  font-size: 16px;
}

.review-like-and-reply button.active i {
  color: var(--secondary-color);
}

.review-like-btn,
.review-unlike-btn {
  border: 0;
  background: 0;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 5px;
  margin-right: 10px;
  font-weight: 500;
  box-shadow: 0 0 9px #dddddd;
}

/* review css ends here */

.search-icon {
  width: 4rem;
  cursor: pointer;
}

.search-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.flight-item {
  border: 1px solid var(--secondary-color);
  border-radius: 10rem;
  padding: 0rem 0 0rem 1.5rem;
}

.flight-item-left {
  width: 30%;
}

.flight-item-logo {
  width: 4rem;
  min-width: 4rem;
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flight-item-logo img {
  width: 100%;
  height: auto;
  max-height: 4rem;
  object-fit: contain;
}

.flight-item-img {
  width: 5rem;
  padding-right: 1rem;
  border-right: 1px solid #ddd;
}

.flight-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flight-item-left .flight-name-and-date {
  border-left: 1px solid var(--secondary-color);
}

.flight-name-and-date {
  padding-left: 1rem;
}

.flight-name {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 0.3rem;
}

.flight-name span {
  font-weight: 500;
}

.flight-date {
  font-size: 1.3rem;
  color: #3a3a3a;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.flight-icon {
  width: 3rem;
  margin-left: 1rem;
  margin-right: 1rem;
}

.flight-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.individual-flight-routes .flight-item {
  padding: 0rem 0 0rem 1rem;
}

.individual-flight-routes .flight-item-left {
  width: 42%;
}

.individual-flight-routes .flight-item-logo {
  width: 2rem;
  min-width: 3rem;
}

.individual-flight-routes .flight-icon {
  width: 2rem;
  margin-left: 0rem;
  margin-right: 0rem;
}

.individual-flight-routes .ticket-price {
  max-width: 10rem;
  min-width: 10rem;
}

.individual-flight-routes .ticket-price a {
  font-size: 1.6rem;
  color: var(--default-color);
  text-decoration: none;
}

.city-price-list {
  box-shadow: 0 0 9px #ddd;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 1rem;
}
.city-price-heading,
.city-price-row {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  gap: 8px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
}
.city-price-heading .city-title,
.city-price-heading .city-price {
  color: var(--default-color);
}
.city-price-heading {
  background: var(--secondary-color);
  font-weight: 700;
  text-align: center;
}
.city-price-row:last-child {
  border-bottom: none;
}
.city-price-row:hover {
  background: #fafafa;
}
.city-title {
  flex: 1.5;
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}
.city-title a {
  color: var(--title-color);
  text-decoration: none;
}
.city-title a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
.city-price {
  flex: 2;
  font-size: 12px;
  font-weight: 500;
  margin: 0;
  color: #555;
  line-height: 1.4;
}

/* write review */
.writeReviewsContainer .modal-dialog {
  max-width: 560px;
}
.writeReviewsContainer .modal-content {
  border-radius: 1.2rem;
  overflow: hidden;
}
.writeReviewsContainer .modal-header {
  background: var(--primary-color);
  padding: 1.6rem 2rem;
  border: none;
}
.writeReviewsContainer .modal-header .section-heading {
  font-size: 2rem;
  margin: 0 auto;
  color: var(--default-color);
}
.writeReviewsContainer .close {
  background: none;
  border: none;
  font-size: 2.4rem;
  font-weight: 700;
  cursor: pointer;
  color: #000;
  line-height: 1;
  position: absolute;
  right: 1.5rem;
  top: 1rem;
}

.user-review-perf-container {
  background: #fafafa;
  border-radius: 0.8rem;
  padding: 1.4rem;
  margin-bottom: 1.6rem;
}
.user-review-perf-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 1.4rem;
  font-weight: 600;
}
.user-review-perf-row:last-child {
  border-bottom: none;
}
.user-review-perf-star {
  display: flex;
  gap: 4px;
}
.user-review-perf-star i {
  font-size: 1.8rem;
  color: #ddd;
  cursor: pointer;
  transition: color 0.15s;
}
.user-review-perf-star i.active,
.user-review-perf-star i:hover {
  color: #ffc107;
}

.reviewSubmit_form .form-group {
  margin-bottom: 1.2rem;
}
.reviewSubmit_form .form-control {
  font-size: 1.4rem;
  border: 1.5px solid #e0e0e0;
  border-radius: 0.8rem;
  padding: 1rem 1.2rem;
  transition: border-color 0.2s;
}
.reviewSubmit_form .form-control:focus {
  border-color: var(--secondary-color);
  outline: none;
  box-shadow: none;
}
.reviewSubmit_form .form-control.is-invalid {
  border-color: var(--secondary-color);
}
.reviewSubmit_form .invalid-feedback {
  font-size: 1.2rem;
}
.reviewSubmit_form .remember_row {
  margin-top: 1rem;
  font-size: 1.3rem;
  color: #666;
}
.reviewSubmit_form .remember_row a {
  color: #818181;
}

.trending-heading {
  background: var(--secondary-color);
  text-align: center;
  padding: 1rem;
  color: #fff;
  border-radius: 0.6rem;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.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;
}

.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;
}

.travel-essential-box {
    box-shadow: 0 0 9px #ddd;
    padding: 1rem;
    border-radius: 0.5rem;
}

/* brands */

.car-news-right {
    box-shadow: 0 2px 9px #d8d8d8;
    border-radius: 4px;
    padding: 12px 15px;
    margin-bottom: 20px;
}

.car-news-brands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-bottom: 10px;
}

.car-news-brands-item {
    display: block;
    text-align: center;
    width: 100%;
    border: 1px solid #ddd;
    padding: 6px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.4s;
}

.car-news-brands-item:hover {
    transform: translateY(-4px);
}

.car-news-brands-item figure {
  width: 100%;
  height: 5rem;
  margin: auto;
}

.car-news-brands-item figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.car-news-brands-item .car-heading {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--title-color);
}

.travel-essential-box {
    box-shadow: 0 0 9px #ddd;
    padding: 1rem;
    border-radius: 0.5rem;
}

.travel-essential-items-box {
  max-height: 69rem;
  overflow-y: auto;
  overflow-x: hidden;
}

.travel-essential-items {
  display: block;
  text-decoration: none;
  border-bottom: 1px solid #ddd;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.travel-essential-items-top {
  margin-bottom: 0.5rem;
}

.travel-essential-items figure {
  width: 8rem;
  min-width: 8rem;
  height: 8rem;
  min-height: 8rem;
  /* background: #1b515d; */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  border: 2px solid #1b515d;
  overflow: hidden;
}

.travel-essential-items figure img {
  object-fit: contain;
}

.travel-essential-items .column-heading {
  font-size: 1.6rem;
  margin-left: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.travel-essential-items p {
  color: var(--title-color);
  font-size: 1.5rem;
  padding-left: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: all 0.3s;
}

.column-img {
  width: 100%;
  height: 29rem;
  overflow: hidden;
  border-radius: 1rem;
}

.column-img a {
  display: block;
  height: 29rem;
}

.column-img img {
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  object-fit: cover;
}

.column-box-details {
  padding: 1rem;
}

.date-and-time {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--secondary-color);
}

.train-route-box {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 1px 0px 9px rgba(0, 0, 0, 0.08);
}

.train-discount-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #e53935;
  color: #fff;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}
.train-route-name {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 12px;
}

.train-price {
  font-size: 22px;
  font-weight: 700;
  color: #111;
}







/* screen and mobile optimized */

@media (max-width:1399px){
.route-name {
    font-size: 1.4rem;
}
.route-date {
    font-size: 1.3rem;
}
.route-icon {
    width: 2.5rem;
    margin-left: 1rem;
    margin-right: 1rem;
}
.ticket-price {
    min-width: 13rem;
    max-width: 13rem;
}
.ticket-price a {
    font-size: 2rem;
}
.news-details {
    padding: 1rem 1rem 0;
}
.partners-slider .item {
    padding: 0.5rem;
}
.partner-item:last-child {
    margin-bottom: 1rem;
}
.column-heading {
    -webkit-line-clamp: 1;
}
.discover-details p {
    -webkit-line-clamp: 2;
}
.category-box {
    padding: 1rem;
}
.tours-and-btn p {
    font-size: 1.4rem;
}
.category-img, .column-heading {
    margin-bottom: 1rem;
}
}

@media (max-width:1199px) {
#navbar-menu .navbar-nav {
    gap: 1rem;
}
#navbar-menu .navbar-nav li a {
    font-size: 1.5rem;
}
.custom-btn {
    font-size: 1.4rem;
    min-width: 11rem;
}
.discount-and-deals-box {
    padding: 1rem;
}
.offer-details {
    max-width: 100%;
    font-size: 1.6rem;
}
.offer-and-discount .custom-btn {
    padding: 0.6rem 1.3rem;
    font-size: 1.2rem;
}
.booking-left-and-btn p {
    font-size: 1.3rem;
}
.custom-btn-1 {
    padding: 0.7rem 1rem;
    font-size: 1.3rem;
}
.discover-img {
    height: 20rem;
}
.discover-details {
    padding: 1.5rem;
    padding-top: 2.5rem;
}
.continent-title {
    font-size: 1.3rem;
}


}


@media (max-width:991px) {
#navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--default-color);
    width: 100%;
    padding-left: 12rem;
    border-top: 1px solid var(--secondary-color);
    padding-top: 2rem;
}
#navbar-menu .navbar-nav li a {
    display: inline-block;
}
.section-padding {
    padding: 4rem 0;
}
.top-banner {
    height: auto;
}
.banner-heading {
    font-size: 4rem;
}
.top-home-slider-details p {
    font-size: 1.6rem;
}
.travel-card {
    width: 25rem;
    height: 32rem;
}
.card2 {
    left: 18rem;
}
.card3 {
    left: 35rem;
}
.card4 {
    right: 0;
}
.section-heading {
    font-size: 3rem;
}
.three-item-top-slider .owl-nav {
    top: -7rem;
}
.travel-tips-row {
    flex-wrap: wrap;
    justify-content: center !important;
    gap: 2rem;
}
.travel-tips-column p {
    font-size: 1.4rem;
}
}


@media (max-width:767px){
.travel-gallery {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}
.travel-card {
    position: relative;
    display: block;
}
.card1, .card4 {
    top: 0;
    transform: rotate(0deg);
}
.card2 {
    left: 0;
    transform: rotate(0deg);
}
.card3 {
    left: 0;
    top: 0;
}
}

@media (max-width:576px){
  .logo .navbar-brand {
    max-width: 9rem;
}
.travel-section .section-heading br {
    display: none;
}
.travel-card {
    width: 100%;
    height: 30rem;
}
.discover-train .custom-btn {
    min-width: max-content;
    padding: 0.8rem 1rem;
    font-size: 1.2rem;
}
.custom-btn i {
    margin-left: 0.5rem;
}
.section-heading {
    font-size: 2.5rem;
}
.heading-btn-row {
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.category-img {
    height: 18rem;
}
.ticket-price a {
    font-size: 1.3rem;
}
.ticket-price {
    min-width: 7rem;
    max-width: 7rem;
}
.route-item {
    padding: 0rem 0 0rem 0.5rem;
}
.route-item-left {
    width: 13rem;
}
.route-item-logo {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
}
.route-name-and-date {
    padding-left: 0.6rem;
}
.route-icon {
    width: 2rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}
.route-name {
    font-size: 1.3rem;
}
footer {
    padding: 2rem 0 1rem;
}
.footer-logo {
    width: 12rem;
}
.footer-heading {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
}
.footer-menu-list li {
    margin-bottom: 1rem;
}
.footer-menu-list li a {
    font-size: 1.4rem;
}
.copyright {
    padding-top: 1rem;
    margin-top: 1rem;
}
.copyright p {
    font-size: 1.1rem;
}
.travel-tips-icon {
    width: 4rem;
    height: 4rem;
    padding: 0.5rem;
    border-radius: 0.8rem;
}
.travel-tips-column p {
    font-size: 1.2rem;
}
.three-item-slider .owl-nav button, .three-item-top-slider .owl-nav button, .partners-slider .owl-nav button {
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.2rem !important;
}
.three-item-slider .owl-nav button.owl-prev, .partners-slider .owl-nav button.owl-prev, .three-item-top-slider .owl-nav button.owl-prev {
    left: 0;
}
.three-item-slider .owl-nav button.owl-next, .partners-slider .owl-nav button.owl-next, .three-item-top-slider .owl-nav button.owl-next {
    right: -3px;
}
.three-item-top-slider .owl-nav {
    top: 0;
    position: relative;
}
}