/*************
---Newsletter
 ************/

body {
    position: relative;
}

#newsletterHeader {
    display: flex;
    flex-direction: column;
    padding: 20px 20px 20px;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

#newsletterBubbleIcon {
    max-width: 222px;
    position: relative;
    top: 15%;
    translate: 10px 0;
}

#newsletterHeaderBox {
    text-align: center;
    color: var(--black);
}

#newsletterHeaderBox > h2 {
    font-size: 33px;
    font-weight: 700;
    line-height: 150%;
}

#newsletterHeaderBoxLeft {
    color: white;
    background-color: var(--primary);
    border-radius: 10px;
    margin-right: 8px;
    padding: 0 4px;
}

#newsletterHeader > p {
    color: var(--black);
    font-size: 15px;
    font-weight: 500;
    line-height: 176%;
    margin-top: 11px;
}

@media (max-width: 800px) {
    #newsletterHeaderBox > h2 {
        font-size: 28px;
        margin-top: 20px;
    }
}

/*************
---Subscribe
 ************/

.newsletterSubscribe {
    max-width: 461px;
    width: 100%;
    padding: 0 30px 35px;
    border-radius: 9px;
    border: 1px solid var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 35px auto 41px;
}

.newsletterSubscribe > p {
    color: rgba(42, 40, 41, 0.80);
    font-size: 18px;
    line-height: 16px;
    margin: 20px 0 15px;
}

.newsletterSubscribe > h3 {
    color: var(--black);
    font-size: 30px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 20px;
}

.newsletterSubscribe span {
    color: #FFF;
    background-color: var(--primary);
    border-radius: 8px;
    padding: 0 4px;
}

.newsletterSubscribe.bottom {
    border: none;
    margin-bottom: 60px;
}

@media (max-width: 800px) {
    .newsletterSubscribe {
        width: 90%;
        padding: 0 20px 20px;
    }

    .newsletterSubscribe > h3 {
        color: var(--black);
        font-size: 22px;
    }

}

/*************
---Benefits
 ************/

#newsletterBenefits {
    max-width: 470px;
    text-align: center;
    border-radius: 9px;
    border: 1px solid var(--black);
    background: #000;
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    line-height: 176%;
    padding: 17px 10px;
    margin: 0 auto 41px;
}

#newsletterBenefitsTitle {
    font-size: 14px;
    font-weight: 700;
    line-height: 176%;
    margin-bottom: 10px;
}

@media (max-width: 800px) {
    #newsletterBenefits {
        width: 90%;
    }
}


/*************
-----List
 ************/

#newsletterList {
    max-width: 470px;
    border-radius: 9px;
    border: 1px solid var(--black);
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
    line-height: 176%;
    padding: 23px;
    margin: 0 auto 60px;
}

#newsletterList > p {
    margin-bottom: 30px;
    text-align: left;
}

#newsletterList > p:last-child {
    margin-bottom: 0;
}


@media (max-width: 800px) {
    #newsletterList {
        width: 90%;
    }
}

/*************
-----Images
 ************/

#newsletterSocial {
    max-width: 300px;
    position: absolute;
    bottom: 116px;
    right: 65%;
}

@media (max-width: 500px) {

    #newsletterSocial {
        display: none;
    }

}