body {
    overflow: hidden;
    margin:0;
}

::-moz-selection {
    background: var(--pink);
}

::selection {
    background: var(--pink);
}

.flexbox {
    display: flex;
    height: fit-content;
    flex-direction: column;
    background: transparent;
    transform-style: preserve-3d;
}

.flexbox-2 {
    background-color: var(--bg2);
    margin-top: -5px;
}

/* 
.flexbox {
    background-color: rgba(255, 255, 255, 0.5);
} */



h1,
h2,
h3,
h4 {
    font-family: 'Darumadrop One', sans-serif;
    color: var(--fg1);
}

h1 {
    font-size: var(--step-l);
}

p {
    font-family: 'Exo 2', sans-serif;
    font-size: var(--step-s);
    color: var(--fg1);
}

a {
    color: var(--fg1);
}

.rl {
    width: fit-content;
    display: inline-block;
    z-index: 1;
    position: relative;
    color: var(--fg1);
    /* text-decoration-color: var(--pink); */
    text-decoration: none;

    /* transform-style: preserve-3d; */
}

.rl::after {
    box-sizing: border-box;
    display: block;
    top: auto;
    bottom: 0;
    position: absolute;
    z-index: -1;
    content: "";
    height: 2px;
    width: 100%;
    background-color: var(--blue);
    transition: 500ms ease;
}

.rl:hover::after {
    height: 40%;
    top: auto;
    bottom: 0;
}

.loading-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    background-color: #fafafa;
    /* border: 10px solid #282828; */
    opacity: 1;
    transition: 500ms ease;
    pointer-events: none;
}

.loading-screen img {
    width: 60vw;
}

/* Background Elements */

.wrapper {
    height: 100vh;
    width: 100vw;
    margin: 0;
    overflow: scroll;
    overflow-x: clip;
    perspective: 10px;
    perspective-origin: center; 
    background: var(--bg1);
    scroll-behavior: auto;
    transition: transform 250ms ease-out;
}

.hero-icon {
    --hero-width: 55vw;
    --hero-height: 90vmin;
    position: relative;
    top: 100px;
    /* left: 150px; */
    width: var(--hero-width);
    height: var(--hero-height);

    /* min-width: 768px; */
    /* min-height: 441px; */

    transform-style: preserve-3d;
    align-self: center;
}

[class*="hero-element"] {
    position: absolute;
    /* z-index: -1; */
    width: var(--hero-width);
    height: var(--hero-height);

    /* min-width: 768px; */
    /* min-height: 441px; */

    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    /* transition: 500ms ease-in-out; */
}

.hero-element-1 {
    background-image: url('./assets/hero logo/redesign/0.svg');
    transform: translateZ(0px) scale(1);
    /* top: 10px; */
    right: 5px;
    z-index: 10;
}

.hero-element-2 {
    background-image: url('./assets/hero logo/redesign/1.svg');
    transform: translateZ(-0.5px) scale(1.1);
    /* top: 20px; */
    /* right: 25px; */
    z-index: 9;
}

.hero-element-3 {
    background-image: url('./assets/hero logo/redesign/2.svg');
    transform: translateZ(-1px) scale(1.2);
    /* top: 25px; */
    z-index: 8;
}

.hero-element-4 {
    background-image: url('./assets/hero logo/redesign/3.svg');
    transform: translateZ(-1.5px) scale(1.3);
    ;
    z-index: 7;
}

.hero-element-5 {
    background-image: url('./assets/hero logo/redesign/4.svg');
    transform: translateZ(-2px) scale(1.4);
    ;
    z-index: 6;
}

.hero-element-6 {
    background-image: url('./assets/hero logo/redesign/5.svg');
    transform: translateZ(-2.5px) scale(1.5);
    ;
    z-index: 5;
}

.hero-element-7 {
    background-image: url('./assets/hero logo/redesign/6.svg');
    transform: translateZ(-3px) scale(1.6);
    ;
    z-index: 4;
}

.hero-element-8 {
    background-image: url('./assets/hero logo/redesign/7.svg');
    transform: translateZ(-3.5px) scale(1.7);
    ;
    z-index: 3;
}

.hero-element-9 {
    background-image: url('./assets/hero logo/redesign/8.svg');
    transform: translateZ(-4px) scale(1.8);
    ;
    z-index: 2;
}

.background {
    position: absolute;
    transform-style: preserve-3d;
}

.bg-element-1 {
    top: 120rem;
    transform: translateZ(-5px) scale(2);
    height: 200vh;
    width: 100vw;
    background-color: var(--bg2);
    position: absolute;
    transition: background 250ms ease-out;
}

.rotation-element canvas {
    width: 60vw;
    height: min-content;
}



.rotation-element {
    align-self: end;
}

.hero-sequence {
    display: flex;
    margin-top: 12rem;
    transform-style: preserve-3d;
    background-color: var(--bg1);
    position: relative;
    z-index: 50;
}

.rotation-title h2 {
    display: inline;
    line-height: 1;
}

.rotation-content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin-left: -16rem;
}

.rotation-title {
    text-align: right;
    margin-right: 2rem;
}

.read-us {
    display: flex;
    align-items: center;
    justify-content: end;

}

.rc-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: right;
    text-decoration: none;
    color: var(--fg1);
    margin-right: 32px;
}

.rc-btn p {
    font-family: 'Exo 2', sans-serif;
    font-size: var(--step-s);
    margin-right: 12px;
    padding-bottom: 6px;
    /* ugh not even aligned center ewwww. hacky fix... */
    transition: 250ms ease-out;
}

.rc-svg {
    align-self: center;
    line-height: 0;
    transition: 250ms ease-out;
}

/* hover fx */

.rc-btn:hover p {
    transform: translateX(-20px);
    color: var(--pink);
}

.rc-btn:hover .rc-svg {
    transform: translateX(-10px);
    color: var(--pink);
}

.rc-h2-a {
    font-family: 'Exo 2', sans-serif;
    font-weight: 900;
    font-size: var(--step-xl);
    color: var(--fg1);
}

.rc-h2-b {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-weight: 500;
    font-size: var(--step-xl);
    color: var(--fg2);
}


/* Header Elements */

