* {
    margin: 0;
    padding: 0;
    list-style: none;
    /* font-family: 'Helvetica', 'Arial', sans-serif; */
    font-family: Fixel,sans-serif;
    font-weight: 300;
    box-sizing: border-box;
    text-decoration: none;
}

*, *:after, *:before {
    box-sizing: border-box;
}

body {
    min-height: 100svh;
    min-width: 10vw;
}
h1 {
    font-size: 2rem;
}
h2 {
    font-size: 2rem;
}
h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
}
.sr-only {
    visibility: hidden;
    display: none;
}
.sk-yellow {
    color: rgba(255, 240, 0, 0.85);
}
.sk-light-grey {
    color: rgba(175, 175, 175, 0.85);
}
.sk-dark-grey {
    color: rgba(65, 65, 65, 0.85);
}
.highlighter {
    display: inline-block;
    cursor: pointer;
    background-image: linear-gradient(to right, rgba(255, 240, 0, 0.85) 50%, rgba(255, 255, 255, 0) 50%);
    background-size: 201%;
    background-position: 100%;
    transition: background-position 0.2s;
}
.highlighter:hover {
    background-position: 0%;     
}
mark {
    -webkit-animation: 1.5s highlight 1.5s 1 normal forwards;
            animation: 1.5s highlight 1.5s 1 normal forwards;
            /* animation-name: highlight;
            animation-duration: 1.5s; 
            animation-timing-function: ease-out; 
            animation-delay: 1.5s;
            animation-direction: forwards;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
            animation-play-state: initial;  */
    background-color: none;
    background: linear-gradient(90deg, rgba(255, 240, 0, 0.85) 50%, rgba(255, 255, 255, 0) 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
}
@-webkit-keyframes highlight {
    to {
        background-position: 0 0;
    }
}
@keyframes highlight {
    to {
        background-position: 0 0;
    }
}
.highlighter-show:hover {
    background-position: 0%;     
}
::-moz-selection { /* Code for Firefox */
    color: black;
    background: rgba(255, 240, 0, 0.85);
  }
::selection {
    color: black;
    background: rgba(255, 240, 0, 0.85);
}
.flex {
    display: flex;
    gap: var(--gap, 3rem);
}
.flex-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.half {
    width: 50%;
    text-align: left;
    padding: 0 0.5rem;
}
.light {
    color: rgb(255, 255, 255);
    fill: rgb(255, 255, 255);
}

.light:hover {
    color: rgb(255, 238, 0);
    fill: rgb(255, 238, 0);
}
.dark {
    color: rgb(0, 0, 0);
    fill: rgb(0, 0, 0);
}

.dark:hover {
    color: rgb(255, 238, 0);
    fill: rgb(255, 238, 0);
}

/* primary header */
.logo a {
    position: fixed;
    top: 1rem;
    left: 1rem;
    font-size: 2rem;
    font-weight: lighter;
    padding: 0 1.5em;
    z-index: 9999;
}

 /* navigation */
.menu-button {
    display: none;
}
.primary-navigation {
    list-style: none;
    padding: 0 4em;
    margin: 0;
}
.primary-navigation li a {
    text-decoration: none;
    color: #000;
}
.primary-navigation a > [aria-hidden ="true"] {
    font-weight: 700;
    margin-inline-end: 0.5em
}
.nav-container {
    padding-left: 56%;
}
.primary-navigation {
    --gap: 2rem;
    padding: 5rem 4rem;

    position: fixed;
    z-index: 99;
    inset: 0 0 0 0%;

    flex-direction: column;

    background: #ffffff;

    transform: translateY(-100%);
    transition: transform 250ms ease-in-out;

    border-bottom: 1px solid rgb(0, 0, 0);

    overflow: hidden;
}
.primary-navigation ul {
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 3rem;
}
.primary-navigation[data-visible="true"] {
    transform: translateX(0%);
}
.primary-navigation[data-visible="false"] li a {
    color: #ffffff;
    transition-delay: 0ms;
    transition: color 0ms ease-in;
}
.primary-navigation[data-visible="true"] li a {
    font-size: 3rem;
    color: #000;

}
.menu-button {
    display: block;
    position: fixed;
    background: transparent;
    top: 0;
    right: 0;
    padding-top: 1.75rem;
    padding-left: 4rem;
    padding-right: 4rem;
    padding-bottom: 1.6rem;
    z-index: 9999;
    border: none;
}
.menu-button:hover {
    cursor: pointer;
}
.menu-button .line {
    transition: 350ms;
    transform-origin: center;
}
.menu-button[aria-expanded="true"] .top {
    y: 40px;
    rotate: 45deg;
    fill: black;
}
.menu-button[aria-expanded="true"] .middle {
    opacity: 0;
}
.menu-button[aria-expanded="true"] .bottom {
    y: 40px;
    rotate: -45deg;
    fill: black;
}
.logo[data-visible="true"] a.light {
    color: #000;
    transition: color 100ms ease-in-out;
}
.logo[data-visible="false"] a.light {
    color: #ffffff;
    transition: color 150ms ease-in;
}

.logo a.light:hover {
    color: rgb(255, 238, 0);
    transition: color 100ms ease-in-out;
}

.logo a.dark:hover {
    color: rgb(255, 238, 0);
}
.logo-big {
    transform: rotate(-90);
    font-size: 24rem;
}
.nav-info {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    justify-content: space-between;
    padding: 2rem 4rem;
}

/* main project section */
.wrapper-outer {
    height: 100svh;
    overflow: hidden;
    background-color: #000;
}
.wrapper {
    height: 100%;
    perspective: 1px;
}
.fullscreen {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    position: fixed;
}
.hero-main {
    scroll-snap-type: y mandatory;
}
.scrolldn {
    position: absolute;
    bottom: 5rem;
    letter-spacing: .2rem;
}
.scrolldn img {
    fill: white;
    transform-origin: center;
    transition: fill .2s;
    filter: invert(100%);
    width: 50px;
}

@media (max-height: 540px) {
    .scrolldn {
        display: none;
    }
}
.fullscreen-section {
    height: 100svh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background-color: rgb(0, 0, 0);
    flex-direction: column;
    gap: 1rem;
    scroll-snap-align: start;
}
.fullscreen-section a {
    text-decoration: none;
    color: white; 
}
.fullscreen-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
    min-height: 100%;
    transform: translate3d(0,0,-1px) scale(1.0);
}
.title-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;

    display: flex;
    text-align: center;
    gap: 1rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: radial-gradient(ellipse 50% 50%, rgba(0,0,0,0.25), rgba(0,0,0,0));
}
.title-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}
.maintitle {
    font-size: 5rem;
}
.text-balance {
    text-rendering: optimizeLegibility;
}
.learn-btn {
    background: none;
    padding: 0.5rem;
    border: 1px solid white;
    color: white;
    width: fit-content;
    margin-top: 1rem;
}
.learn-btn:hover {
    color: black;
    background: white;
    cursor: pointer;
}

