* {
  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{
	display: flex;
    justify-content: space-evenly;
    gap: 6%;
    margin-left: 9vw;
    margin-right: 7vw;
    margin-top: 14vh;
}

.title h1{
    font-size: clamp(35pt, 9vw, 50pt);
	color: #223F61;
	text-align: left;
    margin-top: 10vh;
}

.title p{
	font-size: 14pt;
	color: black;
	line-height: 32px;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
	margin-top: 12px;
    width: 100%;
    max-width: 550px;
}

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

/* Form Part */
.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: 250%;
    height: 2000px;
    margin:0 -200px 0 -100%;
    background:#F1F1F1;
    border-radius: 50%;
    content:"";
}

.tableform{
	font-size: 13pt;
    margin-top: 10vh;
    margin-left: 35vh;
    margin-right: 35vh;
    padding-top: 27vh;
    padding-bottom: 12vh;
}

.tableform h1{
	font-size: 37pt;
	text-align: center;
    color: #223F61;
    margin-bottom: 15px;
}

.tableform hr{
    width: 100%;
    margin-bottom: 40px;
}

/* Part 1 */
.form1 .row1{
	display: flex;
	gap: 10%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14pt;
}

.input{
	display: flex;
	flex-direction: column;
	margin-bottom: 30px;
	width: 100%;
}

.input input{
	margin-top: 10px;
	padding: 10px;
	border-radius: 10px;
    outline: none;
	border: 1px solid white;
    font-size: 13pt;
}

/* Part 2 */
.form2{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14pt;
}

.row2{
	margin-bottom: 20px;
	line-height: 35px;	
	z-index: -100;
}

input[type='checkbox'] { 
	transform: scale(1.5);
    margin: 0px 15px;
}

.row3 textarea{
    width: 100%;
	max-width: 625pt;
    height: 50pt;
	resize: none;
    padding: 10px;
	border-radius: 10px;
    outline: none;
	border: 1px solid white;
    font-size: 13pt;
}

/* Part 3 */
.row4 input[type="submit"]{
	background: #F1F1F1;
	color: #223F61;
    border-radius: 15px;
    outline: none;
	border: 2px solid #223F61;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13pt;
    padding: 12px;
    padding-left: 50px;
    padding-right: 50px;
    margin-top: 40px;
}

.row4 input[type="submit"]:hover{
	background: #FFCE52;
    border: 2px solid #FFCE52;
}

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

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

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

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

.part1 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: 1050px) {
.title h1{
    margin-top: 8vh;
}

/* Form Part */
.circle:after {
    height: 1500px;
}

.tableform{
    margin-left: 20vh;
    margin-right: 0vh;
    padding-top: 24vh;
}

/* 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{
	display: flex;
    flex-direction: column;
    margin-bottom: 10vh;
}

.img img {
    display: none;
}

.title h1{
    margin-top: 0vh;
}

/* Form Part */
.tableform{
    margin-left: 14vh;
    margin-right: 0vh;
    padding-top: 20vh;
}

.circle:after {
    height: 1500px;
}
}

/* Responsive Untuk HandPhone */
@media screen and (min-width: 150px) and (max-width: 640px) {
/* Content 1 */
.topdesc{
	display: flex;
    flex-direction: column;
    margin-bottom: 10vh;
}

.title p{
	font-size: 13pt;
}

.img img {
    display: none;
}

.title h1{
    margin-top: 7vh;
}


/* Form Part */
.tableform{
    margin-left: 8vh;
    margin-right: 0vh;
}

.tableform h1{
	font-size: 30pt;
}

.circle:after {
    margin:0 -150px 0 -150%;
    width: 350%;
    height: 1800px;
}

/* Part 1 */
.form1 .row1{
	display: flex;
    flex-direction: column;
    font-size: 13pt;
}

.input input{
    font-size: 12pt;
}

/* Part 2 */
.form2{
    font-size: 13pt;
}

/* Part 3 */
.row4 input[type="submit"]{
    font-size: 12pt;
}

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








