* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

body a {
    text-decoration: none;
}

* {
    cursor: url("../media/img/logo-&-nav/cursor.png") 0 0, auto;
}







html {
    font-size: 16px;
}




/* FONTS */

/* PAGE HEADERS */
h1 {
    font-family: "cc-regeneration-variable", sans-serif;
    font-variation-settings: "ital"0, "wght"400;
    /* font-size: 120pt; */
    font-size: 10rem;
    color: #2C1400;
}

/* TEXT BOX HEADERS */
h2 {
    font-family: "cc-regeneration-variable", sans-serif;
    font-variation-settings: "ital"0, "wght"400;
    /* font-size: 60pt; */
    font-size: 5rem;
    color: #2C1400;
}

/* HOME NAV BOX HEADERS */
h3 {
    font-family: "cc-regeneration-variable", sans-serif;
    font-variation-settings: "ital"0, "wght"400;
    /* font-size: 40pt; */
    font-size: 3.3rem;
    color: #2C1400;
}

/* CARD HEADERS */
h4 {
    font-family: "cc-regeneration-variable", sans-serif;
    font-variation-settings: "ital"0, "wght"400;
    /* font-size: 28pt; */
    font-size: 2.3rem;
    color: #2C1400;
    text-transform: uppercase;
}

/* UNDER HEADER SUB HEADERS */
h5 {
    font-family: "museomoderno", sans-serif;
    font-weight: 500;
    font-style: normal;
    /* font-size: 24pt; */
    font-size: 2rem;
    color: #2C1400;
}

/* BUTTONS */
h6 {
    font-family: "museomoderno", sans-serif;
    font-weight: 500;
    font-style: normal;
    /* font-size: 24pt; */
    font-size: 2rem;
    color: #2C1400;
}

/* BODY TEXT */
p {
    font-family: "museomoderno", sans-serif;
    font-weight: 300;
    font-style: normal;
    /* font-size: 18pt; */
    font-size: 1.5rem;
    color: #2C1400;
}

/* FOOTER LINKS */

ul {
    font-family: "museomoderno", sans-serif;
    font-weight: 500;
    font-style: normal;
    /* font-size: 12pt; */
    font-size: 1rem;
    color: #2C1400;
}





/* COLOURS */

/* body {
    background-color: #FDF6E6;
    background-color: #FFEAD5;
background-color: #EBCAA8;
background-color: #C59E76;
background-color: #F1D4B6;

background-color: #2C1400;
background-color: #371B05;
background-color: #562914;
background-color: #84472A;

background-color: #FFE6BB;
background-color: #FFBF53;

background-color: #FFD5C5;
background-color: #F99872;

background-color: #FFD1E4;
background-color: #FF6CB4;

background-color: #F3DCFF;
background-color: #B175D1;

background-color: #D5F2F8;
background-color: #4AABBE;

background-color: #E9E1A5;
background-color: #A09754;
} */




















/* NAVIGATION */

nav {
    height: 100px;
    width: 100%;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3000;
    background-color: rgba(86, 41, 20, 0);
    /* <-- ADD THIS */
}


.nav-button {
    height: 60px;
    width: 200px;
    background-color: #f1d4b6;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
    position: relative;
    z-index: 10000;
}

.nav-button img {
    height: 100%;
}

.nav-logo {
    height: 60px;
    width: 200px;
    background-color: #f1d4b6;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10000;
}

.nav-logo img {
    height: 100%;
}

.nav-button,
.nav-logo {
    border-radius: 20px;
    border-color: #562914;
    border-width: 3px;
    border-style: solid;
    box-shadow: 5px 5px 0px rgba(86, 41, 20, 0.8);
}

.home-page .nav-logo {
    visibility: hidden;
}

.nav-button:hover,
.nav-logo:hover {
    transform: scale(1.05);
}




/* NAVIGATION OPEN */

.nav-open {
    width: 100%;
}

.nav-open-content {
    width: 60%;
    background-color: #FDF6E6;
    border-radius: 20px;
    border-style: solid;
    border-width: 5px;
    border-color: #562914;
    box-shadow: 10px 10px 0px rgba(86, 41, 20, 1);
    padding: 30px;
    display: flex;
    flex-direction: column;
    right: 60px;
    top: 100px;
    position: absolute;
    z-index: 888;
    gap: 20px;
}

