:root{
    --max-width: 1200px;
    --josefin: "Josefin Sans", sans-serif;
    --smooch: "Smooch Sans", sans-serif;
    --jetbrains: "JetBrains Mono", monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 }

.container{
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0px 20px;
}

.title{
    font-family: var(--josefin);
    font-size: 2.5rem;
    font-weight: 700;
    justify-content: center;
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.collapse{
    align-items: center;
    justify-content: center;
}

.navbar-logo-1{
    display: none;
}

.navbar-logo-2{
    max-width: 50px;
    margin: 0px;
    padding: 0px;
}

.navbar-toggler{
    width: 20px;
    height: 20px;
    position: relative;
    transition: .5s ease-in-out;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus{
    outline: none;
    box-shadow: none;
    border: 0;
}

.toggler-icon{
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #50AF4D;
    border-radius: 1px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.middle-bar{
    margin-top: 0px;
}

.navbar-toggler .top-bar{
    margin-top: 0px;
    transform: rotate(135deg);
}

.navbar-toggler .middle-bar{
    opacity: 0;
    filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar{
    margin-top: 0px;
    transform: rotate(-135deg);
}

.navbar-toggler.collapsed .top-bar{
    margin-top: -20px;
    transform: rotate(0deg);
}

.navbar-toggler.collapsed .middle-bar{
    opacity: 1;
    filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar{
    margin-top: 20px;
    transform: rotate(0deg);
}

.nav-link{
    color: #fcfcfc;
    position: relative;
}

.nav-link::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    visibility: hidden;
    background-color: #50AF4D;
    transition: 0.3s ease-in-out;
}

.nav-link:hover::before{
    visibility: visible;
    width: 100%;
    transform: translateX(-50%);
}

.navbar-nav{
    gap: 10px;
}

.navbar a{
    color: rgb(145, 145, 145);
    font-family: var(--jacques);
}

.navbar a:hover{
    color: #50AF4D;
}

.container-fluid{
    position: fixed; /* Membuat navbar tetap terlihat saat scroll */
    top: 0; /* Menempel di bagian atas halaman */
    z-index: 1000; /* Memastikan navbar berada di atas elemen lainnya */
    background-color: #e9e7e7; /* Warna latar belakang navbar */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Menambahkan bayangan untuk efek */
}

.hero{
    margin-top: 3rem;
}

.hero img{
    width: 350px;
}

.hero_img{
    max-width: 100%;
    border-radius: 25px;
    box-shadow: 0px 4px 56px 0px rgba(0, 0, 0, 0.54);
}

.hero_row{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    text-align: left;
    align-items: center;
    justify-content: center;
    padding: 20px 0px;
}

.hero_col{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    text-align: left;
    justify-content: left;
    padding: 20px 0px;
}

.hero h2{
    font-family: var(--smooch);
    font-size: 2.5rem;
    font-weight: 700;
    color: #50AF4D;
}

.hero p{
    font-family: var(--josefin);
    max-width: 600px;
    font-weight: 500;
    font-size: 1.2rem;
    color: #003358;
}

.hero img{
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.why{
    margin: 0px;
}

.why_item{
    display: flex;
    max-width: 100%;
    width: 200px;
    height: 300px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.why_col{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}

.why_col:nth-child(2){
    order: 1;
}

.why_item:nth-child(1){
    background: #24994E;
}

.why_item:nth-child(2){
    background: #E1FED3;
}

.why_item2{
    display: flex;
    max-width: 100%;
    width: 200px;
    height: 300px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.why_item2:nth-child(1){
    background: #61BB4D;
}

.why_item2:nth-child(2){
    background: #FFFFFF;
}

.why_block{
    display: flex;
    max-width: 100%;
    width: 400px;
    height: 300px;
    background: #F6F6F6;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.why_logo{
    max-width: 100%;
    height: auto;
}

.why_row{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 56px 0px rgba(0, 0, 0, 0.54);
}

.why_row2{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
    align-items: center;
    justify-content: center;
}


.why_img{
    max-width: 100%;
    width: 516px;
    height: auto;
    order: 0;
}

.why_img2{
    max-width: 100%;
    width: 516px;
    height: auto;
    order: 1;
    display: none;
}

.why h1{
    font-family: var(--smooch);
    font-size: 4rem;
    font-weight: 700;
    max-width: 150px;
    text-align: center;
}

.why h2{
    font-family: var(--josefin);
    font-size: 1.5rem;
    font-weight: 700;
}

.why p{
    font-family: var(--jetbrains);
    max-width: 600px;
    font-weight: 200;
    font-size: 1rem;
    color: #000000;
}

.feature{
    margin: 0px;
    justify-content: center;
}

.feature .title{
    color: #50AF4D;
}

.feature_block{
    display: flex;
    max-width: 100%;
    width: 304px;
    height: 350px;
    background: url(pic/Polygon\ 8.svg) no-repeat center center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature_row{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-bottom: -85px;
}

.feature_row_mid{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 78px;
}

.feature_row_bottom{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-top: -85px;
}

.feature_col{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    
}

.feature h1{
    font-family: var(--smooch);
    font-size: 2.5rem;
    font-weight: 700;
    color: #50AF4D;
}

.feature h2{
    font-family: var(--josefin);
    font-size: 2rem;
    font-weight: 400;
    max-width: 300px;
}

.feature p{
    font-family: var(--jetbrains);
    max-width: 300px;
    font-weight: 200;
    font-size: 1rem;
    color: #000000;
}

.how{
    background: #F7FFF3;
}

.how .title {
    justify-content: left;
    align-items: left;
    text-align: left;
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.how_row{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
    align-items: left;
    justify-content: left;
}

.how_row2{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    text-align: left;
    align-items: left;
    justify-content: left;
}

.how_col{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    text-align: left;
    justify-content: left;
}

.line_col{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 5px;
    text-align: left;
    justify-content: left;
}

.line_row{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    text-align: left;
    align-items: flex-start;
}

.how_img{
    max-width: 100%;
    position: relative;
    bottom: 50px;
    width: 450px;
    box-shadow: 0px 4px 56px 0px rgba(0, 0, 0, 0.54);
    border-radius: 25px;
    height: auto;
}

.how h1{
    font-family: var(--smooch);
    position: relative;
    bottom: 9px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #50AF4D;
}

.how h2{
    font-family: var(--josefin);
    font-size: 1.5rem;
    font-weight: 500;
}

.how p{
    font-family: var(--jetbrains);
    max-width: 290px;
    font-weight: 200;
    font-size: 0.8rem;
    color: #000000;
}

.cta{
    padding: 70px 0px;
    justify-content: center;
    align-items: center;
}

.cta_col{
    display: flex;
    max-width: 100%;
    min-height: 100%;
    height: 300px;
    box-shadow: 0px 4px 56px 0px rgba(0, 0, 0, 0.54);
    flex-direction: column;
    flex-wrap: wrap;
    border-radius: 25px;
    gap: 20px;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.cta h1{
    font-family: var(--smooch);
    font-size: 4rem;
    font-weight: 700;
}

.cta p{
    font-family: var(--josefin);
    font-size: 1.5rem;
    font-weight: 500;
}

.cta-btn{
    text-decoration: none;
    display: flex;
    max-width: 100%;
    height: 50px;
    background: #000000;
    padding: 10px 30px;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #409b44;
    font-family: var(--smooch);
    font-size: 1.5rem;
    transition: 0.3s ease-in-out;
    font-weight: 700;
}

.cta-btn:hover{
    background: #50AF4D;
    color: #FFFFFF;
}

.footer{
    background: #0A2800;
    padding: 50px 0px;
    color: #FFFFFF;
}

.footer_logo{
    max-width: 100%;
    width: 100px;
    height: auto;
}

.footer_row{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    text-align: left;
    align-items: center;
    justify-content: left;
}

.footer_row2{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 300px;
    text-align: left;
    align-items: left;
    justify-content: center;
}

.footer_col1{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    text-align: left;
    justify-content: left;
}

.footer_col2{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 30px;
    text-align: left;
    justify-content: left;
}

.footer_text{
    font-family: var(--jetbrains);
    font-size: 1.5rem;
    font-weight: 200;
    color: #FFFFFF;
}

.footer_text2{
    font-family: var(--jetbrains);
    font-size: 1rem;
    font-weight: 200;
    color: #FFFFFF;
}

.copyright{
    font-family: var(--jetbrains);
    margin-top: 3rem;
    font-size: 1rem;
    font-weight: 200;
    color: #FFFFFF;
    text-align: center;
}

@media (max-width: 1200px) {
    .container{
        max-width: 100%;
        padding: 0px 10px;
    }

    .why_col:nth-child(1){
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
        order: 2;
    }

    .why_img{
        max-width: 100%;
        width: 400px;
        height: auto;
        order: 1;
    }

    .why_row{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    } 

    .how .title{    
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-top: 5rem;
        padding-bottom: 2rem;
    }

    .how_row{
        align-items: center;
        justify-content: center;
    }

    .how_img{
        max-width: 100%;
        width: 400px;
        height: auto;
        position: relative;
        bottom: 0px;
    }

    .footer_row2{
        gap: 100px;
    }
}

@media (max-width: 992px) {
    .container{
        max-width: 100%;
        padding: 0px 10px;
    }

    .navbar-logo-1{
        display: block;
    }

    .navbar-logo-2{
        display: none;
    }

    .navbar-toggler{
        width: 30px;
        height: 30px;
    }

    .hero_row{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .hero_img{
        max-width: 100%;
        width: 400px;
        height: auto;
    }

    .hero_col{
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .feature_row{
        margin-bottom: 0px;
    }

    .feature_row_bottom{
        margin-top: 0px;
        flex-direction: column;
    }

    .feature_row_mid{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .feature_row{
        order: 1;
        gap: 40px;
        margin-bottom: 40px;
        flex-direction: column;
    }

    .feature_row_mid{
        order: 0;
        gap: 40px;
        margin-bottom: 40px;
    }

    .feature_row_bottom{
        gap: 40px;
        margin-bottom: 40px;
    }

    .feature_block:nth-child(1){
        order: 1;
    }

    .feature h1{
        order: 0;
    }

    .footer_row2{
        gap: 40px;
        justify-content: center;
        flex-direction: column;
    }

    .footer_col1{
        justify-content: center;
        align-items: center;
    }

    .footer_row{
        flex-direction: column;
        gap: 20px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .title{
        font-size: 2rem;
    }
    .hero h2{
        font-size: 2rem;
    }
    .hero p{
        font-size: 1rem;
    }
    .why h1{
        font-size: 3rem;
    }
    .why h2{
        font-size: 1.5rem;
    }
    .why p{
        font-size: 0.8rem;
    }
    .feature h1{
        font-size: 2rem;
    }
    .feature h2{
        font-size: 1.5rem;
    }
    .feature p{
        font-size: 0.8rem;
    }
    .how h1{
        font-size: 2rem;
    }
    .how h2{
        font-size: 1.5rem;
    }
    .how p{
        font-size: 0.8rem;
    }
    .cta h1{
        font-size: 3rem;
    }
    .cta p{
        font-size: 1.2rem;
    }
    .cta-btn{
        font-size: 1.2rem;
    }
    .footer_text{
        font-size: 1.2rem;
    }
    .footer_text2{
        font-size: 1rem;
    }

    .navbar-logo-1{
        display: block;
    }

    .navbar-logo-2{
        display: none;
    }

    .navbar-toggler{
        width: 30px;
        height: 30px;
    }

    .why_col{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }

    .why_row{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .why_block{
        max-width: 100%;
        width: 400px;
    }

    .why_img{
        max-width: 100%;
        width: 400px;
        height: auto;
        order: 1;
    }

    .why_col:nth-child(1){
        order: 2;
    }

    .why_col:nth-child(2){
        order: 0;
    }

    .hero_row{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero_col{
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero img{
        max-width: 300px;
    }

    .feature_row{
        margin-bottom: 0px;
    }

    .feature_row_bottom{
        margin-top: 0px;
    }

    .feature_row_mid{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .feature_row{
        order: 1;
        gap: 40px;
        margin-bottom: 40px;
    }

    .feature_row_mid{
        order: 0;
        gap: 40px;
        margin-bottom: 40px;
    }

    .feature_row_bottom{
        gap: 40px;
        margin-bottom: 40px;
    }

    .feature_block:nth-child(1){
        order: 1;
    }

    .feature h1{
        order: 0;
    }

    .how .title{    
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-top: 5rem;
        padding-bottom: 2rem;
    }

    .how_col{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }

    .how_row{
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .how_row2{
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
        order: 1;
    }

    .line_row{
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .line_col{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }

    .how_img{
        max-width: 100%;
        width: 400px;
        height: auto;
        position: relative;
        bottom: 0px;
        order: 0;
    }
}

@media (max-width: 420px) {
    body {
        font-size: 12px; /* Kurangi ukuran font body sebesar 2px lagi */
    }

    h1 {
        font-size: 1.8rem; /* Kurangi ukuran h1 sebesar 4px lagi */
    }

    h2 {
        font-size: 1.6rem; /* Kurangi ukuran h2 sebesar 4px lagi */
    }

    p {
        font-size: 0.8rem; /* Kurangi ukuran paragraf sebesar 4px lagi */
    }

    .title{
        font-size: 1.8rem; /* Kurangi ukuran title sebesar 4px lagi */
    }
    .hero h2{
        font-size: 1.8rem; /* Kurangi ukuran hero h2 sebesar 4px lagi */
    }
    .hero p{
        font-size: 0.8rem; /* Kurangi ukuran hero p sebesar 4px lagi */
    }
    .why h1{
        font-size: 1.8rem; /* Kurangi ukuran why h1 sebesar 4px lagi */
    }
    .why h2{
        font-size: 1.4rem; /* Kurangi ukuran why h2 sebesar 4px lagi */
    }
    .why p{
        font-size: 0.7rem; /* Kurangi ukuran why p sebesar 4px lagi */
    }
    .feature h1{
        font-size: 1.8rem; /* Kurangi ukuran feature h1 sebesar 4px lagi */
    }
    .feature h2{
        font-size: 1.4rem; /* Kurangi ukuran feature h2 sebesar 4px lagi */
    }
    .feature p{
        font-size: 0.7rem; /* Kurangi ukuran feature p sebesar 4px lagi */
    }
    .how h1{
        font-size: 1.8rem; /* Kurangi ukuran how h1 sebesar 4px lagi */
    }
    .how h2{
        font-size: 1.4rem; /* Kurangi ukuran how h2 sebesar 4px lagi */
    }
    .how p{
        font-size: 0.7rem; /* Kurangi ukuran how p sebesar 4px lagi */
    }
    .cta h1{
        font-size: 2.5rem; /* Kurangi ukuran cta h1 sebesar 4px lagi */
    }
    .cta p{
        font-size: 0.8rem; /* Kurangi ukuran cta p sebesar 4px lagi */
    }
    .cta-btn{
        font-size: 1rem; /* Kurangi ukuran cta-btn sebesar 4px lagi */
    }
    .footer_text{
        font-size: 1rem; /* Kurangi ukuran footer_text sebesar 4px lagi */
    }

    .navbar-logo-1{
        display: block;
    }

    .navbar-logo-2{
        display: none;
    }

    .navbar-toggler{
        width: 30px;
        height: 30px;
    }

    .hero_row{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .hero_img{
        max-width: 100%;
        width: 300px;
        height: auto;
    }

    .hero_col{
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .feature_row_mid{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .why_img{
        max-width: 100%;
        width: 200px;
        height: auto;
        display: none;
    }

    .why_item{
        display: flex;
        width: 300px;
    }

    .why_item2{
        display: flex;
        width: 300px;
    }

    .why_block{
        max-width: 100%;
        width: 300px;
    }

    .why_img2{
        max-width: 100%;
        width: 300px;
        height: auto;
        display: block;
        order: 0;
    }

    .why_row2{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .why_block{
        max-width: 100%;
        width: 300px;
    }
}