/* Global Properties*/
* {
  scroll-behavior: smooth;
}

html,
body {
  font-family: "Manrope", sans-serif;
  margin: 0;
  padding: 0;
}

p {
  font-size: 1.5em;
  line-height: 1.35;
}

.colorspan-white {
  color: #ffffff;
}

.colorspan-green1 {
  color: #74b328;
}

.colorspan-green2 {
  color: #4c6444;
}

.colorspan-1 {
  color: #af9a71;
}

#section-two{
  overflow-x: hidden;
  overflow-y: hidden;
}

/* Loading */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.26);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.8px);
  -webkit-backdrop-filter: blur(7.8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-out;
  pointer-events: none;
}

.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #4c6444;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#content {
  display: none;
}
/* end of Loading */

/* Navigasi */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  margin-bottom: 0;
  transition: 150ms ease-in-out;
}

.navigation {
  width: 100%;
  height: 90px;
  z-index: 102;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  position: relative;
}

.navigation.scrolled {
  background-color: white;
  transition: ease-in-out 200ms;
  -webkit-box-shadow: 0px 7px 23px 3px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 7px 23px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 7px 23px 3px rgba(0, 0, 0, 0.15);
}

.logo-left {
  display: flex;
  align-items: center;
}

.logo-left a img {
  width: 150px;
}

.nav-middle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px 0 20px;
  width: 35%;
}

.underline {
  position: absolute;
  top: 0px;
  height: 5px;
  background-color: #fafff4;
  transition: left 0.2s ease, width 0.2s ease;
  border-radius: 0px 0px 50px 50px;
}

.underline.scrolled {
  background-color: #4c6444;
}

.nav-link {
  position: relative;
  display: block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 30px;
  transition: ease-in-out 200ms;
  color: #ffffff;
}

.nav-link:hover {
  scale: 1.1;
  transition: ease-in-out 200ms;
}

.dropdown-education {
  position: absolute;
  background-color: none;
  z-index: 1;
  border-radius: 4px;
  padding: 10px;
  display: none;
  opacity: 0;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-education.active {
  display: block;
  opacity: 1;
  animation: fadeDown 0.3s ease forwards;
}

.dropdown-education-content-container {
  margin-top: 20px;
  background-color: white;
  border-radius: 0 0 16px 16px;
  width: 500px;
  color: #503d42;
  -webkit-box-shadow: 0px 7px 23px 3px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 7px 23px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 7px 23px 3px rgba(0, 0, 0, 0.15);
}

.dropdown-education-content-container-top {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  flex-direction: row;
  width: 100%;
  padding-top: 20px;
  margin-left: 20px;
}

.dropdown-education-content-container-top h1 {
  font-size: 16px;
  margin-left: 10px;
}

.dropdown-education-content-container-top div {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 20px;
  height: 20px;
  background-color: #4c6444;
  padding: 10px;
  border-radius: 50px;
}

.dropdown-education-content-container-top div img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(180deg) brightness(105%) contrast(105%);
  width: 100%;
}

.dropdown-education-content-container-down {
  margin: 30px;
  display: flex;
  flex-direction: row;
}

.dropdown-education-content-container-down-left {
  width: 50%;
}

.dropdown-education-content-container-down-left h2,
.dropdown-education-content-container-down-right h2 {
  margin-top: 0;
  font-weight: 800;
  font-size: 16px;
}

.dropdown-education-content-container-down-left img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.dropdown-education-content-container-down-left h3 {
  margin-top: 1px;
  font-weight: 800;
  font-size: 14px;
}

.dropdown-education-content-container-down-left p {
  margin-top: 0;
  font-weight: 400;
  font-size: 12px;
  text-align: justify;
}

.dropdown-education-content-container-down-right {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 50%;
}

.link-environment,
.link-urban,
.link-iot,
.link-citizen,
.link-smartcity {
  font-size: 14px;
  transition: 150ms ease-in-out;
  cursor: pointer;
}

.link-environment:hover,
.link-urban:hover,
.link-iot:hover,
.link-citizen:hover,
.link-smartcity:hover {
  color: #74b328;
  transition: 150ms ease-in-out;
  text-decoration: underline;
}

