@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,300&dispay=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");

/** Import font from local **/
@font-face {
    font-family: 'Lufga';
    src: url('../fonts/lufga-black.otf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

:root {
    --highlight-blue: #40a5be;
    --highlight-red: #c61113;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

header {
    position: relative;
    z-index: 1;
    background-color: #000;
    color: #fff;
}

a {
    color: #111;
    font-weight: 500;
    text-decoration: none;
    transition: opacity .2s;
}

.rounded-4 {
    border-radius: .6rem;
}

h2.bg-heading {
    text-align: center;
    text-transform: uppercase;
    font-size: clamp(85px, 13vw, 400px);
    color: rgba(0,0,0,.15);
    position: relative;
    line-height: 1;
}
@media screen and (min-width: 1200px) {
    h2.bg-heading.vertical {
        writing-mode: vertical-rl;
        font-size: 14vh;
        padding: 0;
        line-height: 0;
    }
}

p.lead {
    font-size: 1.65rem;
    font-weight: 300;
    text-align: center;
}

/** Navbar **/
.navbar-brand {
    padding: 0;
}
.navbar-brand img {
    height: 45px;
}
.navbar-brand img.usa {
    display: none;
}
.navbar-brand:hover img.usa {
    display: block;
}
.navbar-brand:hover img.white {
    display: none;
}
.navbar-dark .navbar-nav .nav-link {
    color: #fff;
    padding: 4px 8px;
    margin-left: 8px;
    margin-right: 8px;
}
.navbar-dark .navbar-nav .nav-link:hover {
    color: #d3d3d3;
}
.main .nav-link {
    position: relative;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: color .4s;
}
.main .nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--highlight-red);
    transform-origin: bottom right;
    transition: transform .15s ease-out;
    transform: scaleX(0);
}
.main .nav-link:hover::after {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: bottom left;
}
.social .nav-link {
    font-size: 20px;
}
/** End Navbar **/

/** Header Hero **/
.header.hero.bkp {
    position: relative;
    height: 100vh;
    margin-top: -61px;
    overflow: hidden;
}
.header.hero {
    position: relative;
    margin-top: 0;
    overflow: hidden;
    padding: 0;
}
.header.hero .video, 
.header.hero .noise, 
.header.hero .video-overlay, 
.header.hero .splash, 
.header.hero .bottle,
.header.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.header.hero .video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header.hero .noise {
    background-image: url('../image/noise-2.gif');
    background-size: cover;
    opacity: .13;
}
.header.hero .video-overlay {
    background-color: rgba(0, 0, 0, 0.2);
}
.header.hero .splash {
    background-image: url('../image/chalk-splat-2.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: clamp(200px, 90%, 800px);
}
.header.hero .bottle {
    background-image: url('../image/product-line.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: clamp(200px, 80%, 525px);
    background-size: 80%;
}
.header.hero .overlay .h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    font-size: clamp(70px, 7vw, 125px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -.025em;
    -webkit-text-stroke: transparent 3px;
}
.header.hero .overlay img {
    width: clamp(200px, 20vw, 450px);
}
.header.hero .scroll-down {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 50px;
}
/** End Header Hero **/

/** Reveal **/ 
.reveal {
    --t: 1.3s;
    color: transparent;
    padding: 4px;
    position: relative;
    overflow: hidden;
    animation: revealBlock 0s var(--t) forwards;
    opacity: .855555;
}
.reveal::after {
    content: '';
    width: 0%;
    height: 100%;
    padding-bottom: 4px;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--highlight-red);
    animation: revealingIn 1.2s .1s forwards, revealingOut 1.2s var(--t) forwards;
}
.reveal.highlight {
    --t: 1.7s;
    animation: revealBlockHighlight 0s var(--t) forwards;
}
.reveal.highlight::after {
    background: #fff;
    animation: revealingIn 1.2s .5s forwards, revealingOut 1.2s var(--t) forwards;
}
@keyframes revealBlock {
    100% {
        color: #fff;
    }
}
@keyframes revealBlockHighlight {
    100% {
        color: var(--highlight-red);
        /*color: transparent;*/
        -webkit-text-stroke: #fff 3px;
    }
}
@keyframes revealingIn {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}
@keyframes revealingOut {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(100%);
    }
}
/** End Reveal **/

/** Product Cards **/
section:not(.video-gallery) {
    padding: 64px 0;
}

.card {
    overflow: hidden;
    border: none;
    border-radius: .6rem;
    box-shadow: 0 0 12px 0 rgba(0,0,0,.25);
    margin-bottom: var(--bs-gutter-x);
}
.card-img-top {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.card-img-top:after {
    content: '';
    display: block;
    padding-bottom: 100%;
}
.card-img-top img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .4s;
}
.card-img-top:hover img {
    transform: scale(1.1);
}

h3.product-name {
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 1.4rem;
    letter-spacing: 0;
}
p.pricing {
    color: #878787;
    margin-top: 5px;
    margin-bottom: 0;
}
a.store-link:hover {
    color: #111;
    opacity: .65;
}
.card-body hr {
   margin: .5rem 0;
   opacity: .75;
}

.pink-splash, .blue-splash, .green-splash, .red-splash {
    background-size: 120%;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../image/pink-backsplash.jpg);
}
.blue-splash {
    background-image: url(../image/blue-backsplash.jpg);
}
.green-splash {
    background-image: url(../image/green-backsplash.jpg);
}
.red-splash {
    background-image: url(../image/red-backsplash.jpg);
}
/** End Product Cards **/

