body {
    margin: 0;
    padding: 0;
}

@charset "UTF-8";

@font-face {
    font-family: "open-sans";
    src: url("fonts/OpenSans-VariableFont_wdth,wght.woff2") format("woff2");
    font-weight: normal;
    font-style: normal
}

:root {
    font-family: "open-sans";
    --white: #f2f2f3;
    --black: #1f1f1f;
    --grey: #938f8f;
    --light-grey: #ccc;
    --uppercase: uppercase;
    --ls-sm: .1em;
    --opac-black: rgba(0, 0, 0, .65);
    --blur: blur(5px) contrast(2);
    --red: #ea3323;
    --h1: clamp(35px, 4.4vw, 72px);
    --h2: clamp(30px, 3.74vw, 61px);
    --h3: clamp(28px, 3.08vw, 50px);
    --h4: clamp(24px, 2.64vw, 43px);
    --h5: clamp(20px, 2.2vw, 36px);
    --h6: clamp(18px, 1vw, 24px);
}

* {
    box-sizing: border-box;
}
  .box {
                    mix-blend-mode: lighten;
                    min-height: 90vh;
                }
                canvas#image-sequence {
                position: fixed;
                  left: 50%;
                  top: 0;
                  transform: translate(-50%, 0%);
                  max-width: 122vw;
                  max-height: 100vh;
                  mix-blend-mode: lighten;
                }
                #horizontal {
                    display: flex;
                    overflow-x: hidden;
                }
                #horizontal .content {
                    height: 100vh;
                    width:100vw;
                    display: grid;
                    flex-shrink: 0;
                    place-items: center;
                }
                #horizontal .content:nth-child(1) {
                    background-color: #efefef;
                }
                #horizontal .content:nth-child(2) {
                    background-color: #4fe191;
                }
                #horizontal .content:nth-child(3) {
                    background-color: #efefef;
                }
                #horizontal .content:nth-child(4) {
                    background-color: #aca3ff;
                }
.bold {
    font-weight: 800;
}

body {

    background: black;
}

.modal {
    --bs-modal-width: 1000px;
    --bs-modal-bg: rgba(0, 0, 0, 0.75);
    border-radius: 0;
    border: 1px solid white;
    backdrop-filter: blur(8px);
}

.modal .btn-close {
    filter: invert(1);
}

.email-drip-graphic {
    display: inline-block;
    width: 32%;
    max-width: 329px;
    margin: 0 auto;
}

p.my-lists:hover {
    background: #a5a5a540;

}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    color: var(--white);
}

h3.black {
    color: black;
    text-align: start;
}

h1 {
    font-weight: 100;
    letter-spacing: var(--ls-sm);
    font-size: var(--h1);
}

h6,
p.h6,
.h6 {
    font-size: var(--h6);
}

.white {
    color: var(--white);
}

.blockout {
    background: black;
    padding: .4rem .8rem;
}

/* LINKS */
a {
    text-decoration: none;
    letter-spacing: var(--ls-sm);
    cursor: none;
}

.brand-cards {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    height: 100%;
    justify-content: space-around;
}

/*#contact {
    background-image: url(../images/contact.png);
    background-position: -230% -7%;
    background-repeat: no-repeat;
    background-size: 92% auto;
    mix-blend-mode: lighten;
}*/

.brand-cards div:first-of-type {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: baseline;

}

.brand-cards div:last-of-type {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

button.email-btn {
    background-color: var(--red);
    color: black;
    display: block;
    width: fit-content;
    padding: .5rem 2rem;
    outline: 0;
    border: none;
    margin: 0 .8rem;
    border-radius: 0;
}

button.email-btn:hover {
    background: white;
}

.text-justify {
    text-align: justify;
}

.uppercase {
    text-transform: var(--uppercase);
}

.fatty {
    font-weight: 800;
    transition: all .8s ease ease;
}

#sticky_nav div {}

#sticky_nav div a {

    padding: ;
    border-bottom: 5px solid transparent;
}

#sticky_nav div a:hover {
    border-bottom: 5px solid white;
}

canvas#dots {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -3;
}



.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    opacity: 1;

}

.spread-text {
    letter-spacing: 5px;
    text-align: left;
    width: 100%;
}

.sticky+.content {
    padding-top: 60px;
}

button.btn {
    background: none;
    outline: none;
    border: none;
    color: black;
    line-height: 1;
    height: 100%;
    border-bottom: .33px solid var(--light-grey);
    border-radius: 0;
}

button.btn:hover {
    background: var(--light-grey);
    border-bottom: 0;

}

a.btn-cards {
    background: var(--black);
    color: var(--white);
    border-radius: 0;
    text-transform: uppercase;
    width: 100%;
    border: 1px solid transparent;
}

a.btn-cards:hover {
    border: 1px solid var(--black);
}

p.card-text {
    color: var(--black);
}

button.btn.btn-primary:active {
    background: var(--grey);
}

.fake-js {
    border-bottom: 6px solid transparent;
}

.fake-js:focus,
.fake-js:active,
.fake-js:hover {
    border-bottom: 6px solid var(--grey);
}

