/* 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-one, #section-two{
  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: Video */
#section-one div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  width: 100dvw;
}

#section-one div 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);
  z-index: -1;
  font-size: 38px;
  font-weight: 500;
  position: fixed;
  margin-top: -15dvh;
}

#section1 {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}

a.home-link {
  text-decoration: none;
}

#myVideo {
  position: fixed;
  object-fit: cover;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100dvw;
  height: 100dvh;
  z-index: -2;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
  #section-one div h1 {
    font-size: 32px;
  }
}

@media screen and (max-width: 520px) {
  #section-one div h1 {
    font-size: 25px;
  }
}
/* End of Section 1: Video */

/* Section 2: Main Website */
#section-two {
  position: sticky;
  top: 0;
  margin: 0;
  background-color: #fafff4;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.sectiontwo {
  padding-top: 3rem;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  border-radius: 2rem;
}

/* Introduction */
.sectiontwo-introduction-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sectiontwo-introduction-title-container {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5%;
}

.sectiontwo-introduction-title-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
}

.sectiontwo-introduction-title-img img {
  width: 100%;
  height: 100%;
}

.sectiontwo-introduction-content-container {
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.sectiontwo-introduction-content-left,
.sectiontwo-introduction-content-right {
  width: 50%;
}

.sectiontwo-introduction-content-left h2 {
  font-size: 20px;
  color: #4c6444;
  letter-spacing: 4px;
  font-weight: 600;
}

.sectiontwo-introduction-content-left p {
  font-size: 18px;
  text-align: justify;
  color: #503d42;
}

.sectiontwo-introduction-title-text h1 {
  font-size: 24px;
  text-align: center;
  color: #4c6444;
}

.sectiontwo-introduction-content-right {
  display: flex;
  flex-direction: column;
}

.sectiontwo-introduction-content-right-top,
.sectiontwo-introduction-content-right-down {
  display: flex;
  justify-content: right;
  align-items: center;
}

.sectiontwo-introduction-content-right-top img,
.sectiontwo-introduction-content-right-down img {
  width: 75px;
  padding: 5%;
  filter: brightness(0) saturate(100%) invert(35%) sepia(31%) saturate(417%)
    hue-rotate(60deg) brightness(92%) contrast(89%);
}

/* RESPONSIVE */
@media screen and (max-width: 1024px) {
  .sectiontwo-introduction-content-container,
  .sectiontwo-introduction-title-container {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .sectiontwo-introduction-content-left h2 {
    font-size: 16px;
  }

  .sectiontwo-introduction-content-left p {
    font-size: 16px;
    text-align: justify;
  }

  .sectiontwo-introduction-title-text h1 {
    font-size: 20px;
  }
  .sectiontwo-introduction-content-right-top img,
  .sectiontwo-introduction-content-right-down img {
    width: 50px;
  }
}
@media screen and (max-width: 480px) {
  .sectiontwo-introduction-content-right-top img,
  .sectiontwo-introduction-content-right-down img {
    width: 70px;
  }
  .sectiontwo-introduction-content-container {
    flex-direction: column-reverse;
  }
  .sectiontwo-introduction-content-right-top,
  .sectiontwo-introduction-content-right-down {
    justify-content: center;
    align-items: center;
  }
  .sectiontwo-introduction-content-right {
    justify-content: center;
    align-items: center;
  }
  .sectiontwo-introduction-content-left {
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
  }
}
/* End of Introduction */

/* Smart City */
.sectiontwo-smartcity-pengertian {
  display: flex;
  flex-direction: row;
  margin: 150px 0px 0px 0px;
  height: 500px;
}

.sectiontwo-smartcity-pengertian-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  margin-left: 100px;
}

.sectiontwo-smartcity-pengertian-text h2 {
  text-transform: uppercase;
  color: #4c6444;
  letter-spacing: 5px;
  font-size: 16px;
  font-weight: 600;
}

.sectiontwo-smartcity-pengertian-text h1 {
  font-family: "DM Sans", sans-serif;
  color: #af9a71;
  font-size: 28px;
  font-weight: 600;
  margin-top: -1rem;
}

.sectiontwo-smartcity-pengertian-text p {
  font-size: 18px;
  text-align: justify;
  color: #503d42;
  margin-top: 0px;
}

.sectiontwo-smartcity-about-img {
  width: 50%;
  display: flex;
  justify-content: right;
  align-items: center;
  margin-right: 100px;
}

.slides-container {
  width: 450px;
  overflow: hidden;
  position: relative;
}

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

.slides img {
  width: 450px;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
}

/* RESPONSIVE */
@media screen and (max-width: 1024px) {
  .sectiontwo-smartcity-pengertian-text,
  .sectiontwo-smartcity-about-img {
    margin-left: 40px;
    margin-right: 40px;
  }
  .sectiontwo-smartcity-pengertian-text p {
    text-align: justify;
  }
}
@media screen and (max-width: 768px) {
  .sectiontwo-smartcity-pengertian {
    flex-direction: column-reverse;
  }
  .sectiontwo-smartcity-pengertian-text,
  .sectiontwo-smartcity-about-img {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    justify-content: center;
    align-items: center;
  }
  .slides-container {
    width: 300px;
  }
}
@media screen and (max-width: 480px) {
  .sectiontwo-smartcity-pengertian-text h2 {
    font-size: 12px;
    margin-top: 30px;
  }
  .sectiontwo-smartcity-pengertian-text p {
    font-size: 16px;
    text-align: justify;
  }
  .sectiontwo-smartcity-pengertian-text h1 {
    font-size: 28px;
  }
  .slides img {
    width: 300px;
  }
  .sectiontwo-smartcity-pengertian {
    margin-top: 80px;
  }
}
/* End of About Smart City */

/* Sub-theme Box list */
.title2-container {
  width: 100%;
  margin-top: 5%;
  display: flex;
  justify-content: center;
}

.title2-container h1 {
  font-family: "DM Sans", sans-serif;
  font-size: 28px;
  color: #4c6444;
  text-align: center;
  text-transform: capitalize;
}

.box-container-overall {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.box-container-left,
.box-container-right {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.box-container-left div,
.box-container-right div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20vw;
  height: 50vh;
  margin: 20px;
  background-color: white;
  border-radius: 15px;
  -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);
}

.box-container-left div img,
.box-container-right div img {
  width: 80px;
  filter: brightness(0) saturate(100%) invert(63%) sepia(8%) saturate(1387%)
    hue-rotate(1deg) brightness(97%) contrast(90%);
}

.box-container-left div h1,
.box-container-right div h1 {
  font-size: 25px;
  font-weight: 10em;
  color: #af9a71;
  text-align: center;
}

.box-container-left div a,
.box-container-right div a {
  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;
}

.box-container-left div a:hover,
.box-container-right div a:hover {
  transform: scale(1.1);
  color: #4c6444;
  background-color: white;
  border: 2px solid #4c6444;
}

/* RESPONSIVE */
@media screen and (max-width: 1024px) {
  .box-container-overall {
    flex-direction: column;
  }
  .box-container-left div,
  .box-container-right div{
    width: 40vw;
  }
  .box-container-left div h1,
  .box-container-right div h1 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .box-container-left div img,
  .box-container-right div img {
    width: 60px;
  }
  .box-container-left div a,
  .box-container-right div a {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .title2-container h1 {
    font-family: "DM Sans", sans-serif;
    font-size: 22px;
    color: #4c6444;
  }
  .box-container-left,
  .box-container-right {
    flex-direction: column;
  }
  .box-container-left div,
  .box-container-right div{
    width: 80vw;
  }
}
/* End of Sub-theme Box list */

/* Sub-Education */
.sectiontwo-smartenvironment-pengertian,
.sectiontwo-iot-pengertian {
  display: flex;
  flex-direction: row-reverse;
  margin: 150px 100px 0px 100px;
}

.sectiontwo-smartenvironment-pengertian-img {
  width: 50%;
  display: flex;
  justify-content: left;
  align-items: flex-start;
}

.sectiontwo-smartenvironment-pengertian-text,
.sectiontwo-iot-pengertian-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: justify;
}

.sectiontwo-smartenvironment-pengertian-img img,
.sectiontwo-urban-pengertian-img img {
  width: 65%;
  height: auto;
  border-radius: 15px;
  object-fit: contain;
  border: 4px solid #af9a71;
  -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);
}

