.about_wrapper{
    // padding: 100px 0 80px 0;
    // display: flex;
    // width: 100%;
    // flex-wrap: wrap;
    // flex-direction: row-reverse;
    padding-bottom: 60px;
    .row:nth-child(even) {
        flex-direction: row-reverse;
      }
      .exclusive_padding{
        padding-top: 130px;
      }
    .about_left{
        display: flex;
        justify-content: center;
        .about_img{
            height: 400px;
            width: 100%;
            position: relative;
            border-radius: 16px;
            img{
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 16px;
            }
            &::after{
                position: absolute;
                content: '';
                top: -35px;
                left: -35px;
                height: 350px;
                width: 100%;
                background-color: #e2e6f8;
                border-radius: 16px;
                z-index: -1;
            }
            .shape_img{
                position: absolute;
                right: -60px;
                top: -30px;
                z-index: -1;
            }
        }
    }
    .about_right{
        padding-left: 50px;
        h3{
            font-size: 28px;
            font-weight: 600;
            line-height: 36px;
            color: #383838;
            padding: 8px 0;

            &:hover{
                color: #000;
            }
        }
        .about_btn{
            padding: 8px 30px;
            background-image: linear-gradient(90deg, #7114EF 0%, #1475F7 50%, #7114EF);
            font-size: 15px;
            font-weight: 500;
            color: $white;
            border-radius: 2px;
            display: inline-block;
            border-radius: 35px;
            i{
                margin-left: 4px;
            }
         }
    }
}
