:root {
    --primary: #F6BF1B;
    --primary-dark: #2C1101;
    --secondary-01: #5B79E2;
    --secondary-02: #6AC1FF;
    --neutral-01: #FFFFFF;
    --neutral-02: #616161;
    --neutral-03: #1F1F1F;
    --background: #FFF0DC;
}

@font-face {
    font-family: 'Clash Display';
    src: url(/fonts/FontsFree-Net-ClashDisplay-Variable.ttf);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-size: 16px;
    font-family: 'Clash Display';
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

p {
    margin: 0 0 1.3em 0;
}

label {
    cursor: pointer;
}

ul {
    list-style: none;
    padding: 0;
}

.h1, .h2, .h3, .h4 {
    font-family: Bangers;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.h1 {
    font-size: 100px;
}

.h2 {
    font-size: 80px;
    letter-spacing: 2px;
}

.h3 {
    font-size: 60px;
}

.h4 {
    font-size: 24px;
}

.flex--center {
    align-items: center;
    justify-content: center;
}

.w-20 {
    width: 20%;
}

.w-50 {
    width: 50%;
}

.text--secondary {
    color: var(--secondary-01);
}

.text--neutral-03 {
    color: var(--neutral-03);
}

.text--stroke {
    -webkit-text-stroke: .8px var(--neutral-03);
}

.text--transparent {
    color: transparent;
}

.shadow--secondary-01 {
    text-shadow: -4px 4px 0px var(--secondary-01);
}

.shadow--neutral-01 {
    text-shadow: -4px 4px 0px var(--neutral-01);
}

.absolute-center {
    top: 50%;
    left: 50%;
    transform: translate( -50%, -50% );
}

.bg--secondary-01 {
    background-color: var(--secondary-01);
}

.bg--primary-dark {
    background-color: var(--primary-dark);
}

.text-primary {
    color: var(--primary) !important;
}

.mt-n5 {
    margin-top: -3rem;
}

/* COMPONENTS */
.btn {
    display: inline-block;
    padding: 12px 40px;
    color: #fff;
    background: var(--neutral-03);
    box-shadow: -6px 6px 0px var(--secondary-01);
    font-family: Bangers;
    font-size: 1.5rem;
    cursor: pointer;
}

header {
    position: sticky;
    top: 0;
    background: var(--neutral-03);
    color: #fff;
    z-index: 9;
}

.header-wrapper {
    height: 78px;
    display: flex;
    align-items: center;
}

#logoHeading {
    margin: 0;
    font-weight: 400;
    font-size: 65.8824px;
    line-height: 70px;
    color: #FFC329;
    -webkit-text-stroke: 1px #000000;
    text-shadow: -3.29412px 3.29412px 0px #FFFFFF;
}

#mainNav {
    margin: auto;
}

.nav > .nav-item > .nav-link {
    display: block;
    font-size: 24px;
    margin: 0 10px;
    padding: 0 5px;
    color: #0000;
    text-shadow: 0 0 #fff, 0 1.2em var(--primary);
    overflow: hidden;
    transition: .3s;
}

.nav > .nav-item > .nav-link:hover {
    text-shadow: 
    0 -1.2em #000, 
    0 0 var(--primary);
}

.social-links > .social-item:not(:first-child) {
    margin-left: 1vw;
}

#menuToggle
{
    display: block;
    position: relative;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
}

#mobileMenu a
{
    display: block;
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
    padding: 10px 0;
    font-size: 22px;
    font-family: Bangers;
}

#menuToggle input
{
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    
    cursor: pointer;
    
    opacity: 0; /* hide this */
    z-index: 2; /* and place it over the hamburger */
    
    -webkit-touch-callout: none;
}

/*
* Just a quick hamburger
*/
#menuToggle span
{
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: #cdcdcd;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    opacity 0.55s ease;
}

#menuToggle span:nth-child(2)
{
    transform-origin: 0% 0%;
}

#menuToggle span:last-child
{
    transform-origin: 0% 100%;
    margin-bottom: 0;
}

/* 
* Transform all the slices of hamburger
* into a crossmark.
*/
#menuToggle.active span:first-child
{
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #fff;
}

/*
* But let's hide the middle one.
*/
#menuToggle.active span:nth-child(2)
{
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

/*
* Ohyeah and the last one should go the other direction
*/
#menuToggle.active span:last-child
{
    transform: rotate(-45deg) translate(0, -1px);
}

/*
* Make this absolute positioned
* at the top left of the screen
*/
#mobileMenu
{
    position: fixed;
    width: 285px;
    padding: 78px 2rem 1rem;
    background: var(--neutral-03);
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */
    
    transform-origin: 0% 0%;
    
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);

    top: 0;
    right: 0;
    transform: translate(100%, 0);
}

