.customizer-cta {
    border-radius: 32px;
    background-color: #FFF3EB;
    padding: 32px 32px 160px;

    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;

    background-image: url('../../../assets/images/customizer-cta-background-mobile.png');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}

.customizer-cta__content h2,
.customizer-cta__content h3 {
    color: #333;
    text-align: center;
    font-family: 'Literata';
    font-size: 28px;
    font-weight: 500;
    line-height: 1.14;
    margin-bottom: 24px;
    width: 100%;
}

.customizer-cta__content p {
    color: #333;
    text-align: center;
    font-family: 'Figtree';
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 24px;
    width: 100%;
}

.customizer-cta__button {
    color: #FFF;
    font-family: 'Figtree';
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1.12px;
    text-transform: uppercase;
    text-decoration: none;

    border-radius: 8px;
    background: #0F4F1E;
    height: 48px;
    padding: 18px 24px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    display: inline-block;
}

.customizer-cta__button:hover {
    background: #043910;
}

@media only screen and (min-width: 767px) {
    .customizer-cta {
        padding: 32px;

        background-image: url('../../../assets/images/customizer-cta-background-1-desktop.png'), url('../../../assets/images/customizer-cta-background-2-desktop.png');
        background-position: left, right;
    }

    .customizer-cta__content {
        max-width: 56%;
    }

    .customizer-cta__content p {
        padding: 0 1%;
    }
}