/* Minified Reset */
*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,span.h1,span.h2,span.h3,span.h4,p,figure,blockquote,dl,dd{margin:0}ul[role='list'],ol[role='list']{list-style:none}html:focus-within{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}span{display:inline-block}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:0.01ms!important;animation-iteration-count:1!important;transition-duration:0.01ms!important;scroll-behavior:auto!important}}body {font-family:'Prompt',sans-serif}
/* END Minified Reset */
/* Desktop Nav */
#nav {
    height: 80px;
    background: none;
    z-index: 9995;
}
#nav ul,
#nav ul > li {
    display: inline-block;
    list-style-type: none;
    border: none;
    padding: 0;
    margin: 0;
}
#nav ul > li > a {
    position: relative;
    display: inline-block;
    line-height: 80px;
    padding: 0 1rem;
    margin: 0;
    font-size: 14pt;
    font-weight: 700;
    letter-spacing: -1px;
    text-transform: uppercase;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
}
#nav ul > li > a::after {
    content: '\f111';
    position: absolute;
    left: 0;
    right: 0;
    top: 1.25rem;
    bottom: 0;
    text-align: center;
    font-family: 'Font Awesome 5 Free';
    font-size: 5pt;
    font-weight: 900;
    color: #FFF;
    transform: scale(0.4);
    opacity: 0;
    transition: transform 0.1s ease, opacity 0.2s ease;
}
#nav ul > li > a:hover {
    background: rgba(255,255,255,0.15);
}
#nav ul > li > a:hover::after {
    transform: scale(1);
    opacity: 1;
}
#nav a {
    color: #FFF;
    text-decoration: none!important;
}
.dark-header {
    background: #222!important;
}
.brand a {
    display: block;
    height: 80px;
    width: 80px;
    background-image: url(../img/va-logo-white.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70px auto;
}
.hamburger {
    display: block;
    height: 80px;
    width: 80px;
    font-size: 24pt;
    line-height: 80px;
    text-align: center;
}
.offcanvas {
    z-index: 9996;
}
/* END Desktop Nav */
/* Mobile Nav */
.offcanvas-header,
.offcanvas-body {
    background: #222;
}
.offcanvas-header #menuRightLabel {
    color: #FFF;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 16pt;
}
.offcanvas-body ul {
    list-style: none;
}
.offcanvas-body ul li a {
    display: block;
    width: 100%;
    padding: 0.5rem 0.8rem;
    background: #222;
    color: #FFF;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    font-size: 22pt;
}
.offcanvas-body ul li a:hover {
    background: #333;
}
/* END Mobile Nav */
/* Carousel */
.carousel-item img,
.carousel-item video {
    height: 100vh;
    min-height: 500px;
    max-height: 1200px;
    width: 100%;
    object-fit: cover;
    z-index: 2;
}
.carousel-item img {
    animation: slider 25s;
}
.carousel-item::after {
    content: '';
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.05) 20%, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.27) 50%, rgba(0,0,0,0.4) 100%);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index:3;
}
.carousel-container {
    position: absolute;
    left: auto;
    right: auto;
    display: flex;
    align-items: center;
	top: calc(100vh - 90px);
}
.carousel-caption, .carousel-indicators {
    z-index: 100;
}
.carousel-indicators {
    position: relative!important;
    left: unset!important;
    right: unset!important;
    bottom: unset!important;
    margin: 0!important;
	width: 100%;
    justify-content: start;
}
.carousel-indicators [data-bs-target] {
    width: 12.5%;
	min-width: 40px;
	max-width: 15vw;
    margin: 0 7.5px;
    height: 8px;
    background: rgba(255,255,255,0.3);
    position: relative;
    border: none;
}
.carousel-indicators [data-bs-target] span {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #FFF;
    border-radius: inherit;
}
.carousel-indicators [data-bs-target]:first-of-type {
    margin-left: 0;
}
.carousel-indicators [data-bs-target]:last-of-type {
    margin-right: 0;
}
.carousel-item.active .carousel-caption {
    transform: translateX(0px);
    opacity: 1;
    transition: all 0.2s;
}
.carousel-caption {
    margin: 0 auto 120px;
    left: auto!important;
    right: auto!important;
    transform: translateX(40px);
    opacity: 0;
}
.carousel-caption span {
    /* text-shadow: 0px 0px 10px rgba(0,0,0,0.5); */
    margin: 0;
    font-weight: 400;
    display: block;
    line-height: 100%;
}
.carousel-caption span.subtext {
    font-size: 22pt;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.carousel-caption a {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 1.5rem;
    background: #FFF;
    color: #222;
    font-size: 12pt;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
}
#landing .container:first-of-type .row:first-of-type,
.carousel-item>.container>.row>.col-xs-12 {
    position: relative;
}
@keyframes slider {
    from {
        transform: scale(1,1);
    }
    to {
        transform: scale(1.35,1.35);
    }
}
/* END Carousel */
/* Glitch Effect */
.title {
    display: grid;
    grid-template-columns: 1fr;
}

.title span {
    font-family: 'Rubik Glitch', cursive;
    grid-row-start: 1;
    grid-column-start: 1;
    font-size: 4rem;
    --stack-height: calc(100% / var(--stacks) - 1px);
    --inverse-index: calc(calc(var(--stacks) - 1) - var(--index));
    --clip-top: calc(var(--stack-height) * var(--index));
    --clip-bottom: calc(var(--stack-height) * var(--inverse-index));
    clip-path: inset(var(--clip-top) 0 var(--clip-bottom) 0);
    animation: stack 280ms cubic-bezier(.46,.29,0,1.24) 1 backwards calc(var(--index) * 120ms), glitch 2s ease infinite 3s alternate-reverse;
}

.title span:nth-child(odd) { --glitch-translate: 8px; }
.title span:nth-child(even) { --glitch-translate: -8px; }

@keyframes stack {
0% {
    opacity: 0;
    transform: translateX(-50%);
    text-shadow: -2px 3px 0 red, 2px -3px 0 lime;
};
60% {
    opacity: 0.5;
    transform: translateX(50%);
}
80% {
    transform: none;
    opacity: 1;
    text-shadow: 2px -3px 0 red, -2px 3px 0 lime;
}
100% {
    text-shadow: none;
}
}

@keyframes glitch {
0% {
    text-shadow: -2px 3px 0 red, 2px -3px 0 lime;
    transform: translate(var(--glitch-translate));
}
2% {
    text-shadow: 2px -3px 0 red, -2px 3px 0 lime;
}
4%, 100% {  text-shadow: none; transform: none; }
}
/* END Glitch Effect */
/* Sections */
span.h1,
span.h2,
span.h3,
span.h4,
span.h5,
span.h6 {
    font-family: 'Rubik Glitch', cursive;
    font-weight: 400;
}
span.h1 {
    font-size: 34pt;
}
span.h2 {
    font-size: 28pt;
}
span.h3 {
    font-size: 24pt;
}
span.h4 {
    font-size: 20pt;
}
span.h5 {
    font-size: 16pt;
}
span.h6 {
    font-size: 12pt;
}
#socials {
    background: #222;
    color: #FFF;
}
#socials a,
#socials p,
#socials ul,
#socials ol,
#socials li,
#socials span {
    color: #FFF;
}
#socials a {
    transition: color 0.3s ease;
    font-size: 22pt;
}
#socials a:hover {
    color: rgba(255,255,255,0.8);
}
/* END Sections */
/* WooCommerce Products */
li.product {
    display: block;
    padding: 0 0.5rem;
}
.product > .images {
    width: 100%;
}
.product > .summary {
    position: relative;
}
.product > .summary > .price {
    font-size: 16pt;
    position: relative;
}
a.woocommerce-main-image > img {
    height: 350px;
    width: auto;
    padding: 0.5rem;
    border: 1px solid #666;
}
.woocommerce-product-gallery__image {
    display: inline-block;
}
table.variations,
table.variations tr,
table.variations td,
table.variations th {
    display: block;
}
table.variations tr {
    margin: 0.5rem;
}
table.variations a.reset_variations {
    margin-left: 0.5rem;
}
.product > .summary .product_meta,
.woocommerce-tabs ul.tabs {
    display: none;
}
.product > .summary .quantity .qty {
    margin: 0 0.5rem 0.5rem;
}
.product > .summary button.button {
    margin: 0 0.5rem;
}
.product > .summary .quantity .qty,
.product > .summary button.button {
    width: 150px;
}
.product > .summary h1,
.product > .summary > .price,
.woocommerce-tabs h2 {
    margin-top: 2rem;
}
div#tab-description {
    padding: 1rem 0 2rem;
}
@media (min-width: 768px) {
    ul.products li.product {
        display: inline-block;
        width: 45%;
    }
    ul.products img {
        max-width: unset;
    }
}
@media (min-width: 992px) {
    .product > .images {
        width: 50%;
    }
    .product > .summary > h1,
    .product > .summary > .price,
    a.woocommerce-main-image {
        display: inline-block!important;
    }
    .product > .summary > .price {
        font-size: 20pt;
        position: absolute;
        right: 1em;
    }
    ul.products li.product {
        width: 30%;
    }
}
/* END WooCommerce Products */
/* WooCommerce Shop */
.woocommerce-result-count,
ul.products .product a.button {
    display: none;
}
.woocommerce-ordering,
ul.products .product h2 {
    margin: 0.5rem 0;
}
ul.products {
    list-style: none;
    padding: 1rem 0;
}
ul.products img {
    padding: 5px;
    border: 1px solid #666;
    width: 100%;
    max-width: 350px;
    height: auto;
}
ul.products li.product {
    padding: 0 0.2rem 2rem;
}
ul.products .product a {
    color: #000;
    text-decoration: none;
}
ul.products .price {
    font-size: 16pt;
}
.page-numbers li {
    display: inline-block;
    border: 1px solid #000;
    padding: 0.25rem;
}
.page-numbers li span {
    color: #888;
}
.page-numbers li a {
    color: #000;
    text-decoration: none;
}
/* END WooCommerce Shop */
/* WooCommerce Cart */
.cart-collaterals a.checkout-button {
    background: #000!important;
}
.coupon input#coupon_code {
    min-width: 120px;
}
button#place_order {
    background: #000;
}
/* END WooCommerce Cart */
/* Footer */
footer {
    background: #000;
    color: #999;
}
/* END Footer */