* {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}
.about-header {
  width: 100%;
  height: 100vh;
  padding-left: 8%;
  padding-right: 8%;
  background: url("../images/prospective.jpg");
  background-position: center;
  background-size: cover;
  box-sizing: border-box;
  overflow: hidden;
}

.nav-links {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 40px 0;
}

.menu-icon {
  width: 25px;
  cursor: pointer;
  display: none;
}

.nav-links nav {
  flex: 1;
  text-align: right;
}

.nav-links nav ul li {
  display: inline-block;
  list-style: none;
  margin-right: 30px;
}

nav ul li a {
  text-decoration: none;
  color: black;
  font-size: 20px;
}

.nav-links ul li::after {
  content: "";
  width: 0px;
  height: 3px;
  background: #0077b6;
  display: block;
  margin: auto;
  transition: 0.5s;
}

.nav-links ul li:hover::after {
  width: 100%;
}

.row {
  padding-top: 100px;
  display: flex;
  margin-top: auto;
}

.row .logo {
  flex-basis: 40%;
  position: relative;
}
.row .logo img {
  width: 60%;
  margin-left: 30px;
}

.row .about-box {
  padding: 3vw;
  flex-basis: 60%;
  height: auto;
  width: auto;
  background-color: #000;
  opacity: 0.6;
}

.row .about-box h1 {
  color: white;
  font-weight: 100;
  font-family: "Montserrat";
  font-size: 50px;
  font-size: 4vw;
}

.row .about-box p {
  color: white;
  font-size: 20px;
  font-size: 1.4vw;
  margin-top: 20px;
}

.vision-mission{
    width: 60%;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 50px auto 100px auto;
}

.vision-mission-container{
  margin-top: 50px;
}
.vision-mission img {
  width: auto;
  height: 100px;
  margin: auto;
}

.vision-mission h1 {
  font-family: "Montserrat";
  color: rgb(27, 27, 27);
  font-size: 50px;
  font-weight: 120;
}

.vision-mission p {
  font-family: "Montserrat";
  color: rgb(27, 27, 27);
  font-size: 20px;
}

.com-profile {
  background-color: #006ca5;
  padding: 40px 100px 0 100px;
}
.com-profile h1 {
  color: white;
  font-weight: 100;
  font-size: 45px;
  font-family: "Montserrat";
}

.com-profile p {
  color: white;
  padding-top: 20px;
  line-height: 1.5;
  justify-content: center;
  text-align: justify;
}

.com-profile ul {
  margin-top: 40px;
}

.com-profile ul li {
  list-style: none;
  font-size: 20px;
  margin-top: 5px;
  padding-bottom: 70px;
}

.com-profile ul li a {
  color: white;
}

/* animation */

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}


@media only screen and (max-width: 700px) {
  .about-header {
    margin: 0;
  }

  .nav-links {
    margin: 15px 0;
  }
  .nav-links nav ul {
    width: 100%;
    background-color: #0077b6;
    position: absolute;
    top: 50px;
    right: 0;
    z-index: 2;
  }

  .nav-links nav ul li {
    display: block;
    list-style: none;
    margin: 10px;
  }

  .nav-links nav ul li a {
    color: #ffffff;
    font-size: 15px;
  }

  .menu-icon {
    display: block;
  }

  #menuList {
    overflow: hidden;
    transition: 0.5s ease;
  }

  .row {
    flex-direction: column;
    margin: 0;
    padding-bottom: 30px;
  }

  .row .logo {
    flex-basis: 100%;
  }

  .row .about-box {
    flex-basis: 100%;
    padding: 10px;
    margin-top: 10px;
  }

  .row .logo img {
    width: 30%;
    height: auto;
    margin-left: 0;
  }

  .row .about-box h1 {
    font-size: 70px;
    font-size: 6.5vw;
    font-weight: normal;
  }

  .row .about-box p {
    font-size: 14px;
    margin-top: 10px;
    letter-spacing: 0.5px;
  }

  .vision-mission {
    padding-top: 0;
  }

  .vision, .values {
    flex-direction: column;
  }
  .mission {
    flex-direction: column-reverse;
  }

  .vision-mission h1 {
    font-weight: 300;
    font-size: 25px;
    padding: 30px 40px 0 40px;
    color: #000;
  }

  .vision-mission p {
    font-size: 15px;
    padding-bottom: 30px;
    color: #000;
  }

  .vision-mission img {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .com-profile {
    padding: 20px 30px 0 30px;
  }

  .com-profile h1 {
    font-weight: normal;
    font-size: 25px;
    font-family: "Montserrat";
  }

  .com-profile p {
    padding-top: 10px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: justify;
    text-justify: inter-word;
    font-size: 15px;
  }

  .com-profile ul li {
    font-size: 17px;
    margin-top: 7px;
  }
}
