:root{
    --pr-color: #fff;
    --second-color: #161616;
    --color-1-1: #BE2518;
    --color-1-2: #ffffffc2;
    --cubicbz: cubic-bezier(.9,0,.1,1);
    --fz-big:60px;
    --pd: 50px;
    --background: #101010;
    --on-background: #f2f2f2;
}

* {
    box-sizing: border-box;
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    margin: 0;
    padding: 0;
    font-feature-settings: 'pnum' on, 'lnum' on;
}

::-webkit-scrollbar{
    width: .6rem;
}

::-webkit-scrollbar-thumb{
    background: rgba(242, 242, 242, .1);
    border-radius: 1rem;
}

body{
    background: var(--background);
    color: var(--on-background);
}


/* Nav Start */

header{
    position: fixed;
    display: flex;
    justify-content: space-between;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 3;
}

.tottle{
    padding: 0 1rem;
    color: var(--on-background);
    text-transform: uppercase;
    text-shadow: 0 5px 10px rgba(0, 87, 255, 0.15), 0 -5px 10px rgba(255, 90, 0, 0.1), 0 -5px 25px rgba(255, 255, 255, 0.3);
    font-size: 1em;
}

nav{
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(242, 242, 242, .05);
    border: 1px solid rgba(242, 242, 242, .1);
    height: 48px;
    padding-left: 6px;
    padding-right: 6px;
    backdrop-filter: blur(15px);
    font-family: 'Exo 2', sans-serif;
    border-radius: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    transition: all .3s;
}

nav > a{
    color: var(--on-background);
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 18px;
    width: 80px;
    height: 36px;
    text-decoration: none;
    display: flex;    
    font-family: 'Exo 2', sans-serif;
    transition: all .3s ;
}

.text-nav-toggle{
    font-weight: 500;
    font-family: 'Exo 2', sans-serif;
    letter-spacing: .2px;
    line-height: 18px;
    text-align: center;
}

nav:hover{
    background-color: rgba(242, 242, 242, .075);
    border: 1px solid rgba(242, 242, 242, .2);
}

nav > a:hover{
    background-color: rgba(242, 242, 242, .05);
    text-shadow: 0 5px 10px rgba(0, 87, 255, 0.15),
    0 -5px 10px rgba(255,90,0,0.1),
    0 -5px 25px rgba(255,255,255,0.3);
}

/* Nav End */

img{
    vertical-align: middle;
    max-width: 100%;
    display: inline-block;
}

.scroll{
    position: relative;
}

/* Hero Start */

.section-hero{
    z-index: 1;
    background-image: radial-gradient(circle closest-corner at 50% 0, rgba(242, 242, 242, .15), rgba(0,0,0,0));
    flex-direction: row;
    justify-content: center;
    padding-top: 160px;
    padding-bottom: 4px;
    display: flex;
    position: relative;
    overflow: hidden;
}

.section-portrait-hero{
    z-index: 1;
    background-image: radial-gradient(circle closest-corner at 50% 0, rgba(242, 242, 242, .15), rgba(0,0,0,0));
    flex-direction: row;
    justify-content: center;
    padding-top: 160px;
    padding-bottom: 3rem;
    display: none;
    position: relative;
    overflow: hidden;
}


.hero-fade{
    z-index: 5;
    background-image: linear-gradient(to bottom, rgba(16,16,16,0), var(--background) 60%);
    flex-direction: column;
    align-items: center;
    height: 200px;
    padding-top: 48px;
    display: flex;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.container-hero-image{
    z-index: 3;
    width: 90%;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 2rem;
    row-gap: 2rem;
}

.container-portrait-image{
    z-index: 3;
    width: 90%;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1rem;
    row-gap: 1rem;
}

.windows{
    position: relative;
    color: var(--on-background);
    text-decoration: none;
}

.windows-portrait{
    position: relative;
    color: var(--on-background);
    text-decoration: none;
}

.windows-portrait:hover .project-card-colour{
    opacity: 1;
}

.windows-portrait:hover .logo-img{
    transform: scale(1.2)
}

.windows:hover .project-card-colour{
    opacity: 1;
}

.windows:hover .logo-img{
    transform: scale(1.2)
}

.glare-item-top.outer-edge{
    z-index: 1;
    background-image: linear-gradient(to right, 
    rgba(0,0,0,0) 5%, 
    rgba(255,255,255, 0.8) 35%, 
    #fff 50%, 
    rgba(255,255,255, 0.8) 65%, 
    rgba(0,0,0,0) 95%);
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.glare-item-top{
    height: 1px;
    margin-bottom: -1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 10%, #fff 50%, rgba(0, 0, 0, 0) 90%);
}

.window-outline{
    backdrop-filter: none;
    outline-offset: -1px;
    background-image: radial-gradient(circle farthest-side at 50% 0, 
    rgba(242,242,242,0.2), rgba(0,0,0,0));
    border-radius: 24px;
    outline: 1px solid rgba(255,255,255,0.15);
    padding: 8px;
    overflow: hidden;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.4),
    0 0 60px rgba(0,0,0,0.2), 0 30px 120px rgba(0,0,0,0.8);
}

.glare-item-top.hero-inner{
    height: 2px;
    margin-bottom: -2px;
}

.window-main{
    backdrop-filter: blur(20px);
    border: 1px solid rgba(242,242,242,0.3);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1),
    0 0 12px rgba(0,0,0,0.4);
}

