.aboutVision {
     display: flex;
     flex-direction: row;
}
.visionImage {
     flex: 1;
     display: flex;
     justify-content: center;
     align-items: center;
}
.visionImage img {
     width: 80%;
     margin: auto;
}
.visionText {
     flex: 1;
}
.threeBox {
     display: flex;
     width: 100%;
     min-height: 200px;
     margin-top: 45px;
}
.aboutBox {
     flex: 1;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;
     padding: 35px;
}
.aboutBox img {
     height: 150px;
     width: 150px;
     margin-bottom: 25px;
}

@media (max-width: 650px) {
     .visionImage {
          margin-bottom: 40px;
     }
     .aboutVision {
          flex-direction: column;
     }
     .threeBox {
          flex-direction: column;
     }
}