* {
    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%;
  }
  
  /*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:hover {
    color: #299E63;
  }
  
  nav ul li a::after {
    color: #299E63;
  }
  
  nav ul li a {
    color: #757575;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 17px;
    position: relative;
  }
  
  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%;
  }
  
  /*Main Content*/
  main {
    text-align: center;
  }
  
  main .hero-container {
    width: 100%;
    background-color: #f5f5f5;
    height: 224px;
    margin: 80px 0 80px;
    padding-left: 124px;
    align-items: center;
    position: relative;
  }
  
  main .hero-section {
    width: 650px;
    padding: 0px 0px;
  }
  
  .hero-head {
    font-size: 44px;
    font-weight: 700;
    color: #0a0a0a;
    text-align: left;
  }
  
  .hero-description {
    color: #757575;
    padding-top: 24px;
    font-size: 16px;
    letter-spacing: -0.011em;
    text-align: justify;
  }
  
  .text-color {
    color: #299e63;
  }
  
  main .hero-rectangle {
    width: 50px;
    height: 96px;
    background: #299e63;
    left: 0;
    top: 3px;
    position: absolute;
  }
  
  .picture {
    width: 100%;
    height: 572px;
    justify-content: center;
  }
  
  .picture img {
    width: 100%;
  }
  
  .picture-container {
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 400px;
    position: relative;
  }
  
  .picture .grafik {
    display: flex;
    box-sizing: border-box;
    align-items: center;
    width: 924px;
    height: 144px;
    position: absolute;
    margin-bottom: -90px;
    bottom: 0px;
    left: 50%;
    padding: 24px 200px;
    justify-content: space-between;
    transform: translateX(-50%);
    background-color: #299e63;
  }
  
  .grafik h3,
  .grafik p {
    color: #fff;
    text-align: left;
  }
  
  .grafik h3 {
    font-size: 44px;
    font-weight: 700;
  }
  
  .grafik p {
    font-weight: 500;
    font-size: 14px;
  }
  
  .grafik .persen {
    font-weight: 500;
    font-size: 28px;
  }
  
  .grafik .line {
    width: 1px;
    margin: 52px 48px;
    height: 40px;
    background-color: #c2c2c2;
  }
  
  /*Tentang Kami*/
  
  .tentang-kami {
    box-sizing: border-box;
    justify-content: center;
    width: 100%;
    height: 460px;
    background-color: #f5f5f5;
    margin: 0 auto;
    display: flex;
  }
  
  .picture-tentang-kami img {
    width: 400px;
    margin: 0px 130px 23px -15px;
  }
  
  .tentang-kami-description {
    text-align: left;
    width: 588px;
  }
  
  .description-title {
    font-weight: 700;
    font-size: 36px;
    letter-spacing: -0.022em;
    color: #0a0a0a;
    margin: 0px 101px 40px 0px;
  }
  
  .decsription-text {
    font-weight: 500;
    font-size: 14px;
    color: #404040;
    letter-spacing: -0.006em;
  }
  
  .btn-1 {
    margin: 20px 0px 0px -10px;
    width: 144px;
    height: 24x;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0px;
    border: none;
    position: relative;
    background-color: transparent;
    transition: 0.2s cubic-bezier(0.19, 1, 0.22, 1);
    color: #0a0a0a;
    cursor: pointer;
  }
  
  .btn-1::after {
    content: "";
    border-bottom: 2px solid black;
    width: 0;
    height: 100%;
    position: absolute;
    margin-top: 0px;
    top: 0;
    left: 11px;
    visibility: hidden;
    opacity: 1;
    transition: 0.2s linear;
  }
  
  .btn-1 .icon {
    transform: translateX(0%);
    transition: 0.2s linear;
    animation: attention 1.2s linear infinite;
  }
  
  .btn-1:hover::after {
    visibility: visible;
    opacity: 1;
    width: 90%;
  }
  
  .btn-1:hover {
    letter-spacing: 0.5px;
    opacity: 1;
  }
  
  .btn-1:hover>.icon {
    transform: translateX(30%);
    animation: none;
  }
  
  .arrow {
    font-size: 24px;
    margin-top: 2px;
  }
  
  /*Tujuan Kami*/
  .tujuan-container {
    height: 488px;
    width: 100%;
    margin: 100px auto 80px;
    padding: 0px 124px;
    background-color: #f5f5f5;
    display: flex;
  }
  
  .tujuan-description {
    width: 588px;
    height: 488px;
    display: flex;
    left: 0px;
    margin-right: 104px;
    flex-direction: column;
  }
  
  .tujuan-description-head {
    color: #0a0a0a;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: -0.022em;
    text-align: left;
  }
  
  .tujuan-description-text {
    list-style: none;
    margin-top: 32px;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  
  .tujuan-description-text li {
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    padding-right: 105px;
    flex-direction: row;
  }
  
  .number {
    width: 44px;
    background: #f5f5f5;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    padding: 10px 15px 10px 16px;
    font-size: 16px;
    color: #299e63;
  }
  
  .tujuan-description-text p {
    font-weight: 510;
    font-size: 14px;
    color: #404040;
    margin-left: 24px;
    text-align: left;
  }
  
  .tujuan-container img {
    width: 500px;
    height: 456px;
  }
  
  /*Card Layanan*/
  .layanan {
    height: 560px;
    width: 100%;
    margin: 80px auto 100px;
    background: #fafafa;
    display: flex;
    flex-direction: column;
  }
  
  .layanan .title {
    font-weight: 700;
    font-size: 44px;
    line-height: 52px;
    letter-spacing: -0.022em;
    color: #0a0a0a;
    width: 676px;
    margin: 52px auto 20px 122px;
  }
  
  .layanan .description {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #404040;
    letter-spacing: -0.006em;
    margin: 0px 0px 52px 122px;
    text-align: left;
  }
  
  /*Card-Slider*/
  .card-slider {
    display: flex;
    overflow-x: auto;
    margin-left: 122px;
    text-align: left;
    color: #0a0a0a;
  }
  
  .card-slider::-webkit-scrollbar {
    display: none;
  }
  
  
  .card .card-text {
    margin-right: 6px;
  }
  
  .card-slider .card {
    --background: #fdfdfd;
    --cardShadow: rgba(97, 77, 253, 0.08);
    --cardShadowHover: rgba(32, 33, 37, 0.06);
    --cardShadowActive: rgba(32, 33, 37, 0.55);
    --cardBorder: #dbdce0;
    --cardBorderActive: #009925;
    --textColor: #0a0a0a;
    --linkColor: #0a0a0a;
  }
  
  .card-slider .card {
    width: 286px;
    height: 272px;
    background: var(--background);
    color: var(--textColor);
    border: 1px solid var(--cardBorder);
    padding: 24px;
    box-shadow: 14px 15px 30px var(--cardShadow);
    transition: box-shadow 0.5s, transform 0.5s;
    border-radius: 0px 20px;
    display: inline-block;
    position: relative;
    margin-right: 12px;
  }
  
  .card-slider .card:hover {
    transform: translate(-2px, -4px);
    box-shadow: 16px 16px 0 var(--cardShadowHover);
  }
  
  .card-slider .card:active {
    transform: translate(-2px, -4px);
    border: 2px solid var(--cardBorderActive);
    box-shadow: 4px 4px 0 var(--cardShadowActive);
  }
  
  .card-text>.card-title {
    margin: 20px 0px 12px 0px;
    padding: 0px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.011em;
    text-align: left;
  }
  
  .card-text .card-description {
    width: 222px;
    color: #616161;
    margin-right: 10px;
    text-align: left;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
  }
  
  .card-text>.icon {
    width: 48px;
    height: 48px;
    margin: -10px 0px 15px -10px;
  }
  
  .card>.link {
    margin-bottom: 24px;
    color: var(--linkColor);
    font-size: 0.8em;
    font-weight: 600;
    bottom: 0;
    position: absolute;
  }
  
  .location {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 1192px;
    height: 644px;
    margin: 100px 124px 120px;
  }
  
  .location-description {
    color: #0a0a0a;
    margin: 0px 503px 40px 0px;
  }
  
  .location .maps-title {
    font-weight: 700;
    font-size: 44px;
    line-height: 52px;
    letter-spacing: -0.022em;
    text-align: left;
  }
  
  /*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;
  }