@import url(./style.css);

.newheader {
    background: transparent;
    z-index: 999;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;

    .newhead {
        background-color: rgb(255, 255, 255, 0.7);
        width: 90%;
        margin: auto;
        border: 0;
        padding: 10px 20px;
        border-radius: 100px;
        margin-top: 10px;
    }

    .left {
        margin: auto 0;
        max-width: fit-content;

        img {
            width: 100px;
        }
    }

    .right {
        margin: auto 0;

        button {
            background-color: var(--sixth-color);
            cursor: pointer;
            border-radius: 50px;
            color: var(--fifth-color) !important;
            box-shadow: 0 0 5px 5px rgb(20, 20, 20, 0.1);
        }

        button:hover {
            background-color: var(--secondary-color);
        }
    }
}

.newheader.scrolled .newhead {
    background-color: var(--fourth-color);
    box-shadow: 0 0 5px 5px rgb(20, 20, 20, 0.1);
}

.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 {
        border-color: var(--secondary-color) !important;
        color: var(--secondary-color) !important;
    }

    a {
        color: var(--fifth-color) !important;
        transition: border-color 0.5s ease-in-out;
        padding: 5px 10px;
        border-radius: 3px;
        border-bottom: 2px solid transparent;
    }

    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;

        #rdoRoundtrip,
        #rdoOneway {
            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 {
        h2 {
            background-color: var(--third-color);
            color: var(--fourth-color) !important;
            padding: 5px 15px;
            border-radius: 10px;
            text-align: center;
        }

        .grid {
            gap: 10px;
            margin-block: 10px;
        }

        .colum {
            border: 1px solid #cacaca;
            border-radius: 10px;
            padding: 15px;
            text-align: center;
        }
    }

    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/hero.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    h1,
    p {
        text-align: center;
        color: var(--fourth-color) !important;
    }

    .radio {
        background-color: var(--fourth-color);
        margin-bottom: 10px;
        justify-content: center;
        border-radius: 25px;
        padding: 5px 20px;
        width: fit-content;
        margin-inline: auto;
    }


    .flex,
    .d-flex {
        gap: 0;
    }

    .col3 {
        gap: 10px;

        label {
            margin: 0;
            font-size: 14px;
        }

        .labelcol:first-child {
            border-radius: 10px 0 0 10px;
        }

        .labelcol:last-child {
            border-radius: 0 10px 10px 0;
            border-left: 1.5px dashed var(--secondary-color);
        }

        .labelcol {
            background-color: var(--fourth-color);
            padding: 8px 15px !important;
        }

        .column,
        div {
            flex: 1;
        }

        input,
        select {
            padding: 0 0 0 22px !important;
            margin-bottom: 0 !important;
            background-color: transparent;
            background-position-x: 2px;
            background-position-y: center;
            background-repeat: no-repeat;
            background-size: 15px;
            border: 0;
            margin-top: 0;
            border-radius: 0;
        }

        #international_from_location {
            background-image: url(../images/departure.png);
        }

        #international_to_location {
            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 {
        text-align: center;
        flex: none !important;
        margin-top: 10px;
        margin: auto 0;
    }

    #flight_submit {
        width: fit-content;
        font-size: 16px !important;
        text-transform: none;
        padding: 15px 20px !important;
        border-radius: 25px;
        box-shadow: 0 0 5px 5px rgb(255, 255, 255, 0.3);
    }

    .row {
        padding-block: 150px;
    }
}

.usps {
    .row {
        padding-block: 0;
    }

    .usphead {
        background-color: #cacaca;
        padding: 10px 15px;
        border-radius: 10px 10px 0 0;
    }

    .uspbody {
        background-color: var(--fourth-color);
        padding: 15px;
        border-radius: 0 0 10px 10px;
        border: 2px dashed #cacaca;
        border-top: 0;
    }
    
    .colum {
        margin: auto 0;
    }
}

.destinations {
    .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 {
    .row {
        padding-top: 0;
    }

    .img {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 575px;
        border-radius: 400px;
    }

    .img:last-child {
        margin-top: 75px;
    }

    .concol {
        margin: auto 0;
    }

    h2 {
        font-size: 3em !important;
    }
}

.NewBG {
    background-image: url(/images/NewBG.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    .column {
        background-color: rgb(255, 255, 255, 0.85);
        padding: 20px;
        width: 600px;
    }

    .row {
        padding-top: 250px;
        padding-bottom: 0;
    }
}

.galleryimg {
    .img {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 135px;
        border-radius: 10px;
    }

    .grid {
        gap: 15px;
    }

    .imgim {
        height: 415px;
        grid-row: span 2;
    }
}

.sections {
    h2 {
        text-align: center;
        font-size: 2.3em !important;
    }

    .grid div {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .col1 {
        padding: 20px;
        height: 250px;
    }
        
    p, h3 {
        color: var(--fourth-color) !important;
    }

    h4 {
        background: var(--third-color);
        padding: 15px 20px;
        color: var(--fourth-color) !important;
    }

    .col2 {
        text-align: center;
        justify-content: center;
        align-items: center;
        display: flex;

        img {
            width: 130px;
            margin-bottom: 15px;
        }
    }

    .col4 {
        padding: 20px;
        grid-column: span 2;
    }

    .row {
        padding-top: 0;
    }

    .col3 {
        grid-row: span 2;
        padding: 20px;
        display: flex;
        justify-content: space-between;
        flex-direction: column;

        img {
            width: 50px;
        }
    }
}

.belowhero {
    background: linear-gradient(45deg, var(--primary-color) 33%, var(--third-color) 33%, var(--primary-color) 34%);

    .row {
        padding-block: 5px;
    }

    p {
        text-align: center;
        color: var(--fourth-color);
    }
}