﻿/* In your CSS file */
@font-face {
    font-family: 'Whitney-Book';
    src: url('../css/fonts/Whitney-Book.woff2') format('woff2'),
        url('../css/fonts/Whitney-Book.woff') format('woff');
}

@font-face {
    font-family: 'Whitney-Light';
    src: url('../css/fonts/Whitney-Light.woff2') format('woff2'),
        url('../css/fonts/Whitney-Light.woff') format('woff');
}

@font-face {
    font-family: 'Whitney-Semibold';
    src: url('../css/fonts/Whitney-Semibold.woff2') format('woff2'),
        url('../css/fonts/Whitney-Semibold.woff') format('woff');
}

body {
    margin: 0;
    font-family: 'Whitney-Book', sans-serif;
    color: #262626;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 7.5px;
    font-weight: 600;
}
h1{
    font-size: 26px;
}
h2{
    font-size: 24px;
}
h3{
    font-size: 22px;
}
h4{
    font-size: 20px;
}
h5{
    font-size: 18px;
}
p {
    margin-top: 0;
}

a {
    color: #262626;
    text-decoration: none
}
ul{
    list-style: none;
}

strong,
b {
    font-family: 'Whitney-Semibold', sans-serif;
}

sup {
    color: #ff0000;
}

.txt-center{
    text-align:center
}
.is--orange {
    color: #ff0000;
}

.is--font-20 {
    font-size: 20px;
}

.is--font-26 {
    font-size: 26px;
}

.is--marbtm-5 {
    margin-bottom: 5px;
}

.container {
    max-width: 1170px;
    margin: 0 auto
}

/* header */
.header {        
    position: fixed;
    width: 100%;
    z-index: 3;
    top: 0;
}
header.header.fixed {
    background: #fff;
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, .1);
}
.header-container {
    padding: 0 5px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 300px;
    margin-top: 15px;
    border: 1px solid rgba(255, 255, 255, 0.45);    
    width: 98%;
    margin: 10px auto 0;
}
header.header.fixed .header-container {
    margin-top: 0;
    padding:0
}

.header ul {
    margin: 0;
    padding: 0;
    list-style: none;    
    position: fixed;
    top: 0;
    right: -70%;    
    width: 70%;   
    height: 100%;
    transition: right 0.3s ease-in-out;    
    z-index: 2;
}

.header ul li {
    position: relative;
    border-bottom: #ccc 1px solid;
}

.header ul li.dropdownmenu {
    position: relative;
}

    .header ul li.dropdownmenu::after {
        content: "";
        position: absolute;
        right: 10px;
        top: 18px;
        border: solid #4e4e4e;
        border-width: 0 2px 2px 0;
        display: inline-block;
        padding: 2px;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
    }

.header li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
}

.header ul ul {
    display: none;
    width: 100%;
    background: #fff;
    position: relative;
    top: 0;
    left: 0;
    z-index: 10000;
}
.header ul ul li{
    border-bottom: 0;
}

.header ul ul li a {
    text-align: left;
    padding: 10px 15px;
    border-bottom: 1px solid #e3e3e3;
}
.header ul ul li a:last-of-type {    
    border-bottom: 0;
}

.header ul ul li a:hover {
    background: #e4e4e4;
}

/* Display Dropdowns on Hover */
.header ul li:hover>ul {
    display: inherit;
}

.header ul ul li {
    float: none;
    display: list-item;
    position: relative;
}

.header .logo {
    float: left;
    padding: 0;
}

.header .logo img {
    width: 160px;
    height: auto;
    margin-left: 5px;
}

/* menu icon */
.header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 15px 5px;
    position: relative;
    user-select: none;
    z-index: 10000;
}

.header .menu-icon .navicon {
    background: #333;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.header .menu-icon .navicon:before {
    top: 5px;
}

.header .menu-icon .navicon:after {
    top: -5px;
}

/* menu btn */
.header .menu-btn {
    display: none;
}

.header .menu-btn:checked~.menu {
    right: 0;
        z-index: 9999;
    /* Menu comes in from the right */
}

.header .menu-btn:checked~.menu-icon .navicon {
    background: transparent;
}

.header .menu-btn:checked~.menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.header .menu-btn:checked~.menu-icon .navicon:after {
    transform: rotate(45deg);
}

.header .menu-btn:checked~.menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
    top: 0;
}

/* Overlay effect */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);    
    transition: opacity 0.3s ease-in-out, visibility 0s 0.3s;
    z-index: 10;
    display:none
}

