@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "poppins", sans-serif;
  font-weight: 400;

  background-color: #ffffff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  color: #000000;
}
/*=========NAVIGASI BAR=========*/

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: inline;
  z-index: 1000;
}

.hero {
  background-image: url(./img/hero.png);
  background-size: cover;
  background-position: right;
  width: auto;
  height: 759px;
}

.logo img {
  display: flex;
  width: 50px;
}

.navbar {
  position: fixed;
  display: flex;
  text-align: center;
  height: 50px;
  justify-content: space-around;
  align-items: center;
  /* background-color: #f1ece8; */
  /* border-bottom: #ffffff; */
  /* box-shadow: 0 2px 4px 0 rgba(13, 13, 13, 0); */
  position: sticky;
  z-index: 1;
}

.nav-trans {
  background-color: #00000000;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
}

.nav-color {
  /* background-color: #003566; */
  background-color: #082f53;
  /* background-color: #0b65da; */
  box-shadow: rgba(100, 100, 111, 0.38) 0px 7px 29px 0px;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
}

nav ul {
  align-items: center;
  display: flex;
  list-style: none;
  width: 35%;
  justify-content: space-around;
  /* justify-content: end; */
}
nav li a {
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}
nav a:hover {
  font-weight: 500;
  color: #ffffff;
}
nav ul li:active {
  font-weight: bolder;
}

nav ul li::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #ffc300;
  /* background: #ffd00f; */
  display: block;
  margin: auto;
  transition: 0.5s;
}

nav ul li:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  height: 20px;
  justify-content: space-between;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #ffc300;
  border-radius: 3px;
  cursor: pointer;
}

.btn-contact a {
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #001d3d;
}
.btn-contact a:hover {
  font-weight: bold;
  color: #001d3d;
}

button {
  border: none;
  align-content: center;
  background: #ffc300;
  /* background: #ffd00f; */
  color: #001d3d;
  text-align: center;
  border-radius: 5px;
  height: 40px;
  width: 120px;
  font-weight: bold;
  transition: 0.4s;
}

button:hover {
  transform: scale(1.1);
  cursor: pointer;
  font-weight: bolder;
}

/* =======MAIN======== */
main {
  width: auto;
}
.home {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  width: auto;
  margin: auto;
}
.content-home {
  background-size: cover;
  background-position: top;
  background-position: right;
  width: auto;
  height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 100px;
  /* align-items: center; */
}
.content-home img {
  margin: 10px 0 20px 0;
  width: 200px;
}
h2.jasa {
  font-weight: 600;
  line-height: 30px;
  align-items: center;
  color: #ffffff;
  padding-top: 10px;
}
h2.door {
  font-weight: 600;
  line-height: 30px;
  align-items: center;
  color: #ffffff;
  padding-bottom: 30px;
}
.content-home h1 {
  font-size: 70px;
  /* line-height: 100%; */
  align-items: center;
  color: #ffffff;
}

/* ====ABOUT US===== */

.aboutus {
  display: flex;
  flex-direction: column;
  width: auto;
  height: auto;
  background-size: cover;
  background-color: #ffc300;
}

.aboutus h1 {
  font-size: 30px;
  margin: 50px 0 0 0;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #001d3d;
  text-shadow: 2px 1px 5px rgba(0, 0, 0, 0.4);
}

