* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* Navigator Bar*/
nav {
  background-color: white;
  color: #223f61;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  margin-left: 10px;
  margin-right: 10px;
  font-family: Arial, Helvetica, sans-serif;
  z-index: 100;
  padding-top: 10px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 17px;
}

.nav-links li {
  margin-right: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #223f61;
  transition: color 0.3s;
  font-size: 16px;
}

.nav-links li a:hover {
  color: #42c5f3;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #223f61;
  margin: 5px;
}

@media screen and (max-width: 800px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .burger {
    display: block;
  }
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 17px;
  border: none;
  outline: none;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  color: #223f61;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 150px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
  z-index: 1;
  margin-top: -11px;
  margin-left: -140px;
}

.dropdown-content a {
  float: none;
  color: #223f61;
  padding: 8px 10px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover,
.dropdown:hover .dropbtn {
  color: #42c5f3;
}

.dropdown-content a:hover {
  color: #42c5f3;
}

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

/* Contact Us Button */
.form button {
  background-color: #f1f1f1;
  cursor: pointer;
  font-size: 16px;
  color: #223f61;
  border-radius: 10px;
  border: 1px solid #f1f1f1;
  padding: 5px 15px;
  outline: none;
  transition: 0.7s;
  margin-top: -8px;
}

.form button:hover {
  color: #f1f1f1;
  border: 1px solid #223f61;
  background: #223f61;
}

/* Underline Rectangle */
.column {
  float: left;
  width: 25%;
  height: 7.5px;
  box-shadow: 0px 1px 4px 0px grey;
}

/* Content 1 */
.topdesc {
  padding-top: 22vh;
  padding-bottom: 22vh;
}

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

.title h1 {
  text-align: center;
  font-size: clamp(35pt, 9vw, 50pt);
  color: #223f61;
}

/* Content 2 */
.rectangle {
  width: 100%;
  height: 100%;
  max-height: fit-content;
  overflow: hidden;
}

.circle {
  position: relative;
}

.circle:after {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0%;
  width: 300%;
  height: 2000px;
  margin: 0 -292px 0 -100%;
  background: #f1f1f1;
  border-radius: 50%;
  content: "";
}

.desc1 {
  display: flex;
  justify-content: space-evenly;
  margin-left: 15vh;
  margin-right: 10vh;
  gap: 5%;
}

.part1 h2 {
  color: #223f61;
  font-size: 37pt;
  margin-bottom: 25px;
  margin-top: 20vh;
}

.part1 p {
  max-width: 750px;
  width: 100%;
  font-size: 14pt;
  line-height: 32px;
  font-family: Arial, Helvetica, sans-serif;
}

.part2 img {
  margin-top: 29vh;
  height: auto;
  max-width: 600px;
  width: 100%;
}

.button a {
  text-decoration: none;
}

.button button {
  background-color: #223f61;
  cursor: pointer;
  font-size: 14pt;
  color: white;
  border-radius: 10px;
  border: 1px solid #223f61;
  padding: 8px 50px;
  transition: 0.7s;
  margin-top: 30px;
  margin-bottom: 15vh;
}

.button button:hover {
  color: #223f61;
  border: 1px solid white;
  background: white;
}

/* Reminder */
.desc2 {
  padding-top: 10vh;
  padding-bottom: 10vh;
  background-color: #223f61;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.desc2 h1 {
  font-size: 60pt;
  color: white;
  margin-left: 10vh;
  margin-right: 10vh;
  text-align: center;
}

.desc2 img {
  height: auto;
  max-width: 1280px;
  width: 100%;
  position: absolute;
}

/* Content 3 */
.desc3 {
  margin-top: 15vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-left: 10vh;
  margin-right: 10vh;
}

.desc3 h2 {
  color: #223f61;
  font-size: 37pt;
  text-align: center;
}

.contentimage {
  display: flex;
  justify-content: space-between;
  gap: 5vw;
}

.group {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.group img {
  max-width: 130px;
  width: 100%;
  height: auto;
  margin-top: 7vh;
}

.group p {
  font-size: 14pt;
  line-height: 32px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: justify;
  max-width: 450px;
  margin-top: 4vh;
}

/* Content 4 */
.desc4 {
  margin-top: 17vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-left: 7vh;
  margin-right: 7vh;
}

.desc4 h2 {
  color: #223f61;
  font-size: 37pt;
  text-align: center;
}

.desc4 p {
  font-size: 14pt;
  line-height: 32px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: left;
}

.shape1 {
  display: flex;
  justify-content: space-evenly;
  margin-top: 3%;
}

.box1 img {
  height: 300px;
  width: 490px;
}

.box2 img {
  height: 300px;
  width: 380px;
}

.box3 img {
  height: 300px;
  width: 490px;
}

.shape1 .box1 p {
  width: 347px;
  margin-left: 21%;
  margin-top: -55%;
}

.shape1 .box2 p {
  width: 245px;
  margin-left: 24%;
  margin-top: -71%;
}

.shape1 .box3 p {
  width: 370px;
  margin-left: 20%;
  margin-top: -54%;
}

.shape2 {
  display: flex;
  justify-content: space-evenly;
  margin-top: 2%;
}

.box4 img {
  height: 310px;
  width: 650px;
}

.box5 img {
  height: 310px;
  width: 570px;
}

.shape2 .box4 p {
  width: 540px;
  margin-top: -42%;
  margin-left: 7.5%;
}

.shape2 .box5 p {
  width: 450px;
  margin-top: -47.5%;
  margin-left: 8%;
}

/* Before Footer */
.fifthdesc {
  margin-top: 20vh;
  background-color: #f1f1f1;
  width: 100%;
  padding-top: 9vh;
  padding-bottom: 9vh;
  border-radius: 50px 10px;
}

.five img {
  position: absolute;
  margin-left: 7vw;
  margin-top: -15px;
  max-height: 80px;
  height: 100%;
  width: auto;
}

.five2 {
  display: flex;
  justify-content: space-between;
  margin-right: 10vw;
  margin-left: 10vw;
}

.five2 h1 {
  font-size: 35pt;
  color: #223f61;
  z-index: 100;
}

.coa a {
  text-decoration: none;
}

.coa button {
  background-color: #42c5f3;
  cursor: pointer;
  font-size: 14pt;
  color: white;
  border-radius: 10px;
  border: 1px solid #42c5f3;
  padding: 8px 50px;
  transition: 0.7s;
  margin-top: 10px;
}

.coa button:hover {
  color: #223f61;
  border: 1px solid white;
  background: white;
}

/* Footer */
/* All Footer */
.topfooter1 {
  background-color: #223f61;
  padding-top: 150px;
  width: 100%;
}

.topfooter2 {
  display: flex;
  justify-content: space-evenly;
  color: white;
  margin-left: 10px;
  margin-right: 10px;
}

/* Footer Image*/
.footerbigpic img {
  width: 100%;
  height: auto;
  max-width: 1900px;
}

/* Footer Email*/
.footer1 h1 {
  font-size: 30pt;
  line-height: 50px;
}

form {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid white;
  margin-bottom: 30px;
  margin-top: 80px;
}

form .far {
  font-size: 21px;
  margin-right: 10px;
}

form input {
  width: 100%;
  background: transparent;
  color: white;
  border: 0;
  outline: none;
  font-size: 11pt;
}

form button {
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
  font-size: 18px;
}

/* Footer Lainnya*/
.footer1 .part2 {
  margin-left: 120px;
}

.footer1 h2 {
  margin-bottom: 10px;
  margin-top: 10px;
  font-size: 17pt;
}

.footer1 p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12pt;
}

.footer1 a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12pt;
  text-decoration: none;
  color: white;
}

