html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

@font-face {
    font-family: "HelveticaNeueLT Std Blk Cn";
    src: url("../webfonts/HelveticaNeueLTStd-BlkCn.ttf") format("truetype");
}

@font-face {
    font-family: "HelveticaNeueLT Std Roman";
    src: url("../webfonts/HelveticaNeueLTStd-Roman.ttf") format("truetype");
}

@font-face {
    font-family: "HelveticaNeueLT Std Th Cn";
    src: url("../webfonts/HelveticaNeueLTStd-ThCn.ttf") format("truetype");
}

@font-face {
    font-family: "HelveticaNeueLT Std Cn";
    src: url("../webfonts/HelveticaNeueLTStd-Cn.ttf") format("truetype");
}

/*@font-face {
    font-family: "HelveticaNeueLT Std Blk Cn";
    src: url("../webfonts/HelveticaNeueLTStd-BlkCn.woff2") format("woff2"), url("../webfonts/HelveticaNeueLTStd-BlkCn.ttf") format("truetype");
}

@font-face {
    font-family: "HelveticaNeueLT Std Roman";
    src: url("../webfonts/HelveticaNeueLTStd-Roman.woff2") format("woff2"), url("../webfonts/HelveticaNeueLTStd-Roman.ttf") format("truetype");
}

@font-face {
    font-family: "HelveticaNeueLT Std Th Cn";
    src: url("../webfonts/HelveticaNeueLTStd-ThCn.woff2") format("woff2"), url("../webfonts/HelveticaNeueLTStd-ThCn.ttf") format("truetype");
}

@font-face {
    font-family: "HelveticaNeueLT Std Cn";
    src: url("../webfonts/HelveticaNeueLTStd-Cn.woff2") format("woff2"), url("../webfonts/HelveticaNeueLTStd-Cn.ttf") format("truetype");
}*/



html {
    position: relative;
    min-height: 100%;
    background-color: #fff;
}

body {
    margin-bottom: 60px;
    background-color: #fff;
    position: relative;
}

/* -------------------------------------------------- *\
		Header
\* -------------------------------------------------- */
#video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#about {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100vh;
    aspect-ratio: 16/9;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    mix-blend-mode: difference;
    color: white;
    padding: 16px;
    /*z-index: 150;*/
    z-index: 1056;
    transition-timing-function: ease-in;
    transition: all .5s;
}

/* ------------------------- *\
    Top Nav Bar 
\* ------------------------- */
a {
    text-decoration: none;
    color: #fff;
}

    a:hover {
        text-decoration: none;
        color: #fff;
    }

    a:focus {
        text-decoration: none;
        color: #fff;
    }

.logo {
    /*    font-family: HelveticaNeueLT Std Blk Cn;
    white-space: nowrap;
    font-size: 34px;
    margin-left: 0;
    margin-top: 0;*/

    font-family: HelveticaNeueLT Std Blk Cn;
    white-space: break-spaces;
    font-size: 41px;
    line-height: 36px;
    margin-left: 0;
    margin-top: 0;
    margin-right: 53px;
}

.logo-sub {
    font-family: HelveticaNeueLT Std Roman;
    white-space: nowrap; 
 /* font-size: 14px;
    margin-top: -35px;
    letter-spacing: 3px;*/
    margin-left: 0px;
    font-size: 12px;
    margin-top: -30px;
    letter-spacing: .25px;
}

.nav-link:focus, .nav-link:hover {
    color: white;
}

.nav-items {
    margin-right: -40px;
    margin-top: -63px;
}

.nav-item {
    font-family: HelveticaNeueLT Std Blk Cn;
    color: white;
    font-size: 30px;
}

.nav-link {
    color: white;
}

    .nav-link:hover {
        color: white;
    }

.navbar-toggler-icon {
    font-size: 20px;
    line-height: 30px !important;
}

.navbar-toggler {
    background-color: #fff;
    box-shadow: 0 0 0 0.25rem;
    color: #000;
    border: none;
}

.navbar-toggler-x {
    background-color: #000;
    color: white;
    margin-top: 22.5px;
    margin-right: 26px;
}

.menueModal-dialog {
    margin-right: 0;
    margin-top: 0;
    margin-left: 20%;
    border-radius: 0;
    margin-bottom: 0;
    height: 100%;
}

.menueModal {
    border-radius: 0;
    min-height: 100vh;
}

.mobile-menu, .mobile-menu:hover, .mobile-menu:focus {
    color: #000;
}

/* ------------------------- *\
    Custom CSS for modal 
    slide animation
\* ------------------------- */
.modal-slide-right {
    animation: slideRight 0.1s both;
}

.modal-slide-Left {
    animation: slideLeft 0.1s both;
}

@keyframes slideRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slideLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}