.dropdown-phone {
  display: none;
  position: relative;
}

.dropbtn-phone {
  color: #503d42;
  padding: 10px;
  border-radius: 10px;
  background-color: white;
  text-decoration: none;
  font-weight: 700;
  transition: ease-in-out 100ms;
  scale: 1;
  border: none;
  font-size: 16px;
}

.dropdown-phone-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 16px;
}

.dropdown-phone-content.show {
  display: block;
}

.dropdown-phone-content a {
  color: #503d42;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-phone-content a:hover {
  background-color: #f1f1f1;
  border-radius: 20px;
}

.dropdown-phone:hover .dropdown-content {
  display: block;
}

.dropdown-phone:hover .dropbtn {
  background-color: #503d42;
  color: white;
  transition: ease-in-out 100ms;
}

/* RESPONSIVE */
@media screen and (max-width: 1035px) {
  .nav-middle {
    display: none;
  }

  .dropdown-phone {
    margin-right: 20px;
    display: block;
  }

  .logo-left {
    margin-left: 20px;
  }

  .navigation {
    justify-content: space-between;
  }
}
/* end of Navigasi */

/* Section 1: background */
.section1bg {
  margin-top: -90px;
  width: 100vw;
  height: 20vw;
  display: block;
  position: relative;
  background: url("iot-assets/iot-bg.jpg") no-repeat center center;
  background-size: cover;
}

.section-1 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section1-title h1 {
  font-family: "DM Sans", sans-serif;
  color: white;
  text-align: center;
  align-items: center;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 1);
  margin-top: 23dvh;
  font-size: 32px;
  font-weight: 500;
}

/* RESPONSIVE */
@media screen and (max-width: 1200px) {
  .section1bg {
    height: 30vw;
  }
}
@media screen and (max-width: 768px) {
  .section1bg {
    height: 40vw;
  }
  .section1-title h1 {
    margin-top: 20vh;
  }
}
@media screen and (max-width: 480px) {
  .section1bg {
    height: 60vw;
  }
  .section1-title h1 {
    font-size: 26px;
    margin-top: 15vh;
  }
}
/* End of Section 1: background */

/* Section 2: Main */

/* Pengertian */
.sectiontwo-iot-pengertian {
  display: flex;
  flex-direction: row;
  margin-top: 10%;
  margin-left: 5%;
  margin-right: 5%;
}