.sectiontwo-smartenvironment-pengertian-text h2,
.sectiontwo-urban-pengertian-text h2,
.sectiontwo-iot-pengertian-text h2,
.sectiontwo-citizen-pengertian-text h2 {
  text-align: right;
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
  color: #4c6444;
  letter-spacing: 5px;
  font-size: 16px;
  font-weight: 900;
}

.sectiontwo-smartenvironment-pengertian-text h1,
.sectiontwo-urban-pengertian-text h1,
.sectiontwo-iot-pengertian-text h1,
.sectiontwo-citizen-pengertian-text h1 {
  text-align: right;
  color: #af9a71;
  font-size: 28px;
  font-weight: 700;
  margin-top: -1rem;
}

.sectiontwo-smartenvironment-pengertian-text p,
.sectiontwo-iot-pengertian-text p {
  font-size: 18px;
  direction: rtl;
  text-align: justify;
  color: #503d42;
  margin-top: 0px;
}

.button-box2 {
  display: inline-block;
  text-align: end;
}

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

.button-box2 a {
  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;
}

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

.sectiontwo-urban-pengertian {
  display: flex;
  flex-direction: row;
  margin: 150px 100px 0px 100px;
}

.sectiontwo-urban-pengertian-img {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.sectiontwo-urban-pengertian-text,
.sectiontwo-citizen-pengertian-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: justify;
}

