html, body, div, span, iframe,
h1, h2, h3, h4, h5, p, a, em, img, q, s, samp,
small, sub, sup, b, u, i, center,
dl, dt, dd, ol, ul, li, form, label, legend,
table, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, figure, figcaption,
footer, header, menu, nav, section, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    vertical-align: baseline;
    font: inherit;
    font-size: 100%;
    font-variant: lining-nums !important;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

button, input, textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

::selection {
    background: transparent;
}

:root {
    --dark: #181825;
    --white: #fff;
    --primary: #3effe8;
    --secondary: #8c0fee;
    --padding-global: clamp(0rem, 5vw, 2.5rem);
}

html {
    height: 100%;
    box-sizing: border-box;
    background: #D5DBE0;
    -webkit-font-smoothing: antialiased;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font: 20px/1.5 "Raleway", Helvetica, Arial, sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: #0B0A16;
    position: relative;
}

h1 {
    font: 500 80px/1 "Protest Strike", sans-serif;
    text-transform: uppercase;
    cursor: default;
}

h2 {
    font: 700 56px/1.1 "Raleway", Helvetica, Arial, sans-serif;
    letter-spacing: -0.8px;
    cursor: default;
}

h3 {
    font: 500 56px/1 "Protest Strike", sans-serif;
    text-transform: uppercase;
    cursor: default;
}

h4 {
    font: 600 48px/1.2 "Raleway", Helvetica, Arial, sans-serif;
    letter-spacing: -0.8px;
    cursor: default;
}

h5 {
    font: 700 16px/1.5 "Raleway", Helvetica, Arial, sans-serif;
    cursor: default;
}

h5.light {
    font: 500 16px/1.5 "Raleway", Helvetica, Arial, sans-serif;
    letter-spacing: 0.2px;
}

h5.light b {
    font: 600 16px/1.5 "Raleway", Helvetica, Arial, sans-serif;
}

p {
    max-width: 560px;
    font: 600 20px/1.5 "Raleway", Helvetica, Arial, sans-serif;
    cursor: default;
}

p.light {
    font: 500 16px/1.75 "Raleway", Helvetica, Arial, sans-serif;
}

a {
    color: #000;
    text-decoration: none;
}

p a {
    color: inherit;
    text-decoration: underline;
}

p + p {
    margin-top: 24px;
}

