/* cm = Consumer marketing */

.cm-sidebar-content {
    background-color: rgb(250, 250, 250);
    border-left: 1px solid rgb(220, 220, 220);
    box-sizing: border-box;
    display: table-cell;
    font-family: "Futura Today Light", "Futura", "Helvetica", sans-serif;
    padding: 50px;
    position: relative;
    text-align: center;
    vertical-align: middle;
    width: 40%;
}

.cm-sidebar-content-header {
    font-size: 30px;
    margin-bottom: 25px;
}

.cm-sidebar-content-text {
    color: rgb(105, 105, 105);
    font: 100 18px "Helvetica", sans-serif;
}

.cm-sidebar-content-button {
    border-radius: 3px;
    background-color: rgb(74, 74, 74);
    color: rgb(255, 255, 255);
    display: block;
    font-size: 14px;
    margin: 20px auto 0;
    max-width: 215px;
    padding: 15px 20px;
    position: relative;
    text-decoration: none;
    width: 79%;
}

.cm-sidebar-content-image {
    margin: 0 auto 15px;
    max-width: 255px;
}

.cm-sidebar-content-image img {
    max-height: 100%;
    max-width: 100%;
}

@media screen and (max-width: 850px) {
    .cm-sidebar-content {
        border-left: none;
        border-top: 1px solid rgb(220, 220, 220);
        display: block;
        float: none;
        height: 100%;
        width: auto;
    }

    .cm-sidebar-content-header {
        margin: 20px 0;
    }

    .cm-sidebar-content-image {
        margin-top: 30px;
    }

    .cm-sidebar-content-text {
        margin: 0 auto;
        max-width: 500px;
    }
}