.sectiontwo-urban-pengertian-text p,
.sectiontwo-citizen-pengertian-text p {
  font-size: 18px;
  direction: ltr;
  color: #503d42;
  margin-top: 0px;
}

.sectiontwo-citizen-pengertian {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  margin: 150px 100px 0px 100px;
}

.sectiontwo-citizen-pengertian-container {
  width: 25%;
  display: flex;
  justify-content: right;
  align-items: center;
}
.sectiontwo-citizen-pengertian-container-img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  border-radius: 16px;
}
.sectiontwo-citizen-pengertian-container-img p {
  justify-content: center;
  font-weight: 550;
  text-align: center;
  font-size: 25px;
  color: #4c6444;
}
.sectiontwo-citizen-pengertian-container-img img {
  width: 100%;
  filter: brightness(0) saturate(100%) invert(35%) sepia(7%) saturate(2140%)
    hue-rotate(60deg) brightness(89%) contrast(76%);
}

#section2IoT {
  width: 100%;
}
.sectiontwo-iot-pengertian-container {
  width: 50%;
  display: flex;
  flex-direction: row;
}

.sectiontwo-iot-pengertian-container div {
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
  margin-right: 10px;
}

.sectiontwo-iot-pengertian-container div div img {
  padding: 20px;
}

.sectiontwo-iot-pengertian-container div img {
  width: 120px;
  margin-bottom: -30px;
  transition: 0.1s ease-in-out;
  filter: brightness(0) saturate(100%) invert(35%) sepia(7%) saturate(2140%)
    hue-rotate(60deg) brightness(89%) contrast(76%);
}

.sectiontwo-iot-pengertian-container div img:hover {
  transform: scale(1.1);
}

.sectiontwo-iot-pengertian-container div p {
  font-weight: 550;
  text-align: center;
  font-size: 16px;
  color: #4c6444;
}

/* RESPONSIVE */
@media screen and (max-width: 1024px) {
  .sectiontwo-urban-pengertian,
  .sectiontwo-smartenvironment-pengertian,
  .sectiontwo-iot-pengertian,
  .sectiontwo-citizen-pengertian {
    margin: 100px 50px 0px 50px;
  }
}

