.abcbiz-cta-area {
    padding: 50px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.abcbiz-cta-area:before {
    background-color: #F8FAFF;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.7s ease-in-out;
    z-index: -1;
}

.abcbiz-cta-area:hover:before {
    transform: scale(1.1);
}

.abcbiz-cta-zoom-effect-disabled.abcbiz-cta-area:hover:before {
    transform: scale(1);
}

.abcbiz-cta-content-area .abcbiz-cta-heading {
    text-align: center;
}

.abcbiz-cta-content-area .abcbiz-cta-heading h2,
.abcbiz-cta-content-area .abcbiz-cta-heading h4 {
    color: #000000;
    font-family: Roboto;
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 0;
}

.abcbiz-cta-content-area .abcbiz-cta-heading h4 {
    font-size: 30px;
}

.abcbiz-cta-description {
    text-align: center;
}

.abcbiz-cta-description p {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 0;
}

.abcbiz-cta-button-area {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 25px;
    align-items: center;
}

.abcbiz-cta-button-area .abcbiz-cta-button {
    border-radius: 5px;
    background-color: #0349e7;
    color: #fff;
    padding: 10px;
    display: inline-flex;
    width: 150px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    justify-content: center;
    align-items: center;
}

.abcbiz-cta-button-area .abcbiz-cta-button:hover {
    background-color: #a03bf4;
    color: #ffffff;
}

.abcbiz-cta-ribbon-area {
    position: absolute;
    padding: 10px 15px;
    z-index: 1;
    top: 0;
    left: auto;
    right: 0;
    transform: rotate(90deg);
    width: 150px;
    overflow: hidden;
    height: 150px;
}

.abcbiz-cta-ribbon-area.abcbiz-left-rabbon {
    left: 0;
    right: auto;
    transform: rotate(0deg);
}

.abcbiz-cta-ribbon-area .abcbiz-cta-ribbon-text {
    text-align: center;
    left: 0;
    width: 200%;
    transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
    margin-top: 35px;
    font-size: 13px;
    line-height: 2;
    font-weight: 800;
    text-transform: uppercase;
    background: #0349e7;
    color: #fff;
}

.abcbiz-cta-ribbon-area .abcbiz-cta-ribbon-text p {
    color: #fff;
    font-size: 13px;
    margin: 0;
    font-weight: 400;
}