.footer-cta-section {
    position: relative;
    height: 240px;
}

.footer-cta-bg {
    position: absolute;
    box-shadow: 0 0 8px rgba(80, 80, 80, 0.3);
    border-radius: 14px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-cta-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0px;
    overflow: hidden;
}

.footer-cta-content h3 {
    color: #6EDE8A;
    font-size: 24px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: -0.24px;
}

.footer-cta-content span {
    color: #6EDE8A;
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
}

.footer-cta-content p {
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 0.06px;
    margin-top: 10px;
}

.footer-cta-content .footer-cta-button {
    margin-top: 30px;
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: #E6FAEB;
    box-shadow: 0px 178px 50px 0px rgba(110, 223, 138, 0.00), 0px 114px 46px 0px rgba(110, 223, 138, 0.03), 0px 64px 38px 0px rgba(110, 223, 138, 0.10), 0px 28px 28px 0px rgba(110, 223, 138, 0.17), 0px 7px 16px 0px rgba(110, 223, 138, 0.20);
    color: #155D27;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.07px;
}

.footer-cta-content .footer-cta-button:hover {
    background: #F2FCF5;
}


.footer-cta-icon {
    position: absolute;
    left: 0;
    top: 0px;

}

.footer-cta-icon-2 {
    position: absolute;
    right: 0;
    top: 0px;

}

.footer-cta-section .web-icon {
    display: block;
}

.footer-cta-section .mobile-icon {
    display: none;
}

@media screen and (max-width: 400px) {
    .footer-cta-content {
        padding: 30px 0px;
    }

    .footer-cta-content h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .footer-cta-content span {
        font-size: 16px;
        line-height: 20px;
    }
}

@media screen and (max-width: 680px) {
    .footer-cta-section .web-icon {
        display: none;
    }

    .footer-cta-section .mobile-icon {
        display: block;
    }

    .footer-cta-section .footer-mob-cta-icon {
        position: absolute;
        left: 0;
        top: 96px;
    }

    .footer-cta-section .footer-mob-cta-icon-2 {
        position: absolute;
        right: 0;
        top: 96px;
    }
}