@media screen and (max-width: 768px) {
  .sectiontwo-urban-pengertian,
  .sectiontwo-smartenvironment-pengertian,
  .sectiontwo-iot-pengertian,
  .sectiontwo-citizen-pengertian {
    flex-direction: column-reverse;
  }
  .sectiontwo-smartenvironment-pengertian-text,
  .sectiontwo-smartenvironment-pengertian-img,
  .sectiontwo-urban-pengertian-text,
  .sectiontwo-urban-pengertian-img,
  .sectiontwo-iot-pengertian-text,
  .sectiontwo-iot-pengertian-container,
  .sectiontwo-citizen-pengertian-text,
  .sectiontwo-citizen-pengertian-container {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .sectiontwo-smartenvironment-pengertian-text p,
  .sectiontwo-iot-pengertian-text p {
    text-align: justify;
    direction: ltr;
  }
}

@media screen and (max-width: 480px) {
  .sectiontwo-urban-pengertian,
  .sectiontwo-smartenvironment-pengertian,
  .sectiontwo-iot-pengertian,
  .sectiontwo-citizen-pengertian {
    margin: 80px 30px 0px 30px;
  }

  .sectiontwo-citizen-pengertian-container-img img {
    width: 150px;
  }
  .sectiontwo-smartenvironment-pengertian-text p,
  .sectiontwo-iot-pengertian-text p,
  .sectiontwo-urban-pengertian-text p,
  .sectiontwo-citizen-pengertian-text p {
    font-size: 16px;
  }
  .sectiontwo-smartenvironment-pengertian-text h2,
  .sectiontwo-urban-pengertian-text h2,
  .sectiontwo-iot-pengertian-text h2,
  .sectiontwo-citizen-pengertian-text h2 {
    font-size: 14px;
    margin-top: 30px;
  }
  .sectiontwo-smartenvironment-pengertian-text h1,
  .sectiontwo-iot-pengertian-text h1,
  .sectiontwo-urban-pengertian-text h1,
  .sectiontwo-citizen-pengertian-text h1 {
    font-size: 22px;
  }
}

/* end of sub-education */

/* Berita */
.sectiontwo-berita-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 150px 0px 150px 0px;
}

.sectiontwo-berita-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sectiontwo-berita-title h1 {
  font-family: "DM Sans", sans-serif;
  font-size: 28px;
  color: #4c6444;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 50px;
}

.sectiontwo-berita-boxcontainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 35px;
}

.sectiontwo-berita-boxcontainer-right,
.sectiontwo-berita-boxcontainer-left {
  gap: 35px;
  display: flex;
  flex-direction: row;
}

.sectiontwo-berita-box {
  width: 20vw;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
  background-color: white;
  -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);
}

.sectiontwo-berita-box img {
  margin: 0;
  width: 100%;
  border-radius: 16px 16px 0 0;
  object-fit: cover;
  aspect-ratio: 3/2;
}

.sectiontwo-berita-box h1 {
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  margin-left: 10px;
  margin-right: 10px;
}

.sectiontwo-berita-box h1:hover {
  text-decoration: underline;
}

.sectiontwo-berita-box p {
  color: #503d42;
  font-size: 14px;
  margin-left: 10px;
  margin-right: 10px;
}

.sectiontwo-berita-box h2 {
  width: 90%;
  color: #503d42;
  font-weight: 400;
  font-size: 12px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
}

.sectiontwo-berita-box-link {
  color: #74b328;
  font-weight: 400;
  font-size: 12px;
}

/* RESPONSIVE */
@media screen and (max-width: 1024px) {
  .sectiontwo-berita-boxcontainer {
    gap: 15px;
    flex-direction: column;
  }
  .sectiontwo-berita-box{
    width: 40vw;
  }
  .sectiontwo-berita-boxcontainer-right,
  .sectiontwo-berita-boxcontainer-left {
    justify-content: center;
    gap: 15px;
  }
}

@media screen and (max-width: 480px) {
  .sectiontwo-berita-title h1 {
    font-size: 18px;
  }

  .sectiontwo-berita-box p {
    font-size: 14px;
    text-align: justify;
  }

  .sectiontwo-berita-boxcontainer-right,
  .sectiontwo-berita-boxcontainer-left {
    align-items: center;
    flex-direction: column;
    gap: 15px;
  }
  .sectiontwo-berita-box{
    width: 80vw;
  }
}
/* End of Berita */

/* footer */
.footer-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: white;
  margin-bottom: 0;
  -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);
}

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