.header .menu-btn:checked~.overlay {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out;
    z-index: 1;
}

/* Default hidden overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998; /* Below menu but above content */
}

/* Show overlay when menu is checked */
.header .menu-btn:checked ~ .menu,
.header .menu-btn:checked ~ .menu-overlay {
    visibility: visible;
    opacity: 1;
}
.tfn {
    width: 43%;
    padding: 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto;
}

.tfn a {
    text-decoration: none;
    color: #ff0000;
    font-size: 15px;
}

.herobanner {
    background: #333;
    margin-bottom: 30px;
    float: left;
    width:100%
}

.herobanner__content {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 15px;
    text-align: center;
    margin-top: 60px;
}
.herobanner__content strong {    
    font-size: 26px;    
}

.herobanner__widget {
    float: left;
    width: 100%;
    margin-bottom: 15px;    
    border-radius: 6px;
    position: relative;
    z-index: 1;    
}

.herobanner__widget__container {
    padding: 10px 0;
    float: left;
    width: 100%;
}

.custom-radio {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 5px 10px;
}

.custom-radio.active {
    background: #0f405a;
    border-radius: 6px;    
    color: #fff;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

[type="radio"]:checked+label,
[type="radio"]:not(:checked)+label {
    position: relative;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    padding-left: 0;
}

.widget [type="radio"]:checked+label,
.widget [type="radio"]:not(:checked)+label {
    color: #625350;
    padding: 0;
}

.widget_label {
    display: inline-block;
    font-weight: 700;
    color: #fff;
}

#multiCity1,
#multiCity2,
#multiCity3 {
    display: none;
    margin-top: 10px;
}

.is--multicity {
    display: block !important;
}

.departure_icon,
.arrival_icon,
.cal_icon,
.user_icon,
.phone_icon,
.email_icon,
.send_icon, .chat_icon {
    position: relative;
    float:left;
    width:100%;
}
    .departure_icon:before,
    .arrival_icon:before,
    .cal_icon:before,
    .user_icon:before,
    .phone_icon:before,
    .email_icon:before,
    .send_icon:before, .chat_icon:before {
        position: absolute;
        left: 10px;
        top: 10px;
        content: "";
        font-size: 22px;
        color: #666;
        width: 20px;
        height: 20px;
    }

.departure_icon:before {    
    background: url(/Content/images/icons/departure.svg) no-repeat 0 0;
    
}

.arrival_icon:before {    
    background: url(/Content/images/icons/arrivals.svg) no-repeat 0 0;   
}
    .cal_icon:before {        
        top: 11px;        
        background: url(/Content/images/icons/calendar.svg) no-repeat 0 0;
        width: 18px;
        height: 18px;
    }
    .user_icon:before {
        background: url(/Content/images/icons/user.svg) no-repeat 0 0;
    }

    .phone_icon:before {
        top: 12px;
        width: 18px;
        height: 18px;
        background: url(/Content/images/icons/phone.svg) no-repeat 0 0;
    }

    .email_icon:before {
        top: 10px;
        width: 18px;
        height: 18px;
        background: url(/Content/images/icons/email.svg) no-repeat 0 0;
    }

    .chat_icon:before {
        background: url(/Content/images/icons/chat.svg) no-repeat 0 0;
    }

input[type="text"] {
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid #d1d1d1;
    transition: .3s border-color;
    height: 38px;
    font-size: 16px;
    color: #222;
    margin-bottom: 5px;
    padding-left: 35px;
}
.contact input[type="text"] {
    width: 100%;  
    padding-left: 30px; 
}



.addflights,
.deleteflights {
    text-align: right;
    color: #373737;
    text-decoration: none;
    display: none;
    float: right;
    margin-left: 10px;
}

.travelers {
    font-size: .75rem;
    position: relative;
    border-radius: 0.5rem;
    margin: 0px 0 5px;
}

.travelers.traveler-active {
    background: #FFF;
    border-radius: 6px 6px 0 0;
    border-bottom: 0;
}

.travelers a.form-control {
    color: #313541;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    cursor: pointer;
    padding: 5px 10px 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    border: 1px solid #d1d1d1;
    border-radius: 6px;
    display: block;
    height:36px
}

.travelers a.form-control:after {
    transition: all .2s linear;
    border: solid #505050;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    content: "";
    position: absolute;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    top: 10px;
    right: 12px;
}