#mobileMenu.active
{
    transform: translate(0,0);
}

/* MAIN */
body {
    background: url(/images/background.png), var(--background);
    background-size: cover;
    background-position: top;
}

#heroSection {
    padding: 1vw 0 200px 0;
}

.hero-text {
    -webkit-text-stroke: 1px var(--neutral-03);
    text-shadow: -4px 4px 0px var(--secondary-01);
}

.hero-rotate-badge {
    width: 220px;
    position: absolute;
    right: 0;
}

.hero-rotate-badge .badge__img {
    width: 130px;
}

.hero-rotate-badge .badge__text svg {
    -webkit-animation-name: rotate;
    -moz-animation-name: rotate;
    -ms-animation-name: rotate;
    -o-animation-name: rotate;
    animation-name: rotate;
    -webkit-animation-duration: 5s;
    -moz-animation-duration: 5s;
    -ms-animation-duration: 5s;
    -o-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -ms-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;
}

.hero-rotate-badge .badge__text svg text { 
    font-family: Bangers;
    font-size: 21.756px;
    line-height: 23px;
    letter-spacing: 1px;
}

@-webkit-keyframes rotate {
    from { -webkit-transform: rotate(360deg); }
    to { -webkit-transform: rotate(0); }
}
@-moz-keyframes rotate {
    from { -moz-transform: rotate(360deg); }
    to { -moz-transform: rotate(0); }
}
@-ms-keyframes rotate {
    from { -ms-transform: rotate(360deg); }
    to { -ms-transform: rotate(0); }
}
@-o-keyframes rotate {
    from { -o-transform: rotate(360deg); }
    to { -o-transform: rotate(0); }
}
@keyframes rotate {
    from { transform: rotate(360deg); }
    to { transform: rotate(0); }
}

main {
    overflow: hidden;
    position: relative;
}

.bg-shape {
    z-index: -1;
}

.bg-color {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: var(--primary);
    border-radius: 600px;
}

.marquee {
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
}

.marquee .marquee__content {
    width: 200%;
    position: absolute;
    animation: marquee 20s linear infinite;
    display: flex;
    align-items: center;
    padding: .2rem;
}

.marquee.marquee--reverse .marquee__content {
    animation: marquee-reverse 20s linear infinite;
}

.marquee .marquee__content .marquee__text {
    display: flex;
    align-items: center;
}

.marquee .marquee__content .marquee__text > span {
    flex-grow: 1;
    display: block;
    white-space: nowrap;
}

@keyframes marquee {
    0% { left: 0; }
    100% { left: -100%; }
}
@keyframes marquee-reverse {
    0% { left: -100%; }
    100% { left: 0; }
}

.bite-belts {
    height: 165px;
    position: relative;
}

.bite-belt {
    background-color: var(--primary-dark);
    position: absolute;
    width: 110%;
    left: -5%;
    top: 50%;
    overflow: visible;
}

.bite-belt > p {
    letter-spacing: 1px;
}

.bite-belt .bite-dot {
    display: inline-block;
    width: .5em;
    height: .5em;
    background-color: var(--primary);
    border-radius: 100%;
    vertical-align: middle;
    margin: 0 .5em;
}

.bite-belt .marquee__content {
    background-color: var(--primary-dark);
}

.bite-belt--under {
    z-index: -2;
    rotate: -5deg;
}

.bite-belt--upper {
    z-index: 2;
    rotate: 5deg;
}

.flavor-label > input[type="radio"] {
    visibility: hidden;
    opacity: 0;
    height: 0;
    width: 0;
    display: none;
}

.flavor-item .flavor-item__img {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.flavor-label > input[type="radio"]:checked + .flavor-item .flavor-item__img:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--secondary-01);
    border-radius: 100%;
    z-index: -1;
}

.flavor-label > input[type="radio"]:checked + .flavor-item .flavor-item__img:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 5px;
    left: -5px;
    background-color: var(--primary);
    border-radius: 100%;
    z-index: -2;
}

.flavor-label > input[type="radio"]:checked + .flavor-item .flavor-item__name {
    font-weight: 600;
}

.ingredient-card {
    width: 13vw;
    position: absolute;
}

.ingredient-card .ingredient-card__name {
    margin: 0 0 -7px;
    line-height: 1em;
    font-size: 3vw;
    text-align: center;
}

.ingredient-card .ingredient-card__content {
    overflow: hidden;
    background-color: #fff;
    border: 1px solid var(--primary);
    /* border-radius: 12px; */
    /* padding: 12px 16px; */
    border-radius: 0.8vw;
    padding: 1vw 1.2vw;
}

