/*******************
** GENERAL REUSABLE **
*********************/
:root {
    --color-primary: #011F67;
    --color-secondary: #B3011B;
    --color-tertiary: #BD9E50;
    --color-gray-bg: #f4f4f4;
    --color-white: #ffffff;
    --color-dark: #2c2c2c;
    --color-bg: rgba(31, 31, 31, 0.671);
}

*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #343a40;
    line-height: 1;
    overflow-x: hidden;
    /* background-color: #1f1f1f; */
    position: relative;
}

h1, h2 {
    font-family: 'Anton', sans-serif;
}

h1 {
    font-size: 90px;
    font-weight: 400;
    text-transform: uppercase;
}

h2 {
    font-size: 50px !important;
    font-weight: 400;
    color: var(--color-primary);
}

h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 21px;
    font-weight: 900;
    text-transform: uppercase;
}

h4 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 21px;
    font-weight: 700;
}

p, li {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    line-height: 1.3;
}

.sign {
    display: block;
    margin-inline: auto;
}

.gray-bg {
    background-color: var(--color-gray-bg);
}

.blue-bg {
    background-color: var(--color-primary);
}

.mb20 {
    margin-bottom: 20px;
}

.container {
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
}


.section {
    padding-top: 90px;
    padding-bottom: 90px;
}


.secondary-header {
    margin-bottom: 20px;
    text-align: center;
}

    .secondary-header.white {
        color: white;
    }

.tertiary-header {
    margin-bottom: 20px;
}


.red {
    color: var(--color-secondary);
}

.white {
    color: white;
}