.traveler-section {
    background: #fff;
    border: 1px solid #b9bec2;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .25);
    border-radius: 0px 0 8px 8px;
    padding: 0px 10px 10px;
    width: 270px;
    z-index: 10000;
    position: absolute;
    right: 0;
    top: 30px;
    display: none;
}

.traveler-active .traveler-section {
    display: block;
}

.travelers__title {
    color: #313541;
    display: block;
    font-size: 12px;
    font-weight: 700;
    padding: .375rem 0 .25rem;
    white-space: nowrap;
}

.travelers__plus-minus {
    border: none;
    background: #ccc;
    color: #313541;
    display: block;
    float: left;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s linear;
    font-size: 14px;
    width: 20%;
    height: 25px;
    margin-right: 0;
}

.travelers__value {
    background: #fff;
    color: #313541;
    display: block;
    float: left;
    width: 60% !important;
    height: 25px !important;
    margin-right: 0;
    border-radius: 0 !important;
    line-height: 20px;
    padding: 0 !important;
    text-align: center;
}

.select-wrap {
    position: relative;
}

.travelers select {
    border: .0625rem solid #ccc;
    cursor: pointer;
    font-size: 12px;
    padding-left: .25rem;
    box-shadow: none;
    height: 28px;
    line-height: normal;
    padding-top: 5px;
    margin-bottom: 10px;
}

.traveler__button {
    margin-top: 10px;
}

.traveler__button .btn-default {
    padding: 3px 15px;
    float: right;
    width:100%
}

.flexcontainer {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.flexcontainer-left {
    width: 100%;
}

.flexcontainer-right {
    width: 100%;
}
.widget .flexcontainer {
    flex-direction:column
}

.is--wd73 {
    width: 73%;
}

.is--wd23 {
    width: 23%;
}




.page__content {
    margin-top: 30px;
}
.btn-default {
    cursor: pointer;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    padding: 0px 16px;
    height: 40px;
    background: #024f78;
    border: 0;
    font-size: 18px;
    margin-bottom: .125rem;
    line-height: 1.5;
    border-radius: 8px;
    color: #fff;
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, .3);
    position: relative;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
    .btn-default:hover, .btn-default.focus, .btn-default:focus {
        background-color: #dd0000;
        color: #fff
    }

    .send_icon:before {
        content: "";
        width: 20px;
        height: 20px;
        background: url(/Content/images/icons/send.svg) no-repeat 0 0;
        position: absolute;
        left: 45px;
        top: 10px;
        z-index: 1;
        cursor: pointer
    }

.departmc1Container,
.departmc2Container,
.departmc3Container {
    display: none;
}

.is--error {
    background: #fee8bf;
    border: .0625rem dashed #fcc45b;
    color: #dc3545;
    margin-bottom: 10px;
}

.is--error ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.is--error ul li {
    margin: 0;
    padding: 0 0 0 15px;
    list-style: none;
    color: #dc3545;
    position: relative;
}

.popularflightdeals {
    margin-top: 30px;
    width: 100%;
    float: left;
}

.is--commonhd {
    font-size: 32px;
    text-align: center;
    line-height: 32px;
    margin-bottom: 15px;
    color: #021c2a;
}

#sidebar.fixed {
    position: sticky;
    top: 90px;
    right: 0;
}

.popular {
    margin: 0;
    float: left;
    width: 100%;
}

.popular-flightdeals {
    margin-bottom: 30px;

}

.popularflightdeals-carousel {
    margin-bottom: 60px !important;
}

.popularflightdeals__card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .12), 0 2px 4px 0 rgba(0, 0, 0, .12);
    border-radius: 6px;
    float: left;
    width: 90%;
    margin-bottom: 15px;
}

.popularflightdeals__image {
    border-radius: 6px 6px 0 0;
    max-width: 100%;
}

.popularflightdeals__info {
    padding: 5px 10px 5px;
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    align-items: center;
}

.popularflightdeals-carousel.slick-slider .slick-track,
.popularflightdeals-carousel.slick-slider .slick-list {
    padding-left: 16px;
}

.slick-prev:before,
.slick-next:before {
    color: #262626;
}

.slick-next {
    right: -10px;
}

.slick-prev {
    left: 0;
}

.slick-dots li button:before {
    font-size: 0;
    border: #666 1px solid;
    border-radius: 50%;
    width: 18px;
    height: 18px;
}

.slick-dots li.slick-active button:before {
    background: #ff0000;
}