header {
    position: -webkit-sticky;
    position: sticky;
    width: fit-content;
    /* height: 0; */
    /* margin-top: */
    top: 0;
    z-index: 10000;
    align-self: flex-start;

    display: flex;
    justify-content: space-between;
    transition: 700ms ease-in-out !important;
}

.header-icon-light {
    /* padding: 20px 0 0 clamp(10px, 40vw, 50px); */
    padding-top: 20px;
    padding-left: clamp(10px, 5vw, 50px);
    display: block;
}

.header-icon-dark {
    /* padding: 20px 0 0 clamp(10px, 40vw, 50px); */
    padding-top: 20px;
    padding-left: clamp(10px, 40vw, 50px);
    display: none;
}

.header-icon-dark img,
.header-icon-light img {
    width: clamp(200px, 40vw, 250px)
}

.small-icon {
    padding-top: 20px;
    padding-left: 20px;

    display: none;
}

.small-icon img {
    width: 50px;
}

/* manky ass hamburger system that's also really cool and actually works but is implemented stupidly */

#artifactCanvas {
    aspect-ratio: 1.25;
    max-width: 700px;
    max-height: 560px;
    width: 50vw;
    height: auto;
}

.sticky {
    position: sticky;
    top: 0;
    height: 0;
    /* from future me: this is actually really smart when position:fixed doesn't work... past me was a genius.*/
    z-index: 10000;
    transition: 700ms ease-in-out;
}

.hamburger {
    --bar-width: 35px;
    --bar-height: 5px;
    --hamburger-gap: 6px;
    --hamburger-height: calc(var(--bar-height) * 3 + var(--hamburger-gap) * 2);
    --x-width: calc(var(--hamburger-height) * 1.41421356237);
    --hamburger-padding: 24px;
    --animation: 500ms cubic-bezier(.64, -0.45, 0, 1);
    --slide-animation: 600ms cubic-bezier(.51, 0, .24, 1);
    --sidebar-width: 300px;
    box-sizing: border-box;
    width: calc(var(--bar-width) + var(--hamburger-padding));
    position: sticky;
    margin-left: auto;
    display: flex;
    z-index: 1;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    gap: var(--hamburger-gap);
    padding: calc(var(--hamburger-padding) / 2);
    margin: 0;
    z-index: 1;
    position: absolute;
    width: var(--bar-width);
    box-sizing: border-box;
    /* clip-path: content-box; */
    /* border: 1px solid red; */
}


.hamburger-menu,
.hamburger input {
    top: calc(32px - (var(--hamburger-padding) / 2));
    left: -25px;
    transition: var(--animation);
}

.hamburger-menu::after,
.hamburger-menu::before,
.mid {
    background-color: var(--pink);
    content: '';
    width: var(--bar-width);
    height: var(--bar-height);
    transform-origin: left center;
    border-radius: 1.5px;
    transition: var(--animation);
}

.hamburger input {
    position: absolute;
    z-index: 2;
    cursor: pointer;
    margin: 0;
    padding: 0;
    width: calc(var(--bar-width) + var(--hamburger-padding));
    height: calc(var(--hamburger-height) + var(--hamburger-padding));
    appearance: none;
    /* border: 1px solid red; */
}

.hamburger input:hover+.hamburger-menu>.mid {
    width: calc(var(--bar-width) / 2);
    transform: translateX(calc(var(--bar-width) / 2));
}

.overlay-container {
    --overlay-size: calc(var(--bar-width) + var(--hamburger-padding) - 1px);
    position: absolute;
    display: flex;
    top: calc(28px - (var(--hamburger-padding) / 2));
    left: -25px;
    width: var(--overlay-size);
    height: var(--overlay-size);
    /* border: 1px solid yellow; */
}

.overlay {
    --overlay-size: calc(var(--bar-width) + var(--hamburger-padding) - 1px);
    /* border: 1px solid red; */
    position: relative;
    left: 50%;
    top: 50%;
    border-radius: 100%;
    width: 0px;
    height: 0px;
    transition: var(--animation);
}

.hamburger input:checked+.hamburger-menu>.mid {
    transform: translateX(-35px);
    opacity: 0;
}

.hamburger input:checked+.hamburger-menu::before {
    width: var(--x-width);
    transform: translateY(calc(var(--bar-height) / -2)) rotate(45deg);
}

.hamburger input:checked+.hamburger-menu::after {
    width: var(--x-width);
    transform: translateY(calc(var(--bar-height) / 2)) rotate(-45deg);
}

.hamburger input:hover~.overlay-container>.overlay {
    background-color: rgba(125, 125, 125, 0.2);
    top: 0;
    left: 0;
    width: var(--overlay-size);
    height: var(--overlay-size);
}

.hamburger input:checked,
.hamburger input:checked+.hamburger-menu {
    translate: 0;
}

/* .wrapper:has(.sticky > .hamburger > input:checked) {
    overflow-x: visible;
    transform:translateX(-200px) translateY(-10px);
} */

.wrapper>*:not(.sticky) {
    transition: transform 600ms cubic-bezier(.51, 0, .24, 1);
}


/* i love complicated selectors. compatability is a scam by the lizard government. all that matters is that i can use it.... */
.wrapper:has(.sticky > .hamburger > input:checked)>*:not(.sticky) {
    transform: translateX(-500px);
}

.hamburger input:checked~.hamburger-navigation-menu {
    transform: translateX(calc(-100% + var(--bar-width) + var(--hamburger-padding)));
    /* /* transform: translateX(-200%); */
}

