.about{
  padding: 100px 0;
  .about_wrapper{
    .about_img{
      width: 100%;
      height: 400px;
      background-color: #f3f3f3;
      display: flex;
      align-items: center;
      justify-content: center;
      img{
       max-height: 100%;
       max-width: 100%;
      }
    }
    .about_text{
      padding-top: 15px;
      h4{
        font-size: 30px;
        color: $black;
        font-weight: 600; 
      }
      h5{
        font-size: 24px;
        color: $primaryColor;
        font-weight: 500;
        line-height: 30px;
        padding: 10px 0;
      }
      p{
        font-size: 15px;
        color: $text;
        font-weight: 400;
        line-height: 26px;
      }
      .see_btn{
           margin-top: 50px;
        a{
          padding: 14px 30px;
          background-color: $primaryColor;
          text-transform: uppercase;
          font-weight: 500;
          font-size: 15px;
          color: $white;
          border-radius: 2px;
        }
      }
    }
  }
}