.window-bar{
    z-index: 5;
    backdrop-filter: blur(40px);
    background-image: linear-gradient(to right, rgba(242, 242, 242, 0.1), rgba(242, 242, 242, 0.5) 50%, rgba(242, 242, 242, 0.1));
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    padding-left: 20px;
    padding-right: 12px;
    display: flex;
    box-shadow: 0 10px 20px 4px rgba(0,0,0,0.2);
}

.window-bar i{
    font-size: 1.5rem;
    color: var(--on-background);
    text-shadow: 0 5px 10px rgba(0, 87, 255, 0.15), 0 -5px 10px rgba(255, 90, 0, 0.1), 0 -5px 25px rgba(255, 255, 255, 0.3);
}

.search{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    padding: .25rem .5rem;
    width: 200px;
    background-color: rgba(242, 242, 242, .75);
    border: 1px solid rgba(242, 242, 242, .5);
    box-shadow: inset -2px -2px 5px rgba(0, 0, 0, .15);
}

.title-text-project{
    color: #101010;
    font-family: 'Exo 2', sans-serif;
    font-weight: 500;
}

.window-content{
    z-index: 5;
    grid-column-gap: 2rem;
    grid-row-gap: 0px;
    background-color: rgba(16,16,16,0.7);
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-around;
    align-items: stretch;
    min-height: 600px;
    padding: 80px 28px 192px;
    display: flex;
    position: relative;
}

.logo-img{
    z-index: 1;
    align-self: center;
    position: relative;
    transition: 0.4s cubic-bezier(.165, .84, .44, 1);
}

