@font-face {
    font-family: "NeueHelveticaPro45Light";
    src: url('../webFonts/NeueHelveticaPro45Light/font.woff2') format('woff2'), url('../webFonts/NeueHelveticaPro45Light/font.woff') format('woff');
}

@font-face {
    font-family: "NeueHelveticaPro65Medium";
    src: url('../webFonts/NeueHelveticaPro65Medium/font.woff2') format('woff2'), url('../webFonts/NeueHelveticaPro65Medium/font.woff') format('woff');
}

@font-face {
    font-family: "NeueHelveticaPro55Roman";
    src: url('../webFonts/NeueHelveticaPro55Roman/font.woff2') format('woff2'), url('../webFonts/NeueHelveticaPro55Roman/font.woff') format('woff');
}


:root {
    --primary-color: #000000;
    --secondary-color: #00FFB3;
    --tertiary-color: #00704f;
    --white-color: #FFFFFF;
    --grey-color: #B5B5B5;
    --dark-grey-color: #383838;
    --light-color: #081F30;
    --bg-color: #FFFFFF;
    --bg-color-light: #F9F9F9;

    --font-family-light: "NeueHelveticaPro45Light", "Helvetica Neue Light", "Helvetica Neue",
        Helvetica, Arial, "Lucida Grande", sans-serif;
    --font-family-regular: "NeueHelveticaPro55Roman", "Helvetica Neue Light", "Helvetica Neue",
        Helvetica, Arial, "Lucida Grande", sans-serif;
    --font-family-bold: "NeueHelveticaPro65Medium", "Helvetica Neue Light", "Helvetica Neue",
        Helvetica, Arial, "Lucida Grande", sans-serif;

    --btn-border-color: #E8E8E8;
    --btn-border-color-hover: var(--tertiary-color);
    --btn-border-color-active: var(--tertiary-color);
    --btn-border-color-focus: var(--white-color);
    --btn-border-color-disabled: var(--grey-color);
    --btn-color: var(--primary-color);
    --btn-color-hover: var(--secondary-color);
    --btn-color-active: var(--tertiary-color);
    --btn-color-focus: var(--white-color);
    --btn-color-disabled: var(--grey-color);

    --btn-border-radius: 999px;
    --btn-padding: 12px 30px 10px 30px;
    --btn-font-size: 16px;

    --link-color: var(--primary-color);
    --link-color-hover: var(--tertiary-color);

    --link-color-white: var(--white-color);
    --link-color-white-hover: var(--grey-color);

    --gradient-color-white: linear-gradient(90deg, #fff 0%, #9E9E9E 100%);
    --gradient-color-black: linear-gradient(90deg, #000 0%, #9E9E9E 100%);
    --gradient-color-white-both: linear-gradient(90deg, #9E9E9E 0%, #fff 8%, #fff 55%, #9E9E9E 100%);
    --gradient-color-black-small: linear-gradient(90deg, #000 0%, #000 60%, #9E9E9E 100%);
    --max-width: 1384px;

    --font-size-s: 14px;
    --font-size-m: 16px;
    --font-size: 18px;
    --font-size-l: 24px;

    --h1-size: 80px;
    --h2-size: 70px;
    --h3-size: 40px;
    --h4-size: 30px;
    --h5-size: 20px;
    --h6-size: 18px;

    --section-padding: 205px;
    --section-padding-lg: 305px;
    --section-padding-bottom: 225px;
    --section-padding-sm: 160px;
    --section-padding-xsm: 70px;
    --page-padding: 30px;
    --gutter-width: 40px;

    --text-spacing: 30px;
    --text-spacing-lg: 40px;

    --header-height: 75px;
    --header-height-m: 69px;

    --transition-in: 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
    --transition-out: 0.15s cubic-bezier(0.65, 0.05, 0.36, 1);
    --transition-in-slow: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    --transition-out-slow: 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
}

@media (max-width: 600px) {
    :root {
        --section-padding: 150px;
        --section-padding-lg: 205px;
        --section-padding-bottom: 80px;
        --section-padding-sm: 100px;
        --section-padding-xsm: 50px;

        --btn-padding: 7px 18px 6px 18px;

        --page-padding: 30px;
        --gutter-width: 30px;

        --font-size-l: 20px;

        --text-spacing: 20px;
        --text-spacing-lg: 60px;

        --h1-size: 30px;
        --h2-size: 26px;
        --h3-size: 26px;
        --h4-size: 20px;
        --h5-size: 18px;
        --h6-size: 16px;
    }
}

@media (max-width: 360px) {
    :root {
        --h1-size: 24px;
        --h2-size: 24px;
        --h3-size: 24px;
        --h4-size: 20px;
        --h5-size: 18px;
        --h6-size: 16px;
    }
}

/** BASE */

* {
    box-sizing: border-box;
}

body,
html {
    min-height: 100%;
    margin: 0;
    font-family: var(--font-family-regular);
    color: #fff;
    font-weight: 400;
    line-height: 1.3;
    position: relative;
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* TYPOGRAPHY */
a {
    color: var(--link-color);
    text-decoration: none;
    transition: all var(--transition-out);
}

a:hover {
    color: var(--link-color-hover);
    transition: all var(--transition-in);
}

.white-text {
    color: var(--white-color);
}

.white-text a:not(.btn) {
    color: var(--link-color-white);
    transition: all var(--transition-in);
}

.white-text a:not(.btn):hover {
    color: var(--link-color-white-hover);
    transition: all var(--transition-in);
}

.black-text {
    color: var(--primary-color);
}

strong,
b {
    font-family: var(--font-family-bold);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    -webkit-margin-before: 0px;
    display: block;
    width: 100%;
    position: relative;
    font-family: var(--font-family-regular);
    margin-bottom: var(--text-spacing);
}

.mp {
    margin-bottom: var(--text-spacing-lg);
}

.fw-bold {
    font-family: var(--font-family-bold);
}

.mb0 {
    margin-bottom: 0 !important;
}

.caps {
    font-size: var(--font-size-m);
    text-transform: uppercase;
    text-align: center;
}

.green-headline {
    color: var(--secondary-color);
}

blockquote {
    padding: 0;
    margin: 0;
    text-align: center;
}

blockquote p {
    margin: 0;
    font-size: var(--h3-size);
    font-family: var(--font-family-regular);
}

blockquote strong {
    font-size: var(--font-size-m);
    padding-top: var(--text-spacing);
    display: block;
    font-family: var(--font-family-light);
    color: var(--dark-grey-color);
}

blockquote cite {
    display: block;
    font-family: var(--font-family-bold);
    padding-bottom: 4px;
}

img {
    width: 100%;
    height: auto;
}

h1,
.h1 {
    font-size: var(--h1-size);
}

h2,
.h2 {
    font-size: var(--h2-size);
}

h3,
.h3 {
    font-size: var(--h3-size);
}

h4,
.h4 {
    font-size: var(--h4-size);
}

h5,
.h5,
h6,
.h6 {
    font-size: var(--h5-size);
}

.description {
    display: block;
    font-size: var(--font-size-l);
    max-width: 600px;
    font-family: var(--font-family-light);
}

.mw600 {
    max-width: 600px;
}

.mw700 {
    max-width: 700px;
}

.mw800 {
    max-width: 800px;
}


/* HELPERS */
.gradient-text {
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.gradient-text-white {
    background: var(--gradient-color-white);
}

.gradient-text-white-both {
    background: var(--gradient-color-white-both);
}

.gradient-text-black {
    background: var(--gradient-color-black);
}

.gradient-text-black-small {
    background: var(--gradient-color-black-small);
}

/* LAYOUT */
#page {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
    background: var(--bg-color);
}

header,
footer,
section,
main {
    z-index: 5;
    position: relative;
    margin: 0px auto;
    width: 100%;
    display: block;
    padding: var(--section-padding) 0 var(--section-padding-bottom) 0;
}

.wrap {
    max-width: var(--max-width);
    position: relative;
    z-index: 5;
    margin: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 var(--page-padding);
}

@media (max-width: 600px) {
    .fwm {
        width: 100%;
    }

    .wrap.two-cols {
        gap: 80px;
    }

    .wrap.two-cols.npm {
        gap: 10px;
    }

}

@media (min-width: 601px) {
    .wrap.two-cols {
        flex-direction: row;
        gap: 40px;
        align-items: center;
    }

    .wrap.two-cols.reverse {
        flex-direction: row-reverse;
    }


    .wrap.centered {
        align-items: center;
    }

    .wrap.two-cols> :first-child {
        flex: 0.6;
    }

    .wrap.two-cols> :last-child {
        flex: 0.4;
    }

    .wrap.two-cols.reverse> :first-child {
        flex: 0.4;
    }

    .wrap.two-cols.reverse> :last-child {
        flex: 0.6;
    }

}

/* BUTTONS */

.btn,
.btnlike {
    display: inline-flex;
    background: transparent;
    margin: 0;
    color: var(--btn-color);
    border: 1px solid var(--btn-border-color);
    border-radius: var(--btn-border-radius);
    padding: var(--btn-padding);
    font-size: var(--btn-font-size);
    cursor: pointer;
    transition: all var(--transition-out);
    position: relative;
    line-height: 1;
}

.btn {
    padding: 12px 20px 10px 20px;
}

@media (min-width: 601px) {}

.btn:hover {
    color: var(--btn-color-hover);
    border-color: var(--btn-border-color-hover);
    transition: all var(--transition-in);
}

.btn:focus {
    color: var(--btn-color-focus);
    border-color: var(--btn-border-color-focus);
    transition: all var(--transition-in);
}

.btn-green {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.btn:hover,
.btn:focus {
    color: var(--white-color);
    border-color: var(--tertiary-color);
    background: var(--tertiary-color);
}

.btnlike {
    cursor: default;
    font-family: var(--font-family-light);
}

.btnlike+.btnlike {
    font-family: var(--font-family-regular);
}

.btnlike+.btnlike+.btnlike {
    font-family: var(--font-family-bold);
}

/* HEADER */
header {
    padding: 15px var(--page-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-color);
}


@media (min-width: 601px) {
    header {
        padding: 20px var(--page-padding);
    }
}

.logo {
    position: relative;
    z-index: 20;
    top: -6px;
}

.logo path {
    fill: var(--primary-color);
    transition: all var(--transition-out);
}

/* logo animation*/
.logo path {
    transition: all 0.6s ease;
    opacity: 1;
    transform: translateX(0);
}

/* Apply animation to specific logo parts */
.logo .causal {
    opacity: 0;
    transform: translateX(10px);
    animation: fadeSlideIn 0.6s ease-in-out forwards;
}

.logo .logo-s,
.logo .logo-p,
.logo .logo-a,
.logo .logo-r,
.logo .logo-k,
.logo .logo-star {
    opacity: 0;
    transform: translateX(10px);
    animation: fadeSlideIn 0.6s ease-in-out forwards;
}

/* Add delay for staggered animation */
.logo .logo-s {
    animation-delay: 0.4s;
}

.logo .logo-p {
    animation-delay: 0.5s;
}

.logo .logo-a {
    animation-delay: 0.6s;
}

.logo .logo-r {
    animation-delay: 0.7s;
}

.logo .logo-k {
    animation-delay: 0.8s;
}

.logo .logo-star {
    animation:
        fadeSlideIn 0.6s ease-in-out forwards,
        starFlash 0.4s ease-in-out 0.8s forwards;

    animation-delay: 0.9s, 1.5s;
}



/* --- Burger styles --- */
#burger {
    background: none;
    border: none;
    cursor: pointer;
    z-index: 30;
    background: transparent;
    width: 39px;
    height: 39px;
    padding: 0;
    margin: 0;
    position: relative;
    right: -4px;
}

#burger::before,
#burger::after {
    content: '';
    display: block;
    height: 2px;
    width: 30px;
    background: var(--primary-color);
    transition: all 0.15s ease;
    position: absolute;
    right: 4px;
    transform: rotate(0deg);
}

#burger::before {
    top: 13px;
}

#burger::after {
    top: 22px;
}

#burger[aria-expanded="true"]::before,
#burger[aria-expanded="true"]::after {
    top: 18px;
    background: var(--white-color);
}

#burger[aria-expanded="true"]::before {
    transform: rotate(45deg);
}