.parallax {
    perspective: 1px;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.parallax-group {
    position: relative;
    height: 100vh;
    transform-style: preserve-3d;
}

.parallax-layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.parallax-base {
    transform: translateZ(0);
}

.parallax-back {
    transform: translateZ(-.5px) scale(1.5);
}

section {
    width: 100%;
    position: relative;
    flex-wrap: wrap;
    display: flex;
}

header {
    position: fixed;
    top: 0;
    box-sizing: border-box;
    flex-wrap: wrap;
    z-index: 8;
}

.header-left {
    padding: 24px 20px;
    left: 0;
}

.header-right {
    padding: 28px 20px;
    right: 0;
}

.logo {
    width: 160px;
    height: 40px;
    padding: 13px 9px 12px 9px;
    border-radius: 12px;
    background-color: #100882;
    justify-content: space-between;
    display: flex;
}

.header-nav {
    position: relative;
}

footer {
    padding: 20px;
    position: fixed;
    bottom: 0;
    box-sizing: border-box;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    display: flex;
    z-index: 10;
}

.end-content footer {
    position: absolute;
}

footer a {
    font: 500 16px/1.5 "Raleway", Helvetica, Arial, sans-serif;
}

footer.footer-left {
    left: 0;
}

footer.footer-right {
    right: 0;
}

footer a.email::after {
    content: 'Send me an email';
    color: #FFF;
    mix-blend-mode: saturation;
}

footer a.linkedin::after {
    content: 'LinkedIn';
    color: #FFF;
    mix-blend-mode: saturation;
}

.menu-btn {
    height: 32px;
    padding: 0 16px;
    border-radius: 16px;
    background: #100882;
    color: #D5DBE0;
    font: 500 16px/1.5 "Raleway", Helvetica, Arial, sans-serif;
    position: relative;
    box-sizing: border-box;
    align-items : center;
    display : flex;
    cursor: pointer;
    transition: all .5s ease-in-out;
}

.menu-btn:hover {
    color: #FFF;
    transition: all .25s ease-in-out;
}

.menu-btn.active {
    color: #FFF;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border: solid 1px #D5DBE080;
    border-radius: 40px;
    position: relative;
    display: block;
    transition: all .25s ease-in-out;
    cursor: pointer;
}

.icon-btn::before {
    width: 16px;
    height: 16px;
    content: '';
    background-color: #0B0A16;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .25s ease-in-out;
}

.icon-btn:hover {
    background-color: #0B0A1620;
}

.icon-btn.invert {
    border: solid 1px #D5DBE040;
}

.icon-btn.invert::before {
    background-color: #D5DBE0;
}

.icon-btn.invert:hover {
    background: inherit;
    border-color: #FFF;
}

.icon-btn.invert:hover::before {
    background-color: #FFF;
}

.icon-btn.big {
    width: 64px;
    height: 64px;
    transition: all .25s ease-in-out;
}

.icon-btn.disabled {
    background: #D5DBE040;
    border: none;
    cursor: auto;;
}

.icon-btn.disabled::before {
    background: #0B0A16;
}

.icon-btn.disabled:hover::before {
    background: #0B0A16;
}

.icon-btn.invert.disabled {
    background: #D5DBE040;
}

.icon-btn.invert.disabled::before {
    background: #0B0A16;
}

.icon-btn.invert.disabled:hover::before {
    background: 0B0A16;
}

.header-menu {
    padding: 8px 4px;
    background: #FFF;
    border: solid 1px #D5DBE040;
    border-radius: 8px;
    position: absolute;
    top: 40px;
    right: 0;
    display: none;
    box-shadow: 0 0 2px #00000010;
    transition: all .5s ease-in-out;
}

.header-menu.active {
    display: block;
}

.menu-item {
    width: 120px;
    padding: 8px;
    font: 500 14px/1.5 "Raleway", Helvetica, Arial, sans-serif;
    text-align: left;
    color: #0B0A16;
    display: block;
    transition: all .25s ease-out;
}

/* Main screen */

.main-screen-bg {
    width: 100%;
    height: 100%;
    background: url('../img/background.png') no-repeat center / cover;
    position: absolute;
    top: 0;
    left: 0;
}

.main-screen {
    height: 100%;
    z-index: 10;
}

.screen-content {
    width: 100%;
    padding: 0 40px;
    overflow: hidden;
}

.main-screen .screen-content {
    align-content: center;
    display: flex;
}

.name-container {
    width: 100%;
    max-width: 1960px;
    margin: 0 auto;
    position: relative;
    justify-content: center;
    align-items: center;
    gap: 40px;
    display: flex;
}

.name {
    color: #fff;
    position: relative;
    opacity: 0;
    transition: all 0.5s ease-in;
}

#clip-image {
    width: 0;
    height: 80px;
    border-radius: 8px;
    box-shadow: 0 0 0 9999px #170CB5;
    transition: all 2.5s ease-in-out;
}

#start-btn {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translate(-50%, 0);
    opacity: 0;
}

#start-btn::before {
    --svg: url('data:image/svg+xml,\
        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"/><line x1="40" y1="128" x2="216" y2="128" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="24"/><line x1="128" y1="40" x2="128" y2="216" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="24"/></svg>');
    -webkit-mask: var(--svg);
    mask: var(--svg);
    transition: all .5s ease-in;
}

#start-btn::after {
    width: 160px;
    font: 500 12px/1.25 "Raleway", Helvetica, Arial, sans-serif;
    color: #D5DBE0;
    text-align: center;
    content: 'Get to know me';
    position: absolute;
    left: 50%;
    bottom: 100%;
    display: block;
    transform: translate(-50%, -16px);
}


/* About screen */

.about-screen {
    height: auto;
    margin-top: 400px;
    align-items: center;
}

.about-screen .screen-content {
    max-width: 1960px;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
    overflow: visible;
}

.about-box {
    width: 480px;
    height: 480px;
    border-radius: 40px;
    position: absolute;
    bottom: 200px;
    right: 0;
    background-color: #170CB5;
    transform: rotate(16deg);
    z-index: -1;
    transition: all 2.5s ease-in-out;
}

.about-title {
    max-width: 800px;
    margin: 120px 0 160px 0;
    color: #100882;
}

