@import url('https://fonts.googleapis.com/css2?family=Lora:wght@500&family=Noto+Sans&family=Roboto+Mono:wght@300&display=swap');

/* Common style */
:root {

    --bg-color: #151515;
    --color-1: #79c1ff;
    --color-2: #68a1d3;
    --color-3: #393e46;
    --text-color: #eeeeee;
    --text-color-gray: #cecece;


    --heading-text: 'Josefin Sans';
    --paragraph-text: 'Oxygen';
    --special-text: 'Roboto Mono';

    /*    	--heading-text: 'Lora', serif;*/
    --paragraph-text: 'Noto Sans', sans-serif;
    --special-text: 'Roboto Mono', monospace;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*
	max-width: 100%;
	max-height: 100%;
*/
    user-select: none;

}


body {
    /*    font-family: var(--heading-text), sans-serif;*/
    background-color: var(--bg-color);
    /*	overflow-x: hidden;*/
}

/* General Links */

a {
    color: var(--color-1);
    text-decoration: none;
}

a:hover {
    color: var(--color-1);
    text-decoration: none;
}

/* General Scrollbar */

::-webkit-scrollbar {
    width: 4px;
    height: 5px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 9px var(--bg-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 9px var(--color-1);
}

/* Loader */

#loading {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.7;
    background-color: transparent;
    z-index: 99;
}

#loading-image {
    z-index: 100;
    height: 10rem;
}


/* General Text */

h1,
h2,
h3,
h4,
h5,
h6,
p {
    color: var(--text-color);
    margin: 0;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    display: none;
    right: 5vw;
    bottom: 5vw;
    z-index: 5;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: var(--color-1);
    color: #fff;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background: var(--color-1);
    color: #fff;
}

/* Doodle button */
.doodle {
    position: fixed;
    bottom: 2em;
    width: 100%;
    text-align: center;
    z-index: 99999;
    font-size: 12px;
    opacity: 0.2;
    transition: all 0.4s;
    padding: 10px;
    z-index: 1;
}

.doodle:hover {
    opacity: 1;
}

.doodle i {
    padding: 15px;
    font-size: 25px;
    width: 40px;
    cursor: pointer;
    height: 40px;
    border-radius: 50px;
    color: #fff;
    transition: all 0.4s;
}

.doodle i:hover {
    background: var(--color-1);
    color: #fff;
}

/* Header */
#header {
    max-height: 20em;
    max-width: 100%;
    background: var(--bg-color);
    box-shadow: 0px 0px 25px 0 rgba(0, 0, 0, 0.24);
    z-index: 997;
    padding: 25px 20px;
}

/*
.logo {
	position: absolute;
	top: 1.5rem;
	left: 6rem;
	font-family: var(--special-text);
	font-weight: 600;
	font-size: 1.5rem;
	color: white;
}

.logo span {
	color: #000000;
	font-family: monospace;

}

.blinker {
	opacity: 1;
	margin-bottom: -2px;
	height: 15px;
	margin-left: 0px;
	border-left: 3px solid #ffffff;
	animation: blinker 0.9s steps(2, start) 20;
}

@keyframes blinker {
	to {
		visibility: hidden;
	}
}
*/

#header .logo {
    font-size: 26px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: lowercase;
}

#header .logo a {
    font-family: var(--heading-text);
    color: var(--text-color);
    transition: ease 0.2s;
}

#header .logo a:hover {
    color: var(--color-1);
    transition: ease 0.2s;
}

#header .logo span {
    color: var(--color-1);
    transition: ease 0.2s;
}

#header .logo span:hover {
    color: var(--text-color);
    transition: ease 0.2s;
}

#header .logo img {
    max-height: 40px;
}

@media (max-width: 992px) {
    #header .logo {
        font-size: 28px;
    }
}

/* Navigation Menu */

/* Desktop Navigation */


.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > ul {
    display: flex;
}

.nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 10px 0 10px 28px;
    height: 45px;
}

.nav-menu a {
    display: block;
    position: relative;
    color: var(--text-color);
    transition: 0.3s;
    font-size: 14px;
    font-family: var(--special-text);
    font-weight: 300;
    height: 100%;
}

.nav-menu a button {
    min-height: 3em;
}

.nav-menu .active > a {
    color: var(--color-2);
}

