/* -------------- */
/* -- GLOBALS -- */
/* ------------- */

/* GLOBAL VARIABLES */

:root {

    /* DEFINE ALL COMMONLY USED COLORS HERE */

    --color-body-background: rgb(255 255 255);
    --color-text-body: rgb(0 0 0 / .8);
    --color-text-headings: rgb(34, 34, 34);

    /* --color-body-background: rgb(0, 0, 0);
    --color-text-body: rgba(255, 255, 255, 0.8);
    --color-text-headings: rgb(255, 255, 255); */

    --color-links: rgb(0, 132, 203);
    --color-links-hover: rgb(186, 232, 255);
    --color-links-dark: rgba(102 102 102);
    --color-links-darker: rgb(0, 0, 0);
    --color-links-light: rgba(204 204 204);
    --color-links-lighter: rgba(255 255 255);

    --color-siteheader-background: transparent;
    --color-siteheader-links: var(--color-text-headings);

    --color-hero-background: rgb(100 100 100);
    --color-hero-text: rgb(255, 255, 255);
    --color-hero-headings: rgb(255, 255, 255);

    --color-site-footer-background: rgb(100 100 100);
    --color-site-footer-text: rgb(255 255 255 / .8);
    --color-site-footer-headings: rgb(255 255 255 / 1);
    --color-site-footer-links: rgb(255 255 255);


    /*  DEFINE ALL FONTS USED HERE */
    --font-body: "Miller-text" serif;
    --font-headings: "Neue-haas-grotesk-display" sans-serif;


    /* SIZING UNITS */
    --container-width: 1200px;
    --unit-small: 1.5em;
    --unit-medium: 2em;
    --unit-large: 4em;


}

/* GLOBAL RESET */

/* CHANGE BOX-SIZING FOR ALL TO BORDER-BOX */
* {
    box-sizing: border-box;
}

/* REMOVE THE DEFAULT 8px MARGIN ON THE BODY */
body {
    margin: 0;
}

/* GLOBAL COLORS */

body {

    /* SET THE COLOR OF THE MAIN BODY BACKGROUND */
    background-color: var(--color-body-background);

    /* SET THE COLOR OF THE MAIN BODY TEXT */
    color: var(--color-text-body);

}

h1,
h2,
h3 {
    /* SET THE COLOR OF ALL HEADINGS H1-etc */
    color: var(--color-text-headings);
}

a {
    /* SET THE COLOR OF ALL TEXT LINKS */
    color: var(--color-siteheader-links);
    font-family: "neue-haas-grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    text-decoration: none;


    /* SET THE COLOR OF ALL HOVER STATES ON TEXT LINKS */
    &:hover {
        color: var(--color-links-hover);
    }

}

.fancy-hover {

    /* SET THE COLOR OF ALL HOVER STATES ON TEXT LINKS */
    &:hover {
        color: var(--color-links-hover);
        background-image: linear-gradient(to right, rgb(124, 159, 171), rgb(49, 80, 91) 50%, rgb(36, 103, 127) 50%);
        background-size: 200% 100%;
        position: relative;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        background-position: -100% center;
        transition: 0.6s ease-in-out;
    }
}

/* GLOBAL TYPOGRAPHY */

body {

    /* SET THE FONT FOR ALL MAIN BODY TEXT */
    font-family: var(--font-body);

    /* SET THE LEADING (LINE-HEIGHT) FOR ALL BODY TEXT */
    line-height: 1.4;

}

h1,
h2,
h3 {

    /* SET THE FONT AND MARGIN FOR ALL HEADINGS */
    font-family: var(--font-headings);
    margin: .4em 0;

}

h1 {
    /* SET H1 FONT SIZE AND LEADING*/
    font-size: 3em;
    line-height: 1.1;
}


h2 {
    /* SET H2 FONT SIZE AND LEADING*/
    font-size: 2em;
    line-height: 1.2;
}


h3 {
    /* SET H3 FONT SIZE AND LEADING */
    font-size: 1.5em;
    line-height: 1.3;
}

h3.card-text {
    font-family: "neue-haas-grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    font-size: 1em;
    letter-spacing: 0.3em;
}

