.card-cols-head {
    display: flex;
    flex-direction: row;
    height: 100vh;
    justify-content: space-around;
    align-items: flex-start;
    padding-top: 60px;
    }
    .card-cols-head .heading span {
        display: block;
        line-height: 1.15;
        font-size: 1.15rem;
        font-family: 'Inter', sans-serif;
        color: #fff;
        font-weight: 400;
        width: 50%;
        margin: 0.55rem 0;
    }
    .content-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: left;
    height: 30vh;
    width: 50%;
    font-size: 40px;
    padding-left: 5em;
    }
    .card-cols-head h2.heading:before {
        content:'';
        background:#fff;
        position: absolute;
        width: 1.55rem;
        height: 1.55rem;
        border-radius: 100%;
        left: -2rem;
        top: 0.85rem;
        }
    
    .images-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    }
    
    .card-cols-head .heading {opacity: 0;position: absolute;top: 4rem;width: 100%;}
    
    .scroll-img {
    width: 30vw;
    opacity: 0;
    position: absolute;
    top: 5em;
    }
    
    .active {
    opacity: 1;
    }
    .blocn1 h3 {
        font-size: 2rem !important;
    }
    
    @media(max-width: 991px) {
        .card-cols-head .content-box {
            display: none;
        }
        .scroll-img {
            width: 90%;
            opacity: 1;
            position: relative;
            top: 0;
            margin: 2rem auto;
        }
        .images-box {
            display: block;
            width: 100%;
        }
        .card-cols-head {
            display: block;
            height: 100%;
            padding: 1rem 0;
        }
    
    }