#burger[aria-expanded="true"]::after {
    transform: rotate(-45deg);
    width: 30px;
}

.contact-modal {
    display: none;
}

@media (max-width: 600px) {
    #main-nav {
        flex-direction: row;
        flex-direction: column;
        display: flex;
        justify-content: center;
        gap: var(--gutter-width);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('../img/mobile-menu-bg.webp') center top/cover no-repeat var(--primary-color);
        z-index: 10;
        font-size: var(--h4-size);
        padding: var(--page-padding);
        transition: opacity var(--transition-out-slow);
        opacity: 0;
        pointer-events: none;
    }

    .contact-modal {
        display: block;
    }

    /*
    #main-nav a {
        color: var(--link-color-white);
    }

    #main-nav a:hover {
        color: var(--link-color-white-hover);
    }
        */

    #main-nav>a {
        display: none;
    }

    .mopen .logo path {
        fill: var(--white-color) !important;
        transition: all var(--transition-in);
    }

    .mopen #main-nav {
        opacity: 1;
        pointer-events: all;
        transition: opacity var(--transition-in-slow);
    }
}

@media (min-width: 601px) {

    #burger {
        display: none;
    }

    #main-nav {
        flex-direction: row;
        display: flex;
        align-items: center;
        gap: var(--gutter-width);
    }
}

