* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

.container {
  width: 80%;
  margin-inline: auto;
}

/* Navbar Start */
.navbar {
  padding: 30px 0;
}
.navbar-box {
  display: flex;
  justify-content: center;
}

.navbar-box .menu {
  display: flex;
  align-items: center;
  gap: 45px;
}

.navbar-box .menu li {
  list-style: none;
}
.navbar-box .menu li a {
  text-decoration: none;
  color: #00cba9;
}
.navbar-box .menu li a:hover {
  font-weight: 500;
}
/* Navbar End*/

/* Hero Start*/
.hero {
  margin-block: 70px;
  margin-top: 50px;
}

.hero-box {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 70px;
}

.hero-box img {
  width: 300px;
  align-items: center;
}

.hero-box h1 {
  text-align: center;
  font-weight: 500;
  font-size: 60px;
  line-height: 1.3;
}
.hero-box h1 span {
  font-weight: bold;
  color: #00cba9;
}
/* Hero End */

/* Waves Start*/
header svg {
  margin-bottom: -10px;
}
/* Waves End*/

/* Tentang Start */
.tentang {
  background-color: #00cba9;
  padding-block: 50px;
  color: white;
}
.tentang .container > h1 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 40px;
}

.tentang-box .box:nth-child(1) {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 150px;
  align-items: center;
  gap: 50px;
}

.tentang-box .box:nth-child(1) img {
  width: 300px;
  padding: 10px 10px 0 10px;
  background-color: #01d6b3;
  border: 1px solid white;
  border-radius: 10px;
  margin-inline: auto;
}

.tentang-box .box:nth-child(1) p {
  line-height: 2;
  text-align: justify;
  margin-bottom: 30px;
}

.tentang-box .box:nth-child(1) p span {
  font-weight: bold;
}

.tentang-box .box:nth-child(1) a {
  border: 1px solid white;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}
.tentang-box .box:nth-child(1) a:hover {
  color: #00cba9;
  background-color: white;
  font-weight: bold;
}
.tentang-box .tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.tentang-box .tools .tools-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid white;
  padding: 10px;
  border-radius: 5px;
}

.tentang-box .tools .tools-box:hover {
  background-color: white;
  color: #00cba9;
}

.tentang-box .tools .tools-box img {
  width: 50px;
  background-color: white;
  border-radius: 5px;
}
/* Tentang End*/

/* Proyek Start*/
.proyek {
  padding-block: 50px;
}

.proyek-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 50px;
}

.proyek-box .box {
  padding: 20px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.proyek-box .box img {
  width: 100%;
  border-radius: 10px;
}

.proyek-box .proyek-desc {
  margin-top: 20px;
}

.proyek-box .proyek-desc p {
  line-height: 2;
  margin-top: 10px;
  margin-bottom: 20px;
  color: rgba(0, 0, 0, 0.6s);
}

.proyek-box .proyek-desc .proyek-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.proyek-box .proyek-desc .proyek-btn a {
  background-color: #00cba9;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.proyek-box .proyek-desc .proyek-btn a:hover {
  border: 1px solid #00cba9;
  color: #00cba9;
  background-color: white;
}
/* Proyek End*/

/* Kontak Start */
footer {
  background-color: #00cba9;
  margin-top: -10px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}
footer .social {
  display: flex;
  gap: 20px;
}
footer .social a {
  color: white;
  font-size: 40px;
}

footer span {
  font-weight: bold;
}

/* Kontak End */

/* Scroll to Top Start */
.scroll-up {
  position: fixed;
  bottom: -50px;
  right: 40px;
  background-color: #01d6b3;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
}
.scroll-up.scroll-active {
  bottom: 70px;
  opacity: 1;
}
.scroll-up a {
  color: white;
}

.scroll-up:hover {
  background-color: #05ebc4;
}
/* Scroll to Top End */

/* Media Queries */
@media (max-width: 992px) {
  .container {
    width: 90%;
  }
  .tentang-box .box:nth-child(1) {
    grid-template-columns: 1fr;
  }
  .tentang-box .box:nth-child(1) div {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .hero {
    margin-top: 150px;
  }
  .hero-box h1 {
    font-size: 30px;
  }
  .proyek-box {
    grid-template-columns: 1fr;
  }
  footer {
    display: flex;
    flex-direction: column-reverse;
    font-size: 12px;
    gap: 20px;
  }
  .scroll-up {
    right: 20px;
  }
}

@media (max-width: 475px) {
  .hero-box h1 {
    font-size: 25px;
  }
}
/* Media Queries */
