/*-------------------------*\
|     Global settings       |
\*-------------------------*/

:root {
    /* Site Theme Colors */
    --clr-shade1: #dceffe;
    --clr-shade2: #59b3f8;
    --clr-shade3: #0984e3;
    --clr-shade4: #054b81;
    --clr-shade5: #01121f;
    --clr-shade6: #042433;
    /* Site Theme Colors in RGB format */
    --clr-shade1-rgb: 220, 239, 254;
    --clr-shade2-rgb: 89, 179, 248;
    --clr-shade3-rgb: 9, 132, 227;
    --clr-shade4-rgb: 5, 75, 129;
    --clr-shade5-rgb: 1, 18, 31;
    --clr-shade6-rgb: 4, 36, 51;

    --clr-accent: #eb7e13;
    --clr-accent-rgb: 235, 126, 19;

    /* Misc Colors Used */
    --clr-green: #347a28;
    --clr-offwhite: #f1fbfe;
    --clr-grey: #929292;

    --clr-grey-rgb: 146,146,146;

    --font-size-full: 18px;
    --font-size-1170: 16px;
    --font-size-767: 14px;
    --font-size-380: 12px;
}

html {
    font-family: 'Lato', sans-serif;
    text-rendering: optimizeLegibility;
    font-size: var(--font-size-full);
} @media only screen and (max-width: 1170px ) {
    html { font-size: var(--font-size-1170);}
} @media only screen and (max-width: 767px){
    html {font-size: var(--font-size-767); }
} @media only screen and (max-width: 380px) {
    html{ font-size: var(--font-size-380);}
}