.hamburger-navigation-menu {
    position: absolute;
    transform: translateX(calc(var(--bar-width) + var(--hamburger-padding)));
    transition: var(--slide-animation);
    background-color: var(--bg2);
    width: 100vw;
    height: 100vh;
    text-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hamburger-content {
    display: flex;
    align-items: center;
}

.hamburger-content nav ul li a {
    text-decoration: none;
    font-family: 'Exo 2';
    font-weight: 600;
    color: var(--fg1);
    font-size: var(--step-l);
    transition: 150ms ease-out;
    position: relative;
    left: 0;
}

.hamburger-content nav ul li:nth-child(1) a {
    color: var(--blue);
}

.hamburger-content nav ul li {
    padding: 5px 0;

}

.hamburger-content nav ul {
    position: relative;
    /* top: 75px; */
    /* left: -40px; */
    list-style-type: none;
    padding: 0;
    margin: 0;

}

.hamburger-content nav ul li a:hover {
    border-bottom: 2px solid var(--pink);
    color: var(--pink);
    left: 20px;
}

.hamburger-content nav {
    margin-left: -50px;
    margin-right: clamp(30vw, calc(30vw - 6rem), 0px);
}

/* Main Page intro */

.intro {
    position: relative;
    /* top: 100px; */
    z-index: 11;
    font-family: 'Exo 2';
    font-size: var(--step-xl);
    font-weight: 600;
    text-align: center;
}

.intro p {
    color: var(--fg2);
}

.p2 {
    font-size: var(--step-m) !important;
}

.btn-class {
    padding: 10px;
    z-index: 1;
}

/* divider */

.section-divider {
    text-align: center;
    margin-top: 25%;
    transform-style: preserve-3d;
}

.section-divider h1 {
    position: relative;
    display: inline-block;
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-weight: 400;
    font-size: var(--step-l);
    color: var(--bg1);
    transform: translateZ(1px) scale(1.1);
    margin-bottom: 40vh;
}

/* the magazine section */

.the-magazine {
    display: flex;
    flex-direction: column;
    background-image: url('/assets/details/section-divider.svg');
    background-size: cover;
    color: var(--blue);
    margin-top: 24rem;
    padding-bottom: 24rem;
    align-items: center;
    position: relative;
    z-index: 2000;
    /* transform-style: preserve-3d; */
    row-gap: 50vh;
}

.tm-heading {
    width: 100vw;
    position: sticky;
    transition: 500ms ease;
    transform: none;
    top: 0;
    /* bottom: 0; */
    left: 0;
    pointer-events: none;
    /* height: 20vh; */
}

.tm-heading h2 {
    position: sticky;
    color: #383838;
    font-family: 'Crimson Pro';
    font-style: italic;
    font-weight: 300;
    font-size: 20vw !important;
    text-align: end;
    margin: 0;
    margin-right: 2rem;
    /* right: 5vw; */
}

.tm-container {
    /* display: flex; */
    /* flex-direction: row-reverse; */
    /* align-items: end; */
    width: 55vw;
    position: relative;
    transform-style: preserve-3d;
}

.tm-content {
    position: absolute;
    opacity: 0;
    /* bottom: 0; */
    /* bottom: clamp(0rem, (10vw - 50%), 8rem);  */
    margin: 2rem;
    top: 0;
    pointer-events: none;
    transition: 250ms ease-out;
}

.tm-container:hover .tm-content {
    opacity: 1
}


.tm-container p {
    margin-bottom: 2vh;
}

.tm-thumb {
    /* transform: translateZ(4px) scale(0.6); */
    /* height: 80vh; */
    /* transform-style: preserve-3d; */
    perspective: 500px;
    clip-rule: evenodd;
    clip-path: margin-box;
}

.tm-thumb-container {
    /* transform: translateZ(5px) translateX(-25%); */
    transform: scale(1.1) translateY(0);
    transform-origin: left center;
    /* transform-style: preserve-3d; */
    /* transition: 500ms ease; */
}

.tm-thumb img {
    width: 100%;
    height: auto;
    /* border-radius: 10px; */
    transition: 500ms ease-out;
    filter: none;
}


.tm-thumb:hover img {
    filter: sepia(20%) saturate(50%) contrast(0.8) brightness(0.5);
}

.the-magazine .tm-container:nth-child(2n+1) .tm-content {
    right: 0;
}

.the-magazine .tm-container:nth-child(2n+1) .tm-content .tmp2 {
    margin-left: auto;
}

.the-magazine .tm-container:nth-child(2n+1) {
    margin-left: 30%;
}

.the-magazine .tm-container:nth-child(2n) {
    margin-left: -30%;
    flex-direction: row;
}


.tmp2 {
    position: relative;
    width: fit-content;
    right: 0;

    font-style: italic;
    font-family: 'Crimson Pro', serif;
    font-weight: 500;
    font-size: var(--step-m);
    padding: 12px;
    color: var(--bg4) !important;
    /* border: 2px solid var(--pink); */
}

.tm-content h1 {
    font-size: var(--step-xxl);
}

.the-magazine .tm-container:nth-child(2n+1) p,
.the-magazine .tm-container:nth-child(2n+1) h1 {
    text-align: right;
}


.the-magazine .tm-container:nth-child(2n+1) .tm-thumb {
    transform-origin: left;
}

.the-magazine .tm-container:nth-child(2n) .tm-thumb {
    transform-origin: right;
}

.the-magazine p,
.the-magazine h1 {
    color: var(--bg1);
}

.physicsCanvas {
    width: 100vw;
    /* margin-top: 100px; */
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    background-color: var(--bg2);
}

.physicsCanvas>div:not(:last-child) {
    margin-top: 50px;
}

.description {
    width: calc(50% + 96px + 8px);
}

.description>div {
    background-color: var(--bg1);
    transition: transform 750ms ease, opacity 250ms ease-out;
    position: absolute;
    z-index: 10;
    width: 50%;
    transform: translateY(-150%);
    padding: 24px 48px;
    border-radius: 24px;
    border: 4px solid;
}

.description>div>p {
    margin: 0;
}

.d-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.d-button {
    all: unset;
    font-size: var(--step-xl);
    cursor: pointer;
}

.d-button:hover {
    color: var(--bg4);
}

.d-button:active {
    color: var(--pink);
}

.d-read {
    display: flex;
    justify-content: end;
}

.d-read a {
    margin-top: 24px;
    /* height: calc(100% + 100px); */
    border-radius: 18px;
    transition: 250ms ease;
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-size: var(--step-l);
    font-weight: 600;
    text-decoration: none;
    padding: 8px 24px;
    color: var(--fg1);
}

.d-read a:hover {
    box-shadow: 2px 2px 10px #555555;
}

.part-divider {
    width: 100vw;
    display: flex;
    justify-content: end;
}

.part-divider img {
    width: 70vw;
    transform: rotate(180deg);
    position: relative;
    right: -3%;
}

.pre {
    background-color: var(--bg2);
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: max-content;
    padding-top: 12rem;
    position: relative;
    z-index: 2000;
    
}

.pre div {
    padding-top: 6rem;
    text-align: center;
    /* display: grid; */
}

.pre div h1:not(.ph2) {
    font-family: 'Exo 2', sans-serif;
    font-size: var(--step-xxxl);
    font-weight: 900;
    position: relative;
    /* left: -3%; */
}

.ph2 {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-size: var(--step-xxxl);
    position: relative;
}

#itemCanvas {
    aspect-ratio: 2/1;
    width: 90vw;
    height: auto;
}

