* {
  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{
    background-color: #F1F1F1;
    padding-top: 20vh;
    padding-bottom: 20vh;
}

.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 */
.content1{
    display: flex;
    justify-content: space-evenly;
    margin-left: 13vh;
    margin-right: 13vh;
    margin-top: 18vh;
    gap: 5%;
}

.part1 h2{
    color: #223F61;
    font-size: 37pt;
    margin-bottom: 25px;
}

.part1 hr{
    width: auto;
}

.part1 p{
    font-size: 14pt;
    line-height: 32px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    margin-top: 20px;
    max-width: 700px;
    width: 100%;
}

.part2 img{
    margin-top: 50px;
    max-width: 400px;
    width: 100%;
    height: auto;
}

.part1 a{
    text-decoration: none;
}

.part1 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;
}

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

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

.content2 h2{
    color: #223F61;
    font-size: 37pt;
    margin-top: 10%;
    margin-bottom: 18px;
    text-align: center;
}

.content2 .desc{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.content2 h3{
    width: 100%;
    max-width: 900px;
    margin-top: 50px;
    margin-bottom: 15px;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    color: #223F61;
}

.content2 hr{
  width: 100%;
  max-width: 900px;
}

.content2 p{
    width: 100%;
    max-width: 900px;
    font-size: 14pt;
    line-height: 32px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    margin-top: 15px;
}

.content2 img{
    padding-top: 70px;
    padding-bottom: 60px;
    width: 100%;
    height: auto;
    max-width: 700px;
}

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

.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: 10%;
}

/* 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: 1050px) {
/* Content 2 */
.content1{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-left: 10vh;
  margin-right: 10vh;
}

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

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

@media screen and (max-width: 800px) {
  .topdesc {
    padding-top: 30vh;
    padding-bottom: 18vh;
  }
}

/* Ipad */ @media screen and (min-width: 641px) and (max-width: 850px){
/* Content 2 */
.content1{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-left: 10vh;
  margin-right: 10vh;
  margin-top: 14vh;
}

.part1 button{
  margin-bottom: 15px;
}

.part2 img{
  max-width: 320px;
}

/* Content 3 */
.content2 h2{
  margin-top: 8%;
}

.content2 img{
  max-width: 500px;
}
}

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

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

.part1 h2{
  font-size: 30pt;
}

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

.part1 button{
  font-size: 12pt;
}

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

/* Content 3 */
.content2{
  margin-left: 5vh;
  margin-right: 5vh;
}

.content2 h2{
  font-size: 30pt;
  margin-top: 30%;
}

.content2 h3{
  margin-top: 7%;
  margin-bottom: 10px;
  font-size: 13pt;
  line-height: 30px;
}

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

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

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