html {
    font-family: 'Source Code Pro', monospace;
    font-weight: 400;
    text-align: left;
    background-color: #1A1818;
    text-rendering: optimizeLegibility;
    color: white;
}

body {
    overflow-x: hidden;
}

h1 {
    font-size: 21px;
    line-height: 150%;
}

h2 {
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 4px;
}

p {
    font-size: 15px;
    line-height: 150%;
    /* margin-bottom: 12px; */
    color: rgba(255,255,255, 0.5);
}

a {
    color: #FFFFFF;
}

.address-duplicate {
    color: rgba(255,255,255, 0.3);
}

.heading {
    font-size: 18px;
    line-height: 150%;
}

#navbar {
    position: fixed;
    display: flex;
    flex-flow: column;
    width: 224px;
    margin: 64px 0 0 64px;
}

.logo-container {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255, 0.1);
}

#logo {
    width: 100px;
    height: 80px;
    margin-left: 48px;
}

#menu-toggle {
    display: none;
}
  
.menu-btn {
    display: none;
}

nav > ul {
    margin-left: 80px;
    margin-top: 37px;
}

nav > ul > li {
    list-style-type: none;
    margin-bottom: 16px;
}

nav > ul > li > a {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 5%;
    line-height: 150%;
    text-decoration: none;
    color: white;
}

.menu-item:hover::before,
.active::before {
    position: fixed;
    content: "\2192";
    font-family: system-ui;
    color: rgba(255,255,255, 0.3);
    left: 122px;
}

.active::before {
    color: white;
}

.main-wrapper {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    max-width: 1024px;
    height: 100vh;
    margin-left: 288px;
    margin-right: 64px;
}

#page-header {
    position: fixed;
    left: 288px;
    display: flex;
    flex-flow: column;
    border-bottom: 1px solid rgba(255,255,255, 0.1);
    width: calc(100% - 352px);
    max-width: 1024px;
    background-color: #1A1818;
    z-index: 1;
}

.header-gap{
    height: 64px;
}

.header-title {
    display: flex;
    height: 80px;
    align-items: center;
    font-size: 21px;
    line-height: 150%;
    padding-left: 64px;
    color: rgba(255,255,255, 0.3);
    border-left: 1px solid rgba(255,255,255, 0.1);
}

#content {
    display: flex;
    flex-flow: column;
    border-left: 1px solid rgba(255,255,255, 0.1);
    padding: 32px 64px;
    margin-top: 144px;
}

.section-wrapper {
    display: flex;
    flex-flow: column;
    gap: 24px;
}

.section-wrapper > h1 {
    color: rgba(255,255,255, 0.3);
}

.p-wrapper {
    display: flex;
    flex-flow: column;
    margin-bottom: -12px;
}

.bullet-list > p {
    margin-left: 32px;
}

.page-title {
    font-size: 21px;
    line-height: 150%;
    color: rgba(255,255,255, 0.3);
}

.section-title {
    font-size: 18px;
    line-height: 150%;
}

.flex-gap {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 48px;
  }

#copyright {
    font-size: 12px;
    line-height: 24px;
    margin: 128px 0 24px 64px;
    opacity: 0.5;
}

.button {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255, 0.1);
    font-size: 15px;
    line-height: 32px;
    font-weight: 400;
    text-decoration: none;
    color: #FFFFFF;
    padding: 0 8px;
    margin-right: 8px;
    width: fit-content;
}

.button:hover {
    background: #F6C853;
    border: 1px solid #F6C853;
    color: #1A1818;
}

.button-large {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255, 0.1);
    font-size: 21px;
    line-height: 48px;
    font-weight: 400;
    text-decoration: none;
    color: #1A1818;
    background-color: white;
    padding: 0 16px;
    width: fit-content;
}

.button-large:hover {
    background: #F6C853;
    border: 1px solid #F6C853;
}

.links {
    display: flex;
}

.links-group {
    display: flex;
    flex-flow: column;
    margin-right: 56px;
}