.gold {
    color: var(--color-tertiary);
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.center {
    text-align: center;
}

.color-blue {
    color: var(--color-primary);
}

.color-red {
    color: var(--color-secondary);
}


.divider-red {
    content: "";
    height: 5px;
    background: var(--color-secondary);
    width: 100px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.divider-white {
    content: "";
    height: 5px;
    background: var(--color-white);
    width: 100px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.btn, .btn:link,
.btn:visited {
    background-color: var(--color-secondary);
    display: inline-block;
    padding: 10px 20px;
    transition: all 0.3s;
    color: var(--color-white) !important;
    border: none;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    padding: 10px 50px;
    text-decoration: none;
}

    .btn:hover,
    .btn:active {
        background-color: var(--color-white);
        color: var(--color-secondary) !important;
    }

.btn-prime, .btn-prime:link,
.btn-prime:visited {
    background-color: var(--color-primary);
    display: inline-block;
    padding: 10px 20px;
    transition: all 0.3s;
    color: var(--color-white);
    border: none;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    padding: 10px 50px;
    text-decoration: none;
}

    .btn-prime:hover,
    .btn-primen:active {
        background-color: var(--color-secondary);
        color: var(--color-white);
    }

.grid {
    display: grid;
}

.flex {
    display: flex;
}

.gap20 {
    gap: 20px;
}

.grid-2-cols {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3-cols {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4-cols {
    grid-template-columns: repeat(4, 1fr);
}

.grid-5-cols {
    grid-template-columns: repeat(5, 1fr);
}


.grid-6-cols {
    grid-template-columns: repeat(6, 1fr);
}

.grid-template-vip {
    grid-template-columns: repeat(3, 1fr);
/*    grid-template-rows: 70px auto;
*/    grid-template-areas: "img main bullet";
}

.grid-start-2 {
    grid-column-start: 2;
}

.grid-span-2 {
    grid-column-end: span 2;
}

.grid-span-3 {
    grid-column-end: span 3;
}

.grid-span-4 {
    grid-column-end: span 4;
}

.section {
    transition: transform 1.2s, opacity 1s;
}

.section--hidden {
    opacity: 0;
    transform: translateY(-80px);
}

.lazy-img {
    filter: blur(20px);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(9px);
    z-index: 109;
}

.hidden {
    display: none;
}


/*******************
** navigation **
*********************/
.header {
    background-size: cover;
    position: fixed;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: var(--color-white);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header + * {
    padding-top: 110px;
}

.main-nav {
    gap: 24px;
}

.nav-logo {
    width: 200px;
    transition: all ease 300ms;
}

.outer-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 800;
    max-width: 1200px;
    width: 100%;
    z-index: 999;
    margin: 0 auto;
    padding: 0;
}

.main-nav-list {
    display: flex;
    text-decoration: none;
    list-style: none;
    gap: 24px;
    font-size: 18px;
    align-items: center;
}

    .main-nav-list li a:link,
    .main-nav-list li a:visited {
        text-decoration: none;
        color: var(--color-primary);
        font-weight: 700;
        transition: all 0.5s;
    }

    .main-nav-list li a:hover,
    .main-nav-list li a:active {
        text-decoration: none;
        color: var(--color-secondary);
    }

.nav-link {
    padding: 10px;
    position: relative;
    font-size: 20px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
}

.btn-mobile-nav {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
}

.nav-cta {
    background: var(--color-secondary);
}

.nav-icon {
    color: #fff;
    height: 48px;
    width: 48px;
}

    .nav-icon[name='menu-outline'] {
        color: var(--color-primary);
    }

    .nav-icon[name='close-outline'] {
        color: #fff;
        display: none;
    }

.nav-link:hover::after {
    transform: scale(1, 1);
}

/***MOBILE*********/
.btn-mobile-nav {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
}

.nav-icon[name='close-outline'] {
    display: none;
}

.nav-icon {
    color: #fff;
    height: 4.8rem;
    width: 4.8rem;
}

/* STICKY NAV */
/*html:not([data-scroll='0']) .header {
    position: fixed;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: var(--color-primary);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

    html:not([data-scroll='0']) .header .outer-nav {
        width: 100%;
        z-index: 999;
        height: 60px;
        top: 0;
        margin: 0 auto;
        margin: 0;
    }

    html:not([data-scroll='0']) .header .nav-logo {
        max-width: 150PX;
    }

html[data-scroll='0'] .header + div {
    margin-top: -144px;
}
*/






/*******************
** Hero**
*********************/
.hero-section {
    position: relative;
    background-image: url(https://assets.travertex.com/img/cust/myPatriotTravel/hero-bg.jpg);
    background-position: center;
    background-size: cover;
    padding: 100px 0;
    padding-top: 250px;
}

/*html[data-scroll='0'] .hero-section {
    margin-top: -144px;
}
*/
.hero {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    gap: 50px;
    align-items: center;
}

.catch-cry, .hero-h3 {
    color: #ffffff;
}

.hero-h3 {
    margin-bottom: 20px;
}

.hero-image {
    border-radius: 30PX;
    width: 100%;
}


.stars-stripes-img {
    width: 100%;
    margin: 20px 0;
}

.overlay-bg-hero {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.521);
}

.hero-paragraph {
    color: var(--color-white);
    margin-top: 40px;
    text-align: center;
}

/*******************
** Welcome Section**
*********************/
.welcome-section {
    border-bottom: 10px solid var(--color-primary);
}

    .welcome-section p {
        margin-bottom: 1em;
    }


/*******************
** Featured Section**
*********************/
.featured-section {
    background-image: url(https://assets.travertex.com/img/cust/myPatriotTravel/featured-bg.jpg);
    position: relative;
    background-position: center;
    background-size: cover;
}

    .featured-section.Trips {
        background-image: url(https://assets.travertex.com/img/cust/myPatriotTravel/Phils-Airplane-Sunset.jpg);
        position: relative;
        background-position: center 40%;
        background-size: cover;
        padding-block: 150px;
        padding-inline: 20px;
    }

.cards-featured-div {
    margin-top: 30px;
    margin-bottom: -250px;
}

.card-text {
    color: #000000;
}

.card-featured {
    transition: all ease 0.5s;
}

    .card-featured:hover {
        transform: translateY(-20px);
    }

.card-featured-img {
    width: 100%;
}

.card-text {
    margin: 10px;
    text-align: center;
}

.card-featured:link, .card-featured:visited {
    text-decoration: none;
    color: #000000;
}

/*******************
** Why book Section**
*********************/
.why-book-section {
    /*margin-top: 280px;*/
    background: #F4F4F4;
}

.why-book-section2 {
    /*    margin-top: 280px;*/
    background: #F4F4F4;
}

.card-icon-box {
    text-align: center;
}

.why-choose-img {
    max-width: 100px;
}


.where-to-go-section {
    position: relative;
    background-image: url(https://assets.travertex.com/img/cust/myPatriotTravel/mptVenice.jpg);
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(https://assets.travertex.com/img/cust/myPatriotTravel/mptVenice.jpg);
    background-position: center;
    background-size: cover;
    padding: 200px 0;
    padding-top: 250px;
}

/*******************
** VIP Section**
*********************/
.vip-section {
    padding-bottom: 0;
}

.vip-img {
    width: 100%;
    /*transform: translateY(-140px);*/
    border: white solid 5px;
    box-shadow: 0 10px 8px 4px rgba(0, 0, 0, 0.521);
    position: absolute;
    top: -140px;
}

.vip-div-column {
    padding: 0 20px;
}

.vip-red-stars {
    height: 47px;
    width: auto;
    margin-bottom: 25px;
}

.big-vip-text {
    font-size: 11rem !important;
    margin-bottom: 20px;
}

/*******************
** Memories Section**
*********************/
.memory-images-div {
    margin-bottom: 20px;
}

.memories-img {
    width: 100%;
    margin-bottom: 20px;
}
/*******************
** Brands Section**
*********************/

.grid-brand-6-cols {
    grid-template-columns: repeat(6, 1fr);
}

.brand-logo {
    width: 100%;
    padding: 20px;
}
/*******************
** footer Section**
*********************/

.footer-logo {
    width: 100%;
    padding-right: 40px;
}

footer .white {
    font-size: 14px;
}

.footer-col {
    padding: 20px;
}

.footer-inner-col ul li {
    list-style: none;
}

.footer-last-row {
    margin-top: 20px;
    align-items: center;
}

.social-icon {
    width: 40px;
}





















a:has(#Trips) {
    container-name: Trips;
    container-type: inline-size;
}

a:has(#Inaugural) {
    container-name: inaugural;
    container-type: inline-size;
}

a:has(#laborday) {
    container-name: laborday;
    container-type: inline-size;
}

a:has(#july4th) {
    container-name: july4th;
    container-type: inline-size;
}

.promotrip {
    --font: 'Impact', 'Arial Black', sans-serif;
    width: 100%;
    background-repeat: no-repeat;
    background-size: auto 100%;
}

    .promotrip > div {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        font-size: 1.3cqw;
        line-height: 1.1em;
        padding: 2.5em 1.5em;
    }


    .promotrip .title {
        font-family: var(--font);
        font-size: 1.5em;
        line-height: 1.1em;
        font-weight: 400;
    }

    .promotrip > div > div {
        text-align: center;
        font-size: .8em;
    }

    .promotrip .gold {
        font-size: 1.2em;
        line-height: 1.1em;
        color: #B69E60;
        font-weight: 600;
        margin-block: .2em;
    }

    .promotrip ul {
        padding-left: 2em;
    }

    .promotrip li {
        font-size: inherit;
    }

    .promotrip .btn-trip {
        background-color: var(--color-secondary);
        display: block;
        transition: all 0.3s;
        color: var(--color-white);
        border: none;
        text-transform: uppercase;
        font-weight: 700;
        font-family: Arial, Helvetica, sans-serif;
        padding: 10px 20px;
        text-decoration: none;
        font-size: 1.5em;
    }

        .promotrip .btn-trip:hover {
            color: var(--color-secondary);
            background-color: var(--color-white);
        }

#Inaugural {
    height: 55.5292cqw;
    background-image: url(https://assets.travertex.com/img/cust/myPatriotTravel/Graphic1n.jpg);
    color: white;
    padding: 5.3cqw;
}

    #Inaugural > div {
        width: 37cqw;
        height: 100%;
    }

#Trips {
    height: 55.5292cqw;
    background-image: url(https://assets.travertex.com/img/cust/myPatriotTravel/Phils-Airplane-Sunset-s.jpg);
    color: white;
    padding: 5.3cqw;
}

    #Trips > div {
        width: 37cqw;
        height: 100%;
    }

#july4th,
#laborday {
    height: 52.3cqw;
    color: black;
    padding-block: 8cqw;
}

#laborday {
    background-image: url(https://assets.travertex.com/img/cust/myPatriotTravel/Graphic2n.jpg);
    background-position: right;
}

#july4th {
    background-image: url(https://assets.travertex.com/img/cust/myPatriotTravel/Graphic3n.jpg);
    background-position: left;
}

    #july4th > div,
    #laborday > div {
        width: 45.5cqw;
        height: 100%;
        font-size: 1.5cqw;
    }

    #july4th > div {
        margin-left: 54.5cqw
    }

        #july4th > div > div,
        #laborday > div > div {
            font-size: 1em;
        }

    #july4th ul,
    #laborday ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 2em;
    }

    #july4th .title,
    #laborday .title {
        font-size: 2em;
        line-height: 1.1em;
        font-weight: 400;
    }

    #july4th .save,
    #laborday .save {
        font-family: var(--font);
        font-size: 1.8em;
        line-height: 1.1em;
        font-weight: 400;
        color: var(--color-secondary);
    }