.sectiontwo-iot-pengertian-image {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.sectiontwo-iot-pengertian-image img {
  border-radius: 20px;
  width: 35rem;
  height: auto;
}

.sectiontwo-iot-pengertian-text {
  display: flex;
  flex-direction: column;
  margin-left: 5%;
  margin-top: 1%;
}

.sectiontwo-iot-pengertian-text h1 {
  font-family: "DM Sans", sans-serif;
  text-align: justify;
  direction: ltr;
  color: #4c6444;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2em;
}

.sectiontwo-iot-pengertian-text p {
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.1em;
  word-spacing: 0.2em;
  color: #503d42;
  text-align: justify;
  direction: ltr;
}

@media screen and (max-width: 1200px) {
  .sectiontwo-iot-pengertian {
    flex-direction: column;
  }
  .sectiontwo-iot-pengertian-image {
    justify-content: center;
    align-items: center;
  }
  .sectiontwo-iot-pengertian-text {
    margin-left: 0%;
  }
}
@media screen and (max-width: 768px) {
  .sectiontwo-iot-pengertian {
    margin-top: 20%;
  }
  .sectiontwo-iot-pengertian-image img {
    border-radius: 0px;
    width: 100vw;
    height: auto;
  }
  .sectiontwo-iot-pengertian-text h1 {
    font-size: x-large;
  }
  .sectiontwo-iot-pengertian-text p {
    font-size: medium;
  }
}
@media screen and (max-width: 480px) {
  .sectiontwo-iot-pengertian {
    margin-top: 10%;
    margin-left: 10%;
    margin-right: 10%;
  }
  .sectiontwo-iot-pengertian-image img {
    width: 100%;
    border-radius: 16px;
  }
  .sectiontwo-iot-pengertian-text h1 {
    font-size: large;
    text-align: justify;
  }
  .sectiontwo-iot-pengertian-text p {
    font-size: small;
    text-align: justify;
  }
}
/* end of Pengertian */

/* Why IoT */
.sectiontwo-iot-whyiot {
  margin-top: 5%;
  display: flex;
  flex-direction: row;
  background-color: #4c6444;
  align-items: stretch;
  justify-content: space-between;
}

.sectiontwo-iot-whyiot-text {
  display: flex;
  flex-direction: column;
  padding-top: 5%;
  padding-left: 4%;
  padding-right: 4%;
}

.sectiontwo-iot-whyiot-text h2 {
  text-align: center;
  margin-bottom: -2rem;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #efefef;
}

.sectiontwo-iot-whyiot-text h1 {
  font-family: "DM Sans", sans-serif;
  text-align: center;
  direction: ltr;
  margin-right: 1rem;
  margin-bottom: -0.3rem;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2em;
  padding: 1rem;
  color: #efefef;
}

.centered {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fa-quote-left {
  color: white;
  text-align: center;
  margin-top: 5%;
  margin-bottom: 5%;
}

.sectiontwo-iot-whyiot-text p {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 12%;
  letter-spacing: 0.1em;
  word-spacing: 0.1em;
  text-align: justify;
  direction: ltr;
  color: #efefef;
}

.sectiontwo-iot-whyiot-image {
  display: flex;
  justify-content: flex-end;
}

.sectiontwo-iot-whyiot-image img {
  width: 50vw;
  height: 100%;
}

@media screen and (max-width: 1200px) {
  .sectiontwo-iot-whyiot {
    flex-direction: column-reverse;
    width: 100vw;
  }
  .sectiontwo-iot-whyiot-image {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sectiontwo-iot-whyiot-image img {
    width: 100vw;
    height: auto;
  }
  .sectiontwo-iot-whyiot-text p {
    font-size: 20px;
    line-height: 2;
    margin-bottom: 12%;
    letter-spacing: 0.1em;
    word-spacing: 0.1em;
    text-align: justify;
    direction: ltr;
    color: #efefef;
  }
}
@media screen and (max-width: 768px) {
  .sectiontwo-iot-whyiot-text h2 {
    font-size: x-small;
  }
  .sectiontwo-iot-whyiot-text h1 {
    font-size: xx-large;
  }
  .sectiontwo-iot-whyiot-text p {
    font-size: medium;
    padding-right: 4%;
  }
}
@media screen and (max-width: 480px) {
  .sectiontwo-iot-whyiot-text h2 {
    font-size: smaller;
  }
  .sectiontwo-iot-whyiot-text h1 {
    font-size: x-large;
  }
  .sectiontwo-iot-whyiot-text p {
    font-size: small;
    padding-right: 4%;
    padding-left: 2%;
    text-align: justify;
  }
  .sectiontwo-iot-whyiot {
    margin-top: 10%;
  }
  .sectiontwo-iot-whyiot-image img {
    width: 100%;
    height: auto;
  }
}
/* end of Why IoT */

/* Perangkat */
.sectiontwo-iot-perangkat {
  position: relative;
  justify-content: center;
  display: flex;
  flex-direction: column;
  margin-top: 10%;
  margin-left: 5%;
  margin-right: 5%;
  margin-bottom: 10%;
}

.sectiontwo-iot-perangkat h1 {
  font-family: "DM Sans", sans-serif;
  text-align: center;
  color: #4c6444;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2em;
}

.sectiontwo-iot-perangkat h2 {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #af9a71;
}

.sectiontwo-iot-perangkat-item-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.sectiontwo-iot-perangkat-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 1.5%;
  margin-left: 1.5%;
  margin-right: 1.5%;
}

.image-container {
  position: relative;
  width: 20rem;
  height: 30rem;
  overflow: hidden;
  display: block;
  transition: 200ms ease-in-out;
}

.image-container img {
  width: 20rem;
  height: auto;
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: brightness(0.7);
  transition: filter 0.3s ease-in-out;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #efefef;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease-in-out;
  transition: 200ms ease-in-out;
}

.image-container h2 {
  font-family: "DM Sans", sans-serif;
  position: absolute;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2em;
  padding: 1rem;
  color: #efefef;
  transition: top 0.5s ease-in-out;
  top: calc(80%);
}

.image-container p {
  position: absolute;
  left: 10px;
  top: 100%;
  opacity: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  word-spacing: 0.1em;
  margin-left: 1rem;
  margin-right: 1rem;
  text-align: justify;
  direction: ltr;
  opacity: 1;
  color: #efefef;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: top 0.5s ease-in-out;
}

.image-container:hover .image-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: 200ms ease-in-out;
}

.image-container:hover h2 {
  color: #74b328;
  top: calc(10px);
}

.image-container:hover p {
  top: calc(100% - 70%);
}

@media screen and (max-width: 1200px) {
  .sectiontwo-iot-perangkat-item {
    flex-direction: row;
  }
  .sectiontwo-iot-perangkat-item-container {
    flex-direction: column;
  }
}
@media screen and (max-width: 1100px) {
  .image-container p {
    font-size: medium;
  }

  .image-container h2 {
    font-size: large;
  }

  .image-container {
    width: 20rem;
    height: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .image-container {
    width: 100vw;
    height: 30rem;
  }
}
@media screen and (max-width: 480px) {
  .sectiontwo-iot-perangkat h1 {
    font-size: x-large;
  }
  .sectiontwo-iot-perangkat h2 {
    font-size: smaller;
  }
  .image-container {
    width: 100vw;
    height: 25rem;
  }
  .image-container p {
    font-size: small;
  }
  .image-container h2 {
    font-size: medium;
  }
}
/* End of Perangkat */

/* Jurnal */
.jurnal {
  display: flex;
  padding: 1rem;
  margin-top: -5%;
  margin-left: 5%;
  margin-right: 5%;
}

.jurnal-image {
  display: flex;
  justify-content: flex-end;
  align-items: right;
  margin-left: 5%;
}

.jurnal img {
  max-width: 30rem;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.jurnal-text {
  margin-top: 3%;
}

.jurnal-text h2 {
  font-family: "DM Sans", sans-serif;
  text-align: left;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2em;
  color: #4c6444;
}

.jurnal-text p {
  color: #503d42;
  font-size: 18px;
  line-height: 1.6em;
  max-width: 50rem;
}

.button-box-jurnal {
  display: inline-block;
}

.button-jurnal {
  display: inline-block;
  padding: 12px 20px;
}

.button-box-jurnal a {
  padding: 13px;
  text-decoration: none;
  color: white;
  background-color: #4c6444;
  border: 2px solid #4c6444;
  transition: ease-in-out 150ms;
  border-radius: 10px;
  font-weight: 500;
}

.button-jurnal:hover {
  transform: scale(1.1);
  color: #4c6444;
  background-color: white;
  border: 2px solid #4c6444;
}

@media screen and (max-width: 1200px) {
  .jurnal-text h2 {
    font-size: 24px;
  }
  .jurnal-text p {
    font-size: 18px;
  }
  .button-box2 {
    margin-top: 0.5rem;
  }
  .jurnal-image {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .jurnal-text h2 {
    font-size: 22px;
  }
  .jurnal-text p {
    font-size: 16px;
  }
  .button-jurnal {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .jurnal {
    margin-left: 10%;
    margin-right: 10%;
  }
  .jurnal-text {
    align-items: center;
    justify-content: center;
    text-align: justify;
  }
  .jurnal-text h2 {
    font-size: larger;
    text-align: center;
  }
  .jurnal-text p {
    font-size: 12px;
  }
  .jurnal-image {
    display: none;
  }
  .button-box-jurnal a {
    font-size: 14px;
    margin-top: 5%;
  }
}
/* end of Jurnal */

/* Quiz */
.quizContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 10%;
  margin-bottom: 10%;
  gap: 50px;
  text-align: center;
}

.quizContainerLeftDown,
.quizContainerLeftUp,
.quizContainerRight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.quizContainerLeftUp h2 {
  text-transform: uppercase;
  color: #af9a71;
  letter-spacing: 5px;
  margin-bottom: -20px;
  font-size: 16px;
  font-weight: 800;
}

.quizContainerLeftUp h1 {
  color: #4c6444;
  font-size: 28px;
  font-weight: 600;
}

#question {
  font-size: 20px;
  font-weight: 600;
  color: #503d42;
}

#score {
  font-size: 16px;
  color: #503d42;
}

.quizTitleText {
  font-family: "DM Sans", sans-serif;
}

.quizDescText {
  font-family: "Manrope", sans-serif;
}

.quizConfirmButton {
  margin-top: 25px;
  padding: 13px;
  text-decoration: none;
  color: white;
  background-color: #af9a71;
  border: 2px solid #af9a71;
  transition: ease-in-out 150ms;
  border-radius: 10px;
  font-weight: 500;
}

.quizConfirmButton:hover {
  transform: scale(1.1);
  color: #af9a71;
  background-color: white;
  border: 2px solid #af9a71;
}

.quizCancelButton {
  margin-top: 25px;
  padding: 13px;
  text-decoration: none;
  color: white;
  background-color: #4c6444;
  border: 2px solid #4c6444;
  transition: ease-in-out 150ms;
  border-radius: 10px;
  font-weight: 500;
}

.quizCancelButton:hover {
  transform: scale(1.1);
  color: #4c6444;
  background-color: white;
  border: 2px solid #4c6444;
}

#options {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#options button {
  font-size: 16px;
  margin: 2%;
  padding: 20px 50px;
  border: none;
  border-radius: 4px;
  background-color: #af9a71;
  border: 2px solid #af9a71;
  cursor: pointer;
  color: white;
  transition: 150ms ease-in-out;
  text-align: center;
  border-radius: 16px;
}

#options button:hover {
  transition: 150ms ease-in-out;
  color: #af9a71;
  background-color: #ffffff;
  border: 2px solid #af9a71;
}