* {
    padding: 0;
    margin: 0;
    text-align: left;
    box-sizing: border-box;
}
body {
    background: linear-gradient( #333 0% , #000 100%);
    -moz-background-image: -moz-linear-gradient( #333, #000);
    -webkit-background-image: -webkit-linear-gradient( #333 , #000 );
    text-align: center;
    width: 100%;
    height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Source Sans Pro', sans-serif;
    margin: 0;
    color: var(--clr-shade1);
}

h1 { font-size: 250%; font-weight: 200; }
h2 { font-size: 200%; }
h3 { font-size: 150%; }

p {margin-bottom: 10px;}

ul {
    font-size: 0;
}

li {
    font-size: var(--font-size-full);
} @media only screen and (max-width: 1170px) {
    li { font-size: var(--font-size-1170);}
} @media only screen and (max-width: 767px) {
    li { font-size: var(--font-size-767);}
} @media only screen and (max-width: 380px) {
    li { font-size: var(--font-size-380);}
}

.flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-item {
    display: block;
    overflow: hidden;
    flex: 5 1 0;
}

.flex-item.flex-half {
    flex: 3 1 0;
}

.row {
    max-width: 1140px;
    margin: 0 auto 0 auto;
    padding: 0 25px 0 25px;
    position: relative;
    z-index: 1;
} @media only screen and (max-width: 767px){
    .row { padding: 0 15px 0 15px; }
}

a:link, a:visited {
    color: var(--clr-shade4);
    text-decoration: none;
    border-bottom: 1px solid var(--clr-shade4);
}

a:hover, a:active {
    border-bottom: 0;
}

.clearfix  {
    content: '';
    display: table;
    height: 0;
    clear: both;
}

.fixheight {
    display: table;
    height: auto;
    width: 100%;
    clear: both;
}
#fullpage {
    height: 100%;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    z-index: 1;
}
.section {
    background: white;
    width: 100%;
    min-height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s, transform 0.4s ease-in-out;
    pointer-events: none;
    overflow-y: auto;
    overflow-x: hidden;

    z-index: 2;
    transform: perspective(300vw)  translateZ(0) rotateY(0) translateX(0);
}

.section * {
    visibility: hidden;
}

/*.section.selected,*/
input[data-anchor=hero]:checked ~ #fullpage .section[data-anchor=hero],
input[data-anchor=about]:checked ~ #fullpage .section[data-anchor=about],
input[data-anchor=skills]:checked ~ #fullpage .section[data-anchor=skills],
input[data-anchor=learned]:checked ~ #fullpage .section[data-anchor=learned],
input[data-anchor=portfolio]:checked ~ #fullpage .section[data-anchor=portfolio],
input[data-anchor=future]:checked ~ #fullpage .section[data-anchor=future],
input[data-anchor=contact]:checked ~ #fullpage .section[data-anchor=contact],
.section.selected
{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

input[data-anchor=hero]:checked ~ #fullpage .section[data-anchor=hero] * ,
input[data-anchor=about]:checked ~ #fullpage .section[data-anchor=about] * ,
input[data-anchor=skills]:checked ~ #fullpage .section[data-anchor=skills] * ,
input[data-anchor=learned]:checked ~ #fullpage .section[data-anchor=learned] * ,
input[data-anchor=portfolio]:checked ~ #fullpage .section[data-anchor=portfolio] * ,
input[data-anchor=future]:checked ~ #fullpage .section[data-anchor=future] * ,
input[data-anchor=contact]:checked ~ #fullpage .section[data-anchor=contact] *,
.section.selected *
{
    visibility: visible;
}

input[data-anchor=hero]:checked ~ nav label[data-anchor=hero],
input[data-anchor=about]:checked ~ nav label[data-anchor=about],
input[data-anchor=skills]:checked ~ nav label[data-anchor=skills],
input[data-anchor=learned]:checked ~ nav label[data-anchor=learned],
input[data-anchor=portfolio]:checked ~ nav label[data-anchor=portfolio],
input[data-anchor=future]:checked ~ nav label[data-anchor=future],
input[data-anchor=contact]:checked ~ nav label[data-anchor=contact]
{
    color: var(--clr-shade2);
    border-radius: 5px;
    border-bottom-color: var(--clr-shade2);
    margin-top: 10px;
}


/*-------------------------*\
|       Header/Nav          |
\*-------------------------*/

header {
    display:block;
    min-height: 100vh;
    background-color: var(--clr-shade6);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='376' height='376' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23086b7f' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%2313dbed'%3E%3Ccircle cx='769' cy='229' r='6'/%3E%3Ccircle cx='539' cy='269' r='6'/%3E%3Ccircle cx='603' cy='493' r='6'/%3E%3Ccircle cx='731' cy='737' r='6'/%3E%3Ccircle cx='520' cy='660' r='6'/%3E%3Ccircle cx='309' cy='538' r='6'/%3E%3Ccircle cx='295' cy='764' r='6'/%3E%3Ccircle cx='40' cy='599' r='6'/%3E%3Ccircle cx='102' cy='382' r='6'/%3E%3Ccircle cx='127' cy='80' r='6'/%3E%3Ccircle cx='370' cy='105' r='6'/%3E%3Ccircle cx='578' cy='42' r='6'/%3E%3Ccircle cx='237' cy='261' r='6'/%3E%3Ccircle cx='390' cy='382' r='6'/%3E%3C/g%3E%3C/svg%3E");
    animation: change-bg 15s infinite ease-in-out;
    text-align: right;
    position: relative;
}

@keyframes change-bg {
    0%,100% { background-position: 150px 75px; }
    25% { background-position: 75px 175px; }
    50% { background-position: 0 0; }
    75% { background-position: -150px -75px; }
}

.nav-checkbox, .nav-radio {
    display: none;
    visibility: hidden;
}
nav {
    display: block;
    position: fixed;
    left: 10px;
    top: 10px;
    height: 38px;
    width: 38px;
    min-height: 0;
    overflow:hidden;
    opacity: 0;
    background: var(--clr-shade) url("img/wave frame.svg") top right;
    background-size: auto 100%;
    transition: all 400ms ease;
}

nav .row ul {
    display: flex;
    justify-content: center;
    justify-items: center;
    align-content: center;
    height: 100%;
}

nav ul li {
    display: inline-block;
    vertical-align: center;
    white-space: nowrap;
    width: 0;
}

nav ul li:last-child {
    border-right: 0;
}

nav ul li label {
    display: block;
    color: var(--clr-shade2);
    font-size: 105%;
    font-family: 'Source Sans Pro', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    padding: 5px 10px 5px 10px;
    margin-top: 10px;
    margin-left: 15px;
    transition: border-bottom 0.2s, color 0.2s;
    border: 0;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    min-width: 100%;
}
nav ul li label:hover {
    color: var(--clr-shade1);
    border-radius: 5px;
    border-bottom-color: var(--clr-shade1);
    margin-top: 10px;
}
nav ul li label .iconify { font-size: 100%; margin-right: 15px; }
@media only screen and (max-width: 880px) {
    nav ul li label { font-size: 90%; padding: 5px 7px 5px 5px; }
    nav ul li label .iconify { font-size: 95%; margin-right: 10px; }
}

nav ul {
    height: 0;
    width: 0;
    transition: all 400ms ease-in;
}

#nav-enabled:checked ~ #fullpage .section { transform: perspective(300vw)  translateZ(-50vw) rotateY(45deg) translateX(30%); }

#nav-enabled:checked ~ nav ul { display: flex; height: 100%; width: 100%; }
#nav-enabled:checked ~ nav {
    display: block;
    height: 100vh;
    visibility: visible;
    width: 35%;
    box-sizing: border-box;
    left: 0;
    top: 0;
    opacity: 1;
    z-index: 998;
} @media only screen and (max-width: 740px ){
    #nav-enabled:checked ~ nav { width: 40%; }
}
#nav-enabled:checked ~ nav .row {
    margin-top: 58px;
    margin-bottom: 15px;
    box-sizing: border-box;
    height: calc( 100% - 58px );
    width: 100%;
    overscroll-behavior-y: contain;
    overflow-y: hidden;
    overflow-x: visible;
} @media only screen and (max-height: 400px ){
    #nav-enabled:checked ~ nav .row {
        overflow-y: auto;
        box-sizing: content-box;
        padding-right: 10px;
        box-shadow: inset 0 2px 2px 0 rgba(0,0,0,0.5);
    }
}
#nav-enabled:checked ~ nav div.row ul {
    flex-direction: column;
    font-size: 130%;
    min-height: 350px;
    box-sizing: border-box;
}