p {
    /* LIMIT THE WIDTH OF ALL PARAGRAPHS */
    max-width: 65ch;
    /* NEW SCHOOL WIDOW SLAYER */
    text-wrap: pretty;
}

/* GLOBAL MEDIA */

img {

    /* MAKE ALL IMAGES SHRINK ON SMALL SCREENS */
    max-width: 100%;
    height: auto;
}

.full-width-images img,
.full-width-image {
    max-width: none;
    width: 100%;
    display: block;
    /* padding: var(--unit-small); */
}

.full-width-images-bottom-padding {
    padding: 0 0 1.5em 0;
}

.iteration-img {
    padding: 3em 3em 0 3em;
}

/* @media (min-width: 768px) {
    .iteration-img {
        padding: 0;
        margin: 0;

    }
} */

.project-page {
    overflow-x: hidden;

}

video {
    max-width: 100%;
    height: auto;
    display: block;
}


/* GLOBAL HELPERS */

/* HIDE VISUALLY BUT NOT FROM READERS AND SEARCH ENGINES */
.hide-visually {
    position: absolute;
    top: -9999px;
    left: -9999px;
}

.full-width {
    max-width: none;
    width: 100%;
}

/* HIDE VISUALLY ON SMALL SCREENS ONLY */
@media (max-width: 767px) {
    .hide-visually-smallonly {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
}

.full-width {
    max-width: none;
    width: 100%;
}

.button {
    border: 1px solid #5e6f67;
    padding: 1em 2em;
    border-radius: 70px;
    display: inline-block;
    /* margin: 0 .5em; */
}

.button-group {
    display: flex;
    gap: .75em;
    flex-wrap: wrap;
    justify-content: center;
}


/* .works-button {
    display: block;
    border: 1px solid #5e6f67;
    padding: 1em 2em;
    margin-top: 2em;
    border-radius: 70px;
} */


.view-website-button {
    border: 1px solid #5e6f67;
    padding: 1em 2em;
    border-radius: 70px;
    margin-bottom: 4em;
}

.about-button {
    margin-top: 2em;
    padding: 0;
}

.footer-button {
    margin-top: 1em;
    padding: 0;
}

.full-width-section {
    padding-top: 1em;
}

.detail-border {
    /* background-color: #efefef; */
    border-bottom: 1px solid rgb(221, 221, 221);
    margin-top: 3em;
}

.detail-border2 {
    /* background-color: #efefef; */
    border-bottom: 1px solid rgb(196, 196, 196);
    margin-top: 3em;
    margin-bottom: 3em;
}

.detail-border-footer {
    /* background-color: #efefef; */
    border-bottom: 1px solid rgb(221, 221, 221);
}

.centered-section-title {
    text-align: center;
    margin-top: 3em;
    margin-bottom: .5em;
    margin-left: 1%;
    font-weight: 700;
    font-size: 1.2em;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.text-centered {
    text-align: center;
}

.type-image {
    box-shadow: 10px 10px 20px rgb(189, 189, 189);
    margin: 2em 0 2em 0;
}

.pull-quote {
    margin: 0;
    padding: 3em 0 0 0;
    display: grid;
    place-items: center;
}

.medley-vid {
    padding: 0 4em 4em 4em;
}

.extra-bottom-padding {
    padding: 0 0 4em 0;
}

.extra-top-padding {
    padding: 4em 0 0 0;
}

.extra-padding {
    padding: 4em 0 4em 0;
}

.extra-side-padding {
    padding: 0 5em 0 5em;
}

.work-intro {
    margin: 0;
    padding: 5em 0 5em 6em;
}

.work-h1 {
    font-family: "Miller", serif;
    font-weight: 100;
    font-style: italic;
    font-size: 3.5em;
    /* max-width: 15em; */
    color: #414141;
    margin: 0;
}

.work-h5 {
    font-family: "neue-haas-grotesk", sans-serif;
    font-weight: 100;
    font-style: normal;
    font-size: 1.3em;
    letter-spacing: .3em;
    margin: 0;
    padding: .75em 0 0 0;
}

/* ------------- */
/* -- LAYOUT -- */
/* ------------ */

/* RESPONSIVE TYPOGRAPHY VIA MEDIA QUERIES */

/* SMALL SCREENS (Mobile < 768px) */
body {
    /* SET THE DEFAULT FONT SIZE TO 14px */
    font-size: 87.5%;
}

/* MEDIUM SCREENS (Tablets < 1200px) */
@media (min-width: 768px) {
    body {
        /* SET THE MEDIUM SCREENS AND HIGHER FONT SIZE TO 16px */
        font-size: 100%;
    }
}

/* LARGE SCREENS (Laptops & Desktops > 1200px) */
@media (min-width: 1200px) {
    body {
        /* SET THE LARGE SCREENS AND HIGHER FONT SIZE TO 18px */
        font-size: 112.5%;
    }
}

/* CONTAINER */
.container {
    /* SET THE MAX WIDTH OF YOUR SITE (eg 1200px) */
    max-width: var(--container-width);

    /* CENTER THE CONTAINER HORIZONTALLY*/
    margin-left: auto;
    margin-right: auto;
}

.sub-container {
    max-width: 80%;

    /* CENTER THE CONTAINER HORIZONTALLY*/
    margin-left: auto;
    margin-right: auto;
}

.work-container {
    padding: 0 0 10em 0;
}

/* GRID */
.row {
    --gridgap: 1em;
    --gridgap: var(--unit-small);
}

.row>* {
    margin-top: var(--gridgap);
    margin-bottom: var(--gridgap);
}

@media (min-width: 768px) {
    .row {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: var(--gridgap);
        margin-top: var(--gridgap);
        margin-bottom: var(--gridgap);
    }

    .row>* {
        margin-top: 0;
        margin-bottom: 0;
    }

    /* COMMONLY USED SEMANTIC COLUMN WIDTHS */
    .one-half {
        grid-column: auto / span 6;
    }

    .one-third {
        grid-column: auto / span 4;
    }

    .two-thirds {
        grid-column: auto / span 8;
    }

    .one-fourth {
        grid-column: auto / span 3;
    }

    .three-fourths {
        grid-column: auto / span 9;
    }

    /* 12 COLUMN CLASSES */
    .col-1 {
        grid-column: auto / span 1;
    }

    .col-2 {
        grid-column: auto / span 2;
    }

    .col-3 {
        grid-column: auto / span 3;
    }

    .col-4 {
        grid-column: auto / span 4;
    }

    .col-5 {
        grid-column: auto / span 5;
    }

    .col-6 {
        grid-column: auto / span 6;
    }

    .col-7 {
        grid-column: auto / span 7;
    }

    .col-8 {
        grid-column: auto / span 8;
    }

    .col-9 {
        grid-column: auto / span 9;
    }

    .col-10 {
        grid-column: auto / span 10;
    }

    .col-11 {
        grid-column: auto / span 11;
    }

    .col-12 {
        grid-column: auto / span 12;
    }

    /* COMMONLY CENTERED COLUMNS */
    .one-half.centered {
        grid-column: 4 / span 6;
    }

    .one-third.centered {
        grid-column: 5 / span 4;
    }

    .two-thirds.centered {
        grid-column: 3 / span 8;
    }

    /* PUSHES */
    .push-1 {
        grid-column-start: 2;
    }

    .push-2 {
        grid-column-start: 3;
    }

    .push-3 {
        grid-column-start: 4;
    }

    .push-4 {
        grid-column-start: 5;
    }

    .push-5 {
        grid-column-start: 6;
    }

    .push-6 {
        grid-column-start: 7;
    }

    .push-7 {
        grid-column-start: 8;
    }

    .push-8 {
        grid-column-start: 9;
    }

    .push-9 {
        grid-column-start: 10;
    }

    .push-10 {
        grid-column-start: 11;
    }

    .push-11 {
        grid-column-start: 12;
    }

    /* SWAP (REVERSE) COLUMNS -WORKS w/ ONLY 2 CHILDREN  */
    .row.swapped>*:first-child {
        order: 2;
    }

    .row.swapped>*:last-child {
        order: 1;
    }
}


/* BESPOKE GRID SYSTEM FOR KEEPING IMAGES WITH APPROPRIATE TEXT */

@media (min-width: 768px) {
    .row-grid-threeup {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        /* grid-template-rows: repeat(2, auto); */
        grid-template-rows: auto auto auto;
        gap: 1em;
    }

    .text-box-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }

    .media-box-1 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .text-box-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
    }

    .media-box-2 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }

    .text-box-3 {
        grid-column: 3 / 4;
        grid-row: 1 / 3;
    }

    .media-box-3 {
        grid-column: 3 / 4;
        grid-row: 3 / 4;
    }

}



