@charset "utf-8";

/*------------------------------ FONTS ------------------------------*/
@import url('../../external.html?link=https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&amp;family=Bangers&amp;display=swap&amp;family=Permanent+Marker&amp;display=swap');

/*------------------------------ BASE ------------------------------*/
:root {
    --color-primary: #00A397;
    --color-secondary: #FFD700;
    --color-tertiary: #FB000D;
    --color-quaternary: #FFAE00;
    --color-text-dark: #222;
    --color-text-medium: #7B8B8A;
    --color-text-light: #A1AAA9;
    --color-text-ultralight: #D6D9D9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--color-text-dark);
}

li {
    list-style: none;
}

.center {
    text-align: center;
}

.bold {
    font-weight: 600;
}

.italics {
    font-style: italic;
}

.uppercase {
    text-transform: uppercase;
}

.line-through {
    text-decoration: line-through;
}

.color-red {
    color: var(--color-tertiary);
}

.color-teal {
    color: var(--color-primary);
}

.color-white {
    color: #fff;
    transition: color 0.5s ease-in-out;
}

.color-white.active {
    color: var(--color-secondary);
}

.margin-top-extra {
    margin-top: 2rem;
}

.margin-bottom-extra {
    margin-bottom: 3rem;
}

/*------------------------------ HEADER ------------------------------*/
.header-backer {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    z-index: 99;
    background: transparent;
    transition: background 0.4s ease-in-out;
}

.scrolled {
    background: var(--color-primary);
    border-bottom: 1px solid var(--color-text-medium);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: .5rem 100px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    transition: background-color 0.7s ease-in-out;    
}

header.teal {
    background-color: var(--color-primary);
    border-bottom: 1px solid var(--color-text-medium);
}

header.active {
    background-color: #FB000D;
}

header h2 {
    font-family: 'Bangers', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--color-secondary);
    font-size: 2rem;
    text-shadow: 1px 1px var(--color-text-dark);
    opacity: 1;
    transition: all 0.5s ease-in;
}

header h2.active {
    text-shadow: 1px 1px #222;
    color: #fff;
}

header > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    animation: header;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes header {
    0% {top: -200px}
    100% {top: 0}
}

header img {
    width: 52px;
    margin-right: 10px;
}

.logo {
    text-transform: uppercase;
}