.content-about {
  margin: 20px 0 50px 0;
  width: auto;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.fig-about {
  margin-right: 10px;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.about-row1 {
  display: flex;
  width: 40%;
}
.about-row2 {
  width: 50%;
  display: flex;
}

.about-row2 p {
  margin-left: 15px;
  text-align: justify;
  line-height: 30px;
}
/* ====PROFILE=== */

.profile {
  display: flex;
  flex-direction: column;
  width: auto;
  margin: auto;
  height: 500px;
  /* justify-content: center; */
  /* background-color: #ffc300; */
  background-color: #ffffff;
}
.content-profile {
  margin: 20px 0 50px 0;
  width: auto;
  height: 300px;
  display: flex;
  /* flex-direction: row; */
  justify-content: center;
  align-items: center;
  /* justify-content: center; */
}

.profile h1 {
  font-size: 30px;
  align-items: center;
  text-align: center;
  margin: 50px 0 0 0;
  /* background-color: rgb(255, 255, 255); */
  padding: 5px 15px;
  color: #001d3d;
  /* color: #001d3d; */
  /* color: #ffffff; */
  text-shadow: 2px 1px 5px rgba(0, 0, 0, 0.4);
}

.profile-row1 {
  margin: 20px 0;
  display: flex;
  /* width: 50%; */
  justify-content: center;
}
.profile-row2 {
  /* margin: 20px 0; */

  display: flex;
  flex-direction: column;
  justify-content: center;
  /* width: 70%; */
}

.profile-row1 img {
  margin-right: 20px;
  justify-content: center;
  width: 375px;
}

.profile-row2 table {
  /* margin-left: 20px; */
  font-size: 18px;
  line-height: 30px;
  word-wrap: break-word;
  table-layout: fixed;
  vertical-align: top;
}

td {
  word-wrap: break-word;
}
/* =====SERVICE==== */
.service {
  display: flex;
  flex-direction: column;
  width: auto;
  max-height: 100%;
  margin: auto;
  background-image: url("./img/service.png");

  background-size: cover;
  background-position: right;
  width: auto;
}

.service h1 {
  font-size: 30px;
  align-items: center;
  text-align: center;
  margin: 20px 0 0 0;
  /* background-color: rgb(255, 255, 255); */
  padding: 5px 15px 0 15px;
  color: white;
  text-shadow: 3px 4px 10px rgba(42, 45, 54, 0.68);
}

.content-service {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0px 10px 10px;
  /* height: 580px; */
  margin: 30px 0 150px 0;
  /* background-color: #ffffff; */
}

/* ===SERVICE===== */
.container {
  /* align-items: center; */
  max-width: 400px;
  top: 50%;
  left: 50%;
  width: 100%;
  background-color: white;
  padding: 25px 30px;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.container .title {
  font-size: 25px;
  font-weight: 500;
  position: relative;
}
.container .title::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 30px;
}

.container form .user-details,
.container form .container-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

form .user-details,
form .container-details {
  display: flex;
  /* margin: 20px 0 12px 0; */
  width: 500px;
  width: calc(100% / 2 - 20px);
}

.user-details .input-box input,
.container-details .input-box input {
  display: flex;
  height: 35px;
  width: 340px;
  /* width: 100%; */
  margin-bottom: 5px;
  outline: none;
  border-radius: 5px;
  border: 1px solid #001d3d;
  padding-left: 15px;
  font-size: 16px;
  justify-content: center;
  align-items: center;
}

form .btn-masuk {
  height: 45px;
  margin-bottom: 45px;
}
form .btn-cari {
  height: 45px;
  margin-bottom: 5px;
}
form .btn-masuk input,
form .btn-cari input {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 5px;
  color: #001d3d;
  background: #ffc300;
  /* background: linear-gradient(135deg, #2e6da9, #001d3d); */
}
form .btn-masuk input:hover,
form .btn-cari input:hover {
  color: #ffffff;
  /* background: linear-gradient(135deg, #001d3d, #2e6da9); */

  background: #001d3d;
}

/* ====FOOTER==== */
footer {
  padding: 15px;
  color: #001d3d;
  background-color: white;
  text-align: center;
  font-weight: bold;
}

/* ====RESPONSIVE===== */
/* monitor */
@media all and (min-width: 1500px) {
  .fig-about {
    margin: auto;
  }
}
/* Tablet */

@media all and (max-width: 820px) {
  nav ul {
    width: 50%;
  }
  .home {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    width: auto;
    margin: auto;
  }
  .content-home {
    margin: 0 60px;
  }
  .content-home h2 {
    font-size: 20px;
  }
  .content-home h1 {
    font-size: 50px;
  }
  .content-home p {
    width: 70%;
  }
  .content-about {
    flex-direction: column;
  }

  .fig-about {
    margin: 0;
    width: 100%;
    max-width: 600px;
  }

  .about-row1 {
    display: flex;
    width: 65%;
  }
  .about-row2 {
    margin: 20px 0 0 0;
    width: 80%;
    display: flex;
  }

  .about-row2 p {
    margin-top: 10px;
    text-align: justify;
  }

  .profile {
    display: flex;
    flex-direction: column;
    width: auto;
    margin: auto;
    height: auto;
    background-color: #ffffff;
  }
  .content-profile {
    margin: 0 0 30px 0;
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .profile-row1 img {
    margin-right: 20px;
    justify-content: center;
    width: 300px;
    margin: 20px;
  }
  .profile-row2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* ====MOBILE PHONE==== */
@media all and (max-width: 576px) {
  .menu-toggle {
    display: flex;
    z-index: 1;
    top: 15px;
  }

  .active {
    display: block;
  }
  .navbar {
    justify-content: space-between;
    padding: 0 30px;
  }

  nav ul {
    display: none;
    margin: 50px 0;
    background-color: #082f53;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    height: 206px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  }

  nav ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    border-top: 1px solid #ffffff;
  }

  nav a:active,
  nav a:hover {
    font-weight: 600;
    color: #ffc300;
  }
  .home {
    height: 100%;
  }
  .content-home {
    margin: 0 30px;
  }

  .content-home h1 {
    font-size: 38px;
  }
  .content-home p {
    font-size: 16px;
    width: 80%;
  }

  .content-about {
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-content: center;
  }

  .about-row1 {
    width: 80%;
  }

  .about-row2 {
    margin: 30px 0 30px 0;
    width: 85%;
    height: auto;
    display: flex;
  }
  .about-row2 p {
    margin: auto;
  }

  .fig-about {
    margin: auto;
    margin-top: 10px;
    /* width: 100%; */
    justify-content: center;
    align-items: center;
  }
  .profile {
    flex-direction: column;
  }
  .content-profile {
    margin: 0 0 30px 0;
    height: auto;
    flex-direction: column;
  }

  .profile-row1 {
    margin: 0 0 10px 0;
  }
  .profile-row1 img {
    margin-right: 20px;
    justify-content: center;
    width: 250px;
    margin: 20px;
  }
  .profile-row2 table {
    margin: auto;
    top: 50%;
    left: 50%;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    /* margin: 0 15px; */
    width: 85%;
    font-size: 16px;
  }
  .content-service {
    padding: 0 10px;
  }
  .user-details .input-box input,
  .container-details .input-box input {
    display: flex;
    height: 35px;
    width: 226%;
    margin-bottom: 5px;
    outline: none;
    border-radius: 5px;
    border: 1px solid #001d3d;
    padding-left: 15px;
    font-size: 16px;
    justify-content: center;
    align-items: center;
  }
}