.link-label {
    font-size: 12px;
    line-height: 150%;
    opacity: 0.5;
    margin-bottom: 8px;
}

.link-buttons-wrapper {
    display: flex;
}

.header-title-duplicate {
    display: none;
}

table {
    width: 800px;
    font-size: 15px;
}

td {
    padding-right: 32px;
}

.table-header {
    font-size: 18px;
    line-height: 40px;
}

.table-title {
    font-size: 12px;
    line-height: 150%;
    padding: 11px 32px 11px 0; 
    color: rgba(255,255,255, 0.5);
}

.table-text-extra {
    font-size: 12px;
    line-height: 150%;
}

.scrolling-horisontal {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
}


@media (max-width: 1023px) {
    body {
        margin: 0 32px;
    }

    h1 {
        font-size: 18px;
    }

    .header-title-duplicate {
        display: block;
        font-size: 21px;
        line-height: 150%;
        color: rgba(255,255,255, 0.3);
        margin-bottom: 16px;
    }
    
    h2 {
        font-size: 15px;
    }

    p {
        font-size: 12px;
    }

    .button-large {
        font-size: 18px;
        line-height: 40px;
    }

    #navbar {
        flex-flow: row;
        margin: 0;
        justify-content: space-between;
        background-color: #1A1818;
        border-bottom: 1px solid rgba(255,255,255, 0.1);
        width: calc(100vw - 64px);
        z-index: 1;
    }

    .logo-container {
        border-bottom: none;
    }

    #logo {
        margin-left: 0;
    }

    #menu-toggle:checked ~ .menu-btn > span {
        transform: rotate(45deg);
    }
    
    #menu-toggle:checked ~ .menu-btn > span::before {
        top: 0;
        transform: rotate(0);
    }
    
    #menu-toggle:checked ~ .menu-btn > span::after {
        top: 0;
        transform: rotate(90deg);
    }
    
    #menu-toggle:checked ~ .menu-list {
        visibility: visible;
        left: 0;
    }

    .menu-btn {
        display: flex;
        align-items: center;
        position: fixed;
        top: 28px;
        right: 32px;
        width: 24px;
        height: 22px;
        cursor: pointer;
        z-index: 1;
    }
      
    .menu-btn > span,
    .menu-btn > span::before,
    .menu-btn > span::after {
        display: block;
        position: absolute;
        width: 24px;
        height: 2px;
        background-color: white;
        transition-duration: .25s;
    }
    
    .menu-btn > span::before {
        content: '';
        top: -10px;
    }
    
    .menu-btn > span::after {
        content: '';
        top: 10px;
    }
    
    .menu-list {
        display: block;
        position: fixed;
        visibility: hidden;
        top: 81px;
        left: -100%;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 40px 66px;
        background-color: #1A1818;
    }
    
    nav > ul > li > a {
        font-size: 24px;
    }

    .menu-item:hover::before,
    .active::before {
    display: none;
    }

    .main-wrapper {
        margin-left: 0;
        padding-top: 80px;
        width: calc(100vw - 64px);
        height: calc(100vh - 80px);
    }

    #page-header {
        display: none;
    }
    
    #content {
        border: none;
        margin: 0;
        margin-top: 24px;
        padding: 0;
        width: auto;
        font-size: 18px;
    }

    .flex-gap {
        gap: 32px;
    }

    .section-wrapper {
        gap: 16px;
    }

    .bullet-list > p {
        margin-left: 27px;
    }

    .links {
        flex-flow: column;
    } 

    .links-group {
        margin-right: 0;
        margin-bottom: 32px;
    }

    .p-wrapper {
        margin-bottom: -4px;
    }

    #copyright {
        margin-left: 0;
    }
}



@media (min-width: 1920px) {
    .main-wrapper {
        max-width: 1280px;
    }

    #page-header{
        max-width: 1280px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 21px;
    }

    .flex-gap {
        gap: 64px;
    }
}