.cl-effect-1 a::before,
.cl-effect-1 a::after {
    display: inline-block;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
    -moz-transition: -moz-transform 0.3s, opacity 0.2s;
    transition: transform 0.3s, opacity 0.2s;
}

.cl-effect-1 a::before {
    margin-right: 4px;
    content: '{';
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    transform: translateX(20px);
    color: var(--color-1);
    font-size: 17px;
    font-weight: 600;
}

.cl-effect-1 a::after {
    margin-left: 3px;
    content: '}';
    color: var(--color-1);
    font-size: 17px;
    font-weight: 600;
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    transform: translateX(-20px);
}

.cl-effect-1 a:hover::before,
.cl-effect-1 a:hover::after,
.cl-effect-1 a:focus::before,
.cl-effect-1 a:focus::after {
    opacity: 1;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    transform: translateX(0px);
}

.cl-effect-1 ul li:last-child a::before,
.cl-effect-1 ul li:last-child a::after {
    opacity: 0;
}

/* Mobile Navigation */

.mobile-nav-toggle {
    position: fixed;
    right: 1vw;
    top: 25px;
    z-index: 9999;
    border: 0;
    background: none;
    font-size: 25px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav {
    display: block;
    position: fixed;
    width: 250px;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--bg-color);
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    /*    border-radius: 10px;*/
    padding: 10px 0;
    height: 100%;
    text-align: left;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.mobile-nav-toggle i {
    position: absolute;
    top: 5px;
    right: 20px;
    color: var(--color-2);
    z-index: 999999;
}

.mobile-nav a {
    display: none;
    position: relative;
    color: var(--text-color);
    font-family: "Fira Code";
    font-weight: 200;
    outline: none;
    font-size: 1em;
    padding: 15px 40px;
    transition: ease 0.3s;
}

.mobile-nav-active a {
    display: block;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
    color: var(--color-1);
    text-decoration: none;
    transition: ease 0.3s;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(9, 9, 9, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    right: 0;
    visibility: visible;
    display: flex;
    align-items: center;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: var(--color-1);
    font-size: 27px;
    margin-right: 0px;
}

.mobile-nav-active nav li,
.nav-menu li {
    opacity: 0;
}

.mobile-nav-active nav li:nth-child(1),
.nav-menu li:nth-child(1) {
    animation-name: onload;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
    animation-delay: 0.3s;
}

.mobile-nav-active nav li:nth-child(2),
.nav-menu li:nth-child(2) {
    animation-name: onload;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
    animation-delay: 0.4s;
}

.mobile-nav-active nav li:nth-child(3),
.nav-menu li:nth-child(3) {
    animation-name: onload;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
}

.mobile-nav-active nav li:nth-child(4),
.nav-menu li:nth-child(4) {
    animation-name: onload;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
    animation-delay: 0.6s;
}

.mobile-nav-active nav li:nth-child(5),
.nav-menu li:nth-child(5) {
    animation-name: onload;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
    animation-delay: 0.7s;
}

.mobile-nav-active nav li:nth-child(6),
.nav-menu li:nth-child(6) {
    animation-name: onload;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
    animation-delay: 0.8s;
}

@keyframes onload {
    from {
        top: -30px;
        opacity: 0;
    }

    to {
        top: 0px;
        opacity: 1;
    }
}

.button {
    padding: 0.5em;
    margin-top: -0.6em;
    margin-left: -0.6em;
    background-color: var(--bg-color);
    color: var(--text-color);
    border: solid 1px var(--color-1);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    width: 7em;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.button:hover {
    box-shadow: 0 0 10px var(--color-1);
    transition: all 0.2s;
}



/* Social Links */

.social {
    position: fixed;
    bottom: 0;
    left: 5%;
    color: var(--text-color);
    z-index: 2;
}

.social-links {
    margin: 10px 0px;
}

.social-links a {
    color: var(--text-color);
    padding: 6px;
    margin: 10px 0;
    display: block;
    line-height: 10px;
    transition: 0.3s;
    font-size: 23px;
    /*    border: solid 1px var(--text-color);;*/
    border-radius: 50px;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

.social-links a:hover {
    color: var(--color-1);
    cursor: pointer;
    animation-name: bounce;
    -moz-animation-name: bounce;
}

.social .vl {
    margin-left: 42%;
    border-left: 1px solid var(--color-1);
    height: 120px;
}

.mobile-nav-social {
    display: block;
    position: fixed;
    bottom: 0;
    margin-left: auto;
    margin-right: auto;
    width: 250px;
    text-align: center;
}

.mobile-social-links a {
    display: none;
    color: var(--text-color);
    padding: 6px;
    margin: 0 0;
    width: 2em;
    line-height: 10px;
    transition: 0.3s;
    font-size: 23px;
    /*    border: solid 1px var(--text-color);;*/
    border-radius: 50px;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

.mobile-social-links a:hover {
    color: var(--color-1);
    cursor: pointer;
    animation-name: bounce;
    -moz-animation-name: bounce;
}

.mobile-email {
    display: none;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.mobile-email .mobile-email-id {
    padding: 0.5em 1em 1em;
    font-size: 14px;
}



/* Email ID */

.email {
    position: fixed;
    bottom: 0;
    right: 5%;
    cursor: pointer;
    z-index: 2;
}

.email-id {
    color: var(--text-color);
    padding: 6px;
    font-family: var(--special-text), sans-serif;
    font-weight: 300;
    display: block;
    margin: 10px 0;
    display: block;
    line-height: 10px;
    transition: 0.3s;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 13px;
    border-radius: 50px;
}

.email .vl {
    margin-right: 48%;
    border-right: 1px solid var(--color-1);
    height: 120px;
}



/* Drawing Canvas */

canvas {
        display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /*    /height: 1;*/
    z-index: 0;
}


/* Section Style General */

section {
    margin-top: 95px;
    padding: 7% 6%;
    max-width: 100%;
}

.section-header {
    color: var(--text-color);
    text-align: center;
    font-size: 35px;
    font-family: var(--heading-text);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    text-align: center;
    font-family: var(--heading-text);
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--color-1);
    bottom: 0;
    left: calc(50% - 25px);
}

section .intro {
    margin-left: auto;
    margin-right: auto;
    width: 70vw;
    overflow: hidden;
}

.section-title p {
    margin-bottom: 0;
    padding: 0 10px;
}



/* Landing section */

#home {
    width: 100vw;
    height: 120vh;
    /* display: table-cell; */
    vertical-align: middle;
}

#home p {
    margin: 20px auto 20px 5px;
    color: var(--color-1);
    font-size: 16px;
    opacity: 0;
    font-family: var(--special-text);
    transition: ease 0.3s;
}

#home h1 {
    color: var(--text-color);
    font-size: 90px;
    font-family: var(--paragraph-text);
    opacity: 0;
    font-weight: 900;
}


#home .short a {
    font-family: var(--paragraph-text);
}

#home .short {
    color: var(--text-color-gray);
    font-size: 17px;
    font-family: var(--paragraph-text);
    font-weight: 300;
    width: 55%;
    opacity: 0;
}

