* {
  margin: 0px;
  padding: 0px;
  box-sizing: inherit;
}



.section {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-top: 40px;
  margin-bottom: 40px;
  width: 100%;
}

.para {
  width: 45%;
  font-size: 20px;
}

.para p {
  width: 100%;
  text-wrap: wrap;
  line-height: 40px;
}

.para h2 {
  font-size: 35px;
}

.image {
  overflow: hidden;
  border-radius: 5px;
  text-align: center;
}

.image2 {
  width: 85%;
  text-align: center;
  height: 350px;
  border-radius: 5px;
  margin-bottom: 20px;
  transition: transform 0.4s ease-out;
}

.image2:hover {
  transform: scale(1.2);
}
.logobox {
  width: 100px;
  height: 100px;
}
.aboutlogo {
  width: 100px;
  height: 100px;
}

@media (max-width: 712px) {
  .section {
    display: flex;
    flex-direction: column;
  }

  .para {
    width: 100%;
    text-align: center;
  }
  .para p {
    width: 100%;
  }

  .image {
    width: 100%;
  }
  .image2 {
    width: 90%;
  }
}
