/* 
    Made by JACodes
*/
:root{
    --h1TextSize: 3.15em;
    --h2TextSize: 2.25em;
    --h3TextSize: 1.8em;
    --h4TextSize: 1.35em;
    --h5TextSize: 1.17em;
    --pTextSize: 0.99em;
    --smTextSize: 0.76em;

    --bgCol1 : #f1f1f1;
    --bgCol2 : #ffffff;
    --bgCol3 : #242424;
    --shadowCol : #0000003d;

    --textCol1 : #242424;
    --textCol2 : #e9e9e9;
    --figureTitleCol : #e9e9e9;
}

::-webkit-scrollbar{
    width: 0;
}

::-moz-selection{
    background-color: var(--bgCol3);
    color: var(--textCol2);
}

::selection{
    background-color: var(--bgCol3);
    color: var(--textCol2);
}

html,
body{
    margin: 0;
    font-size: var(--pTextSize);
    -webkit-scroll-snap-type: y mandatory;
        -ms-scroll-snap-type: y mandatory;
            scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

h1 { font-size: var(--h1TextSize); }
h2, .fs-h2 { font-size: var(--h2TextSize); font-weight: bold; }
h3, .fs-h3 { font-size: var(--h3TextSize); font-weight: bold; }
h4, .fs-h4 { font-size: var(--h4TextSize); font-weight: bold; }
h5, .fs-h5 { font-size: var(--h5TextSize); font-weight: bold; }
p { font-size: var(--pTextSize); }
small { font-size: var(--smTextSize); }


@font-face {
    font-family: 'imbue';
    src: url('../font/Imbue_14pt-Regular.ttf');
    font-display: swap;
}
@font-face {
    font-family: 'imbue';
    src: url('../font/Imbue_14pt-Bold.ttf');
    font-weight: bold;
    font-display: swap;
}
@font-face {
    font-family: 'nato';
    src: url('../font/NotoSansDisplay_SemiCondensed-Regular.ttf');
    font-display: swap;
}
@font-face {
    font-family: 'nato';
    src: url('../font/NotoSansDisplay_SemiCondensed-Italic.ttf');
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'nato';
    src: url('../font/NotoSansDisplay_SemiCondensed-Bold.ttf');
    font-weight: bold;
    font-display: swap;
}
.fw-normal{
    font-weight: normal;
}

.ff-imbue{
    font-family: 'imbue';
}

* {
    font-family: 'nato';
    color: var(--textCol1);
}

a{
    text-decoration: none;
}

.loading{
    position: fixed;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%; height: 100%;
    text-align: center;
    background-color: var(--bgCol1);
    z-index: 20;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px;
    -webkit-transition: opacity 0.5s ease-out;
    -o-transition: opacity 0.5s ease-out;
    -moz-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
}
.loading.disable{
    pointer-events: none;
    opacity: 0;
}
.loading > div{
    width: 30vh;
}
.loader{
    position: relative;
    display: block;
    width: 100%;
    height: 8px;
    border: 1px solid var(--textCol1);
}
.loader > i{
    position: absolute;
    top: 0; left: 0;
    width: 0%; height: 100%;
    background-color: var(--textCol1);
    -webkit-transition: width 0.5s linear;
    -o-transition: width 0.5s linear;
    -moz-transition: width 0.5s linear;
    transition: width 0.5s linear;
}

button,
.btn{
    font-size: var(--pTextSize);
    cursor: pointer;
    background-color: var(--bgCol1);
    border: 1px solid var(--bgCol3);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.btn{
    display: inline-block;
    padding: 5px 20px 5px 20px;
}

button:hover,
.btn:hover{
    -webkit-box-shadow: 0 3px 8px -5px var(--bgCol3);
       -moz-box-shadow: 0 3px 8px -5px var(--bgCol3);
            box-shadow: 0 3px 8px -5px var(--bgCol3);
}
button:active,
.btn:active{
    background-color: var(--bgCol3);
    color: var(--textCol2);
}

img{
    -o-object-position: center;
       object-position: center;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    width: 100%; height: 100%;
    -webkit-filter: grayscale(100%) contrast(110%);
            filter: grayscale(100%) contrast(110%);
}

.colored{
    -webkit-filter: none !important;
            filter: none !important;
}
.colored2{
    -webkit-filter: drop-shadow(0 2px 3px var(--shadowCol)) !important;
            filter: drop-shadow(0 2px 3px var(--shadowCol)) !important;
}

hr{opacity: 0.4;}

nav,
footer{
    position: fixed;
    width: 100%;
    padding: 0 4pc 0 4pc;
    background-color: var(--bgCol2);
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 4pc;
    z-index: 10;
    -webkit-transition: background 0.2s;
    -o-transition: background 0.2s;
    -moz-transition: background 0.2s;
    transition: background 0.2s;
}

nav{
    top: 0; left: 0;
}
footer{
    bottom: 0; left: 0;
}

.navigations > .section-figure-title{
    display: none;
}

.mobile-menu{
    position: relative;
    display: none;
    font-size: var(--h4TextSize);
    width: -webkit-calc(var(--h4TextSize) * 1.2);
    width: -moz-calc(var(--h4TextSize) * 1.2);
    width: calc(var(--h4TextSize) * 1.2); height: -webkit-calc(var(--h4TextSize) * 1.2); height: -moz-calc(var(--h4TextSize) * 1.2); height: calc(var(--h4TextSize) * 1.2);
}
.mobile-menu:active > .open,
.mobile-menu:active > .close{
    color: var(--textCol2);
}
.mobile-menu > .open,
.mobile-menu > .close{
    top: 50%; left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: -o-transform 0.3s;
    -moz-transition: transform 0.3s, -moz-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s, -moz-transform 0.3s, -o-transform 0.3s;
}
.mobile-menu > .close{
    -webkit-transform: translate(-50%, -50%) scale(0);
       -moz-transform: translate(-50%, -50%) scale(0);
        -ms-transform: translate(-50%, -50%) scale(0);
         -o-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
}
.mobile-menu.active > .open{
    -webkit-transform: translate(-50%, -50%) scale(0);
       -moz-transform: translate(-50%, -50%) scale(0);
        -ms-transform: translate(-50%, -50%) scale(0);
         -o-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
}
.mobile-menu.active > .close{
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.btn-themer{
    border: none;
    background-color: transparent;
}
.btn-themer:hover{
    -webkit-box-shadow: unset;
       -moz-box-shadow: unset;
            box-shadow: unset;
}
.btn-themer:active{
    background-color: unset;
    color: unset;
}
.btn-themer > i{
    display: none;
}

section{
    position: relative;
    background-color: var(--bgCol1);
    margin: auto;
    width: 100%; height: 100vh;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    border: 4pc solid var(--bgCol2);
    scroll-snap-align: center;
    scroll-snap-stop: always;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-transition: background 0.2s, border 0.2s;
    -o-transition: background 0.2s, border 0.2s;
    -moz-transition: background 0.2s, border 0.2s;
    transition: background 0.2s, border 0.2s;
}

.section-content{
    width: 100%;
    max-height: 100%;
    margin: auto 0 auto 0;
    padding: 15px -webkit-calc(40% + 50px) 15px 50px;
    padding: 15px -moz-calc(40% + 50px) 15px 50px;
    padding: 15px calc(40% + 50px) 15px 50px;
    overflow-y: auto;
    -ms-scroll-chaining: chained;
        overscroll-behavior: auto;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}
section.reverse > .section-content{
    padding: 10px 50px 10px -webkit-calc(40% + 50px);
    padding: 10px 50px 10px -moz-calc(40% + 50px);
    padding: 10px 50px 10px calc(40% + 50px);
}

.section-figure{
    position: absolute;
    top: 0; right: 0;
    width: 40%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    background-color: var(--bgCol3);
}
section.reverse > .section-figure{
    right: auto; left: 0;
}
.section-figure > iframe,
.section-figure > video{
    pointer-events: all;
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
    width: 100%; height: 100%;
}
.section-figure > video{
    -o-object-fit: cover;
       object-fit: cover;
}
.section-figure > iframe:hover ~ .section-figure-title,
.section-figure > video:hover ~ .section-figure-title{
    opacity: 0;
}

.section-figure-title{
    position: absolute;
    bottom: 0; right: 20px;
    color: var(--textCol2);
    font-size: -webkit-calc(var(--h1TextSize) * 1.5);
    font-size: -moz-calc(var(--h1TextSize) * 1.5);
    font-size: calc(var(--h1TextSize) * 1.5);
    font-weight: bold;
    line-height: 100%;
    padding: 5px;
    z-index: 1;
    text-transform: uppercase;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    -webkit-transform: rotate(180deg);
       -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.section-figure-title::before,
.section-figure-title::after{
    content: "";
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    z-index: -1;
}
.section-figure-title::before{
    background-color: var(--bgCol3);
    opacity: 0.3;
}
.section-figure-title::after{
    border: 1px solid var(--bgCol3);
    opacity: 0.4;
}
section.reverse > .section-figure > .section-figure-title{
    right: auto; left: 20px;
}

.content-title{
    font-family: 'imbue';
    position: relative;
    padding-left: 50px;
}
.content-title::after{
    position: absolute;
    content: "";
    top: 50%; left: -10px;
    width: 50px; height: 2px;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
    background-color: var(--textCol1);
}

.what-am-i-parent{
    position: relative;
}
.what-am-i{
    opacity: 0;
    position: absolute;
    width: 0; height: 0;
    overflow: hidden;
    -webkit-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    transition: opacity 0.5s;
}
.what-am-i.active{
    position: static;
    opacity: 1;
}

.skill-container{
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 5px 0 5px 0;
}
.skill-title,
.skill-bar,
.skill-percent{
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 5px 0 5px;
}
.skill-title{
    max-width: 50%;
    word-wrap: break-word;
}
.skill-bar{
    position: relative;
    width: 100%;
    height: 10px;
    border: 1px solid var(--textCol1);
}
.skill-bar > i{
    position: absolute;
    top: 0; left: 0;
    background-color: var(--textCol1);
    width: 50%;
    height: 100%;
}
.skill-percent{
    margin-left: auto;
}

.resume-timeline{
    border-left: 2px solid var(--bgCol3);
    padding-left: 10px;
}
.resume-timeline > li{
    padding-left: 0;
    list-style: none;
}


.portfolio-btn-container{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.portfolio-btn-container > p{
    width: 100%;
    margin-bottom: 5px;
}
.portfolio-btn{
    width: 6pc;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    margin: 5px;
}
.portfolio-btn.active{
    -webkit-box-shadow: 0 3px 8px -5px var(--bgCol3);
       -moz-box-shadow: 0 3px 8px -5px var(--bgCol3);
            box-shadow: 0 3px 8px -5px var(--bgCol3);
    background-color: var(--bgCol3);
    color: var(--textCol2);
    pointer-events: none;
}
.portfolio-card{
    position: relative;
    padding: 10px;
    height: 300px;
    overflow: hidden;
    -webkit-transition: width 0s, height 0s, padding 0s;
    -o-transition: width 0s, height 0s, padding 0s;
    -moz-transition: width 0s, height 0s, padding 0s;
    transition: width 0s, height 0s, padding 0s;
    -webkit-transition-delay: 0s, 0s, 0s;
       -moz-transition-delay: 0s, 0s, 0s;
         -o-transition-delay: 0s, 0s, 0s;
            transition-delay: 0s, 0s, 0s;
}
.portfolio-card.disabled{
    width: 0; height: 0;
    padding: 0;
    -webkit-transition-delay: 0.3s, 0.3s, 0.3s;
       -moz-transition-delay: 0.3s, 0.3s, 0.3s;
         -o-transition-delay: 0.3s, 0.3s, 0.3s;
            transition-delay: 0.3s, 0.3s, 0.3s;
}
.portfolio-card > picture > img{
    -webkit-filter: drop-shadow(0 2px 3px var(--shadowCol)) grayscale(100%) contrast(110%);
            filter: drop-shadow(0 2px 3px var(--shadowCol)) grayscale(100%) contrast(110%);
    -webkit-transform: none;
       -moz-transform: none;
        -ms-transform: none;
         -o-transform: none;
            transform: none;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: -o-transform 0.3s;
    -moz-transition: transform 0.3s, -moz-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s, -moz-transform 0.3s, -o-transform 0.3s;
}
.portfolio-card.disabled > img{
    -webkit-transform: translateY(110%);
       -moz-transform: translateY(110%);
        -ms-transform: translateY(110%);
         -o-transform: translateY(110%);
            transform: translateY(110%);
}
.portfolio-title{
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    top: 50%; left: 50%;
    width: -webkit-calc(100% - 20px);
    width: -moz-calc(100% - 20px);
    width: calc(100% - 20px); height: -webkit-calc(100% - 20px); height: -moz-calc(100% - 20px); height: calc(100% - 20px);
    background-color: var(--bgCol3);
    color: var(--textCol2);
    text-align: center;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0);
       -moz-transform: translate(-50%, -50%) scale(0);
        -ms-transform: translate(-50%, -50%) scale(0);
         -o-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
    -webkit-transition: opacity 0s, -webkit-transform 0.3s, -webkit-border-radius 0.25s;
    transition: opacity 0s, -webkit-transform 0.3s, -webkit-border-radius 0.25s;
    -o-transition: opacity 0s, border-radius 0.25s, -o-transform 0.3s;
    -moz-transition: transform 0.3s, opacity 0s, border-radius 0.25s, -moz-transform 0.3s, -moz-border-radius 0.25s;
    transition: transform 0.3s, opacity 0s, border-radius 0.25s;
    transition: transform 0.3s, opacity 0s, border-radius 0.25s, -webkit-transform 0.3s, -moz-transform 0.3s, -o-transform 0.3s, -webkit-border-radius 0.25s, -moz-border-radius 0.25s;
    -webkit-transition-delay: 0s, 0.3s, 0s;
       -moz-transition-delay: 0s, 0.3s, 0s;
         -o-transition-delay: 0s, 0.3s, 0s;
            transition-delay: 0s, 0.3s, 0s;
}
.portfolio-title > i{
    position: absolute;
    top: 5px; right: 5px;
    color: var(--textCol2);
}
.portfolio-card:hover > .portfolio-title{
    opacity: 0.9;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    -webkit-transform: translate(-50%, -50%) scale(1);
       -moz-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
         -o-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    -webkit-transition-delay: 0s, 0s, 0.1s;
       -moz-transition-delay: 0s, 0s, 0.1s;
         -o-transition-delay: 0s, 0s, 0.1s;
            transition-delay: 0s, 0s, 0.1s;
}
.portfolio-sticky{
    margin-top: 75px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}
.portfolio-rating{
    position: relative;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.portfolio-rating > i.cover{
    position: absolute;
    top: 0; right: 0;
    background-color: var(--bgCol1);
    height: 100%;
}

.contact-link > i{
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 3px;
    width: -webkit-calc(var(--pTextSize) * 2);
    width: -moz-calc(var(--pTextSize) * 2);
    width: calc(var(--pTextSize) * 2);
    height: -webkit-calc(var(--pTextSize) * 2);
    height: -moz-calc(var(--pTextSize) * 2);
    height: calc(var(--pTextSize) * 2);
    background-color: var(--bgCol3);
    color: var(--textCol2);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.contact-link:hover > i{
    background-color: var(--bgCol2);
    color: var(--textCol1);
    -webkit-box-shadow: 0 3px 8px -5px var(--bgCol3);
       -moz-box-shadow: 0 3px 8px -5px var(--bgCol3);
            box-shadow: 0 3px 8px -5px var(--bgCol3);
}
.contact-link:active > i{
    -webkit-transform: scale(0.9);
       -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
         -o-transform: scale(0.9);
            transform: scale(0.9);
}











/* Tablet view */
@media only screen and (max-width: 992px){
    nav,
    footer{
        padding: 0 2pc 0 2pc;
    }
    .navigations{
        position: fixed;
        bottom: 4pc; left: 0;
        padding-top: 1pc;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
        width: 100%; height: -webkit-calc(100% - 8pc); height: -moz-calc(100% - 8pc); height: calc(100% - 8pc);
        background-color: var(--bgCol2);
        -webkit-transform: translateY(100%);
           -moz-transform: translateY(100%);
            -ms-transform: translateY(100%);
             -o-transform: translateY(100%);
                transform: translateY(100%);
        overflow: hidden;
        -webkit-transition: -webkit-transform 0.5s;
        transition: -webkit-transform 0.5s;
        -o-transition: -o-transform 0.5s;
        -moz-transition: transform 0.5s, -moz-transform 0.5s;
        transition: transform 0.5s;
        transition: transform 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
    }
    .navigations > .section-figure-title{
        display: block;
    }
    .navigations > a{
        display: block;
        font-size: var(--h4TextSize);
        margin-left: 1pc;
    }
    .navigations.active{
        -webkit-transform: none;
           -moz-transform: none;
            -ms-transform: none;
             -o-transform: none;
                transform: none;
    }

    .mobile-menu{
        display: block;
    }

    section{
        border-right: 2pc solid var(--bgCol2);
        border-left: 2pc solid var(--bgCol2);
    }
    .section-content{
        padding: 15px -webkit-calc(30% + 50px) 15px 50px;
        padding: 15px -moz-calc(30% + 50px) 15px 50px;
        padding: 15px calc(30% + 50px) 15px 50px;
    }
    section.reverse > .section-content{
        padding: 10px 50px 10px -webkit-calc(30% + 50px);
        padding: 10px 50px 10px -moz-calc(30% + 50px);
        padding: 10px 50px 10px calc(30% + 50px);
    }
    .section-figure{
        width: 30%;
    }

    .portfolio-btn-container{
        -webkit-justify-content: space-around;
            -ms-flex-pack: distribute;
                justify-content: space-around;
    }
    .portfolio-sticky{
        margin-top: 0;
    }
}

/* Mobile view*/
@media only screen and (max-width: 600px) {
    :root{
        --h1TextSize: 2.9925em;
        --h2TextSize: 2.1375em;
        --h3TextSize: 1.71em;
        --h4TextSize: 1.2825em;
        --h5TextSize: 1.1135em;
        --pTextSize: 0.93945em;
        --smTextSize: 0.7225em;
    }

    nav,
    footer{
        padding: 0 1pc 0 1pc;
        height: 2.5pc;
    }
    .navigations{
        bottom: 2.5pc; left: 0;
        width: 100%; height: -webkit-calc(100% - 5pc); height: -moz-calc(100% - 5pc); height: calc(100% - 5pc);
    }

    section{
        border: 2.5pc solid var(--bgCol2);
        border-right: 1pc solid var(--bgCol2);
        border-left: 1pc solid var(--bgCol2);
        overflow-y: auto;
        -ms-scroll-chaining: chained;
            overscroll-behavior: auto;
    }

    .section-content{
        max-height: -webkit-max-content;
        max-height: -moz-max-content;
        max-height: max-content;
        padding: 15px 20px 15px 20px;
        overflow-y: hidden;
        margin-top: 0;
    }
    section.reverse > .section-content{
        padding: 15px 20px 15px 20px;
    }
    .section-figure{
        position: relative;
        width: 100%;
        height: 350px;
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
           -moz-box-ordinal-group: 0;
            -ms-flex-order: -1;
                order: -1;
    }
}