/* ------------- */

.site-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    /* justify-content: space-between; */
}

@media (max-width: 768px) {
    .site-footer-sub>.site-nav>ul {
        display: block;
    }

    .site-footer-sub>.site-nav>ul>.site-logo {
        /* max-width: 30%; */
        height: auto;
        /* border: 1px solid #ff9162; */
    }

}

.site-nav li {
    display: grid;
    align-items: center;
}

.site-nav a {
    padding: .5em 1em;
    display: inline-block;
    text-decoration: none;
    font-family: "neue-haas-grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    color: var(--color-siteheader-links);


}

.site-nav .site-logo a {
    padding: 0;
}



.site-header {
    /* background-color: pink; */
    padding: var(--unit-small);
}

/* .splitscreen {
    background-color: yellow;
} */

@media (min-width:768px) {
    .splitscreen {
        display: grid;
        grid-template-columns: 50% 50%;
    }
}

/* .right-side {
    background-color: gold;
} */

.padded-content {
    padding: 2em;
}

/* .left-side {
    background-color: lime;
} */

.project-left-side {
    background-color: rgb(255, 249, 249);
}

.project-left-side-angostura {
    background-color: rgb(249, 251, 255);
}

.project-left-side-groov {
    background-color: rgb(255, 252, 249);
}