#home .button {
    font-size: 16px;
    font-family: var(--special-text);
    width: 170px;
    padding: 18px;
    margin: 20px auto 20px 5px;
    opacity: 0;
}

.intro :nth-child(1) {
    animation-name: onload;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    animation-delay: 1.7s;
}

.intro :nth-child(2) {
    animation-name: onload;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    animation-delay: 1.8s;
}

.intro :nth-child(3) {
    animation-name: onload;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    animation-delay: 1.9s;
}

.intro :nth-child(4) {
    animation-name: onload;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    animation-delay: 2s;
}

.intro :nth-child(5) {
    animation-name: onload;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    animation-delay: 2s;
}

.intro :nth-child(6) {
    animation-name: onload;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    animation-delay: 2s;
}

.intro :nth-child(7) {
    animation-name: onload;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    animation-delay: 2s;
}

.intro .button {
    animation-name: onload;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    animation-delay: 2.1s;
}

#home .animoji img {
    height: 30em;
}

#home .animoji {
    /*	display: flex;*/
    position: absolute;
    right: 30%;
    float: left;
    top: 8em;
    z-index: -1;

}

/* #home .intro-text {
     position: relative; 
    float: left;
    z-index: 1;
} */

#home .memoji {
    /* position: absolute; */
    top: 20%;
    left: 39%;
    margin: auto;
    z-index: -1;
}


 .memoji img{
    margin: auto;
    padding: 10px;
    height: 200px;
    display: block;
    background-color: var(--color-2);
    border-radius: 50%;
    opacity: 1;
 }

