.about{
     padding: 20px 0;
   .about_wrapper{
       .about_left{
           h4{
            font-size: 22px;
            color: $primaryColor;
            font-weight: 500;
           }
           h5{
            font-size: 35px;
            color: $black;
            font-weight: 600;
            line-height: 45px;
           }
        p{
            font-size: 14px;
            color: $text;
        }
        ul{
            li{
                font-size: 15px;
                color: $text;
                font-weight: 400;
                padding-bottom: 10px;
                i{
                    color: $primaryColor;
                    padding-right: 5px;
                }
            }
        }
       }
       .about_right{
        width: 100%;
        height: 500px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        img{
            max-height: 100%;
            max-width: 100%;
            object-fit: cover;
        }
       }
   }
}