.ingredient-card .ingredient-card__text {
    font-weight: 500;
    color: var(--primary-dark);
    text-align: center;
}

.ingredient-card[data-name="ham"] {
    top: 0;
    left: 0;
    transform: translate(-50%, 0) rotate(-9.86deg);
}

.ingredient-card[data-name="pate"] {
    bottom: 0;
    left: 0;
    transform: translate(-50%, 0) rotate(16.58deg);
}

.ingredient-card[data-name="pork-floss"] {
    top: 150px;
    right: -30px;
    transform: translate(50%, 0) rotate(11.29deg);
}

.ingredient-card[data-name="cheese"] {
    bottom: -40px;
    right: 70px;
    transform: translate(50%, 0) rotate(-23.05deg);
}

.section-hotdog .main {
    /* top: -100px; */
    /* left: 83px; */
    top: -7vw;
    left: 5vw;
}

.section-hotdog .main > .heading {
    bottom: 30px;
    left: 100px;
}

.section-hotdog .arrow {
    left: -17vw;
    width: 5vw;
}

section#rules .pill {
    display: inline-block;
    line-height: 1em;
    height: 1em;
    vertical-align: middle;
    border-radius: 1em;
    width: 230px;
    position: relative;
}

section#rules .pill > .pill__inner {
    position: absolute;
    display: flex;
    justify-content: center;
    width: 100%;
}

section#rules .pill[data-no="1"] > .pill__inner {
    bottom: -10px;
    left: 50%;
    transform: translate(-50%, 0);
}

section#rules .pill[data-no="2"] > .pill__inner {
    bottom: -10px;
    
}

section#rules .pill[data-no="3"] > .pill__inner {
    bottom: 0;
    /* right: 75px; */
}

/* section#rules .pill[data-no="4"] > .pill__inner {
    bottom: 0;
    left: 20px;
} */

.gallery-filters ul.filters {
    list-style: none;
}

.gallery-filters ul.filters > li > a { 
    margin-left: 1.5rem;
    border-right: 2px solid var(--primary-dark);
    padding: 8px 12px;
    transition: color .2s ease-in-out;
}

.gallery-filters ul.filters > li.active > a,
.gallery-filters ul.filters > li > a:hover {
    color: var(--secondary-01);
}

#contactForm .form-input,
#contactForm .form-textarea {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

#contactForm .form-input {
    padding-top: 20%;
    margin-bottom: 0.5rem;
}

#contactForm .form-textarea {
    padding-top: 62%;
}

#contactForm input, #contactForm textarea {
    font-family: Bangers;
    font-size: 1.5rem;
    border: none;
    display: block;
} 

#contactForm input:focus, 
#contactForm textarea:focus {
    outline: none;
}

#contactForm .form-input > input {
    position: absolute;
    top: 48%;
    left: 15%;
    transform: translate(0, -50%);
    width: 75%;
}

#contactForm .form-textarea > textarea {
    position: absolute;
    top: 50%;
    left: 18%;
    transform: translate(0, -50%);
    width: 75%;
    height: 80%;
}

#contactForm .form-input[data-name="name"] {
    background-image: url(images/input-name.svg);
}

#contactForm .form-input[data-name="email"] {
    background-image: url(images/input-email.svg);
}

#contactForm .form-input[data-name="phone"] {
    background-image: url(images/input-phone.svg);
}

#contactForm .form-textarea[data-name="message"] {
    background-image: url(images/input-message.svg);
}

section#franchise h2.section-heading {
    position: relative;
    top: -3vw;
}

footer {
    padding: 40px 0px;
    background-color: var(--neutral-03);
}

.map-frame {
    background-image: url(images/frame.svg);
    background-size: 100%;
    display: inline-block;
    position: relative;
    width: 100%;
    padding-top: 47%;
}

.map-frame__inner {
    background-color: #fff;
    padding: 2% 4%;
    position: absolute;
    top: 3%;
    left: 2%;
    right: 1%;
    bottom: 3%;
}

.map-frame__inner iframe {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    max-width: 100% !important;
    max-height: 100% !important;
}

.hotdog-label .hotdog-item {
    display: flex;
    margin: 0 1rem;
    border-radius: 108px;
    border: 1px solid #0000;
    padding: 4px;
}

.hotdog-label .hotdog-item__inner {
    background-color: var(--secondary-01);
    border-radius: 108px;
    width: 86px;
    height: 108px;
    transition: background-color .2s ease-in-out;
}

.hotdog-label > input[type="radio"] {
    visibility: hidden;
    opacity: 0;
    height: 0;
    width: 0;
    display: none;
}

.hotdog-label > input[type="radio"]:checked + .hotdog-item {
    border-color: var(--primary-dark);
}