#nextBtn {
  margin-top: 25px;
  padding: 13px;
  text-decoration: none;
  color: white;
  background-color: #4c6444;
  border: 2px solid #4c6444;
  transition: ease-in-out 150ms;
  border-radius: 10px;
  font-weight: 500;
}

#nextBtn:hover {
  transform: scale(1.1);
  color: #4c6444;
  background-color: white;
  border: 2px solid #4c6444;
}

.resultContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background-color: rgba(76, 100, 68, 0.1);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  text-align: center;
}

.resultContainer h2 {
  font-size: 24px;
  color: #4c6444;
  margin-bottom: 10px;
}

.resultContainer p {
  font-size: 18px;
  color: #503d42;
  margin-bottom: 10px;
}

.scoreDisplay {
  font-size: 36px;
  font-weight: 700;
  color: #af9a71;
  padding: 10px 20px;
  background-color: #ffffff;
  border: 2px solid #af9a71;
  border-radius: 8px;
  transition: transform 0.2s ease-in-out;
}

.scoreDisplay:hover {
  transform: scale(1.1);
}

#confettiCanvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
}

#homePage {
  margin-top: 30px;
  padding: 5%;
  background-color: #503d42;
  border-radius: 12px;
  border: none;
  color: #efefef;
}

#homePage:hover {
  transform: scale(1.1);
  color: #503d42;
  background-color: white;
  border: 2px solid #503d42;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
  .quizContainer {
    gap: 20px;
  }
}