.about-title h2:nth-child(2) {
    font-weight: 600;
    color: #9C9AB0;
}

.about-skills {
    max-width: 800px;
    margin-bottom: 200px;
    box-sizing: border-box;
    justify-content: space-between;
    display : flex;
}

.about-skills .title {
    width: auto;
}

.about-skills .title h3 {
    color: #170CB5;
}

.skills {
    padding: 4px 0;
}

.skills ol {
    color: #100882;
    column-count: 2;
    list-style-type: decimal-leading-zero;
}

.skills li {
    width: 200px;
    margin: 0 0 8px 24px;
    font: 600 16px/1.5 "Raleway", Helvetica, Arial, sans-serif;
    cursor: default;
}

.skills li::marker {
    font-variant: lining-nums;
}


/* Employers screen */

.employers-screen {
    height: auto;
    background-color: #0B0A16;
    color: #D5DBE0;
}

.employers-screen .screen-content {
    margin: 160px 0;
    justify-content: center;
    flex-direction: column;
    gap: 120px;
    display: flex;
}

.employers-title {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.employers-title h3 {
    margin-bottom: 8px;
    color: #190AE4;
}

.employers-title p {
    margin: 0;
}

.employment-history {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
    display: flex;
}

.employment-history .nav {
    width: 100%;
    justify-content: end;
    gap: 8px;
    display: flex;
}

.employment-history .icon-btn {
    cursor: none;
}

#prev-employer-btn::before {
    --svg: url('data:image/svg+xml,\
        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"/><polyline points="160 208 80 128 160 48" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="24"/></svg>');
    -webkit-mask: var(--svg);
    mask: var(--svg);
}

#next-employer-btn::before {
    --svg: url('data:image/svg+xml,\
        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"/><polyline points="96 48 176 128 96 208" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="24"/></svg>');
    -webkit-mask: var(--svg);
    mask: var(--svg);
}

.employment-history .chart {
    width: 100%;
    overflow: visible;
}

.employment-history .chart-container {
    width: auto;
    gap: 16px;
    justify-content: end;
    display: flex;
    transition: all .5s ease-out;
    cursor: none;
    scrollbar-width: none;
}

.employment-history .chart-container::-webkit-scrollbar { 
    display: none;
}

.employment-history .employer {
    position: relative;
    flex-direction: column;
    gap: 16px;
    display: flex;
}

.employment-history .employer .employer-bar {
    width: 100%;
    height: 160px;
    padding: 0 32px;
    background-color: #0B0A16;
    background-repeat: no-repeat;
    background-position: left 32px center;
    border: solid 1px #D5DBE020;
    border-radius: 24px;
    box-sizing: border-box;
    align-content: center;
    display: flex;
}

.employment-history .employer.current .employer-bar {
    background: #D5DBE0;
    background-repeat: no-repeat;
    background-position: left 32px center;
    border: none;
}

.employment-history .employer#avant .employer-bar {
    width: 600px;
    background-image: url(../img/employer_avant.svg);
}

.employment-history .employer#asus .employer-bar {
    width: 400px;
    background-image: url(../img/employer_asus.svg);
}

.employment-history .employer#ericsson .employer-bar {
    width: 600px;
    background-image: url(../img/employer_ericsson.svg);
}

.employment-history .employer#dib-travel .employer-bar {
    width: 400px;
    background-image: url(../img/employer_dib_travel.svg);
}

.employment-history .employer#anyfin .employer-bar {
    width: 200px;
    background-image: url(../img/employer_anyfin.svg);
}

.employment-history .employer#mobi .employer-bar {
    width: 600px;
    background-image: url(../img/employer_mobi.svg);
}

.employment-history .period {
    width: 100%;
    font: 500 24px/1 "Raleway", Helvetica, Arial, sans-serif;
    justify-content: space-between;
    display: flex;
}

.employment-history .period .start {
    padding: 0 8px;
    border-left: solid 1px #D5DBE040;
    color: #9C9AB0;
    overflow: hidden;
}

.employment-history .period .end {
    text-align: right;
    overflow: hidden;
}

.employment-summary {
    width: 100%;
    max-width: 1120px;
    height: 400px;
    margin: 0 auto;
    justify-content: space-between;
    display: flex;
}

.employment-summary .category {
    position: relative;
    flex-direction: column;
    gap: 8px;
    display: flex;
}

