.cta-element-row {
    display: flex;
    flex-wrap: wrap;
    margin: 30px -5px 0;
    max-width: calc(100% + 10px * 1);
    width: calc(100% + 10px * 1);
}

@media (min-width: 992px) {
    .cta-element-row {
        flex-wrap: nowrap;
    }
}

.home .hero-section--front-page .cta-element-row {
    margin-top: 15px;
}

.cta-element-row .cta-element-row__item {
    display: flex;
    margin: 0 5px 10px;
    position: relative;
    height: 90px;
    padding: 5px;
    background: var(--fullwidth-hero-cta-bg);
    border-radius: var(--border-radius-default);
    border: none;
    line-height: 1.25;
    font-weight: var(--font-weight-bold);
    font-size: 1.6rem;
    flex: 0 0 calc(50% - 10px * 1);
    width: 0;
    word-break: break-word;
    text-align: center;
    justify-content: center;
    transition: all .25s ease-in-out;
    flex-direction: column;
}

@media (min-width: 768px) {
    .cta-element-row .cta-element-row__item {
        flex: 0 0 calc(25% - 10px * 1);
    }
}

.cta-element-row .cta-element-row__item:hover {
    box-shadow: none;
}

@media (min-width: 768px) {
    .cta-element-row .cta-element-row__item:hover {
        background: var(--fullwidth-hero-cta-bg-hover);
        transform: translateY(-5px);
        transition: all .25s ease-in-out;
    }
}

.cta-element-row .cta-element-row__link {
    color: var(--fullwidth-hero-cta-color) !important;
    padding-right: 0;
    font-size: 1.3rem;
    font-weight: var(--font-weight-medium);
    line-height: 1.2;
    align-self: center;
}

.cta-element-row .cta-element-row__link span {
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    display: block;
}

@media (min-width: 768px) {
    .cta-element-row .cta-element-row__link:hover {
        color: var(--fullwidth-hero-cta-color-hover) !important;
    }
}

.cta-element-row .cta-element-row__icon-wrapper {
    display: flex;
    align-items: center;
    width: 38px;
    height: 38px;
    margin: 0 auto 10px;
}

.cta-element-row .cta-element-row__icon {
    width: 100%;
    max-width: 36px;
    height: auto;
    max-height: 36px;
    image-rendering: -webkit-optimize-contrast;
    margin-left: auto;
    align-self: center;
}

.cta-element-row .cta-element-row__link:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