@media (max-width: 700px) {
    #Inaugural {
        height: 177.7142cqw;
        background-image: url(https://assets.travertex.com/img/cust/myPatriotTravel/Graphic1Portraitn.jpg);
        padding: 10cqw;
    }

        #Inaugural > div {
            width: 100%;
            height: 97cqw;
        }

    #Trips {
        height: 177.7142cqw;
        background-image: url(https://assets.travertex.com/img/cust/myPatriotTravel/Graphic1Portraitn.jpg);
        padding: 10cqw;
    }

        #Trips > div {
            width: 100%;
            height: 97cqw;
        }

    #july4th,
    #laborday {
        padding-block: 0;
        height: 177.7142cqw;
    }

    #laborday {
        background-image: url(https://assets.travertex.com/img/cust/myPatriotTravel/Graphic2Portraitn.jpg);
    }

    #july4th {
        background-image: url(https://assets.travertex.com/img/cust/myPatriotTravel/Graphic3Portraitn.jpg);
        padding-top: 95.2142cqw;
    }

        #july4th > div,
        #laborday > div {
            width: 100%;
            height: 82.5cqw;
            font-size: 3.3cqw;
        }

        #july4th > div {
            margin-left: 0;
        }

    .promotrip > div {
        font-size: 2.5cqw;
    }
}

@media (max-width: 500px) {
    #Inaugural {
        height: 197.2cqw;
        background-image: url(https://assets.travertex.com/img/cust/myPatriotTravel/Graphic1Portraitan.jpg);
        padding: 0;
    }

        #Inaugural > div {
            width: 100%;
            height: 122cqw;
        }

        #Inaugural > div {
            font-size: 3.5cqw;
        }
}




@media (max-width: 700px) {
}