.social {
  margin-top: 12px;
}

.part2 ul li {
  list-style: none;
  display: flex;
  display: inline-block;
  padding-right: 10px;
}

.part2 ul li a {
  text-decoration: none;
  font-size: 17pt;
  cursor: pointer;
  position: relative;
}

/* Footer Top Garis */
.garis2 {
  width: 110px;
  height: 5px;
  background: #767676;
  border-radius: 2px;
  position: absolute;
  overflow: hidden;
}

.garis2 span {
  width: 30px;
  height: 5px;
  background: #ffce52;
  border-radius: 3px;
  position: absolute;
  animation: moving 2s linear infinite;
}

@keyframes moving {
  0% {
    left: -20px;
  }
  100% {
    left: 100%;
  }
}

.garis3 {
  width: 160px;
  height: 5px;
  background: #767676;
  border-radius: 2px;
  position: absolute;
  overflow: hidden;
}

.garis3 span {
  width: 30px;
  height: 5px;
  background: #9edb5d;
  border-radius: 3px;
  position: absolute;
  animation: moving 2s linear infinite;
}

@keyframes moving {
  0% {
    left: -20px;
  }
  100% {
    left: 100%;
  }
}

.garis4 {
  width: 90px;
  height: 5px;
  background: #767676;
  border-radius: 2px;
  position: absolute;
  overflow: hidden;
}

