.about{
    padding: 100px 0 100px 0;
    .about_wrapper{
        position: relative;
        .design_2{
            height: 50px;
            width: 50px;
            border-radius: 50%;
            background: linear-gradient(to right, #b9e6e447 0%, #6290c5 100%);
            position: absolute;
            right: -15%;
            top: 50%;
        }
        .about_left{
            img{
                width: 90%;
                animation: updown3 5s infinite linear;
            }
        }
          .about_right{
            .headingOfSection{
                display: inline-block;
                position: relative;
                margin-bottom: 50px;
                .heading_overly{
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    span{
                        font-size: 21px;
                        font-weight: 600;
                        color: $primaryColor;
                    }
                }
            }
                h2{
                    font-size: 28px;
                    color: $primaryColor;
                    font-weight: 700;
                }
              
                h3{
                    font-size: 30px;
                    color: $black;
                    font-weight: 700;
                    line-height: 48px;
                    padding-bottom: 5px;
                }
                h4{
                    font-size: 19px;
                    color: #333;
                    font-weight: 400;
                    line-height: 29px;
                }
                p{
                    font-size: 15px;
                    color: $text;
                    font-weight: 400;
                    line-height: 30px;
                    padding: 10px 0 30px 0;
                }
                .about_btn{
                    a{
                      padding: 13px 26px;
                      background-image: linear-gradient(250deg, #4e95ed 0%, #03228f 100%);
                      font-size: 20px;
                      color: $white;
                      font-weight: 500;
                      border-radius: 4px;
}
                }
          }
          
    }
}

@keyframes updown3{
    0% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
      }
      40% {
        -webkit-transform: translate3d(0,-25px,0);
        transform: translate3d(0,-25px,0);
        -moz-transform: translate3d(0,-25px,0);
        -ms-transform: translate3d(0,-25px,0);
        -o-transform: translate3d(0,-25px,0);
}
      100% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
      }
}