/* divider */

.sec-divider img {
    width: 100vw;
}

.sec-divider {
    margin-top: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateZ(2px);
}

/* divider */

.us-image {
    position: relative;
    margin-top: 8rem;
    width: 100vw;
}

.us-image img {
    width: 100vw;
}

.ui-content {
    position: absolute;
    right: 5%;
    bottom: 40%;
    transform: translateY(50%);
    display: block;
    /* transform: translate(-50%, -50%); */
    margin: 0 auto;
    width: auto;
    overflow: hidden;
    height: fit-content;
}

.ui-content p {
    text-align: end;
    color: var(--bg1);
    font-family: 'Exo 2', serif;
    font-size: var(--step-l);
    font-weight: 500;
    font-style: italic;
    /* transform: translateY(50%); */
}

/* divider */

.history {
    background-color: var(--bg2);
    display: flex;
    flex-direction: column;
    width: 100vw;
    justify-content: space-between;
    transform-style: preserve-3d;
}

.h-title {
    display: flex;
    flex-direction: column;
    width: 60%;
    position: relative;
    margin: 12rem auto 6rem;
    gap: 2rem;
}

.h-title h2 {
    margin: 0;
}

.hth2 {
    font-family: 'Exo 2', sans-serif;
    font-size: var(--step-xxl);
    white-space: nowrap;
}

.hth2-2 {
    font-size: var(--step-xxl);
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-weight: 500;
}


.h-img-content {
    width: 90%;
    align-self: end;
    margin-bottom: 12rem;
    transform-style: preserve-3d;
}

.h-img-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    transform-style: preserve-3d;
    margin: 2rem;
}

.h-img-block {
    width: 100%;
    height: auto;
    max-width: fit-content;
}



.h-img-block img {
    width: 100%;
    height: auto;
    aspect-ratio: 14/9;
    object-fit: cover;
}

/* divider  */

.fouri {
    width: 100vw;
    height: auto;
    display: flex;
    margin: 12rem 0;
    transform-style: preserve-3d;
}

.fouri > * {
    flex: 0 0 auto;
}

.fouri * {
        transform-style: preserve-3d;


        
}

.i4-content h1 {
    font-family: 'Aleo', serif;
    font-size: var(--step-xxxl);
}

.i4-content {
    justify-self: center;
    transform: rotate(90deg) translateX(-50%);
    transform-origin: left;
    align-self: center;
    height: 20vw;
    width: auto;
}

.i4-img {
    width: 80%;
    height: auto;
    aspect-ratio: 1.618;
    margin: 5rem;
    position: relative;
    overflow: hidden;
}


.i4-flex {
    width: 30%;
    height: auto;
    position: absolute;
    background-size: cover;
    transition: 1000ms cubic-bezier(.56,.08,.27,.99);
}

/* images */
:root {
    --hover-background-1: #808080;
    --hover-background-2: #808080;
    --hover-background-3: #808080;
    --hover-background-4: #808080;
}

.i4-img .i4-flex:nth-child(1)::before,
.i4-img .i4-flex:nth-child(2)::before,
.i4-img .i4-flex:nth-child(3)::before,
.i4-img .i4-flex:nth-child(4)::before {
    content: '';
    display: block;
    position: fixed;
    /* background: url("data:image/svg+xml,<svg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'><filter id='noiseFilter'><feTurbulence type='fractalNoise' baseFrequency='4' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23noiseFilter)'/></svg>"); */
    opacity: 1;
    width: 100%;
    height: 100%;
    transition: border-radius 1000ms cubic-bezier(.56,.08,.27,.99);
    mix-blend-mode: overlay;
}

.i4-img .i4-flex:nth-child(1)::before {
    background: var(--hover-background-1);
}

.i4-img .i4-flex:nth-child(2)::before {
    background: var(--hover-background-2);
}

.i4-img .i4-flex:nth-child(3)::before {
    background: var(--hover-background-3);
}

.i4-img .i4-flex:nth-child(4)::before {
    background: var(--hover-background-4);
}

.i4-img .i4-flex:nth-child(1) {
    background-image: url("/assets/img/cafe.jpg");
}


.i4-img .i4-flex:nth-child(2) {
    background-image: url("/assets/img/open.jpg");

}

.i4-img .i4-flex:nth-child(3) {
    background-image: url("/assets/img/out.jpg");
}

.i4-flex {
    background-image: url("/assets/img/laptop.jpg");
    background-position: 50%;

}

/* pos */

.i4-img[data-pos="1"] .i4-flex:nth-child(1) {
    left: 31%;
    height: 61%;
    width: 30%;
    bottom: 5%;
    background-position-x: 40%;
}

.i4-img[data-pos="1"] .i4-flex:nth-child(2) {
    bottom: 0;
    right: 0;
    width: 38%;
    height: 60%; 
}

.i4-img[data-pos="1"] .i4-flex:nth-child(3) {
    right: 0;
    width: 50%;
    height: 32%;
}

.i4-img[data-pos="1"] .i4-flex:nth-child(4) {
    width: 30%;
    height: 100%;
    left: 0;
    top: 0;
    background-position: 50%;
}


.i4-img[data-pos="2"] .i4-flex:nth-child(1) {
    width: 69%;
    height: 30%;
    left: 0;
    bottom: 0;
    background-position-y: 70%;
}

.i4-img[data-pos="2"] .i4-flex:nth-child(2) {
    bottom: 0;
    height: 100%;
    right: 0;
    background-position-x: 20%;
}

