    @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 */
.image-about {
    background-color: #ffffff;
    margin-top: 200px;
    padding: 120px 48px;
    color: #222;
}

.full-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-headings {
    text-align: center;
    padding: 2rem 0;
    margin: 6rem 10rem 0 10rem;
}

.about-headings h1 {
    font-family: 'Acumin-Pro-ExtraCondensed', sans-serif;
    font-size: 115px;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 0;
}
.about-headings h2 {
    font-family: 'Acumin-Pro-ExtraCondensed', sans-serif;
    font-size: 62px;
    font-weight: 300;
    margin-bottom: 50px;
}
.about-headings h3 {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 16px;
}
.about-headings strong {
    font-weight: bold;
}

.about-headings h2.do-not {
    margin-top: 50px;
}

.founder-sections {
    display: flex;
    flex-wrap: wrap;
    margin: 80px 10rem 0 10rem;
    gap: 60px;
    color: #222;
}

.founder-section {
    flex: 1 1 50%;
    padding: 1rem;
    box-sizing: border-box;
}

.founder-section a {
    color: #b3b3b3; 
    border-bottom-width: 1; 
    border-bottom-style: solid;
    border-bottom-color: rgba(179, 179, 179, 0.3);
}

.founder-section.left {
    flex: 6;
    text-align: left;
}


.founder-section.right .spacer {
    height: 120px;
}

.founder-sections h3 {
    font-family: 'ProximaNova', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 16px;
}
.founder-sections p {
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    margin: 1rem 0;
}

.founder-section strong {
    font-weight: bold;
}
.founder-sections .right {
    flex: 4;
    text-align: right;
}
.founder-sections .right .spacer {
    height: 120px;
}

.call-to-action {
    text-align: center;
    padding: 2rem 0;
}

.call-to-action p {
    color: #222;
    font-size: 16px;
    font-weight: 300;
    margin: 16px 0;
}
.call-to-action a {
    color: #b3b3b3;
    border-bottom-style: solid;
    border-bottom-color: rgba (179, 179, 179, 0.3);
}
/* 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; 
    }
        nav a {
        color: #555;
    }
    
}

@media (max-width: 767px) {
    header {
        position: fixed; 
        margin: 0; 
        padding: 10px 20px; 
        background: #fff;
        border-bottom: #000 solid 1px;
    }
    .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;
    }

    .image-about {
        margin-top: 120px;
        padding: 60px 20px;
    }
    .about-headings {
        margin: 4rem 0 0 0;
        padding-bottom: 0;
    }

    .about-headings h1 {
        font-size: 32px;
    }

    .about-headings h2 {
        font-size: 28px;
        margin-bottom: 24px;
    }
    .about-headings h3 {
        font-size: 16px;
        font-weight: 300;
        margin-bottom: 16px;
    }

    .about-headings h2.do-not {
        margin-top: 24px;
    }

    .founder-sections {
        flex-direction: column;
        margin: 0;
        gap: 0;
    }
    .founder-sections .left {
        text-align: left;
    }

    .founder-sections .right .spacer {
        height: 0;
    }

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

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