.about{ 
      position: absolute;
      bottom:-60px;
      left: 0;
      width: 100%;
    .about_Wrapper{
        .aboutLeft{
            .aboutImg{
                height: 400px;
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 6px;
                position: relative;
                img{
                    max-height: 100%;
                    max-width: 100%;
                    border: 12px solid #f3f3f3;
                }
            }
            .about_overly{
                  position: absolute;
                  bottom: 10%;
                  left: 50%;
                  height: 80px;
                  width: 70%;
                  background-color: #84acad;
                  transform: translateX(-50%);
                  border-radius: 5px;
                  text-align: center;

                  h4{
                    font-size: 20px;
                    color: $white;
                    font-weight: 500;
                    padding-top: 12px;
                    text-transform: uppercase;
                  }
                  h5{
                    font-size: 17px;
                    color: $white;
                    font-weight: 400;
                  }
            }
        }
    }
}