.popular-destination {
    float: left;
    width: 100%;
}
.popular_places {
    display:flex;
    flex-wrap:wrap;
    flex-direction:column;
    gap:15px
}
.card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    height: 100%; /* Ensure cards are equal height */
}

    .card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


    .info h3 {
        font-size: 1.2em;
        margin-bottom: 5px;
    }

.card .info .price:empty {
    display: none;
}

/* Responsive Fix */
.row {
    margin-bottom: 0; /* Remove extra margin between rows */
}

    .row > [class*='col-'] {
        display: flex;
        flex-direction: column;
    }

/* Optional: Control spacing on mobile */
@media (max-width: 768px) {
    .row {
        flex-wrap: wrap;
    }
}
.row.equal-height-row {
    display: flex;
    flex-wrap: wrap;
}

    .row.equal-height-row > [class*="col-"] {
        display: flex;
        flex-direction: column;
    }

.card.h-100 {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
    .card.h-100.maldives,
    .card.h-100.roma {
        height: 350px;
    }

    .card.h-100 img {
        flex: 1 1 auto;
        object-fit: cover;
        width: 100%;
        height: 100%;
        transition: transform 0.5s ease;
    }

    .card.h-100:hover img {
        transform: scale(1.1); /* Smooth zoom */
    }

    .card.h-100::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60%; /* Adjust the height as needed */
        background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
        transition: background 0.5s ease;
        pointer-events: none;
    }

    .card.h-100:hover::before {
        background: linear-gradient(to center, rgba(0,0,0,0.7), transparent); /* Darker effect on hover */
    }

.card .info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fff;
    z-index: 2;
    width: 100%;
}

.price {
    position: absolute;
    top: 0px;
    right: 20px;
    background-color: #00aaff;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9em;
    z-index: 2;
}



.usp {
    float: left;
    width: 100%;
    padding: 15px 0 0;
    background: #f1f1f1;
    margin: 30px 0;
}

.usp__container {
    gap: 15px;
    display: flex;
    flex-direction: column;
}

.usp__item {      
    text-align: center;
    padding: 15px;
    border-radius: 6px;    
    font-size: 18px;
}

.usp__item h3 {
    color: #ff0000;
    margin-top: 10px;
}

.intro {
    margin: 0;
    float: left;
    width: 100%;
}

.intro-usp {
    padding-left:20px;
}
.intro-usp li {
    list-style:disc
}

.intro__container {
    display: flex;
    justify-content: space-between;
    flex-direction:column
}

.intro-about .intro__container {
    flex-direction: row-reverse;
    flex-direction: column;
}

.intro__image {
    width: 100%;
    position: relative;
    margin-bottom: 15px;
    display:none
}
.img-box12 {
    position: relative;
}
.global-img {
    position: relative;
    overflow: hidden;
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
}
.img-box12 .img1 {
    max-width: 317px;
    border-radius: 100px;
}
.global-img img {
    width: 100%;
    object-fit: cover;
    -webkit-transition: 1.3s all ease;
    transition: 1.3s all ease;
}
.img-box12 .img1 img {
    width: auto;
    border-radius: 100px;
}
.global-img:after {
    background: rgba(255, 255, 255, 0.5);
    content: "";
    height: 0;
    left: 0;
    opacity: 1;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9;
}
.img-box12 .img2 {
    position: absolute;
    bottom: 0;
    left: 40%;
    max-width: 232px;
    border-radius: 85px;
    overflow: hidden;
    background-color: #fff;
    z-index: 2;
}
.img-box12 .img2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 85px;
    padding: 8px;
}
.img-box12 .img3 {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 208px;
    border-radius: 85px;
}
.img-box12 .img3 img {
    border-radius: 85px;
}


.intro__text {
    width: 100%;
    text-align: left;
    font-size: 20px;
    line-height: 26px;
}

.intro-about .intro__text {
    font-size: 16px;
    text-align: left;
}

.intro__btn {
    background: #ff0000;
    color: #fff;
    line-height: 20px;
    padding: 10px 35px;
    border-radius: 6px;
    font-size: 20px;
    cursor: pointer;
    font-weight: 600;
    margin: 15px 0;
    border: 0;
}

.intro__btn:hover {
    background: #ff0000;
    color: #fff !important;
}


.faqs {
    margin: 30px 0 0;
    float: left;
    width: 100%;
}

.faq-container {
    margin: 30px auto 0;
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #ddd;
    font-weight: 600;
}