.project-left-side-k9 {
    background-color: rgb(255, 252, 249);
}

.project-left-side-typography {
    background-color: rgb(255, 253, 249);
}

.project-left-side-medley {
    background-color: #f6f8ff;
}

.project-left-side-missingpeace {
    background-color: #feffee;
}

.sticky-panel {
    position: sticky;
    top: 0;
    min-height: 100svh;
    /* background: orange; */
    display: grid;
    grid-template-rows: auto 1fr;
}

.hero {
    /* background-color: aquamarine; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sub-hero {
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: center;
}

.hero h1 {
    font-family: "Miller", serif;
    font-weight: 100;
    font-style: italic;
    font-size: 4em;
    line-height: 1.1em;
    max-width: 15em;
    padding-top: 1em;
}



.hero h5 {
    font-family: "neue-haas-grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    font-size: 1em;
    padding: 0 0 4em 0;
    letter-spacing: .3em;
}



/* FOOTER NAV */
.site-footer-home {
    /* background-color: aqua; */
    padding: var(--unit-small);
}

.site-footer-sub {
    /* background-color: rgb(230, 251, 245); */
    padding: var(--unit-small);
    padding-top: 3em;
    padding-bottom: 3em;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.sub-footer-nav ul {
    list-style: none;
    font-size: .75em;
    line-height: 2.3em;
}

.site-footer-sub .sub-footer-nav {
    margin-left: auto;
}

.footer-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}

.footer-nav a {
    display: flex;
    gap: .5em;
    padding: 1em;
    color: rgba(0, 0, 0, .5);
    font-family: "neue haas grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.connect h2 {
    font-family: "Miller-text", sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 1.75em;
    margin-bottom: 0;
    color: #5e6f67;
}

.connect {
    display: grid;
    place-items: center;
}

.message-me {
    font-family: "neue-haas-grotesk", sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 1em;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 1em 2em;
    border-radius: 70px;
}

.message-me2 {
    font-family: "neue-haas-grotesk", sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: .8em;
    color: var(--color-site-header-links);
    border: 1px solid #5e6f67;
    padding: .8em 1.5em;
    border-radius: 70px;
    margin-top: 2em;
}

.copyright {
    font-family: "neue-haas-grotesk", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: .8em;
    color: #7e7e7e;
    /* text-align: left; */
    padding: .5em 0 .5em 1.5em;
    margin: 0;
    place-items: center;
}

body {
    margin: 0;
}


/* -------ABOUT PAGE------ */

.about-section {
    background-color: teal;
    background-image: url(../img/about-surf.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    display: grid;
    place-items: center;
}

.contact {
    margin-top: 2em;
    color: #ffffff;
    font-family: "Neue-haas-grotesk-display", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.5em
}

.chat-styling {
    font-family: "Neue-haas-grotesk-display", sans-serif;
    font-style: italic;
    font-weight: 400;
}

.words {
    border: 3px solid rgb(255, 255, 255);
    padding: 3em;
    /* margin-top: 10em; */
    /* margin-bottom: 5em; */
    color: white;
    margin: 8em;
}

@media (max-width: 767px) {
    .words {
        border: .5px solid rgb(255, 255, 255);
        margin: 2em;
        padding: 2em;
    }
}

.about-intro {
    color: #ffffff;
    font-family: "Neue-haas-grotesk-text", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.2em;
    margin-bottom: .5em;
}

.about-me {
    color: white;
    padding: .4em 0 0 0;
}


/* -------WORK PAGE------ */

#work .row {
    /* justify-content: space-between;
    column-gap: .5em;
    row-gap: 1em; */
    padding-left: var(--unit-small);
    padding-right: var(--unit-small);
}

#work img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    /* border-radius: 2em; */

}

