.container {
    max-width: 1092px;
}
#signup-form  {
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
    flex-wrap: wrap;
    gap: 32px;
}
@media only screen and (max-width: 768px) {
    #signup-form  {
        flex-direction: column;
        align-items: center;
        align-self: stretch;
    }
}
.about-container {
    flex-direction: column;
    color: var(--Grey-500);
    gap: 15px;
}
@media only screen and (max-width: 768px) {
    .about-container {
        width: 375px;
    }
}
@media only screen and (max-width: 420px) {
    .about-container {
        width: 320px;
    }
}
.about-partner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.about-partner > *:first-child {
    /* about_partner being stored in database we cannot refer to .display-MD for data before rebranding */
    font-family: Playfair Display, serif;
    color: var(--Brand-Midnight-blue);
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    font-size: 36px;
    letter-spacing: normal;
    display: block;
}
.about-partner > p:first-child > strong {
    font-weight: 500;
}
.about-partner > *:first-child * {
    display: inline;
}
.about-partner > *:not(:first-child) {
    display: block;
}
.about-partner > *:not(:first-child) * {
    display: inline;
}
ul {
    margin: 0;
    display:block;
}
ul li * {
    display: inline;
}
.main-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.about-smartbrief {
    display: flex;
    flex-direction: column;
    gap: 15px;
}