    @font-face {
      font-family: 'ProximaNova';
      src: url('../font/ProximaNova-Light.otf') format('opentype');
      font-weight: 300;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'ProximaNova';
      src: url('../font/ProximaNova-Regular.ttf') format('opentype');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'ProximaNova';
      src: url('../font/ProximaNova-SemiBold.otf') format('opentype');
      font-weight: 600;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'ProximaNova';
      src: url('../font/ProximaNova-Bold.otf') format('opentype');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'ProximaNova';
      src: url('../font/ProximaNova-Black.otf') format('opentype');
      font-weight: 900;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Acumin-Pro-ExtraCondensed';
      src: url('../font/Acumin_Pro_ExtraCondensed_Light.otf') format('opentype');
      font-weight: 300;
      font-style: normal;
      font-display: swap;
    }  

    @font-face {
      font-family: 'Acumin-Pro-ExtraCondensed';
      src: url('../font/Acumin_Pro_ExtraCondensed_Regular.otf') format('opentype');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }  
    
    @font-face {
      font-family: 'Acumin-Pro-ExtraCondensed';
      src: url('../font/Acumin_Pro_ExtraCondensed_Bold.otf') format('opentype');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'FjallaOne';
      src: url('../font/FjallaOne-Regular.ttf') format('opentype');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }


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

body {
    font-family: 'ProximaNova', sans-serif;
    color: #fff;
    overflow-x: hidden;
}

/* Header */
header {
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0;
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    padding: 50px 48px 0;
    background: transparent; 
    z-index: 10;
}

.logo img {
    width: 120px; height: 124px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

a:hover {
    opacity: .5;
}

    nav {
      position: fixed; 
      top: 0; 
      left: -100%;
      width: 100%; 
      height: 100%; 
      background: #000;
      display: flex; 
      flex-direction: column;
      align-items: center; 
      justify-content: center;
      transition: left 0.3s ease-in-out; 
      z-index: 9;
    }
    nav.open { 
        left: 0; 
    }
    .nav-close {
      position: absolute; 
      top: 20px; 
      right: 20px;
      background: none; 
      border: none;
      font-size: 2rem; 
      color: #fff; 
      cursor: pointer;
    }
    nav a {
      font-family: 'ProximaNova', sans-serif;
      font-weight: 400;
      font-size: 14px;
      padding: 14px; 
      color: #fff;
      text-transform: uppercase;
    }
    header.nav-open .nav-toggle { 
        display: none; 
    }

/* Header */

/* Isi */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    overflow: hidden;
}
.hero img.bg-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero h1{
    margin-top: 60px;
    margin-bottom: 49.8px;
    font-size: 60px;
    font-family: 'Acumin-Pro-ExtraCondensed', sans-serif;
    font-weight: 300;
    color: #fff;
}

.hero p{
    margin-top: 16px;
    font-family: 'ProximaNova', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.details-button{
    border: none;
    margin-top: 34px;
    font-family: 'ProximaNova', sans-serif;
    font-size: 15px;
    font-weight: 600;
    background: #000;
    color: #fff;
    padding: 21px 34px;
    text-transform: uppercase;
}

.isi {
    display: flex;
    flex-direction: column;
    background: #fff;
    color: #000;
    padding: 120px 17px;
    text-align: center;
}

.isi h2{
    align-self: center;
    max-width: 55%;
    text-align: center;
    font-size: 60px;
    margin-bottom: 34px;
    font-family: 'Acumin-Pro-ExtraCondensed', sans-serif;
}

.isi img{
    width: 55%;
    height: auto;
    display: block;
    margin: 0 auto 6rem;
}

.isi p{
    margin: 16px 0;
    font-family: 'ProximaNova', sans-serif;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    text-align: center;
    line-height: 1.8;
    color: #222;
}

/* Isi */

/* Footer */
.contact-footer{
    display: flex;
    flex-direction: row;
    background: #000;
    color: #fff;
    padding: 100px 50px;
    justify-content: center;
    align-items: center;
}
.contact-footer p {
    display: inline;
    margin: 0 1rem;
    font-size: 13px;
    font-family: "fjallaOne", sans-serif;
    font-weight: 400;
    text-align: center;
}
/* Footer */

@media (min-width: 768px) {
    .nav-toggle { 
        display: none; 
    }
    nav {
        position: static; 
        transform: none; 
        height: auto;
        background: transparent; 
        flex-direction: row;
        justify-content: flex-end; 
        padding: 0; 
        left: 0;
    }
    .nav-close { 
        display: none; 
    }
}

@media (max-width: 767px) {
    header {
        position: fixed; 
        margin: 0; 
        padding: 10px 20px; 
        background: #fff;
    }
    .logo img { 
        width: 80px; 
        height: 82px; 
    }

    .nav-toggle {
        display: block; 
        background: #fff; 
        border: none;
        padding: 8px; 
        border-radius: 4px;
        font-size: 24px; 
        color: #222; 
        cursor: pointer; 
        z-index: 11;
    }

    .hero h1 { 
        font-size: 28px; 
        margin-bottom: 23.2px;
    }

    .isi img {
        width: 100%;
    }

    .isi h2 { 
        max-width: 80%;
        font-size: 32px;
    }

    .contact-footer {
        flex-direction: column;
    }

    .contact-footer p {
        margin-bottom: 16px;
    }
}