/* -------ANIMATIONS------ */

.hero .ripple {
    font-size: 4vw;
}

.hero:has(.ripple) h5 {
    font-size: 1.2vw;
}

@media (max-width: 767px) {
    .hero .ripple {
        font-size: clamp(1.5em, 10vw, 10vw);

    }

    .hero:has(.ripple) h5 {
        font-size: clamp(.7em, 2vw, 2vw);
    }
}



.ripple>* {
    display: inline-block;
    text-shadow: 0 0 0 #545454;
    color: transparent;
    animation: rippleEffect 10s infinite;
    /* overflow-x: hidden; */
}

/* .ripple:hover>* {
    animation: rippleEffect 10s infinite;
} */

@keyframes rippleEffect {
    40% {
        opacity: .05;
    }

    50% {
        transform: translate3d(1em, 0, 0) scale(1);
        /* text-shadow: 0 0 5px #a4a4a4; */
    }

    75% {
        transform: translate3d(0, 0, 0) scale(1);
        /* text-shadow: 0 0 0 #585858; */
        opacity: 1;
    }
}


.reveal {
    animation-name: reveal-animation;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    opacity: 0;

}

.reveal:nth-child(1) {
    animation-delay: 0;
}

.reveal:nth-child(2) {
    animation-delay: .30s;
}

.reveal:nth-child(3) {
    animation-delay: .65s;
}

.reveal:nth-child(4) {
    animation-delay: .85s;
}

.reveal:nth-child(5) {
    animation-delay: 1.1s;
}

.reveal:nth-child(6) {
    animation-delay: 1.35s;
}

@keyframes reveal-animation {
    0% {
        opacity: 0;
        translate: 0 -10px;
    }

    100% {
        opacity: 1;
        translate: 0 0;
    }
}

/* SCROLL TRIGGERED ANIMATION */
.observe-me {
    opacity: 0;
    transition: all 1s ease-out .5s;

    &[data-viewstate="active"] {
        opacity: 1;
    }
}

.animate-from-left {
    translate: -20px 0;

    &[data-viewstate="active"] {
        translate: 0 0;
    }
}

.animate-from-right {
    translate: 20px 0;

    &[data-viewstate="active"] {
        translate: 0 0;
    }
}

.zoomup {
    scale: 0;

    &[data-viewstate="active"] {
        scale: 1;
    }
}


/* -------HOME PAGE------ */

/* .featured-card {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-items: end;
    overflow: hidden;
} */

