* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "roboto slab", sans-serif;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid white;
}

.forHome {
  min-height: 100vh;
  background: #bc0a18 url(/img/home2.jpg);
  background-position: center;
  background-size: cover;
}

.forMedevac {
  background: url(/img/medevac.jpg);
  background-position: center;
  background-size: cover;
}

.forStudent {
  background: #bc0a18 url(/img/academics.jpg);
  background-position: center;
  background-size: cover;
}

.forRoad {
  background: #bc0a18 url(/img/roadMain.jpg);
  background-position: center;
  background-size: cover;
}

.forAbout {
  background: white;
  background-position: center;
  background-size: cover;
  min-height: 10vh;
  border-bottom: none;
}

.forContact {
  background: white;
  min-height: 10vh;
}

.underline {
  width: 30%;
  height: 2px;
  background-color: #bc0a18;
  margin: 0.5em 0;
}

marquee {
  background-color: #bc0a18;
  color: white;
  font-size: 0.65rem;
  padding: 1em 0em;
  margin: 0 auto;
}

.navBar {
  width: 95%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5em 2em;
  border-bottom: 1px solid #e3e3e3;
}
.navBar .logo img {
  width: 60px;
}

.navLinks ul {
  display: flex;
  align-items: center;
}
.navLinks ul li {
  list-style: none;
  margin-left: 1em;
}
.navLinks ul li a {
  text-decoration: none;
  color: white;
  font-weight: 400;
  font-size: 0.85rem;
  transition: 0.1s all ease-in;
}
.navLinks ul li a:hover {
  border-bottom: 2px solid white;
}
.navLinks ul li .active {
  background-color: #bc0a18;
  border: none;
  color: white;
  padding: 0.5em;
  border: none;
}
.navLinks ul li .active:hover {
  border: none;
}

.burger {
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 30px;
}

.forAbout .navLinks li a {
  color: #bc0a18;
}
.forAbout .navLinks li .active {
  color: white;
}

.forContact .navLinks li a {
  color: #bc0a18;
}
.forContact .navLinks li .active {
  color: white;
}

.forStudent .navLinks li a {
  color: #20a8e7;
}

.forRoad .navLinks li a {
  color: #20a8e7;
}

.bar {
  width: 100%;
  height: 4px;
  background: #bc0a18;
}

i {
  transition: 0.3s ease-in;
}

i:hover {
  color: #bc0a18;
}

.activated {
  color: #20a8e7;
}

#activated {
  color: #20a8e7;
}

.burger.clicked .bar:nth-child(2) {
  opacity: 0;
  transition: 0.1s all ease-in;
}

.burger.clicked .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  transition: 0.1s all ease-in;
}

.burger.clicked .bar:nth-child(3) {
  transform: translateY(-16px) rotate(-45deg);
  width: 100%;
  transition: 0.1s all ease-in;
}

.welcome {
  margin-top: 0.75em;
  max-width: 1600px;
  margin: 0 auto;
  min-height: 70vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25em 2em;
}
.welcome .welcome-txt {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.welcome h1 {
  font-family: "Roboto Slab", serif;
  text-align: center;
  color: #20a8e7;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
}
.welcome p {
  font-family: "Roboto Slab", serif;
  text-align: center;
  color: white;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  margin: 2em 0;
}
.welcome a {
  width: 30%;
  text-decoration: none;
  text-align: center;
  background-color: #20a8e7;
  color: white;
  padding: 0.5em 2em;
  font-size: 1rem;
  font-family: "Roboto Slab", serif;
}

.ceo-message {
  max-width: 1600px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 1em;
}
.ceo-message .ceo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: justify;
  width: 70%;
  padding: 2em;
  border: 1px solid #e3e3e3;
}
.ceo-message .ceo-text h1 {
  color: #bc0a18;
  font-size: 2rem;
  margin-bottom: 1em;
}
.ceo-message .ceo-text .ceo-text-header {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-items: center;
  margin-bottom: 1em;
}
.ceo-message .ceo-text .ceo-text-header img {
  width: 65px;
  border-radius: 50%;
}
.ceo-message .ceo-text .ceo-text-header h3 {
  color: #20a8e7;
  font-family: "roboto slab", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 1;
}
.ceo-message .ceo-text .ceo-text-header h3 span {
  font-size: 0.75rem;
  font-weight: 400;
}
.ceo-message .ceo-text p {
  font-family: "roboto slab", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  padding-bottom: 1.5em;
  color: rgb(32, 32, 32);
}
.ceo-message .ceo-text a {
  font-family: "roboto slab", sans-serif;
  text-decoration: none;
  color: white;
  font-size: 0.75rem;
  border-radius: 3px;
  background-color: #20a8e7;
  padding: 0.75em 2em;
  font-weight: 500;
  transition: 0.3s ease-in;
}
.ceo-message .ceo-text a:hover {
  background-color: #20a8e7;
  color: white;
}
.ceo-message .ceo-full-message {
  width: 100%;
}
.ceo-message .ceo-full-message p {
  font-size: 0.85rem;
}
.ceo-message .ceo-image {
  align-self: flex-end;
  width: 50%;
}
.ceo-message .ceo-image img {
  display: block;
  margin: 0;
  width: 90%;
}