.memoji video {
    /* position: absolute;
    top: 20%;
    left: 39%; */
    margin: auto;
    padding: 10px;
    height: 200px;
    display: none;
    opacity: 0; 
    /* transition: opacity 0.3s ease;  */
    background-color: var(--color-2);
    border-radius: 50%;
}

.memoji:hover video {
    display: block;
    opacity: 1;
}

.memoji:hover img {
    display: none;
    opacity: 0;
}

.fullscreen-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
}



.saishark {
    text-decoration: underline;
    font-weight: 500;
}

.saishark video {
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0;
    display: none;
}

.saishark:hover video {
    opacity: 1;
} 
/* .saishark {
    position: relative;
    display: inline-block;
}

.saishark video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

*/



/* .memoji video {
    margin: auto;
    padding: 10px;
    height: 220px;
    display: none;
    opacity: 0; 
    transition: opacity 0.3s ease; 
    background-color: var(--color-2);
    border-radius: 50%;
}

.memoji:hover video {
    display: block;
    opacity: 1;
}

.memoji:hover img{
    opacity: 0;
} */



/* About Section */

#about {
    display: block;
    position: relative;
    margin: 0 auto;
}

.profile-picture {
    max-height: 30vh;
    border-radius: 500px;
    padding: 10px;
    border: dashed 2px var(--color-1);
    transition: ease 0.8s;
}

.profile-picture:hover {
    border: dashed 2px var(--color-1);
    border-radius: 0px;
    transition: ease 0.8s;
}

.about .content p {
    padding: 0 10px 15px;
    font-family: var(--paragraph-text);
    /*	text-align: justify;*/
}

.about .content h3 {
    font-weight: 700;
    font-size: 26px;
    color: var(--text-color);
    padding: 20px 20px;
}

.about .content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about .row {
    padding: 0 10px 10px;
    margin: 0 auto;
}

.about .content ul li {
    font-size: 14px;
    padding-bottom: 10px;
    font-family: var(--special-text);
    color: var(--text-color);
}

.about .content ul li::before {
    content: '▹';
    margin-left: -12px;
    margin-right: 8px;
    font-size: 14px;
    color: var(--color-1);
}

.about .content p:last-child {
    margin-bottom: 0;
}



/* Education Section */

#education {
    margin-top: 100px;
    overflow-x: hidden;
}

.timeline {
    position: relative;
    padding: 10px 0px;
    margin: 0;
    margin-bottom: 40px;
}

.timeline:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 65px;
    width: 3px;
    height: calc(100% - 20px);
    background: var(--color-1);
}

.timeline .column {
    margin: 40px 20px 40px 120px;
}

.timeline .column .title h1 {
    font-size: 60px;
    color: var(--color-2);
    font-family: var(--heading-text);
    letter-spacing: 3px;
    /*	line-height: 1.5;*/
}

.timeline .column .title h1:before {
    content: "";
    position: absolute;
    left: -62px;
    top: 25px;
    width: 16px;
    height: 16px;
    border-radius: 50px;
    background: var(--text-color);
    border: 2px solid var(--text-color);
}

.timeline .column .title h2 {
    margin-top: -15px;
    font-size: 33px;
    font-family: var(--heading-text);
}

.timeline .column .description p {
    font-size: 15px;
    line-height: 20px;
    margin-left: 20px;
    margin-top: 10px;
    font-family: 'Oxygen';
    line-height: 1.4;
}

.timeline .column .description p span {
    /*	color: var(--color-1);*/
    font-weight: 600;
    border-bottom: dashed 1.5px var(--color-1);
}

.timeline .column .description p span:hover {
    /*	border: dashed 1.5px var(--color-1);*/
}

.timeline .column .description p::before {
    content: '▹';
    margin-left: -1em;
    margin-right: 0.2em;
    font-size: 0.9em;
    color: var(--color-1);
}

.timeline .column .description p:nth-child(1) {
    font-size: 17px;
    color: var(--color-1);
    margin-top: 4px;
    margin-left: 17px;
    font-weight: 800;
    font-family: var(--heading-text);

}

.timeline .column .description p:nth-child(1)::before {
    content: '';
}

.timeline .column .description {
    font-family: 'Oxygen';
    /*	border-left: 1px solid var(--color-1);*/
}