@media screen and (max-width: 480px) {
  .quizContainer {
    flex-direction: column;
  }
  .quizContainerLeftUp h2 {
    font-size: 12px;
    font-weight: 800;
  }
  .quizContainerLeftUp h1 {
    color: #4c6444;
    font-size: 26px;
    font-weight: 600;
  }
  #question {
    font-size: 16px;
    width: 90dvw;
    margin-bottom: 20px;
  }
}

/* end of Quiz */

/* footer */
footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: white;
  margin-bottom: 0;
  -webkit-box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.1);
}

.upper-footer {
  display: flex;
  flex-direction: row;
  margin: 40px 100px 40px 100px;
}

.upper-footer .logo-and-description {
  height: 100%;
  width: 20%;
}

.upper-footer .location {
  display: flex;
  flex-direction: column;
  color: #503d42;
  margin-right: 30px;
  width: 20%;
}

.upper-footer .contact {
  display: flex;
  flex-direction: column;
  color: #503d42;
  width: 20%;
}

.upper-footer .navigasi {
  display: flex;
  flex-direction: column;
  color: #503d42;
  width: 10%;
}

.upper-footer .education-navigation-container {
  display: flex;
  flex-direction: column;
  width: 30%;
}

.upper-footer .logo-and-description {
  display: flex;
  flex-direction: column;
  color: #503d42;
  margin-right: 50px;
}