.custom-cursor {
    position: fixed;
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: difference;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: green;
    transition: transform 350ms ease;
    transform: translate(-50%, -50%) scale(.3);
    z-index: 1056;
}

.custom-cursor--link {
    transform: translate(-50%, -50%) scale(1.25);
    background: var(--red) !important;
}

.et-hero-tabs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: rgba(0, 0, 0, .25);
    text-align: center;
    padding: 0 2em;
    text-transform: var(--uppercase);
    font-weight: 700;
    letter-spacing: var(--ls-sm);

}

.et-slide {

    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;

    text-align: center;
    padding: 0 2em;

}

.et-hero-tabs-container {
    display: flex;
    flex-direction: row;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 70px;
    background: var(--opac-black);
    backdrop-filter: var(--blur);
    border-bottom: 1.3px solid var(--white);


    z-index: 10;
}

.et-hero-tabs-container--top {
    position: fixed;
    top: 0;
}

.et-hero-tab {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    color: var(--white);
    letter-spacing: var(--ls-sm);
    transition: all 0.5s ease;

}

.et-hero-tab:hover {
    background: rgba(255, 255, 255, 1);
    color: black;
    transition: all 0.5s ease;
}

.et-hero-tab-slider,
.title-bars {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 6px;
    background: var(--white);
    transition: left 0.3s ease;
}

.work-titles {
    border-bottom: 1px solid var(--white);
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li {

    line-height: 1.65;
    margin-bottom: .9rem;
}

ul li:last-of-type {
    margin-bottom: 0;
}

div.contact-boxes {}

div.contact-boxes p {
    font-size: calc(var(--h1) * 1.5);
}

div.contact-boxes div.contact-thumbs {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;

}

div.contact-boxes div.contact-thumbs img {
    display: block;
    width: 100%;
}

div.contact-boxes div.contact-thumbs span {
    background: var(--opac-black);
    border-radius: 50px 50px;
    backdrop-filter: var(--blur);
    border: 1px solid var(--grey);
    color: var(--white);
    font-size: var(--p);
    width: fit-content;
    display: block;
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0%, 0);
}

@media (min-width: 800px) {

    .et-hero-tabs h1,
    .et-slide h1 {
        font-size: 3rem;
    }

    .et-hero-tabs h3,
    .et-slide h3 {
        font-size: 1rem;
    }

    .et-hero-tab {
        font-size: 1rem;
    }
}

#about_me {
    background-color: black;
    background-image: url(../images/experience.jpg);
    background-repeat: no-repeat;
    background-position: center left;
    background-attachment: fixed;
    mix-blend-mode: lighten;
}

#experience {
    justify-content: start;
    background-repeat: no-repeat;
    background-position: center left;
    background-attachment: fixed;
    mix-blend-mode: lighten;
    background-size: cover;
}

.exp-one {
    background-color: var(--white);
    background-image: url(../images/banners.jpg);
    background-repeat: no-repeat;
    background-size: cover;

}

/* red text thing */
#experience_pop_ups {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-center;
    height: 200vh;
}

.text {

    line-height: 100%;
    margin: 0;
    text-align: start;
    width: 100%;
    color: rgb(182, 182, 182, 0.2);
    background: linear-gradient(to right, #fff, #616161) no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 0%;
    transition: background-size cubic-bezier(.1, .5, .5, 1) 0.5s;


    border-bottom: 1px solid #2F2B28;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
    position: relative;
}

span.text-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ff0000;
    color: #0D0D0D;
    font-weight: 100;
    clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0 50%);
    transform-origin: center;
    transition: all cubic-bezier(.1, .5, .5, 1) 0.4s;
    text-align: start;
    display: flex;
    flex-direction: column;

}

.text:hover>span.text-effect {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

#ticker_container {
    position: relative;
    z-index: 2;
}

.ticker {
    padding: .5vw;
    white-space: nowrap;
}

.ticker:first-child {
    background-color: red;
    transform: rotateZ(-1deg);
    scale: 1.1;
}

.ticker:last-child {
    background-color: #1f1f1f;
    transform: rotateZ(3deg);
    scale: 1.1;
}

.ticker-wrap {
    display: flex;
    gap: 20px;
}

.ticker-text {
    color: #000;
    font-size: clamp(24px, 2.375vw, 44px);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.ticker:last-child .ticker-text {
    color: #fff;
}

.accent {
    color: #0000008f;
    font-family: 'Caveat', cursive;
    font-weight: 500;
    font-size: 1.1em;
}

@media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {
        display: none;
    }

    .topnav a.icon {
        float: right;
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .topnav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}

@media (min-width: 1440px) {
/*    #contact {
        background-image: url(../images/contact.png);
        background-position: -112% 86%;
        background-repeat: no-repeat;
        background-size: 74% auto;
        mix-blend-mode: lighten;
    }*/

    div.contact-boxes div.contact-thumbs span {
        background: var(--opac-black);
        border-radius: 50px 50px;
        backdrop-filter: var(--blur);
        border: 1px solid var(--grey);
        color: var(--white);
        font-size: var(--p);
        width: fit-content;
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(12%, -50%);
    }
}