.employment-summary .category .category-item {
    color: #9C9AB0;
    /*border-left: solid 2px transparent;*/
    position: relative;
    cursor: none;
    transition: all .25s ease-in-out;
}

.employment-summary .category .category-item::before {
    content: '';
    width: 2px;
    height: 0;
    background: #190AE4;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, 0);
    transition: all .25s ease-in-out;
}

.employment-summary .category .category-item:hover {
    color: #FFF;
}

.employment-summary .category .category-item.active {
    padding-left: 16px;
    color: #D5DBE0;
}

.employment-summary .category .category-item.active::before {
    height: 100%;
    top: 0;
}

.employment-summary .description {
    max-width: 640px;
}

.employment-summary .description-item {
    opacity: 0;
    display: none;
}

.employment-summary .description-item:first-child {
    opacity: 1;
}

.employment-summary .description-item.active {
    display: block;
    transition: all .5s ease-in-out;
}


/* Showcase screen */

.showcase-screen {
    height: auto;
    padding: 160px 0;
}

.showcase-screen .screen-content {
    width: 100%;
    max-width: 1960px;
    margin: 0 auto;
}

.showcase-title {
    padding-left: 16px;
    margin-bottom: 32px;
}

.showcase-list {
    width: 100%;
    margin-bottom: 16px;
    box-sizing: border-box;
}

.showcase-item {
    width: calc(25% - 16px);
    height: 400px;
    margin: 8px;
    background: #EFF0F0;
    border-radius: 24px;
    position: relative;
    float: left;
    transition: all .75s ease-in-out;
    overflow: hidden;
    display: block;
    cursor: pointer;
}

.showcase-container {
    width: 100%;
    height: 100%;
    transition: all .5s ease-out;
    position: relative;
}

.showcase-container:hover {
    transform: scale(1.05);
}

.showcase-container::before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 40%) 100%);
    position: absolute;
    top: 0;
    left: 0;
}

.showcase-item.size-50 {
    width: calc(50% - 16px);
}

.showcase-name {
    font: 600 20px/1 "Raleway", Helvetica, Arial, sans-serif;
    color: #FFF;
    text-shadow: 0 0 8px #00000020;
    position: absolute;
    bottom: 36px;
    left: 24px;
}

.showcase-client {
    font: 600 16px/1 "Raleway", Helvetica, Arial, sans-serif;
    color: #FFFFFF80;
    text-shadow: 0 0 8px #00000020;
    position: absolute;
    bottom: 16px;
    left: 24px;
}

.showcase-details .nav {
    position: absolute;
    top: 0;
    right: 16px;
    justify-content: end;
    gap: 8px;
    display: flex;
}

#prev-showcase-btn::before {
    --svg: url('data:image/svg+xml,\
        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"/><polyline points="160 208 80 128 160 48" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="24"/></svg>');
    -webkit-mask: var(--svg);
    mask: var(--svg);
}

#next-showcase-btn::before {
    --svg: url('data:image/svg+xml,\
        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"/><polyline points="96 48 176 128 96 208" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="24"/></svg>');
    -webkit-mask: var(--svg);
    mask: var(--svg);
}


/* Contact screen */

.contact-screen {
    height: 100%;
    min-height: 640px;
    background: #170CB5;
    color: #D5DBE0;
    justify-content: center;
}

.contact-screen .screen-content {
    max-width: 1960px;
    margin: 120px 0;
    flex-direction: column;
    display: flex;
}

.contact-action {
    height: 100%;
    margin: 40px 0;
    text-align: center;
    color: #D5DBE0;
    flex-direction: column;
    justify-content: center;
    align-items:center;
    display: flex;
}

.contact-action p {
    margin-bottom: 16px;
    cursor: pointer
}

.contact-btn {
    width: 360px;
    height: 80px;
    border: solid 1px #D5DBE040;
    border-radius: 16px;
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    display: flex;
    cursor: pointer;
    transition: all .25s ease-in-out;
}

.contact-btn:hover {
    border-color: #FFF;
}

.contact-btn p {
    margin: 0;
    padding: 0 16px;
    color: #FFF;
}

.contact-btn .icon-btn {
    width: 80px;
    height: 100%;
    border: none;
    border-left: solid 1px #D5DBE040;
    border-radius: 0;
}