.faq-answer {
    padding: 10px 0;
    display: none;
}
.faq-answer ul {
    padding-left: 0
}
.faq-answer ul li {
    list-style-type: disc;
}

.arrow {
    transition: transform 0.3s ease;
    border: solid #666;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.arrow.open {
    transform: rotate(226deg);
}

.destination {
    float: left;
    width: 100%;
}

.destination__container {
    display: flex;
    justify-content: space-between;
}

.destination__leftarea {
    width: 100%;
}

.destination__places {   
    float: left;
    width: 100%;
}
.boxcontainer {
    
}

.box {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
}

    .box:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

    .box h2 {
        border-left: 5px solid #ff6b6b;
        padding-left: 15px;
        margin-top: 0;
        margin-bottom: 15px;
        color: #333;
    }

.box p {
    color: #555;
    line-height: 1.6;
}

.box ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.box ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #444;
}

.box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}
.destination__rightarea {
    display:none;
}

.destination__nav {
    padding: 20px;
}

.destination__navlist {
    padding: 0;
    margin: 0;
    list-style: none;
}

.destination__navlistitem {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 15px;
}

.destination__navicon {
    margin-right: 7px;
}

.destination__activities {
   /* display: grid;*/
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.destination__activities_item ul {    
    margin: 0;
    padding: 0;
    list-style: none;    
    display: flex;
    flex-wrap: wrap;
    gap: 0px 15px;
}

.destination__activities_item ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 15px;
}

.destination__activities_item ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    background-color: #ff0000;
}

.footer {
    background: #04273a;
    float: left;
    width: 100%;
    padding: 15px 0;
    color: #fff;
    margin-top: 30px;
    font-size: 15px;
}

.footer__container {
    display: flex;
    flex-direction: column;
    padding: 0;
}



.footer__container ul,
.footer__container li {
    list-style: none;
    padding: 0;
}

.footer__container li {
    margin-bottom: 7px;
}

.footer__container a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.logo-white {
    width: 90%;
    margin-bottom: 10px
}


.footer__container a img {
    margin-right: 7px;
}

.copyright {
    text-align: center;
    color: #fff;
    padding: 10px 0;
    float: left;
    width: 100%;
    font-size: 13px;
    background: #022030;
}