.video-gallery {
    /** height: 100vh; **/
}
.carousel-item {
    /** height: 100vh; **/
}
.video-gallery video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    cursor: url("https://img.icons8.com/ios/100/EBEBEB/circled-play--v1.png"), auto;
}
.video-gallery video.playing {
    cursor: url("https://img.icons8.com/ios/100/EBEBEB/stop-circled--v2.png"), auto;
}
.carousel-control-prev, .carousel-control-next {
    width: 5%;
    opacity: .8;
}

.product-video {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 12px 0 rgba(0,0,0,.25);
}
#about svg {
    display: none;
}


section.slogan {
    font-family: 'Lufga', sans-serif;
    font-style: italic;
    text-transform: uppercase;
    color: #000;
    background-color: var(--highlight-red);
    text-align: center;
    font-weight: 100;
    font-size: 2.8rem;
}
section.slogan span {
    color: #5dc3dd;
}
section.slogan p {
    margin: 0;
}

  .marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    font-family: 'Lufga', sans-serif;
    font-style: italic;
    text-transform: uppercase;
    color: #000;
    background-color: var(--highlight-red);
    font-weight: 100;
    font-size: 8rem;
    padding: 30px 0 !important;
  }
  .marquee-container span {
      color: #5dc3dd;
  }

  .marquee-content {
    display: block;
    animation: marquee 10s linear infinite;
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-1360px); }
  }

footer {
    background-color: #111;
    color: #f5f5f5;
    padding: 64px 0;
}
footer a {
    color: #f5f5f5;
}


.highlight-btn {
    color: white;
    border: none;
    background-color: transparent;
    position: absolute;
    top: 47%;
    left: 52%;
    font-size: 2rem;
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 50%;
    box-shadow: 0 10px 10px rgba(0, 0, 0, .8);
}
.highlight-btn:hover {
    color: white;
}
.highlight-btn.skateboard {
    top: 47%;
    left: 52%;
}
.highlight-btn.basketball {
    top: 73%;
    left: 70%;
}

@keyframes highlightBtnKeyframe {
    0% {
        opacity: 1;
        transform: scale(0.7);
    }

    100% {
        opacity: 0;
        transform: scale(2.0);
    }
}

.highlight-btn::after {
    content: '';
    position: absolute;
    left: 0px;
    top: 7px;
    width: 32px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 100%;
    animation: highlightBtnKeyframe 2s ease-in-out infinite;
}

#videoModal .modal-content {
    background-color: transparent;
    border: none;
    box-shadow: none;
}
#videoModal .modal-body {
    text-align: right;
}
#videoModal video {
    width: 100%;
}


footer .social a.nav-link {
    color: white;
    font-size: 1.2rem;
    margin-left: .7rem;
}

#faq-chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    background-color: #111;
    color: #f5f5f5;
    border: none;
    box-shadow: 0 0 12px 0 rgba(0,0,0,.25);
    font-size: 1.5rem;
    line-height: 60px;
}
#faq-chat-btn i.bi-x-lg {
    display: none;
}
#faq-chat-btn.active i.bi-x-lg {
    display: block;
}
#faq-chat-btn.active i.bi-chat-square-text {
    display: none;
}

#faq-chat {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 400px;
    background-color: #111111;
    border-radius: 25px;
    z-index: 999;
    box-shadow: 0 3px 8px rgba(0,0,0,.5);
    display: none;
    color: #f5f5f5;
    padding-top: 30px;
}
#faq-chat.active {
    display: block;
}

#faq-chat h4 {
    padding: 0 15px 20px 15px;
}

#faq-chat .body {
    padding: 0 15px 30px 15px;
    overflow: auto;
}

#faq-chat .body .accordion {
    border-radius: 5px;
    overflow: hidden;
}

.accordion-body {
    color: #111 !important;
    font-size: .9rem;
    max-height: 300px;
    overflow: auto;
}

.accordion-button:not(.collapsed) {
    background-color: var(--highlight-red);
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none !important;
    border-color: transparent !important;
}

#quotes {
    background-color: #dedede;
    padding-bottom: 130px;
}
#quoteCarousel {
    text-align: center;
}
#quoteCarousel .carousel-indicators {
    bottom: -120px;
}
#quoteCarousel .carousel-indicators [data-bs-target] {
    background-color: #000;
}

.full-img {
    max-width: 75%;
    max-height: 80vh;
}

.card.quote .card-body {
    background-image: url(../image/quotes.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 70px;
    min-height: 250px;
}
.card.quote .card-body p {
    margin-top: 50px;
    font-size: 1.5rem;
    font-weight: 200;
}


#about .accordion-item {
    border: none;
    padding-bottom: 2rem;
}
#about .accordion-button {
    padding: 0;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 1.25rem;    
    background: none;
    color: black;
    box-shadow: none!important;
}
#about .accordion-body {
    font-size: 1.1rem;
    padding-left: 0;
}

.p-thin {
    font-size: 1.5rem;
    font-weight: 200;
}