   .sidebar-cta-box {
            position: relative;
            background-image: url(../../images/sidebar-cta-bg-img.webp);
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover;
            border-radius: 20px;
            padding: 40px;
            overflow: hidden;
            z-index: 1;
        }

        .sidebar-cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--secondary-color);
            opacity: 70%;
            height: 100%;
            width: 100%;
            z-index: 0;
        }

        .sidebar-cta-logo {
            position: relative;
            margin-bottom: 30px;
        }

        .sidebar-cta-logo img {
            width: 100%;
            max-width: 160px;
        }

        .sidebar-cta-content {
            position: relative;
            margin-bottom: 30px;
        }

        .sidebar-cta-content h3 {
            font-size: 40px;
            font-weight: 300;
            color: var(--white-color);
            margin-bottom: 10px;
        }

        .sidebar-cta-content h3 span {
            font-weight: 700;
        }

        .sidebar-cta-content p {
            color: var(--white-color);
            margin-bottom: 0;
        }

        .sidebar-cta-contact-list {
            position: relative;
        }

        .sidebar-cta-contact-item {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .sidebar-cta-contact-item:last-child {
            margin: 0;
        }

        .sidebar-cta-contact-item .icon-box {
            position: relative;
            height: 40px;
            width: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 10px;
            margin-right: 15px;
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            overflow: hidden;
            z-index: 1;
        }

        .sidebar-cta-contact-item .icon-box::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--white-color);
            opacity: 16%;
            height: 100%;
            width: 100%;
            border-radius: 10px;
            z-index: 0;
        }

        .sidebar-cta-contact-item img {
            position: relative;
            max-width: 24px;
            z-index: 1;
        }

        .cta-contact-item-title h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--white-color);
            transition: all 0.3s ease-in-out;
        }

        .cta-contact-item-title h3 a {
                     color: inherit;
        }

        .sidebar-cta-contact-item:hover .cta-contact-item-title h3 {
            color: var(--accent-color);
        }

/************************************/
/***       Responsive css        ***/
/************************************/

@media only screen and (max-width: 991px) {
    .sidebar-cta-box {
        padding: 30px;
    }

    .sidebar-cta-logo {
        margin-bottom: 20px;
    }

    .sidebar-cta-content {
        margin-bottom: 20px;
    }

    .sidebar-cta-content h3 {
        font-size: 34px;
    }

}

@media only screen and (max-width: 767px) {
    .sidebar-cta-box {
        padding: 20px;
    }

    .sidebar-cta-content h3 {
        font-size: 28px;
    }

    .cta-contact-item-title h3 {
        font-size: 18px;
    }

}