/*------------------------------ TOGGLE BOX ------------------------------*/
.toggle-box {
    position: fixed;
    top: 0;
    right: 100px;
    width: 52px;
    padding: .5rem 0;
    z-index: 102;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle {
    position: relative;
    right: 0;
    width: 52px;
    height: 52px;
    background: url(../images/icon-yawk-menu.svg);
    background-repeat: no-repeat;
    background-size: 42px;
    background-position: center;
    cursor: pointer;
    transition: right 0.6s ease-in-out;
}

.toggle.dark {
    background: url(../images/icon-yawk-menu-dark.svg);
    background-repeat: no-repeat;
    background-size: 42px;
    background-position: center;
}

.toggle.active {
    right: -62px;
    background: url(../images/icon-exit.svg);
    background-repeat: no-repeat;
    background-size: 42px;
    background-position: center;
}

/*------------------------------ NAV ------------------------------*/
.nav {
    position: fixed;
    top: 0;
    right: -365px;
    width: 365px;
    height: 100vh;
    border-left: 2px solid var(--color-tertiary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow: none;
    background: url(../images/yawk-bar-mbacker-01.jpg) no-repeat center center/cover;
    transition: 0.5s;
    z-index: 101;
}

.nav.active {
    right: 0;
    box-shadow: -4px 0 10px var(--color-text-dark);
}

.nav.bg-white {
    background-color: #fff;
}

.nav .menu-logo {
    width: 142px;
    margin: 0.5rem 0;
}

.nav h2 {
    font-family: 'Bangers', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--color-secondary);
    font-size: 2rem;
    text-shadow: 1px 1px var(--color-text-dark);
    margin-bottom: .8rem;
    padding-bottom: .3rem;
    border-bottom: 2px solid var(--color-tertiary);
}

.nav ul {
    position: relative;
    list-style: none;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.nav ul li a {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.82rem;
    color: var(--color-text-dark);
    transition: all 0.4s ease-in-out;
}

.nav ul li a:hover {
    color: var(--color-tertiary);
}

.nav .social {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: 1.5rem auto 0;
}

.nav .social a {
    scale: 1;
    transition: scale 0.2s ease-in-out;
}

.nav .social a:hover {
    scale: 1.1;
}

.nav .social img {
    width: 72px;
}

/*------------------------------ SHOWCASE ------------------------------*/
.showcase {
    position: relative;
    right: 0;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    color: #fff;
    z-index: 0;
    overflow: hidden;
}

.showcase video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #9E0008;
    mix-blend-mode: overlay;
    opacity: 0.4;
}

.text {
    position: relative;
    z-index: 10;
    animation: text;
    animation-duration: 3s;
    animation-fill-mode: forwards;
}

@keyframes text {
    0% {left: -1000px}
    100% {left: 0}
}

.text h2 {
    font-size: 5em;
    font-weight: 800;
    line-height: 1em;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px #222;
}

.text h3 {
    font-size: 4em;
    font-weight: 700;
    line-height: 1em;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px #222;
}

.text p {
    font-size: 1.1em;
    margin: 20px 0;
    font-weight: 400;
    max-width: 700px;
    text-shadow: 1px 1px 1px #222;
}

.text a, article a {
    display: inline-block;
    font-size: 1.52em;
    background: var(--color-secondary);
    padding: 10px 30px;
    text-decoration: none;
    color: var(--color-text-dark);
    margin: 0.5rem auto;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: .5s;
}

.text a:hover, article a:hover {
    letter-spacing: 6px;
    background-color: var(--color-tertiary);
    color: #fff;
}

.counter {
    position: absolute;
    bottom: 1rem;
    z-index: 12;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    align-items: center;
}

.counter > div {
    border: 1px solid #fff;
    padding: 1rem;
    text-align: center; 
    background-color: rgba(0,0,0,0.5);
    transition: background-color 0.8s ease-in-out;
    cursor: pointer;
}

.counter > div:hover {
    background-color: rgba(251,0,13,0.5);
}

.counter > div i {
    margin-bottom: 0.3rem;
    color: #eee;
}

.counter > div h4 {
    font-weight: 400;
}

.hard-count {
    font-size: 2rem;
    font-weight: 600;
}


/*---------------------------- CONTENT PAGE SHOWCASES ----------------------------*/
.showcase.about-us {
    background: url(../images/parallax-bg-02.jpg) no-repeat center center/cover fixed;
}

.showcase.events {
    background: url(../images/parallax-bg-11.jpg) no-repeat center center/cover fixed;
}

.showcase.menu {
    background: url(../images/parallax-bg-13.jpg) no-repeat center center/cover fixed;
}

.showcase.team {
    background: url(../images/parallax-bg-12.jpg) no-repeat center center/cover fixed;
}

.showcase.photos {
    background: url(../images/parallax-bg-10.jpg) no-repeat center center/cover fixed;
}

.showcase.stories {
    background: url(../images/parallax-bg-05.jpg) no-repeat center center/cover fixed;
}

.showcase.location {
    background: url(../images/parallax-bg-03.jpg) no-repeat center center/cover fixed;
}

.showcase.careers {
    background: url(../images/parallax-bg-12.jpg) no-repeat center center/cover fixed;
}

.showcase.social {
    background: url(../images/parallax-bg-07.jpg) no-repeat center center/cover fixed;
}

.showcase.contact {
    background: url(../images/parallax-bg-04.jpg) no-repeat center center/cover fixed;
}

.showcase.social .social-box {
    display: flex;
    max-width: fit-content;
}

.showcase.social .social-box a {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    background: none;
    scale: 1;
    transition: scale 0.2s ease-in-out;
}

.showcase.social .social-box a:hover {
    scale: 1.1;
}

.showcase.social .social-box a:last-child {
    margin-right: 0;
}

.showcase.social .social-box a img {
    width: 100px;
}

.showcase .para-01, .showcase .para-02, .showcase .para-03, .showcase .para-04, .showcase .para-05, .showcase .para-06 {
    position: absolute;
    bottom: -10px;
}

.showcase .para-01 {
    animation: para-right;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    z-index: 2;
}

.showcase .para-01 img {
    width: 600px;
}

.showcase .para-02 {
    filter: blur(1.5px);
    animation: para-left;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.showcase .para-03 {
    animation: para-right;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    z-index: 2;
}

.showcase .para-03 img {
    width: 500px;
}

.showcase .para-04 {
    filter: blur(1.5px);
    animation: para-left;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.showcase .para-04 img {
    width: 350px;
}

.showcase .para-05 {
    filter: blur(1.5px);
    animation: para-left-02;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.showcase .para-05 img {
    width: 450px;
}

.showcase .para-06 {
    filter: blur(1.5px);
    animation: para-left-03;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.showcase .para-06 img {
    width: 350px;
}

@keyframes para-right {
    0% {right: -1000px}
    100% {right: 0}
}

@keyframes para-left {
    0% {left: -1000px}
    100% {left: 300px}
}

@keyframes para-left-02 {
    0% {left: -1000px}
    100% {left: 400px}
}

@keyframes para-left-03 {
    0% {left: -1000px}
    100% {left: 500px}
}

/*------------------------------ MAIN CONTENT ------------------------------*/
main, aside {
    width: 100%;
    display: flex;
    flex-direction: column;
}

main.col1 {
    align-items: center;
    justify-content: center;
}

article {
    max-width: 800px;
    padding: 5rem 4rem 2rem;
    display: flex;
    flex-direction: column;
    margin: auto;
}

aside article {
    padding: 1rem 4rem 2rem;
}

article.story, article.wide.photos.gallery {
    margin-top: 3rem;
}

.article-h1-container {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--color-secondary);
    margin-bottom: 1rem;
}

.article-h1-container img {
    width: 100px;
}

.article-h1-container img:first-child {
    margin-right: 1rem;
}

.article-h1-container img:last-child {
    margin-left: 1rem;
}

article h1 {
    color: var(--color-primary);
    font-size: 5rem;
    text-align: center;
    text-transform: uppercase;
}

article h1.story-header {
    color: var(--color-text-dark);
    text-transform: capitalize;
    font-size: 3rem;
    text-align: left;
    line-height: 1;
    margin-bottom: 0.5rem;
}

article h2.story-subheader {
    color: var(--color-text-medium);
    font-size: 1.4rem;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

article h3.story-credits {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 400;
    border-bottom: 1px solid var(--color-text-medium);
    padding-bottom: 0.5rem;
}

article p {
    margin: 0.5rem 0;
    color: var(--color-text-dark);
}

article p a, article p a:hover {
    color: var(--color-primary);
    background: none;
    text-transform: none;
    display: inline;
    font-size: inherit;
    padding: 0;
    margin: 0;
    letter-spacing: 0;
    transition: none;
    font-weight: 500;
}

article img {
    width: 100%;
    margin: 0.5rem 0;
    border-radius: 4px;
}

article figcaption {
    color: var(--color-text-medium);
    font-size: 0.8rem;
    text-align: center;
    width: 90%;
    margin: auto;
}

article.wide {
    max-width: 1280px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

article.wide.col5 {
    grid-template-columns: repeat(5, 1fr);
}

article.wide .article-h1-container {
    grid-column: 1 / 4;
}

article.wide.col5 .article-h1-container {
    grid-column: 1 / 6;
}

article.wide h2 {
    grid-column: 1 / 4;
    line-height: 1;
    font-size: 2rem;
}

article.wide.events {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

article.wide.events .items, article.wide.events .items-header {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    gap: 1rem;
}

article.wide.events .items-header {
border-bottom: 1px solid var(--color-text-light);
}

article.wide.events .items-header h3 {
    font-size: 2rem;
    color: var(--color-text-medium);
}

article.wide.events .items h3 {
    font-size: 1.7rem;
}

article.wide.col5 h2 {
    grid-column: 1 / 6;
}

article.wide li {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border: 1px solid var(--color-text-light);
    transition: 0.8s;
}

article.wide.photos li:hover {
    background: var(--color-tertiary);
    color: #fff;
}

article.wide.photos.gallery li:hover {
    background: #fff;
}

article.wide li h2 {
    margin-bottom: 1rem;
}

article.wide.photos li a {
    background: none;
    padding: 0;
    text-decoration: none;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
    transition: 0;
}

article.wide.photos.gallery li:nth-child(6n+1) a, article.wide.photos.gallery li:nth-child(1) a:hover {
    color: var(--color-secondary);
}

article.wide.photos.gallery li:nth-child(6n+2) a, article.wide.photos.gallery li:nth-child(2) a:hover {
    color: var(--color-primary);
}

article.wide.photos.gallery li:nth-child(6n+3) a, article.wide.photos.gallery li:nth-child(3) a:hover {
    color: var(--color-text-dark);
}

article.wide.photos.gallery li:nth-child(6n+4) a, article.wide.photos.gallery li:nth-child(4) a:hover {
    color: var(--color-tertiary);
}

article.wide.photos.gallery li:nth-child(6n+5) a, article.wide.photos.gallery li:nth-child(5) a:hover {
    color: var(--color-text-medium);
}

article.wide.photos.gallery li:nth-child(6n+6) a, article.wide.photos.gallery li:nth-child(6) a:hover {
    color: var(--color-quaternary);
}

article.wide.photos li h2 {
    text-align: center;
    margin: 0.7rem auto 0.3rem;
}

article.wide.photos.gallery li h2 {
    font-family: 'Permanent Marker', sans-serif;
}

article.wide li.span-2 {
    grid-column: 1 / 3;
}

article.wide li h3 {
    line-height: 1;
    border-bottom: 1px solid var(--color-text-light);
    padding-bottom: 0.5rem;
    color: var(--color-text-dark);
}

article.wide li p {
    padding-bottom: 0;
}

article.wide li img {
    width: 100%;
    margin: 0;
}

/*------------------------------ FOOTER ------------------------------*/
footer.footer {
    width: 100%;
    background: #fff;
    padding: 1rem 0;
    border-top: 1px solid var(--color-text-light);
}

footer.footer .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1rem;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 2rem auto;
    color: var(--color-text-medium);
}

footer.footer .container img {
    width: 142px;
}

footer.footer .container ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

footer.footer .container ul:first-child {
    align-items: center;
}

footer.footer .container ul h2 {
    font-family: 'Bangers', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--color-secondary);
    font-size: 2rem;
    text-shadow: 1px 1px #222;
}

footer.footer .container ul h3 {
    font-weight: 400;
    font-size: 1.1rem;
}

footer.footer .container ul p {
    font-size: 0.9rem;
    color: var(--color-text-medium);
    margin: 0 auto;
}

footer.footer .container ul h4 {
    font-weight: 600;
    font-size: 1.1rem;
}

footer.footer .container ul a {
    color: var(--color-text-medium);
}

footer.footer p {
    width: 80%;
    font-size: 0.8rem;
    margin: 1rem auto;
    color: var(--color-text-light);
    text-align: center;
}

/* ----------------------------- Text BG Animation ----------------------------- */
.bg-animation {
    background: url('../images/bg-animation-01.png') no-repeat;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: moveBg 15s linear infinite;
}

@keyframes moveBg {
    0% {background-position: 0 30%;}
    100% {background-position: 100% 50%;}
}

/*------------------------------ SPLASH ANIMATIONS ------------------------------*/
.animation-1, .animation-3-1, .animation-3-3, .animation-3-4, .animation-3-5, .animation-3-7, .animation-3-9 {
    position: absolute;
    bottom: -10px;
    left: -1000px;
    z-index: 11;
}

.animation-2, .animation-3-2, .animation-3-6, .animation-3-8 {
    position: absolute;
    bottom: -10px;
    right: -1000px;
    z-index: 11;
}

.animation-1.active {
    animation: beer;
    animation-duration: 5s;
    animation-fill-mode: forwards;
}

.animation-2.active {
    animation: whiskey;
    animation-duration: 5s;
    animation-fill-mode: forwards;
}

.animation-3-1.active {
    animation: good1;
    animation-duration: 5.7s;
    animation-fill-mode: forwards;
}

.animation-3-2.active {
    animation: good2;
    animation-duration: 5.5s;
    animation-fill-mode: forwards;
}

.animation-3-3.active {
    animation: good3;
    animation-duration: 5.8s;
    animation-fill-mode: forwards;
}

.animation-3-4.active {
    animation: good4;
    animation-duration: 5.2s;
    animation-fill-mode: forwards;
}

.animation-3-5.active {
    animation: good5;
    animation-duration: 5.5s;
    animation-fill-mode: forwards;
}

.animation-3-6.active {
    animation: good6;
    animation-duration: 5.7s;
    animation-fill-mode: forwards;
}

.animation-3-7.active {
    animation: good7;
    animation-duration: 5.5s;
    animation-fill-mode: forwards;
}

.animation-3-8.active {
    animation: good8;
    animation-duration: 6.4s;
    animation-fill-mode: forwards;
}

.animation-3-9.active {
    animation: good9;
    animation-duration: 5.9s;
    animation-fill-mode: forwards;
}

@keyframes beer {
    0% {left: -100%}
    20% {left: 20%}
    30% {left: 10%}
    40% {left: 30%}
    42% {transform: scale(1)}
    50% {left: 15%}
    70% {transform: scale(1.5)}
    75% {left: 25%}
    95% {transform: scale(1)}
    100% {left: -100%}
}

@keyframes whiskey {
    0% {right: -100%}
    20% {right: 10%}
    30% {right: 5%}
    40% {right: 12%}
    50% {right: 5%}
    51% {transform: scale(1)}
    75% {right: 15%}
    76% {transform: scale(1.6)}
    95% {transform: scale(1)}
    100% {right: -100%}
}

@keyframes good1 {
    0% {left: -1000px}
    5% {transform: scale(1)}
    20% {left: 0}
    30% {left: -100px}
    40% {left: 0}
    45% {transform: scale(1.5)}
    50% {left: 50px}
    75% {left: -20px}
    85% {transform: scale(1)}
    100% {left: -1000px}
}

@keyframes good2 {
    0% {right: -1000px}
    20% {right: 400px}
    30% {right: 20px}
    40% {right: 100px}
    50% {right: 50px}
    50% {transform: scale(1)}
    75% {right: -200px}
    75% {transform: scale(1.5)}
    100% {right: -1000px}
    100% {transform: scale(1)}
}

@keyframes good3 {
    0% {left: -1000px}
    20% {left: 500px}
    30% {left: 10px}
    40% {left: 300px}
    45% {transform: scale(1)}
    50% {left: 200px}
    60% {transform: scale(2)}
    75% {left: 542px}
    85% {transform: scale(1)}
    100% {left: -1000px}
}

@keyframes good4 {
    0% {left: -1000px}
    20% {left: 800px}
    30% {left: 500px}
    32% {transform: scale(1)}
    40% {left: 600px}
    50% {left: 700px}
    60% {transform: scale(1.3)}
    75% {left: 242px}
    77% {transform: scale(1)}
    100% {left: -1000px}
}

@keyframes good5 {
    0% {left: -1000px}
    20% {left: 200px}
    30% {left: 70px}
    40% {left: 600px}
    45% {transform: scale(1)}
    50% {left: 400px}
    60% {transform: scale(1.7)}
    75% {left: 800px}
    80% {transform: scale(1)}
    100% {left: -1000px}
}

@keyframes good6 {
    0% {right: -1000px}
    20% {right: 200px}
    30% {right: 150px}
    40% {right: 300px}
    50% {right: 200px}
    75% {right: 42px}
    100% {right: -1000px}
}

@keyframes good7 {
    0% {left: -1000px}
    10% {transform: scale(1)}
    20% {left: 450px}
    25% {transform: scale(1.5)}
    30% {left: 200px}
    40% {left: 500px}
    50% {left: 150px}
    55% {transform: scale(1)}
    75% {left: 342px}
    100% {left: -1000px}
}

@keyframes good8 {
    0% {right: -1000px}
    20% {right: 100px}
    25% {transform: scale(1)}
    30% {right: 20px}
    40% {right: 600px}
    45% {transform: scale(1.4)}
    50% {right: 400px}
    70% {transform: scale(1)}
    75% {right: 442px}
    100% {right: -1000px}
}

@keyframes good9 {
    0% {left: -1000px}
    20% {left: 340px}
    30% {left: 280px}
    40% {left: 150px}
    50% {left: 300px}
    75% {left: 142px}
    100% {left: -1000px}
}

.animation-1 img, .animation-3-1 img, .animation-3-2 img, .animation-3-3 img, .animation-3-4 img, .animation-3-5 img, .animation-3-6 img, .animation-3-7 img, .animation-3-8 img, .animation-3-9 img {
    width: 400px;
}

.animation-2 img {
    width: 700px;
}

/*-------------------------- YAWK MEANING ANIMATIONS --------------------------*/
.showcase.about-us .meaning {
    display: none;
}

.showcase.about-us .meaning.active {
    position: absolute;
    z-index: 11;
    display: grid;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    padding: 2rem 1rem;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    animation: meaning-fade-01;
    animation-duration: 2.1s;
    animation-fill-mode: forwards;
    background-color: rgba(0,0,0,0.6);
}

.showcase.about-us .meaning li {
    display: none;
}

.showcase.about-us .meaning.active li {
    position: relative;
    font-family: 'Bangers', sans-serif;
    font-size: 4rem;
    letter-spacing: 2px;
    text-align: center;
    padding: 2rem 0;
    text-shadow: 1px 1px var(--color-text-dark);
    transform: rotate(-16deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.yawk-01, .yawk-02, .yawk-03, .yawk-04, .yawk-05, .yawk-06, .yawk-07, .yawk-08, .yawk-09, .yawk-10, .yawk-11, .yawk-12, .yawk-13 {
    display: none;
}

.yawk-01.active, .yawk-04.active, .yawk-06.active, .yawk-11.active {
    background: url(../images/icon-splash-orange.svg) no-repeat center center/contain;
    animation: meaning-01;
    animation-duration: 4.4s;
    animation-fill-mode: forwards;
}

.yawk-02.active, .yawk-07.active, .yawk-09.active, .yawk-12.active {
    background: url(../images/icon-splash-teal.svg) no-repeat center center/contain;
    animation: meaning-02;
    animation-duration: 4.6s;
    animation-fill-mode: forwards;
}

.yawk-03.active, .yawk-05.active, .yawk-08.active, .yawk-10.active {
    background: url(../images/icon-splash-yellow.svg) no-repeat center center/contain;
    animation: meaning-03;
    animation-duration: 4.9s;
    animation-fill-mode: forwards;
}

.yawk-13.active {
    position: absolute;
    z-index: 12;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    font-family: 'Bangers', sans-serif;
    font-size: 11rem;
    letter-spacing: 4px;
    text-align: center;
    padding: 2rem 0;
    text-shadow: 1px 1px var(--color-text-dark);
    transform: rotate(-16deg);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    background: url(../images/icon-splash-red.svg) no-repeat center center/contain;
    background-size: 642px;
    animation: meaning-fade-02;
    animation-duration: 4.4s;
    animation-fill-mode: forwards;
}

.meaning-exit {
    display: none;
}

.meaning-exit.active {
    position: absolute;
    z-index: 13;
    left: 0;
    bottom: 24%;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 2rem;
    text-shadow: 1px 1px var(--color-text-dark);
    opacity: 0;
    animation: meaning-fade-02;
    animation-duration: 6s;
    animation-fill-mode: forwards;
}

.meaning-toggle {
    position: absolute;
    left: 100px;
    bottom: 21%;
    z-index: 14;
    width: 72px;
    height: 72px;
    cursor: pointer;
    background: url(../images/icon-go.svg);
    background-repeat: no-repeat;
    background-size: 72px;
    background-position: center;
    transition: left 1.4s ease-in-out, bottom 1.4s ease-in-out;
}

.meaning-toggle.active {
    left: 50%;
    transform: translateX(-50%);
    bottom: 10%;
    background: url(../images/icon-exit.svg);
    background-repeat: no-repeat;
    background-size: 72px;
    background-position: center;
    opacity: 0;
    animation: meaning-fade-02;
    animation-duration: 6.4s;
    animation-fill-mode: forwards;
}

@keyframes meaning-fade-01 {
    0% {opacity: 0}
    100% {opacity: 1}
}

@keyframes meaning-fade-02 {
    70% {opacity: 0}
    100% {opacity: 1}
}

@keyframes meaning-01 {
    0% {left: -1000px}
    42% {left: 0}
    70% {opacity: 1}
    100% {opacity: 0.5}
}

@keyframes meaning-02 {
    0% {right: -1000px}
    37% {right: 0}
    70% {opacity: 1}
    100% {opacity: 0.5}
}

@keyframes meaning-03 {
    0% {bottom: -1000px}
    40% {bottom: 0}
    70% {opacity: 1}
    100% {opacity: 0.5}
}

/*---------------------------- MEDIA QUERIES 789px ----------------------------*/
@media(max-width:798px) {
header {
    padding: .5rem;
}
    
header img {
    margin-right: 7px;
}
    
header h2 {
    font-size: 1.62rem;
}

header h2.active {
    opacity: 0;
}

.toggle-box {
    right: .5rem;
}

.toggle.active {
    right: 0;
}

.nav {
    width: 300px;
}

.nav ul li a {
    font-size: 1.42rem;
    transition: none;
}

.nav ul li a:hover {
    color: #111;
}

.nav .social {
    gap: 1rem;
    margin: 1rem auto 0;
}

.nav .social a:hover {
    scale: 1;
}

.nav .social img {
    width: 52px;
}
    
.showcase {
    padding: 1rem;
    min-height: 91vh;
}

.showcase.about-us::after, .showcase.events::after, .showcase.menu::after, .showcase.team::after, .showcase.photos::after, .showcase.stories::after, .showcase.social::after, .showcase.location::after, .showcase.contact::after, .showcase.careers::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0,0,0,0.1);
    box-shadow: inset 20px 10px 100px #000, inset -20px -10px 100px #000;
}

.showcase video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 20%;
    opacity: 0.8;
}

.text h2 {
    font-size: 3em;
}
    
.text h3 {
    font-size: 2em;
}

.text a, article a {
    font-size: 1.24em;
    transition: none;
}

.text a:hover, article a:hover {
    letter-spacing: 2px;
    background-color: var(--color-secondary);
    color: #111;
}

.counter {
    gap: 0.3rem;
    bottom: 8%;
}

.counter > div {
    padding: 0.5rem 0.2rem;
}

.counter > div:hover {
    background-color: rgba(0,0,0,0.5);
}

.counter > div i {
    margin-bottom: 0;
}

.counter > div h4 {
    font-weight: 300;
    font-size: 0.8rem;
}

.hard-count {
    font-size: 1.2rem;
    font-weight: 500;
}

.animation-1 img {
    width: 300px;
}

.animation-2 img {
    width: 420px;
}

@keyframes whiskey {
    0% {right: -1000px}
    1% {transform: scale(1.4)}
    20% {right: 100px}
    30% {right: 50px}
    40% {right: 162px}
    50% {right: -200px}
    51% {transform: scale(1.4)}
    75% {right: 42px}
    76% {transform: scale(2)}
    95% {transform: scale(1)}
    100% {right: -1000px}
}

@keyframes good8 {
    0% {right: -1000px}
    20% {right: 100px}
    25% {transform: scale(1)}
    30% {right: 20px}
    40% {right: 200px}
    45% {transform: scale(1.4)}
    50% {right: 150px}
    70% {transform: scale(1)}
    75% {right: 182px}
    100% {right: -1000px}
}

.showcase.social .social-box a {
    margin-right: 1rem;
}

.showcase.social .social-box a img {
    width: 82px;
}

.showcase .para-03 {
    animation: para-right-2;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.showcase .para-03.x-right {
    animation: para-right;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.showcase .para-01 img {
    width: 500px;
}

.showcase .para-03 img {
    width: 430px;
}

@keyframes para-right {
    0% {right: -500px}
    100% {right: -250px}
}

@keyframes para-right-2 {
    0% {right: -500px}
    100% {right: -100px}
}

@keyframes para-left {
    0% {left: -1000px}
    100% {left: -150px}
}

@keyframes para-left-02 {
    0% {left: -1000px}
    100% {left: -100px}
}

@keyframes para-left-03 {
    0% {left: -1000px}
    100% {left: 50px}
}

.showcase.about-us .meaning.active {
    height: 91vh;
    padding: 1rem 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.showcase.about-us .meaning.active li {
    font-size: 2rem;
    letter-spacing: 2px;
    padding: 0;
}

.yawk-01.active, .yawk-04.active, .yawk-07.active, .yawk-10.active {
    background: url(../images/icon-splash-orange.svg) no-repeat center center/contain;
}

.yawk-02.active, .yawk-05.active, .yawk-08.active, .yawk-11.active {
    background: url(../images/icon-splash-teal.svg) no-repeat center center/contain;
}

.yawk-03.active, .yawk-06.active, .yawk-09.active, .yawk-12.active {
    background: url(../images/icon-splash-yellow.svg) no-repeat center center/contain;
}

.yawk-13.active {
    font-size: 7rem;
    letter-spacing: 3px;
    background-size: 96%;
}

.meaning-exit.active {
    font-size: 1.5rem;
    line-height: 1;
    text-shadow: 2px 2px 3px var(--color-text-dark);
}

.meaning-toggle {
    left: 1rem;
}

.meaning-toggle.active {
    bottom: 4%;
}

aside article {
    padding: 0 1rem 2rem;
}

article {
    padding: 5rem 1rem 2rem;
}

.article-h1-container img {
    width: 42px;
}

article h1 {
    font-size: 3rem;
}

article.wide {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

article.wide.col5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

article.wide .article-h1-container {
    grid-column: 1;
}

article.wide h2, article.wide li.span-2, article.wide.col5 h2 {
    grid-column: 1;
}

article.wide.events .items-header h3 {
    font-size: 1.4rem;
}

article.wide.events .items h3 {
    font-size: 1.1rem;
}

article.wide.col5 h2 {
    grid-column: 1 / 3;
}

article.wide.photos li:hover {
    background: none;
}

article.wide li h2 {
    margin-bottom: 1rem;
}

.showcase.social .social-box a {
    transition: none;
}

.showcase.social .social-box a:hover {
    scale: 1;
}

footer.footer .container {
    display: block;
    margin: 1rem auto;
}

footer.footer .container ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

footer.footer .container img {
    width: 162px;
}

footer.footer p {
    font-size: 0.7rem;
}
}

/*---------------------------- MEDIA QUERIES 360px ----------------------------*/
@media(max-width:360px) {
header h2 {
    font-size: 1.24rem;
}

article h1 {
    font-size: 1.62rem;
}

.counter > div h4 {
    font-size: 0.6rem;
}
}

/*---------------------------- MEDIA QUERIES 410px ----------------------------*/
@media(max-width: 410px) {
.article-h1-container img {
    width: 32px;
}

article h1 {
    font-size: 2rem;
}
}

/*------------------------ MEDIA QUERIES 700px Height ------------------------*/
@media(max-height: 700px) {
.nav .menu-logo {
        width: 82px;
        margin: 0.5rem 0;
}

.nav .social {
    gap: 0.5rem;
    margin: 0.5rem auto 0;
}

.nav .social img {
        width: 42px;
}
}

/*------------------------ MEDIA QUERIES 2160px +++ ------------------------*/
@media(min-width:2160px){
.nav {
    right: -500px;
    width: 500px;
}

.nav .menu-logo {
    width: 262px;
    margin: 2rem 0;
}

.nav h2 {
    font-size: 3rem;
}

.nav ul li a {
    font-size: 2.42rem;
}

.nav .social img {
    width: 91px;
}
    
.showcase {
    justify-content: center;
    text-align: center;
}

.text h2 {
    font-size: 10em;
    font-weight: 800;
    line-height: 1em;
}
    
.text h3 {
    font-size: 6em;
    font-weight: 700;
    line-height: 1em;
}

.text p {
    font-size: 2em;
    margin: 20px auto;
    font-weight: 400;
    max-width: 1280px;
}

.text a {
    font-size: 2.42em;
    padding: 16px 42px;
}

@keyframes text {
    0% {left: -2000px}
    100% {left: 0}
}

.counter {
    bottom: 1rem;
    gap: 2rem;
}

.counter > div {
    padding: 2rem;
}

.counter > div i {
    margin-bottom: 0.3rem;
}

.counter > div h4 {
    font-weight: 500;
    font-size: 1.4rem;
}

.hard-count {
    font-size: 3rem;
    font-weight: 600;
}

.meaning-toggle {
    left: 50%;
    transform: translateX(-50%);
    bottom: 21%;
    width: 100px;
    height: 100px;
    background: url(../images/icon-go.svg);
    background-repeat: no-repeat;
    background-size: 100px;
    background-position: center;
}

.meaning-toggle.active {
    background: url(../images/icon-exit.svg);
    background-repeat: no-repeat;
    background-size: 100px;
    background-position: center;
}

.showcase.social .social-box {
    align-items: center;
    justify-content: center;
    margin: auto;
}

.showcase.social .social-box a img {
    width: 162px;
}

article {
    max-width: 1280px;
}

.article-h1-container img {
    width: 142px;
}

article h1 {
    font-size: 7rem;
}

article.wide h2 {
    font-size: 3rem;
}

article.wide h3 {
    font-size: 2rem;
}

article h1.story-header {
    font-size: 4rem;
    text-align: left;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

article h2.story-subheader {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

article h3.story-credits {
    font-size: 1.1rem;
    line-height: 1.4;
    padding-bottom: 0.5rem;
}

article p {
    font-size: 1.42rem;
}

article figcaption {
    font-size: 1.1rem;
}

article.wide.extrawide {
    max-width: 1640px;
}

article.wide.extrawide li {
    font-size: 1.42rem;
}

@keyframes good8 {
    0% {right: -1000px}
    20% {right: 400px}
    25% {transform: scale(1)}
    30% {right: 20px}
    40% {right: 900px}
    45% {transform: scale(1.4)}
    50% {right: 600px}
    70% {transform: scale(1)}
    75% {right: 1042px}
    100% {right: -1000px}
}

@keyframes good7 {
    0% {left: -1000px}
    10% {transform: scale(1)}
    20% {left: 1280px}
    25% {transform: scale(1.5)}
    30% {left: 200px}
    40% {left: 1366px}
    50% {left: 1280px}
    55% {transform: scale(1)}
    75% {left: 800px}
    100% {left: -1000px}
}

@keyframes good9 {
    0% {left: -1000px}
    20% {left: 1440px}
    30% {left: 1080px}
    40% {left: 720px}
    50% {left: 1280px}
    75% {left: 442px}
    100% {left: -1000px}
}
}