.nav-r-one,
.nav-r-two,
.nav-r-three {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

/* ROW ONE */

.nav-home {
    width: 50%;
    background-color: #d5f2f8;
    border-color: #002f36;
    border-style: solid;
    border-width: 3px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    text-align: center;
    padding: 30px;
}

.nav-home h3 {
    padding-bottom: 8px;
    color: #002f36;
}

.nav-home:hover {
    transform: scale(1.02);
}

.nav-about {
    width: 50%;
    background-color: #E9E1A5;
    border-color: #4B5320;
    border-style: solid;
    border-width: 3px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    text-align: center;
    padding: 30px;
}

.nav-about h3 {
    padding-bottom: 8px;
    color: #4B5320;
}

.nav-about:hover {
    transform: scale(1.02);
}

/* ROW TWO */

.nav-port {
    width: 100%;
    background-color: #ffd1e4;
    border-color: #A90C51;
    border-style: solid;
    border-width: 3px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    text-align: center;
    padding: 20px;
}

.nav-port h3 {
    padding-bottom: 24px;
    color: #A90C51;
    font-size: 70pt;
}

.nav-port:hover {
    transform: scale(1.02);
}

/* ROW THREE */


.nav-con {
    width: 35%;
    background-color: #ffd9ca;
    border-color: #AF340B;
    border-style: solid;
    border-width: 3px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    text-align: center;
    padding: 10px;
}

.nav-con h3 {
    padding-bottom: 8px;
    color: #AF340B;
}

.nav-con:hover {
    transform: scale(1.02);
}

.nav-bus {
    width: 65%;
    background-color: #f3dcff;
    border-color: #430A60;
    border-style: solid;
    border-width: 3px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    text-align: center;
    padding: 10px;
}

.nav-bus h3 {
    padding-bottom: 8px;
    color: #430A60;
}

.nav-bus:hover {
    transform: scale(1.02);
}


/* open/close */

/* NAV CLOSED BY DEFAULT */
.nav-open {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* NAV OPEN WHEN VISIBLE CLASS ADDED */
.nav-open.visible {
    opacity: 1;
    pointer-events: auto;
}

/* BUTTON DEFAULT */
.nav-button {
    transition: background-color 0.3s ease;
    cursor: pointer;
}

/* BUTTON WHEN NAV IS OPEN */
.nav-button.active {
    background-color: #fdf6e6;
}

.nav-button img {
    pointer-events: none;
}



















/* FOOTER */

.footer {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-top: -400px;
}

.bottom-links ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    color: #fdf6e6;
    background-color: #252B07;
    padding-top: 30px;
    padding-bottom: 20px;
    padding-left: 120px;
    padding-right: 120px;
    margin-top: -10px;
    text-transform: uppercase;
}

.footer-imgs {
    width: 100%;
}

.footer-imgs img {
    width: 100%;
}



















/* PORTFOLIO hero */

.portfolio-hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #ffead5;
    overflow: hidden;
    gap: 2vw;
    position: relative;
    overflow: visible;
    max-height: 900px;
    min-height: 700px;
}

/* PORTFOLIO HERO BACKGROUND */

.portfolio-hero-bg {
    width: 100%;
    display: flex;
    flex-direction: row;
    bottom: 0;
    position: absolute;
    margin-top: 10%;
}

.portfolio-bg-left {
    width: 30%;
    position: absolute;
    bottom: 0;
}

.portfolio-bg-right {
    margin-bottom: 10%;
    margin-left: 30%;
}

.portfolio-bg-left img {
    width: 100%;
}

.portfolio-bg-right p {
    width: 60%;
}

/* PORTFOLIO HERO FOREGROUND */

.portfolio-hero-fg {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.portfolio-fg-left {
    width: 18%;
    position: absolute;
    left: -2%;
    bottom: -30%;
}

.portfolio-fg-right {
    width: 30%;
    position: absolute;
    right: -2%;
    bottom: -30%;
    z-index: 0;
}

.portfolio-fg-left img {
    width: 100%;
}

.portfolio-fg-right img {
    width: 100%;
}



















/* PORTFOLIO CONTENT */

.portfolio-content {
    width: 100%;
    height: 100%;
    background-image: url(../media/img/backgrounds/lino.png);
    background-size: cover;
    padding-left: 4vw;
    padding-right: 4vw;
    padding-top: 20vh;
    padding-bottom: 30%;
    display: flex;
    background-attachment: fixed;
}

/* PORTFOLIO CONTENT FOREGROUND */

.content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8vw;
}