.management {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2em;
}
.management .management-title {
  margin-bottom: 2em;
}
.management .management-title h1 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #bc0a18;
  line-height: 1.2;
}

.members {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

.individual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5em;
  border: 1px solid #e3e3e3;
  border-radius: 5px;
  margin: 0 auto;
  margin-bottom: 1.5em;
  width: 250px;
  height: 250px;
}
.individual h5 {
  font-weight: 700;
  color: #bc0a18;
  font-size: 0.75rem;
}
.individual p {
  font-size: 0.65rem;
  color: rgb(32, 32, 32);
  margin-bottom: 1em;
}
.individual img {
  width: 100px;
  height: 100px;
}

.mission-vision {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mission-vision h1 {
  color: white;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.25em;
}
.mission-vision .vision-text {
  padding: 2em;
  background-color: #bc0a18;
}
.mission-vision p {
  color: white;
  font-size: 0.85rem;
  line-height: 1.5;
  font-weight: 300;
}
.mission-vision .vision {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2em;
  margin-bottom: 1em;
  border-bottom: 1px solid #e3e3e3;
}
.mission-vision .vision .vision-img {
  width: 60%;
}
.mission-vision .vision .vision-img img {
  width: 100%;
}
.mission-vision .mission {
  width: 75%;
  min-height: 100vh;
  background: #bc0a18 url(/img/mission.jpg);
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2em;
  margin-bottom: 1em;
}
.mission-vision .mission p {
  text-align: start;
}

.values {
  max-width: 1600px;
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 2em;
  border-bottom: 1px solid #e3e3e3;
}
.values .value-text {
  width: 50%;
  background-color: #bc0a18;
  padding: 2em;
}
.values .value-text h1 {
  color: white;
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 1.2;
}
.values .value-text h3 {
  color: white;
  font-size: 1rem;
}
.values .value-text p {
  color: white;
  font-size: 1rem;
  line-height: 1.5;
}
.values .blue {
  background-color: #20a8e7;
}
.values .blue h1 {
  margin-bottom: 0.5em;
  border-bottom: 1px solid white;
}
.values .value-image {
  width: 50%;
}
.values .value-image img {
  display: block;
  margin: 0;
  width: 100%;
}

.training {
  max-width: 1600px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 2em;
}
.training .training-text {
  width: 75%;
}
.training .training-text h1 {
  color: #20a8e7;
  text-align: center;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.5em;
}
.training .training-text p {
  color: rgb(32, 32, 32);
  font-size: 0.85rem;
  line-height: 1.2;
  text-align: center;
}
.training .training-image {
  margin-top: 1em;
  width: 50%;
  text-align: center;
  color: #bc0a18;
  font-size: 0.75rem;
}
.training .training-image img {
  display: block;
  margin: 0;
  width: 100%;
}

.introducing-app {
  min-height: 100vh;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2em;
}
.introducing-app .app-text {
  width: 50%;
}
.introducing-app .app-text h3 {
  font-size: 3rem;
  line-height: 1.2;
  color: #bc0a18;
  margin-bottom: 0.5em;
}
.introducing-app .app-img {
  width: 50%;
}
.introducing-app .app-img img {
  width: 100%;
}

.evac {
  max-width: 1600px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2em;
}
.evac .evac-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.evac .evac-text h1 {
  color: #20a8e7;
  font-size: 2rem;
  line-height: 1.2;
  text-align: center;
}
.evac .evac-text p {
  font-size: 0.85rem;
  line-height: 1.2;
  color: rgb(32, 32, 32);
  text-align: center;
  margin-bottom: 1em;
}
.evac .evac-image {
  width: 50%;
}
.evac .evac-image img {
  width: 100%;
}

.evac2 {
  max-width: 1600px;
  width: 75%;
  margin: 0 auto;
  min-height: 100vh;
  border: 1px solid #e3e3e3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2em;
}
.evac2 .evac2-text h1 {
  color: #20a8e7;
  margin-bottom: 0.5em;
  font-size: 2rem;
}
.evac2 .evac2-text p {
  color: rgb(32, 32, 32);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 300;
  text-align: justify;
}
.evac2 .evac2-text p span {
  color: #bc0a18;
  font-weight: 700;
}

.topUp {
  max-width: 1600px;
  margin: 0 auto;
  min-height: 100vh;
  margin-top: 2em;
  padding: 2em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topUp .topUp-text {
  width: 50%;
}
.topUp .topUp-text h1 {
  color: #bc0a18;
  font-size: 2rem;
  line-height: 1.2;
}
.topUp .topUp-text h3 {
  margin-top: 1em;
  font-size: 1rem;
  line-height: 1.2;
}
.topUp .topUp-text p {
  text-align: justify;
  font-size: 0.85rem;
  line-height: 1.2;
  margin-top: 2em;
  color: rgb(32, 32, 32);
}
.topUp .topUp-text p span {
  font-style: italic;
  color: #bc0a18;
  font-size: 0.65rem;
}
.topUp .topUp-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
}
.topUp .topUp-image p {
  font-size: 0.55rem;
  width: 50%;
  line-height: 1.2;
  color: #bc0a18;
}
.topUp .topUp-image img {
  width: 380px;
}

.overview {
  max-width: 1300px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 2em;
  margin-top: 1em;
  background: #bc0a18 url(/img/brief.jpg);
  background-position: center;
  background-size: cover;
}
.overview h1 {
  font-size: 2rem;
  line-height: 1;
  text-align: center;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1em;
}
.overview p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: white;
  background-color: rgba(10, 10, 10, 0.7450980392);
  text-align: justify;
  padding: 1em;
  transition: 0.3s ease-in;
}
.overview p span {
  font-weight: 400;
  color: #20a8e7;
}
.overview p a {
  text-decoration: none;
  color: #20a8e7;
  font-size: 0.75rem;
  font-style: italic;
}