.i4-img[data-pos="2"] .i4-flex:nth-child(3) {
    right: 31%;
    height: 58%;
    width: 38%;
}

.i4-img[data-pos="2"] .i4-flex:nth-child(4) {
    height: 69%;
    left: 0;
    top: 0;
    background-position: 30%;
}

.i4-img[data-pos="3"] .i4-flex:nth-child(1) {
    left: 0%;
    height: 50%;
    width: 24%;
    bottom: 5%;
}

.i4-img[data-pos="3"] .i4-flex:nth-child(2) {
    bottom: 5%;
    right: 30%;
    width: 45%;
    height: 50%; 
}

.i4-img[data-pos="3"] .i4-flex:nth-child(3) {
    right: 0;
    width: 28%;
    height: 85%;
}

.i4-img[data-pos="3"] .i4-flex:nth-child(4) {
    width: 50%;
    height: 43%;
    left: 0;
    top:0;
}

.i4-img[data-pos="4"] .i4-flex:nth-child(1) {
    left: 0;
    height: 53%;
    width: 30%;
    bottom: 0;
}

.i4-img[data-pos="4"] .i4-flex:nth-child(2) {
    bottom: 10%;
    right: 0;
    width: 28%;
    height: 70%;
}

.i4-img[data-pos="4"] .i4-flex:nth-child(3) {
    right: 40%;
    width: 50%;
    height: 45%;
}

.i4-img[data-pos="4"] .i4-flex:nth-child(4) {
    width: 40%;
    height: 53%;
    left: 31%;
    top: 47%;
}

/* round */

.i4-img[data-round="1"] .i4-flex:nth-child(1),
.i4-img[data-round="1"] .i4-flex:nth-child(1)::before {
    border-radius: 5px 5px 100px 5px;
}

.i4-img[data-round="1"] .i4-flex:nth-child(2),
.i4-img[data-round="1"] .i4-flex:nth-child(2)::before {
    border-radius: 100px 5px 5px 100px;
}

.i4-img[data-round="1"] .i4-flex:nth-child(3),
.i4-img[data-round="1"] .i4-flex:nth-child(3)::before {
    border-radius: 5px 5px 5px 100px;
}

.i4-img[data-round="1"] .i4-flex:nth-child(4),
.i4-img[data-round="1"] .i4-flex:nth-child(4)::before {
    border-radius: 5px 100px 5px 5px;
}


.i4-img[data-round="2"] .i4-flex,
.i4-img[data-round="2"] .i4-flex::before {
    border-radius: 150px;
}

.i4-img[data-round="3"] .i4-flex,
.i4-img[data-round="3"] .i4-flex::before {
    border-radius: 2px;
}

/* divider */

.cta {
    background-color: #282828;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
}

.cta * {
    color: var(--bg1);
    transform-style: preserve-3d;
}

.cta h1,
.cta h2 {
    font-family: 'Aleo', serif;
    font-weight: 400;
    margin: 0;
    transition: 250ms ease-out;
}

.cta h1 {
    font-size: var(--step-xxxl);
    color: var(--pink);
}

.cta h2 {
    font-size: var(--step-xxl);
}

.cta-container a h1,
.cta-container a h2 {
    width: fit-content;
    /* padding-left: 2rem; */
    transition: 500ms ease;
    position: relative;
    left: 0;
    z-index: 10;
    padding: 0 2rem;
}

.cta-container::after {
    width: 100%;
    /* margin: 0 auto; */
    height: 2px;
    position: relative;
    content: '';
    display: block;
    background-color: #383838;
    margin-top: 2rem;
}

.cta-container {
    position: relative;
    padding: 2rem;
}

.cta-header {
    padding-top: 0.5rem;
    margin-right: 2rem;
    align-self: end;
    display: flex;
}

.cta-header::after {
    display: inline-block;
    align-self: center;
    margin-left: 1rem;
    content: '';
    height: 24px;
    width: 24px;
    border-radius: 100%;
    background-color: var(--pink);
}

.cta-header p {
    font-size: var(--step-l);
}


.cta-container a {
    text-decoration: none;
}

.cta-container a h1::after,
.cta-container a h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    background-color: var(--pink);
    transition: 400ms ease-in-out;
}

.cta-container a:hover h1::after,
.cta-container a:hover h2::after {
    width: 100%;
    left: 0;
}

.cta-container a:hover h1,
.cta-container a:hover h2 {
    left: 5%;
    color: var(--bg1);
}


/* divider */

.contact {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 32rem auto 18rem;
    width: 60%;
}

.contact-images {
    margin-top: 12rem;
    display: flex;
    /* flex-direction: row-reverse; */
    position: relative;
    width: fit-content;
    margin: 18rem auto;
    gap: 2rem;
}

.contact-images img:first-child {
    width: 40vw;
}

.contact-images img:last-child {
    width: 50vw;
    align-self: flex-end;
    margin-bottom: -10%;

}


.contact p {
    font-size: var(--step-m);
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    display: flex;
}

.contact p::before {
    align-self: center;
    content: '';
    width: 24px;
    height: 24px;
    border-radius: 100%;
    display: inline-block;
    position: relative;
    top: 4px;
    background-color: var(--pink);
    margin-right: 1rem;
}

.contact h2,
.contact h2 a {
    font-family: 'Crimson Pro', serif;
    font-size: var(--step-xxl);
}

.contact a {
    align-self: end;
    font-size: var(--step-l);
}


/* redaktionen section */