.Phone {
    position: relative;
    display: block;
    margin: 0;
    width: 20px;
    height: 20px;
    font-size: 60px;
    background-color: #0f405a;
    border-radius: 0.5em;
    box-shadow: 0 0 0 0em rgba(#3498db, 0), 0em 0.05em 0.1em rgba(#000000, 0.2);
    transform: translate3d(0, 0, 0) scale(1);
    margin-right: 5px;
}

.Phone::before,
.Phone::after {
    position: absolute;
    content: "";
}

.Phone::before {
    top: 0;
    left: 0;
    width: .2em;
    height: .2em;
    background-color: rgba(#fff, 0.1);
    border-radius: 100%;
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(0);
}

.Phone::after {
    top: 2px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0.25em;
    height: 0.25em;
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTYuNiAxMC44YzEuNCAyLjggMy44IDUuMSA2LjYgNi42bDIuMi0yLjJjLjMtLjMuNy0uNCAxLS4yIDEuMS40IDIuMy42IDMuNi42LjUgMCAxIC40IDEgMVYyMGMwIC41LS41IDEtMSAxLTkuNCAwLTE3LTcuNi0xNy0xNyAwLS42LjQtMSAxLTFoMy41Yy41IDAgMSAuNCAxIDEgMCAxLjIuMiAyLjUuNiAzLjYuMS40IDAgLjctLjIgMWwtMi4zIDIuMnoiIGZpbGw9IiNmZmZmZmYiLz48L3N2Zz4=);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    transform: translate3d(0, 0, 0);
}

.Phone.is-animating {
    animation: phone-outer 3000ms infinite;

    &::before {
        animation: phone-inner 3000ms infinite;
    }

    &::after {
        animation: phone-icon 3000ms infinite;
    }
}

@keyframes phone-outer {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        box-shadow:
            0 0 0 0em rgba(#3498db, 0),
            0em 0.05em 0.1em rgba(#000000, 0.2);
    }

    33.3333% {
        transform: translate3d(0, 0, 0) scale(1.1);
        box-shadow:
            0 0 0 0em rgba(#3498db, 0.1),
            0em 0.05em 0.1em rgba(#000000, 0.5);
    }

    66.6666% {
        transform: translate3d(0, 0, 0) scale(1);
        box-shadow:
            0 0 0 0.5em rgba(#3498db, 0),
            0em 0.05em 0.1em rgba(#000000, 0.2);
    }

    100% {
        transform: translate3d(0, 0, 0) scale(1);
        box-shadow:
            0 0 0 0em rgba(#3498db, 0),
            0em 0.05em 0.1em rgba(#000000, 0.2);
    }
}

@keyframes phone-inner {
    0% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(0);
    }

    33.3333% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(0.9);
    }

    66.6666% {
        opacity: 0;
        transform: translate3d(0, 0, 0) scale(0);
    }

    100% {
        opacity: 0;
        transform: translate3d(0, 0, 0) scale(0);
    }
}

@keyframes phone-icon {
    0% {
        transform: translate3d(0em, 0, 0);
    }

    2% {
        transform: translate3d(0.01em, 0, 0);
    }

    4% {
        transform: translate3d(-0.01em, 0, 0);
    }

    6% {
        transform: translate3d(0.01em, 0, 0);
    }

    8% {
        transform: translate3d(-0.01em, 0, 0);
    }

    10% {
        transform: translate3d(0.01em, 0, 0);
    }

    12% {
        transform: translate3d(-0.01em, 0, 0);
    }

    14% {
        transform: translate3d(0.01em, 0, 0);
    }

    16% {
        transform: translate3d(-0.01em, 0, 0);
    }

    18% {
        transform: translate3d(0.01em, 0, 0);
    }

    20% {
        transform: translate3d(-0.01em, 0, 0);
    }

    22% {
        transform: translate3d(0.01em, 0, 0);
    }

    24% {
        transform: translate3d(-0.01em, 0, 0);
    }

    26% {
        transform: translate3d(0.01em, 0, 0);
    }

    28% {
        transform: translate3d(-0.01em, 0, 0);
    }

    30% {
        transform: translate3d(0.01em, 0, 0);
    }

    32% {
        transform: translate3d(-0.01em, 0, 0);
    }

    34% {
        transform: translate3d(0.01em, 0, 0);
    }

    36% {
        transform: translate3d(-0.01em, 0, 0);
    }

    38% {
        transform: translate3d(0.01em, 0, 0);
    }

    40% {
        transform: translate3d(-0.01em, 0, 0);
    }

    42% {
        transform: translate3d(0.01em, 0, 0);
    }

    44% {
        transform: translate3d(-0.01em, 0, 0);
    }

    46% {
        transform: translate3d(0em, 0, 0);
    }
}

.adsbanner {
    float: left;
    width: 100%;
    text-align: center;
    margin: 0;
}

.adsbanner__container {
    border: 1px solid #ddd;
    padding: 0;
    border-radius: 6px;
    max-width: 728px;
    margin: 0 auto;
    height: auto;
}

.adsbanner__container img {
    border-radius: 0 6px 6px 0;
    width: 100%;
    height: auto;
}

.blogDetails .flexcontainer {
    justify-content: space-between;
}

.blogDetails .flexcontainer-right {
    margin-top: 30px;
}

.blogcontainer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    border-radius: 6px;
    box-shadow: 0px 2px 6px 4px rgba(0, 0, 0, .12), 0 2px 4px 0 rgba(0, 0, 0, .12);
}
.blogcontainer.reverse {
   flex-direction: row-reverse;
}
.blogDetails .blogcontainer {
    flex-direction: column;
    margin-top: 15px;
}

.blog__left {
    width: 48%;
}

.blogDetails .blog__left {
    width: 100%;
}

.blog__left img {
    border-radius: 6px 0 0 6px;
    height: 100%;
    width: 100%;
}
.blogcontainer.reverse .blog__left img {
    border-radius: 0 6px 6px 0;
    float: right;    
}
.blogDetails .blog__left img {
    border-radius: 6px 6px 0 0;
    height: 300px;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
}

.blog__right {
    width: 48%;
    padding: 2% 15px 0 0;
}
.blogcontainer.reverse .blog__right {
    padding: 15px 0 0 15px;    
}

.blogDetails .blog__right {
    width: 96%;
    padding: 2% 2% 0;
}

.blogDetails-right .flexcontainer {
    flex-direction: column;
}

.blogDetails-right input[type="text"] {
    width: 85%;
    padding-left: 35px;
}

.blog-category {
    background: #f1f1f1;
    padding: 15px 0;
    margin-top: -30px;
}
.blog-category ul {    
    list-style: none;  
    margin: 0;
    padding: 0;    
}
.blog-category li {
    font-weight: 600;
    display: inline-block;
    margin-right: 30px;
}
.blog-category li a {
    text-decoration: none;
    position: relative;
}
.blog-category li a.active::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: #ff0000;
}
.blogDetails .blog-category li a::before {
    content: "";
    position: absolute;
    right: -15px;
    top: 9px;
    border: solid black;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);

}
.button {
    float: right;
    padding: 10px;
    border: #ff0000 1px solid;
    background: #fff;
    font-size: 18px;
    cursor: pointer;   
    display: block;
    width: fit-content;
    text-decoration: none;
}

.blog__right button:hover {
    background: #ff0000;
    color: #fff;
}

.is--wd75{
    width: 75%;
}
.is--wd25{
    width: 25%;
}
.error-message {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
}
.ui-autocomplete {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 20px;
  }
.legalinfo{
    margin-top: 50px
}
.error1 {
    display: none;
    width: auto;
    z-index: 999;
    bottom: -25px;
    left: 30px;
    color: rgb(254, 0, 0);
    box-shadow: rgb(212, 212, 212) 1px 1px 1px;
    margin-top: 10px;
    font-size: 12px;
    text-transform: capitalize;
    position: absolute !important;
    padding: 2px 5px;
    background: rgb(217, 217, 217);
    border-radius: 0px !important;
}
.antispm {
    display: none;
}
.showthanksPopup {
    display: block !important
}
.full-popup {
    height: 100%;
    overflow: auto;
}

.full-popup:before {
    content: "";
    position: absolute;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.7);
}
.intentPopup {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 20%;
    width: 80%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}
#thanksPopup.intentPopup, #thanksSubscriptionPopup.intentPopup {
    width: 90%;
}
.intentPopup-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    border-radius: 8px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}
#thanksPopup .intentPopup-content {
    width: 100%;
    float: left;
    padding: 0 0 10px;
}
.close, .showthanksPopupClose {
    position: absolute;
    right: -10px;
    top: -10px;
    width: 25px;
    height: 25px;
    color: #323746;
    cursor: pointer;
    z-index: 10000;
    background: #666;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    opacity: 1 !important
}
.close img, .showthanksPopupClose img {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 7px;
}

