@import url(./style.css);

.newheader {
    background: var(--secondary-color);
    z-index: 999;
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    box-shadow: 0 3px 3px rgba(20, 20, 20, 0.1);

    .newhead {
        width: 90%;
        margin: auto;
        border: 0;
        padding: 10px 20px;
        border-radius: 100px;
    }

    .left {
        margin: auto 0;
        max-width: fit-content;

        img {
            width: 130px;
        }
    }

    .right {
        margin: auto 0;

        a, p {
            color: var(--fourth-color) !important;
        }
    }
}

.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(--fourth-color) !important;
    }

    a {
        color: var(--fourth-color) !important;
        transition: border-color 0.5s ease-in-out;
        padding: 7px 15px;
        border-radius: 0;
        border-bottom: 3px solid transparent;
    }

    li {
        background-color: transparent;
        margin: 0;
        padding: 0 5px;
        cursor: pointer;
    }

    li:hover {
        a {
            border-color: var(--fourth-color) !important;
        }
    }
}

#off,
#on {
    display: none;
}

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: var(--secondary-color);

    .row {
        padding-block: 40px;
    }
}

.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-color: var(--secondary-color);

    .row {
        padding-block: 20px 40px;
    }

    .homebtn .button {
        border-radius: 25px;
        padding-block: 0 !important;
        cursor: pointer;
    }

    .homebtn .button {
        background-color: transparent;
        border: 1px solid var(--fourth-color);
    }

    .homebtn .button:hover {
        background-color: var(--third-color);
    }

    h1 {
        margin-block: 15px;
    }

    .triptyp {
        width: fit-content;
        background-color: transparent;
        color: var(--fourth-color);
        padding: 5px;
        margin: 0;
    }

    .triptyp option {
        background-color: var(--fourth-color);
        color: var(--fifth-color);
    }

    .labelcol {
        background-color: var(--fourth-color);
        padding: 10px;
    }

    label {
        margin: 0;
    }

    .lbcol1 {
        border-radius: 10px 0 0 10px;
    }

    .lbcol2 {
        border-radius: 0 10px 10px 0;
    }

    .col3 {
        margin-top: 15px;
        gap: 5px;
        z-index: 9;
        position: relative;

        .column,
        div {
            flex: 1;
        }

        input,
        select {
            border: none !important;
            padding: 0;
            padding-left: 25px !important;
            margin-bottom: 0 !important;
            background-color: transparent;
            background-position-x: 5px;
            background-position-y: center;
            background-repeat: no-repeat;
            background-size: 15px;
            margin-top: 0;
        }

        #flight_from {
            background-image: url(../images/departure.png);
        }

        #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 {
        text-align: center;
        flex: none !important;
        margin-top: 17px;
    }
    
    #flight_submit {
        width: fit-content;
        font-size: 18px !important;
        text-transform: none;
        padding: 23px 20px !important;
    }
}

.cards div {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 15px;
}

.cards p {
    color: var(--fourth-color);
}

.bg {
    background-image: url(/images/img.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 45px;
    border-radius: 10px;

    h2, p {
        color: var(--fourth-color) !important;
    }

    button {
        background-color: var(--fourth-color);
        color: var(--secondary-color) !important;
    }
}

.faqsec h3:first-child {
    flex: 1;
}

.faqsec h3 .fa-angle-up, .faqdetails {
    display: none;
}

.show {
    display: block;
}

.faqsec {
    border-bottom: 2px solid #cacaca;
    padding-bottom: 10px;
}

.bg1 {
    .column {
        margin: auto;
        width: 50%;
        background-color: var(--third-color);
        padding: 30px;
        text-align: center;
        border: 2px dashed var(--secondary-color);
        border-radius: 10px;
    }

    h3 {
        color: var(--fourth-color) !important;
    }

    button {
        font-size: 20px;
    }
    
    i {
        font-size: 50px;
        color: var(--fourth-color);
    }
}

.mainslider {
    h2 {
        flex: 1;
    }

       .row {
           padding-bottom:0;
       }
}

.slider-container1 {
    position: relative;
    overflow: hidden;
}

.slider1 {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 15px;
    margin-top: 20px;
}

.slide1 {
    min-width: 24%;

    img {
        width: 100%;
    }
}

.prev-btn1,
.next-btn1 {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 2px 10px;
    border-radius: 50px;
    cursor: pointer;
    width: fit-content;
    z-index: 99;
}

.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

@media (max-width: 768px) {
.slide1 {
        min-width: 100%;
    }
}