.detail-element-1 {
    background-image: url('./assets/details/side-1.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 450px;
    height: 600px;
    position: absolute;
    top: 100px;
    left: 80vw;
    transform: translateZ(-2px);
    pointer-events: none;
}


.section-3 {
    /* background-color: var(--bg1); */
    position: relative;
    margin-top: 80px;
    transform-style: preserve-3d;
    /* display: none; */
}

.section-3-background {
    overflow: visible;
    width: 85%;
    height: fit-content;
    background-color: var(--bg3);
    z-index: 1;
    padding: 3rem;
    margin: 10px;
    border-radius: 24px;
    transform-style: preserve-3d;
    transform: translateZ(-1px);
}

.section-3-title {
    position: relative;
    width: max(600px, 95%);
    height: 150px;
    margin-left: 1vw;
    margin-top: -50px;
    background-image: url('./assets/banners/redaktionen.svg');
    background-position-x: left;
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateZ(2px);
}

/* section 4 */

.section-4 {
    position: relative;
    margin-top: 200px;
    transform-style: preserve-3d;
}

.section-4-title {
    width: max(600px, 95%);
    height: 150px;
    margin-left: auto;
    position: relative;
    margin-top: -50px;
    left: -5vw;
    top: 0;
    transform: translateZ(2px);
    background-image: url('./assets/banners/2.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position-x: right;
}

.section-4-background {
    width: 85%;
    height: fit-content;
    background-color: var(--bg3);
    z-index: -1;
    padding: 3rem;
    margin: 10px;
    border-radius: 24px;
    margin-left: 12vw;
    top: 5vh;
    transform-style: preserve-3d;
    transform: translateZ(-1px);
}

.section-4-container {
    position: relative;
    text-align: end;
    margin-left: auto;
    transform: translateZ(1px) scale(0.9);
}

.s4-subtitle {
    display: inline;
    font-family: 'Aleo', sans-serif;
    font-weight: Bold;
    font-size: var(--step-m);
    color: var(--fg1);
}

.s4-button {
    background-color: var(--blue);
}

.s4-body {
    margin: 0;
    padding: 0;
    font-family: 'Exo 2', sans-serif;
    font-size: var(--step-m);
    line-height: 120%;
    color: var(--fg1);
    padding-left: 20px;
}

.section-4-img-container {
    transform-style: preserve-3d;
    position: relative;
    width: 0;
    height: 0;
    bottom: 50px;
    margin-left: auto;
    left: -200px;
}

.section-4-image {
    position: absolute;
    transform: translateZ(1px);
}

.section-4-image img {
    border-radius: 10px;
    width: 200px;
}

/* section 2 */

.section-p {
    margin-top: 0;
    position: relative;
    z-index: 0;
}

.header {
    display: flex;
    justify-content: center;
    font-size: var(--step-xxl);
    color: var(--fg1);
    text-align: center;
}

.header h2 {
    font-family: 'Aleo', sans-serif;
    font-size: var(--step-xxl);
}

.p-contents {
    background-color: var(--bg2);
    padding-bottom: 50px;
}

.divider {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 25px;
}

.divider-title {
    font-family: 'Aleo', sans-serif;
    font-size: 24px;
    font-weight: Bold;
    color: var(--fg1);
    flex-grow: 0;
}

.hr-rounded {
    flex-grow: 1;
    margin-left: 2em;
    height: 2px;
    background-color: var(--bg3);
}

.media-container {
    --_gap-size: 2rem;
    overflow-x: auto !important;
    cursor: grab;
    user-select: none;
    scroll-behavior: smooth;

    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 383.5px;
    gap: var(--_gap-size);

    -ms-overflow-style: -ms-autohiding-scrollbar;
    /* IE10 */
    scrollbar-width: none;

    padding: 0 var(--_gap-size);

    overflow-x: auto;
    overscroll-behavior-inline: contain;
}

.media-container::-webkit-scrollbar {
    display: none;
}


.media-element {
    background-color: var(--bg3);
    border-radius: 24px;
}

.media-element h2,
.media-element p {
    text-align: center;
    margin: 10px 0;
}

.media-element h2 {
    font-family: 'Aleo', 'Helvetica Neue', sans-serif;
    font-weight: Bold;
    font-size: var(--step-s);
    color: var(--red);
}

.media-element p {
    font-family: 'Exo 2', 'Helvetica Neue', sans-serif;
    font-size: var(--step-xs);
    font-weight: Bold;
    color: var(--fg1);
}

.snap-inline {
    scroll-snap-type: x proximity;
    scroll-padding-inline: var(--_gap-size);
}

.snap-inline>* {
    scroll-snap-align: start;
}

.snap-inline:last-child {
    scroll-snap-align: end;
}

.scroll-buttons {
    display: flex;
    margin: 3px 10px 0 10px;
}

.direction-button {
    display: flex;
    justify-content: center;

    margin: 0 5px;

    box-sizing: border-box;

    width: 40px;
    height: 40px;

    border: 2px solid var(--bg4);
    border-radius: 50%;
}

.direction-button:hover {
    background-color: var(--pink);
    cursor: pointer;
}

.direction-button:first-child {
    padding-right: 3px;
}

.direction-button:last-child {
    padding-left: 3px;
}

footer {
    background-color: var(--bg3);
    position: relative;
    height: fit-content;
    /* top: 16em; */
}

.footer-element {
    overflow: hidden;
    position: relative;
}

.u-footer {
    top: 0 !important;
}

.footer-navigation {
    width: calc(100vw - 225px);
    margin-left: clamp(1vw, 4vw, 5vw);
}

.footer-container {
    display: flex;
    z-index: 2;
    padding-top: 50px;
    margin-left: 50px;
}

.primary-links ul,
.secondary-links ul {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
}

.primary-links ul {
    gap: 1rem;
}

.secondary-links {
    margin-top: 4rem;
}

.primary-links ul li a,
.secondary-links ul li a {
    text-decoration: none;
    display: inline-block;
    font-family: 'Exo 2', sans-serif;
    font-size: var(--step-m);
    font-weight: Bold;
    line-height: 40px;
    color: var(--pink);
}

.primary-links ul li a::after {
    content: '';
    width: 0;
    height: 3px;
    border-radius: 50px;
    background-color: var(--pink);
    display: block;
    transition: 400ms ease-out;
}

.primary-links ul li a:hover::after,
.secondary-links ul li a:hover::after {
    width: 100%;
}

.secondary-links ul li a::after {
    content: '';
    width: 0;
    height: 3px;
    border-radius: 50px;
    background-color: var(--fg1);
    display: block;
    transition: 400ms ease-out;
}

.secondary-links ul li a {
    font-size: var(--step-s);
    color: var(--fg1);
}

.primary-links ul li,
.secondary-links ul li {
    list-style-type: none;
}

.footer-img {
    position: relative;
    width: 100vw;
    height: auto;
    pointer-events: none;
    margin-top: 8rem;
}
.footer-img-container {
    position: relative;
    overflow: hidden;
}

.footer-img-desktop {
    display: block;
}

.footer-img-mobile {
    display: none;
}

.footer-logo {
    width: fit-content;
}


.video {
    width: 100vw;
    height: auto;
    pointer-events: none;
    margin: 0;
}

.video video {
    width: 100vw;
}

/* us.html */

.section-u {
    width: 100vw;
    transform-style: preserve-3d;
}

.u-content {
    background-color: var(--bg1);
    transform-style: preserve-3d;
    margin: 2rem 2rem;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.u-content-title {
    position: relative;
    width: max(400px, 60vw);
    height: 300px;
    right: 0;
    /* top: 15px; */
    background-image: url('./assets/banners/redaktionen.svg');
    /* background-position-x: left; */
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateZ(2px) scale(0.9);
    transform-origin: center;
}

.u-content>p {
    font-family: 'Aleo', serif;
    font-size: var(--step-m);
    font-weight: Bold;
    text-align: center;
}

.u-content p {
    font-family: 'Exo 2', sans-serif;
    font-size: var(--step-m);
    line-height: 120%;
    color: var(--fg1);
}

.u-img {
    margin-top: -200px;
}

.u-img img {
    height: 130vh;
    width: 40vw;
    object-fit: cover;
}

.u-content-button {
    width: fit-content;
    padding: 5px 10px;
    background-color: var(--red);
    border-radius: 50px;
}

.u-content-button a {
    text-decoration: none;
    color: var(--bg1);
    font-family: 'Exo 2', sans-serif;
    font-size: var(--step-m);
    font-weight: Bold;
}

.img-divider {
    position: relative;
    /* margin-top: calc(min(250px, 15vw) * -1); */
    margin-top: 4rem;
    z-index: 2;
    transform: translateZ(1px) scale(0.9);
    pointer-events: none;
}

.img-divider img {
    width: 100vw;
}

.u-nav {
    display: grid;
    width: 70vw;
    grid-template-columns: 40% 60%;
    margin-inline: auto;
    height: fit-content;
    margin-top: 100px;
}

.u-nav-menu {
    align-self: flex-start;
    display: flex;
    position: sticky;
    width: fit-content;
    top: 10rem;
    z-index: 1;
}

.u-nav-static p {
    font-family: 'Aleo', serif;
    color: var(--fg1);
    font-weight: Bold;
    font-size: var(--step-m);
    margin: 0;
}

.u-nav-menu nav ul {
    margin: 0;
    padding-left: 5px;
}

.u-nav-menu nav ul li {
    list-style-type: none;
}

.u-nav-menu nav ul li a {
    font-family: 'Aleo', serif;
    font-weight: Bold;
    text-decoration: none;
    font-size: var(--step-m);
    color: var(--bg4);
}

.u-nav-menu nav ul li a.active {
    transition: color 200ms ease-in-out;
    color: var(--red);
}

.u-nav-content {
    scroll-behavior: smooth;
}

.u-nav-content div h2 {
    margin: 0;
    font-size: var(--step-xs);
    font-family: 'Aleo', serif;
    color: var(--fg1);
    font-weight: Bold;
}

.u-nav-content div p {
    margin-top: 5px;
    margin-bottom: 50px;
    font-family: 'Exo 2', sans-serif;
    font-size: var(--step-m);
    color: var(--fg1);
    line-height: 150%;
}

#jag p {
    margin-bottom: 10px;
}

#sec-jag a {
    margin: 0;
    font-family: 'Exo 2', sans-serif;
    font-size: var(--step-m);
    color: var(--pink);
    text-decoration: none;
    font-weight: Bold;
}

#sec-jag a:hover {
    border-bottom: 2px solid var(--pink);
}