.intentPopup-body {
    text-align: center;
    font-size: 24px;
    color: #222;
    padding: 20px 15px 10px;
    min-height: 350px;
}
#thanksPopup .intentPopup-body, #thanksSubscriptionPopup .intentPopup-body {
    min-height: inherit !important;
    padding-top: 0 !important;
}
.intentPopup-body__text {
    position: relative;
    width: 100%;
    float: left;
}
.intentPopup-body__left {
    float: left;
    width: 65%;
    margin-right: 2%;
}
#thanksPopup .intentPopup-body__left, #thanksSubscriptionPopup .intentPopup-body__left {
    width: 100%;
    margin-right: 0;
}
.intentPopup-body__content {
    float: left;
    text-align: center;
    width: 100%;
    font-size: 23px;
    color: #222;
    padding-top: 20px;
}
    .intentPopup-body__content p {
        line-height: 26px;
        font-size: 20px;
        font-weight: 600;
        color: #333;
    }
    .intentPopup-body__content p {
        line-height: 26px;
    }
    .intentPopup-body__content a .fa-phone:before {
        content: "\f095";
        transform: rotate(90deg);
        top: 15px;
        left: 57px;
        font-size: 18px;
    }
.immediate-assit {
    color: #c42401;
    font-weight: 700;
    font-size: 28px;
    padding-top: 10px;
    display: inline-block;
}
.widget [class*=col-] {
    padding-right: 0;
    padding-left: 0;    
}
.contact__info{
    padding-left:0;
}
textarea {
    padding: 5px 15px 0 35px;
}
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
    top: 35%;
}
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
    background: url(/Content/images/icons/left_arrow.svg) no-repeat 0 0;
    width: 20px;
    height: auto
}
.ui-datepicker .ui-datepicker-next span {
    transform:rotate(180deg)
}

@media(max-width:340px) {
    .header .logo img {
        width: 140px !important;
    }
    
}
@media(max-width:360px) {
    .header .logo img {
        width: 150px;
    }
    .tfn a {
        font-size: 14px;
    }
}
@media(max-width:767px) {
    .header ul{
        background:#fff
    }
    .herobanner {
        background: #04273a !important;
    }
    .departFieldContainer{
        width: 100% !important
    }
    .Phone {
        margin-right: 1px;
    }
    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .card.h-100 img{
        height:350px
    }
}