.educ1 {
  max-width: 1300px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2em;
}
.educ1 .educ1-text {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #e3e3e3;
}

.educ2 {
  max-width: 1300px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2em;
}
.educ2 .educ2-text {
  text-align: justify;
  font-size: 0.85rem;
  line-height: 2;
  color: #e3e3e3;
}
.educ2 .educ2-text h1 {
  color: #bc0a18;
  font-weight: 400;
  line-height: 1.2;
  font-size: 2rem;
}
.educ2 .educ2-text p {
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.5;
  color: white;
  background: rgb(32, 32, 32);
  padding: 2em;
  margin-bottom: 1em;
}
.educ2 .educ2-text p span {
  color: #20a8e7;
  font-weight: 700;
}

.road1 {
  max-width: 1300px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.road1 h1 {
  color: #bc0a18;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1em;
}
.road1 h1 span {
  font-weight: 400;
  font-size: 1.4rem;
}
.road1 h3 {
  color: #20a8e7;
  font-size: 1rem;
  font-weight: 400;
}
.road1 p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgb(32, 32, 32);
  text-align: justify;
}

.road-2 {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.road2-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2em 0;
  margin-bottom: 0.5em;
}
.road2-text h3 {
  color: white;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 1em;
}
.road2-text p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: white;
  background-color: rgba(32, 168, 231, 0.5333333333);
  padding: 2em;
  transition: 0.3s ease-in;
}
.road2-text p:hover {
  background-color: rgba(0, 0, 0, 0.876);
  font-weight: 400;
}