/* ROW PARENTs */
.row {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 8vw;
}

.row-two {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 8vw;
}

.row-three {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8vw;
}

.row-five {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 8vw;
}




/* ROW ONE */

/* ECHO */

.echo {
    width: 60%;
    /* height: 70%; */
    transition: transform 0.3s ease-in-out;
}

.echo:hover {
    transform: scale(1.02);
}

.echo-content {
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: row;
    gap: 2vh;
    padding: 30px;
    background-color: #ffd1e4;
    border-style: solid;
    border-width: 5px;
    border-radius: 20px;
    border-top-left-radius: 0;
    border-color: #A90C51;
    box-shadow: 10px 10px 0px rgba(169, 12, 81, 0.8);
    position: static;
    z-index: 500;
    min-height: 500px;
    max-height: 800px;
}

.echo-left {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 2vh;
}

.echo-right {
    width: 60%;
    height: 100%;
}

.echo-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border-color: #A90C51;
    border-style: solid;
}

.echo-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border-color: #A90C51;
    border-style: solid;
}

.echo-label {
    font-size: 24pt;
    padding-left: 30px;
    padding-right: 30px;
    font-family: "cc-regeneration-variable", sans-serif;
    font-variation-settings: "ital"0, "wght"400;
    color: #2C1400;
    text-transform: uppercase;
    background-color: #FF6CB4;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    width: 75%;
    padding-top: 5px;
    padding-bottom: 10px;
    border-color: #A90C51;
    border-style: solid;
    border-width: 5px;
    box-shadow: 10px 0px 0px rgba(169, 12, 81, 0.8);
    border-bottom: none;
    margin-bottom: -5px;
    position: relative;
    z-index: 999;
}





/* AEVIRAA */

.aeviraa {
    width: 40%;
    height: 80%;
    transition: transform 0.3s ease-in-out;
}

.aeviraa:hover {
    transform: scale(1.02);
}

.aeviraa-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 2vh;
    padding: 30px;
    background-color: #ffe6bb;
    border-style: solid;
    border-width: 5px;
    border-radius: 20px;
    border-top-left-radius: 0;
    border-color: #84472A;
    box-shadow: 10px 10px 0px rgba(132, 71, 44, 0.8);
    position: static;
    z-index: 0;
    min-height: 500px;
    max-height: 900px;
}

.ae-top {
    width: 100%;
    height: 40%;
    display: flex;
    flex-direction: row;
    gap: 2vh;
}

.ae-top-left {
    width: 40%;
}

.ae-top-right {
    width: 60%;
}

.ae-bottom {
    width: 100%;
    height: 60%;
}

.ae-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border-color: #84472A;
    border-style: solid;
}

.ae-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border-color: #84472A;
    border-style: solid;
}

.aeviraa-label {
    font-size: 24pt;
    padding-left: 30px;
    padding-right: 30px;
    font-family: "cc-regeneration-variable", sans-serif;
    font-variation-settings: "ital"0, "wght"400;
    color: #2C1400;
    text-transform: uppercase;
    background-color: #ffbf53;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    width: 50%;
    padding-top: 5px;
    padding-bottom: 10px;
    border-color: #84472a;
    border-style: solid;
    border-width: 5px;
    box-shadow: 10px 0px 0px rgba(132, 71, 44, 0.8);
    border-bottom: none;
    margin-bottom: -5px;
    position: relative;
    z-index: 999;
}









/* ROW TWO */

/* NOVA */
.nova {
    width: 30%;
    background-color: #ffd9ca;
    border-color: #832100;
    padding-top: 0px;
    border-style: solid;
    border-width: 5px;
    border-radius: 20px;
    box-shadow: 10px 10px 0px rgba(131, 33, 0, 0.8);
    transition: transform 0.3s ease-in-out;
    min-height: 400px;
    max-height: 600px;
}

.nova:hover {
    transform: scale(1.02);
}

.nova-header {
    background-color: #F99872;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding-left: 30px;
    padding-top: 2px;
    padding-bottom: 10px;
}

.nova-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border-color: #832100;
    border-style: solid;
}