.upper-footer .logo-and-description img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.upper-footer .logo-and-description h3 {
  width: 100%;
  text-align: justify;
  font-size: 14px;
  font-weight: 500;
}

.location-logo img {
  width: 50px;
}

.upper-footer .location h2,
.upper-footer .contact h2,
.navigasi h2,
.education-navigation-container h2 {
  color: #503d42;
  font-size: 20px;
}

.upper-footer .location p,
.upper-footer .contact p {
  font-size: 14px;
}

.upper-footer .contact div {
  display: flex;
  flex-direction: row;
  margin: -10px 0px -20px;
}

.upper-footer .contact div div {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #503d42;
  margin: 2%;
  width: 50px;
  height: 50px;
  background-color: #f5fbef;
  border-radius: 100px;
}

.upper-footer .contact div div:hover {
  color: #ffffff;
  background-color: #503d42;
}

.navigasi,
.petisi-unggulan,
.urun-dana-unggulan {
  display: flex;
  flex-direction: column;
  width: 15%;
  color: #503d42;
  margin-left: 20px;
}

.navigasi a,
.education-navigation-theme a,
.education-navigation-subtheme a {
  text-decoration: none;
  color: #503d42;
  font-size: 14px;
}

.navigasi a:hover,
.education-navigation-theme a:hover,
.education-navigation-subtheme a:hover {
  color: #4c6444;
}

.education-navigation-content-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.education-navigation-title-container h3,
.education-navigation-content-container h3 {
  font-size: 16px;
  color: #503d42;
}

.down-footer {
  background-color: #4c6444;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.down-footer h2 {
  color: white;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 1230px) {
  .upper-footer {
    margin: 20px 20px;
  }
}

@media (max-width: 1024px) {
  .location,
  .contact,
  .navigasi,
  .petisi-unggulan,
  .urun-dana-unggulan {
    text-align: center;
  }
  .upper-footer {
    flex-direction: column;
    margin: 40px 20px;
  }

  .upper-footer .logo-and-description h3 {
    width: 50%;
  }

  .upper-footer .logo-and-description,
  .upper-footer .location,
  .upper-footer .contact,
  .upper-footer .education-navigation-container,
  .upper-footer .navigasi {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .upper-footer .navigasi {
    margin-left: auto;
  }

  .education-navigation-container {
    text-align: center;
  }
  .education-navigation-content-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .upper-footer {
    flex-direction: column;
    margin: 40px 20px;
  }
  .upper-footer > div {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .upper-footer .logo-and-description img {
    height: 80px;
  }
}

@media (max-width: 480px) {
  .upper-footer {
    margin: 20px 10px;
  }
  .upper-footer .logo-and-description,
  .upper-footer .location,
  .upper-footer .contact,
  .upper-footer .education-navigation-container,
  .upper-footer .navigasi {
    font-size: 18px;
  }
  .upper-footer .location p,
  .upper-footer .contact p,
  .navigasi a,
  .education-navigation-container a {
    font-size: 12px;
  }
  .down-footer h2 {
    font-size: 10px;
  }
  .upper-footer .location p {
    width: 50%;
  }
}
/* End of Footer */
