* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.65;
  scroll-behavior: smooth;
}
a {
  color: #222;
  text-decoration: none;
}

/* Back To Top Button */
.backToTop {
  color: #222;
  color: #dbd31e;
  position: fixed;
  text-align: center;
  line-height: 40px;
  width: 40px;
  height: 40px;
  right: 5%;
  bottom: 7%;
  border-radius: 5px;
  background: rgb(34, 34, 34, 0.6);
  z-index: 99;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateY(100%);
}
.backToTop.show {
  transform: translateY(0);
  pointer-events: all;
  opacity: 1;
}
.backToTop:hover {
  color: #222;
  background: rgb(219, 211, 30, 0.6);
}
.topButton {
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  font-weight: 800;
  display: block;
  transform: translateY(13%);
  /* border: 1px solid black; */
}

/* Header Section */
header {
  width: 100%;
  height: 100px;
  /* border: 1px solid black; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  /* overflow: hidden; */
}
nav {
  /* border: 1px solid black; */
  width: 90%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  /* border: 1px solid black; */
}
.logoLink {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.logoLink img {
  width: 12%;
  margin-right: 5px;
}
.logoLink h1 {
  font-size: 20px;
}
.logoLink:hover {
  color: #dbd31e;
}
.navLink {
  /* border: 1px solid black; */
  height: 100%;
  width: 50%;
}
.bigUl {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}
.bigUl li {
  list-style: none;
  cursor: pointer;
}
.bigUl a:hover {
  text-decoration: underline;
}
.bigUl img {
  height: 10px;
  margin-left: 3px;
}
.aboutUl,
.informationUl {
  position: absolute;
  transform: translateY(-50px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
  background: rgba(30, 75, 48, 1);
  border-top: 3px solid #dbd31e;
  border-bottom: 3px solid #dbd31e;
  padding: 10px;
}
.aboutUl.on,
.informationUl.on {
  pointer-events: all;
  transform: translateY(0);
  opacity: 1;
}
.aboutUl a,
.informationUl a {
  display: block;
  color: #fff;
}

/* Footer Section */
footer {
  background: #1e4b30;
  width: 100%;
  color: #fff;
  padding: 50px 0;
}
.lineFooter {
  width: 90%;
  border: 1px solid #dbd31e;
  margin: 0 auto;
}
.contentFooter {
  padding: 100px 0;
  margin-left: 5%;
  width: 90%;
  height: 100%;
  /* border: 1px solid yellow; */
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
}
.contentFooter img {
  height: 120px;
}
.descFooter {
  width: 30%;
  font-weight: 300;
}
.navFooter {
  height: 100%;
  width: 50%;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  font-weight: 300;
  font-size: 16px;
}
.navFooter li {
  list-style: none;
  margin-left: 15px;
}
.navFooter a {
  color: #fff;
}
.navFooter a:hover {
  color: #dbd31e;
  text-decoration: underline;
}

/* Responsive CSS Code */
@media screen and (max-width: 1024px) {
  /* Header Section */
  .hamburger {
    position: absolute;
    transform: translate(-60%, 50%);
    right: 0;
    top: 0;
    height: 50px;
    width: 50px;
    /* background: #9ddb0b; */
    border-radius: 50%;
    pointer-events: all;
    cursor: pointer;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
  }
  .hamburger.on {
    position: fixed;
  }
  .stripe {
    /* height: 100%; */
    border: 2.2px solid #222;
    margin-top: 3.2px;
    width: 22px;
    transition: all 0.3s ease;
  }
  .stripe.on {
    border: 2.2px solid #dbd31e;
  }
  .firstStripe.active {
    border: 2.2px solid #fff;
    width: 28px;
  }
  .midStripe.active {
    border: 2.2px solid #fff;
    width: 25px;
  }
  .lastStripe.active {
    border: 2.2px solid #fff;
    width: 22px;
  }
  .firstStripe.activeOn {
    border: 2.2px solid #dbd31e;
    width: 28px;
  }
  .midStripe.activeOn {
    border: 2.2px solid #dbd31e;
    width: 25px;
  }
  .lastStripe.activeOn {
    border: 2.2px solid #dbd31e;
    width: 22px;
  }
  .logoLink h1 {
    font-size: 18px;
  }

  /* Nav To Right */
  .navLink {
    background: #fff;
    background: rgba(30, 75, 48, 0.9);
    opacity: 0;
    top: 0;
    right: 0;
    position: fixed;
    height: 100vh;
    width: 40vw;
    padding-top: 100px;
    padding-left: 20px;
    transform: translateX(105%);
    transition: all 1s ease;
  }
  .navLink.on {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
  }
  .bigUl {
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 20px;
  }
  .bigUl a {
    color: #fff;
  }
  .aboutUl,
  .informationUl {
    background: rgba(219, 211, 30, 0.7);
    border-top: 3px solid #fff;
    border-bottom: 3px solid #fff;
    width: 35vw;
  }
  .informationLink,
  .ppdbLink,
  .contactLink {
    transform: translateY(0);
    transition: all 0.5s ease;
  }
  .informationLink.on,
  .ppdbLink.on,
  .contactLink.on {
    transform: translateY(150px);
    transition: all 0.5s ease;
  }

  /* Footer */
  .contentFooter img {
    height: 100px;
  }
  .descFooter,
  .navFooter {
    font-size: 14px;
  }
}

@media screen and (max-width: 855px) {
  /* Footer */
  .contentFooter {
    row-gap: 50px;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
  .contentFooter img {
    height: 120px;
  }
  .descFooter {
    width: 60%;
  }
  .navFooter {
    column-gap: 50px;
    margin-left: 5%;
    width: 100%;
    display: flex;
    /* flex-direction: column; */
    justify-content: flex-start;
  }
}

@media screen and (max-width: 650px) {
  /* Header Section */
  .navLink {
    width: 50vw;
  }
  .aboutUl,
  .informationUl {
    width: 40vw;
  }
  .bigUl {
    font-size: 14px;
  }
  /* Section Header */
  .logoLink h1 {
    font-size: 16px;
  }
  /* Footer */
  .contentFooter {
    flex-direction: column;
    row-gap: 20px;
  }
  .contentFooter img {
    width: inherit;
    /* border: 1px solid gainsboro; */
    height: 250px;
    width: 100%;
    object-fit: contain;
  }
  .descFooter {
    width: 100%;
  }
  .navFooter {
    margin-top: 10px;
    margin-left: 0%;
    flex-direction: column;
  }
}

@media screen and (max-width: 450px) {
  /* Header Section */

  .logoLink h1 {
    font-size: 14px;
  }
  .navLink {
    width: 70vw;
  }
  .aboutUl,
  .informationUl {
    width: 60vw;
  }
}
