.call_to_action {
    display: block;
    background: #6C6BC4;
    color: #fff;
    text-align: center;
    padding-block: 100px;
}

.call_to_action.smaller-banner {
    padding-block: 30px;
}

.call_to_action .content {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;

}

@media screen and (max-width: 768px) {
    .call_to_action {
        padding: 30px 20px;
    }

    .call_to_action .content p {
        font-size: inherit;
    }

    .call_to_action.smaller-banner {
        padding-block: 0;
    }
}