@import url(./style.css);

.newheader {
    background: transparent;
    z-index: 999;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;

    .newhead {
        width: 90%;
        margin: auto;
        border: 0;
        padding: 15px 20px;
        border-radius: 100px;
    }

    .left {
        margin: auto 0;
        max-width: fit-content;

        img {
            width: 150px;
        }
    }

    .right {
        margin: auto 0;

        button {
            background-color: #fff;
            cursor: pointer;
        }

        button:hover {
            background-color: var(--secondary-color);
        }
    }
}

.newheader.scrolled {
    background-color: var(--primary-color);
}

.navigate {
    margin: auto 0;

    ul {
        display: flex;
        list-style-type: none;
        gap: 10px;
        margin-bottom: 0;
        background-color: transparent;
        justify-content: center;
    }

    nav ul li a.active {
        background: var(--primary-color);
        color: var(--fourth-color) !important;
        box-shadow: 0 0 5px 5px rgba(255, 255, 255, 0.2);
    }

    a {
        color: var(--fourth-color) !important;
        transition: border-color 0.5s ease-in-out;
        padding: 7px 15px;
        border-radius: 3px;
    }

    li {
        background-color: transparent;
        margin: 0;
        padding: 0 5px;
        cursor: pointer;
    }

    li:hover {
        a {
            color: var(--third-color) !important;
            background-color: var(--fourth-color);
        }
    }
}

form {
    .pass {
        margin: auto 0 auto auto;
        gap: 10px;
    }

    .radio {
        display: flex;
        gap: 20px;

        input {
            width: 15px;
            margin-left: 0 !important;
        }

        label {
            margin-top: 0;
        }
    }

    ::placeholder {
        color: #676767;
        font-size: 15px;
    }

    input,
    select,
    textarea {
        line-height: 1em !important;
        background-color: var(--fourth-color);
        width: 100%;
        padding: 10px;
        margin: 5px 0;
        border: 1px solid #cacaca;
        border-radius: 5px;
    }

    label {
        flex: 1;
        font-family: var(--secondary-font);
        font-size: 16px;
        margin-top: 10px;
        text-align: left;
        font-weight: 400;
    }

    button {
        width: 100%;
    }

    div {
        gap: 5px;
    }

    .dropdown-container {
        position: relative;
        display: inline-block;
        width: 100%;
    }

    .dropdown-input {
        padding: 10px;
        font-size: 15px;
        border: 1px solid #ddd;
        cursor: pointer;
    }

    .dropdown-content {
        padding: 10px;
        border-radius: 10px;
        position: absolute;
        background-color: #f9f9f9;
        min-width: 200px;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 1;
        border: 1px solid #ddd;
    }

    .dropdown-content .dropdown-group {
        padding: 10px;
        border-bottom: 1px solid #ddd;
    }

    .dropdown-content .dropdown-group:last-child {
        border-bottom: none;
    }

    .dropdown-content label {
        margin-right: 10px;
    }

    .qty {
        cursor: pointer;
        width: 30px;
        text-align: center;
    }

    .qtyminus,
    .qtyplus {
        background-color: #f1f1f1;
        border: 1px solid #ccc;
        font-size: 18px;
    }

    .dropdown-content input[type="text"] {
        width: 50px;
        text-align: center;
    }

    .form-control {
        border: 1px solid #cacaca;
        padding: 10px 12px !important;
    }
}