@media (min-width: 768px) {
    .container {
        padding-right: 0;
        padding-left: 0;
    }
    .widget [class*=col-] {
        padding-right: .25rem;
        padding-left: .25rem;
    }
    .header-container {
        float:left
    }
    .header .logo {
        padding: 5px 0;
    }

    .header .logo img {
        width: 292px;
        height: auto;
        margin-left: 0;        
    }

    .header ul {
        height: auto;
        /* Disable right-to-left effect for larger screens */
        position: static;
        width: auto;
        transition: none;
        /* Disable sliding for larger screens */
        float: left;
        text-align: center;
        margin: 0 auto;
        width: 55%;
    }
    .header ul li {    
    border-bottom: none;
}
.header ul li.dropdownmenu::after {    
    right: 0;
    top: 23px;    
}

    .header .menu-icon {
        display: none;
    }

    .header li {
        display: inline-block;
    }

    .header li a {
        padding: 15px;
    }

    .header ul ul {
        width: 170px;        
        box-shadow: 0px 1px 4px 0px rgba(29, 29, 29, 0.4);
        position: absolute;
        top: 50px;        
        z-index: 10000;
    }

    .tfn {
        width: 19%;
        padding: 10px 0;
        float: right;
    }

    .tfn a {
        font-size: 20px;
    }
    .traveler-section {        
        top: 50px;        
    }

    .Phone {
        width: 30px;
        height: 30px;
    }

    .Phone::before {
        width: .5em;
        height: .5em;
    }

    .Phone::after {
        top: 4px;
        width: 0.35em;
        height: 0.35em;
    }
    .noWidget .herobanner__widget {
        display: none;
    }

    .noWidget .herobanner__content {
        padding: 45px 0;
    }

    .noWidget.herobanner:before {
        top: 0px;
    }
    .herobanner {
        background: url(/Content/images/herobanner-homepage.png) no-repeat center center;
        background-size: 100% !important;
        position: relative;
        box-shadow: 0 0 57px rgba(0, 0, 0, .2);
        padding: 45px 0 0;
        background-size: 100%;
    }
        .herobanner:before {
            content: "";
            background: rgba(0, 0, 0, 0.3);
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
        }
    .herobanner__content {
        position: relative;
        z-index: 1;
        color: #fff;
        text-align: center;
        font-size: 32px;
        line-height: 52px;
        margin-bottom: 0;
        margin-top: 50px;
    }       
    .herobanner__content strong {    
    font-size: 36px;    
}
    .intro__image {        
        display: inline
    }
    .user_icon:before {       
        top: 10px;
    }
    .flexcontainer {
        flex-direction: row;
    }
    .flexcontainer-left {
        width: 48%;
    }
    .flexcontainer-right {
        width: 48%;
    }
    .widget .flexcontainer {
        flex-direction: row
    }
    .popular {
        margin: 0;        
    }

    .overlay {
        display: none;
        /* Hide overlay for larger screens */
    }
    .usp__container {
        gap: 15px;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;        
    }
    .intro {
        margin: 15px 0;        
    }
    .intro__container {        
        flex-direction: row
    }
    .intro__image {
        width: 50%;        
    }
    .intro__text {
        width: 50%;
        padding: 0 30px 0 0;
    }

        .intro__image img {
            width: 100%;            
        }
    .intro-about .intro__container {
        flex-direction: row;
        margin-bottom: 70px;
    }
    .intro-about .intro__container:last-child {       
        margin-bottom: 30px;
    }
    .contact__info {
        padding-left: 30px;
    }
    .contact__info li {
        margin-bottom: 15px;
    }

    .faqs {
        margin: 30px 0;        
    }
    .legalinfo {
        margin-top: 80px
    }
    .footer {        
        padding: 30px 0 0;        
    }

    .footer__container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 30px;
    }
    .traveler-section {
        width: 500px;
        padding: 10px;
    }
    .travelers__plus-minus {        
        width: 20px;        
    }
    .travelers__value {        
        width: 55px !important;
    }
    .travelers select {        
        margin-bottom: 0;
    }
    .traveler__button .btn-default {        
        width: fit-content
    }
    #thanksPopup.intentPopup, #thanksSubscriptionPopup.intentPopup {
        width: 30%;
    }
    .row.equal-height-row {        
        flex-wrap: nowrap;
    }
}