.nova-content {
    width: 100%;
    height: 90%;
    padding: 30px;
}




/* WONDER KIWI */

.wonder {
    width: 30%;
    background-color: #F3DCFF;
    border-color: #430A60;
    padding-top: 0px;
    border-style: solid;
    border-width: 5px;
    border-radius: 20px;
    box-shadow: 10px 10px 0px rgba(67, 10, 96, 0.8);
    transition: transform 0.3s ease-in-out;
    min-height: 400px;
    max-height: 600px;
}

.wonder:hover {
    transform: scale(1.02);
}

.wonder-header {
    background-color: #b175d1;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding-left: 30px;
    padding-top: 2px;
    padding-bottom: 10px;
}

.wonder-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border-color: #430A60;
    border-style: solid;
}

.wonder-content {
    width: 100%;
    height: 90%;
    padding: 30px;
}





/* Whaka */

.whaka {
    width: 30%;
    background-color: #E9E1A5;
    border-color: #4B5320;
    padding-top: 0px;
    border-style: solid;
    border-width: 5px;
    border-radius: 20px;
    box-shadow: 10px 10px 0px rgba(75, 83, 32, 0.8);
    transition: transform 0.3s ease-in-out;
    min-height: 400px;
    max-height: 600px;
}

.whaka:hover {
    transform: scale(1.02);
}

.whaka-header {
    background-color: #A09754;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding-left: 30px;
    padding-top: 2px;
    padding-bottom: 10px;
}

.whaka-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border-color: #4B5320;
    border-style: solid;
}

.whaka-content {
    width: 100%;
    height: 90%;
    padding: 30px;
}









/* ROW 3 */

/* BEYOND */

.beyond {
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.beyond:hover {
    transform: scale(1.02);
}

.beyond-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 2vh;
    padding: 30px;
    background-color: #d5f2f8;
    border-style: solid;
    border-width: 5px;
    border-radius: 20px;
    border-top-left-radius: 0;
    border-color: #003640;
    box-shadow: 10px 10px 0px rgba(0, 54, 64, 0.8);
    position: static;
    z-index: 0;
    min-height: 400px;
    max-height: 1200px;
}

.beyond-img {
    width: 100%;
    height: 50%;
}

.beyond-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border-color: #003640;
    border-style: solid;
}

.beyond-label {
    font-size: 24pt;
    padding-left: 30px;
    padding-right: 30px;
    font-family: "cc-regeneration-variable", sans-serif;
    font-variation-settings: "ital"0, "wght"400;
    color: #2C1400;
    text-transform: uppercase;
    background-color: #4aabbe;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    width: 35%;
    padding-top: 5px;
    padding-bottom: 10px;
    border-color: #003640;
    border-style: solid;
    border-width: 5px;
    box-shadow: 10px 0px 0px rgba(0, 54, 64, 0.8);
    border-bottom: none;
    margin-bottom: -5px;
    position: relative;
    z-index: 999;
}





/* SLUDGE */

.sludge {
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.sludge:hover {
    transform: scale(1.02);
}

.sludge-label {
    font-size: 24pt;
    padding-left: 30px;
    padding-right: 30px;
    font-family: "cc-regeneration-variable", sans-serif;
    font-variation-settings: "ital"0, "wght"400;
    color: #2C1400;
    text-transform: uppercase;
    background-color: #A09754;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    width: 35%;
    padding-top: 5px;
    padding-bottom: 10px;
    border-color: #4B5320;
    border-style: solid;
    border-width: 5px;
    box-shadow: 10px 0px 0px rgba(75, 83, 32, 0.8);
    border-bottom: none;
    margin-bottom: -5px;
    position: relative;
    z-index: 999;
}

.sludge-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2vh;
    padding: 30px;
    background-color: #E9E1A5;
    border-style: solid;
    border-width: 5px;
    border-radius: 20px;
    border-top-left-radius: 0;
    border-color: #4B5320;
    box-shadow: 10px 10px 0px rgba(75, 83, 32, 0.8);
    position: static;
    z-index: 0;
    min-height: 500px;
    max-height: 2000px;
}

.sludge-content-top {
    height: 50%;
}

.sludge-content-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10pt;
    border-color: #4B5320;
    border-style: solid;
}

