.custom-modules--wrapper.style-a {
    background: #352854;
    padding: 50px;
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
}

.custom-modules--wrapper.style-a .custom-modules-image {
    width: 80%;
    max-width: 250px;
    min-height: auto;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 30px;
    border: 10px solid #be86ff;
}

.style-a .custom-modules-content {
    flex-grow: 1;
}

.style-a .custom-modules-content h2,
.style-a .custom-modules-content p {
    color: #fff;
}

.style-a .custom-modules-content h4 {
    color: #be86ff;
    text-transform: uppercase;
}

.style-a .custom-modules-content h2,
.style-a .custom-modules-content h4 {
    margin-top: 0;
}

.style-a .custom-modules-content .button {
    margin-top: 30px;
    display: inline-block;
    background: #be86ff;
    text-shadow: none;
}

.style-a .custom-modules-content .button {
    background: #985fd9;
}

@media (min-width: 1025px) {
    
    .custom-modules--wrapper.style-a {
        flex-wrap: nowrap;
    }

    .custom-modules--wrapper.style-a .custom-modules-image {
        width: 30%;
        margin-right: 50px;
        margin-bottom: 0;
    }
    
}

/* Conversion Buttons */

.conversion-button-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    margin: 0 -16px;
}

.conversion-buttons__item {
    width: calc(33% - 32px);
    flex-grow: 1;
    margin: 16px;
    min-height: 270px;
}

.conversion-button {
    padding: 30px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3b2e5b;
    position: relative;
}

.conversion-button h4 {
    margin: 0;
    font-size: 1.6em;
    color: #fff;
    z-index: 1;
}

.conversion-button img {
    position: absolute;
    width: 70%;
    height: 120%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 5px));
    opacity: .3;
}

.conversion-button:hover {
    background: #584e74;
}

@media (max-width: 1024px) {
    .conversion-buttons__item {
        width: calc(50% - 32px);
    }
}

@media (max-width: 767px) {
    .conversion-buttons__item {
        width: calc(100% - 32px);
    }
}