.component-image-cta {
    position: relative;
}

.component-image-cta figure {
    margin: 0;
    position: relative;
}

.component-image-cta .btn-type-2 {
    padding-right: 25px;
    background-color: #896000;
    color: #fff;
    border-color: #fff;
    border-width: 1px;
    letter-spacing: 4px;
}

.component-image-cta .cta-container {
    display: flex;
    max-width: 393px;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    bottom: 28px;
    width: 100%;
}

.component-image-cta.style-2 .cta-container {
    position: relative;
    background: #f2f0e9;
    padding: 15px 5px;
    top: 0;
    max-width: 100%;
}

.component-image-cta.style-2 .plan-title {
    position: absolute;
    z-index: 1;
    width: 100%;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    bottom: calc(15% + 48px);
}

.component-image-cta.style-2 figure:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

@media(min-width: 1200px) {
    .component-image-cta.style-2 {
        transition: all .3s;
        transform: translate3d(0px, 0px, 0px);
    }

    .component-image-cta.style-2:hover {
        transform: translate3d(0px, -10px, 0px);
    }
}