.project-card-colour.stadiabt{
    background-image: radial-gradient(circle at 50% 0, rgba(127, 207, 255, .2), rgba(0, 0, 0, 0) 80%), radial-gradient(circle at 50% 0, #035, rgba(0, 0, 0, 0));
}

.project-card-colour{
    z-index: 0;
    opacity: 0;
    background-image: linear-gradient(#035, rgba(0, 0, 0, 0));
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    transition: 0.4s cubic-bezier(.165, .84, .44, 1);
}

.project-card-colour.stadiabt.tve{
    background-image: radial-gradient(circle at 50% 0, rgba(255, 174, 127, 0.2), rgba(0, 0, 0, 0) 80%), radial-gradient(circle at 50% 0, rgb(85, 17, 0), rgba(0, 0, 0, 0));
}

.project-card-colour.stadiabt.tre{
    background-image: radial-gradient(circle at 50% 0, rgba(142, 255, 127, 0.2), rgba(0, 0, 0, 0) 80%), radial-gradient(circle at 50% 0, rgb(7, 85, 0), rgba(0, 0, 0, 0));
}

.project-card-colour.stadiabt.fre{
    background-image: radial-gradient(circle at 50% 0, rgba(255, 253, 127, 0.2), rgba(0, 0, 0, 0) 80%), radial-gradient(circle at 50% 0, rgb(85, 62, 0), rgba(0, 0, 0, 0));
}


/* Hero End */

/* Section Footer Start */
.section-footer{
    border-top: 1px solid rgba(242, 242, 242, 0.1);
    justify-content: center;
    padding-top: 88px;
    padding-bottom: 80px;
    display: flex;
    position: relative;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.container-footer {
    grid-row-gap: 64px;
    flex-direction: column;
    width: 882px;
    display: flex;
}

.footer-top-wrapper {
    justify-content: space-between;
    display: flex;
}

.footer-links-column-wrapper {
    grid-column-gap: 48px;
    display: flex;
}

.footer-bottom-wrapper {
    grid-column-gap: 48px;
    flex: 1;
    justify-content: space-between;
    align-self: stretch;
    align-items: flex-end;
    display: flex;
}

.footer-bottom-left {
    grid-row-gap: 4px;
    flex-direction: column;
    flex: 1;
    align-self: stretch;
    align-items: flex-start;
    display: flex;
}

.text-footer-copyright {
    letter-spacing: .2px;
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.text-under-copyright {
    opacity: .5;
    letter-spacing: .2px;
    text-transform: none;
    font-family: 'Exo 2', sans-serif;
}

.footer-bottom-right {
    flex-direction: column;
    flex: 1;
    justify-content: flex-end;
    align-self: stretch;
    align-items: flex-end;
    display: flex;
}

.text-last-updated {
    opacity: .5;
    letter-spacing: .2px;
    font-family: 'Exo 2', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
}

/* Section Footer End */

@media screen and (max-width: 479px) {
    header{
        justify-content: center;
        padding: 2rem 1rem;
    }
    .tottle{
        display: none;
    }

    .section-hero {
        height: 100vh;
        padding: 88px 12px 0;
        /* display: none; */
    }
    .section-hero-portrait {
        grid-row-gap: 10vh;
        background-image: radial-gradient(circle farthest-side at 50% 0, #f2f2f240, #0000 80%);
        flex-direction: column;
        align-items: stretch;
        padding: 20vh 16px 6vh;
        display: flex;
        position: relative;
    }
    .hero-portrait-main {
        z-index: 1;
        grid-row-gap: 6vh;
        flex-direction: column;
        padding-left: 8px;
        padding-right: 8px;
        display: flex;
        position: relative;
    }
    .hero-portrait-top {
        z-index: 1;
        grid-row-gap: 3vh;
        flex-direction: column;
        align-items: flex-start;
        display: flex;
        position: relative;
    }
    .hero-portrait-top {
        z-index: 1;
        grid-row-gap: 3vh;
        flex-direction: column;
        align-items: flex-start;
        display: flex;
        position: relative;
    }
    .text-portrait-overline {
        color: #f2f2f280;
        font-family: Neue Montreal, sans-serif;
        font-size: 16px;
        font-weight: 400;
        display: block;
    }
    .text-hero.portrait {
        text-align: left;
        letter-spacing: -.25vw;
        font-size: 13vw;
        line-height: 12vw;
    }
    .text-hero {
        text-align: center;
        letter-spacing: -.75vw;
        text-shadow: 0 5px 15px #0057ff40, 0 -5px 15px #ff5a0033, 0 0 30px #fff6;
        font-size: 13dvw;
        line-height: 13dvw;
    }
    .text-hero-serif {
        letter-spacing: -.25vw;
    }
    .hero-portrait-bottom {
        z-index: 1;
        grid-row-gap: 2vh;
        flex-direction: column;
        align-items: flex-start;
        display: flex;
        position: relative;
    }
    .text-portrait-secondary {
        color: #f2f2f280;
        font-family: Neue Montreal, sans-serif;
        font-size: 5vw;
        font-weight: 500;
        line-height: 140%;
    }
    .text-open-to-new-opportunities {
        color: #f2f2f2e6;
    }
    .text-portrait-secondary {
        color: #f2f2f280;
        font-family: Neue Montreal, sans-serif;
        font-size: 5vw;
        font-weight: 500;
        line-height: 140%;
    }
    .divider-scroll-wrapper {
        z-index: 1;
        grid-row-gap: 16px;
        flex-direction: column;
        flex: 0 auto;
        align-items: stretch;
        display: flex;
        position: relative;
    }
    .hero-portrait-divider {
        background-color: #f2f2f21a;
        width: 100%;
        height: 1px;
        padding-bottom: 0;
        padding-right: 0;
    }

    .section-footer {
        padding: 64px 16px 48px;
    }
    .container-footer {
        grid-row-gap: 48px;
    }
    .footer-top-wrapper {
        grid-row-gap: 48px;
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-links-column-wrapper {
        grid-column-gap: 16px;
    }
    .footer-links-column {
        grid-row-gap: 12px;
        width: 96px;
    }
    .footer-bottom-wrapper {
        grid-row-gap: 32px;
    }
    .footer-bottom-left {
        grid-row-gap: 8px;
    }
    .text-footer-copyright {
        font-size: 14px;
        line-height: 18px;
    }
    .text-under-copyright {
        font-size: 12px;
        line-height: 16px;
    }

    .section-general {
        background-image: none;
        padding: 64px 16px;
        padding-left: 16px;
        padding-right: 16px;
    }
    .container-general {
        grid-row-gap: 80px;
    }
    .associated-content-block {
        grid-row-gap: 48px;
    }
    .section-starting-block {
        grid-column-gap: 48px;
        grid-row-gap: 48px;
    }
    .overline-heading-block {
        grid-row-gap: 24px;
    }    
    .overline-wrapper {
        grid-column-gap: 10px;
    }
    .text-projectpage-overline {
        font-size: 10px;
        line-height: 16px;
    }
    .text-projectpage-heading {
        font-size: 32px;
    }
    .text-projectpage-heading {
        line-height: 120%;
    }
    .text-projectpage-subheading {
        font-size: 20px;
    }
    .text-projectpage-body {
        font-size: 15px;
    }
    .media-caption-wrapper {
        grid-row-gap: 8px;
    }
    .image-default, .image-default.highlight-outline {
        border-radius: 12px;
    }
    .double-column-block.contains-heading {
        grid-column-gap: 24px;
        grid-row-gap: 24px;
    }
        .contained-points-item {
        padding: 22px 20px;
    }
    .contained-points-item.top-radius {
        padding-top: 22px;
        padding-bottom: 20px;
    }
    .contained-points-item.middle-radius {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .contained-points-item.bottom-radius {
        padding-top: 20px;
        padding-bottom: 22px;
    }
    .contained-points-block.vertical {
        flex-direction: column;
    }
    .text-projectpage-body {
        font-size: 15px;
    }

}

@media screen and (max-width: 767px) {
    .section-hero {
        padding-top: 120px;
        padding-left: 24px;
        padding-right: 24px;
    }
    .text-hero {
        letter-spacing: -1.5px;
        font-size: 8.4vw;
    }

    .section-footer {
        padding: 48px 24px;
    }
    .footer-bottom-wrapper {
        grid-row-gap: 48px;
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-bottom-right {
        align-items: flex-start;
    }

    .section-divider, .section-general {
        padding-left: 24px;
        padding-right: 24px;
    }
    .section-starting-block {
        grid-row-gap: 48px;
    }
    .double-column-block {
        grid-row-gap: 24px;
        grid-template-rows: auto auto;
        grid-template-columns: 1fr;
    }
    .content-trailing {
        padding-top: 0;
    }
    .text-projectpage-body {
        font-size: 15px;
    }
    .media-caption-wrapper {
        grid-row-gap: 10px;
    }
    .double-column-block {
        grid-row-gap: 24px;
        grid-template-rows: auto auto;
        grid-template-columns: 1fr;
    }
    .double-column-block.contains-heading {
        grid-row-gap: 40px;
    }
    .contained-points-item {
        padding-bottom: 24px;
    }
    .contained-points-item.top-radius {
        padding-top: 24px;
        padding-bottom: 22px;
    }
    .contained-points-item.middle-radius {
        padding-top: 22px;
        padding-bottom: 22px;
    }
    .contained-points-item.bottom-radius {
        padding-top: 22px;
        padding-bottom: 24px;
    }
    .text-projectpage-body {
        font-size: 15px;
    }
    .contained-points-item.top-radius {
        border-radius: 24px 24px 6px 6px;
    }
    .contained-points-item.right-radius {
        border-radius: 6px 6px 24px 24px;
    }
    .contained-point-wrapper.column {
        align-items: flex-start;
        display: flex;
        flex-direction: row;
    }
    .contained-points-block.vertical {
        flex-direction: column;
    }

    .section-portrait-hero{
        display: flex;
    }

    .section-hero{
        display: none;
    }
    .window-content{
        min-height: 180px;
        padding: 30px 28px;
    }
}

@media screen and (max-width: 991px) {
    .section-hero {
        padding-left: 48px;
        padding-right: 48px;
    }
    .text-hero {
        font-size: 8.2vw;
    }
    .text-hero-serif {
        letter-spacing: -1.5px;
    }

    .section-footer {
        padding-left: 48px;
        padding-right: 48px;
    }
    .container-footer {
        width: 100%;
    }
    .footer-links-column-wrapper {
        grid-column-gap: 32px;
    }
    .footer-links-column {
        width: 80px;
    }
    .footer-bottom-wrapper {
        grid-column-gap: 0px;
    }

    .section-general {
        background-image: none;
        padding-left: 48px;
        padding-right: 48px;
    }
    .container-general {
        width: 100%;
    }
    .double-column-block {
        grid-column-gap: 32px;
    }
    .text-projectpage-body {
        width: auto;
    }
    .double-column-block {
        grid-column-gap: 32px;
    }
    .contained-point-wrapper {
        align-items: flex-start;
    }
    .text-projectpage-body {
        width: auto;
    }

    .container-hero-image{
        grid-template-columns: 1fr 1fr;
    }
}