/* ------------------------- *\
    Small Header
\* ------------------------- */
.small-header {
    mix-blend-mode: normal;
    background-color: #fff;
    padding-bottom: 0px;
    padding-top: 10px;
    transition-timing-function: ease;
}

    .small-header > a {
        color: #000;
        text-decoration: none;
    }

        .small-header > a:hover {
            text-decoration: none;
            color: #000;
        }

        .small-header > a:focus {
            text-decoration: none;
            color: #000;
        }

    .small-header > div > nav > div > div > ul > li > .nav-link {
        text-decoration: none;
        color: #000;
    }

    .small-header > a > div > .logo {
        font-size: 26px;
    }

    .small-header > a > div > .logo-sub {
        font-size: 13px;
        letter-spacing:1px;
    }

/* ------------------------- *\
    About me Text
\* ------------------------- */
.intro {
    transform: rotate(0deg);
}

.intro-text {
    font-family: HelveticaNeueLT Std Roman;
    color: #fff;
    font-size: 18px;
}

    .intro-text > p {
        padding-bottom: 2rem;
    }

/* ------------------------- *\
    Checkout my work button
\* ------------------------- */
.button-row {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
}

    .button-row > div {
        position: relative;
        /*width: 350px;*/
        /*width: 100%;*/
        height: 88px;
        margin: 0 15px;
        -webkit-perspective: 1000px;
        -moz-perspective: 1000px;
        perspective: 1000px;
    }

        .button-row > div > a {
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
            position: absolute;
            transform-style: preserve-3d;
            transform: translateZ(-44px);
            transition: transform 0.25s;
        }

            .button-row > div > a::before {
                font-family: HelveticaNeueLT Std Blk Cn;
                font-size: 24px;
                background-color: #fff;
                color: #000;
                -webkit-transform: rotateY(0deg) translateZ(44px);
                -moz-transform: rotateY(0deg) translateZ(44px);
                -ms-transform: rotateY(0deg) translateZ(44px);
                -o-transform: rotateY(0deg) translateZ(44px);
                transform: rotateY(0deg) translateZ(44px);
            }

            .button-row > div > a::before, .button-row > div > a::after {
                font-family: HelveticaNeueLT Std Blk Cn;
                font-size: 24px;
                justify-content: center;
                align-items: center;
                margin: 0;
                width: 100%;
                height: 88px;
                position: absolute;
                border: 5px solid #fff;
                box-sizing: border-box;
                content: attr(title);
                display: -webkit-box;
                display: -moz-box;
                display: box;
                display: -webkit-flex;
                display: -moz-flex;
                display: -ms-flexbox;
                display: flex;
            }

            .button-row > div > a::after {
                background-color: #000;
                border-color: #fff;
                color: #fff;
                -webkit-transform: rotateX(90deg) translateZ(44px);
                -moz-transform: rotateX(90deg) translateZ(44px);
                -ms-transform: rotateX(90deg) translateZ(44px);
                -o-transform: rotateX(90deg) translateZ(44px);
                transform: rotateX(90deg) translateZ(44px);
            }

            .button-row > div > a:hover {
                -webkit-transform: translateZ(-44px) rotateX(-90deg);
                -moz-transform: translateZ(-44px) rotateX(-90deg);
                -ms-transform: translateZ(-44px) rotateX(-90deg);
                -o-transform: translateZ(-44px) rotateX(-90deg);
                transform: translateZ(-44px) rotateX(-90deg);
            }

/* Common button styles */
.button {
    float: left;
    min-width: 150px;
    display: block;
    border: none;
    background: none;
    color: inherit;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
}

    .button:focus {
        /* outline: none;*/
        color: #000;
    }

    .button > span {
        vertical-align: middle;
    }

/* ------------------------- *\
    Footer on the video 
\* ------------------------- */
.intro-footer-container {
    transform: rotate(0deg);
}

.intro-footer {
    font-family: HelveticaNeueLT Std Roman;
    font-size: 12px;
}

.intro-footer-icon {
    font-size: 18px;
}

.intro-footer-container > footer > .nav > .nav-item {
    min-width: 100px;
}

/* -------------------------------------------------- *\
		Portfolio
\* -------------------------------------------------- */
.portfolio-background {
    background-color: white;
    padding-top: 70px;
    z-index: 100;
    position: relative;
    margin-top: 13px;
}

    .portfolio-background > .container {
        padding: 0;
    }

/* ------------------------- *\
    Project link images
\* ------------------------- */
.project-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: calc(var(--bs-gutter-x) * .5);
    cursor: pointer;
    min-height: 275px;
}

    .project-image > .img-wrapper > img {
        cursor: pointer;
    }