.garis4 span {
  width: 30px;
  height: 5px;
  background: #f64959;
  border-radius: 3px;
  position: absolute;
  animation: moving 2s linear infinite;
}

@keyframes moving {
  0% {
    left: -20px;
  }
  100% {
    left: 100%;
  }
}

.footerbigpic img {
  margin-top: 140px;
}

/* Bottom Footer */
.footerunderline .column {
  float: left;
  width: 25%;
  height: 7.5px;
  margin-bottom: 20px;
}

.footertext p {
  text-align: center;
  font-size: 10pt;
  color: #234149;
  background-color: white;
  padding: 6px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Responsiveness*/
/* Lebih Besar Dari IPAD*/
@media screen and (max-width: 1200px) {
  /* Content 4 */
  .desc4 {
    margin-left: 5vh;
    margin-right: 5vh;
  }
  .desc4 h2 {
    margin-left: 5vh;
    margin-right: 5vh;
  }
  .shape1 {
    display: flex;
    flex-direction: column;
  }

  .box1 img {
    display: none;
  }

  .box2 img {
    display: none;
  }

  .box3 img {
    display: none;
  }

  .shape1 .box1 p {
    max-width: 750px;
    width: 100%;
    margin-top: 5%;
    margin-left: 0%;
    background-color: white;
    box-shadow: 0px -2px 12px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 18px;
  }

  .shape1 .box2 p {
    max-width: 750px;
    width: 100%;
    margin-top: 5%;
    margin-left: 0%;
    background-color: white;
    box-shadow: 0px -2px 12px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 18px;
  }

  .shape1 .box3 p {
    max-width: 750px;
    width: 100%;
    margin-top: 5%;
    margin-left: 0%;
    background-color: white;
    box-shadow: 0px -2px 12px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 18px;
  }

  .shape2 {
    display: flex;
    flex-direction: column;
  }

  .box4 img {
    display: none;
  }

  .box5 img {
    display: none;
  }

  .shape2 .box4 p {
    max-width: 750px;
    width: 100%;
    margin-top: 5%;
    margin-left: 0%;
    background-color: white;
    box-shadow: 0px -2px 12px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 18px;
  }

  .shape2 .box5 p {
    max-width: 750px;
    width: 100%;
    margin-top: 5%;
    margin-left: 0%;
    background-color: white;
    box-shadow: 0px -2px 12px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 18px;
  }
}

@media screen and (max-width: 1050px) {
  /* Before Footer */
  .fifthdesc {
    width: 100%;
    padding-top: 5vh;
    padding-bottom: 5vh;
  }

  /* All Footer */
  .topfooter1 {
    background-color: #223f61;
    width: 100%;
    padding-top: 20%;
  }

  .topfooter2 {
    display: flex;
    flex-direction: column;
    margin-left: 10%;
    margin-right: 10%;
  }

  /* Footer Email*/
  form {
    max-width: 80%;
  }

  /* Footer Lainnya*/
  .footer1 .part2 {
    margin-left: 0px;
    margin-bottom: 11%;
    margin-top: 7%;
  }

  .footer1 .part3 {
    margin-bottom: 11%;
  }
}

/* Ipad */
@media screen and (min-width: 641px) and (max-width: 850px) {
  /* Content 1 */
  .topdesc {
    padding-top: 20vh;
    padding-bottom: 20vh;
  }

  /* Content 2 */
  .desc1 {
    display: flex;
    flex-direction: column;
    margin-left: 10vh;
    margin-right: 10vh;
  }

  .part1 h2 {
    margin-top: 15vh;
  }

  .part2 img {
    max-width: 500px;
    margin-left: 5vw;
    margin-top: -50px;
    margin-bottom: 30px;
  }

  /* Reminder */
  .desc2 h1 {
    margin-left: 5vh;
    margin-right: 5vh;
  }

  /* Content 3 */
  .desc3 {
    margin-top: 12vh;
    margin-left: 5vh;
    margin-right: 5vh;
  }

  .contentimage {
    display: flex;
    flex-direction: column;
  }

  .group p {
    max-width: 550px;
    text-align: center;
  }

  /* Content 4 */
  .desc4 {
    margin-top: 14vh;
    margin-left: 5vh;
    margin-right: 5vh;
  }
  .desc4 h2 {
    margin-left: 5vh;
    margin-right: 5vh;
  }
  .shape1 {
    display: flex;
    flex-direction: column;
  }

  .box1 img {
    display: none;
  }

  .box2 img {
    display: none;
  }

  .box3 img {
    display: none;
  }

  .shape1 .box1 p {
    max-width: 600px;
    width: 100%;
    margin-top: 5%;
    margin-left: 0%;
    background-color: white;
    box-shadow: 0px -2px 12px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 18px;
  }

  .shape1 .box2 p {
    max-width: 600px;
    width: 100%;
    margin-top: 5%;
    margin-left: 0%;
    background-color: white;
    box-shadow: 0px -2px 12px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 18px;
  }

  .shape1 .box3 p {
    max-width: 600px;
    width: 100%;
    margin-top: 5%;
    margin-left: 0%;
    background-color: white;
    box-shadow: 0px -2px 12px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 18px;
  }

  .shape2 {
    display: flex;
    flex-direction: column;
  }

  .box4 img {
    display: none;
  }

  .box5 img {
    display: none;
  }

  .shape2 .box4 p {
    max-width: 600px;
    width: 100%;
    margin-top: 5%;
    margin-left: 0%;
    background-color: white;
    box-shadow: 0px -2px 12px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 18px;
  }

  .shape2 .box5 p {
    max-width: 600px;
    width: 100%;
    margin-top: 5%;
    margin-left: 0%;
    background-color: white;
    box-shadow: 0px -2px 12px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 18px;
  }

  /* Before Footer */
  .five2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 5vw;
    margin-left: 5vw;
  }

  .fifthdesc {
    margin-top: 8vh;
  }

  .five2 h1 {
    text-align: center;
  }
}