/* INTRO */
#intro {
    padding-bottom: var(--section-padding-lg);
}

#intro .description {}

.line {
    display: none;
}

@media (min-width: 601px) {
    .line {
        display: block;
        position: absolute;
        top: 10px;
        right: 100px;
        width: 1px;
        height: 121px;
        background: var(--primary-color);
        z-index: 1;
    }

    .arrow {
        position: absolute;
        bottom: -70px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }

    /* Arrow animation */
    .arrow path:nth-child(1) {
        opacity: 0;
        animation: arrowFade1 1s infinite;
        animation-delay: 1s;
    }

    .arrow path:nth-child(2) {
        opacity: 0;
        animation: arrowFade2 1s infinite;
        animation-delay: 1s;
    }

    .arrow path:nth-child(3) {
        opacity: 0;
        animation: arrowFade3 1s infinite;
        animation-delay: 1s;
    }


}


/* WHAT WE DO */
#what-we-do {
    padding-top: var(--section-padding-xsm);
    padding-bottom: var(--section-padding-xsm);
    background: url('../img/wwd-bg.webp') center center/cover no-repeat #000000;
}

#what-we-do .wrap {}

#wwd-img-wrap {
    transform: translateY(0px);
}

#what-we-do .right-img {}

.img-wrap {
    position: relative;
}

