.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;
      }

    .about_left{
        display: flex;
        justify-content: center;
        .about_img{
            height: 450px;
            width: 450px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            img{
                width: 100%;
                height: 100%;
                object-fit: contain;
                border-radius: 8px;
            }
        }
    }
    .about_right{
        padding-right: 35px;
        h3{
            font-size: 28px;
            font-weight: 600;
            line-height: 36px;
            color: #383838;
            padding: 8px 0;

            &:hover{
                color: #000;
            }
        }
        .about_btn{
            padding: 8px 30px;
            background-color: $primaryColor;
            font-size: 15px;
            font-weight: 500;
            color: $white;
            border-radius: 2px;
            display: inline-block;
            border-radius: 35px;
            i{
                margin-left: 4px;
            }
         }
    }
}
