#productHeroSection {
    width: 100%;
    height: auto;
    border-radius: 8px;
    aspect-ratio: 3 / 1;
    object-fit: cover;
    background-image: url('../images/packages/packages_hero_image.png');
    background-repeat: none;
    background-size: cover;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    padding-left: 60px;
    color: rgb(255, 255, 255);
    font-size: 2.5em;
}


/*cta elements*/

#callToActionSection {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.newsletterBox {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: black;
    box-sizing: border-box;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 8px;
}

.newsletterBoxLeft {
    width: 60%;
    color: white;
    font-family: Satoshi;
    font-size: 2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.newsLetterBoxRight {
    display: flex;
    flex-direction: column;
    width: 40%;
    align-items: center;
    justify-content: space-between;
}

.newsletterInput {
    width: 100%;
    height: 30px;
    border-radius: 8px;
}

.newsletterSubscribeButton {
    width: 100%;
    height: 30px;
    margin-top: 12px;
    background: white;
    color: black;
    font-weight: bold;
    border-radius: 8px;
}