.img-wrap img {
    position: relative;
    z-index: 1;
}

.img-wrap.white::before {
    content: '';
    display: block;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: url('../img/white_star.svg') center center/contain no-repeat;
}

@media (min-width: 601px) {
    .img-wrap.white::before {
        width: 149px;
        height: 149px;
    }
}

@media (min-width: 1201px) {
    #wwd-img {
        margin-right: -40px;
    }
}


@media (max-width: 600px) {

    #wwd-img-wrap {
        margin-left: calc(var(--page-padding) * -1);
        margin-right: calc(var(--page-padding) * -1);
        width: 100vw;
        aspect-ratio: 360/540;
        display: flex;
        justify-content: center;
        align-items: center;
        position: sticky;
        top: calc(var(--header-height-m) + 20px);
        z-index: 10;
        /* Remove the transform and let sticky positioning handle the movement */
    }

    #what-we-do {
        background: url('../img/wwd-bg-m2.webp') center bottom/cover no-repeat #000000;
        padding-top: 0;
        padding-bottom: 400px;
    }

    #what-we-do .wrap {
        flex-direction: column;
        padding-top: 0;
        /* Remove the padding-top since we're using sticky */
        gap: 0px;
    }

    #what-we-do article {
        margin-top: 0;
        padding-top: 40px;
        padding-bottom: 160px;
        position: relative;
        top: 400px;
    }
}

/* THE INTANGIBLE CONUNDRUM */
#the-intangible-conundrum {
    background: var(--bg-color-light);
    padding-top: var(--section-padding-sm);
    padding-bottom: 60px;
}

@media (min-width: 601px) {
    #the-intangible-conundrum {
        padding-top: var(--section-padding);
        padding-bottom: var(--section-padding-sm);
    }
}


#intangibles-menu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
    margin: 22px 0 32px 0;
}

#intangibles-menu .btnlike::before {
    content: '';
    display: block;
    width: 14px;
    height: 1px;
    background: var(--btn-border-color);
    position: absolute;
    top: 50%;
    right: calc(100% + 1px);
}

#intangibles-menu .btnlike:first-child::before {
    display: none;
}


#challenges {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1160px;
}

.challenge {
    display: flex;
    flex-direction: column;
    flex: 1;
    font-family: var(--font-family-light);
    font-size: var(--font-size);
}


.challenge strong {
    font-family: var(--font-family-bold);
    display: block;
    margin-bottom: 4px;
}

.ci {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 1/1;
    background: url('../img/conundrum-bg.webp') center center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px;
    padding: 0;
    margin: 0 0 20px 0;

    &::before {
        content: '';
        display: block;
        width: 50%;
        height: 50%;
    }
}

.c-1 {
    &::before {
        background: url('../img/c1.svg') center center/contain no-repeat;
    }
}

.c-2 {
    &::before {
        background: url('../img/c2.svg') center center/contain no-repeat;
    }
}

.c-3 {
    &::before {
        background: url('../img/c3.svg') center center/contain no-repeat;
    }
}

