/* Global CSS Starts Here*/
@import url('https://fonts.googleapis.com/css2?family=Poppins');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond');
/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display'); */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 16px !important;
}

:root {
    --primary-color: #ed8323;
    --secondary-color: #bd681c;
    --third-color: #464E79;
    --fourth-color: #ffffff;
    --fifth-color: #141414;
    --sixth-color: rgb(114, 54, 141);
    --seventh-color: #006cd2;
    /*fonts*/
    --primary-font: "Cormorant Garamond";
    --secondary-font: Poppins;
}

.row1, .row {
    width: 90%;
    margin: auto !important;
    padding: 80px 20px;
    background-color: transparent;
}

.column {
    flex: auto;
}

.d-flex {
    display: flex;
}

.flex {
    display: flex;
}

h1,
h2,
h3,
h4 {
    font-family: var(--primary-font) !important;
    line-height: 1.3 !important;
    margin: 0;
    padding: 0;
}

p,
.button,
li,
figcaption, #flight_submit, #prsn_done {
    font-family: var(--secondary-font);
    line-height: 2;
    font-size: 1em;
    margin: 0;
    padding: 0;
    color: var(--fifth-color);
    font-weight: 400;
}

a {
    font-family: var(--secondary-font);
    line-height: 2;
    font-size: 1em;
    margin: 0;
    padding: 0;
    color: var(--primary-color) !important;
    font-weight: 400;
    text-decoration: underline;
}

a:hover {
    text-decoration: underline;
    color: var(--secondary-color) !important;
}

h1 {
    font-size: 3em !important;
    font-weight: 700 !important;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 2em !important;
    color: var(--fifth-color) !important;
    font-weight: 700 !important;
}

h3 {
    font-size: 1.7em !important;
    color: var(--fifth-color) !important;
    font-weight: 700 !important;
}

h4 {
    font-size: 1.25em !important;
    color: var(--fifth-color) !important;
    font-weight: 700 !important;
}

li {
    margin-left: 14px;
}

.button, #flight_submit, #prsn_done {
    border: none;
    background: var(--primary-color);
    padding: 5px 20px;
    border-radius: 0;
    color: var(--fourth-color) !important;
    font-weight: 700;
    border-radius: 5px;
}

    .button:hover, #flight_submit:hover, #prsn_done:hover {
        background-color: var(--secondary-color);
    }

.gap {
    gap: 2.5rem;
}

.gap1 {
    gap: 2rem;
}

.gap2 {
    gap: 1.5rem;
}

.gap3 {
    gap: 1rem;
}

.grid {
    display: grid;
    gap: 20px;
}

.grid1 {
    grid-template-columns: repeat(2, 1fr);
}

.grid2 {
    grid-template-columns: repeat(3, 1fr);
}

.grid3 {
    grid-template-columns: repeat(4, 1fr);
}

.grid4 {
    grid-template-columns: repeat(5, 1fr);
}

.grid5 {
    grid-template-columns: repeat(6, 1fr);
}

ul#ui-id-2 {
    background-color: #fff;
    padding: 5px;
}

ul#ui-id-1 {
    background-color: #fff;
    padding: 5px;
}

.newfooter {
    background-color: var(--third-color);

    .foot {
        width: 90%;
        padding: 20px;
        margin: auto;
    }

    p,
    a {
        font-size: 15px;
        color: var(--fourth-color) !important;
        line-height: 1.7;
    }

    a:hover {
        color: var(--fourth-color) !important;
        text-decoration: underline !important;
    }

    h4 {
        color: var(--primary-color) !important;
        text-transform: uppercase;
    }

    hr {
        border-color: #fff;
    }

    img {
        width: 125px;
    }

    .fa-brands {
        background-color: var(--fourth-color);
        color: var(--primary-color);
        padding: 10px 12px;
        border-radius: 50%;
    }

    .fa-brands:hover {
        color: var(--fourth-color);
        background-color: var(--primary-color);
    }
}

#off,
#on {
    display: none;
}