/* do.html */


.section-d {
    width: 100vw;
    transform-style: preserve-3d;
}

.d-content {
    background-color: var(--bg1);
    transform-style: preserve-3d;
    margin: 50px 50px 0 50px;
    text-align: end;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.d-content-title {
    position: relative;
    width: max(500px, 60vw);
    height: 300px;
    top: 15px;
    background-image: url('./assets/banners/2.svg');
    background-position-x: left;
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateZ(2px);
}

.d-content>p {
    font-family: 'Aleo', serif;
    font-size: var(--step-m);
    font-weight: Bold;
}

.d-content p {
    font-family: 'Exo 2', sans-serif;
    font-size: var(--step-m);
    line-height: 120%;
    color: var(--fg1);
}

.d-img {
    margin-top: -200px;
}

.d-img img {
    height: 130vh;
    width: 40vw;
    object-fit: cover;
}

.d-content-button {
    width: fit-content;
    padding: 1rem 2rem;
    background-color: var(--blue);
    border-radius: 50px;
    position: relative;
    /* margin-left: auto; */
}

.d-content-button a {
    text-decoration: none;
    color: var(--bg1);
    font-family: 'Exo 2', sans-serif;
    font-size: var(--step-m);
    font-weight: Bold;
}

.d-nav {
    display: grid;
    width: 70vw;
    grid-template-columns: 40% 60%;
    margin-inline: auto;
    height: fit-content;
    margin-top: 100px;
}

.d-nav-menu {
    align-self: flex-start;
    display: flex;
    position: sticky;
    width: fit-content;
    top: 10rem;
    z-index: 1;
}

.d-nav-menu nav ul {
    margin: 0;
    padding-left: 5px;
}

.d-nav-menu nav ul li {
    list-style-type: none;
}

.d-nav-menu nav ul li a {
    font-family: 'Aleo', serif;
    font-weight: Bold;
    text-decoration: none;
    font-size: var(--step-m);
    color: var(--bg4);
}

.d-nav-menu nav ul li a.active {
    transition: color 200ms ease-in-out;
    color: var(--red);
}

.d-nav-content {
    scroll-behavior: smooth;
}

.d-nav-content div h2 {
    margin: 0;
    font-size: var(--step-xs);
    font-family: 'Aleo', serif;
    color: var(--fg1);
    font-weight: Bold;
}

.d-nav-content div p {
    margin-top: 5px;
    margin-bottom: 50px;
    font-family: 'Exo 2', sans-serif;
    font-size: var(--step-m);
    color: var(--fg1);
    line-height: 150%;
}

#sec-mig p {
    margin-bottom: 10px;
}