.hotdog-label > input[type="radio"]:checked + .hotdog-item .hotdog-item__inner {
    background-color: var(--primary);
}

.hotdog-options {
    left: 50%;
    transform: translate(-50%, 70%);
}

.hotdog-options input[value="0"] + .hotdog-item .hotdog-item__img > img {
    max-width: 156%;
    transform: translate(-14%, 27%);
}

.hotdog-options input[value="2"] + .hotdog-item .hotdog-item__img > img {
    max-width: 156%;
    transform: translate(-17%, 27%) rotate(37deg);
}

/* #ourVisionIllus {
    position: absolute;
    bottom: 0;
} */

@media screen and (max-width: 1400px) {
    .container {
        max-width: 96vw !important;
    }
}

@media screen and (max-width: 1200px) {
    #logoHeading {
        font-size: 3rem;
    }
}

@media screen and (max-width: 992px) {
    #logoHeading {
        font-size: 3rem;
    }
    /* 
    body {
        font-size: 14px;
    } */
    
    .h1 {
        font-size: 60px;
    }
    
    .h2 {
        font-size: 50px;
    }
    
    .h3 {
        font-size: 40px;
    }
    
    .h4 {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px){
    body {
        font-size: 14px;
    }
    
    .h4 {
        font-size: 16px;
    }
    
    .flavor-item .flavor-item__img {
        width: 5vw;
        height: 5vw;
    }
    
    .flavor-label .flavor-item__name {
        font-size: 7px;
    }
    
    .flavor-arrow img {
        width: 5vw;
    }
    
    /* .ingredient-card {
        width: 46px;
    } */
    
    .ingredient-card .ingredient-card__content {
        /* padding: 4px; */
        /* border-radius: 3px; */
    }
    
    /* .ingredient-card .ingredient-card__name {
        font-size: 10px;
    } */
    
    .ingredient-card__text {
        font-size: 6px;
    }
    
    /* .section-hotdog .main {
        top: -32px;
        left: 25px;
    } */
    
    .ingredient-card[data-name="pork-floss"] {
        top: 12px;
        right: -16px; 
    }
    
    .ingredient-card[data-name="cheese"] {
        bottom: -17px;
        right: 0;
    }
    
    .hotdog-label .hotdog-item__inner {
        height: 43px;
        width: 34px;
        border-radius: 42px;
    }
    
    .hotdog-label .hotdog-item {
        padding: 1.7px;
        margin: 0 .5rem;
    }
    
    /* .hotdog-options input[value="1"] + .hotdog-item .hotdog-item__img > img {
        left: -22%;
        top: 8px;
    } */
    
    /* .hotdog-options input[value="3"] + .hotdog-item .hotdog-item__img > img {
        left: -22%;
        top: 8px;
    } */
    
    #ourVisionIllus {
        position: unset;
    }
    
    section#rules .pill[data-no="1"] > .pill__inner > img,
    section#rules .pill[data-no="3"] > .pill__inner > img{
        height: 65px;
    }
    
    section#rules .pill {
        width: 73px;
    }
    
    section#rules .pill[data-no="1"] > .pill__inner {
        bottom: -.6rem;
        right: 0;
    }
    
    section#rules .pill[data-no="2"] > .pill__inner > img {
        height: 1em;
        width: auto;
    }
    
    section#rules .pill[data-no="2"] > .pill__inner {
        right: 1rem;
    }
    
    section#rules .pill[data-no="3"] > .pill__inner {
        bottom: -.6rem;
        right: 1rem;
    }
    
    section#rules .pill[data-no="4"] > .pill__inner > img {
        height: 1.3em;
        width: auto;
    }
    
    section#rules .pill[data-no="4"] > .pill__inner {
        left: .5rem;
    }
    
    .gallery-filters ul.filters > li > a {
        margin-left: 2vw;
    }
    
    .btn {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
    
    .shadow--secondary-01 {
        text-shadow: -1px 1px 0px var(--secondary-01);
    }
    
    .shadow--neutral-01 {
        text-shadow: -1px 1px 0px var(--neutral-01);
    }
    
    .hero-rotate-badge {
        transform: scale(0.5) translate(50%, -50%);
        right: 1vw;
    }
    
    #logoHeading {
        font-size: 2.5rem;
    }
    
    .header-social-links .social-item img {
        width: 40px;
    }
}

@media screen and (max-width: 567px){
    .h1 {
        font-size: 36px;
    }
    
    .h2 {
        font-size: 28px;
    }
    
    .h3 {
        font-size: 24px;
    }
    
    .section-hotdog .main > .heading {
        font-size: 17px;
        bottom: 0;
        left: 25px;
    }
}


/* UTIL CLASS */
.text-desc {
    color: #3a3a3a;
}