.bh-img {
    background-image: url(../media/1_beehiveBG.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
}

    .bh-img > img {
        width: 60%;
    }

.dm-img {
    background-image: url(../media/1_davidmeisterBG.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    width: 100%;
    height: 100%;
}

    .dm-img > img {
        width: 60%;
    }

.tm-img {
    aspect-ratio: 16/9;
    background-color: #024f72;
    width: 100%;
    height: 100%;
}

    .tm-img > img {
        width: 50%;
    }

.zo-img {
    aspect-ratio: 16/9;
    background-image: url(../media/1_ZobhaBG.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
}

    .zo-img > img {
        width: 66%;
    }

.nolan {
    mix-blend-mode: difference;
    color: white;
}

.nolan-img {
    position: relative;
    aspect-ratio: 16/9;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire container */
    object-position: top; /* Aligns the top of the video */
    z-index: -1; /* Keeps the video behind the content */
    pointer-events: none;
    border-radius: inherit; /* Keeps the rounded corners */
}

.nolan-deskProto {
    border: solid #fff 2px;
    padding: 17px;
    letter-spacing: 2px;
    display: inline-block;
    white-space: nowrap;
}

.nolan-row {
    margin-bottom: 10px;
}

.logo-project {
    text-align: justify;
}

.logo-sub-project {
    margin-bottom: 20px;
}

.logo-project {
    margin-left: 94px;  

    /* For screen width of 375px */
    @media (min-width: 375px) {
        margin-left: 100px;
    }

    /* For screen width of 390px */
    @media (min-width: 390px) {
        margin-left: 110px;
    }

    /* For screen width of 412px */
    @media (min-width: 412px) {
        margin-left: 120px;
    }

    /* For screen width of 430px */
    @media (min-width: 430px) {
        margin-left: 128px;
    }
}

/* ------------------------- *\
    Project zoom affect 
\* ------------------------- */
.img-wrapper {
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 32px;
}

.zoom {
    transition-timing-function: ease-in;
    transition: all .5s;
}

    .zoom:hover {
        transform: scale(1.02);
    }

/* ------------------------- *\
    Project Modal 
\* ------------------------- */
.modal-dialog {
    margin: 0;
}

.projectModal {
    border-radius: 0;
    border: none;
}

.modal-lg {
    max-width: 1400px;
}

.closeBtn {
    position: absolute;
    right: 0;
    margin: 8px;
    box-shadow: rgba(0,0,0, 0.3) 0 0 0 0.25rem;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 0.05rem;
}

center, .spinner {
    height: 95vh;
}

.spinner-border {
    display: inline-block;
    width: 10rem;
    height: 10rem;
    vertical-align: -0.125em;
    border: 1.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: .75s linear infinite spinner-border;
    animation: .75s linear infinite spinner-border;
}

.iframe-container {
    position: relative;
    width: 100%;
    /* Aspect ratio: height/width = 9/16 */
    padding-top: 56.25%; /* 16:9 aspect ratio */
    height: 100%;
}

    .iframe-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

/* ------------------------- *\
    Project Beehive
\* ------------------------- */
.bh-intro-video {
    width: 100%;
    aspect-ratio: unset;
    border-radius: 5px;
    box-shadow: 0px 0px 12px #303036;
    margin-top: -24px;
}

.aspect-unset {
    aspect-ratio: unset;
}

.bh-intro-row {
    background-color: #fff;
    --bs-gutter-x: 0;
    margin-bottom: 10px;
}

.bh-intro-gutter-x {
    width: 33px;
}

/* ------------------------- *\
    Project David Meister
\* ------------------------- */
.figma-dm {
    height: 400px;
    padding: 0;
}

.figma-link-dm {
    text-align: center;
}

    .figma-link-dm a {
        color: #000;
    }

        .figma-link-dm a :hover {
            color: #000;
        }

        .figma-link-dm a span {
            font-size: 40px;
            text-decoration: underline;
        }

/* ------------------------- *\
    Project Toastmasters
\* ------------------------- */
.tm-video-container {
    position: relative;
    width: 100%;
}

.tm-ah-video {
    position: absolute;
    top: 2.7%;
    left: 18.5%;
    max-width: 24.5%;
    min-height: unset;
    aspect-ratio: unset;
}

.tm-timer-video {
    position: absolute;
    top: 2.6%;
    left: 18.5%;
    max-width: 24.5%;
    min-height: unset;
    aspect-ratio: unset;
}

.tm-grammarian-video {
    position: absolute;
    top: 2.6%;
    left: 18.5%;
    max-width: 24.5%;
    min-height: unset;
    aspect-ratio: unset;
}

.figma-tm {
    height: 100%;
}

.figma-link-tm {
    text-align: center;
}

    .figma-link-tm a {
        color: #004165;
    }

        .figma-link-tm a :hover {
            color: #004165;
        }

        .figma-link-tm a span {
            font-size: 65px;
        }

/* ------------------------- *\
    Project Zobha
\* ------------------------- */
.figma-link-zo {
    text-align: center;
}

    .figma-link-zo a {
        color: #800080;
    }

        .figma-link-zo a :hover {
            color: #800080;
        }

        .figma-link-zo a span {
            font-size: 50px;
            font-family: Arial black, gadget, sans-serif;
        }

/* -------------------------------------------------- *\
		Resume 
\* -------------------------------------------------- */
/* ------------------------- *\
    Download Resume button
\* ------------------------- */
.download-row {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
}

    .download-row > div {
        position: relative;
        /*width: 350px;*/
        /*width: 100%;*/
        height: 88px;
        margin: 0 15px;
        -webkit-perspective: 1000px;
        -moz-perspective: 1000px;
        perspective: 1000px;
    }

        .download-row > div > a {
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
            position: absolute;
            transform-style: preserve-3d;
            transform: translateZ(-44px);
            transition: transform 0.25s;
        }

            .download-row > div > a::before {
                font-family: HelveticaNeueLT Std Blk Cn;
                font-size: 24px;
                /*background-color: #fff;
                color: #000;*/
                background-color: #000;
                color: #fff;
                -webkit-transform: rotateY(0deg) translateZ(44px);
                -moz-transform: rotateY(0deg) translateZ(44px);
                -ms-transform: rotateY(0deg) translateZ(44px);
                -o-transform: rotateY(0deg) translateZ(44px);
                transform: rotateY(0deg) translateZ(44px);
            }

            .download-row > div > a::before, .download-row > div > a::after {
                font-family: HelveticaNeueLT Std Blk Cn;
                font-size: 24px;
                justify-content: center;
                align-items: center;
                margin: 0;
                width: 100%;
                height: 88px;
                position: absolute;
                border: 5px solid #fff;
                box-sizing: border-box;
                content: attr(title);
                display: -webkit-box;
                display: -moz-box;
                display: box;
                display: -webkit-flex;
                display: -moz-flex;
                display: -ms-flexbox;
                display: flex;
            }

            .download-row > div > a::after {
                /*background-color: #000;
                border-color: #fff;
                color: #fff;*/
                background-color: #fff;
                border-color: #000;
                color: #000;
                -webkit-transform: rotateX(90deg) translateZ(44px);
                -moz-transform: rotateX(90deg) translateZ(44px);
                -ms-transform: rotateX(90deg) translateZ(44px);
                -o-transform: rotateX(90deg) translateZ(44px);
                transform: rotateX(90deg) translateZ(44px);
            }

            .download-row > div > a:hover {
                -webkit-transform: translateZ(-44px) rotateX(-90deg);
                -moz-transform: translateZ(-44px) rotateX(-90deg);
                -ms-transform: translateZ(-44px) rotateX(-90deg);
                -o-transform: translateZ(-44px) rotateX(-90deg);
                transform: translateZ(-44px) rotateX(-90deg);
            }






.resume-obj {
    font-family: HelveticaNeueLT Std Roman;
    font-size: 18px;
    color: #656572;
    padding-bottom: 50px;
    padding-top: 50px;
}

.resume-cal {
    font-family: HelveticaNeueLT Std Cn;
    color: #ababab;
    font-size: 14px;
    line-height: 14px;
}

    .resume-cal > i {
        font-size: 20px;
        padding-bottom: 5px;
        padding-top: 5px;
    }

.dots-padding {
    height: 100%;
    padding-top: 8px;
    padding-bottom: 20px;
}

.dots {
    border-right: 5px dotted #e7e7e7;
    height: 100%;
    width: 54%;
}

.resume-co {
}

    .resume-co > h1 {
        font-family: HelveticaNeueLT Std Th Cn;
        font-size: 32px;
        color: #000;
        margin-bottom: 0;
        line-height: 32px;
    }

    .resume-co > h2 {
        font-family: HelveticaNeueLT Std Blk Cn;
        font-size: 20px;
        color: #656572;
        line-height: 32px;
        margin-bottom: 5px;
    }

.pad-left-12 {
    padding-left: 0;
}

.resume-txt {
    font-family: HelveticaNeueLT Std Roman;
    font-size: 15px;
    color: #656572;
}

.chip {
    font-family: HelveticaNeueLT Std Roman;
    font-size: 13px;
    background-color: #e7e7e7;
    color: #656572;
    margin-bottom: 5px;
}

.big-chip {
    font-family: HelveticaNeueLT Std Roman;
    font-size: 16px;
    background-color: #e7e7e7;
    color: #656572;
    margin: 3px 0px;
}

.bottom_space {
    padding: 30px;
}

.resume-row {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .resume-row.fd-vis {
        opacity: 1;
        transform: translate(0, 0);
        transition: opacity 1s, transform 1s;
    }

/* -------------------------------------------------- *\
    Responsive changes 
\* -------------------------------------------------- */
.footer {
    position: relative;
}