.sludge-content-bottom {
    height: 50%;
    display: flex;
    gap: 2vw;
}

.sludge-left {
    width: 53%;
    height: 100%;
}

.sludge-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10pt;
    border-color: #4B5320;
    border-style: solid;
}

.sludge-right {
    width: 50%;
    height: 100%;
}

.sludge-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10pt;
    border-color: #4B5320;
    border-style: solid;
}









/* ROW FOUR */

/* GRUNT & GRIND */

.grunt {
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.grunt:hover {
    transform: scale(1.02);
}

.grunt-label {
    font-size: 24pt;
    padding-left: 30px;
    padding-right: 30px;
    font-family: "cc-regeneration-variable", sans-serif;
    font-variation-settings: "ital"0, "wght"400;
    color: #2C1400;
    text-transform: uppercase;
    background-color: #F99872;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    width: 35%;
    padding-top: 5px;
    padding-bottom: 10px;
    border-color: #832100;
    border-style: solid;
    border-width: 5px;
    box-shadow: 10px 0px 0px rgba(131, 33, 0, 0.8);
    border-bottom: none;
    margin-bottom: -4.5px;
    position: relative;
    z-index: 999;
}

.grunt-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 2vw;
    padding: 30px;
    background-color: #ffd9ca;
    border-style: solid;
    border-width: 5px;
    border-radius: 20px;
    border-top-left-radius: 0;
    border-color: #832100;
    box-shadow: 10px 10px 0px rgba(131, 33, 0, 0.8);
    position: static;
    z-index: 0;
}

.grunt-right,
.grunt-left {
    width: 50%;
    height: 100%;
}


.grunt-left img,
.grunt-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border-color: #832100;
    border-style: solid;
}









/* ROW FIVE */

/* VELVET LOOM STUDIO */

.velvet {
    width: 50%;
    background-color: #ffd1e4;
    border-color: #A90C51;
    padding-top: 0px;
    border-style: solid;
    border-width: 5px;
    border-radius: 20px;
    box-shadow: 10px 10px 0px rgba(169, 12, 81, 0.8);
    transition: transform 0.3s ease-in-out;
    min-height: 600px;
    max-height: 900px;
}

.velvet:hover {
    transform: scale(1.02);
}

.velvet-header {
    background-color: #ff6cb4;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding-left: 30px;
    padding-top: 2px;
    padding-bottom: 10px;
}

.velvet-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border-color: #A90C51;
    border-style: solid;
}

.velvet-content {
    width: 100%;
    height: 93%;
    padding: 30px;
    display: flex;
    flex-direction: column;
}





/* THE HORNS & THE HALO */

.horns {
    width: 50%;
    background-color: #FFE6BB;
    border-color: #84472A;
    padding-top: 0px;
    border-style: solid;
    border-width: 5px;
    border-radius: 20px;
    box-shadow: 10px 10px 0px rgba(132, 71, 44, 0.8);
    transition: transform 0.3s ease-in-out;
    min-height: 600px;
    max-height: 900px;
}

.horns:hover {
    transform: scale(1.02);
}

.hh-header {
    background-color: #FFBF53;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding-left: 30px;
    padding-top: 2px;
    padding-bottom: 10px;
}

.hh-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border-color: #84472A;
    border-style: solid;
}

.hh-content {
    width: 100%;
    height: 92%;
    padding: 30px;
    display: flex;
    flex-direction: column;
}









/* ROW SIX */

/* PERSONAL PORTFOLIO */

.personal {
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.personal:hover {
    transform: scale(1.02);
}

.personal-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2vh;
    padding: 30px;
    background-color: #d5f2f8;
    border-style: solid;
    border-width: 5px;
    border-radius: 20px;
    border-top-left-radius: 0;
    border-color: #003640;
    box-shadow: 10px 10px 0px rgba(0, 54, 64, 0.8);
    position: static;
    z-index: 0;
    min-height: 500px;
    max-height: 1400px;
}

.personal-label {
    font-size: 24pt;
    padding-left: 30px;
    padding-right: 30px;
    font-family: "cc-regeneration-variable", sans-serif;
    font-variation-settings: "ital"0, "wght"400;
    color: #2C1400;
    text-transform: uppercase;
    background-color: #4aabbe;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    width: 35%;
    padding-top: 5px;
    padding-bottom: 10px;
    border-color: #003640;
    border-style: solid;
    border-width: 5px;
    box-shadow: 10px 0px 0px rgba(0, 54, 64, 0.8);
    border-bottom: none;
    margin-bottom: -4.5px;
    position: relative;
    z-index: 999;
}

