body {
    margin: 0;
    padding: 96px;
}

@media screen and (max-width: 700px) {
    body {
        padding: 32px;
    }
    .mobile {
        display: block;
    }
    .desktop {
        display: none;
    }
}

@media screen and (min-width: 701px) {
    body {
        padding: 96px;
    }
    .mobile {
        display: none;
    }
    .desktop {
        display: block;
        position: fixed;
        width: 100%;
        height: 100%;
        /* overflow: hidden; */
    }
}


h6 {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #2c2c2c;
    margin: 0;
}

.header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.header_divider {
    width: 1.5px;
    height: 24px;
    background-color: #2c2c2c;
    opacity: 0.75;
}

a {
    all: unset;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #2c2c2c;
    white-space: nowrap;
    margin: 0;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 42px;
    margin-top: 48px;
}

.item {
    display: flex;
    flex-direction: row;
    position: relative;
}

.start_divider {
    flex-shrink: 0;
    width: 2px;
    height: 48px;
    background-color: #2c2c2c;
    margin-right: 24px;
}

.item_col {
    display: flex;
    flex-direction: column;
}

.position {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #2c2c2c;
    margin: 0;
}

.company {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #2c2c2c;
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0;
    margin-top: 8px;
}

.description {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #2c2c2c;
    opacity: 0.75;
    line-height: 21px;
    letter-spacing: 0.6px;
    margin: 0;
    margin-top: 16px;
}

.description_ {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #2c2c2c;
    line-height: 24px;
    letter-spacing: 0.6px;
    margin: 0;
    margin-top: 8px;
    width: calc(50vw);
}

.link {
    text-decoration: underline;
    cursor: pointer;
}