#work .featured-card {
    border-radius: 2em;
    overflow: hidden;
    height: 100%;
}

.featured-card-img {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-items: end;
    overflow: hidden;
    margin: 0;
    padding: 0;
    height: 100%;

    /* &:hover {
        position: static;
    } */
}

.featured-card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    grid-column: 1;
    grid-row: 1;
}

.featured-card-img img.parallax-onscroll {
    scale: 1.2;
}



.featured-card-text {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    justify-content: space-between;
    color: white;
    padding: 1em;
    align-items: flex-end;
    position: relative;
    z-index: 100;
    background-color: rgb(0, 0, 0, .5);
}

.featured-card-text2 {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    justify-content: space-between;
    color: white;
    padding: 1em 1.5em 1em 1.5em;
    align-items: flex-end;
    position: relative;
    z-index: 100;
    background-color: rgb(0, 0, 0, .5);
}

/* .featured-card-toptext {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    justify-content: space-between;
    color: white;
    padding: 1em;
    align-items: flex-start;
    position: relative;
    z-index: 100;
    background-color: black;

} */

.featured-card-text>* {
    color: white;
    margin: 0;
    padding: 0;
}

.featured-card-text2>* {
    color: white;
    margin: 0;
    padding: 0;
}

.featured-card-img .featured-card-text {
    translate: 0 100%;
    transition: all 0.4s ease-out;
}

.featured-card-img:hover .featured-card-text {
    translate: 0 0;
}

.featured-card-img .featured-card-text2 {
    translate: 0 100%;
    transition: all 0.4s ease-out;
}

.featured-card-img:hover .featured-card-text2 {
    translate: 0 0;
}

.grass-img {
    padding-top: 6em;
}

/* -------WORK SUB PAGES------ */

.intro-titletour {
    font-style: italic;
    font-weight: 600;
    color: #945d4b;
}

.intro-title-angostura {
    font-style: italic;
    font-weight: 600;
    color: #4b7180;
}

.intro-title-groov {
    font-style: italic;
    font-weight: 600;
    color: #448b8c;
}

.intro-title-k9 {
    font-style: italic;
    font-weight: 600;
    color: rgb(202, 143, 48);
}

.intro-title-typography {
    font-style: italic;
    font-weight: 600;
    color: rgb(79, 107, 97);
}

.intro-title-medley {
    font-style: italic;
    font-weight: 600;
    color: #28a69d;
}

.intro-title-angelinas {
    font-style: italic;
    font-weight: 600;
    color: #a9133b;
}

.intro-title-missingpeace {
    font-style: italic;
    font-weight: 600;
    color: #145f6f;
}

.project-title-puerto {
    color: #695233;
    font-family: "neue haas grotesk", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 2.5em;
    text-wrap: pretty;
}

.project-title-angostura {
    color: #344e58;
    font-family: "neue haas grotesk", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 2.5em;
    text-wrap: pretty;
}

.project-title-groov {
    color: #336869;
    font-family: "neue haas grotesk", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 2.5em;
    text-wrap: pretty;
}

.project-title-k9 {
    color: rgb(187, 132, 44);
    font-family: "neue haas grotesk", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 2.5em;
    text-wrap: pretty;
}

.project-title-typography {
    color: rgb(64, 88, 80);
    font-family: "neue haas grotesk", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 2.5em;
    text-wrap: pretty;
}

.project-title-medley {
    color: #0c8880;
    font-family: "neue haas grotesk", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 2.5em;
    text-wrap: pretty;
}

.project-title-angelinas {
    color: #7b2226;
    font-family: "neue haas grotesk", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 2.5em;
    text-wrap: pretty;
}

.project-title-missingpeace {
    color: #0c3d48;
    font-family: "neue haas grotesk", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 2.5em;
    text-wrap: pretty;
}

/* .sub-hero-middleblock {
    background-color: yellow;
} */


.subheader {
    color: #737373;
    font-family: "miller-headline", serif;
    font-style: italic;
    font-weight: 100;
    font-size: 1.5em;
    line-height: 1.3em;
    text-wrap: pretty;
}

