@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;

        i {
            background-color: var(--primary-color);
            margin: auto 0;
            padding: 10px;
            font-size: 22px;
            border-radius: 25px 0 0 25px;
        }

        span {
            font-size: 12px;
        }

        p {
            padding: 2px 15px;
            border-radius: 0 25px 25px 0;
            border: 1px solid var(--primary-color);
            margin: auto 0 !important;
            color: var(--fourth-color) !important;
            line-height: 1.2;
            font-size: 15px;
        }

        a {
            line-height: 1.2;
            color: var(--fourth-color) !important;
        }
    }
}

.newheader.scrolled {
    background-color: var(--secondary-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 {
        color: var(--primary-color) !important;
    }

    a {
        color: var(--fourth-color) !important;
        transition: border-color 0.5s ease-in-out;
        padding: 5px 13px;
        border-radius: 5px;
    }

    li {
        background-color: transparent;
        margin: 0;
        padding: 0 5px;
        cursor: pointer;
    }

    li:hover {
        a {
            color: var(--fourth-color) !important;
            background-color: var(--secondary-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;
            margin-left: 20px;
        }
    }

    ::placeholder {
        color: var(--fifth-color);
    }

    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-color: var(--third-color);

    h1 {
        color: var(--fourth-color);
        text-shadow: none;
    }

    .row {
        padding-top: 120px;
    }
}

.contact {
    form {
        margin-top: 10px;

        button {
            width: 100px;
        }

        input {
            padding: 15px;
            border: 1px solid #cacaca;
            border-radius: 5px;
        }
    }

    .right {
        background-color: var(--primary-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(--primary-color) !important;
        }

        p {
            background-color: var(--primary-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(--secondary-color);
    padding: 5px 15px 5px 5px;
    width: fit-content;
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    display: none;
    margin: 10px;
    border-radius: 50px;

    i {
        background-color: var(--third-color);
        color: var(--fourth-color);
        padding: 10px;
        border-radius: 100%;
    }

    div {
        margin: auto 0;
    }

    h3,
    p {
        margin: auto 0 !important;
        color: var(--fourth-color) !important;
        padding: 0 !important;
        line-height: 1.5;
    }

    h4 {
        color: var(--fourth-color) !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1.5;
    }
}

.bg1 {
    background-image: url(../images/Slider1_768.jpg);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;

    .row {
        padding-top: 120px;
    }

    .col3 {
        gap: 10px;

        .labelcol {
            border: 1px solid #787878;
            padding: 7px 10px;
            border-radius: 10px;
        }

        label {
            font-size: 14px;
            font-weight: 700;
        }

        ::placeholder {
            color: #676767;
        }

        .grid {
            gap: 10px;
        }

        .column,
        div {
            flex: 1;
        }

        button {
            width: fit-content;
            margin: auto 0;
        }

        input,
        .form-control,
        select {
            border-right: 1px solid #cacaca;
            margin: 0 !important;
            padding: 5px 0 0 10px !important;
            background-color: transparent;
            border: none;
        }
    }

    .tabs {
        margin: 0;
        background-color: #EEF2F6;
        padding: 5px 15px 0 15px;
        border-radius: 10px 10px 0 0;
    }

    .tab-btn {
        padding: 5px 25px;
        background-color: transparent;
        border: none;
        border-bottom: 4px solid transparent;
        cursor: pointer;
        transition: background-color 0.3s;
        color: var(--fifth-color);
        font-weight: 700;
    }

    .tab-btn:hover {
        border-color: var(--fifth-color);
    }

    .tab-btn.active {
        color: var(--secondary-color);
        border-color: var(--secondary-color);
    }

    .tab-content {
        display: flex;
        border-radius: 0 0 10px 10px;
        background-color: var(--fourth-color);
        box-shadow: 0 2px 2px rgba(20, 20, 20, 0.1);
    }

    .tab-panel {
        display: none;
        padding: 20px;
        border-radius: 0 0 10px 10px;
        width: 100%;
    }

    .tab-panel.active {
        display: block;
    }
}

.lastminute {
    img {
        width: 75px;
    }

    .ccolumn {
        border: 1px solid var(--secondary-color);
        border-radius: 5px;
        padding: 15px;
    }

    p {
        line-height: 1.6;
        font-size: 15px;
    }

    a {
        font-size: 13px;
        margin: auto 0;
        color: var(--fifth-color) !important;
    }

    button {
        background-color: transparent;
        color: var(--secondary-color);
        border: 1px dashed var(--secondary-color);
        font-size: 15px;
        width: fit-content;
        padding: 0 10px;
    }
}

.nexttrip {
    .row {
        padding-block: 0;
    }

    .rangecol {
        background: linear-gradient(90deg, #008a04, #edb743 30.73%, #fbbc04 66.15%, #f11515);
        border-radius: 3rem;
        height: 6px;
        margin-block: 10px;
    }

    .innercol {
        padding: 20px;
    }

    .colum {
        border-radius: 10px;
        background-color: var(--fourth-color);
        box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
    }

    img {
        width: 100%;
        border-radius: 10px 10px 0 0;
    }

    p {
        font-size: 13px;
        line-height: 1.7;
    }

    .innercolling {
        box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        padding: 20px;
        text-align: center;

        h4 {
            margin-block: 12px !important;
        }

        .flex {
            padding: 5px;
            border-radius: 5px;
            border: 2px solid var(--secondary-color);
            margin-block: 12px;

            i {
                background-color: var(--secondary-color);
                padding: 5px;
                border-radius: 5px;
                color: var(--fourth-color);
            }

            p {
                text-align: center;
                flex: 1;
                margin: auto 0 !important;
            }
        }
    }
}

.vootticketbook {
    .innerrow {
        .column {
            border-radius: 5px;
            box-shadow: 0 0 2px 2px rgba(20, 20, 20, 0.1);
            padding: 15px;
            border: 1px solid transparent;
            cursor: pointer;
            grid-template-columns: repeat(4, 1fr);
            display: grid;
            gap: 10px;
        }

        button {
            background-color: transparent;
            border: 1.5px solid var(--secondary-color);
            color: var(--secondary-color);
        }

        .column:hover {
            border-color: var(--secondary-color);

            button {
                background-color: var(--secondary-color);
                color: var(--fourth-color);
            }
        }

        .contentcol {
            grid-column: span 3;
            border-right: 2px solid #cacaca;
            padding-right: 10px;
        }

        p {
            font-size: 14px;
        }

        img {
            width: 20px;
        }

        .flighthead {
            p:first-child {
                flex: 1;
            }

            p:last-child {
                background-color: var(--fifth-color);
                color: var(--fourth-color);
                padding-inline: 10px;
                border-radius: 25px;
            }
        }

        .flex {
            div:nth-child(2) {
                flex: 1;
                text-align: center;

                p {
                    line-height: 1.5;
                    font-size: 12px;
                }
            }

            div:last-child {
                text-align: right;
            }

            div {
                margin: auto 0;
            }

            hr {
                margin-block: 0;
            }
        }
    }
}

.travelchoice {
    .row {
        padding-block: 0;
    }

    i {
        color: #008a04;
    }
}

.column2 {
    background-size: cover;
    background-position: center;
    height: 295px;
    display: flex;
    align-items: end;
    border-radius: 5px;
    box-shadow: 0 0 2px 2px rgba(20, 20, 20, 0.1);
    padding: 20px;

    h3,
    h4 {
        color: var(--fourth-color) !important;
        font-weight: 400 !important;
    }
}

.column1 {
    border: 1px solid #b1b1b1;
    border-radius: 5px;

    img {
        width: 100%;
        border-radius: 5px 5px 0 0;
    }
}

.column1,
.column2 {
    .innercol {
        padding: 20px;

        .flex {
            h3 {
                font-weight: 400 !important;
            }

            div:nth-child(1) {
                flex: 1;
            }

            p {
                font-size: 14px;
                line-height: 1.5;
            }

            div:nth-child(2) {
                margin-top: auto;
            }
        }
    }
}

.reviewssec {
    .column {
        border: 1px solid var(--fifth-color);
        padding: 15px;
    }

    p {
        font-size: 15px;
        line-height: 1.7;
    }
}

.textrow {
    border-top: 1px solid var(--fifth-color);

    .row {
        padding-block: 30px;
    }

    p {
        line-height: 1.7;
        font-size: 14px;
    }
}

.newslettersec {
    .row {
        padding-top: 0;
    }

    form {
        gap: 10px;
    }

    input {
        margin: 0;
    }

    button {
        max-width: 110px;
    }

    img {
        margin-bottom: auto;
        width: 65px;
    }
}

#hoteldetails {
    position: absolute;
    background-color: var(--fourth-color);
    box-shadow: 0 0 2px 2px rgba(20, 20, 20, 0.1);
    padding: 10px;
    display: grid;
    gap: 10px;
    width: 200px;
    border-radius: 5px;
    left: 10px;
    top: 90%;
    display: none;

    label {
        margin: auto 0;
    }

    input {
        flex: 1;
        border: 1px solid #cacaca;
        padding: 5px 10px !important;
        font-size: 14px;
    }

    button {
        padding-block: 0;
        margin-left: auto;
    }
}

.CustomerThanks {
    background: rgba(20, 20, 20, 0.85);
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    height: 100vh;

    .div {
        margin: auto;
        padding: 40px;
        width: 50%;
        height: 50%;
        background-image: linear-gradient(to right, rgb(255, 255, 255, 0.7), rgb(255, 255, 255, 0.7)), url(../images/Slider1_76p8.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 10px;
        text-align: center;
        background-color: rgba(255, 255, 255, 1);
        box-shadow: 0 0 5px 5px rgba(20, 20, 20, 0.3);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        div {
            width: 100%;
        }

        h2 {
            padding-top: 0 !important;
        }

        button {
            padding-block: 0 !important;
            margin-top: 15px !important;
            margin-bottom: 0 !important;
        }
    }
}

.popup-container {
    z-index: 1000;
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh !important;

    .container {
        width: 100% !important;
        max-width: 100% !important;
        background-color: rgba(20, 20, 20, 0.95) !important;
    }

    .row {
        height: 100vh;
        padding: 20px 20px !important;

        .column {
            text-align: center;
        }

        img {
            width: 40%;
        }
    }

    .popup .column {
        i {
            color: var(--fourth-color);
            background-color: var(--secondary-color) !important;
            padding: 10px 12px !important;
            border-radius: 50px;
            font-size: 20px;
            cursor: pointer;
            text-align: top;
        }
    }
}

#view,
.nav {
    z-index: 9999 !important;
}

.popup-content {
    background-color: transparent;
    width: 100% !important;
    z-index: 1;
}

iframe {
    width: 100%;
    height: 100vh;
    border: none;
}

.newctasection {
    position: fixed;
    right: 15px;
    bottom: 15px;
    display: flex;
    gap: 15px;
    left: auto;
    max-width: fit-content !important;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 2px 2px rgba(20, 20, 20, 0.2);
    background-color: #fff;

    p, a {
        line-height: 1.7;
    }

    .fa-phone-volume {
        background-color: #005282;
        margin-bottom: auto;
        padding: 10px;
        font-size: 20px;
        border-radius: 5px;
        color: #fff;
    }

    a {
        font-size: 20px;
        font-weight: 700;
    }

    .fa-xmark {
        position: absolute;
        right: 10px;
        top: 10px;
        cursor: pointer;
        font-size: 20px;
    }
}