.personal-row-one {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.art-two-stack {
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.art-two-stack img,
.art-three-stack img,
.art-single-stack img,
.personal-left img,
.personal-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border-color: #003640;
    border-style: solid;
    transition: transform 0.3s ease-in-out;
}

.art-two-stack img:hover,
.art-three-stack img:hover,
.art-single-stack img:hover,
.personal-left img:hover,
.personal-right img:hover {
    transform: scale(1.02);
}

.art-three-stack {
    width: 19.6%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.art-single-stack {
    width: 61%;
    height: 100%;
}

.personal-row-two {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
}



















/* TOP BUTTON */

#back-to-top {
    display: none;
    bottom: 75px;
    right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
    padding-right: 30px;
    background-color: #f3dcff;
    border-style: solid;
    border-radius: 10px;
    border-width: 3px;
    border-color: #723194;
    box-shadow: 5px 5px 0px rgba(114, 49, 148, 0.8);
    text-align: center;
    position: fixed;
    z-index: 9999;
    transition: transform 0.2s ease;
    font-family: "museomoderno", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16pt;
    color: #2C1400;
    transition: transform 0.3s ease-in-out;
}

#back-to-top.show {
    display: block;
    opacity: 1;
}

#back-to-top:hover {
    transform: scale(1.05);
}

















/* MEDIA QUERIES 991 */

@media only screen and (max-width: 992px) {

    h1 {
        font-size: 70pt;
    }

    p {
        font-size: 16pt;
    }

    h2 {
        font-size: 40pt;
    }

    h3 {
        font-size: 30pt;
    }

    h4 {
        font-size: 20pt;
    }

    /* NAV */

    nav {
        padding: 2% 3%;
    }

    .nav-button,
    .nav-logo {
        height: 50px;
        width: 150px;
        border-radius: 15px;
    }

    .nav-open-content {
        width: 80%;
        right: 3%;
    }

    .echo-label,
    .grunt-label,
    .beyond-label,
    .sludge-label,
    .aeviraa-label,
    .personal-label {
        font-size: 18pt;
    }

    /* HERO */

    .portfolio-hero {
        min-height: 500px;
        max-height: 900px;
    }

    /* FOOTER */

    .footer {
        margin-top: -250px;
    }

    .bottom-links ul {
        display: flex;
        flex-wrap: wrap;
        padding-left: 80px;
        padding-right: 200px;
        gap: 30px;
        padding-top: 30px;
        padding-bottom: 30px;
    }





    /* CONTENT */

    .echo-content,
    .nova-content,
    .grunt-content,
    .whaka-content,
    .beyond-content,
    .sludge-content,
    .velvet-content,
    .wonder-content,
    .aeviraa-content,
    .personal-content,
    .hh-content {
        padding: 20px;
    }

    /* ROW ONE */

    .echo {
        width: 100%;
        max-height: 900px;
        min-height: 600px;
        z-index: 50;
    }

    .aeviraa {
        width: 100%;
        max-height: 1000px;
        min-height: 800px;
    }

    .ae-bottom,
    .ae-top {
        height: 49%;
    }

    .row {
        flex-direction: column;
        gap: 1vw;
    }

    /* ROW TWO */

    .row-two {
        gap: 4vw;
    }

    .row-two h4 {
        font-size: 18pt;
    }

    .nova,
    .wonder,
    .whaka {
        min-height: 300px;
        max-height: 500px;
    }


    /* ROW THREE */

    .row-three {
        flex-direction: column;
    }

    .beyond,
    .sludge {
        width: 100%;
    }

    .beyond-content,
    .sludge-content {
        min-height: 200px;
        max-height: 1000px;
    }

}










/* MEDIA QUERIES 1920 */

@media only screen and (min-width: 1900px) {

    h1 {
        font-size: 160pt;
    }

    .portfolio-hero {
        min-height: 900px;
        max-height: 1080px;
    }

    .ae-bottom img {
        height: 95%;
    }

    .nova,
    .wonder,
    .whaka {
        min-height: 600px;
        max-height: 900px;
    }

}