/* Responsive Untuk HandPhone */
@media screen and (min-width: 150px) and (max-width: 640px) {
  /* Content 1 */
  .topdesc {
    padding-top: 28vh;
    padding-bottom: 14vh;
  }

  /* Content 2 */
  .circle:after {
    height: 1250px;
  }

  .desc1 {
    display: flex;
    flex-direction: column;
    margin-left: 5vh;
    margin-right: 5vh;
  }

  .part1 h2 {
    font-size: 30pt;
    margin-top: 15vh;
  }

  .part1 p {
    font-size: 13pt;
    line-height: 30px;
  }

  .button button {
    font-size: 11pt;
    margin-bottom: 10vh;
  }

  .part2 img {
    max-width: 330px;
    width: 100%;
    height: auto;
    margin-top: 0;
    margin-bottom: 10px;
    margin-left: 2vh;
  }

  /* Reminder */
  .desc2 h1 {
    font-size: 32pt;
    margin-left: 0vh;
    margin-right: 0vh;
  }

  /* Content 3 */
  .desc3 {
    margin-top: 10vh;
    margin-left: 5vh;
    margin-right: 5vh;
  }

  .contentimage {
    display: flex;
    flex-direction: column;
  }

  .desc3 h2 {
    font-size: 30pt;
    margin-left: 2vh;
    margin-right: 2vh;
  }

  .group img {
    max-width: 100px;
    width: 100%;
    height: auto;
  }

  .group p {
    font-size: 13pt;
    line-height: 30px;
    text-align: center;
  }

  /* Content 4 */
  .desc4 {
    margin-left: 3vh;
    margin-right: 3vh;
  }

  .desc4 h2 {
    font-size: 30pt;
    margin-left: 2vh;
    margin-right: 2vh;
  }

  .desc4 p {
    font-size: 13pt;
    line-height: 30px;
  }

  .shape1 {
    display: flex;
    flex-direction: column;
  }

  .box1 img {
    display: none;
  }

  .box2 img {
    display: none;
  }

  .box3 img {
    display: none;
  }

  .shape1 .box1 p {
    max-width: 300px;
    width: 100%;
    margin-top: 5%;
    margin-left: 0%;
    background-color: white;
    box-shadow: 0px -2px 12px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 18px;
  }

  .shape1 .box2 p {
    max-width: 300px;
    width: 100%;
    margin-top: 5%;
    margin-left: 0%;
    background-color: white;
    box-shadow: 0px -2px 12px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 18px;
  }

  .shape1 .box3 p {
    max-width: 300px;
    width: 100%;
    margin-top: 5%;
    margin-left: 0%;
    background-color: white;
    box-shadow: 0px -2px 12px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 18px;
  }

  .shape2 {
    display: flex;
    flex-direction: column;
  }

  .box4 img {
    display: none;
  }

  .box5 img {
    display: none;
  }

  .shape2 .box4 p {
    max-width: 300px;
    width: 100%;
    margin-top: 5%;
    margin-left: 0%;
    background-color: white;
    box-shadow: 0px -2px 12px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 18px;
  }

  .shape2 .box5 p {
    max-width: 300px;
    width: 100%;
    margin-top: 5%;
    margin-left: 0%;
    background-color: white;
    box-shadow: 0px -2px 12px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 18px;
  }

  /* Footer Email*/
  .footer1 h1 {
    font-size: 21pt;
    line-height: 40px;
  }

  /* Bottom Footer */
  .footerunderline .column {
    height: 4px;
    margin-bottom: 16px;
  }

  .footertext p {
    font-size: 7pt;
    padding: 4px;
  }

  .footer1 h2 {
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: 17pt;
  }

  .footer1 p {
    font-size: 11pt;
  }

  .footer1 a {
    font-size: 11pt;
  }

  /* Underline Rectangle */
  .column {
    height: 4px;
  }

  /* Before Footer */
  .fifthdesc {
    margin-top: 12vh;
    background-color: #f1f1f1;
    width: 100%;
    padding-top: 6vh;
    padding-bottom: 6vh;
  }

  .five2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 5vw;
    margin-left: 5vw;
  }

  .five img {
    max-height: 60px;
    height: 100%;
    width: auto;
  }

  .five2 h1 {
    font-size: 23pt;
    text-align: center;
  }

  .coa button {
    font-size: 11pt;
  }
}