.r-1 {
  background: #bc0a18 url(/img/ambulance.jpg);
  background-position: center;
  background-size: cover;
}

.r-2 {
  background: #bc0a18 url(/img/acccident.jpg);
  background-position: center;
  background-size: cover;
}

.r-3 {
  background: #bc0a18 url(/img/government.jpg);
  background-position: center;
  background-size: cover;
}

.monitor {
  max-width: 1300px;
  margin: 0 auto;
  border-bottom: 1px solid #bc0a18;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2em;
}

.monitor-text h3 {
  color: #bc0a18;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 400;
}
.monitor-text p {
  color: rgb(32, 32, 32);
  text-align: center;
  font-size: 1rem;
}

.app {
  max-width: 1300px;
  margin: 0 auto;
  min-height: 100vh;
  border-bottom: 1px solid #bc0a18;
  padding: 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.app .app-text {
  padding: 2em;
}
.app .app-text h3 {
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  color: #bc0a18;
  margin-bottom: 1em;
}
.app .app-text p {
  font-size: 1rem;
  line-height: 1.5;
  text-align: justify;
  font-style: italic;
  color: rgb(32, 32, 32);
}
.app .app-text p span {
  color: #20a8e7;
}

.road-last {
  max-width: 1300px;
  margin: 0 auto;
  min-height: 50vh;
  padding: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.road-last h1 {
  font-size: 1.5rem;
  color: #bc0a18;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0.5em;
}
.road-last p {
  color: rgb(32, 32, 32);
  text-align: justify;
  font-size: 1rem;
  line-height: 1.5;
}
.road-last h3 {
  margin-top: 1em;
  color: #20a8e7;
  font-size: 1.5rem;
  font-weight: 400;
}
.road-last h3 span {
  color: #bc0a18;
  font-weight: 300;
}

.form-section {
  max-width: 1600px;
  width: 100%;
  min-height: 90vh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 2em;
}
.form-section .form-img {
  width: 40%;
}
.form-section .form-img img {
  display: block;
  margin: 0;
  width: 100%;
}
.form-section .form-inputs {
  width: 40%;
}
.form-section .form-inputs form h1 {
  color: #20a8e7;
  font-size: 2rem;
  margin-bottom: 0.5em;
}
.form-section .form-inputs form label {
  color: rgb(32, 32, 32);
}
.form-section .form-inputs form input {
  font-family: "roboto slab";
  font-size: 0.65rem;
  width: 90%;
  padding: 0.75em;
  margin-bottom: 1em;
  border: 1px solid #e3e3e3;
  border-left: 5px solid #20a8e7;
  outline: none;
}
.form-section .form-inputs form textarea {
  font-family: "roboto slab";
  width: 90%;
  height: 150px;
  padding: 0.5em;
  margin-bottom: 1em;
  border: 1px solid #e3e3e3;
  outline: none;
}
.form-section .form-inputs form button {
  width: 90%;
  font-family: "roboto slab";
  padding: 0.75em;
  border-radius: 3px;
  border: none;
  outline: none;
  color: white;
  font-weight: 700;
  background-color: #20a8e7;
}

footer {
  background: url(/img/worldMap.jpg);
  background-position: center;
  background-size: cover;
  background-color: #20a8e7;
  color: white;
  justify-content: space-around;
  padding: 3em 0;
}
footer .footer-container {
  display: flex;
  justify-content: space-around;
  max-width: 1300px;
  margin: 0 auto;
}
footer .footer-container div h3 {
  color: white;
  margin-bottom: 0.5em;
  font-weight: 700;
  text-transform: uppercase;
}
footer .footer-container div h6 {
  font-weight: 400;
  padding: 0.5em 0em;
  transition: 0.3s ease-in;
  font-size: 0.75rem;
}
footer .footer-container div h6:hover {
  color: #bc0a18;
}
footer .footer-container div li {
  list-style: none;
}
footer .footer-container div li a {
  text-decoration: none;
  color: white;
  font-size: 0.75rem;
  transition: 0.3s ease-in;
}
footer .footer-container div li a:hover {
  color: #bc0a18;
  text-decoration: underline;
}

.phone {
  display: flex;
  align-items: center;
}

.location {
  display: flex;
  align-items: center;
}

.email {
  display: flex;
  align-items: center;
}

@media all and (max-width: 960px) {
  .navBar {
    width: 100%;
    min-height: 10vh;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .burger {
    position: absolute;
    left: 80%;
    z-index: 100;
    display: flex;
  }

  .forHome {
    min-height: 100vh;
  }
  .forHome .welcome p {
    text-align: center;
    font-size: rem;
  }

  .forAbout {
    min-height: 10vh;
    background-color: white;
  }

  .forContact {
    min-height: 10vh;
    background-color: white;
  }

  .forRoad {
    min-height: 60vh;
    background-color: white;
  }

  .navLinks {
    opacity: 0;
    pointer-events: none;
    width: 100%;
  }

  .navLinks ul {
    background-color: rgb(255, 255, 255);
    position: absolute;
    width: 50%;
    min-height: 100vh;
    top: 0vh;
    left: 50%;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-self: center;
  }
  .navLinks ul li {
    width: 100%;
    font-size: 2rem;
    margin-left: 0em;
    margin-bottom: 0.5em;
  }
  .navLinks ul li a {
    font-weight: 700;
  }
  .navLinks ul li .active {
    background-color: #bc0a18;
  }

  .navLinks.active {
    opacity: 1;
    pointer-events: all;
  }

  .forHome .navLinks li a {
    color: rgb(32, 32, 32);
  }

  .forAbout .navLinks li a {
    color: rgb(32, 32, 32);
  }

  .welcome {
    padding: 1em;
  }
  .welcome h1 {
    font-size: 2.5rem;
  }
  .welcome p {
    font-size: 0.75rem;
  }

  .ceo-message {
    width: 80%;
  }
  .ceo-message .ceo-text {
    padding: 0.5em;
    width: 100%;
  }
  .ceo-message .ceo-text .ceo-text-header h3 {
    font-size: 1.25rem;
  }
  .ceo-message .ceo-text p {
    font-size: 0.75rem;
  }
  .ceo-message .ceo-text p span {
    font-size: 1rem;
  }
  .ceo-message a {
    font-size: 0.75rem;
  }

  .mission-vision h1 {
    font-weight: 700;
    font-size: 2rem;
  }
  .mission-vision .vision-text {
    padding: 2em;
    background-color: #bc0a18;
  }
  .mission-vision .vision {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    padding: 1em;
    margin-bottom: 1em;
  }
  .mission-vision .vision .vision-img {
    width: 100%;
  }
  .mission-vision .vision .vision-img img {
    width: 100%;
    display: block;
    margin: 0;
    width: 100%;
  }
  .mission-vision .vision .vision-text {
    padding: 0.75em;
  }
  .mission-vision .mission {
    width: 90%;
    min-height: 100%;
    padding: 1em;
    margin: 1em;
  }
  .mission-vision .mission p {
    text-align: start;
    font-size: 0.75rem;
  }

  .board-text h1 {
    font-size: 1.5rem;
  }

  .values {
    min-height: 100%;
    flex-direction: column;
    align-items: center;
    padding: 1em;
  }
  .values .value-text {
    padding: 0.75em;
    width: 100%;
    text-align: justify;
  }
  .values .value-text h1 {
    font-size: 1.25rem;
  }
  .values .value-text h3 {
    font-size: 1rem;
  }
  .values .value-image {
    width: 100%;
  }
  .values .value-image img {
    width: 100%;
  }

  .overview {
    padding: 1em;
  }

  .introducing-app {
    margin-top: 2em;
    flex-direction: column;
    min-height: 100%;
  }
  .introducing-app .app-text {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .introducing-app .app-text h3 {
    font-size: 3rem;
    text-align: center;
  }
  .introducing-app .app-text p {
    text-align: center;
    font-size: 1.2rem;
  }
  .introducing-app .app-img {
    width: 100%;
    display: flex;
  }

  .form-section {
    min-height: 100vh;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    padding: 1em;
  }
  .form-section .form-img {
    width: 80%;
  }
  .form-section .form-inputs {
    width: 100%;
  }
  .form-section .form-inputs form h1 {
    text-align: center;
    font-size: 1.5rem;
    margin: 1em 0;
  }
  .form-section .form-inputs form label {
    color: rgb(32, 32, 32);
  }
  .form-section .form-inputs form input {
    width: 100%;
  }
  .form-section .form-inputs form textarea {
    width: 100%;
  }
  .form-section .form-inputs form button {
    width: 100%;
  }

  .training {
    padding: 1em;
    min-height: 100%;
    flex-direction: column;
  }
  .training .training-text {
    width: 100%;
  }
  .training .training-text h1 {
    font-size: 1.5rem;
  }
  .training .training-image {
    width: 100%;
  }
  .training .training-image img {
    width: 100%;
  }

  .evac {
    min-height: 100%;
    margin: 2em 0;
  }
  .evac .evac-text h1 {
    font-size: 1.75rem;
  }
  .evac .evac-image {
    width: 100%;
  }
  .evac .evac-image img {
    width: 100%;
  }

  .evac2 {
    width: 90%;
    min-height: 100%;
    padding: 1em;
  }
  .evac2 .evac2-text {
    margin-top: 1em;
    width: 100%;
  }

  .topUp {
    flex-direction: column;
    padding: 1em;
    align-items: center;
    justify-content: center;
  }
  .topUp .topUp-text {
    width: 100%;
    padding-right: 0em;
  }
  .topUp .topUp-text h1 {
    font-size: 1rem;
  }
  .topUp .topUp-image {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .topUp .topUp-image img {
    width: 100%;
  }
  .topUp .topUp-image p {
    width: 350px;
  }

  .educ1 {
    padding: 1em;
    flex-direction: column;
  }

  .educ2 {
    padding: 1em;
  }
  .educ2 .educ2-text h1 {
    font-size: 1.5rem;
    text-align: center;
  }
  .educ2 .educ2-image img {
    width: 450px;
  }

  .app {
    flex-direction: column;
    padding: 1em;
  }
  .app .app-text {
    padding: 1em;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-container .siteMap {
    text-align: center;
    margin-bottom: 2em;
  }
  .footer-container .addressSa {
    text-align: center;
    margin-bottom: 2em;
  }
  .footer-container .addressGabon {
    text-align: center;
  }

  .phone,
.email,
.location {
    justify-content: center;
  }
}
@media all and (max-width: 768px) {
  .monitor {
    flex-direction: column;
  }
}
@media all and (max-width: 576px) {
  header {
    min-height: 50vh;
  }

  .welcome h1 {
    font-size: 1.25rem;
  }
  .welcome p {
    font-size: 1rem;
    margin: 1em 0;
  }
  .welcome a {
    width: 75%;
  }

  .ceo-message {
    width: 100%;
    min-height: 50vh;
  }
  .ceo-message .ceo-text .ceo-text-header h3 {
    font-size: 1rem;
  }

  .management .management-title h1 {
    font-size: 1.2rem;
  }

  .individual {
    width: 300px;
    height: 300px;
  }
  .individual h5 {
    font-size: 1rem;
  }
  .individual p {
    font-size: 0.65rem;
  }
  .individual img {
    width: 100px;
    height: 100px;
  }

  .mission-vision .vision {
    min-height: 50%;
  }
  .mission-vision .mission {
    min-height: 50%;
  }

  .values {
    padding: 1em;
  }

  .educ2-image {
    margin-top: 1em;
  }
  .educ2-image img {
    width: 300px;
  }

  .educ2 .educ2-image img {
    width: 300px;
  }

  .app .app-image img {
    width: 380px;
  }

  .monitor .monitor-image img {
    width: 380px;
  }

  .topUp-image img {
    width: 350px;
  }
}/*# sourceMappingURL=style.css.map */