/* --------------------------------------------

        Plate Pass --> index

-------------------------------------------------- */
body {
    overflow-x: hidden;
    color: var(--plate-pass-brown);
}

/*--------
Header
--------*/

#passHeader {
    width: 100%;
    position: relative;
    background-image: url("/assets/img/plate-pass/home_hero_texture@2x.jpg");
    background-size: contain;
    background-position: right;
}

#passHeaderHero {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

#passHeaderHeroDisclaimer {
    position: absolute;
    bottom: 25px;
    color: #FFFFFF;
    width: 100%;
    text-align: center;
}

.passButton {
    color: #FFFFFF;
    background-color: var(--orange);
    width: 100%;
    max-width: 289px;
    border-radius: 10px;
    padding: 18px 20px;
    text-align: center;
    font: normal normal 700 18px/27px Rebrand;
    cursor: pointer;
}

.passLogin {
    font: normal normal 300 16px/21px Rebrand;
    margin-top: 35px;
}

#passHeaderTag {
    position: absolute;
    top: 71px;
    left: 36%;
    max-width: 128px;
    width: 100%;
}

#passHeaderLogo {
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 50%;
    max-width: 376px;
    width: 100%;
}

@media (max-width: 800px) {

}

/**********
Title
 */

#passTitle {
    text-align: center;
    font-family: "Eames Century Modern", sans-serif;
    font-size: 42px;
    color: var(--orange);
    margin: 40px 0 0;
}

@media (max-width: 800px) {
    #passTitle {
        font-size: 38px;
        margin-bottom: 40px;
    }
}


/*--------
Tiers
--------*/
#passPlanTiers {
    padding: 40px 0 95px 0;
}

#passPlanTiersJoin {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
}

@media (max-width: 800px) {
    #passPlanTiers {
        padding: 0 0 70px 0;
    }
}

/*--------
Mission
--------*/

#passMission {
    width: 100%;
    padding: 16px 0;
    background-color: #48321E;
}

#passMissionOuter {
    width: 100%;
    background-color: #48321E;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 47px 20px 72px;
}

#passMissionTitle {
    font: normal normal 700 28px/36px Eames Century Modern;
    color: #FFFFFF;
    margin: 0 0 46px;
}

#passMissionInner {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.passMissionItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
}

.passMissionItemImage {
    max-width: 82px;
    width: 100%;
}

.passMissionItemTitle {
    font: normal normal 700 21px/29px Eames Century Modern;
    margin: 11px 0;
}

.passMissionItemText {
    font: normal normal 300 16px/24px Rebrand;
    margin: 0;
}

@media (max-width: 800px) {

    #passMissionTitle {
        font: normal normal 700 24px/30px Eames Century Modern;
        margin: 0 0 28px;
    }

    #passMissionInner {
        flex-direction: column;
        gap: 36px;
    }

    .passMissionItemImage {
        max-width: 63px;
    }

    .passMissionItemTitle {
        margin: 13px 0 11px;
    }

}

/*--------
FAQ
--------*/

#passFaq {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

/*--------
Footer
--------*/

#passFooter {
    width: 100%;
    position: relative;
    background-image: url("/assets/img/plate-pass/footer_woodtexture.png");
    object-fit: cover;
    background-repeat: no-repeat;
    padding: 84px 20px 437px;
    overflow: hidden;
}

#passFooterStew {
    position: absolute;
    top: 54px;
    left: -9%;
    width: 100%;
    max-width: 422px;
}

#passFooterAvocadoSalad {
    position: absolute;
    top: 309px;
    right: -93px;
    width: 100%;
    max-width: 412px;
}

#passFooterSandwich {
    position: absolute;
    top: 442px;
    left: 23%;
    width: 100%;
    max-width: 445px;
}

#passFooterContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#passFooterTitle {
    font: normal normal bold 28px/36px Eames Century Modern;
    margin-bottom: 24px;
}

#passFooterTitleMobile {
    display: none;
}

@media (max-width: 800px) {

    #passFooter {
        padding: 0 20px 410px;
    }

    #passFooterStew {
        top: 330px;
        left: unset;
        max-width: 181px;
    }

    #passFooterAvocadoSalad {
        top: 459px;
        right: -60px;
        max-width: 216px;
    }

    #passFooterSandwich {
        top: unset;
        bottom: -60px;
        left: -60px;
        max-width: 230px;
    }

    #passFooterTitle {
        display: none;
    }

    #passFooterTitleMobile {
        display: block;
        font: normal normal bold 24px/30px Eames Century Modern;
        margin-bottom: 26px;
    }

}