    @import url('https://fonts.googleapis.com/css2?family=Bungee&family=Comfortaa:wght@300;400;700&display=swap');

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;

    }

    :root {

        --primary-font: 'Bungee', sans-serif;
        --secondary-font: 'Comfortaa', cursive;

    }

    /* BATTERY*/
    #ba-top {
        width: 25px;
        height: 12px;
        background-color: #2d4962;

    }

    #ba-co {
        border-radius: 12px;
        border: 7px solid #2d4962;
        height: 135px;
        width: 70px;
        display: flex;
        flex-flow: nowrap column;
        align-items: center;
        position: relative;
        justify-content: flex-end;
        padding: 5px;
    }


    html {
        scroll-snap-type: y mandatory;
        scroll-behavior: smooth;
    }


    body {
        /* overflow-x: hidden; */
    }

    main {
        width: 100vw;
        max-width: 100%;
        display: grid;
        grid-template-columns: 4vw 1fr 1fr;
        grid-template-rows: repeat(4, 10vh auto);
        overflow-x: hidden;
    }


    header {
        top: 0;
        width: 100vw;
        z-index: 10000;
        position: sticky;
        height: auto;
        box-shadow: 1px 1px 4px #ccc;
    }

    .logo-container {
        position: relative;
        width: 50px;
        height: 50px;
    }

    #obj3 {
        width: 50px;
        /* height: auto; */
        margin-left: 4rem;
        /* top: 4%; */
        /* position: absolute; */
    }

    .logoStyle {
        fill: #0abfbf;
        stroke: #406887;
    }

    .nav-bar {
        /* overflow: hidden;    */
        width: 100vw;
        height: 100%;
        color: #0abfbf;
        font-family: 'Bungee', sans-serif;
    }


    .navbar-toggle {
        position: absolute;
        top: 4px;
        right: 20px;
        cursor: pointer;
        font-size: 29px;
    }

    .active {
        display: block;
        z-index: 1000;
    }

    .nav-bar-ul {
        display: none;
        list-style: none;
        width: 100%;
        height: 100%;
        font-size: 1.3rem;
        text-align: right;
    }

    .nav-list a {
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .nav-list a:link {
        text-decoration: none;
        color: #0abfbf;
    }

    .nav-list a:hover {
        color: #fff;
    }

    .nav-list a:visited {
        color: #406887;
    }

    .side-nav-bar {
        grid-area: 1/1/3/2;
        height: 100%;
        width: 4vw;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        z-index: 100;
        position: sticky;
        left: 0;
        top: 0;
        font-size: 1.5rem;
        color: #1d303d;
    }

    .side-nav-bar a:link {
        color: #1d303d;
        text-decoration: none;
    }

    .side-nav-bar a:visited {
        color: #2b7686;
        text-decoration: none;
    }

    .sideNav-text {
        font-size: 1rem;
        font-family: 'Comfortaa', cursive;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        color: #1d303d;
    }


    .section {
        display: grid;
        grid-template-columns: 45vw 50px 45vw;
        grid-template-rows: 10vh repeat(auto-fit, minmax(600px, 1fr));
    }


    #home {
        grid-area: 1/2/3/-1;
        position: relative;
    }

    #about {
        grid-area: 4/2/6/-1;

    }

    #portfolio {
        grid-area: 6/2/8/-1;
    }

    #portfolio02 {
        grid-area: 8/2/9/-1;
    }

    #contact {
        grid-area: 9/2/10/-1;
    }

    /* Section 01 - SVG obj *********************/

    #obj1 {
        grid-area: 2/1/-1/3;
        max-width: 100%;
        /* margin-left: 5%; */
    }

    #obj2 {
        grid-area: 2/2/3/-1;
        width: 40%;
        margin-left: 10rem;
        position: absolute;
        right: 40;
    }

    .border {
        fill: none;
    }

    .tStyle {
        fill: #2d4962;
        font-family: 'Bungee', cursive;
        font-size: 4rem;
        text-anchor: start;
    }

    .dStyle {
        font-family: 'Comfortaa', cursive;
        font-size: 1rem;
        fill: #2d4962;
        text-anchor: start;
    }

    .lineStyle {
        font-family: 'Comfortaa', cursive;
        font-size: 1.5rem;
        fill: #2b7686;
        text-anchor: start;

    }

    .scrollDown {
        grid-area: 2/2/3/3;
        position: absolute;
        display: flex;
        align-items: center;
        flex-direction: column;
        bottom: 0;
    }

    .scrollDown p {
        margin-bottom: -45px;
    }

    .arrowsDown {
        width: 50%;
        transform: rotate(90deg);
    }

    /* about Styling *********************/
    #about {
        background-image: url(./img/ab-bg.jpg);
        background-attachment: fixed;
    }

    .about {
        grid-area: 2/1/-1/2;
        width: 43vw;
        box-shadow: 3px 3px 5px #8888;
        background: white;
        padding: 1.2rem;
        margin-left: 1rem;
        border-radius: 25px;
        z-index: 100;
        position: relative;
    }

    h2 {
        font-family: 'Bungee', sans-serif;
        color: #2b7686;
    }

    p {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        color: #4f4f4f;
        line-height: 20px;
    }

    .about p {
        margin-top: 1rem;
    }

    .skillContainer {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        justify-content: space-evenly;
        margin-top: 1rem;
        font-family: 'Bungee', sans-serif;
    }

    .skills {
        /* height: 200px;
    width: 70px; */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: relative;
    }

    .skills p {
        margin-top: 1rem;
        font-family: 'Bungee', sans-serif;
        color: #2b7686;
    }

    .powerbar {
        /* bottom: 29%; */
        top: 0;
        position: relative;
        z-index: 100;
    }

    .bars {
        margin-top: 3px;
        width: 50px;
        height: 10px;
        background: #0abfbf;
        border-radius: 5px;
    }


    .workSnapshot {
        grid-area: 2/2/3/5;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .box {
        height: 150px;
        width: 250px;
        background-color: #0abfbf;
        border-radius: 5px;
        margin: 0.5rem;
        box-shadow: 2px 2px 2px #8888;
    }

    .overlayScale {
        display: flex;
        place-items: center;
        place-content: center;
        flex-wrap: wrap;
        padding: 10px;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(255, 255, 255, 0.95);
        opacity: 1;
        transition: all .2s ease-in-out;
    }

    .overlayScale p {
        font-size: 16px;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        font-weight: 700;
        text-align: center;
    }

    .overlayScale:hover {
        transform: scale(1.1);
        opacity: 0;
    }

    .more-works-caption {
        font-size: 7px;
    }

    #box1 {
        background-image: url(./works/img/restaurant/restaurant-app-mockup.png);
        background-size: cover;
        background-position: center;
    }

    #box2 {
        background-image: url(./img/infographic.png);
        background-size: cover;
        background-position: center;
    }

    #box3 {
        background-image: url(./img/skateboards.png);
        background-size: cover;
        background-position: center;
    }

    #box4 {
        background-image: url(./img/mad_movies.png);
        background-size: cover;
        background-position: center;
    }

    #box5 {
        background-image: url(./img/social-media.png);
        background-size: cover;
        background-position: center;
    }

    #box6 {
        background-image: url(./img/photography-2.jpg);
        background-size: cover;
        background-position: center;
    }

    #box1:hover {
        transform: scale(1.1);
    }

    /* portfolio Style ********************/
    #portfolio {
        background-image: url(./works/img/sec03-bg-1.png);
        background-position: center;
        background-size: cover;
        background-attachment: fixed;
    }

    #portfolio02 {
        background-image: url(./works/img/sec03-bg-1.png);
        background-position: center;
        background-size: cover;
        background-attachment: fixed;
    }

    #slide01 {
        grid-area: 2/1/3/-1;
        display: grid;
        grid-template-columns: 30vw 1fr;
        grid-template-rows: minmax(600px, 1fr);
    }

    #slide02 {
        grid-area: 3/1/4/-1;
        display: grid;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

    .work-card {
        padding: 10px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
    }

    /* portfolio SVG */
    #work01 {
        grid-area: 1/1/2/2;
        display: grid;
        grid-template-columns: 100px 1fr;
        grid-template-rows: 70px 1fr;
    }

    #obj4 {
        width: 67%;
        height: auto;
        grid-area: 2/2/-1/-1;
    }

    /* portfolio cards - 1 */
    #work02 {
        grid-area: 1/2/2/4;
    }

    /* portfolio cards - 1 */
    #work03 {
        flex-wrap: wrap;
        justify-content: space-around;
    }


    /* boxes link to works */
    .work-box {
        height: 215px;
        width: 320px;
        max-width: 100%;
        max-height: 100%;
        background-color: #4f4f4f;
        border-radius: 5px;
        box-shadow: 2px 2px 2px #8888;
        position: relative;
        margin: 1rem;
    }

    .overlay {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
        transition: .5s ease;
        background: rgba(39, 54, 67, 0.9);
        border-radius: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .work-box:hover .overlay {
        opacity: 1;
    }

    .overlay {
        font-family: var(--secondary-font);
        color: #3fcad4;
        text-align: center;
        ;
    }


    #w-box1 {
        background-image: url(./works/img/restaurant/restaurant-app-mockup.png);
        background-size: cover;
        background-position: center;
    }

    #w-box2 {
        background-image: url(./img/infographic.png);
        background-size: cover;
        background-position: center;
    }

    #w-box3 {
        background-image: url(./img/mad_movies.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    #w-box4 {
        background-image: url(./img/skateboards.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    #w-box5 {
        background-image: url(./works/img/easygroceries/easygroceries-1.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    #w-box6 {
        background-image: url(./works/img/signout/signout-1.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    #w-box7 {
        background-image: url(./works/img/homebakery/homebakery-1.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    #w-box8 {
        background-image: url(./works/img/porthope/porthope-1.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    #w-box9 {
        background-image: url(./works/img/downtownapp/downtownapp-1.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    /* #w-box10 {
        background-image: url(./works/img/matching/matching-1.png);
        background-size:cover;
        background-position: center;
        background-repeat: no-repeat;
    } */

    #w-box11 {
        background-image: url(./works/img/sugardustbakery/sugardustbakery-1.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .fp-controlArrow.fp-prev {
        margin-left: 2.2rem;
        border-color: transparent #4068875b transparent transparent;
    }

    .fp-controlArrow.fp-next {
        margin-right: 2.2rem;
        border-color: transparent transparent transparent #4068875b;
    }

    .fp-controlArrow {
        border-color: transparent transparent transparent #4068875b;
    }

    /* Graphic Gallery */

    /* .graphic-gallery {
    grid-area: 1/1/2/-1;  
    background-color:#26414cc8;
    background-image: url(./works/img/sec03-bg-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}


.gallerybox {
    display: flex;
    overflow-x: scroll;
    flex-wrap: nowrap;
    gap: 10px;
}

.gallerybox  img {
    width: 250px;
    max-width:100%;
    height: auto;
    border-radius: 5px;
    max-width: 100%;
    max-height: 100%;
    margin-right: 20px;
}    */

    /* work styling */
    #contact {
        background-image: url(./img/sec03-bg-2.png);
        background-position: center;
        background-size: cover;
        background-attachment: fixed;
        place-content: center;
        place-items: center;
    }

    .contact {
        grid-area: 2/1/-1/-1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* height: 600px;
    max-height: 100%; */
    }

    .contact-right {
        grid-area: 2/2/3/-1;
        /* height: 600px;
    max-height: 100%; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: right;
    }

    .contact-left {
        grid-area: 2/1/3/2;
        display: flex;
        justify-content: center;
        align-items: center;
        /* height: 600px;
    max-height: 100%; */
    }


    #obj5 {
        width: 70%;
        /* margin-bottom: 10rem; */
    }


    .contact p {
        margin-top: 1rem;
    }

    .contact span {
        color: #0abfbf;
        text-decoration: underline;
    }

    .contactMail:link {
        color: #0abfbf;
    }

    form {
        margin-top: -2rem;
        width: 400px;
        height: auto;
        display: flex;
        flex-direction: column;
        align-content: space-around;
    }

    form {
        margin-top: 2rem;
        width: 400px;
        height: auto;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        font-size: 0.9rem;
    }

    .contact-right {
        padding: 0 2rem;
    }

    label {
        margin-top: 5px;
    }

    input {
        height: 2rem;
    }


    input,
    textarea {
        margin-top: 5px;
        border-radius: 5px;
        width: 300px;
    }

    input,
    textarea {
        border: .75px solid #4f4f4f;
    }


    #submitBtn {
        height: 2.3rem;
        width: 200px;
        margin-top: 5px;
        border-radius: 50px;
        border: 1px #2b7686 solid;
        color: #2b7686;
        background: #fff;
    }

    #submitBtn:hover {
        background-color: #2b7686;
        color: #fff;
        transition: all 0.3s ease;
    }



    /* Me SVG Animation Styling*/
    .circleStyle {
        fill: transparent;
    }

    .cls-1,
    .cls-18,
    .cls-19,
    .cls-20,
    .cls-21,
    .cls-22 {
        fill: none;
    }

    .cls-2 {
        fill: #c199a1;
    }

    .cls-3 {
        filter: url(#AI_GaussianBlur_7);
    }

    .cls-4 {
        fill: #969696;
    }

    .cls-5 {
        fill: #2d4b5b;
    }

    .cls-6 {
        fill: #edcca9;
    }

    .cls-7 {
        clip-path: url(#clip-path);
    }

    .cls-8 {
        fill: #eabe96;
    }

    .cls-9 {
        fill: #f2dabd;
    }

    .cls-10 {
        clip-path: url(#clip-path-2);
    }

    .cls-11 {
        fill: #efc7a5;
    }

    .cls-12 {
        fill: #896e74;
    }

    .cls-13 {
        clip-path: url(#clip-path-3);
    }

    .cls-14 {
        clip-path: url(#clip-path-4);
    }

    .cls-15 {
        fill: #2d4962;
    }

    .cls-16 {
        fill: #7a728c;
    }

    .cls-17 {
        fill: #406887;
    }

    .cls-18 {
        stroke: #e6e6e6;
    }

    .cls-18,
    .cls-19,
    .cls-20,
    .cls-21,
    .cls-22 {
        stroke-linecap: round;
    }

    .cls-18,
    .cls-20,
    .cls-21,
    .cls-22 {
        stroke-linejoin: round;
    }

    .cls-18,
    .cls-21,
    .cls-22 {
        stroke-width: 2px;
    }

    .cls-19 {
        stroke: #1d303d;
        stroke-miterlimit: 10;
    }

    .cls-20 {
        stroke: #1d313a;
        stroke-width: 3px;
    }

    .cls-21 {
        stroke: #335668;
    }

    .cls-22 {
        stroke: #26414c;
    }

    /* Extra Smal */
    @media screen and (max-width: 320px) {

        body,
        section {
            overflow-x: hidden;
            max-width: 100vw;
            width: 100vw;
        }

    }


    /* Small only */
    @media only screen and (max-width: 375px) {
        body {
            overflow-x: hidden;
            width: 100vw;
            max-width: 100%;
        }

        .side-nav-bar {
            display: none;
        }

        header {
            top: 0;
            position: sticky;
            z-index: 10000;
            height: 60px;
            box-shadow: none;
        }

        .active {
            height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            /* transition: all 1s ease-in-out; */
            background: #333;
        }

        .nav-bar {
            height: auto;
            background: #333;
        }

        .logo-container {
            position: relative;
        }


        .navbar-toggle {
            font-size: 29px;
            transition: all 1s ease-in-out;
        }

        .nav-bar-ul {
            transition: all 1s ease-in-out;
        }

        .nav-bar-ul li {
            margin: 10px 0;
        }


        main {
            display: grid;
            width: 100vw;
            max-width: 100%;
            /* grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); */
        }


        .section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            height: 100%;
        }

        #home {
            grid-area: 1/1/4/-1;
            position: relative;
        }

        #about {
            grid-area: 4/1/6/-1;
        }

        #portfolio {
            grid-area: 6/1/9/-1;
        }

        #portfolio02 {
            grid-area: 9/1/10/-1;
        }

        #contact {
            grid-area: 10/1/11/-1;
        }

        #obj1 {
            grid-area: 2/1/3/3;
        }

        #obj2 {
            grid-area: 2/2/3/3;
            margin-left: 0%;
            position: absolute;
            bottom: 0;
            right: 0px;
            width: 45vw;
        }

        /* Animated Title */
        .tStyle {
            font-size: 5rem;
        }

        .dStyle {
            font-size: 2rem;
        }

        .lineStyle {
            font-size: 35px;
        }


        #obj3 {
            width: 100%;
            margin-left: 20px;
            top: 9px;
            position: absolute;
        }

        .scrollDown {
            /* grid-area: 2/1/-1/2; */
            right: 175px;
            bottom: 40px;
            position: absolute;
        }

        .about {
            grid-area: 2/1/3/2;
            height: 100%;
            width: 90%;
            margin-left: 1rem;
        }

        .about p {
            font-size: 0.75rem;
            line-height: 1.5;
        }

        .workSnapshot {
            display: none;
        }

        .skillContainer {
            height: auto;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 1rem;

        }

        .skills {
            width: 63px;
            margin-bottom: 20px;

        }

        .skills p {
            margin-top: 10px;
            font-size: 0.7rem;
        }

        .powerbar {
            /* bottom: calc(100% - 80%); */
            bottom: calc(100% - 65%);
        }

        .bars {
            width: 41px;
            position: relative;
        }

        .box {
            height: 70px;
            width: 140px;
        }



        /* Portfolio section*/
        #slide01 {
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
            grid-area: 2/1/3/-1;
        }

        .work-card {
            padding: 0.5rem;
        }

        #work01 {
            display: flex;
            height: auto;
        }

        #obj4 {
            /* width: 47%;
        height: auto;
        grid-area: 2/1/-1/-1; */
            display: none;
        }

        #work02 {
            gap: 10px;
        }


        .work-box {
            width: 160px;
            max-width: 100%;
            height: 130px;
            max-height: 100%;
        }

        #slide02 {
            grid-area: 3/1/-1/-1;
        }



        /* Contact Section */

        .contact {
            grid-area: 2/1/-1/3;
            display: flex;
            flex-direction: column;
        }

        .contact-right {
            padding: 0.7rem;
            width: 100vw;
        }

        .contact-right>h2 {
            text-align: center;
        }

        .contact-right input,
        .contact-right textarea {
            width: 300px;
        }

        #obj5 {
            width: 300px;
            margin-bottom: 30px;
        }

        #submitBtn {
            margin-top: 1rem;
        }
    }

    /* Medium and up */
    @media screen and (min-width: 767px) {

        .side-nav-bar {
            display: none;
        }


        .nav-bar {
            height: auto;
            background: #333;
        }


        .nav-bar-ul li {
            margin-top: 10px;
            margin-right: 20px;

        }

        #obj3 {
            top: 9px;
            width: 100%;
            position: absolute;
        }

        .about {
            /* height: 85%; */
        }

        .skillContainer {
            max-height: 100%;
            /* width: 360px; */
            max-width: 100%;
        }

        .skills {
            margin: 1rem;
        }


        .work-box {
            width: 300px;
            height: 205px;
            max-width: 100%;
            max-height: 100%;
        }


    }

    /* Medium only */
    @media screen and (min-width: 40em) and (max-width: 63.9375em) {

        .about {
            height: auto;
            padding: 1rem;
        }

        .workSnapshot {
            padding: 0.5rem;
        }

        .box {
            width: 210px;
            height: 110px;
        }

        .skillContainer {
            flex-flow: row wrap;
            justify-content: space-evenly;
            padding: 0.5rem;
        }

        .skills p {
            font-size: 0.9rem;
        }

        .powerbar {
            bottom: calc(100% - 70%);
        }


        #obj4 {
            width: 100%;
        }


        .work-box {
            width: 200px;
            height: 150px;
            max-width: 100%;
            max-height: 100%;
        }

    }

    /* Large and up */
    @media screen and (min-width: 64em) {
        .side-nav-bar {
            display: flex;
        }

        .navbar-toggle {
            display: none;
        }

        .nav-bar {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            height: 60px;
            background: white;
        }


        .nav-bar-ul {
            display: flex;
            justify-content: flex-end;
            font-size: 1.5rem;
        }

        .nav-list a {
            margin-right: 2rem;
        }

        work-box {
            height: 215px;
            width: 320px;
            max-width: 100%;
            max-height: 100%;
        }

    }

    /* Large only */
    @media screen and (min-width: 64em) and (max-width: 74.9375em) {
        work-box {
            height: 215px;
            width: 320px;
            max-width: 100%;
            max-height: 100%;
        }
    }