/* Work Section */

#work {
    margin-top: 100px;
    /*	overflow:hidden; */
    max-width: 100%;
    min-height: 100vh;
}

.grid {
    list-style: none;
    /*	margin-left: -40px;*/
    width: 100%;
}

.gc {
    box-sizing: border-box;
    display: inline-block;
    margin-right: -.25em;
    min-height: 1px;
    padding-left: 40px;
    vertical-align: top;
}

.gc--1-of-3 {
    width: 33.33333%;
}

.gc--2-of-3 {
    width: 66.66666%;
}

.naccs {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0;
}

.naccs .menu div {
    padding: 15px 20px 15px 40px;
    margin-bottom: 10px;
    color: var(--text-color);
    background: #1c222a;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.26);
    cursor: pointer;
    position: relative;
    vertical-align: middle;
    font-family: 'Josefin Sans';
    font-weight: 700;
    margin-left: 10px;
    transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.naccs .menu div:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.naccs .menu div span.light {
    height: 10px;
    width: 10px;
    position: absolute;
    top: 24px;
    left: 15px;
    background-color: var(--text-color);
    border-radius: 100%;
    transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.naccs .menu div.active span.light {
    background-color: var(--color-1);
    left: 0;
    height: 100%;
    width: 3px;
    top: 0;
    border-radius: 0;
}

.naccs .menu div.active {
    color: var(--color-1);
    /*	padding: 15px 20px 15px 20px;*/
}

ul.nacc {
    position: relative;
    height: 0px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: 'Oxygen';
    color: var(--text-color);
    transition: .5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

ul.nacc li {
    opacity: 0;
    transform: translateX(50px);
    position: absolute;
    list-style: none;
    padding: 0em 4em 1em 0em;
    transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

ul.nacc li.active {
    transition-delay: .3s;
    z-index: 2;
    opacity: 1;
    transform: translateX(0px);
}

ul.nacc li h2 {
    font-size: 20px;
    font-family: 'Josefin Sans';
    /*	margin-bottom: 1em;*/
}

ul.nacc li span {
    color: var(--color-1);
    padding-left: 3px;
}

ul.nacc li h4 {
    margin: 0;
    font-family: 'Fira Code';
    margin-top: 1em;
    font-size: 15px;
    color: gray;
}

ul.nacc li p {
    margin: 0;
    padding-left: 1em;
    margin-top: 1em;
    font-size: 16px;
    font-family: 'Oxygen';
}

ul.nacc li p::before {
    content: '▹';
    margin-left: -1em;
    margin-right: 0.4em;
    font-size: 1em;
    color: var(--color-1);
}

.gc::-webkit-scrollbar {
    width: 4px;
    height: 5px;
}

.gc::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 9px rgba(80, 181, 255, 0.49);
    border-radius: 10px;
}

.gc::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 9px var(--color-1);
}


/* Projects */

#projects {

    width: 100vw;
    padding: 50px 100px;


    /*	margin-top: 60vh;*/
    z-index: 0;

}

#projects p {
    font-family: var(--paragraph-text);
    padding-bottom: 20px;
}

.portfolio-item {
    margin-bottom: 40px;
    /*	margin-left: 40px;*/

}

.projects #portfolio-flters {
    padding: 0;
    margin: 0 auto 30px auto;
    list-style: none;
    text-align: center;
    z-index: 0;
    color: var(--color-1);
    width: 100%;
}

.projects #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    font-family: var(--heading-text);
    padding: 8px 16px 10px 16px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--text-color);
    margin: 17px 10px 0pc;
    transition: all 0.3s ease-in-out;
    border-radius: 50px;
    /*	border: 2px dashed transparent;*/
}

.projects #portfolio-flters li:hover,
.projects #portfolio-flters li.filter-active {
    color: var(--text-color);
    background: var(--color-1);
    /*	border: 2px dashed var(--color-1);*/
}

.projects #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio-wrap {
    margin: 0 auto;
    transition: all ease 0.3s;
    overflow: hidden;
    padding: 35px 10px 0px 20px;
    height: 19em;
    /*    max-width: 17em;*/
    max-width: 18em;
    /*    border: 1.5px solid var(--color-1);*/
    /*    border-radius: 10px;*/
    background: var(--color-3);
    /*	box-shadow: 0 0 10px #01221e;*/
    border: 2px dashed transparent;
}

