.cta-section {
    background-color: #ED1C22;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.cta-section .image-box {
    position: relative;
}

.cta-section .shape-2 {
    position: absolute;
    top: 0;
    left: 0;
}

.cta-section .shape-1 {
    position: absolute;
    top: 30px;
    left: 15px;
    z-index: 1;
}

.cta-section:hover .shape-1 img {
    transform: rotate(180deg);
}

.cta-section .image {
    z-index: 1;
    position: relative;
    padding: 75px 0 75px 15px;
}

.cta-section .image img{
    border-radius: 50%;
}

.cta-section h2 {
    font-size: 50px;
    color: var(--white-color);
}

.box-1,
.box-2{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* cta-section-3 */

.cta-3-shape {
    position: absolute;
    top: 0;
    left: -145px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    -webkit-animation: pulse 6s infinite;
    animation: pulse 6s infinite;
}

@media only screen and (max-width: 991px){

    .cta-section h2 {
        font-size: 36px;
    }
} 

@media only screen and (max-width: 1024px){

    .cta-section .image-box {
        display: none;
    }

    .cta-section {
        padding: 70px;
    }

    .cta-section .box-1{
        text-align: center;
        margin-bottom: 20px;
    }
} 

@media only screen and (max-width: 425px){

    .cta-section {
        padding: 70px 20px;
    }

    .cta-section.three {
        margin-top: 50px;
    }
} 