.landing-page-form {
    background: var(--blue);
    width: 100%;
    padding: 50px 0 40px;
}

.landing-page-form-container {
    width: 90%;
    margin: auto;
}

.email_form {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.email_form > input::placeholder {
    color: var(--blue) !important;
    font-size: 22px;
    text-transform: uppercase;
    font-family: "PepsiOwnersCompressed", sans-serif;
}

.lp-title, .lp-sub-title, .lp-title-1, .lp-title-mobile {
    font-weight: bold;
    font-family: "PepsiOwnersExtended", sans-serif;
    color: white;
    line-height: 100%;
    width: 100%;
    text-align-last: justify;
    align-items: center;
}

.lp-title {
    font-size: 3.5vw;
    font-family: "PepsiOwnersCompressed", sans-serif;
    letter-spacing: 2px;
}

.lp-below-text-cont {
    margin-top: 60px;
}

.lp-title-1 {
    font-size: 4.4vw;
    margin-bottom: 20px;
}

.lp-title-mobile {
    display: none;
}

.lp-pre-sub-title {
    font-size: 1.8vw;
    font-family: 'PepsiOwnersCompressed', "sans-serif";
    vertical-align: bottom;
    margin-left: 1px;
}

.lp-sub-title {
    font-size: 2.1vw;
}

/* Promotional cards section */
.promo-cards {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin: 40px 0 0;
    width: 100%;
}

.promo-card {
    flex: 1;
    width: 200px;
    height: 400px;
    position: relative;
    border: 10px solid white;
    overflow: hidden;
}

.promo-card > img {
    width: -webkit-fill-available;
    height: 100%;
    object-fit: cover;
    object-position: 45% 0;
}

.promo-card-apron {
    object-position: 45% 100% !important;
    height: 300px;
    transform: scalex(1.12);
    transform-origin: left center;
}

.promo-card-pizza {
    transform: scale(1.2);
    object-position: 59% 42% !important;
    transform-origin: center bottom;
}

.submit-btn {
    position: relative;
}

.submit-btn .spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.submit-btn.loading {
    .spinner {
        display: inline-block;
    }
}

.submit-btn.loading .btn-text {
    visibility: hidden;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


@media (max-width: 1300px) and (min-width: 900px) {
    .promo-card {
        height: 290px;
    }

    .lp-title {
        font-size: 3.7vw;
    }
}

@media (max-width: 1200px) and (min-width: 900px) {
    .lp-title {
        font-size: 3.1vw;
    }

    .lp-title-1 {
        font-size: 4.3vw;
        margin-bottom: 10px;
    }

    .lp-sub-title {
        font-size: 2vw;
    }

    .lp-pre-sub-title {
        font-size: 2vw;
    }

    .promo-card {
        height: 260px;
    }

    .promo-cards {
        margin-top: 20px;
    }

    .lp-below-text-cont {
        margin-top: 40px;
    }
}

@media (max-width: 900px) and (min-width: 600px) {
    .lp-sub-title {
        font-size: 2vw;
    }

    .lp-title {
        font-size: 2.7vw;
    }

    .lp-title-1 {
        font-size: 4vw;
    }

    .promo-card {
        height: 200px;
    }

    .lp-pre-sub-title {
        font-size: 1.5vw;
    }

    .promo-cards {
        margin-top: 20px;
    }

    .lp-below-text-cont {
        margin-top: 40px;
    }

    .lp-title-1 {
        margin-bottom: 10px;
    }

}


@media screen and (max-width: 600px) {

    .lp-title-mobile {
        font-size: 4.5vw;
        line-height: 100%;
        font-family: 'PepsiOwnersExtended', sans-serif;
        display: block;
        text-align-last: center;
        text-align: center;
    }

    .lp-title-1 {
        font-size: 9vw;
        text-align: center;
        text-align-last: center;
        margin-bottom: 10px;
    }

    .lp-below-text-cont {
        margin-top: 50px;
    }

    .email_form {
        flex-direction: column;
        gap: 15px;
    }

    .landing-page-form-container {
        width: 100%;
    }

    .promo-cards {
        margin: 30px 0 50px;
    }

    .promo-card {
        height: 320px;
        flex: initial;
    }

    .lp-sub-title, .lp-title {
        display: none;
    }

    .promo-card-apron {
        object-position: 45% 60% !important;
    }
}

@media screen and (max-width: 450px) {
    .lp-title-mobile {
        font-size: 4.5vw;
        text-align: center;
        text-align-last: center;
    }

    .lp-sub-title, .lp-title {
        display: none;
    }

}


@media screen and (min-width: 1400px) {
    .lp-title {
        font-size: 56px;
    }

    .lp-title-1 {
        font-size: 65px;
    }

    .lp-sub-title {
        font-size: 33px;
    }

    .lp-pre-sub-title {
        font-size: 20px;
    }
}