.contact-btn .icon-btn::before {
    --svg: url('data:image/svg+xml,\
        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"/><polyline points="96 48 176 128 96 208" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="24"/></svg>');
    -webkit-mask: var(--svg);
    mask: var(--svg);
}

.contact-btn:hover .icon-btn {
    border-color: #FFF;
}


/* Work page */

.content {
    width: 100%;
    height: auto;
    padding-top: 160px;
    background-color: #FFF;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    display: flex;
}

.work-title {
    width: 100%;
    padding: 0 20px;
    text-align: center;
}

.work-title h1 {
    margin-bottom: 8px;
    color: #170CB5;
}

.work-title p {
    margin: 0 auto;
}

.work-img-container {
    width: 100%;
    max-width: 1200px;
    height: 640px;
    background: #000;
    border-radius: 24px;
}

.work-img-container.full {
    max-width: none;
    height: auto;
    border-radius: 0;
    overflow: hidden;
}

.work-img-container.full img {
    width: 100%;
    max-width: 2000px;
    margin: 0 auto;
    display: block;
}

.work-img-row {
    width: 100%;
    max-width: 1200px;
    height: 640px;
    gap: 20px;
    display: flex;
}

.work-img-row .text {
    padding-top: 40px;
}

.work-img-row .work-img-container {
    margin: 0;
}

.work-img-group {
    width: 100%;
    max-width: 1200px;
    flex-direction: column;
    gap: 20px;
    display: flex;
}

.text {
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
}

.text.right {
    /*flex-direction: column;*/
    justify-content: flex-end;
    display: flex;
}

.text h4 {
    max-width: 720px;
    font: 700 48px/1.2 "Raleway", Helvetica, Arial, sans-serif;
    color: #100882;
}

.text .big-quote {
    max-width: 720px;
    font: 500 24px/1.5 "Raleway", Helvetica, Arial, sans-serif;
    letter-spacing: -0.2px;
    color: #9C9AB0;
}

.section-content {
    width: 100%;
    padding: 120px;
    flex-direction: column;
    align-items: center;
    display: flex;
}

.credit {
    width: 100%;
    max-width: 1200px;
    padding: 0 40px 40px 40px;
    justify-content: space-between;
    gap: 16px;
    display: flex;
}

.credit h5 {
    flex: 1;
    
}

.end-content {
    width: 100%;
    padding: 120px 0;
    background: #170CB5;
    position: relative;
}

@media only screen and (max-width: 1200px) {
    
    .work-img-container {
        width: calc(100% - 40px);
        padding-bottom: 56.25%;
        margin: 0 auto;
    }
    
    .work-img-container.full {
        width: 100%;
        padding-bottom: unset;
    }
    
    .work-img-row {
        width: calc(100% - 40px);
        margin: 0 auto;
    }
    
}


