/* 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;
}

#sectiontwo{
  overflow-x: 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("gallery-assets/gallerybg.jpg") no-repeat
  center center;
  background-size: cover;
}

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

/* RESPONSIVE */
@media screen and (max-width: 1200px) {
  .section1bg {
    height: 30vw;
  }
}
@media screen and (max-width: 768px) {
  .section1bg {
    height: 40vw;
  }
}
@media screen and (max-width: 480px) {
  .section1bg {
    height: 60vw;
  }
}
/* End of Section 1: background */

.sectiontwo-aboutgallery {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 100px 0 100px;
}

.sectiontwo-aboutgallery-text {
  display: flex;
  flex-direction: column;
  width: 60%;
}

.sectiontwo-aboutgallery-text h1 {
  text-align: left;
  direction: ltr;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2em;
  padding: 1rem;
  margin-bottom: -1%;
  color: #4c6444;
}

.sectiontwo-aboutgallery-text p {
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: 0.1em;
  word-spacing: 0.2em;
  color: black;
  text-align: justify;
  direction: ltr;
  margin-right: 5%;
  margin-left: 1.5%;
}

.sectiontwo-aboutgallery-img {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.sectiontwo-aboutgallery-img img {
  width: 20rem;
  height: 20rem;
}

@media screen and (max-width: 1024px) {
  .sectiontwo-aboutgallery-text p {
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0.1em;
    word-spacing: 0.2em;
    color: black;
    text-align: justify;
    direction: ltr;
    margin-right: 5%;
    margin-left: 1.5%;
  }
  .sectiontwo-aboutgallery-img {
    width: 50%;
  }
  .sectiontwo-aboutgallery-text {
    width: 50%;
  }
  .sectiontwo-aboutgallery {
    margin: 0 50px 0 50px;
  }
}

@media screen and (max-width: 768px) {
  .sectiontwo-aboutgallery {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    margin: 0 100px 0 100px;
  }
  .sectiontwo-aboutgallery-img {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .sectiontwo-aboutgallery-text {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .sectiontwo-aboutgallery {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    margin: auto 5% auto 5%;
  }
  .sectiontwo-aboutgallery-img {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .sectiontwo-aboutgallery-img img {
    width: 15rem;
    height: 15rem;
  }
  .sectiontwo-aboutgallery-text {
    width: 100%;
  }
}
/* end of sectiontwo-part1 */

/* home page */
a {
  text-decoration: none;
  color: #503d42;
}

.alternating-container {
  margin-top: 50px;
  text-align: center;
  font-weight: 600;
  width: 100%;
  display: flex;
  flex-direction: column;
}

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

.alternating {
  height: 100dvh;
  display: flex;
  flex-direction: row;
}

.alternating-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
}

.left {
  width: 55%;
  position: relative;
  overflow: hidden;
}

.right {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.default-image {
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 100%;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  z-index: 0;
  object-fit: cover;
}

.dynamic-image {
  position: absolute;
  width: 360px;
  height: auto;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease;
  z-index: 1;
  border-radius: 10px;
}

.text-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  border-radius: 20px;
  transition: color 0.3s ease, transform 0.3s ease;
  padding-left: 20px;
  border: 2px solid #f5fbef;
  margin-bottom: 5px;
  background-color: #4c6444;
}

.text-option:hover {
  transition: ease-in-out 150ms;
  background-color: #f1f1f1;
  border: 2px solid #4c6444;
}

.text-option-txt {
  font-size: 26px;
  color: white;
  transition: ease-in-out 150ms;
}

.text-option p {
  font-size: 16px;
  color: white;
  transition: ease-in-out 150ms;
}

.dynamic-image:nth-child(1) {
  top: 10%;
  left: 10%;
  transform: scale(1.1);
  z-index: 2;
}

.dynamic-image:nth-child(2) {
  top: 30%;
  left: 40%;
  transform: scale(1.1);
  z-index: 2;
}

.dynamic-image:nth-child(3) {
  top: 50%;
  left: 20%;
  transform: scale(1.1);
  z-index: 2;
}

.dynamic-image:nth-child(4) {
  top: 60%;
  left: 50%;
  transform: scale(1.1);
  z-index: 2;
}

.text-option:hover .dynamic-image {
  opacity: 1;
  z-index: 3;
}

.text-option:hover ~ .default-image {
  opacity: 0;
}

.text-option:hover .text-option-txt {
  color: #4c6444;
  transform: scale(1.05);
}

.text-option:hover .text-option-desc {
  color: #4c6444;
}

/* RESPONSIVE */
@media (max-width: 1430px) {
  .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .dynamic-image {
    position: relative;
    width: 20vw;
  }
  .dynamic-image:nth-child(1) {
    top: 0;
    left: 0;
    transform: scale(1.1);
    z-index: 2;
  }
  .dynamic-image:nth-child(2) {
    top: 0;
    left: 0;
    transform: scale(1.1);
    z-index: 2;
  }
  .dynamic-image:nth-child(3) {
    top: 0;
    left: 0;
    transform: scale(1.1);
    z-index: 2;
  }
  .dynamic-image:nth-child(4) {
    top: 0;
    left: 0;
    transform: scale(1.1);
    z-index: 2;
  }
}

@media (max-width: 768px) {
  .left {
    display: none;
  }
  .right {
    width: 100dvw;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .text-container {
    text-align: center;
    font-size: 1em;
    padding: 15px;
  }
  .text-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    border-radius: 20px;
    padding: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
  }
}

@media (max-width: 480px) {
  .alternating-container-title {
    font-size: 20px;
  }
  .text-option h2 {
    font-size: 16px;
  }
  .text-option p {
    font-size: 14x;
  }
}

/* end of home page */

/* link smart envi */
.sectiontwo-urban-contoh-container {
  margin-top: 5%;
  margin-bottom: 0%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sectiontwo-urban-contoh-text {
  font-family: "DM Sans", sans-serif;
  text-align: center;
  color: white;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2em;
}

.sectiontwo-urban-contoh-nama {
  text-align: center;
  color: white;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2em;
}

.sectiontwo-urban-contoh-deskripsi {
  text-align: center;
  color: white;
  font-size: 18px;
  font-weight: 480;
  line-height: 1.2em;
}

.sectiontwo-urban-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-slide {
  width: 100%;
  min-width: 100%;
  object-fit: cover;
  height: auto;
}

.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.text-container {
  max-width: 80%;
}

.place-name {
  font-size: 2rem;
  margin-bottom: 10px;
}

.place-description {
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .sectiontwo-urban-contoh-text {
    font-size: x-large;
  }
  .sectiontwo-urban-contoh-nama {
    font-size: large;
  }
  .sectiontwo-urban-contoh-deskripsi {
    font-size: small;
  }
  .sectiontwo-urban-contoh-container {
    margin-top: 10%;
    margin-bottom: 20%;
  }
  @media screen and (max-width: 480px) {
    .sectiontwo-urban-contoh-text {
      font-size: medium;
      padding: 0.5rem;
    }
    .sectiontwo-urban-contoh-nama {
      font-size: small;
    }
    .sectiontwo-urban-contoh-deskripsi {
      font-size: x-small;
    }
  }
}

/* end of smart envi */

/* smart environment */

.sectiontwo-environment-judul {
  display: block;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sectiontwo-environment-judul {
  margin-top: 100px;
  display: block;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sectiontwo-environment-judul h2 {
  text-align: center;
  text-transform: uppercase;
  color: #123b54;
  letter-spacing: 5px;
  font-size: 2rem;
  font-weight: 900;
}

.seciontwo-environment-judul h1 {
  text-align: center;
  color: #154360;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: -150px;
}

.sectiontwo-environment-boxkanan {
  margin-top: 100px;
  display: block;
  width: 100%;
  height: auto;
  margin-left: 60%;
}
.sectiontwo-environment-boxkanan img {
  height: 35vh;
  width: 40vw;
  filter: brightness(0.8);
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.4);
}

.sectiontwo-environment-boxkiri {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -20.1%;
}
.sectiontwo-environment-boxkiri img {
  height: 35vh;
  width: 40vw;
  filter: brightness(0.8);
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.4);
}

/* end of smart environment */
.item-petisi-container {
  margin: 50px 100px 50px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-petisi-title-container {
  width: 100%;
  text-align: left;
  color: #503d42e1;
}

.item-petisi-title-container h2 {
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  color: #503d42dc;
}

/* category */
.category-petisi-container {
  width: 100%;
}

.menu-wrapper {
  position: relative;
  width: 100%;
  height: 100px;
  margin: 1em auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 10px;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu {
  height: 120px;
  box-sizing: border-box;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
  transition: transform 0.5s ease;
  gap: 10px;
  padding: 40px;
}

.menu .item {
  font-size: 16px;
  padding: 5px 10px;
  margin: 3px;
  border: 1px solid #503d42;
  color: #503d42;
  border-radius: 30px;
  font-weight: 500;
}

.arrow {
  position: absolute;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 30px;
  z-index: 1;
  background-color: #84c3188b;
  padding: 10px;
  border-radius: 30px;
}

.left-arrow {
  left: 0px;
}

.right-arrow {
  right: 0px;
}

.hidden {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .menu .item {
    font-size: 12px;
    padding: 3px 8px;
  }
  .arrow {
    font-size: 20px;
    padding: 8px;
  }
}
/* end of category */

.item-petisi-content-container {
  display: flex;
  flex-direction: row;
}

.item-petisi-container-kiri {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
}
.item-petisi-container-kanan {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
}

.profile {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: -1.5%;
}

.profile img {
  width: 20px;
  height: 20px;
  object-fit: cover;
  border-radius: 100px;
  margin-right: 1%;
}

.profile p {
  color: #503d42;
  font-size: 13px;
  font-weight: 500;
}

.lainnya-right-container {
  display: flex;
  flex-direction: column;
  width: 50%;
  margin-left: 10px;
}

.lainnya-right-container h2,
.title-submit-and-sort-up-container .title h2 {
  color: #503d42;
  font-size: 20px;
}

.lainnya-container {
  display: flex;
  flex-direction: column;
}

.lainnya {
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
  width: 100%;
}

.lainnya-left {
  display: flex;
  align-items: center;
  width: 80%;
  height: 100%;
}

.lainnya-left img {
  object-fit: cover;
  width: 100%;
}

.lainnya-right {
  padding: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin-left: 2%;
}

.lainnya-right h3 {
  font-weight: 600;
  font-size: 14px;
  color: #503d42;
}

.lainnya-right h2 {
  margin-top: -2%;
  font-size: 16px;
  width: 90%;
  color: #503d42;
  font-weight: 600;
}

.category {
  display: flex;
  flex-direction: row;
}

.category h3 {
  font-size: 12px;
  padding: 5px 20px 5px 20px;
  margin: 3px;
  background-color: #84c318;
  color: white;
  border-radius: 30px;
  font-weight: 500;
}

.category h4 {
  font-size: 12px;
  padding: 5px 10px 5px 10px;
  margin: 3px;
  border: 1px solid #503d42;
  color: #503d42;
  border-radius: 30px;
  font-weight: 500;
}

.lainnya-right .category {
  margin-top: -2%;
}
/* RESPONSIVE */
@media (max-width: 1024px) {
  .item-petisi-container {
    margin: 50px 20px 0px 20px;
  }
  .item-petisi-content-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .lainnya {
    flex-direction: column;
  }
  .lainnya-left,
  .lainnya-right {
    width: 100%;
  }
  .lainnya-right {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .menu .item {
    font-size: 12px;
    padding: 3px 8px;
  }
  .arrow {
    font-size: 20px;
    padding: 8px;
  }
  .item-petisi-content-container {
    flex-direction: column;
  }
  .item-petisi-container-kiri,
  .item-petisi-container-kanan {
    width: 100%;
  }
  .lainnya {
    flex-direction: column;
  }
  .lainnya-left,
  .lainnya-right {
    width: 100%;
  }
  .lainnya-right {
    margin-left: 0;
  }
}
/* end of lainnya */
/* startof */
.sectiontwo-part3 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: 5%;
}
.sectiontwo-part3 h2 {
  text-align: center;
  text-transform: uppercase;
  color: #123b54;
  letter-spacing: 5px;
  font-size: 2rem;
  font-weight: 900;
}

.seciontwo-part3 h1 {
  text-align: center;
  color: #154360;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: -150px;
}
.scrolling-section {
  width: 100%;
  overflow-x: scroll;
  white-space: nowrap;
}

.scrolling-container {
  display: inline-block;
  width: 100%;
  height: auto;
}

.scrolling-container img {
  width: 550px;
  height: 330px;
  margin: 10px;
}
/* end of sectiontwo-part3 */

/* 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: #74b328;
}

.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 */

/* reponsive */
@media screen and (max-width: 640px) {
  .sectiontwo {
    margin: top 15%;
    margin-left: 1rem;
    margin-right: 5rem;
    display: flex;
  }

  .sectiontwo-text {
    margin-left: 18%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .sectiontwo-text h1 {
    text-align: center;
    direction: ltr;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2em;
    padding: 1rem;
    margin-bottom: -1%;
    color: #123b54;
  }
  .sectiontwo-text hr {
    margin-top: 10px;
    max-width: 90%;
    margin-left: 1%;
    /* margin-left:15% */
  }

  .sectiontwo-text p {
    font-size: 15px;
    line-height: 1.65;
    letter-spacing: 0.1em;
    word-spacing: 0.2em;
    color: black;
    text-align: justify;
    direction: ltr;
    margin-right: 5%;
    margin-left: 1.5%;
  }

  .sectiontwo-home-judul {
    margin-top: 100px;
    display: block;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .sectiontwo-home-judul h2 {
    text-align: center;
    text-transform: uppercase;
    color: #123b54;
    letter-spacing: 5px;
    font-size: 1.5rem;
    font-weight: 900;
  }

  .seciontwo-home-judul h1 {
    text-align: center;
    color: #154360;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: -150px;
  }

  .imageHome {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
  }
  .image-assets img {
    padding: 15px;
    width: 350px;
  }
  .image-assets h1 {
    text-align: center;
    font-size: 29px;
  }
  .sectiontwo-part3 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 5%;
  }
  .sectiontwo-part3 h2 {
    text-align: center;
    text-transform: uppercase;
    color: #123b54;
    letter-spacing: 5px;
    font-size: 1.2rem;
    font-weight: 900;
  }

  .seciontwo-part3 h1 {
    text-align: center;
    color: #154360;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: -150px;
  }
}

@media screen and (max-width: 470px) {
  .sectiontwo {
    margin: top 15%;
    margin-left: 1rem;
    margin-right: 5rem;
    display: flex;
  }

  .sectiontwo-text {
    margin-left: 18%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .sectiontwo-text h1 {
    text-align: center;
    direction: ltr;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2em;
    padding: 1rem;
    margin-bottom: -1%;
    color: #123b54;
  }
  .sectiontwo-text hr {
    margin-top: 10px;
    max-width: 90%;
    margin-left: 1%;
    /* margin-left:15% */
  }

  .sectiontwo-text p {
    font-size: 12px;
    line-height: 1.65;
    letter-spacing: 0.1em;
    word-spacing: 0.2em;
    color: black;
    text-align: justify;
    direction: ltr;
    margin-right: 5%;
    margin-left: 1.5%;
  }

  .sectiontwo-home-judul {
    margin-top: 100px;
    display: block;
    max-width: 370px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .sectiontwo-home-judul h2 {
    text-align: center;
    text-transform: uppercase;
    color: #123b54;
    letter-spacing: 5px;
    font-size: 1.2rem;
    font-weight: 900;
  }

  .seciontwo-home-judul h1 {
    text-align: center;
    color: #154360;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: -150px;
  }

  .imageHome {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
  }
  .image-assets img {
    padding: 15px;
    width: 300px;
  }
  .image-assets h1 {
    text-align: center;
    font-size: 22px;
  }
  .sectiontwo-part3 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 5%;
  }
  .sectiontwo-part3 h2 {
    text-align: center;
    text-transform: uppercase;
    color: #123b54;
    letter-spacing: 5px;
    font-size: 1rem;
    font-weight: 900;
  }

  .sectiontwo-part3 h1 {
    text-align: center;
    color: #154360;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: -50px;
  }
  .scrolling-container img {
    width: 400px;
    height: 280px;
    margin: 10px;
  }
}
@media screen and (max-width: 420px) {
  .sectiontwo {
    margin: top 15%;
    margin-left: 1.9rem;
    margin-right: 4rem;
    display: flex;
  }

  .sectiontwo-text {
    margin-left: 18%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .sectiontwo-text h1 {
    margin-right: 25px;
    text-align: center;
    direction: ltr;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2em;
    padding: 1rem;
    margin-bottom: -1%;
    color: #123b54;
  }
  .sectiontwo-text hr {
    margin-top: 10px;
    max-width: 90%;
    margin-left: 1%;
    /* margin-left:15% */
  }

  .sectiontwo-text p {
    font-size: 12px;
    line-height: 1.65;
    letter-spacing: 0.1em;
    word-spacing: 0.2em;
    color: black;
    text-align: justify;
    direction: ltr;
    margin-right: 5%;
    margin-left: 1.5%;
  }
}
@media screen and (max-width: 400px) {
  .logo img {
    width: 12rem;
  }
  .contactnabout {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .contactnabout div {
    flex-direction: column;
    align-items: center;
    margin: 3% 0;
  }
  .edu,
  .sosmed {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .edu div div,
  .sosmed div div {
    padding: 1.5rem;
  }
  .footerdown {
    padding: 2% 0;
  }
  .footercopyright {
    padding: 1% 0;
  }
  .footercopyright p {
    font-size: 16px;
  }
}
