/*@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyVVpcBO5Xk.ttf) format('truetype');
}

*,
*:before,
*:after {
    box-sizing: border-box;
}
*/
/*body {
    margin: 0;
    font-family: "Roboto Condensed", sans-serif;
}
*/
:root {
    --interior_back: #000;
    --interior_text: #000;
    --interior_color: #ffffff;
}

.background {
    background-image: url('/static/images/interior_hero.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    width: 100%;
    height: 100vh;
    position: relative;

    .background_overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /*        background-color: #FFF;*/
        background-color: var(--interior_back);
        mix-blend-mode: darken;
        transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .background_overlay:hover {
        background-color: transparent;
        mix-blend-mode: normal;
    }

    .background_overlay:hover .background_overlay__header {
        color: var(--interior_text);
        text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff;
        display: none;
    }

    .background_overlay:hover .background_overlay__header:after,
    .background_overlay:hover .background_overlay__header:before {
        /*        background-color: #FFF;*/
        background-color: var(--interior_text);
        width: 20%;
    }

    .background_overlay__inner {
        display: flex;
        height: 100vh;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .background_overlay__header {
        font-size: 10vw;
        color: var(--interior_color);
        display: inline-block;
        position: relative;
        /*        font-family: haha, regular;*/
    }

    .background_overlay__header:after,
    .background_overlay__header:before {
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        width: 50%;
        height: 5px;
        /*        background-color: #000;*/
        background-color: var(--interior_color);
        transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .background_overlay__header:after {
        left: auto;
        right: 50%;
    }

    .background_overlay__header:before {
        left: 50%;
        right: auto;
    }
}

.haha {
    padding: 1vh;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;

    & .arrow {
        width: 45px;
        height: 70px;
        /*  border: 2px solid #fff; */
        /*  border-radius: 50%; */
        position: absolute;
        bottom: 30px;
        margin: auto;
        transition: ease-in;
        animation: down 1.5s infinite;
        -webkit-animation: bounce2 1.5s infinite;
    }

    & .arrow::before {
        content: "";
        position: absolute;
        top: 11px;
        left: 13px;
        width: 20px;
        height: 20px;
        border-left: 4px solid #fafafa;
        border-bottom: 4px solid #fafafa;
        transform: rotate(-45deg);
        border-color: firebrick;
    }

    & .fade-in {
        opacity: 1;
        transition: 1s all ease-in;
    }

    & .fade-out {
        opacity: 0;
        transition: 1s all ease-out;
    }
}

.haha_side {
    & .arrow {
        -webkit-animation: bounce 1.5s infinite;
    }

    & .arrow::before {
        border-right: 4px solid #fafafa;
        border-left: none;
        border-bottom: 4px solid #fafafa;
        border-color: firebrick;
    }
}

@keyframes bounce2 {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translateY(15px);
    }

    40% {
        transform: translate(0);
    }
}

@-webkit-keyframes bounce2 {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translateY(15px);
    }

    40% {
        transform: translate(0);
    }
}

@keyframes bounce {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translateX(15px);
    }

    40% {
        transform: translate(0);
    }
}

@-webkit-keyframes bounce {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translateX(15px);
    }

    40% {
        transform: translate(0);
    }
}