.info_wrapper{
     padding-top: 40px;
     .info_wrap{
        height: 650px;
        width: 100%;
        background-color: #f7f7f7;
        border-radius: 16px;
        border: 2px solid #4967dd71;
        margin-top: 25px;
        position: relative;
        overflow: hidden;
        padding: 30px;
        &:hover{
          transform: scale(1.01);  
          transition: all linear .2s;
        }
        &::after{
            position: absolute;
            content: '';
            height: 200px;
            width: 200px;
            background-color: #4967dd69;
            top: 25%;
            right: -120px;
            border-radius: 16px;
            transform: translateY(-25%) rotate(45deg);
        }
        h3{
            font-size: 26px;
            font-weight: 600;
            color: #000;
            line-height: 20px;
        }
        .brief_icon{
            padding-top: 15px;
            img{
                height: 100px;
                width: 100px;
                object-fit: contain;
            }
        }
        ul{
            padding-top: 40px;
            padding-left: 20px;
            li{
                list-style:disc;
                padding: 7px 0;
                a{
                    font-size: 18px;
                    font-weight: 500;
                    color: #504b4b;
                    &:hover{
                        color: $primaryColor;
                        background-color: #4967dd21;
                    }
                }
            }
        }
     }
}