.portfolio-wrap:hover {
    /*    	transform: scale(1.2);*/
    cursor: crosshair;
    border: 2px dashed var(--color-1);
    /*	transform: translateY(-10px);*/
    /*	box-shadow: 0 0 10px var(--color-1);*/
}

.projects .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: var(--color-1);
    font-weight: 800;
    font-family: var(--heading-text);
}

.projects .portfolio-wrap .portfolio-info p {
    color: var(--text-color);
    font-size: 14px;
    /*	text-transform: uppercase;*/
    padding-top: 10px;
    margin: 0;
    font-style: normal;
    font-family: var(--paragraph-text);
}

.projects .portfolio-wrap .portfolio-links {
    position: absolute;
    bottom: 1em;
    text-align: right;
    z-index: 0;
}

.projects .portfolio-wrap .portfolio-links a {
    color: var(--color-1);
    padding: 5px 8px 5px 8px;
    border: 2px dashed transparent;
    font-size: 18px;
    display: inline-block;
    transition: 0.3s;
}

.projects .portfolio-wrap .portfolio-links a:hover {
    color: var(--text-color);
    border: 2px dashed var(--color-1);
    /*	border-radius: 10px;*/
}

.projects .portfolio-wrap:hover::before {
    /*	opacity: 1;*/
}

.projects .portfolio-wrap:hover img {
    transform: scale(1.2);
}

.projects .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}



footer {
    position: relative;
    vertical-align: middle;
    padding: 1em 0 3em;
    font-size: 13px;
    text-align: center;
    font-family: var(--special-text);
    color: var(--text-color-gray);
    height: 3em;
}

/* Responsiveness */

@media (max-width: 992px) {

    #home p,
    #about p,
    #projects p,
    .about .content ul li,
    ul.nacc li p,
    #education .timeline .column .description p,
    .projects .portfolio-wrap .portfolio-info p {
        font-size: 14px;
    }

    #home h1,
    #about h1,
    #projects h1 {
        font-size: 70px;
    }

    #home .short,
    #about short,
    #projects .short {
        font-size: 16px;
        width: 75%;
    }
	
	#home .animoji {
		right: 20%;
	}

    #home .button,
    #about button,
    #projects button {
        font-size: 15px;
        width: 170px;
        padding: 18px;
    }

    .timeline .column {
        margin: 40px 00px 40px 90px;
    }

    .timeline:before {
        left: 50px;
    }

    .timeline .column .title h1:before {
        left: -47px;
    }

    #education .timeline .column .title h1 {
        font-size: 53px;
        letter-spacing: 1px;
    }

    #education .timeline .column .title h2 {
        margin-top: -10px;
        font-size: 25px;
    }

    .naccs .menu div {
        font-size: 15px;
    }

    ul.nacc li h2 {
        font-size: 19px;
    }

    ul.nacc li h4 {
        font-size: 14px;
    }
}

@media (max-width: 770px) {

    #work .container {
        margin: 0 auto;
        padding: 0;
        max-width: 90%;
        display: block;
        /*		overflow-x: hidden;*/
        align-content: center;
    }

    .grid {
        margin: 0 auto;
        padding: 0;
        max-width: 95%;
    }

    .gc {
        display: block;
        margin: 0;
        padding: 0;
        max-width: 100%;
        overflow-x: scroll;
        overflow-y: hidden;
    }

    .light {
        display: none;
    }

    .naccs .menu {
        display: inline-flex;
    }

    .naccs .menu div {
        margin-bottom: 10px;
        float: left;
        color: var(--text-color);
        background-color: var(--bg-color);
        width: max-content;
        font-size: 14px;
        line-height: 1.2;
        border: 2px dashed transparent;
        padding: 15px 20px 15px 20px;
    }

    .naccs .menu div:nth-child(1) {
        margin-left: 0;
    }

    .naccs .menu div.active {
        color: var(--color-1);
        padding: 15px 20px 15px 20px;
        border: 2px dashed var(--color-1);
        /*		border-bottom: 2px solid var(--color-1);*/
    }

    .gc--1-of-3 {
        width: 100%;
    }

    .gc--2-of-3 {
        width: 100%;
        overflow: visible;
    }

    ul.nacc li h2 {
        padding-top: 1em;
        font-size: 18px;
    }

    ul.nacc {
        margin: 0;
    }

    ul.nacc li {
        padding: 0;
    }


    ul.nacc li h2 {
        font-size: 17px;
    }

    ul.nacc li h4 {
        font-size: 13px;
    }
	
	#home .animoji {
		right: 10%;
	}


}