.sub-project-data {
    color: #525252;
    font-family: "neue haas grotesk", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: .75em;
    letter-spacing: .2em;
    text-wrap: pretty;
    margin: 0;
    align-self: end;
    padding-bottom: 2em;
}

.peles {
    color: #ddb400;
    font-family: "neue haas grotesk", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: .8em;
    text-wrap: pretty;
    margin: 0;
    align-self: end;
    padding-bottom: 1em;
}

.final-logo {
    margin: 0;
    padding: 3em 0 6em 0;
    display: grid;
    place-items: center;
}

.final-logo2 {
    margin: 0;
    padding: 3em 0 0 0;
    display: grid;
    place-items: center;
}

.rounded-img {
    border-radius: 1.5em;
}


.centered-img {
    display: grid;
    place-items: center;
    padding: 5em 0 0 0;
}

.centered-img-medley {
    display: grid;
    place-items: center;
    padding: 1em 0 5em 0;
}

/* 
.centered p {
    margin-left: auto;
    margin-right: auto;
} */

.skip-to-project {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    padding: 8em 2em 10em 2em;
}

.puerto-vid {
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0;
}


.section-title {
    text-align: left;
    margin-top: 6em;
    margin-bottom: .5em;
    font-weight: 700;
    font-size: 1.2em;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.section-title2 {
    text-align: left;
    margin-top: .5em;
    margin-bottom: .5em;
    font-weight: 700;
    font-size: 1.2em;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.eyebrow {
    font-family: "Miller-text", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: .85em;
    color: #8d8d8d;
    margin-bottom: 0;
}

.eyebrow2 {
    font-family: "Miller-text", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: .85em;
    color: #8d8d8d;
    margin-bottom: 0;
    padding: 0 3.4em 0 3.4em;
}

.eyebrow3 {
    font-family: "Miller-text", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: .85em;
    color: #8d8d8d;
    margin-bottom: 0;
    padding: 0 1em 0 1em;
}

.iteration-titletour {
    font-style: italic;
    font-weight: 600;
    color: #945d4b;

}

.iteration-title-angostura {
    font-style: italic;
    font-weight: 600;
    color: #4b7180;

}

.iteration-title-medley {
    font-style: italic;
    font-weight: 600;
    color: #28a69d;
}

.iteration-title-angelinas {
    font-style: italic;
    font-weight: 600;
    color: #a9133b;
}

.iteration-title-missingpeace {
    font-style: italic;
    font-weight: 600;
    color: #0f4956;
}


.next img {
    display: block;
}

.prev img {
    transform: scalex(-1);
    display: block;
}

.backtotop img {
    transform: scalex(-1);
    display: block;
    margin-bottom: 1em;
}

.site-map {
    padding: 0 0 3em 0;
}

.top-icon-image {
    display: grid;
    place-items: center;
    padding: 1em 0 1em 0;
}

.puzzle-mockup {
    box-shadow: 2px 2px 15px rgb(168, 168, 168);
}

/* -------SPLASH SCREEN------ */

/* SPLASH SCREEN */

html:has(.splash-screen),
body:has(.splash-screen) {
    height: 100%;
    width: 100%;
}


.splash-screen {
    width: 100%;
    height: 100svh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    animation: splash-disappear 2s ease-in-out 5.3s forwards;
    background-color: rgb(11, 56, 61);
    background-image: url(../img/hero-still-img.jpg);
    background-size: cover;
}

@keyframes splash-disappear {

    100% {
        opacity: 0;
        visibility: hidden;
    }
}


.splash-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.splash-screen .svg-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.splash-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: zoom-into-letter 5s ease-in 2s forwards;
}

/* .splash-screen svg {
    box-shadow: 0 0 0 9999vh white;
    width: 100%;
    scale: .5;
    animation: zoom-into-letter 5s ease-in 2s forwards;
}

.splash-screen svg rect {
    fill: white;
}

.splash-screen svg>rect {
    -webkit-mask: url(#mask);
    mask: url(#mask);
} */


@keyframes zoom-into-letter {
    100% {
        scale: 30;
    }
}