@media only screen and (max-width: 960px) {
    
    ::-webkit-scrollbar {
        display: none;
    }
    
    h1 {
        font: 500 48px/1 "Protest Strike", sans-serif
    }
    
    h2 {
        font: 700 48px/1.1 "Raleway", Helvetica, Arial, sans-serif
    }
    
    h3 {
        font: 500 40px/1 "Protest Strike", sans-serif
    }
    
    h4 {
        font: 600 32px/1.2 "Raleway", Helvetica, Arial, sans-serif;
    }
    
    .logo {
        width: 100px;
    }
    
    .menu-item {
        padding: 8px 16px;
    }
    
    .parallax-back {
        transform: none;
    }
    
    .parallax-base {
        transform: none;
    }
    
    .screen-content {
        padding: 0 20px;
    }
    
    .name-container {
        margin-bottom: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    #start-btn {
        display: none;
    }
    
    .about-screen {
        margin: 0;
    }
    
    .about-title {
        margin: 80px 0;
    }
    
    .about-skills {
        margin-bottom: 80px;
        flex-direction: column;
        gap: 16px;
    }
    
    .skills ol {
        column-count: 1;
    }
    
    .skills li {
        margin: 0 0 8px 32px;
    }
    
    .about-box {
        width: 240px;
        height: 240px;
        bottom: 0;
        right: -80px;
    }
    
    .employers-screen .screen-content {
        margin: 80px 0;
        padding: 0;
        gap: 80px;
    }
    
    .employers-screen .cursor-container {
        display: none;
    }
    
    .employers-title {
        padding: 0 20px;
    }
    
    .employment-history {
        gap: 0;
    }
    
    .employment-history .nav {
        display: none;
    }
    
    .employment-history .chart {
        padding: 0 20px;
        overflow: auto;
        display: flex;
        scrollbar-width: none;
    }
    
    .employment-history .chart-container {
        justify-content: unset;
        gap: 8px;
    }
    
    .employment-history .period {
        font: 600 16px/1 "Raleway", Helvetica, Arial, sans-serif
    }
    
    .employment-history .period .start {
        padding: 0;
        border: none;
    }
    
    .employment-history .employer {
        gap: 8px;
    }
    
    .employment-history .employer .employer-bar {
        height: 80px;
        padding: 0 10px;
        background-position: left 16px center;
        border-radius: 16px;
    }
    
    .employment-history .employer.current .employer-bar {
        background-position: left 16px center;
    }
    
    .employment-history .employer#avant .employer-bar {
        width: 300px;
        background-size: 60px;
    }
    
    .employment-history .employer#asus .employer-bar {
        width: 200px;
        background-size: 60px;
    }
    
    .employment-history .employer#ericsson .employer-bar {
        width: 300px;
        background-size: 60px;
    }
    
    .employment-history .employer#dib-travel .employer-bar {
        width: 200px;
        background-size: 40px;
    }
    
    .employment-history .employer#anyfin .employer-bar {
        width: 100px;
        background-size: 60px;
    }
    
    .employment-history .employer#mobi .employer-bar {
        width: 300px;
        background-size: 60px;
    }
    
    .employment-summary {
        height: auto;
        flex-direction: column;
        gap: 32px;
        justify-content: normal;
    }
    
    .employment-summary .category {
        padding: 0 20px;
        flex-direction: row;
        gap: 24px;
        overflow: scroll;
        scrollbar-width: none;
    }
    
    .employment-summary .category .category-item {
        padding-bottom: 8px;
        border-left: none;
    }
    
    .employment-summary .category .category-item::before {
        width: 0;
        height: 2px;
        top: auto;
        bottom: 0;
        left: 50%;
        transform: none;
    }
    
    .employment-summary .category .category-item.active {
        padding-left: 0;
        border-left: none;
    }
    
    .employment-summary .category .category-item.active::before {
        width: 100%;
        height: 2px;
        top: auto;
        bottom: 0;
        left: 0;
    }
    
    .employment-summary .description {
        padding: 0 20px;
    }
    
    .showcase-screen {
        padding: 80px 0;
    }
    
    .showcase-item {
        width: 100%;
        height: 240px;
        margin: 0 0 16px 0;
    }
    
    .showcase-item.size-50 {
        width: 100%;
    }
    
    .showcase-name {
        left: 16px;
    }
    
    .showcase-client {
        left: 16px;
    }
    
    .contact-screen {
        height: auto;
    }
    
    .contact-screen .screen-content {
        margin: 80px 0;
    }
    
    .contact-btn {
        width: auto;
        height: 64px;
    }
    
    .contact-btn p {
        font-size: 16px;
        letter-spacing: 0.2px;
    }
    
    .contact-btn .icon-btn {
        width: 64px;
    }
    
    
    /* Work page */
    
    .content {
        padding-top: 120px;
        gap: 40px;
    }
    
    .text {
        padding: 0 20px;
    }
    
    .text h4 {
        font: 700 32px/1.2 "Raleway", Helvetica, Arial, sans-serif;
    }
    
    .work-img-container {
        width: calc(100% - 20px - 20px);
        height: 320px;
    }
    
    .work-img-container.full {
        width: 100%;
    }
    
    .work-img-row {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: center;
    }
    
    .work-img-row .text {
        padding-top: 0;
    }
    
    .work-img-row .work-img-container {
        height: 320px;
    }
    
    .work-img-group .work-img-container {
        margin: 0 20px;
    }
    
    .section-content {
        padding: 40px 0;
    }
    
    .credit {
        margin-top: 0;
        padding: 0 20px;
        flex-direction: column;
    }
    
    .end-content {
        padding: 80px 0;
    }
    
}


.cursor-container {
    position: absolute;
    width: 100%;
    height: 100%;

    g {
        transform-origin: center center;
    }
}