* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", sans-serif;
    list-style: none;
    text-decoration: none;
  }
  
  body {
    background-color: #f5f5f5;
    width: 100%;
  }
  
  .text-color {
    color: #299e63;
  }
  
  /*Header*/
  header {
    height: 75px;
    top: 0;
    right: 0;
    width: 100%;
    align-items: center;
    display: flex;
    padding: 0px 50px 0px 124px;
    background-color: #fff;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.12);
  }
  
  nav {
    display: flex;
    background-color: rgb(255, 255, 255);
    height: 40px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }
  
  nav img {
    width: 75px;
  }
  
  nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 20px;
  }
  
  nav ul li {
    margin: 0px 7px;
  }
  
  nav ul li a {
    color: #757575;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 17px;
    position: relative;
  }
  
  nav ul li a:hover {
    color: #299E63;
  }
  
  
  nav ul li a::before,
  nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 1.5px;
    width: 0;
    background-color: #299E63;
    transition: all 0.5s ease-in-out;
  }
  
  nav ul li a::before {
    left: 50%;
  }
  
  nav ul li a::after {
    right: 50%;
  }
  
  nav ul li a:hover::before,
  nav ul li a:hover::after {
    width: 40%;
    background-color: #299E63;
  }
  
  /*Akhir Header*/
  
  /*Hero Section*/
  .hero-image {
    width: 100%;
    height: 400px;
  }
  
  .hero-image img {
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2))
  }
  
  .hero-description {
    display: flex;
    text-align: left;
    flex-direction: column;
    width: 1192px;
    height: 528px;
    gap: 30px;
    margin: 92px 124px 77px;
  }
  
  .hero .title {
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.022em;
    color: #0A0A0A;
    width: 559px;
    margin-bottom: 20px;
  }
  
  .hero .description {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.006em;
    color: #404040;
  }
  
  /*Akhir Hero Section*/
  
  /*Footer*/
  footer {
    width: 100%;
    height: 120px;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
  }
  
  .footer-nav {
    display: flex;
    margin: 28px 0px 24px 0px;
    align-items: center;
    text-align: center;
  }
  
  footer .logo {
    width: 100px;
    height: 44px;
    left: 0;
    position: absolute;
    margin: 20px 0px 0px 124px;
  }
  
  footer .logo img {
    width: 100px;
    height: 44px;
    position: absolute;
    left: 0;
  }
  
  .footer-nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
  }
  
  .footer-nav ul li {
    margin-right: 24px;
  }
  
  .footer-nav ul li a {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.017em;
    padding: 10px 15px 10px;
    border-radius: 5px;}
  
  .footer-nav ul li a:hover {
    color: #fff;
    background-color: #299E63;
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
    transition: all 900ms cubic-bezier(.23, 1, 0.32, 1);
   }
   
   .footer-nav ul li a:active {
    box-shadow: none;
    transform: translateY(0);
   }
  
  .copyright {
    justify-content: center;
    align-items: center;
    padding: 10px 124px;
    gap: 10px;
    width: 100%;
    height: 40px;
    background: #299e63;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    letter-spacing: -0.006em;
    color: #fafafa;
  }
  
  /*Akhir Footer*/