.herobg {
    background-image: linear-gradient(to bottom, rgba(20, 20, 20, 0.5), rgba(20, 20, 20, 0)), url(../images/banner.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    h1 {
        color: var(--fourth-color);
        font-weight: 700 !important;
    }

    .row {
        padding-top: 100px;
    }
}

.contact {
    form {
        margin-top: 10px;

        button {
            width: 100px;
        }

        input {
            padding: 15px;
            border: 1px solid #cacaca;
            border-radius: 5px;
        }
    }

    .right {
        background-color: var(--third-color);
        padding: 20px;
        box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        max-width: 35%;

        h2 {
            color: var(--fourth-color) !important;
            padding: 5px;
            border-bottom: 1px solid #cacaca;
        }

        h3 {
            background-color: var(--fourth-color);
            border-radius: 50px;
            margin: auto 0;
            z-index: 1;
            color: var(--third-color) !important;
        }

        p {
            background-color: var(--secondary-color);
            color: var(--fourth-color);
            padding: 0 20px;
            border-radius: 0 30px 30px 0;
            margin-left: -10px !important;
            border: 1px solid #fff;
        }

        .flex {
            margin-top: 10px;
        }

        a,
        a:hover {
            color: var(--fourth-color);
        }
    }

    h3,
    p {
        margin: auto 0 !important;
    }
}

.cta {
    background-color: var(--third-color);
    padding: 5px 15px 5px 5px;
    position: fixed;
    left: 10px;
    border: 1px solid var(--fourth-color);
    bottom: 10px;
    z-index: 1;
    display: none;
    border-radius: 50px;
    width: fit-content;

    i {
        background-color: var(--fourth-color);
        color: var(--third-color);
        padding: 10px;
        border-radius: 100%;
    }

    .flex {
        gap: 10px;
    }

    div,
    h3 {
        margin: auto 0 !important;
    }

    h4 {
        color: var(--fourth-color) !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1.5;
    }
}

.BannerBg {
    background-image: linear-gradient(to bottom, rgb(20, 20, 20, 0.7), rgb(20, 20, 20, 0)), url(../images/banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    .row {
        padding-top: 100px;
    }

    h1,
    p {
        text-align: center;
        color: var(--fourth-color) !important;
    }

    .radio {
        background: var(--primary-color);
        width: fit-content;
        padding: 10px 15px;
        border-radius: 5px 5px 0 0;

        label {
            color: #fff;
        }
    }


    .flex, .grid, .d-flex {
        gap: 0;
    }

    .col3 {
        background: #fff;
        border-radius: 0 5px 5px 5px;

        label {
            margin: 0;
            font-size: 14px;
        }

        .column,
        div {
            flex: 1;
        }

        input,
        select {
            padding-left: 27px !important;
            margin-bottom: 0 !important;
            background-color: transparent;
            background-position-x: 7px;
            background-position-y: center;
            background-repeat: no-repeat;
            background-size: 15px;
            border: 0;
            margin-top: 0;
            border-radius: 0;
            height: 55px;
        }

        #flight_from {
            background-image: url(../images/departure.png);
        }

        #flight_to,
        #flight_to_date {
            border-inline: 1px dashed #141414;
        }

        #flight_to {
            background-image: url(../images/arrivals.png);
        }

        #flight_from_date,
        #flight_to_date {
            background-image: url(../images/cdate.png);
        }

        #pass_info {
            background-image: url(../images/passengers.png);
        }
    }

    .search_flights {
        flex: none !important;
    }

    #flight_submit {
        font-size: 16px !important;
        text-transform: none;
        height: 55px;
        display: flex;

        span {
            line-height: 2.3;
        }
    }
}

.usps {
    background-color: #f7f7f7;

    .colum {
        .innercol {
            background-color: var(--fourth-color);
            border-radius: 5px;
            box-shadow: 0 0 3px 3px rgba(20, 20, 20, 0.1);
            padding: 25px;
            margin-top: -25px;
            text-align: left;
        }

        p {
            font-size: 15px;
            line-height: 1.7;
        }

        i {
            margin-left: -20px;
            background-color: var(--secondary-color);
            color: #fff;
            padding: 13px 10px;
            border-radius: 50px;
            font-size: 20px;
        }
    }

    div {
        margin: auto 0;
    }
}

.destinations {
    img {
        width: 100%;
    }

    .column {
        background-image: linear-gradient(to bottom, rgba(20, 20, 20, 0.5), rgba(20, 20, 20, 0.5)), url(../images/a2zbg.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 20px;
        border-radius: 10px;

        h2,
        h3 {
            color: var(--fourth-color) !important;
        }
    }

    .slider-container1 {
        position: relative;
        overflow: hidden;
    }

    .slider1 {
        display: flex;
        transition: transform 0.5s ease-in-out;
        gap: 15px;
    }

    .slide1 {
        border-radius: 10px;
        min-width: 15%;
        max-width: 24%;
        padding: 20px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 300px;
        justify-content: end;
        display: flex;
        flex-direction: column;
    }

    .prev-btn1,
    .next-btn1 {
        display: none;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(87, 87, 87, 0.6);
        color: white;
        border: none;
        padding: 5px 12px;
        border-radius: 50px;
        cursor: pointer;
        width: fit-content;
        z-index: 99;
    }

    .prev-btn1 {
        left: 10px;
    }

    .next-btn1 {
        right: 10px;
    }

    .disabled {
        opacity: 0.5;
        pointer-events: none;
        cursor: not-allowed;
    }

    .flex {
        margin-top: 5px;
    }

    a p {
        color: var(--secondary-color) !important;
    }

    p {
        color: var(--fourth-color);
    }

    .parag {
        flex: 1 !important;
    }
}

.textmedia {
    background-color: #f7f7f7;

    img {
        width: 100%;
        border-radius: 10px;
    }
}

.sections {
    img {
        width: 100%;
    }

    .leftcol {
        max-width: 350px;
    }

    h3 {
        margin-block: 10px !important;
    }

    hr {
        border: 1px solid var(--secondary-color);
        margin-block: 12px;
    }

    .slider-container2 {
        position: relative;
        overflow: hidden;
    }

    .slider2 {
        display: flex;
        transition: transform 0.5s ease-in-out;
        gap: 15px;
    }

    .slide2 {
        border-radius: 10px;
        min-width: 33%;
        max-width: 33%;
    }

    .prev-btn2,
    .next-btn2 {
        display: none;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(87, 87, 87, 0.6);
        color: white;
        border: none;
        padding: 5px 12px;
        border-radius: 50px;
        cursor: pointer;
        width: fit-content;
        z-index: 99;
    }

    .prev-btn2 {
        left: 10px;
    }

    .next-btn2 {
        right: 10px;
    }

    .disabled {
        opacity: 0.5;
        pointer-events: none;
        cursor: not-allowed;
    }
}