#nav-enabled:checked ~ nav li { font-size: 100%; min-width: calc( 100% - 40px ); }

.nav-control-container {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}
.nav-control, .nav-control .hamburger, .nav-control .hamburger:before, .nav-control .hamburger:after {
    display: block;
    border: 1px solid var(--clr-shade2);
    box-sizing: border-box;
}
.nav-control {
    width: 38px;
    height: 38px;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
    opacity: 1;
    transition: all 0.3s ease;
}
.nav-control:hover {
    cursor: pointer;
    background: linear-gradient(rgba(var(--clr-shade3-rgb),0.7) 10%, rgba(var(--clr-shade4-rgb),0.7 ) 50%);
    box-shadow: 0 0 2px 0 rgba( var(--clr-shade1-rgb) , 0.9), 0 0 2px 1px rgba(var(--clr-shade5-rgb),0.9);
}

.nav-control .hamburger, .nav-control .hamburger:before, .nav-control .hamburger:after {
    position: absolute;
    height: 0;
    width: 25px;
    border-radius: 2px;
    filter: none;
}
.nav-control .hamburger {
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.nav-control .hamburger:before, .nav-control .hamburger:after {
    content: '';
    left: -1px;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}
.nav-control .hamburger::before { top: -10px; }
.nav-control .hamburger::after { top: 8px; }

#nav-enabled:checked ~ .nav-control { background: linear-gradient(rgba(var(--clr-shade3-rgb),0.7) 10%, rgba(var(--clr-shade4-rgb),0.7 ) 50%); }

#nav-enabled:checked ~ .nav-control .hamburger { border: 0; }

#nav-enabled:checked ~ .nav-control .hamburger::before { left: 0; transform: translate(0,10px) rotate(225deg); }

#nav-enabled:checked ~ .nav-control .hamburger::after { left: 0; transform: translate(0,-8px) rotate(315deg); }

#nav-enabled:checked ~ #nav-control-enable,
#nav-disabled:checked ~ #nav-control-disable {
    opacity: 0;
    pointer-events: none;
}

.head-text-area {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    color: var(--clr-shade1);
    text-shadow: var(--clr-shade5) 3px 4px 6px;
    width: 100%;
    height: calc( 100% - 55px);
    justify-content: center;
    align-items: center;
    align-content: center;
    margin-top: 55px;
    pointer-events: none;
} @media screen and (max-width: 650px ) {
    .head-text-area { height: 100%; margin-top: 0; justify-content: center; flex-direction: column; }
}

.heading-text { padding-left: 50px; }
@media only screen and (max-width: 650px ) {
    .heading-text { padding-left: 0; }
}

header h1 {
    letter-spacing: 1px;
    word-spacing: 4px;
    font-size: 400%;
    z-index: 99;
}

header h3 { font-size: 130%; font-weight: 100; }

.logo-svg {
    width: 40vw;
    height: auto;
    max-height: 50vh;
    fill-opacity: 0;
    animation: logo-fill-it 1s ease forwards 1s;
}