#sec-mig a {
    margin: 0;
    font-family: 'Exo 2', sans-serif;
    font-size: var(--step-m);
    color: var(--pink);
    text-decoration: none;
    font-weight: Bold;
}

#sec-mig a:hover {
    border-bottom: 2px solid var(--pink);
}

.faq h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: var(--step-xxxl);
    font-weight: 900;
}

.faq h1,
.faq>p {
    width: 90vw;
    align-self: center;
}

.accordion {
    margin-top: 4rem;
    width: 90vw;
    align-self: center;
    border-radius: 5px;
    overflow: hidden;
    font-family: 'Aleo', serif;
    font-size: var(--step-l);
    /* background-color: var(--bg2); */
}

.accordion div:not(:last-child)::after {
    content: '';
    background-color: var(--fg1);
    width: 100%;
    height: 2px;
    margin-bottom: 6rem;
    display: block;
    position: relative;
}

.accordion-label,
.accordion-content {
    padding: 20px;
}

.accordion-label {
    display: flex;
    color: var(--fg1);
    background-color: var(--bg1);
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    transition: 50ms ease-out;
}

.accordion-label:hover {
    background-color: var(--pink) !important;
    color: var(--bg1) !important;
}

.accordion-label::before {
    content: "";
    position: relative;
    align-self: center;
    display: inline-block;
    /* top: 50%; */
    /* left: 20px; */
    margin-right: 1rem;
    transform: rotate(-0.25turn);
    transform-origin: center;
    width: 28px;
    height: 20px;
    background-image: url('./assets/icons/arrow_down.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 250ms ease-out;
}

.accordion-content p {
    font-size: var(--step-m) !important;
}

.accordion-content {
    background-color: var(--bg1);
    line-height: 150%;
    font-family: 'Exo 2', sans-serif;
    max-height: 0;
    padding: 0;
    opacity: 0;
    border-radius: 0 0 10px 10px;
    pointer-events: none;
    transition: max-height 250ms ease-out;
}

.accordion-input {
    display: none;
}

.accordion-input:checked~.accordion-content {
    max-height: 500px;
    padding: 20px;
    opacity: 1;
    margin-bottom: 25px;
    pointer-events: all;
}

.accordion-input:checked~.accordion-label {
    /* border-radius: 10px 10px 0 0; */
    background-color: var(--pink);
    color: var(--bg1);
}

.accordion-input:checked~.accordion-label::before {
    transform: none;
    transform-origin: center;
}

.accordion-input:hover~.accordion-label::before {
    filter: invert(1);
}

.accordion:last-child {
    margin-bottom: 100px;
}

.section-c {
    margin-left: 50px;
    margin-bottom: 8rem;
}

.section-c h2 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 900;
    font-size: var(--step-xl);
    color: var(--fg1);
}

.section-c p {
    font-family: 'Exo 2', sans-serif;
    font-size: var(--step-s);
    color: var(--fg1);
}

.section-c a {
    font-family: 'Exo 2', sans-serif;
    font-size: var(--step-m);
    color: var(--blue-bright);
    transition: 250ms ease-out;
}

.section-c a:hover {
    font-size: var(--step-l);
    color: var(--blue);
}

/* news.html */

.new-container {
    margin-left: 64px;
}

.new-container h1 {
    font-family: "Darumadrop One", sans-serif;
    font-size: var(--step-l);
    color: var(--fg1);

}

.new-container p:not(.author) {
    font-family: "Exo 2", sans-serif;
    font-size: var(--step-s);
    color: var(--fg1);
}

.author {
    font-family: "Exo 2", sans-serif;
    font-size: var(--step-s);
    color: #888;
}

/* divider */

.magazines h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: var(--step-4xl);
    margin-top: 8rem;
    text-align: right;
}

.magazines {
    width: 80vw;
    margin: 0 auto;
}

.magazine-container h1 {
    position: absolute;
}

.magazine-container {
    gap: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
    text-align: center;
    margin: 4rem 0 12rem;
}

.m-img {
    width: 100%;
    height: auto;
    aspect-ratio: 0.9/1;
    object-fit: cover;
    overflow: hidden;
    transition: 500ms ease;
    border-radius: 5px;
}

.m-img img {
    width: 100%;
    height: auto;
    transition: 500ms ease-out;
}


.magazine-container a {
    text-decoration: none;
    display: flex;
    flex-direction: column-reverse;
    /* margin: 4rem; */
}

.magazine-container a:hover .m-img img {
    transform: scale(1.05);
}

.magazine-container a:hover .m-img {
    border-radius: 100px;
}

.m-content {
    display: flex;
    justify-content: space-between;
    flex-direction: column-reverse;
    align-items: start;
    /* white-space: nowrap; */
}

.m-content * {
    margin: 0;
}

.m-content h2 {
    font-family: 'Crimson Pro', sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: var(--step-xxxl);
    margin: 0.5rem 0 1rem;
}

.m-content p {
    font-family: 'Aleo', serif; 
    font-size: var(--step-s);
}


.m-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    text-align: center;
    margin: 0;
    /* margin-top: -6rem; */
    padding: 0;
    padding-bottom: 24rem;
    margin-bottom: 4rem;
    transform-style: preserve-3d;
    background: linear-gradient(180deg, rgba(255,255,255,1) 85%, rgba(40,40,40,1) 85%);
}

.m-intro img:first-of-type {
    margin-top: 12%;
    margin-left: 12%;
    margin-bottom: 12rem;
    z-index: 1;
    width: max(300px, 50vw);
    pointer-events: none;
    stroke: var(--red);
    transform: translateZ(3px) scale(0.7);
}

.m-intro img:last-of-type {
    position: absolute;
    right: 0;
    top: 0;
    margin-right: 5%;
    margin-top: 5%;
    width: max(400px, 60vw);
    pointer-events: none;
    transform: translateZ(1px) scale(0.95);
}