/* project info section */
.project-info {
    background-color: rgb(255, 255, 255);
    width: 100%;
    padding: 5rem 5rem 8rem 5rem;
}
.project-description {
    margin: 0 auto;
    max-width: 50rem;
}
.project-location {
    padding-top: 1rem;
    padding-bottom: 3rem;
}
.project-team {
    padding-top: 3rem;
}
.team-title {
    padding-top: 5rem;
    padding-bottom: 1rem;
}
.team-list li {
    padding-top: 1rem;
}
.team-list li h5{
    font-weight: 800;
}
.team-list li p{
    padding-top: 0.25rem;
    font-weight: 100;
}

/* POST NAVIGATION SECTION */
.post-nav {
    padding: 3rem 5rem;
    width: 100%;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.post-nav a {
    color: #000;
}

.post-nav li:first-child {
    text-align: left;
}

.links {
    justify-content: space-between;
    align-items: center;
    gap: 0rem;
}

.prev {
    padding: 0.1875rem 0rem 0.1875rem 2rem;
    background: url("../img/left.svg") 0 50% no-repeat !important;
}

.next {
    padding: 0.1875rem 2rem 0.1875rem 0rem;
    background: url("../img/right.svg") 100% 50% no-repeat !important;
}

@media (max-width: 830px) {
    .wide-text {
        display: none;
    }

    .prev {
        padding-left: 1.5rem;
    }

    .next {
        padding-right: 1.5rem;
    }
}


/* FOOTER SECTION */
.footer-container {
    padding: 5rem 5rem;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color:  rgb(240, 240, 240);
}
.legal {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3rem;
}
.social-icons {
    gap: 2rem;
}

@media (max-width: 830px) {
    .social-icons {
        justify-content: space-between;
        width: 100%;
    }

    .legal {
        justify-content: space-between;
        width: 100%;
    }
}

@media (max-width: 540px) {
    .legal {
        display: block;
    }
}
.social-icons img {
    width: 40px;
    height: 18px;
}

.svg {
    width: 18px;
    height: 18px;
}

.svg:hover {
    fill: gold;
}

/* CONTACT SECTON */
.content-wrapper {
    padding: 5rem 5rem 8rem 5rem;
    width: 100%;
    flex-direction: column;
    max-width: 50rem;
    margin: 0 auto;
    min-height: 92vh;
}
.title {
    margin: 3rem auto;
    font-size: 5em;
}
.email-divider {
    gap: 0;
}
.field {
    margin-bottom: 1rem;
}
.field .item {
    width: 100%;
    padding: 0.5rem;
    border-radius: 0;
}
.action-btn {
    background: rgb(0, 0, 0);
    padding: 0.5rem;
    border: 1px solid rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    width: fit-content;
}
.action-btn:hover {
    color: rgb(0, 0, 0);
    background: rgba(255, 240, 0, 0.85);
    cursor: pointer;
    border: 1px solid rgb(255, 240, 0);
}
.locations {
    padding-top: 3rem;
    gap: 0;
    text-align: left;
}
input {
    border: 1px solid rgb(0, 0, 0);
    width: 100%;
    padding: 0.5rem;
    border-radius: 0;
}
input:focus {
    border: 1px solid rgba(255, 240, 0, 0.85);
    outline-style: solid; 
    outline-color: rgba(255, 240, 0, 0.85);
}
textarea {
    border: 1px solid rgb(0, 0, 0);
    width: 100%;
    padding: 0.5rem;
    border-radius: 0;
}
textarea:focus {
    border: 1px solid rgba(255, 240, 0, 0.85);
    outline-style: solid; 
    outline-color: rgba(255, 240, 0, 0.85);
}

.successmsg {
    text-align: center;
    margin: auto;
}

@media (max-width: 700px) {
    .email-divider {
        flex-wrap: wrap;
    }

    .half {
        width: 100%;
        padding: 0 1rem;
        text-align: center;
    }

    .locations {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.ohnohoney{
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}




