.page .hero{
    background-image: url("../../images/page-hero.png");
    background-repeat: no-repeat;
    min-height: 100px;
    background-size: 100% auto;
    background-position: center top;
    padding: 40px 20px;
}
.page .hero .title{
    font-size: 48px;
    font-weight: 800;
    line-height: 66px;
    text-align: center;
    color: var(--petals-white);
}
.front-page-title{
    background-image: url("../../images/front-page-title.png");
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    background-size: auto 100%;
    background-repeat: no-repeat;
    height: 100px;
    margin-top: 30px;
    background-position-x: center;
    padding-top: 36px;
    color: var(--petals-white);
}
.hero-banner{
    margin-top: 20px;
    max-width: 100%;
    height: auto;
}
.hero-banner img{
    width: 100%;
    height: auto;
}
.page-content{}
.page-content h1 {
    font-size: 32px;
    font-weight: bold;
}
.page-content h2{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 28px;
}
.page-content .purple-underline{
    padding-bottom: 8px;
    position: relative;
}
.page-content .purple-underline:after{
    content: "";
    position: absolute;
    width: 10%;
    height: 1px;
    bottom: 0;
    left: 45%;
    border-bottom: 3px solid var(--petals-purple-2);
}
.page-content p{
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
}
.page-content .oval-bg{
    background-image: url("../../images/pages/oval-bg.png");
    background-size: 100%;
    background-repeat: no-repeat;
}
.page-content .oval-bg .oval-text{
    margin-top: 80px;
}
.page-content .about-side-top{
    background-image: url("../../images/pages/about-top-col.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: bottom;
}
.page-content .page-section{
    padding: 60px 0;
}
.page-content .bg-purple {
    background-color: var(--petals-purple-2-light) !important;
}
.page-content .index-yellow{
    background-color: var(--petals-yellow-4);
}
.page-content .index-yellow-inner{
    background-image: url("../../images/pages/index-yellow.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
}
.page-content .index-bottom{
    margin-top: -50px;
}
.page-content .home-oval{
    background-image: url("../../images/pages/home-third-bg.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 60px 0;
}

.page-content .home-card-container{
    background-color: white;
    border: 1px solid var(--petals-purple-2);
    border-radius: 10px;
    box-shadow: 3px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

/*** Newsletter Subscribe ***/
.newsletter-subscribe{
    background-color: var(--petals-purple-3);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 160px;
}
.newsletter-subscribe .text-container{}
.newsletter-subscribe .title{
    color: var(--petals-white);
    font-size: 24px;
    font-weight: bold;
}
.newsletter-subscribe .description{
    color: var(--petals-white);
}
.newsletter-subscribe .email-input{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-left: 20px;
}
.newsletter-subscribe input{
    width: 400px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    font-size: 18px;
    padding: 10px 20px;
    border: 0;
    height: 45px;
}
.newsletter-subscribe button{
    border: 0;
    font-size: 18px;
    padding: 10px;
    background-color: var(--petals-white);
    color: var(--petals-blue);
    font-weight: bold;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    height: 45px;
}
.newsletter-subscribe button:hover{
    background-color: var(--petals-blue);
    color: var(--petals-white);
    font-weight: bold;
    font-size: 18px;
}

/*** Advert table ***/
.table-advert thead th{
    background-color: var(--petals-purple-3);
    font-weight: bolder;
    font-size: 18px;
    color: var(--petals-white);
}
.table-advert tbody tr td{
    vertical-align: middle;
}
.table-advert tbody tr td:first-of-type{
    background-color: var(--petals-yellow-3);
    font-weight: bold;
}
.table-advert tbody tr{
    border-bottom: 1px solid var(--petals-black);
}
.table-advert tbody tr:last-of-type{
    border-bottom: 1px solid transparent;
}

@media only screen and (max-width: 600px) {
    .newsletter-subscribe{
        flex-direction: column;
        padding: 20px 10px;
    }
    .newsletter-subscribe .text-container {
        margin-bottom: 20px;
        text-align: center;
    }

    .newsletter-subscribe .email-input {
        flex-direction: column;
        padding-left: 0;
    }
    .newsletter-subscribe input{
        width: 100%;
        border-radius: 5px;
        margin-bottom: 5px;
    }
    .newsletter-subscribe button
    {
        border-radius: 5px;
    }
}