@media (max-width: 740px) {

    #home h1 {
        font-size: 60px;
    }

    .timeline .column .title h2 {
        margin-top: 0px;
        font-size: 25px;
    }

    .timeline .column {
        margin: 40px 00px 40px 50px;
    }

    .timeline:before {
        left: 25px;
    }

    .timeline .column .title h1:before {
        left: -32px;
    }

    #education .timeline .column .title h1 {
        font-size: 40px;
        letter-spacing: 1px;
    }

    #education .timeline .column .title h2 {
        margin-top: -10px;
        font-size: 25px;
    }
}

@media (max-width: 630px) {

    #home p,
    #about p,
    #projects p,
    .about .content ul li,
    ul.nacc li p,
    #education .timeline .column .description p,
    #projects .portfolio-wrap .portfolio-info p {
        font-size: 14px;
    }

    #education .timeline .column .description p {
        /*        color: red;*/
    }

    #home h1,
    #about h1,
    #projects h1 {
        font-size: 55px;
    }

    #home .short {
        font-size: 15px;
        width: 75%;
    }

    #home .button {
        font-size: 13px;
        width: 170px;
        padding: 15px;
    }

    #about {
        padding: 0em;
    }

    .timeline .column {
        margin: 40px 0px 40px 50px;

    }

    .timeline:before {
        left: 25px;
    }

    #education.timeline .column .title h1 {
        font-size: 35px;
        letter-spacing: 1px;
    }

    .timeline .column .title h1:before {
        left: -30px;
        top: 86px;
        width: 13px;
        height: 13px;
        border-radius: 50px;
        background: var(--text-color);
        border: 2px solid var(--text-color);
    }

    #education .timeline .column .title h2 {
        margin-top: -10px;
        font-size: 25px;
    }

    #education .timeline .column .description p {
        font-size: 14px;
    }


    ul.nacc li p::before {
        font-size: 15px;
        margin-right: 6px;
    }
	
	#home .animoji img{
		display: none;
	}


}

@media (max-width: 583px) {

    .social,
    .email {
        display: none;
    }

    .mobile-nav a {
        font-size: 0.9em;
    }

    .mobile-nav-social .mobile-social-links a {
        display: inline-block;
    }

    .mobile-nav-social .mobile-email {
        display: inline-block;
    }

    #home .intro,
    #projects .intro {
        margin: 0;
        width: 100%;
        overflow: hidden;
    }

    .about .content ul li {
        font-size: 13px;
    }

    #home .short,
    #about short {
        font-size: 14px;
        width: 85%;
    }

    #home .button {
        font-size: 13px;
        width: 170px;
        padding: 15px;
    }

    #education {
        margin: 0;
        margin-top: 150px;
        max-width: 100%;
        padding: 0 20px;
    }

    #education .timeline {
        width: 100%;
        margin: 0;
        overflow-x: visible;
        box-sizing: border-box;
        margin-bottom: 40px;
    }

    .timeline:before {
        left: 5px;
    }


    .timeline .column {
        margin: 40px 0px 40px 25px;
    }

    #education .timeline .column .title h1 {
        font-size: 35px;
        letter-spacing: 1px;
    }


    .timeline .column .title h1:before {
        left: -25px;
    }

    #education .timeline .column .title h2 {
        margin-top: -5px;
        font-size: 20px;
    }

    #education .timeline .column .description p:nth-child(1) {
        font-size: 16px;
    }

    #education .timeline .column .description p::before {
        font-size: 14px;
        margin-right: 4px;
    }

    #work ul.nacc li p {
        padding-left: 1em;
        margin-top: 1em;
    }

    #projects {
        width: 100vw;
        padding: 50px 10px;

    }

    #projects .portfolio-wrap .portfolio-info p {
        font-size: 13px;
    }

}


/* Animations */

@keyframes onload {
    from {
        top: -50px;
        opacity: 0;
    }

    to {
        top: 0px;
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    60% {
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        transform: translateY(-5px)
    }
}