.logo-svg .logo-main-box {
    stroke-dasharray: 8516;
    stroke-dashoffset: 8516;
    stroke: white;
    stroke-width: 2px;
    animation: logo-line-anim 4s ease forwards;
    filter: url(#f3);
}

.logo-silhoutte { filter: url(#f3); }

#xd-mask{ animation: logo-clear-mask 1s ease forwards 2s; }

@keyframes logo-line-anim {
    to { stroke-dashoffset: 0; stroke-width: 0; }
}

@keyframes logo-fill-it {
    from { fill-opacity: 0; }
    to { fill-opacity: 1; }
}

@keyframes logo-clear-mask {
    from { fill:black; }
    to { fill: white; }
}

/*-------------------------*\
|       Main Contents       |
\*-------------------------*/

section {
    min-height: 100vh;
    background-color: transparent;
    padding: 95px 0 40px 0;
    box-sizing: border-box;
    position: relative;
    color: var(--clr-shade1);
} @media only screen and (max-width: 767px){
    section { padding: 65px 0 10px 0; }
} @media only screen and (max-width: 650px), only screen and (max-height: 555px) {
    section { padding: 10px 0 10px 0; }
}
section::before, section::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
section::before {
    clip-path: polygon(0 58px, 58px 58px, 58px 0, 100% 0, 100% 100%, 0 100% );
    z-index: -1;
}
section::after { z-index: -2; background: var(--clr-shade6); }

h2 {
    display: block;
    text-align: center;
    height: 30px;
    padding-left: 50px;
    padding-top: 10px;
    margin-bottom: 60px;
    text-shadow: var(--clr-shade5) 2px 3px 6px;
} @media only screen and (max-width: 767px){
    h2 {
        height: 20px;
        padding-left: 20px;
        padding-top: 5px;
        margin-bottom: 40px;
    }
}

h2:after {
    content: " ";
    display: block;
    width: 50%;
    height: 0;
    border-bottom: 3px solid var(--clr-accent);
    box-shadow: 0 0 5px 0 rgba(var(--clr-shade3-rgb), 0.4);
    border-radius: 50%;
    margin: 0.2em auto;
} @media only screen and (max-width: 1170px ) {
    h2:after { width: 50%; }
} @media only screen and (max-width: 650px){
    h2:after { width: 75%; }
} @media only screen and (max-width: 767px){
    h2:after { margin: 15px auto; }
}


h2 ~ p, h2 ~ ul {
    width: 70%;
    margin-left: 15%;
    line-height: 170%;
} @media only screen and (max-width: 767px) {
    h2 ~ p, h2 ~ ul {
        width: 90%;
        margin: 0 auto;
    }
}

h2 svg {
    display: inline-block;
    font-size: 100%;
    margin-right: 10px;
    margin-left: -10px;

    box-sizing: border-box;
}

p { text-align: justify; }

.aboutme {
    position: relative;
}

.aboutme::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 304 304' width='304' height='304'%3E%3Cpath fill='%23086b7f' fill-opacity='0.5' d='M44.1 224a5 5 0 1 1 0 2H0v-2h44.1zm160 48a5 5 0 1 1 0 2H82v-2h122.1zm57.8-46a5 5 0 1 1 0-2H304v2h-42.1zm0 16a5 5 0 1 1 0-2H304v2h-42.1zm6.2-114a5 5 0 1 1 0 2h-86.2a5 5 0 1 1 0-2h86.2zm-256-48a5 5 0 1 1 0 2H0v-2h12.1zm185.8 34a5 5 0 1 1 0-2h86.2a5 5 0 1 1 0 2h-86.2zM258 12.1a5 5 0 1 1-2 0V0h2v12.1zm-64 208a5 5 0 1 1-2 0v-54.2a5 5 0 1 1 2 0v54.2zm48-198.2V80h62v2h-64V21.9a5 5 0 1 1 2 0zm16 16V64h46v2h-48V37.9a5 5 0 1 1 2 0zm-128 96V208h16v12.1a5 5 0 1 1-2 0V210h-16v-76.1a5 5 0 1 1 2 0zm-5.9-21.9a5 5 0 1 1 0 2H114v48H85.9a5 5 0 1 1 0-2H112v-48h12.1zm-6.2 130a5 5 0 1 1 0-2H176v-74.1a5 5 0 1 1 2 0V242h-60.1zm-16-64a5 5 0 1 1 0-2H114v48h10.1a5 5 0 1 1 0 2H112v-48h-10.1zM66 284.1a5 5 0 1 1-2 0V274H50v30h-2v-32h18v12.1zM236.1 176a5 5 0 1 1 0 2H226v94h48v32h-2v-30h-48v-98h12.1zm25.8-30a5 5 0 1 1 0-2H274v44.1a5 5 0 1 1-2 0V146h-10.1zm-64 96a5 5 0 1 1 0-2H208v-80h16v-14h-42.1a5 5 0 1 1 0-2H226v18h-16v80h-12.1zm86.2-210a5 5 0 1 1 0 2H272V0h2v32h10.1zM98 101.9V146H53.9a5 5 0 1 1 0-2H96v-42.1a5 5 0 1 1 2 0zM53.9 34a5 5 0 1 1 0-2H80V0h2v34H53.9zm60.1 3.9V66H82v64H69.9a5 5 0 1 1 0-2H80V64h32V37.9a5 5 0 1 1 2 0zM101.9 82a5 5 0 1 1 0-2H128V37.9a5 5 0 1 1 2 0V82h-28.1zm16-64a5 5 0 1 1 0-2H146v44.1a5 5 0 1 1-2 0V18h-26.1zm102.2 270a5 5 0 1 1 0 2H98v14h-2v-16h124.1zM242 149.9V160h16v34h-16v62h48v48h-2v-46h-48v-66h16v-30h-16v-12.1a5 5 0 1 1 2 0zM53.9 18a5 5 0 1 1 0-2H64V2H48V0h18v18H53.9zm112 32a5 5 0 1 1 0-2H192V0h50v2h-48v48h-28.1zm-48-48a5 5 0 0 1-9.8-2h2.07a3 3 0 1 0 5.66 0H178v34h-18V21.9a5 5 0 1 1 2 0V32h14V2h-58.1zm0 96a5 5 0 1 1 0-2H137l32-32h39V21.9a5 5 0 1 1 2 0V66h-40.17l-32 32H117.9zm28.1 90.1a5 5 0 1 1-2 0v-76.51L175.59 80H224V21.9a5 5 0 1 1 2 0V82h-49.59L146 112.41v75.69zm16 32a5 5 0 1 1-2 0v-99.51L184.59 96H300.1a5 5 0 0 1 3.9-3.9v2.07a3 3 0 0 0 0 5.66v2.07a5 5 0 0 1-3.9-3.9H185.41L162 121.41v98.69zm-144-64a5 5 0 1 1-2 0v-3.51l48-48V48h32V0h2v50H66v55.41l-48 48v2.69zM50 53.9v43.51l-48 48V208h26.1a5 5 0 1 1 0 2H0v-65.41l48-48V53.9a5 5 0 1 1 2 0zm-16 16V89.41l-34 34v-2.82l32-32V69.9a5 5 0 1 1 2 0zM12.1 32a5 5 0 1 1 0 2H9.41L0 43.41V40.6L8.59 32h3.51zm265.8 18a5 5 0 1 1 0-2h18.69l7.41-7.41v2.82L297.41 50H277.9zm-16 160a5 5 0 1 1 0-2H288v-71.41l16-16v2.82l-14 14V210h-28.1zm-208 32a5 5 0 1 1 0-2H64v-22.59L40.59 194H21.9a5 5 0 1 1 0-2H41.41L66 216.59V242H53.9zm150.2 14a5 5 0 1 1 0 2H96v-56.6L56.6 162H37.9a5 5 0 1 1 0-2h19.5L98 200.6V256h106.1zm-150.2 2a5 5 0 1 1 0-2H80v-46.59L48.59 178H21.9a5 5 0 1 1 0-2H49.41L82 208.59V258H53.9zM34 39.8v1.61L9.41 66H0v-2h8.59L32 40.59V0h2v39.8zM2 300.1a5 5 0 0 1 3.9 3.9H3.83A3 3 0 0 0 0 302.17V256h18v48h-2v-46H2v42.1zM34 241v63h-2v-62H0v-2h34v1zM17 18H0v-2h16V0h2v18h-1zm273-2h14v2h-16V0h2v16zm-32 273v15h-2v-14h-14v14h-2v-16h18v1zM0 92.1A5.02 5.02 0 0 1 6 97a5 5 0 0 1-6 4.9v-2.07a3 3 0 1 0 0-5.66V92.1zM80 272h2v32h-2v-32zm37.9 32h-2.07a3 3 0 0 0-5.66 0h-2.07a5 5 0 0 1 9.8 0zM5.9 0A5.02 5.02 0 0 1 0 5.9V3.83A3 3 0 0 0 3.83 0H5.9zm294.2 0h2.07A3 3 0 0 0 304 3.83V5.9a5 5 0 0 1-3.9-5.9zm3.9 300.1v2.07a3 3 0 0 0-1.83 1.83h-2.07a5 5 0 0 1 3.9-3.9zM97 100a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-48 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 96a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-144a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-96 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm96 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-32 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM49 36a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-32 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM33 68a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 240a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm80-176a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm112 176a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM17 180a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM17 84a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6z'%3E%3C/path%3E%3C/svg%3E");
    background-color: var(--clr-shade6);
    animation: change-bg 15s infinite ease-in-out;
}

.floatingbox {
    margin-top: 30px;
    z-index: 2;
    background: linear-gradient( rgba(var(--clr-shade2-rgb),0.3) , rgba(var(--clr-shade2-rgb),0.2) );
    padding: 2em 4em;
    border-radius: 2em;
    box-shadow: 0 0 12px 0 rgba( 25,25,25,0.7);
    color:  var(--clr-shade1);
    font-family: 'Lato', sans-serif;
    position: relative;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.floatingbox a {
    color: var(--clr-accent);
    border-color: var(--clr-shade1);
    border-style: dashed;
    border-width: 0 0 1px 0;
    font-weight: bold;
    display: inline-block;
    line-height: 1.2em;
    margin: 0;
    transition: transform 0.2s ease, border-style 0.2s ease;
}
.floatingbox a:hover {
    border-style: solid;
    transform: scale(1.05) translateY(-0.15em);
}

.mepic {
    display: block;
    width: 90%;
    font-size: 80%;
    text-align: center;
    position: relative;
}
.mepic img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 1px 2px 8px 2px rgba(var(--clr-shade5-rgb), 0.51);
    margin-bottom: 10px;
    z-index: 2;
}

.mepic p {
    padding-bottom: 1em;
    border-bottom: 2px solid var(--clr-accent);
    border-radius: 25%;
    text-align: center;
}
@media only screen and (max-width: 600px) {
    .aboutme .flex-container { flex-direction: column; }
    .aboutme .flex-item { flex: auto; }
    .aboutme .flex-item.flex-half { flex: auto; }
    .mepic { width: 100%; }
    .mepic img { width: 70%; margin: auto; }
    .mepic p { margin: 25px; }
}

.myskills::before {
    background: linear-gradient(var(--clr-shade2) 20% , var(--clr-shade6) 100%);
    opacity: 0.4;
    mask-image: url("img/cityscape.svg");
    -webkit-mask-image: url("img/cityscape.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: bottom;
    -webkit-mask-size: 100%;
    -webkit-mask-attachment: fixed;
}

.skills {
    text-align: center;
    box-sizing: border-box;
    background: rgba( var(--clr-shade2-rgb), 0.5);
    box-shadow: 4px 2px 8px 4px rgba( var(--clr-shade5-rgb),0.5);
    border-radius: 20px;
    padding: 1em 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.skills h3 {
    text-align: center;
    margin-bottom: 20px;
    text-shadow: var(--clr-shade5) 2px 3px 6px;
}

.skills h3:after  {
    display: block;
    content: '';
    width: 60%;
    margin: .2em auto;
    border-bottom: 2px solid var(--clr-accent);
    box-shadow: 0 0 5px 0 rgba(var(--clr-shade3-rgb), 0.6);
    border-radius: 50%;
}

.myskills .col {
    z-index: 5;
    position: relative;
    transition: all 350ms ease;
}
.myskills .col:hover {
    transform: scale(1.25);
    z-index: 20;
}
.myskills .col .skill {
    height: 0;
    width: 0;
    margin: 0 auto;
    opacity: 0;
    overflow: hidden;
    transition: all 500ms ease-in-out, visibility 0ms;
}
.myskills .col:hover .skill {
    height: 2.4em;
    width: 90%;
    margin: 1em auto;
    opacity: 1;
}

.myskills .col:hover .skills {
    background: rgba( var(--clr-shade2-rgb), 0.7);
    z-index:20;
}

.skill {
    display: block;
    width: 90%;
    height: 2.4em;
    position: relative;
    background: linear-gradient(#555555 , #252525);
    border-radius: 2.4em;
    margin: 10px auto;
    font-size: 70%;
}
.skill .percentage, .skill .text {
    display: inline-block;
    position: absolute;
    top: .6em;
    box-sizing: border-box;
}

.skill .percentage {
    float: right;
    right: 0;
    padding-right: 3em;
}

.skill .text {
    float: left;
    left: 0;
    padding-left: 2em;
    white-space: nowrap;
}

.skill .bar {
    display: block;
    position: absolute;
    top: .2em;
    height: 2em;
    left: 0;
    width: calc( 100% - .4em );
    margin: 0 .2em;
    background: linear-gradient(#252525 , #555555);
    box-shadow: inset 0 -1px 6px -1px #000;
    border-radius: 2em;
    overflow: hidden;
}

.skill .bar .progress {
    display: block;
    height: 100%;
    background: linear-gradient( var(--clr-shade4), var(--clr-shade2) 20%, var(--clr-shade3) 30%, var(--clr-shade4) 100%);
    box-shadow: 0 0 8px 1px #000;
    transform: translateX( calc(-100% + 15px ));
    transition: transform 800ms ease;
}

.skills:hover .skill .bar .progress { animation: bringin 1300ms ease; transform: translateX(0); }

@keyframes bringin {
    0%,40% { transform: translateX(-90%); }
    100% { transform: translateX(0); }
}

.portfolio::before {
    background: var(--clr-shade2);
    mask-image: url("img/hexagon style.svg");
    -webkit-mask-image: url("img/hexagon style.svg");
    -webkit-mask-repeat: repeat;
    -webkit-mask-size: 50vw;
    opacity: 0.1;
}

.portfolio figure {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    margin: 0;
    padding: 15px 25px;
    box-sizing: border-box;
    background: rgba(var(--clr-shade1-rgb), 0.2);
    border-radius: 15px;
} @media only screen and (max-width: 767px) {
    .portfolio figure {
        padding: 5px 10px;
        font-size: 80%;
        text-align: center;
    }
}

.portfolio figure img {
    width: 100%;
    height: auto;
    margin-right: 50px;
} @media only screen and (max-width: 767px){
    .portfolio figure img {
        width: 95%;
        margin-left: auto;
    }
}

.portfolio figure p {
    margin: 0 auto 10px auto;
    display: block;
    width: 90%;
    text-align: center;
    white-space: normal;
} @media only screen and (max-width: 480px) {
    .portfolio figure p { width: 90%; }
}

.future::before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1NiIgaGVpZ2h0PSIxMDAiPgo8cmVjdCB3aWR0aD0iNTYiIGhlaWdodD0iMTAwIiBmaWxsPSJ0cmFuc3BhcmVudCI+PC9yZWN0Pgo8cGF0aCBkPSJNMjggNjZMMCA1MEwwIDE2TDI4IDBMNTYgMTZMNTYgNTBMMjggNjZMMjggMTAwIiBmaWxsPSJub25lIiBzdHJva2U9IiM1OWIzZjgiIHN0cm9rZS13aWR0aD0iMiI+PC9wYXRoPgo8cGF0aCBkPSJNMjggMEwyOCAzNEwwIDUwTDAgODRMMjggMTAwTDU2IDg0TDU2IDUwTDI4IDM0IiBmaWxsPSJub25lIiBzdHJva2U9IiMwOTg0ZTMiIHN0cm9rZS13aWR0aD0iMiI+PC9wYXRoPgo8L3N2Zz4=");
    background-repeat: repeat;
    background-size: 25px auto;
    filter:  opacity(0.1);
}

.whativelearned::before {
    background: var(--clr-shade2);
    mask-image: url("img/tech wave.svg");
    -webkit-mask-image: url("img/tech wave.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100vw;
    opacity: 0.2;
}



/*-------------------------*\
|          Footer           |
\*-------------------------*/

footer {
    color: var(--clr-grey);
    width: 100%;
    min-height: 100%;
    box-sizing: border-box;
    position: relative;
    background: url("img/chalkboard.jpg") repeat;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-direction: column;
}

footer .row{ width: 100%; }

footer .row:first-child { flex-grow: 1; margin-top: 5em; }

.foot-links {
    margin: 25px 0 0 25%;
    font-size: 100%;
    font-weight: 100;
    font-family: 'Lato', sans-serif;
}

.social-links {
    display: flex;
    justify-content: center;
    align-content: center;
} @media only screen and (max-width:571px) {
    .social-links { margin-right: 10%; }
}

.social-links li a { font-size: 120%; }

footer ul { flex-direction: row; list-style: none; }

footer li { margin: 10px; }
footer h3 {
    display: block;
    text-align: center;
    margin: 0 0 3vh 0;
}

footer a:link, footer a:visited {
    color: var(--clr-grey);
    text-decoration: none;
    border-bottom: 0;
}

footer a:hover, footer a:active { color: var(--clr-shade1); }

.social-links li {
    display: inline-block;
    overflow: hidden;
    width: 22px;
    height: 35px;
    white-space: nowrap;
    margin: 20px 5px 0 5px;
}

.social-links li a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.social-links li .noscript {
    display: block;
    font-size: 50%;
    position: absolute;
    top: -2.5em;
    left: 50%;
    z-index: 1;
    box-sizing: border-box;
}

.social-links li svg { position: absolute; top: 10px; }

.social-links li:hover { overflow: visible; }
.social-links li:hover .noscript {
    background: rgba( var(--clr-shade3-rgb), 0.5);
    padding: .5em 1em;
    border-radius: 1em;
    transform: translateX(-50%);
}

.copyright {
    margin: 2vh auto 55px auto;
    font-size: 60%;
    text-align: center;
    bottom: 0;
    width: 100%;
}

#contactme { position: relative; }

#contact-response {
    position: absolute;
    top: 0;
    left: 50%;
    pointer-events: none;
    width: auto;
    height: auto;
    min-height: 0;
    box-sizing: border-box;
    padding: 15px 50px;
    background: var(--clr-green);
    color: var(--clr-shade1);
    border-radius: 15px;
    overflow: visible;
    z-index: 20;
    transform: translate(-50%,-65px);
    opacity: 0;
}
#contact-response::after,
#contact-response::before {
    display: block;
    content: '';
    position: absolute;
    background: var(--clr-green);
    width: 20px;
    height: 20px;
    padding: 0;
    bottom: -3px;
    right: 50%;
    z-index: -1;
}

#contact-response::after { transform: skew(45deg) rotate(45deg); }
#contact-response::before { transform: skew(-45deg) rotate(-45deg) translate(20px, 20px); }

.contact-form.disabled #contact-response.success { animation: show-success-disabled 4s; }
@keyframes show-success-disabled {
    1% { opacity: 1; transform: translate(-50%,200px); }
    10% { transform: translate(-50%,-65px); }
    70% { opacity: 1; }
    80% { transform: translate(-50%,-65px); opacity: 0.1; }
    100% { transform: translate(-50%,300px); opacity: 0; }
}

.contact-form #contact-response.success { animation: show-success 4s; transform: translate(-50%,245px); }
@keyframes show-success {
    1% { opacity: 1; transform: translate(-50%,350px); }
    10% { transform: translate(-50%,245px); }
    70% { opacity: 1; }
    80% { transform: translate(-50%,245px); opacity: 0.1; }
    100% { transform: translate(-50%,350px); opacity: 0; }
}

#contact-response.success.error, #contact-response.success.error::before, #contact-response.success.error::after { background: darkred; }

.contact-form {
    overflow: hidden;
    display: flex;
    height: 350px;
    justify-content: space-between;
    padding-top: 20px;
    align-items: center;
    flex-direction: column;
    width: 500px;
    position: relative;
    background: rgba( var(--clr-grey-rgb) , 0.1 );
    box-shadow: 0 0 5px 0 rgba( var(--clr-shade1-rgb), 0.9);
    border-radius: 25px;
    margin: 10px auto;
    transition: height 0.6s ease;
} @media only screen and (max-width: 650px) {
    .contact-form { width: 320px; }
}

.contact-form.disabled { height: 50px; overflow: visible; }

.contact-form.disabled > div { display: none; }
.contact-form.disabled > #contact-response { display: block; }

.contact-form > div {
    display: block;
    width: 90%;
    position: relative;
    min-height: 50px;
    overflow: hidden;
    font-size: 80%;
}

.contact-form input, .contact-form textarea { color: var(--clr-shade1); background: none; }

.contact-form input:focus, .contact-form textarea:focus { outline: none; }

.contact-form input{
    width: 100%;
    height: calc(100% - 30px);
    padding: 0;
    border: none;
    position: absolute;
    bottom: 5px;
    left: 5px;
} @media only screen and (max-width: 767px ) {
    .contact-form input { bottom: 3px; }
}@media only screen and (max-width: 380px ) {
    .contact-form input { bottom: 2px; }
}

.contact-form label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-bottom: 1px solid rgba(var(--clr-shade1-rgb), 0.5);
}

.contact-form label::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 100%;
    width: 100%;
    border-bottom: 2px solid var(--clr-shade2);
    transform: translateX(-100%);
    transition: transform 0.6s ease, opacity 0.1s;
}

.contact-form .label-text {
    position: absolute;
    bottom: 5px;
    left: 0;
    transition: transform 0.3s ease, font-size 0.3s ease, top 0.3s ease;
    transform: translateX( 5px );
    width: 100%;
}

.label-info {
    font-size: 80%;
    color: red;
    float: right;
    display: block;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: bold;
    text-align:left;
    width: 20%;
}

.contact-form div input:focus ~ label .label-text,
.contact-form div input:valid ~ label .label-text,
.contact-form div textarea:focus ~ label .label-text,
.contact-form div textarea:valid ~ label .label-text { font-size: 110%; color: var(--clr-shade2); }

.contact-form div input:focus ~ label .label-text,
.contact-form div input:valid ~ label .label-text { transform: translateY(-100%) translateX(0); }

.contact-form div input:focus ~ label::after,
.contact-form div input:valid ~ label::after,
.contact-form div textarea:focus ~ label::after,
.contact-form div textarea:valid ~ label::after,
.contact-form div textarea:focus ~ .right-roll-in,
.contact-form div textarea:valid ~ .right-roll-in { transform: translateX(0%); }

.contact-button {
    display: block;
    width: 100%;
    text-align: center;
}
.contact-form input[type="submit"] {
    all: unset;
    display: inline-block;
    background: linear-gradient(rgba(var(--clr-shade3-rgb), 0.5), rgba(var(--clr-shade4-rgb), 0.5)) ;
    color: var(--clr-shade1);
    box-shadow: 0 12px 12px -6px rgba(0,0,0,.5);
    font-weight: 400;
    padding: 10px 35px;
    text-align: center;
    vertical-align: middle;
    margin: 0 auto 0 auto;
    height: auto;
    width: auto;
    white-space: nowrap;
    border-radius: 10px;
    cursor: pointer;
    transform: scale(1);
    transition: transform 250ms ease-in-out, box-shadow 250ms ease-in-out, background-color 250ms ease-in-out;
}
.contact-form input[type="submit"]:hover {
    transform: scale(1.125);
    box-shadow: 0 12px 18px -8px rgba(0,0,0, .7);
    background: linear-gradient(rgba(var(--clr-shade3-rgb), 0.7), rgba(var(--clr-shade4-rgb), 0.6)) ;
}
.contact-form input[type="submit"]:active { margin-bottom: -2px; box-shadow: 0 12px 12px -6px rgba(0,0,0, .5), inset 0 0 8px -2px #000; }

.contact-form input:disabled, .contact-form textarea:disabled, .contact-form input[type="submit"]:disabled { visibility: hidden; }

.contact-form > div.contact-button { overflow: visible; }

.contact-form > div.contact-message {
    position: relative;
    overflow: hidden;
    height: 150px;
    box-sizing: border-box;
}

.contact-message-content {
    display: block;
    width: 100%;
    height: calc( 100% - 25px );
    box-sizing: border-box;
    margin-top: 0;
    overflow: hidden;
    background: none;
    border: none;
    resize: none;
    position: absolute;
    top: 25px;
    left: 0;
    padding: 5px 15px 10px 5px;
    color: var(--clr-grey);
    transition: background-color 0.4s ease 0.3s;
}

.contact-message .right-roll-in {
    display: block;
    position: absolute;
    width: 0;
    height: calc( 100% - 25px);
    top: 25px;
    right: 0;
    border-right: 2px solid var(--clr-shade2);
    transition: transform 0.4s ease 0.3s;
    transform: translateY(-120%);
}

.contact-message-content:focus,.contact-message-content:valid { background-color: rgba( 20,20,20,0.3 ); }

.contact-form .contact-message label {
    height: 50px;
    top: 0;
    transition: transform 0.3s ease, height 0.4s ease 0.3s;
}

.contact-form div textarea:focus ~ label ,
.contact-form div textarea:valid ~ label { height: 100%; }

.contact-form div textarea:focus ~ label .label-text,
.contact-form div textarea:valid ~ label .label-text { transform: translateX(0); top: 5px; }

.contact-message label .label-text { top: 25px; }

:invalid { box-shadow: none; } :-moz-submit-invalid { box-shadow: none; } :-moz-ui-invalid { box-shadow:none; }

.js--animate { opacity: 0; }
.js--animate.animated { opacity: 1; }

#nojs {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100vw;
    background-color: rgba(200, 25,25,0.9);
    color: white;
    text-align: center;
    font-size: 80%;
    z-index: 1000;
}

#nojs p {
    width: 100%;
    padding: 10px 0;
    text-align: center;
}