.c-4 {
    &::before {
        background: url('../img/c4.svg') center center/contain no-repeat;
    }
}

@media (min-width: 601px) {
    #challenges {
        flex-direction: row;
        justify-content: space-between;
        gap: 40px;
    }

    .challenge {
        font-size: var(--font-size-s);
    }

    #intangibles-menu {
        gap: var(--text-spacing);
        margin: 60px 0px 80px 0px;
    }

    #intangibles-menu .btnlike::before {
        width: var(--text-spacing);
    }
}

@media (min-width: 1101px) {
    #challenges {
        gap: 80px;
        max-width: 1280px;
    }

    #intangibles-menu {
        margin: 60px 0px 80px 0px;
    }
}

/* OUR PHILOSOPHY */
#our-philosophy h3 {
    color: var(--dark-grey-color);
}

#our-philosophy article {
    max-width: 1000px;
    margin: auto;
}


.dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;

    svg {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.dots.d {
    display: none;
}

.dots.m {
    display: block;
}

.circle {
    animation: pulse 2s ease-in-out infinite;
}

.c1 {
    animation-delay: 0s;
}

.c2 {
    animation-delay: 1s;
}

.c3 {
    animation-delay: 2s;
}

.c4 {
    animation-delay: 3s;
}

.c5 {
    animation-delay: 4s;
}

@media (max-width: 600px) {
    #our-philosophy {
        padding-top: var(--section-padding);
        padding-bottom: var(--section-padding);
    }
}

@media (min-width: 601px) {
    .dots.d {
        display: block;
    }

    .dots.m {
        display: none;
    }
}

@media (min-width: 1101px) {
    #our-philosophy {
        padding-top: 330px;
        padding-bottom: 300px;
    }
}

/* CONTACT US */
#contact-us {
    padding-top: var(--section-padding-xsm);
    padding-bottom: var(--section-padding-xsm);
    background: url('../img/contact-bg-m.webp') center center/cover no-repeat #000000;
}

#contact-us .right-img {
    max-width: 460px;
}


.img-wrap.green {
    position: relative;
    max-width: 460px;
}

.img-wrap.green::before {
    content: '';
    display: block;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: url('../img/green_star.svg') center center/contain no-repeat;
}

@media (min-width: 601px) {
    #contact-us {
        background: url('../img/contact-bg.webp') center center/cover no-repeat #000000;
    }

    .img-wrap.green::before {
        width: 145px;
        height: 149px;
    }
}

/* FOOTER */
footer {
    overflow: hidden;
    background: url('../img/footer-bg-m.webp') center center/cover no-repeat #000000;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.updates {
    color: var(--grey-color);
}

.bg-logo {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: url('../img/footer-logo.png') center center/contain no-repeat;
    aspect-ratio: 1892 / 236;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 80px;
    width: 100%;
}

.copyright {
    padding-top: 60px;
}


.union {
    position: relative;

    &::before {
        content: '';
        display: block;
        position: absolute;
        top: -80px;
        left: 0;
        width: 50px;
        height: 50px;
        background: url('../img/union.png') center center/contain no-repeat;
    }
}


@media (max-width: 600px) {
    footer {
        padding-top: var(--section-padding-bottom);
    }
}

@media (min-width: 601px) {
    footer {
        background: url('../img/footer-bg.webp') center center/cover no-repeat #000000;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        row-gap: 80px;
    }

    .copyright {
        padding-top: 0px;
    }
}

@media (min-width: 901px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .union,
    .copyright {
        grid-column: span 2;
    }
}

@media (min-width: 1101px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .union,
    .copyright {
        grid-column: span 3;
    }
}


@media (min-width: 601px) {}

@media (max-width: 600px) {}



/** Animations */
.fadeup {
    transition: opacity 0.7s ease-in-out, transform 0.6s ease-in-out;
    transform: translateY(50px);
    opacity: 0;
}

.fadeup[data-delay] {
    transition-delay: var(--delay, 0s);
}

.fadeup.animate {
    opacity: 1;
    transform: translateY(0px);
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes starFlash {
    0% {
        fill: var(--primary-color, black);
    }

    50% {
        fill: var(--secondary-color);
    }

    100% {
        fill: var(--primary-color, black);
    }
}

@keyframes arrowFade1 {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0.2;
    }

    40% {
        opacity: 0;
    }

    60% {
        opacity: 0;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes arrowFade2 {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    40% {
        opacity: 0.5;
    }

    60% {
        opacity: 0;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes arrowFade3 {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    40% {
        opacity: 0;
    }

    60% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }

}

@keyframes pulse {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}