﻿@charset "utf-8";

/* Responsive size calculations:

    Calculate lengths, widths, and font-sizes using BVolt_CssTools.clampBuilder()

    Use the following argument values, unless there are special circumstances,
    such as the special font sizing over a small range on media titles.

    minRemFontSize = (depends on item being sized)
    maxRemFontSize = (depends on item being sized)
    minPxViewportWidth = 320
    maxPxViewportWidth = 1920
    numMaxDecimals = 4
*/


/*
    Fonts
*/

/* Open Sans Light */

/* @font-face {
    font-family: 'Open Sans Light';
    src: url('../assets/font/OpenSans/OpenSans-Light.ttf'), local('OpenSans-Light');
    font-weight: 300;
    font-style: normal;
} */

/* @font-face {
    font-family: 'Open Sans Light';
    src: local('OpenSans-LightItalic'), url('../assets/font/OpenSans/OpenSans-LightItalic.ttf');
    font-weight: 300;
    font-style: italic;
} */

/* Open Sans */

@font-face {
    font-family: 'Open Sans';
    src: local('OpenSans-Regular'), url('../assets/font/OpenSans/OpenSans-Regular.ttf');
    font-weight: 400 500;
    font-style: normal;
}

/* @font-face {
    font-family: 'Open Sans';
    src: local('OpenSans-Italic'), url('../assets/font/OpenSans/OpenSans-Italic.ttf');
    font-weight: 400 500;
    font-style: italic;
} */

@font-face {
    font-family: 'Open Sans';
    src: local('OpenSans-SemiBold'), url('../assets/font/OpenSans/OpenSans-SemiBold.ttf');
    font-weight: 600;
    font-style: normal;
}

/* @font-face {
    font-family: 'Open Sans';
    src: local('OpenSans-SemiBoldItalic'), url('../assets/font/OpenSans/OpenSans-SemiBoldItalic.ttf');
    font-weight: 600;
    font-style: italic;
} */

@font-face {
    font-family: 'Open Sans';
    src: local('OpenSans-Bold'), url('../assets/font/OpenSans/OpenSans-Bold.ttf');
    font-weight: 700;
    font-style: normal;
}

/* @font-face {
    font-family: 'Open Sans';
    src: local('OpenSans-BoldItalic'), url('../assets/font/OpenSans/OpenSans-BoldItalic.ttf');
    font-weight: 700;
    font-style: italic;
} */

@font-face {
    font-family: 'Open Sans';
    src: local('OpenSans-ExtraBold'), url('../assets/font/OpenSans/OpenSans-ExtraBold.ttf');
    font-weight: 800;
    font-style: normal;
}

/* @font-face {
    font-family: 'Open Sans';
    src: local('OpenSans-ExtraBoldItalic'), url('../assets/font/OpenSans/OpenSans-ExtraBoldItalic.ttf');
    font-weight: 800;
    font-style: italic;
} */

/* Novecento Sans Wide */

@font-face {
    font-family: 'Novecento Sans Wide';
    src: local('Novecentosanswide-Light'), url('../assets/font/Novecento/Novecentosanswide-Light-webfont.woff2') format('woff2'), url('../assets/font/Novecento/Novecentosanswide-Light-webfont.woff') format('woff'), url('../assets/font/Novecento/Novecentosanswide-Light.ttf') format('ttf');
    font-weight: 100 300;
}

@font-face {
    font-family: 'Novecento Sans Wide';
    src: local('Novecentosanswide-Book'), url('../assets/font/Novecento/Novecentosanswide-Book-webfont.woff2') format('woff2'), url('../assets/font/Novecento/Novecentosanswide-Book-webfont.woff') format('woff'), url('../assets/font/Novecento/Novecentosanswide-Book.ttf') format('ttf');
    font-weight: 350;
}

@font-face {
    font-family: 'Novecento Sans Wide';
    src: local('Novecentosanswide-Normal'), url('../assets/font/Novecento/Novecentosanswide-Normal-webfont.woff2') format('woff2'), url('../assets/font/Novecento/Novecentosanswide-Normal-webfont.woff') format('woff'), url('../assets/font/Novecento/Novecentosanswide-Normal.ttf') format('ttf');
    font-weight: 400 500;
}

@font-face {
    font-family: 'Novecento Sans Wide';
    src: local('Novecentosanswide-Medium'), url('../assets/font/Novecento/Novecentosanswide-Medium-webfont.woff2') format('woff2'), url('../assets/font/Novecento/Novecentosanswide-Medium-webfont.woff') format('woff'), url('../assets/font/Novecento/Novecentosanswide-Medium.ttf') format('ttf');
    font-weight: 600;
}

@font-face {
    font-family: 'Novecento Sans Wide';
    src: local('Novecentosanswide-DemiBold'), url('../assets/font/Novecento/Novecentosanswide-DemiBold-webfont.woff2') format('woff2'), url('../assets/font/Novecento/Novecentosanswide-DemiBold-webfont.woff') format('woff'), url('../assets/font/Novecento/Novecentosanswide-DemiBold.ttf') format('ttf');
    font-weight: 650;
}

@font-face {
    font-family: 'Novecento Sans Wide';
    src: local('Novecentosanswide-Bold'), url('../assets/font/Novecento/Novecentosanswide-Bold-webfont.woff2') format('woff2'), url('../assets/font/Novecento/Novecentosanswide-Bold-webfont.woff') format('woff'), url('../assets/font/Novecento/Novecentosanswide-Bold.ttf') format('ttf');
    font-weight: 700;
}

/* Utility Classes */

/* Colors */

.bg-dark {
    background-color: hsl(var(--clr-dark));
}

.bg-accent {
    background-color: hsl(var(--clr-light));
}

.bg-white {
    background-color: hsl(var(--clr-white));
}

.text-dark {
    color: hsl(var(--clr-dark));
}

.text-accent {
    color: hsl(var(--clr-light));
}

.text-white {
    color: hsl(var(--clr-white));
}

/* Typography */

.bv-font-semi-bold {
    font-weight: var(--bv-font-weight-semi-bold);
}

.bv-font-bold {
    font-weight: var(--bv-font-weight-bold);
}

.bv-color-dark {
    color: var(--bv-text-color-dark);
}

.bv-color-light {
    color: var(--bv-text-color-light);
}

.bv-text-italic {
    font-style: italic;
}

.bv-text-width-normal {
    max-width: 85ch;
}

.bv-text-width-wide {
    max-width: 160ch;
}

.bv-text-width-panel {
    max-width: 80ch;
}

.bv-list-bullet {
    list-style-type: disc;
}

/*
    All Elements
*/

* {
    /* -webkit-tap-highlight-color: rgba(0, 0, 0, 0); */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/*
    Compatibility
*/

/* HTML5 block elements unknown to older browsers */

article,
aside,
figcaption,
figure,
footer,
header,
main,
nav,
section {
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

/*
    Flex
*/

.bv-flex-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: var(--bv-gap, 0);
}

.bv-flex-center-xy {
    justify-content: center;
    align-items: center;
}

.bv-flex-column {
    display: flex;
    flex-flow: column nowrap;
}

.bv-flex-column-wrap {
    display: flex;
    flex-flow: column wrap;
}

.bv-flex-row {
    display: flex;
    flex-flow: row nowrap;
}

.bv-flex-row-wrap {
    display: flex;
    flex-flow: row wrap;
}

.bv-flex-item {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
}

/*
    HTML Element
*/

:root {
    --bv-width: 100%;
    --bv-height: auto;
    --bv-min-height: 100vh;
    --bv-line-height: var(--bv-line-height-normal, 1.5);
    --bv-font-family: var(--bv-font-family-normal, sans-serif);
    --bv-font-size: var(--bv-root-font-size-rem, initial);
    --bv-font-weight: 400;
    --bv-font-style: normal;
    --bv-font-variant: normal;
    width: var(--bv-width);
    height: var(--bv-height);
    min-height: var(--bv-min-height);
    line-height: var(--bv-line-height);
    font-family: var(--bv-font-family);
    font-size: var(--bv-font-size);
    font-weight: var(--bv-font-weight);
    font-style: var(--bv-font-style);
    font-variant: var(--bv-font-variant);
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--bv-header-height) + 1rem);
    overflow: auto;
}

/*
    Body Element
*/

body {
    --bv-width: 100%;
    --bv-line-height: var(--bv-line-height-normal, 1.5);
    --bv-back-color: var(--bv-body-back-color, hsl(240, 8%, 98%));
    --bv-color: var(--bv-text-color-dark, hsl(240, 8%, 8%));
    --bv-font-family: var(--bv-font-family-normal, sans-serif);
    --bv-font-size: var(--bv-body-font-size, 62.5%);
    --bv-font-weight: 400;
    --bv-font-style: normal;
    --bv-font-variant: normal;
    width: var(--bv-width);
    line-height: var(--bv-line-height, 1.5);
    background-color: var(--bv-body-back-color, hsl(240, 8%, 98%));
    color: var(--bv-color, hsl(240, 8%, 8%));
    font-family: var(--bv-font-family, sans-serif);
    font-size: var(--bv-font-size, 62.5%);
    font-weight: var(--bv-font-weight, normal);
    font-weight: var(--bv-font-weight, 400);
    font-style: var(--bv-font-style, normal);
    font-variant: var(--bv-font-variant, normal);
}

/* General Text */
.bv-underline {
    text-decoration: 2px underline;
}

/* li */
li {
    width: var(--bv-list-item-width, auto);
    height: var(--bv-list-item-height, auto);
    border-radius: var(--bv-list-item-border-radius, 0.5px);
}

/*
    Animation / Transformation
*/

.x4m-3d {
    transform-style: preserve-3d;
}

.x4m-transform-center {
    transform-box: border-box;
    -moz-transform-origin: center center 0;
    -ms-transform-origin: center center 0;
    -o-transform-origin: center center 0;
    -webkit-transform-origin: center center 0;
    transform-origin: center center 0;
}

/*
    Mouse - Pointer
*/

a,
button,
img,
input,
select,
textarea,
tr,
td {
    pointer-events: all;
}

label {
    pointer-events: none;
}

/*
    Text
*/

.bv-no-user-select {
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

::selection {
    background-color: var(--bv-text-selected-back-color, hsl(196, 30%, 10%));
    color: var(--bv-text-selected-color, hsl(196, 100%, 50%));
}

p,
ul,
span {
    --bv-line-height: var(--bv-line-height-normal, 1.5);
    --bv-font-family: var(--bv-font-family-normal, sans-serif);
    --bv-font-size: var(--bv-font-size-normal, 1.3rem);
    --bv-font-weight: 400;
    --bv-font-style: normal;
    /* --bv-font-variant: normal; */
    line-height: var(--bv-line-height);
    font-family: var(--bv-font-family);
    font-size: var(--bv-font-size);
    font-weight: var(--bv-font-weight);
    font-style: var(--bv-font-style);
    /* font-variant: var(--bv-font-variant); */
}

/*
    Images
*/

img {
    /* --bv-img-border-radius: 0; */
    display: block;
    max-width: 100%;
    border-radius: var(--bv-img-border-radius, 0.5px);
}

svg.bv-icon {
    display: block;
}

svg.bv-icon>use {
    --bv-social-media-icon-stroke: var(--bv-text-color-dark, hsl(240, 8%, 8%));
    --bv-facebook-stroke: var(--bv-social-media-icon-stroke);
    --bv-linkedin-stroke: var(--bv-social-media-icon-stroke);
    --bv-youtube-stroke: var(--bv-social-media-icon-stroke);
    --bv-imdb-stroke: var(--bv-social-media-icon-stroke);
    --bv-social-media-icon-stroke-width: 2.3px;
    --bv-facebook-stroke-width: var(--bv-social-media-icon-stroke-width);
    --bv-linkedin-stroke-width: var(--bv-social-media-icon-stroke-width);
    --bv-youtube-stroke-width: var(--bv-social-media-icon-stroke-width);
    --bv-imdb-stroke-width: var(--bv-social-media-icon-stroke-width);
    stroke-linejoin: round;
    width: auto;
    height: auto;
}

svg use.bv-imdb-link-icon {
    --bv-imdb-blue-fill-opacity: 0.8;
    --bv-imdb-white-fill-opacity: 1;
    --bv-imdb-stroke-opacity: 0;
}

/* .bv-icon-link:focus use.bv-imdb-link-icon, */
.bv-icon-link:focus-visible use.bv-imdb-link-icon,
svg:hover use.bv-imdb-link-icon {
    --bv-imdb-blue-fill-opacity: 1;
    --bv-imdb-stroke-opacity: 1;
}

svg use.bv-facebook-link-icon {
    --bv-facebook-blue-fill-opacity: 0.8;
    --bv-facebook-white-fill-opacity: 1;
    --bv-facebook-stroke-opacity: 0;
}

/* .bv-icon-link:focus use.bv-facebook-link-icon, */
.bv-icon-link:focus-visible use.bv-facebook-link-icon,
svg:hover use.bv-facebook-link-icon {
    --bv-facebook-blue-fill-opacity: 1;
    --bv-facebook-stroke-opacity: 1;
}

svg use.bv-linkedin-link-icon {
    --bv-linkedin-blue-fill-opacity: 0.8;
    --bv-linkedin-white-fill-opacity: 1;
    --bv-linkedin-stroke-opacity: 0;
}

/* .bv-icon-link:focus use.bv-linkedin-link-icon, */
.bv-icon-link:focus-visible use.bv-linkedin-link-icon,
svg:hover use.bv-linkedin-link-icon {
    --bv-linkedin-blue-fill-opacity: 1;
    --bv-linkedin-stroke-opacity: 1;
}

svg use.bv-youtube-link-icon {
    --bv-youtube-red-fill-opacity: 0.8;
    --bv-youtube-white-fill-opacity: 1;
    --bv-youtube-stroke-opacity: 0;
}

/* .bv-icon-link:focus use.bv-youtube-link-icon, */
.bv-icon-link:focus-visible use.bv-youtube-link-icon,
svg:hover use.bv-youtube-link-icon {
    --bv-youtube-red-fill-opacity: 1;
    --bv-youtube-stroke-opacity: 1;
}

svg.bv-svg-resource path,
svg.bv-svg-resource circle,
svg.bv-svg-resource rect {
    transition: var(--bv-transition-active-svg, none);
}

path {
    outline: none;
}

/*
    Form
*/

form {
    --bv-form-outline: none;
    --bv-form-border: 0;
    --bv-form-line-height: var(--bv-line-height-normal, 2.25rem);
    --bv-form-back-color: var(--bv-input-back-color, transparent);
    --bv-form-focus-back-color: var(--bv-input-focus-back-color, transparent);
    --bv-form-label-back-color: var(--bv-input-label-back-color, transparent);
    --bv-form-label-focus-back-color: var(--bv-input-label-focus-back-color, transparent);
    --bv-form-color: var(--bv-input-color, hsl(240, 8%, 8%));
    --bv-form-focus-color: var(--bv-input-focus-color, hsl(240, 8%, 8%));
    --bv-form-label-color: var(--bv-input-label-color, hsl(196, 80%, 25%));
    --bv-form-label-focus-color: var(--bv-input-label-focus-color, hsl(196, 100%, 33%));
    --bv-form-font-family: var(--bv-input-font-family, sans-serif);
    --bv-form-label-font-family: var(--bv-input-label-font-family, sans-serif);
    --bv-form-font-size: var(--bv-input-font-size, 1.5rem);
    --bv-form-focus-font-size: var(--bv-input-focus-font-size, 1.5rem);
    --bv-form-label-font-size: calc(var(--bv-form-font-size) * var(--bv-form-label-font-size-ratio));
    --bv-form-label-font-size-ratio: var(--bv-input-label-font-size-ratio, 0.65);
    --bv-form-label-focus-font-size-ratio: var(--bv-input-label-focus-font-size-ratio, 0.65);
    --bv-form-font-weight: var(--bv-input-font-weight, 600);
    --bv-form-focus-font-weight: var(--bv-input-focus-font-weight, 600);
    --bv-form-label-font-weight: var(--bv-input-label-font-weight, 600);
    --bv-form-label-focus-font-weight: var(--bv-input-label-focus-font-weight, 800);
    --bv-form-font-style: var(--bv-input-font-style, normal);
    --bv-form-focus-font-style: var(--bv-input-focus-font-style, normal);
    --bv-form-label-font-style: var(--bv-input-label-font-style, normal);
    --bv-form-label-focus-font-style: var(--bv-input-label-focus-font-style, normal);
    --bv-form-font-variant: var(--bv-input-font-variant, normal);
    --bv-form-focus-font-variant: var(--bv-input-focus-font-variant, normal);
    --bv-form-label-font-variant: var(--bv-input-label-font-variant, normal);
    --bv-form-label-focus-font-variant: var(--bv-input-label-focus-font-variant, normal);
    --bv-form-label-letter-spacing: var(--bv-input-label-letter-spacing, 1px);
}

.bv-form-response-output {
    width: 100%;
    height: 11.25rem;
    min-height: 11.25rem;
    max-height: 11.25rem;
    margin: var(--bv-spacer-double, 1rem);
    padding: var(--bv-spacer-double, 1rem);
    line-height: var(--bv-line-height-normal, 2.25rem);
    background-color: var(--bv-form-response-success-back-color, hsl(240, 8%, 98%));
    color: var(--bv-form-response-success-color, hsl(240, 8%, 8%));
    font-family: var(--bv-font-family-normal, sans-serif);
    font-size: 1.5rem;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    white-space: pre-line;
    overflow: auto;
    pointer-events: all;
}

.bv-form-response-output.bv-fail {
    background-color: var(--bv-form-response-fail-back-color, #ff0000);
    color: var(--bv-form-response-fail-color, hsl(240, 8%, 98%));
}

.bv-form-button-row {
    display: flex;
    flex-flow: row wrap;
    gap: 3rem;
}

.bv-form-fields-grid {
    pointer-events: none;
    /* position: relative; */
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    align-items: flex-end;
    gap: 0 1rem;
    grid-template-rows: var(--bv-line-height-normal, 2.25rem);
    margin: var(--bv-spacer-double) 0;
    /* width: calc(var(--bv-form-label-width) + var(--bv-this-input-width)); */
    /* width: calc(var(--bv-input-unit-width) * var(--bv-this-num-width-units)); */
    /* width: var(--bv-this-input-width); */
    /* height: calc(var(--bv-input-line-height) * var(--bv-input-label-font-size)); */
    /* line-height: var(--bv-line-height-normal); */
    /* line-height: var(--bv-input-line-height); */
    /* border: 0; */
    /* font-family: var(--bv-input-font-family); */
    /* font-size: var(--bv-input-font-size); */
    /* font-size: 1em; */
    /* width: calc(var(--bv-form-label-width) + var(--bv-this-input-width)); */
}

/*
    Button
*/

/* button[type="button"] { */

button {
    /* --bv-box-shadow: inset 2px 2px 3px 1px var(--bv-theme-color-1-halo, hsl(196, 100%, 84%)), inset -2px -2px 3px 1px var(--bv-theme-color-1-shadow, hsl(196, 100%, 18%)); */
    --bv-line-height: var(--bv-line-height-normal, 1.5);
    --bv-back-color: var(--bv-button-back-color, transparent);
    --bv-font-family: var(--bv-button-font-family, sans-serif);
    --bv-font-size: var(--bv-button-font-size, 1.3rem);
    --bv-font-weight: var(--bv-button-font-weight, 600);
    --bv-font-style: var(--bv-button-font-style, normal);
    cursor: pointer;
    position: relative;
    width: var(--bv-button-width, auto);
    height: var(--bv-button-height, auto);
    min-width: var(--bv-button-min-width, 44px);
    min-height: var(--bv-button-min-height, 44px);
    /* filter: var(--bv-page-drop-shadow-small, drop-shadow(1px 2px 3px hsla(240,8%, 38%, .5))); */
    box-shadow: var(--bv-button-box-shadow);
    outline: var(--bv-button-outline, none);
    border: var(--bv-button-border, 0);
    border-radius: var(--bv-button-border-radius, 0.5px);
    margin: 0;
    background-color: var(--bv-back-color);
    color: var(--bv-color);
    font-family: var(--bv-font-family);
    font-size: var(--bv-font-size);
    font-weight: var(--bv-font-weight);
    font-style: var(--bv-font-style);
    /* box-shadow: inset 2px 2px 3px rgba(255, 255, 255, .6), inset -2px -2px 3px rgba(0, 0, 0, .6); */
}

/* button .bv-focus-shape { */
.bv-focus-shape {
    pointer-events: none;
    position: absolute;
    inset: var(--bv-focus-inset);
    box-shadow: none;
    outline: none;
    border: 0;
    border-radius: inherit;
    background: none;
    transition: var(--bv-transition-focus-ring, none);
}

:focus .bv-focus-shape,
button:focus .bv-focus-shape {
    box-shadow: none;
}

/* :focus .bv-focus-shape, */
:focus-visible .bv-focus-shape {
    box-shadow: var(--bv-focus-box-shadow);
}

/* button:focus .bv-focus-shape , */
button:focus-visible .bv-focus-shape {
    box-shadow: var(--bv-focus-box-shadow);
}

button label {
    --bv-margin-part: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    --bv-color-normal: var(--bv-button-label-normal-color, hsl(240, 8%, 98%));
    --bv-color-active: var(--bv-button-label-active-color, hsl(240, 8%, 98%));
    --bv-color: var(--bv-color-normal);
    /* --bv-font-style: normal; */
    /* font-style: var(--bv-font-style); */
    margin: 0 var(--bv-margin-part, .5em);
    color: var(--bv-color, red);
    /* font-family: inherit; */
    font-style: var(--bv-font-style, normal);
    letter-spacing: var(--bv-button-label-letter-spacing, 1px);
    text-decoration: none;
    text-decoration-line: unset;
    text-decoration-style: unset;
    transition: var(--bv-transition-active-text, none), var(--bv-transition-focus-colors, none);
    opacity: var(--bv-button-label-opacity, 1);
}

.button::-moz-focus-inner {
    border: 0;
}

/* button:focus label, */
button:focus-visible label {
    --bv-font-style: var(--bv-button-focus-font-style, italic);
    --bv-font-weight: var(--bv-button-focus-font-weight, 600);
    --bv-color: var(--bv-color-active);
    opacity: var(--bv-button-label-active-opacity, 1);
}

/* button:hover, button:hover label { */
button:hover label {
    --bv-color: var(--bv-color-active);
    opacity: var(--bv-button-label-active-opacity, 1);
}

/* button:active, button:active label { */
button:active label {
    --bv-color: var(--bv-color-active);
    opacity: var(--bv-button-label-active-opacity, 1);
    text-decoration: 2px dotted var(--bv-color) underline;
}

button.bv-alternate-1,
.bv-appearance-button.bv-alternate-1 {
    --bv-back-color: var(--bv-theme-color-1, hsl(196, 100%, 43%));
    /* --bv-button-box-shadow: inset 2px 2px 3px 1px var(--bv-theme-color-1-halo), inset -2px -2px 3px 1px var(--bv-theme-color-1-shadow); */
    --bv-button-box-shadow: none;
}

button.bv-alternate-2,
.bv-appearance-button.bv-alternate-2 {
    --bv-back-color: var(--bv-theme-color-2-black, hsl(240, 8%, 8%));
    /* --bv-back-color: var(--bv-theme-color-black); */
    /* --bv-button-box-shadow: inset 2px 2px 3px 1px var(--bv-theme-color-2), inset -2px -2px 3px 1px var(--bv-theme-color-2-dark); */
    --bv-button-box-shadow: none;
}

button.bv-icon-only {
    background: none;
}

/*
    Fields
*/

.bv-text-input-wrapper.bv-input-text,
.bv-textarea-input-wrapper.bv-textarea {
    /*
        Width of the space given to control labels.
    */
    --bv-form-label-width: 9rem;
    /* Total width of the input element, (label width + value width).

            Will Be Scaled To:  Wrapper element "em space"
    */
    --bv-this-input-width: 24.5em;
}

.bv-textarea-input-wrapper.bv-textarea {
    /*
        Total width of the input element.

        The textarea will be under its label, instead of next to it,
        so it the "value width" gets the label width that is
        not given to textboxes that are next to their labels.

            Will Be Scaled To:  Wrapper element "em space"
    */
    --bv-this-input-width: 33em;
}

.bv-input-text.bv-integer {
    font-variant: tabular-nums;
}

.bv-input-text.bv-time-part {
    /* Settings for Textbox Input for entering Time Part values. */
    /*
        Width of the padding that makes space the the label.
    */
    --bv-form-label-width: 6rem;
    /* Total width of the input element, (label width + value width).

            Will Be Scaled To:  Wrapper element "em space"
    */
    --bv-this-input-width: 20.7em;
}

.bv-control-wrapper.bv-grid-item-left {
    justify-self: start;
}

.bv-control-wrapper.bv-grid-item-right {
    justify-self: end;
}

.bv-control-wrapper.bv-input-text {
    pointer-events: none;
    /* position: relative; */
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    align-items: flex-end;
    gap: 0 1rem;
    grid-template-rows: var(--bv-line-height-normal, 2.25rem);
    width: calc(var(--bv-form-label-width) + var(--bv-this-input-width));
    /* width: calc(var(--bv-input-unit-width) * var(--bv-this-num-width-units)); */
    /* width: var(--bv-this-input-width); */
    /* height: calc(var(--bv-input-line-height) * var(--bv-input-label-font-size)); */
    line-height: var(--bv-line-height-normal);
    /* line-height: var(--bv-input-line-height); */
    border: 0;
    /* font-family: var(--bv-input-font-family); */
    font-size: var(--bv-input-font-size);
    /* font-size: 1em; */
    /* width: calc(var(--bv-form-label-width) + var(--bv-this-input-width)); */
}

/*
    ::after
*/

[data-content-label]::after {
    content: attr(data-content-label);
}

.bv-control-wrapper.bv-input-text::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    /* width: var(--bv-input-label-width); */
    /* height: var(--bv-input-line-height); */
    /* width: calc(var(--bv-this-num-label-width-units) * var(--bv-input-unit-width)); */
    height: auto;
    box-sizing: border-box;
    color: var(--bv-input-label-color);
    line-height: var(--bv-line-height-normal, 2.25rem);
    font-family: var(--bv-input-label-font-family, sans-serif);
    font-size: var(--bv-input-label-font-size);
    font-weight: var(--bv-input-label-font-weight, 600);
    font-style: var(--bv-input-label-font-style, normal);
    font-variant: var(--bv-input-label-font-variant, normal);
    text-transform: uppercase;
    /* width: calc(var(--bv-this-num-label-width-units) * var(--bv-input-unit-width)); */
    /* width: calc(var(--bv-form-label-width); */
    /* ---bv-ratio: calc\(5 / 8; */
    /* width: calc(var(--bv-form-label-width)); */
}

.bv-control-wrapper:focus-within::after {
    color: var(--bv-input-label-focus-color);
    font-style: var(--bv-font-style-focus, italic);
}

.bv-field-wrapper-stacked {
    align-items: self-end;
}

.bv-field-wrapper-side-by-side {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
    width: 100%;
}

/* input.bv-field, textarea.bv-field, select.bv-field {
    font-size: var(--bv-input-font-size);
    font-weight: var(--bv-input-font-weight);
    color: var(--bv-input-color);
    background-color: var(--bv-input-back-color);
    height: var(--bv-input-height);
    line-height: var(--bv-input-line-height);
} */

/* input.bv-field:focus, textarea.bv-field:focus, select.bv-field:focus {
    font-weight: var(--bv-input-focus-font-weight);
} */

.bv-text-input-wrapper {
    --bv-form-border-bottom: 3px solid var(--bv-blur-color, hsl(240, 8%, 64%));
    /* display: flex; */
    /* flex-direction: row; */
    /* flex-wrap: nowrap; */
    justify-content: flex-start;
    align-items: flex-end;
    border: var(--bv-form-border, 0);
    border-bottom: var(--bv-form-border-bottom);
    padding: var(--bv-spacer) 0 0 0;
}

.bv-text-input-wrapper:focus-within {
    --bv-form-border-bottom: 3px solid var(--bv-focus-color);
}

input[type="email"].bv-field,
input[type="text"].bv-field {
    cursor: text;
    display: block;
    width: 100%;
    height: var(--bv-form-line-height, 2.25rem);
    /* height: var(--bv-input-height); */
    outline: var(--bv-form-outline, none);
    border: var(--bv-form-border, 0);
    line-height: var(--bv-form-line-height, 2.25rem);
    background-color: var(--bv-form-back-color, transparent);
    color: var(--bv-form-color, hsl(240, 8%, 8%));
    font-family: var(--bv-form-font-family, sans-serif);
    font-size: var(--bv-form-font-size, 1.5rem);
    font-weight: var(--bv-form-font-weight, 400);
    font-style: var(--bv-form-font-style, normal);
    font-variant: var(--bv-form-font-variant, normal);
    /* padding: 0 0 0 var(--bv-form-label-width); */
    /* padding: 0 0 0 calc(var(--bv-input-label-width) * var(--bv-input-label-font-size-ratio)); */
    /* padding: 0 0 0 calc(var(--bv-this-num-label-width-units) * var(--bv-input-unit-width) * var(--bv-input-label-font-size-ratio)); */
    /* line-height: var(--bv-line-height-normal); */
    /* line-height: var(--bv-input-line-height); */
    /* --bv-back-color: var(--bv-input-back-color, transparent); */
    /* background-color: var(--bv-back-color); */
    /* --bv-color: var(--bv-input-color, hsl(240, 8%, 8%)); */
    /* color: var(--bv-color); */
}

input[type="email"].bv-field:focus-visible,
input[type="text"].bv-field:focus-visible {
    outline: var(--bv-form-outline, none);
    border: var(--bv-form-border, 0);
    --bv-form-back-color: var(--bv-form-focus-back-color, transparent);
    --bv-form-color: var(--bv-form-focus-color, hsl(240, 8%, 8%));
    --bv-form-font-size: var(--bv-form-focus-font-size, 1.5rem);
    --bv-form-font-weight: var(--bv-form-focus-font-weight, 600);
    --bv-form-font-style: var(--bv-form-focus-font-style, italic);
    --bv-form-font-variant: var(--bv-form-focus-font-variant, normal);
    /* line-height: var(--bv-input-line-height); */
    /* --bv-form-font-family: var(--bv-form-focus-font-family, sans-serif); */
    /* font-size: var(--bv-input-font-size, 2rem); */
    /* border-bottom: 3px solid var(--bv-focus-color); */
}

input[type="email"].bv-field.narrow,
input[type="text"].bv-field.narrow {
    width: 14rem;
}

/* input[type="email"].bv-field:invalid,
input[type="text"].bv-field:invalid { --bv-form-color:  red; } */

label.bv-field {
    /* --bv-font-family: var(--bv-input-label-font-family, sans-serif); */
    /* --bv-font-size: var(--bv-input-label-font-size); */
    /* --bv-input-label-font-size: calc(var(--bv-font-size) * var(--bv-form-label-font-size-ratio)); */
    /* --bv-input-label-font-size-ratio: .65; */
    /* --bv-font-weight: var(--bv-input-label-font-weight, 700); */
    /* --bv-font-style: var(--bv-input-label-font-style, normal); */
    /* --bv-font-variant: var(--bv-input-label-font-variant, normal); */
    --bv-form-label-font-size: calc(var(--bv-form-font-size, 1.5rem) * var(--bv-form-label-font-size-ratio, 0.65));
    outline: var(--bv-form-outline, none);
    border: var(--bv-form-border, 0);
    line-height: var(--bv-form-line-height, 2.25rem);
    pointer-events: all;
    cursor: pointer;
    display: block;
    flex-basis: var(--bv-form-label-width, 100%);
    flex-grow: 0;
    flex-shrink: 0;
    /* height: var(--bv-input-height); */
    /* line-height: var(--bv-line-height-normal); */
    /* line-height: var(--bv-input-line-height); */
    /* line-height: var(--bv-input-label-line-height, 1.4em); */
    /* padding: 0 .4rem 0 0; */
    background-color: var(--bv-form-label-back-color, transparent);
    color: var(--bv-form-label-color, hsl(240, 8%, 16%));
    font-family: var(--bv-form-label-font-family, sans-serif);
    font-size: var(--bv-form-label-font-size, 9.75rem);
    font-weight: var(--bv-form-label-font-weight, 400);
    font-style: var(--bv-form-label-font-style, italic);
    font-variant: var(--bv-form-label-font-variant, normal);
    letter-spacing: var(--bv-form-label-letter-spacing, 1px);
    text-transform: uppercase;
}

.bv-text-input-wrapper:focus-within label.bv-field,
.bv-textarea-input-wrapper:focus-within label.bv-field {
    outline: var(--bv-form-outline, none);
    border: var(--bv-form-border, 0);
    --bv-form-label-back-color: var(--bv-form-label-focus-back-color, transparent);
    /* --bv-form-label-back-color: var(--bv-input-label-focus-back-color, hsl(196, 100%, 33%)); */
    --bv-form-label-color: var(--bv-form-label-focus-color, hsl(240, 8%, 16%));
    /* --bv-form-label-color: var(--bv-input-label-focus-color, hsl(196, 100%, 33%)); */
    --bv-form-label-font-style: var(--bv-form-label-focus-font-style, italic);
    --bv-form-label-font-weight: var(--bv-form-label-focus-font-weight, 600);
    --bv-form-label-font-variant: var(--bv-form-label-focus-font-variant, normal);
    /* --bv-label-font-size: calcvar(--bv-input-font-size); */
    --bv-form-label-font-size-ratio: var(--bv-form-label-focus-font-size-ratio, 0.85);
    /* --bv-input-label-font-size: calc(var(--bv-input-font-size) * var(--bv-input-label-font-size-ratio)); */
}

label.bv-field.bv-label-above-control {
    flex-basis: var(--bv-form-line-height, 2.25rem);
    flex-grow: 0;
    flex-shrink: 0;
    width: 100%;
    /* --bv-form-label-font-size: calc(var(--bv-font-size) * var(--bv-form-label-font-size-ratio)); */
    /* font-size: var(--bv-form-label-font-size); */
}

.bv-textarea-input-wrapper {
    /* display: flex; */
    /* flex-direction: column; */
    /* flex-wrap: nowrap; */
    justify-content: flex-start;
    align-items: flex-start;
    border: var(--bv-form-border, 0);
    margin: var(--bv-spacer-double) 0;
    /* padding: var(--bv-spacer-double) 0; */
}

textarea.bv-field {
    display: block;
    cursor: text;
    width: 100%;
    height: 20rem;
    resize: none;
    box-shadow: var(--bv-textarea-box-shadow);
    outline: var(--bv-form-outline, none);
    border: var(--bv-form-border, 0);
    border-radius: 0 0 var(--bv-input-border-radius, 0.5px) var(--bv-input-border-radius, 0.5px);
    padding: var(--bv-spacer-double);
    line-height: var(--bv-form-line-height, 2.25rem);
    background-color: var(--bv-form-back-color, transparent);
    color: var(--bv-form-color, hsl(240, 8%, 8%));
    font-family: var(--bv-form-font-family, sans-serif);
    font-size: var(--bv-form-font-size, 1.5rem);
    font-weight: var(--bv-form-font-weight, 400);
    font-style: var(--bv-form-font-style, normal);
    font-variant: var(--bv-form-font-variant-normal, normal);
}

textarea.bv-field:focus-visible {
    --bv-textarea-box-shadow: var(--bv-textarea-focus-box-shadow, 0 0 0 3px hsl(196, 100%, 33%));
    --bv-form-back-color: var(--bv-form-focus-back-color, transparent);
    --bv-form-color: var(--bv-form-focus-color, hsl(240, 8%, 8%));
    --bv-form-font-size: var(--bv-form-focus-font-size, 1.5rem);
    --bv-form-font-weight: var(--bv-form-focus-font-weight, 400);
    --bv-form-font-style: var(--bv-form-focus-font-style, normal);
    --bv-form-font-variant: var(--bv-form-focus-font-variant, normal);
    outline: var(--bv-form-outline, none);
    border: var(--bv-form-border, 0);
}

textarea.dragover {
    background-image: url('../assets/design/drop_target.svg');
    background-repeat: no-repeat;
    background-position: center center;
    object-fit: contain;
}

select,
select.cg-select-control {
    position: relative;
    width: 100%;
    padding: .5rem 2.5rem .5rem .5rem;
    font-family: var(--bv-input-font-family, sans-serif);
    font-size: var(--bv-input-font-size, 2rem);
    font-weight: var(--bv-input-font-weight, 600);
    font-style: var(--bv-input-font-style, normal);
    font-variant: var(--bv-input-font-variant, normal);
    color: var(--bv-input-color);
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    border-radius: var(--bv-input-border-radius, 0.5px);
    cursor: pointer;
    text-align: center;
    box-shadow: var(--bv-blur-box-shadow);
    transition: var(--bv-transition-active-text, none), var(--bv-transition-focus-colors, none), var(--bv-transition-focus-ring, none);
    z-index: 1;
}

.bv-control-wrapper.select {
    position: relative;
    width: 50%;
    min-width: var(--bv-info-column-min-width);
    margin: var(--bv-spacer-double) auto;
    overflow: visible;
    line-height: var(--bv-line-height-normal, 2.25rem);
    font-family: var(--bv-input-font-family, sans-serif);
    font-size: var(--bv-input-font-size, 2rem);
    font-weight: var(--bv-input-font-weight, 600);
    font-style: var(--bv-input-font-style, normal);
    font-variant: var(--bv-input-font-variant, normal);
    color: var(--bv-input-color);
    background-color: var(--bv-input-back-color);
    border-radius: var(--bv-input-border-radius, 0.5px);
}

.bv-control-wrapper.select::after {
    content: '\25BC';
    pointer-events: none;
    cursor: pointer;
    position: absolute;
    right: 0;
    width: auto;
    top: 0;
    bottom: 0;
    border-radius: 50%;
    padding: 1em;
    background-color: var(--bv-theme-color-1-dark, #007ba8);
    color: white;
    font-size: 1rem;
    transition: var(--bv-transition-active-text, none), var(--bv-transition-focus-colors, none);
    z-index: 10;
    overflow: visible;
}

/* .bv-control-wrapper.select:hover::after {
    color: var(--cg-color-active);
    transform: scale(2);
} */

select:focus {
    box-shadow: none;
}

/* select:focus, */
select:focus-visible {
    /* font: var(--bv-font-input); */
    color: var(--bv-input-focus-color);
    background-color: var(--bv-input-focus-back-color);
    outline: none;
}

option {
    font: var(--bv-field-font);
}

/* These rules must be in this order for visited links to respond to the active state */

a {
    /* --bv-box-shadow: none; */
    --bv-color: var(--bv-link-color);
    --bv-font-style: normal;
    cursor: pointer;
    box-shadow: var(--bv-link-box-shadow, none);
    outline: none;
    border-radius: var(--bv-link-border-radius, 0.5px);
    padding: var(--bv-focus-ring-pad-text);
    color: var(--bv-color);
    font-family: var(--bv-font-family-normal);
    font-style: var(--bv-font-style);
    text-decoration: none;
    text-decoration-line: unset;
    text-decoration-style: dashed;
    transition: var(--bv-transition-active-text, none), var(--bv-transition-focus-colors, none), var(--bv-transition-focus-ring, none);
}

a:focus,
a:focus-visible {
    --bv-link-box-shadow: none;
    outline: none;
}

a:focus-visible {
    --bv-font-style: var(--bv-font-style-focus, italic);
    --bv-color: var(--bv-text-color-dark, hsl(240, 8%, 8%));
}

/* a.bv-banner-logo-link:focus-visible, */
a.bv-nav-logo:focus-visible,
a.bv-nav-link:focus-visible,
a.bv-nav-menu-link:focus-visible,
a.bv-media-title-link:focus-visible,
a.bv-media-info-link:focus-visible,
a.bv-icon-link:focus-visible,
a.bv-phone-link:focus-visible,
a.bv-email-link:focus-visible {
    --bv-link-box-shadow: var(--bv-focus-box-shadow);
}

/* a:not(.bv-nav-circle-link):focus-visible {
    --bv-link-box-shadow: var(--bv-focus-box-shadow);
} */

a:any-link {
    --bv-color: var(--bv-link-link-color);
}

/* a:link { --bv-color: var(--bv-link-link-color); } */

/* a:link[href^="http" i]:not([href*="hanspeterson.com"]):not([href*="127.0.0.1"]) { */
a:any-link[href^="http" i]:not([href*="hanspeterson.com"]):not([href*="127.0.0.1"]) {
    text-decoration: 1px solid underline var(--bv-link-link-color);
}

/*a:link[href^="http" i]:not([href*="hanspeterson.com"]):not([href*="127.0.0.1"])::after {
    content: '';
    background-image: var(--bv-icon-url-external-link);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    position: absolute;
    width: 1em;
    height: 1em;
}*/

/* a:visited { color: var(--bv-link-visited-color); } */

a:hover {
    --bv-color: var(--bv-link-hover-color);
}

a:active {
    --bv-color: var(--bv-link-active-color);
    text-decoration: 2px dotted underline var(--bv-link-active-color);
}

/* End of super-strict rule order for links */

p a {
    --bv-color: inherit;
    /* --bv-color: var(--bv-theme-color-2-text-on-white, hsl(240, 8%, 8%)); */
}

/*
    Visibility
*/

.bv-hidden,
[hidden] {
    visibility: hidden;
}

.bv-invisible {
    display: none;
}

.bv-info.vis-element.bv-invisible {
    display: none;
}

.visually-hidden:not(:focus):not(:active) {
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(100%);
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

/*
    Section
*/

/* section {
    --bv-section-width: calc(2.4rem + 83vw);
    --bv-section-min-width: 19rem;
    --bv-section-max-width: 66rem;
    --bv-section-margin-top: 4rem;
    --bv-section-margin-bottom: 0;
} */

section {
    width: var(--bv-section-width, 100%);
    min-width: var(--bv-section-min-width);
    max-width: var(--bv-section-max-width);
    border: 0;
    margin-top: var(--bv-section-margin-top);
    margin-bottom: var(--bv-section-margin-bottom);
    font-size: 1em;
}

main>section:first-of-type {
    --bv-section-margin-top: 4rem;
    --bv-section-margin-bottom: 0;
    padding-top: 3px;
}

main>section:last-of-type {
    --bv-section-margin-bottom: 4rem;
}

section p:not(:first-of-type) {
    margin-top: var(--bv-spacer-double);
}

section p:first-of-type {
    margin-top: var(--bv-spacer);
}

.bv-main-logo-wrapper {
    display: flex;
    flex-flow: row nowrap;
    max-width: 439px;
}

.bv-main-logo {
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
    aspect-ratio: 9.7555;
    width: 100%;
    height: 100%;
}

/*
    Headings
*/

.bv-main-title-wrapper {
    margin: 2rem auto 3rem auto;
    font-size: 1em;
}

h1.bv-main-title {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    /* filter: var(--bv-page-drop-shadow); */
}


h1 .bv-main-title-text {
    --bv-line-height: 1;
    --bv-font-family: var(--bv-font-family-headline, sans-serif);
    --bv-font-size: 3rem;
    --bv-font-weight: 300;
    --bv-font-style: normal;
    display: inline-block;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: 0;
    line-height: var(--bv-line-height);
    background: var(--bv-back-color);
    color: var(--bv-color);
    font-family: var(--bv-font-family);
    font-size: var(--bv-font-size);
    font-weight: var(--bv-font-weight);
    font-style: var(--bv-font-style);
    /* <style> <variant> <weight> <stretch> <size>/<line-height> <family> */
    /* font: normal normal 400 normal 3rem/1 var(--bv-font-family-headline, sans-serif); */
    white-space: pre;
}

h1 .bv-main-title-text.bv-alternate-1 {
    color: var(--bv-theme-color-1-text-on-black, hsl(196, 100%, 50%));
    /* border-radius: .65em 0 0 .65em; */
    /* padding: .1em .25em .2em .5em; */
    /* padding: .175em .25em; */
    padding: 0.125rem 0.625rem .5rem 0.5rem;
    background: var(--bv-theme-color-2-black, hsl(240, 8%, 8%));
}

h1 .bv-main-title-text.bv-alternate-2 {
    color: var(--bv-theme-color-2-black, hsl(240, 8%, 8%));
    /* box-shadow: inset 0 0 1px 3px #000000; */
    /* border-radius: 0 .65em .65em 0; */
    /* padding: .1em .5em .2em 0; */
    padding: 0.125rem 0 .5rem 0;
    /* background: var(--bv-theme-color-1, hsl(196, 100%, 43%)); */
}

h2.bv-section-heading {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    margin: 4.5rem 0 1.5rem 0;
    margin-top: 0;
    /* filter: var(--bv-page-drop-shadow); */
}

.bv-section-heading,
.bv-section-heading-text {
    --bv-line-height: var(--bv-line-height-normal, 1.5);
    --bv-back-color: transparent;
    --bv-color: var(--bv-theme-color-1, hsl(196, 100%, 43%));
    --bv-font-family: var(--bv-font-family-headline, sans-serif);
    --bv-font-size: clamp(2rem, 1.7333333333333334rem + 1.0666666666666667vw, 3rem);
    --bv-font-weight: 600;
    --bv-font-style: normal;
    line-height: var(--bv-line-height);
    background: var(--bv-back-color);
    color: var(--bv-color);
    /* <style> <variant> <weight> <stretch> <size>/<line-height> <family> */
    /* font: normal normal 600 normal 3rem/3.25rem var(--bv-font-family-headline, sans-serif); */
    font-family: var(--bv-font-family);
    font-size: var(--bv-font-size);
    font-weight: var(--bv-font-weight);
    font-style: var(--bv-font-style);
    white-space: pre;
}

.bv-section-heading-text.bv-alternate-1,
.bv-alternate-1 .bv-section-heading,
.bv-alternate-2 .bv-sub-section-heading {
    --bv-back-color: transparent;
    --bv-color: var(--bv-theme-color-1);
}

.bv-section-heading-text.bv-alternate-2,
.bv-alternate-2 .bv-section-heading,
.bv-alternate-1 .bv-sub-section-heading {
    --bv-back-color: transparent;
    --bv-color: var(--bv-theme-color-2-black, hsl(240, 8%, 8%));
}

div.bv-section-heading-wrapper {
    margin: 0;
}

div.bv-section-heading-row-wrapper {
    display: flex;
    flex-flow: row wrap;
    align-items: first baseline;
    gap: 0 4.5rem;
    margin: 0;
}

div.bv-section-heading-row-wrapper .bv-section-heading {
    margin-top: 0;
}

h3 {
    /* --bv-font-family: var(--bv-font-family-headline, cursive); */
    /* --bv-font-size: 1.3rem; */
    /* --bv-font-weight: 600; */
    /* --bv-font-style: normal; */
    background: transparent;
    color: currentColor;
    /* <style> <variant> <weight> <stretch> <size>/<line-height> <family> */
    font: normal normal 600 normal 1.8rem/var(--bv-line-height-normal, 1.5) var(--bv-font-family-headline, sans-serif);
    /* font-family: var(--bv-font-family);
    font-size: var(--bv-font-size);
    font-weight: var(--bv-font-weight);
    font-style: var(--bv-font-style); */
}

/* h3.bv-step-by-step-heading {
    font-size: 1.5rem;
    font-weight: 300;
} */

h3.bv-sub-heading {
    font-size: var(--bv-font-size-h3, 5rem);
    /* letter-spacing: var(--bv-sub-heading-letter-spacing, 0); */
    /* filter: var(--bv-page-drop-shadow-small); */
}

div.bv-sub-section-heading-wrapper {
    margin: 2.25rem 0 0 0;
}

h3.bv-sub-section-heading {
    font-size: var(--bv-font-size-h3, 5rem);
    /* letter-spacing: var(--bv-sub-heading-letter-spacing, 0); */
    /* filter: var(--bv-page-drop-shadow-small); */
}

/* .bv-panel h3.bv-sub-heading {
    filter: var(--bv-page-drop-shadow-small);
} */

h4.bv-power-words {
    --bv-line-height: var(--bv-line-height-normal, 1.5);
    /* --bv-back-color: transparent; */
    /* --bv-color: var(--bv-theme-color-1, hsl(196, 100%, 43%)); */
    --bv-font-family: var(--bv-font-family-normal, sans-serif);
    --bv-font-size: var(--bv-font-size-normal, 1.3rem);
    --bv-font-weight: 600;
    --bv-font-style: italic;
    /* --bv-font-variant: normal; */

    /* <style> <variant> <weight> <stretch> <size>/<line-height> <family> */
    /* font: italic normal 700 normal 1.5rem/1.5 var(--bv-font-family-normal, sans-serif); */

    line-height: var(--bv-line-height);
    font-family: var(--bv-font-family);
    font-size: var(--bv-font-size);
    font-weight: var(--bv-font-weight);
    font-style: var(--bv-font-style);
    /* font-variant: var(--bv-font-variant); */
}

.bv-alternate-1 h4.bv-power-words,
h4.bv-power-words.bv-alternate-1 {
    color: var(--bv-theme-color-2-black, hsl(240, 8%, 8%));
}

.bv-alternate-2 h4.bv-power-words,
h4.bv-power-words.bv-alternate-2 {
    color: var(--bv-theme-color-1);
}

h5 {
    font-size: 1.5rem;
}

h6 {
    font-size: 1.5rem;
}

/*
    Layout
*/

.bv-centered {
    margin-left: auto;
    margin-right: auto;
}

/*
    // Shape Value Checker

    gcs=getComputedStyle(element ?? $0);

    objTable = {

        ['width / height']:
            `${gcs.width}, ${gcs.height}`

        , ['--bv-element-width, --bv-element-height']:
            `${gcs.getPropertyValue('--bv-element-width')}`
            + `, ${gcs.getPropertyValue('--bv-element-height')}`

        , ['--bv-longer-axis']:
            `${gcs.getPropertyValue('--bv-longer-axis')}`

        , ['--bv-element-border-radius']:
            `${gcs.getPropertyValue('--bv-element-border-radius')}`

        , ['border-radius']:
            `${gcs.borderTopLeftRadius} `
            + `${gcs.borderTopRightRadius} `
            + `${gcs.borderBottomLeftRadius} `
            + `${gcs.borderBottomRightRadius}`

    };

    console.table(objTable)
*/


/* .capsule-element-concept-example {
	--bv-element-width: 200px;
	--bv-element-height: 2em;
    --bv-longer-axis: calc(max(var(--bv-element-width), var(--bv-element-height)));
	--bv-element-border-radius: calc(var(--bv-longer-axis, 0) / 2);
    width: var(--bv-element-width, auto);
	height: var(--bv-element-height, auto);
    border-radius: var(--bv-element-border-radius, 0);
} */


/* :any-link.bv-link-shape-capsule,
.bv-link-shape-capsule :any-link {

} */

button.bv-button-shape-capsule,
.bv-button-shape-capsule button {
    --bv-longer-axis: calc(max(var(--bv-button-width), var(--bv-button-height)));
    --bv-button-border-radius: calc(var(--bv-longer-axis, 0) / 2);
}

button.bv-button-shape-circle,
.bv-button-shape-circle button,
.bv-appearance-button.bv-button-shape-circle,
.bv-button-shape-circle bv-appearance-button {
    /* If aspect-ratio is not supported:

    --bv-longer-axis: calc(max(var(--bv-button-width), var(--bv-button-height)));
    width: var(--bv-longer-axis);
    height: var(--bv-longer-axis); */

    /* width: var(--bv-button-width); */
    /* height: auto; */
    /* aspect-ratio: 1; */
    --bv-button-border-radius: var(--bv-circle-border-radius, 50%);
}

button.bv-button-shape-rect,
.bv-button-shape-rect button,
.bv-appearance-button.bv-button-shape-rect,
.bv-button-shape-rect .bv-appearance-button {
    --bv-button-border-radius: var(--bv-rect-border-radius, 0.5px);
}

button.bv-button-shape-round-corners,
.bv-button-shape-round-corners button,
bv-appearance-button.bv-button-shape-round-corners,
.bv-button-shape-round-corners bv-appearance-button {
    --bv-button-border-radius: var(--bv-round-corners-border-radius, 1rem);
}

img.bv-image-shape-circle,
.bv-image-shape-circle img {
    --bv-img-border-radius: 50%;
    /* height: auto; */
    /* aspect-ratio: 1; */
}

img.bv-image-shape-rect,
.bv-image-shape-rect img {
    --bv-img-border-radius: var(--bv-rect-border-radius, 0.5px);
}

img.bv-image-shape-round-corners,
.bv-image-shape-round-corners img {
    --bv-img-border-radius: var(--bv-round-corners-border-radius, 1rem);
}

input.bv-input-shape-round-corners,
.bv-input-shape-round-corners input {
    --bv-input-border-radius: var(--bv-round-corners-border-radius, 1rem);
}

.bv-list-item-shape-circle li,
li.bv-list-item-shape-circle {
    --bv-list-item-border-radius: 50%;
    --bv-longer-axis: calc(max(var(--bv-list-item-width), var(--bv-list-item-height)));
    /* --bv-list-item-border-radius: calc(var(--bv-longer-axis, 0) / 2); */
    --bv-list-item-width: var(--bv-longer-axis);
    --bv-list-item-height: var(--bv-longer-axis);
    /* height: auto; */
    aspect-ratio: 1;
}

li.bv-list-item-shape-rect,
.bv-list-item-shape-rect li {
    --bv-list-item-border-radius: var(--bv-rect-border-radius, 0.5px);
}

li.bv-list-item-shape-round-corners,
.bv-list-item-shape-round-corners li {
    --bv-list-item-border-radius: var(--bv-round-corners-border-radius, 1rem);
}

.bv-media-wrapper.bv-media-shape-rect,
.bv-media-shape-rect .bv-media-wrapper,
.bv-media-player.bv-media-shape-rect,
.bv-media-shape-rect .bv-media-player {
    --bv-media-border-radius: var(--bv-rect-border-radius, 0.5px);
}

.bv-media-wrapper.bv-media-shape-round-corners,
.bv-media-shape-round-corners .bv-media-wrapper,
.bv-media-player.bv-media-shape-round-corners,
.bv-media-shape-round-corners .bv-media-player {
    --bv-media-border-radius: var(--bv-round-corners-border-radius, 1rem);
}

.bv-panel.bv-panel-shape-rect,
.bv-panel-shape-rect .bv-panel {
    --bv-panel-border-radius: var(--bv-rect-border-radius, 0.5px);
}

.bv-panel.bv-panel-shape-round-corners,
.bv-panel-shape-round-corners .bv-panel {
    --bv-panel-border-radius: var(--bv-round-corners-border-radius, 1rem);
}

.bv-page-wrapper {
    position: relative;
    display: block;
    max-width: 100%;
    border: 0;
    margin: 0;
    padding: 0;
}

header {
    background: var(--bv-header-back-color, black);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    min-width: 100%;
    height: var(--bv-header-height);
    min-height: var(--bv-header-height);
    /* color: var(--bv-header-color); */
    font-size: 1em;
    z-index: 909;
    transition: var(--bv-transition-header-hidden, none);
}

header.bv-hide-header {
    top: calc(var(--bv-header-height) * -1);
}

/* .bv-header-grid {
    position: fixed;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    align-items: center;
    left: 0;
    top: 0;
    width: 100%;
    min-width: 100%;
    height: var(--bv-header-height);
    min-height: var(--bv-header-height);
    border: 0;
    margin: 0;
    padding: .625rem 0 .625rem calc(var(--bv-section-width, 100%) * 0.07375);
    line-height: 2.25rem;
    background: var(--bv-header-back-color);
    color: var(--bv-header-color);
    font-size: 1em;
    z-index: 909;
    opacity: 1;
    transition: var(--bv-transition-header-hidden, none);
} */

/* .bv-header-grid.bv-hide-header {
    top: calc(var(--bv-header-height) * -1);
} */

main {
    height: auto;
}

footer {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    line-height: var(--bv-line-height-normal, 1.5);
    border: 0;
    margin: 0;
    padding: var(--bv-spacer-double);
    background-color: var(--bv-footer-back-color);
    color: var(--bv-footer-color);
    font-family: var(--bv-font-family-normal, sans-serif);
    font-size: var(--bv-font-size-normal, 1.3rem);
    font-style: normal;
    font-weight: 350;
    font-variant: normal;
}

.bv-footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    /* display: block;
    max-width: 100%;
    border: 0;
    margin: var(--bv-spacer-double);
    padding: 0; */
}

.bv-copyright {
    width: max-content;
    margin: var(--bv-spacer-double, 1rem) auto;
    font-weight: 600;
}

.bv-site-by {
    width: max-content;
    margin: var(--bv-spacer-double, 1rem) auto;
    font-weight: 600;
}

/* .bv-banner-logo-container {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    width: 100%;
    height: 100%;
} */

/* a.bv-banner-logo-link {
    padding: var(--bv-focus-ring-pad);
    flex-basis: 293px;
    flex-grow: 1;
    flex-shrink: 0;
} */

/*
    Navigation Menu: The nav menu in the page header.
*/

/* NEW NAV */

nav.bv-header-nav {
    --bv-font-family: var(--bv-font-family-normal);
    --bv-font-size: var(--bv-font-size-normal, 1.3rem);
    --bv-font-weight: 600;
    --bv-font-style: normal;
    --bv-color-normal: var(--bv-text-color-light, hsl(240, 8%, 98%));
    --bv-color-active: var(--bv-text-color-light, hsl(240, 8%, 98%));
    --bv-color: var(--bv-color-normal);
    --bv-nav-text-normal-opacity: .8;
    --bv-nav-text-active-opacity: 1;
    --bv-text-opacity: var(--bv-nav-text-normal-opacity);
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--bv-spacer, 0);
    min-height: var(--bv-header-height);
    color: var(--bv-color);
    font-family: var(--bv-font-family, sans-serif);
    font-size: var(--bv-font-size, 1em);
    font-style: var(--bv-font-style);
    font-weight: var(--bv-font-weight);
}

/* .bv-header-nav {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--bv-spacer, 0);
    min-height: var(--bv-header-height);
} */

.bv-nav-menu {
    /* --bv-font-size: clamp(1rem, 0.4771rem + 0.6857vw, 1.3rem); */
    --bv-font-size: var(--bv-font-size-nav, 1rem);
    --bv-font-weight: var(--bv-font-weight-nav, 350);
    display: flex;
    /* justify-content: space-between; */
    /* align-items: center; */
    gap: 0 .8rem;
}

a.bv-nav-logo {
    flex-basis: 293px;
    flex-grow: 0;
    flex-shrink: 0;
    padding: 0;
}

.bv-nav-link {
    transition: opacity 700ms ease;
}

.bv-hamburger {
    display: none;
    cursor: pointer;
}

.bv-hamburger .bv-bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    background: white;
}

ul.bv-nav-menu {
    /* --bv-font-size: var(--bv-font-size-normal, 1.3rem); */
    /* display: flex; */
    /* flex-flow: row nowrap; */
    /* flex-grow: 0; */
    /* flex-shrink: 1; */
    /* flex-basis: 70%; */
    /* justify-content: flex-end; */
    /* min-width: max-content; */
}


li.bv-nav-item {
    display: flex;
    flex-flow: row nowrap;
    flex-shrink: 0;
    flex-grow: 1;
    align-items: flex-end;
    padding: 0 .25em;
    text-align: center;
    text-decoration: none;
}

a.bv-nav-link {
    --bv-color: var(--bv-color-normal, hsl(240, 8%, 98%));
    display: block;
    width: 100%;
    min-width: max-content;
    color: var(--bv-color);
    /* font-size: var(--bv-font-size); */
    /* font-weight: var(--bv-font-weight); */
    /* font-style: var(--bv-font-style, normal); */
    text-transform: uppercase;
    opacity: var(--bv-text-opacity, .8);
}

a.bv-nav-link:any-link,
a.bv-nav-link:visited {
    --bv-color: var(--bv-color-normal);
}

a.bv-nav-link:hover {
    --bv-color: var(--bv-color-active);
    --bv-text-opacity: var(--bv-nav-text-active-opacity, 1);
}

a.bv-nav-link:focus-visible {
    --bv-color: var(--bv-color-active);
    --bv-font-style: var(--bv-font-style-focus, italic);
    --bv-text-opacity: var(--bv-nav-text-active-opacity, 1);
}

/* OLD NAV */

/* nav.bv-nav-menu-container {
    --bv-font-family: var(--bv-font-family-normal);
    --bv-font-size: 1em;
    --bv-font-weight: 600;
    --bv-font-style: normal;
    --bv-color-normal: var(--bv-text-color-light, hsl(240, 8%, 98%));
    --bv-color-active: var(--bv-text-color-light, hsl(240, 8%, 98%));
    --bv-color: var(--bv-color-normal);
    --bv-nav-text-normal-opacity: .8;
    --bv-nav-text-active-opacity: 1;
    --bv-text-opacity: var(--bv-nav-text-normal-opacity);
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    max-width: 100%;
    height: 100%;
    padding: 0 2rem 0 0;
    color: var(--bv-color);
    font-family: var(--bv-font-family, sans-serif);
    font-size: var(--bv-font-size, 1em);
    font-style: var(--bv-font-style);
    font-weight: var(--bv-font-weight);
} */

/* ul.bv-nav-menu {
    --bv-font-size: var(--bv-font-size-normal, 1.3rem);
    display: flex;
    flex-flow: row nowrap;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: 70%;
    justify-content: flex-end;
    min-width: max-content;
} */

/* li.bv-nav-menu-item {
    display: flex;
    flex-flow: row nowrap;
    flex-shrink: 0;
    flex-grow: 1;
    align-items: flex-end;
    padding: 0 .25em;
    text-align: center;
    text-decoration: none;
} */

/* a.bv-nav-menu-link {
    --bv-color: var(--bv-color-normal, hsl(240, 8%, 98%));
    display: block;
    width: 100%;
    min-width: max-content;
    color: var(--bv-color);
    text-transform: uppercase;
    opacity: var(--bv-text-opacity, .8);
} */

/* a.bv-nav-menu-link:any-link, a.bv-nav-menu-link:visited {
    --bv-color: var(--bv-color-normal);
} */

/* a.bv-nav-menu-link:hover {
    --bv-color: var(--bv-color-active);
    --bv-text-opacity: var(--bv-nav-text-active-opacity, 1);
} */

/* a.bv-nav-menu-link:focus-visible {
    --bv-color: var(--bv-color-active);
    --bv-font-style: var(--bv-font-style-focus, italic);
    --bv-text-opacity: var(--bv-nav-text-active-opacity, 1);
} */

/*.bv-nav-menu-link.selected {
         text-decoration: underline;
         font-size: larger;
    }*/

/*
    Navigation Circles: The large circular nav links in the main section
*/

nav.bv-nav-circles-container {
    /*
        DO NOT SET HEIGHT HERE: CAN CAUSE OVERFLOW
        INTO THE NEXT SECTION WHEN CIRCLE ROW WRAPS
    */
    --bv-line-height: var(--bv-line-height-normal, 1.5);
    /* --bv-nav-circle-diameter: 12rem; */
    --bv-nav-circle-diameter: 10rem;
    --bv-font-family: var(--bv-font-family-headline);
    --bv-font-size: 1em;
    display: block;
    max-width: 100%;
    line-height: var(--bv-line-height, 1.5);
    font-family: var(--bv-font-family);
    font-size: var(--bv-font-size);
}

ul.bv-nav-circles-grid {
    /*
        DO NOT SET HEIGHT HERE: CAN CAUSE OVERFLOW
        INTO THE NEXT SECTION WHEN CIRCLE ROW WRAPS
    */
    --bv-color-normal: var(--bv-text-color-light, hsl(240, 8%, 98%));
    --bv-color-active: var(--bv-text-color-light, hsl(240, 8%, 98%));
    --bv-color: var(--bv-color-normal);
    --bv-font-family: var(--bv-font-family, sans-serif);
    --bv-font-size: var(--bv-font-size-nav-circle, 1.3rem);
    --bv-font-weight: 350;
    /* --bv-font-weight: 400; */
    --bv-font-style: normal;
    --bv-nav-text-normal-opacity: 1;
    --bv-nav-text-active-opacity: 1;
    --bv-text-opacity: var(--bv-nav-text-normal-opacity);
    position: relative;
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(auto-fit, var(--bv-nav-circle-diameter));
    grid-auto-rows: var(--bv-nav-circle-diameter);
    gap: 1rem;
    /* gap: 0 2.5rem; */
    justify-content: center;
    width: 100%;
    line-height: var(--bv-line-height, 1.5);
    color: var(--bv-color);
    font-family: var(--bv-font-family);
    font-size: var(--bv-font-size);
    font-style: var(--bv-font-style);
    font-weight: var(--bv-font-weight);
}

li.bv-nav-circle {
    --bv-list-item-width: var(--bv-nav-circle-diameter);
    --bv-list-item-height: var(--bv-nav-circle-diameter);
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    border-radius: var(--bv-list-item-border-radius, 0.5px);
    line-height: var(--bv-line-height, 1.5);
    font-family: var(--bv-font-family);
    font-size: var(--bv-font-size);
    font-style: var(--bv-font-style, normal);
    font-weight: var(--bv-font-weight, 350);
    /* filter: var(--bv-page-drop-shadow); */
}

.bv-nav-circle.bv-alternate-1 {
    background: var(--bv-theme-color-1);
    /* background-color: var(--bv-theme-color-1); */
    /* box-shadow: inset 2px 2px 8px 1px var(--bv-theme-color-1-halo), inset -2px -2px 8px 1px var(--bv-theme-color-1-shadow); */
}

.bv-nav-circle.bv-alternate-2 {
    background: var(--bv-theme-color-2-black, hsl(240, 8%, 8%));
    /* background-color: var(--bv-theme-color-2-black, hsl(240, 8%, 8%)); */
    /* background-color: var(--bv-theme-color-black); */
    /* box-shadow: inset 3px 3px 8px 2px var(--bv-theme-color-2), inset -3px -3px 8px 2px var(--bv-theme-color-2-dark); */
}

li .bv-nav-circle-spinner {
    position: relative;
    width: inherit;
    /* width: var(--bv-nav-circle-diameter); */
    height: inherit;
    /* height: var(--bv-nav-circle-diameter); */
    background: none;
    text-decoration: none;
    border-radius: inherit;
    transition: var(--bv-transition-nav-spin, none);
}

.bv-nav-circle:hover .bv-nav-circle-spinner {
    transform: rotateZ(1turn);
}

a.bv-nav-circle-link {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* width: var(--bv-nav-circle-diameter); */
    height: 100%;
    /* height: var(--bv-nav-circle-diameter); */
    border-radius: inherit;
    padding: 0;
    line-height: var(--bv-line-height, 1.5);
    font-family: var(--bv-font-family);
    font-size: var(--bv-font-size);
    font-style: var(--bv-font-style);
    font-weight: var(--bv-font-weight);
}

/* li.bv-nav-circle :focus-visible .bv-nav-circle-label, li.bv-nav-circle :focus-visible~.bv-nav-circle-arrow {
    --bv-color: var(--bv-color-active, hsl(240, 8%, 98%));
    --bv-font-style: var(--bv-font-style-focus, normal);
    --bv-text-opacity: var(--bv-nav-text-active-opacity, 1);
} */

.bv-nav-circle.bv-alternate-1 a:focus,
.bv-nav-circle.bv-alternate-1 :focus a,
.bv-nav-circle.bv-alternate-1 a:focus-visible,
.bv-nav-circle.bv-alternate-1 :focus-visible a {
    box-shadow: none;
}

.bv-nav-circle.bv-alternate-2 a:focus,
.bv-nav-circle.bv-alternate-2 :focus a,
.bv-nav-circle.bv-alternate-2 a:focus-visible,
.bv-nav-circle.bv-alternate-2 :focus-visible a {
    box-shadow: none;
}

a .bv-nav-circle-label {
    /* padding: .1em .3em .3em .3em; */
    flex-basis: 100%;
    line-height: var(--bv-line-height, 1.5);
    color: hsl(240, 8%, 98%);
    /* color: var(--bv-color); */
    font-family: var(--bv-font-family);
    font-size: var(--bv-font-size);
    font-style: var(--bv-font-style);
    font-weight: var(--bv-font-weight);
    text-align: center;
    opacity: var(--bv-text-opacity, 1);
    transition: var(--bv-transition-active-text, none), var(--bv-transition-focus-colors, none);
}

/* Moving Arrows:  Topmost Rule is the new Version in progress

.bv-nav-circle .bv-nav-circle-arrow {
    pointer-events: none;
    position: absolute;
    width: inherit;
    left: 0;
    top: 8.5rem;
    color: var(--bv-color);
    font-style: var(--bv-font-style);
    text-align: center;
    opacity: var(--bv-text-opacity);
    transition: var(--bv-transition-active-text), var(--bv-transition-focus-colors);
}
*/

.bv-nav-circle .bv-nav-circle-arrow {
    pointer-events: none;
    position: absolute;
    width: var(--bv-nav-circle-diameter, 100%);
    /* left: 0; */
    /* top: 8.5rem; */
    bottom: 0.5rem;
    color: var(--bv-color);
    /* font-size: 1rem; */
    font-style: var(--bv-font-style);
    text-align: center;
    opacity: var(--bv-text-opacity);
    transition: var(--bv-transition-active-text), var(--bv-transition-focus-colors);
}

/*                                                      */

a.bv-nav-circle-link:link,
a.bv-nav-circle-link:visited {
    --bv-color: var(--bv-color-normal, red);
}

.bv-nav-circles-grid :hover {
    --bv-color: var(--bv-color-active, red);
    --bv-text-opacity: var(--bv-nav-text-active-opacity, 1);
}

/* .bv-nav-circle :hover .bv-nav-circle-label,
.bv-nav-circle:hover .bv-nav-circle-label,
.bv-nav-circle :hover .bv-nav-circle-arrow,
.bv-nav-circle:hover .bv-nav-circle-arrow {
    --bv-color: var(--bv-color-active, red);
} */

/* .bv-nav-circle :active {
    --bv-color: var(--bv-color-active, red);
} */

.bv-nav-circles-grid :active {
    --bv-color: var(--bv-color-active, red);
    --bv-text-opacity: var(--bv-nav-text-active-opacity, 1);
}

/* .bv-nav-circle :focus-visible .bv-nav-circle-arrow,
.bv-nav-circle :focus-visible ~ .bv-nav-circle-arrow {
    --bv-color: var(--bv-color-active, red);
} */



.bv-data {
    color: var(--bv-text-color-dark, hsl(240, 8%, 8%));
}

.bv-data.label {
    padding: 0 var(--bv-spacer) var(--bv-spacer-half) 0;
    font: var(--bv-font-data-label);
    /* font-size: var(--bv-field-label-font-size); */
    /* font-weight: var(--bv-field-label-font-weight); */
}

/* a.bv-info:not([href*="coronagram" i]):not([href*="127.0.0.1"]):not([href*=".pdf"])::before {
    background-image: url('../assets/icon/iconExternalLink.svg');
    content: '';
} */

/* a.bv-info[href*=".pdf" i]::before {
    background-image: url('../assets/icon/iconPDF.svg');
    content: '';
} */

/* a.bv-info[href*=".pdf" i]::after {
    content: '(Download PDF)';
    display: block;
    text-align: center;
    font: var(--bv-font-parenthetical, sans-serif);
} */

/* a.bv-info[href*=".pdf" i][hreflang|="es"]::after {
    content: '(Descargar PDF en español)';
} */


/*
    Voiceover Quote Page
*/

/* Paste Script */

.bv-voiceover-quote.bv-tab-panel.bv-script-zone {
    display: grid;
    grid-template-areas: "prompt prompt prompt""text text text""next space skip";
    grid-template-columns: 24em minmax(1em, 1fr) 24em;
    grid-template-rows: minmax(2em, max-content) 560px minmax(4em, max-content);
    gap: 0 2.5rem;
    width: max-content;
    min-width: 30.625rem;
    max-width: 40rem;
    margin: 2rem 0 0 0;
    font-size: 1em;
}

/* Running Time */

.bv-voiceover-quote.bv-tab-panel.bv-running-time {
    display: grid;
    grid-template-areas: "prompt prompt prompt""minutes middle seconds""next space skip";
    grid-template-columns: 24em minmax(1em, 1fr) 24em;
    grid-template-rows: minmax(2em, max-content) minmax(2em, max-content) minmax(4em, max-content);
    gap: 0 2.5rem;
    width: max-content;
    min-width: 30.625rem;
    max-width: 40rem;
    margin: 2rem 0 0 0;
    font-size: 1em;
}

/* Word / Character Count */

.bv-voiceover-quote.bv-tab-panel.bv-word-count {
    display: grid;
    grid-template-areas: "prompt prompt prompt""words middle chars""next space skip";
    grid-template-columns: 24em minmax(1em, 1fr) 24em;
    grid-template-rows: minmax(2em, max-content) minmax(2em, max-content) minmax(4em, max-content);
    gap: 0 2.5rem;
    width: max-content;
    min-width: 30.625rem;
    max-width: 40rem;
    margin: 2rem 0 0 0;
    font-size: 1em;
}

/* Home Page Styles */

/*
    Audio and Video
*/

.bv-audio-video-content-container {
    display: flex;
    flex-flow: row wrap;
    row-gap: 3rem;
    /* row-gap: 4.5rem; */
    column-gap: 3rem;
    column-gap: clamp(1.5rem, 0.6rem + 2vw, 3rem);
    justify-content: space-between;
    align-items: flex-start;
    /* width: max-content; */
    min-width: min-content;
    max-width: 100%;
    margin: var(--bv-spacer);
}

.bv-audio-video-flex-item {
    /* flex-basis: 23rem; */
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
    /* width: 100%; */
    max-width: 23rem;
    min-width: 300px;
}

/*
    Media Player
*/

.bv-media-wrapper {
    box-shadow: 0 0 0 4px hsl(240deg 8% 18% / 60%);
    border-radius: var(--bv-media-border-radius, 0.5px);
    padding: 1px;
    background: var(--bv-media-outline-color);
    /* transition: var(--bv-transition-focus-scale, none); */
    /* filter: var(--bv-page-drop-shadow); */
}

audio .bv-media-player-fallback,
video .bv-media-player-fallback {
    font-family: var(--bv-font-family-normal, sans-serif);
    background: transparent;
    color: var(--bv-text-color-dark, hsl(240, 8%, 8%));
}

.bv-media-wrapper.bv-audio {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    box-shadow: 0 0 0 3px hsl(240, 8%, 18%, .6);
    margin: 4.2rem 0 0 0;
}

.bv-media-wrapper.bv-audio:first-of-type {
    margin: 0;
}

.bv-media-wrapper:focus-within {
    box-shadow: 0 0 0 4px var(--bv-focus-color);
    /* transform: scale(1.1); */
}

/* .bv-media-wrapper.bv-focus-within {
    box-shadow: 0 0 0 4px var(--bv-focus-color);
} */

.bv-media-wrapper.bv-audio:focus-within {
    outline: none;
    box-shadow: 0 0 0 3px var(--bv-focus-color);
}

/* .bv-media-wrapper.bv-audio.bv-focus-within {
    outline: none;
    box-shadow: 0 0 0 3px var(--bv-focus-color);
} */

.bv-media-wrapper video {
    display: block;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 1px 2px var(--bv-media-outline-color);
    border-radius: var(--bv-media-border-radius, 0.5px);
    padding: 1px;
}

.bv-media-wrapper audio {
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
    height: 2.875rem;
    min-height: 2.875rem;
    max-height: 2.875rem;
    box-shadow: 0 0 0 1px var(--bv-media-outline-color);
    border-radius: var(--bv-media-border-radius, 0.5px);
    padding: .1875rem;
}

/* .bv-media-wrapper.bv-focus-within .bv-focus-within-target {
    box-shadow: 0 0 0 2px var(--bv-theme-color-1-light);
} */

/* .bv-media-wrapper.bv-audio.bv-focus-within .bv-focus-within-target {
    box-shadow: inset 0 0 1px 2px var(--bv-theme-color-1-light);
} */

audio.bv-media-player:focus,
audio.bv-media-player:focus-visible,
video.bv-media-player:focus-visible,
video.bv-media-player:focus {
    outline: none;
}

/* audio.bv-focus-within-target:focus, video.bv-focus-within-target:focus {
    outline: none;
} */

/*
    Media Player Captions
*/

.bv-media-caption-wrapper {
    --bv-media-caption-line-height: 1.75;
    /* --bv-media-caption-line-height: 1.75; */
    --bv-media-caption-font-family: var(--bv-font-family-normal, sans-serif);
    --bv-media-caption-font-size: clamp(1rem, 0rem + 1vw, 1.2rem);
    /* --bv-media-caption-font-size: var(--font-min-max); */
    /* --font-min-max: clamp(6rem, 4.8rem + 6vw, 12rem); */
    /* --font-min-max: clamp(16px, calc(16px + calc(19.2 - 16) * calc(calc(100vw - 1600px) / calc(1920 - 1600))), 19.2px); */
    --bv-media-caption-font-style: normal;
    --bv-media-caption-font-weight: 600;
    --bv-media-caption-label-color: var(--bv-theme-color-2-text-on-white, hsl(240, 8%, 8%));
    /* --bv-media-caption-label-color: var(--bv-theme-color-black); */
    --bv-media-caption-value-color: var(--bv-data-value-color, hsl(196, 80%, 25%));
    /* --bv-media-caption-value-color: var(--bv-theme-color-1-text-on-white); */
    display: flex;
    flex-flow: column nowrap;
    line-height: var(--bv-media-caption-line-height, 1.75);
    font-family: var(--bv-media-caption-font-family, sans-serif);
    font-size: var(--bv-media-caption-font-size, 1rem);
    font-style: var(--bv-media-caption-font-style, normal);
}

.bv-media-caption-wrapper.bv-audio {
    flex-direction: row;
}

.bv-media-info-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    /* grid-template-rows: var(--bv-media-caption-line-height, 1.75em); */
    gap: 0;
    /* gap: var(--bv-spacer) 0; */
    width: 100%;
    line-height: var(--bv-media-caption-line-height, 1.75);
    font-family: var(--bv-media-caption-font-family);
    font-size: var(--bv-media-caption-font-size);
    font-weight: var(--bv-media-caption-font-weight);
}

.bv-audio .bv-media-info-grid {
    margin: .7rem 0 0 0;
    grid-template-columns: auto 1fr auto;
    text-align: right;
}

.bv-media-title-wrapper {
    /* width: 100%; */
    margin: .7rem 0 0 0;
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 0;
}

a.bv-media-title-link {
    display: inline-block;
    font-family: var(--bv-media-caption-font-family);
    font-size: var(--bv-media-caption-font-size);
    font-weight: var(--bv-media-caption-font-weight);
}

.bv-media-title-label {
    display: block;
    color: var(--bv-media-caption-value-color);
}

.bv-media-title-link:focus-visible .bv-media-title-label {
    --bv-media-caption-font-style: var(--bv-font-style-focus);
}

a.bv-media-info-link {
    font-family: var(--bv-media-caption-font-family);
}

.bv-media-info-link:focus-visible {
    --bv-media-caption-font-style: var(--bv-font-style-focus);
}

.bv-media-info-label {
    padding: var(--bv-focus-ring-pad-text);
    color: var(--bv-media-caption-label-color);
}

.bv-media-info-value-wrapper a .bv-media-info-value {
    padding: 0;
}

.bv-media-info-value {
    padding: var(--bv-focus-ring-pad-text);
    color: var(--bv-media-caption-value-color);
    font-size: var(--bv-media-caption-font-size);
    font-weight: var(--bv-media-caption-font-weight);
}

/*
    About
*/

.bv-about-content-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem 4rem;
    width: max-content;
    /* width: 100%; */
    max-width: 100%;
}

.bv-sub-section-about-vocal-impact {
    flex-grow: 1;
    flex-shrink: 1.5;
    flex-basis: 0;
    /* min-width: 30rem; */
    /* max-width: 39.2rem */
}

.bv-sub-section-about-hans {
    flex-grow: 1.5;
    flex-shrink: 1;
    flex-basis: 0;
    /* min-width: 37rem; */
    /* max-width: 48.5rem; */
}

.bv-sub-section-about-hans p,
.bv-sub-section-about-vocal-impact p {
    max-width: 44rem;
}

.bv-sub-section-about-hans .bv-headshot {
    float: right;
}

.bv-headshot {
    shape-outside: circle(50%);
    box-shadow: 0 0 1px 2px var(--bv-text-color-dark, hsl(240, 8%, 8%));
    margin: 1rem 0 0 1rem;
    width: 90%;
    height: auto;
    max-width: 90%;
    aspect-ratio: 1;
}

/*
    Social Media Icon List
*/

ul.bv-social-media-icon-list {
    --bv-list-margin: 1.25rem 0 0 0;
    --bv-list-gap: 1rem;
    --bv-icon-width: auto;
    --bv-icon-height: 4rem;
    --bv-icon-link-padding: var(--bv-focus-ring-pad, .5rem);
    display: flex;
    flex-flow: row wrap;
    line-height: 5.25rem;
    margin: var(--bv-list-margin, 0);
    gap: var(--bv-list-gap, 0);
}

ul.bv-social-media-icon-list .bv-icon.bv-social-media {
    width: var(--bv-icon-width);
    height: var(--bv-icon-height);
}

.bv-icon-link {
    display: block;
    padding: var(--bv-icon-link-padding);
}

/*
    Testimonials
*/

.bv-testimonial-flex {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    /* gap: 4rem 4rem; */
    gap: 2rem 2rem;
    width: 100%;
    /* height: 100%; */
    font-size: 1em;
}

.bv-testimonial-flex.bv-two {
    --bv-font-family: var(--bv-font-family-normal, cursive);
    --bv-font-size: 1.5rem;
    --bv-font-weight: 400;
    --bv-font-style: normal;
    /* --bv-font-variant: normal; */
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
    min-width: 100%;
    font-family: var(--bv-font-family);
    font-size: var(--bv-font-size);
    font-style: var(--bv-font-style);
    font-weight: var(--bv-font-weight);
    /* font-variant: var(--bv-font-variant); */
}

.bv-panel {
    --bv-color: var(--bv-panel-color, red);
    --bv-font-family: var(--bv-font-family-normal, cursive);
    --bv-font-size: var(--bv-font-size-normal, 1.3rem);
    --bv-font-style: normal;
    --bv-font-weight: 400;
    /* --bv-font-variant: normal; */
    --bv-panel-box-color: var(--bv-blur-color);
    box-shadow: 0 0 0 3px var(--bv-panel-box-color);
    border-radius: var(--bv-panel-border-radius, 0.5px);
    background: var(--bv-panel-back-color, red);
    color: var(--bv-color, yellow);
}

.bv-panel:focus-within {
    --bv-panel-box-color: var(--bv-focus-color);
}

.bv-panel.bv-testimonial-flex-item {
    /* --bv-back-color: var(--bv-panel-back-color, hsl(0, 88%, 64%)); */
    /* --bv-color: var(--bv-panel-color, hsl(0, 88%, 64%)); */
    /* --bv-font-family: var(--bv-font-family-normal, cursive); */
    /* --bv-font-size: 1.5rem; */
    --bv-font-style: italic;
    /* --bv-font-weight: 400; */
    /* --bv-font-variant: normal; */
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 30ch;
    min-width: 25ch;
    max-width: 45ch;
    height: auto;
    padding: 0 1rem 0.5rem 1rem;
    /* color: var(--bv-color, yellow); */
    font-family: var(--bv-font-family);
    font-size: var(--bv-font-size);
    font-style: var(--bv-font-style);
    font-weight: var(--bv-font-weight);
    /* font-variant: var(--bv-font-variant); */
}

.bv-testimonials-content-container .bv-headshot {
    width: 110px;
    height: auto;
    aspect-ratio: 1;
    float: left;
    shape-outside: ellipse(90% 60% at 5px);
    margin: 1rem 3rem 1rem 0;
}

div.bv-testimonial-heading-wrapper {
    margin: var(--bv-spacer-double, 1rem) 0;
}

h3.bv-testimonial-heading-quote {
    font-style: italic;
    text-align: center;
}

.bv-testimonial-author {
    --bv-font-size: var(--bv-font-size-normal, 1rem);
    --bv-font-weight: 600;
    --bv-font-style: normal;
    margin: 2rem 0 1rem 2rem;
}

div.bv-testimonial-author p.bv-testimonial-author-text {
    /* --bv-font-size: 1.1rem; */
    /* --bv-font-weight: 700; */
    --bv-font-size: var(--bv-font-size-normal, 1rem);
    --bv-font-weight: 600;
    --bv-font-style: normal;
    font-family: var(--bv-font-family);
    font-size: var(--bv-font-size);
    font-weight: var(--bv-font-weight);
    font-style: var(--bv-font-style);
    /* font-variant: var(--bv-font-variant); */
}

/*
    Client List
*/

.bv-clients-content-container {
    /* --bv-client-logo-item-size: calc(4.8rem + 6vw); */
    --bv-client-logo-item-size: calc(4.8rem + 4vw);
    --bv-client-logo-size: calc(2.7rem + 4vw);
    /* --bv-client-logo-item-size: 11.5rem; */
    /* --bv-client-logo-size: 7.5rem; */
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    max-width: 100%;
    font-size: 1em;
    gap: clamp(0.5rem, 0.2rem + 1.5vw, 2rem);
}

/* .bv-client-filter-controls-wrap {
    --bv-min-width: min-content;
    --bv-max-width: min-content;
    display: block;
    flex-basis: min-content;
    flex-grow: 1;
    flex-shrink: 1;
    margin: 0;
    margin-right: clamp(0.5rem, 0.2rem + 1.5vw, 2rem);
} */

.bv-client-filter-controls,
.bv-project-filter-controls {
    --bv-button-box-shadow: none;
    --bv-button-width: 100%;
    --bv-button-min-width: min-content;
    --bv-button-max-width: min-content;
    --bv-button-height: 2em;
    --bv-margin-part: clamp(0.5rem, 0.2rem + 1.5vw, 2rem);
    /* --bv-button-font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem); */
    --bv-button-font-size: clamp(0.75rem, 0.3737rem + 0.7719vw, 1.3rem);
    /* --bv-button-font-size: clamp(0.8rem, 0.4579rem + 0.7018vw, 1.3rem); */
    /* --bv-button-font-size: clamp(0.5rem, 0rem + 1.1228vw, 1.3rem); */
    /* --bv-button-font-size: clamp(1.25rem, 1.1rem + 0.75vw, 2rem); */
    flex-basis: min-content;
    flex-grow: 1;
    flex-shrink: 1;
    margin: 0;
    margin-right: var(--bv-margin-part);
}

.bv-button-client-filter,
.bv-button-project-filter {
    --bv-back-color: var(--bv-theme-color-1);
    margin: 0 0 1.5rem 0;
}

.bv-button-client-filter.current,
.bv-button-project-filter.current {
    --bv-back-color: var(--bv-theme-color-2-black);
}

.bv-client-list-container,
.bv-project-list-container {
    display: block;
    position: relative;
}

/* .bv-client-logo-list:not(.bv-query-results) { */
#list_clientLogos,
#list_projectLogos {
    --bv-animation: none;
    position: relative;
    display: flex;
    flex-flow: row wrap;
    /* gap: 1.75rem 2.25rem; */
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    min-width: min-content;
    max-width: 100%;
    /* height: auto; */
    transition: var(--bv-transition-client-list-height, none);
}

/* .bv-client-logo-list.bv-query-results {
    position: absolute;
    z-index: 500;
    inset: 0 0 0 0;
    background: none;
} */

#list_clientLogos>li.bv-client-logo-item,
#list_projectLogos>li.bv-project-logo-item {
    position: relative;
}

li.bv-client-logo-item {
    /* --bv-client-logo-margin-part: calc(var(--bv-client-logo-item-size) * .075); */
    /* margin-bottom: calc(var(--bv-client-logo-margin-part) * 2); */
    /* margin-bottom: calc(var(--bv-client-logo-margin-part); */
    /* margin-left: var(--bv-client-logo-margin-part); */
    /* --bv-client-logo-margin-part: calc(var(--bv-client-logo-item-size) * .15); */
    --bv-client-logo-margin-part: calc(var(--bv-client-logo-item-size) * .13);

    /* --bv-client-logo-margin-part: calc(var(--bv-client-logo-item-size) * .075); */
    width: var(--bv-client-logo-item-size);
    min-width: 6rem;
    max-width: 12rem;
    height: var(--bv-client-logo-item-size);
    min-height: 6rem;
    max-height: 12rem;
    margin: 0;
    margin-right: var(--bv-client-logo-margin-part);
    margin-bottom: var(--bv-client-logo-margin-part);
    /* margin-bottom: calc(var(--bv-client-logo-margin-part) * 2); */
    /* margin-left: var(--bv-client-logo-margin-part); */
    /* margin: 0 var(--bv-client-logo-margin-part, 1rem) var(--bv-client-logo-margin-part, 1rem) 0; */
    /* transition: transform 1500ms ease-in-out 0ms; */
    /* offset-path: path('M0,0 Q-300,-50 -423, -423'); */
    /* offset-anchor: left top; */
    /* offset-rotate: 0deg; */
    /* offset-distance: 0; */
    /* transition: offset-distance 1500ms ease-in-out; */
    /* transition: transform 1500ms ease-in-out, opacity; */
    transition: var(--bv-transition-client-motion), var(--bv-transition-client-opacity);
}

/* .bv-query-results .bv-client-logo-item {
    position: absolute;
    transition: transform 2000ms ease-out;
    transform: none;
} */

.bv-client-logo-wrapper,
.bv-project-logo-wrapper {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    max-height: 100%;
    min-height: 100%;
    border-radius: inherit;
    background: white;
    /* box-shadow: inset -3px -3px 5px 4px var(--bv-theme-color-2-halo, hsl(240, 8%, 88%)); */
    filter: drop-shadow(4px 6px 5px hsl(240, 8%, 32%, .8));
}

/* .bv-query-results .bv-client-logo-wrapper {
    background: blue;
    position: absolute;
    transform: translate(11.5rem, 23rem);
    transition: transform 2000ms ease-out;
} */

img.bv-client-logo {
    --bv-img-width: var(--bv-client-logo-size);
    --bv-img-height: var(--bv-client-logo-size);
    --bv-img-border-radius: var(--bv-rect-border-radius, 0.5px);
    aspect-ratio: 1;
    width: var(--bv-img-width);
    min-width: 3rem;
    max-width: 7.5rem;
    height: var(--bv-img-height);
    min-height: 3rem;
    max-height: 7.5rem;
    border-radius: var(--bv-img-border-radius);
}

/*
    FAQ
*/

.bv-faq-content-container {
    --bv-faq-switch-icon-diameter: 2.7rem;
    --bv-faq-switch-icon-margin: 0 var(--bv-focus-margin, 0) 0 0;
    /* --bv-faq-switch-icon-diameter: 4rem; */
    /* --bv-faq-switch-icon-margin: 0 calc(var(--bv-focus-margin, 0) * 3) 0 0; */
    /* --bv-local-width: calc(5rem + 75ch); */
    /* --bv-local-height: auto; */
    --bv-back-color: transparent;
    --bv-color-dark-normal: var(--bv-text-color-dark, hsl(240, 8%, 8%));
    --bv-color-dark-active: var(--bv-text-color-dark, hsl(240, 8%, 8%));
    --bv-color-light-normal: var(--bv-text-color-light, hsl(240, 8%, 98%));
    --bv-color-light-active: var(--bv-text-color-light, hsl(240, 8%, 98%));
    --bv-color: var(--bv-color-dark-normal);
    background: var(--bv-back-color);
    color: var(--bv-color);
    font-size: 1em;
}

.bv-faq-item {
    --bv-panel-back-color: transparent;
    --bv-max-width: var(--bv-text-max-width, 75ch);
    --bv-font-family: var(--bv-font-family-normal);
    --bv-font-size: var(--bv-font-size-normal, 1.3rem);
    --bv-font-weight: 400;
    --bv-font-style: normal;
    position: relative;
    max-width: var(--bv-max-width);
    font-family: var(--bv-font-family);
    font-size: var(--bv-font-size);
    font-weight: var(--bv-font-weight);
    font-style: var(--bv-font-style);
    line-height: 1.5;
}

button.bv-faq-question {
    --bv-button-width: 100%;
    --bv-button-height: auto;
    --bv-width: 100%;
    --bv-height: auto;
    --bv-back-color: transparent;
    /* --bv-back-color: var(--bv-theme-color-2-halo, hsl(240, 8%, 88%)); */
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    box-shadow: inset 0 0 0 3px var(--bv-panel-box-color);
    background: var(--bv-back-color);
    /* padding: 0.5rem 0; */
    padding: 0.5rem 0 0 0;
    border-radius: var(--bv-button-border-radius, 0.5px);
    filter: none;
}

label.bv-faq-question-text {
    --bv-color-normal: var(--bv-text-color-dark, hsl(240, 8%, 8%));
    --bv-color-active: var(--bv-text-color-dark, hsl(240, 8%, 8%));
    --bv-color: var(--bv-color-normal);
    --bv-font-style: normal;
    color: var(--bv-color, red);
    /* font-size: 26px; */
    font-size: var(--bv-font-size-normal, 1.3rem);
    font-weight: 600;
    font-style: var(--bv-font-style);
}

/* button.bv-faq-question:focus-visible label {
    --bv-button-label-focus-color: var(--bv-theme-color-2-black, red);
    --bv-button-label-font-style: var(--bv-font-style-focus);
} */

.bv-faq-switch-icon {
    /* --bv-faq-switch-icon-margin: 0 calc(var(--bv-focus-margin, 0) * 3) 0 0; */
    /* --bv-faq-switch-icon-diameter: 4rem; */
    --bv-line-height: var(--bv-faq-switch-icon-diameter, 4rem);
    --bv-color-normal: var(--bv-text-color-light, hsl(240, 8%, 98%));
    --bv-color-active: var(--bv-text-color-light, hsl(240, 8%, 98%));
    --bv-color: var(--bv-color-normal, hsl(240, 8%, 98%));
    pointer-events: none;
    position: relative;
    margin: var(--bv-faq-switch-icon-margin, 0);
    width: var(--bv-faq-switch-icon-diameter, 4rem);
    min-width: var(--bv-faq-switch-icon-diameter, 4rem);
    height: var(--bv-faq-switch-icon-diameter, 4rem);
    min-height: var(--bv-faq-switch-icon-diameter, 4rem);
    box-shadow: var(--bv-box-shadow, none);
    border-radius: var(--bv-button-border-radius, 0.5px);
    line-height: var(--bv-line-height);
    background: var(--bv-back-color, red);
    color: var(--bv-color);
}

.bv-faq-switch-icon.bv-button-shape-circle {
    --bv-button-border-radius: var(--bv-circle-border-radius, 50%);
}

.bv-faq-switch-icon-spinner {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    transform: translate(1px, -1px) rotateZ(0turn);
    transition: var(--bv-transition-faq-switch, none);
}

.bv-faq-switch-label {
    line-height: 1;
    font-family: var(--bv-font-family-headline, sans-serif);
    font-size: 2rem;
    /* font-weight: 600; */
    font-weight: 350;
    font-style: normal;
}

.bv-faq-answer {
    /* margin: 0 0 1.25rem var(--bv-faq-answer-indent, 0); */
    /* box-shadow: inset 0 0 0 3px var(--bv-theme-color-2-black); */
    /* --bv-faq-answer-indent: calc(var(--bv-faq-switch-icon-diameter, 4rem) + calc(var(--bv-focus-margin, 0) * 3)); */
    /* --bv-width: calc(100% - var(--bv-faq-answer-indent)); */
    /* --bv-width: calc(100% - 4.5rem); */
    --bv-max-width: var(--bv-text-max-width, 75ch);
    --bv-color-normal: var(--bv-text-color-dark, hsl(240, 8%, 8%));
    --bv-color-active: var(--bv-text-color-dark, hsl(240, 8%, 8%));
    --bv-color: var(--bv-color-normal);

    /* These keep the answer panel collapsed. */
    max-height: 0;
    overflow: hidden;
    /*                                        */

    width: var(--bv-width);
    max-width: var(--bv-max-width);
    /* margin: 0 0 1.25rem var(--bv-faq-answer-indent, 0); */
    /* margin: 0 0 1.25rem 0; */
    margin: 0 0 0.25rem 0;
    color: var(--bv-color, red);
    transition: var(--bv-transition-faq-answer, none);
}

.bv-faq-answer-content-wrap {
    /* --bv-faq-answer-content-indent: calc(calc(var(--bv-faq-switch-icon-diameter) + calc( var(--bv-focus-margin) * 3)) + 1.5rem); */
    /* --bv-faq-answer-content-indent: calc(var(--bv-faq-switch-icon-diameter) * 2); */
    --bv-faq-answer-content-indent: calc(var(--bv-faq-switch-icon-diameter) + 1.5rem);
    padding: 0 var(--bv-spacer-double) var(--bv-spacer-double) var(--bv-faq-answer-content-indent, 2rem);
    /* padding: 0 var(--bv-spacer-double) var(--bv-spacer-double) calc(var(--bv-faq-switch-icon-diameter) * 2); */
}

.bv-faq-question.bv-faq-expanded .bv-faq-question-text {
    --bv-font-weight: 600;
    --bv-font-style: var(--bv-font-style-focus, italic);
    --bv-color: var(--bv-color-active, hsl(240, 8%, 98%));
}

.bv-faq-question.bv-faq-expanded .bv-faq-switch-icon-spinner {
    transform: translate(1px, -1px) rotateZ(1turn);
}

.bv-faq-question.bv-faq-expanded+.bv-faq-answer {
    --bv-color: var(--bv-color-active, orange);
}

/*
    Safari Issue:

    If an unordered List is styled with list-style: none;
    then it not be recognized as a list in the accessibility tree.


    To address this:

    Either use a slightly different list-style:

        ul { list-style: '' outside none; }


    or...


    1. Add a "repair" class to the element.

        bv-no-list-style


    2. Add the following rules to the CSS Style Sheet that
       controls the element.

    This adds a zero-width space as content of the
    ::before pseudo-element, which somehow solves the problem.


        ul.bv-no-list-style { list-style: none; }

        ul.bv-no-list-style li::before {
            position: absolute;
            content: "\200B";
        }
*/

ul {
    list-style: '' outside none;
}

ul.bv-indent {
    margin: 0 0 0 2.25rem;
}

ul.bv-single-space>li {
    margin-top: 0;
}

ul.bv-double-space>li {
    margin-top: 1rem;
}

li.bv-single-space {
    margin-top: 0;
}

li.bv-double-space {
    margin-top: 1rem;
}

.bv-alternating-bullet-color>li::before {
    content: "\2022";
    display: inline-block;
    width: 16px;
    color: var(--bv-theme-color-1);
    font-size: 1.3rem;
    font-weight: 700;
}

.bv-alternating-bullet-color>li:nth-of-type(even)::before {
    color: var(--bv-theme-color-2-black, hsl(240, 8%, 8%));
    /* color: var(--bv-theme-color-black); */
    /* color: var(--bv-theme-color-1, hsl(196, 100%, 43%)); */
}

.bv-faq-contact-info-grid {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: 2.25rem;
    justify-content: start;
    align-items: baseline;
    gap: 1rem 0;
    width: 100%;
}

p.bv-faq-caption {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bv-text-color-dark, hsl(240, 8%, 8%));
    transform: translate(0, 2rem)
}

/*
    Contact
*/

.bv-contact-content-container {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    gap: 2rem 4rem;
    max-width: 100%;
    width: 100%;
}

.bv-contact-sample-offer {
    max-width: 40%;
    width: 40%;
}

.bv-contact-info-wrapper {
    display: inline-block;
    font-size: 1em;
    /* width: 43rem; */
    /* max-width: 43rem; */
    /* min-width: 43rem; */
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 0;
}

.bv-contact-me-wrapper {
    display: inline-block;
    font-size: 1em;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
}

.bv-contact-info-list {
    display: block;
    margin: var(--bv-spacer-double) 0 var(--bv-spacer-triple);
    /* margin: var(--bv-spacer-double) 0 calc(var(--bv-spacer-double) + var(--bv-spacer)); */
    /* list-style: none; */
}

.bv-contact-info-item {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: .5rem;
    margin: var(--bv-spacer) 0;
}

.bv-info-value-icon.bv-phone {
    display: block;
    height: 2.25rem;
    /* margin-right: .5rem; */
    /* margin-left: .5rem; */
    line-height: 2.25rem;
    padding: var(--bv-focus-ring-pad-text);
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    background-origin: border-box;
}

li.bv-contact-info-item.bv-email-address::before,
li.bv-contact-info-item.bv-phone-number::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2.25rem;
    line-height: 2.25rem;
    background-position: left -0.2rem;
    background-repeat: no-repeat;
    background-size: contain;
}

li.bv-contact-info-item.bv-email-address::before {
    /* padding: var(--bv-focus-ring-pad-text); */
    background-image: url('../assets/icon/contact/iconBVolt_ContactInfoEmail.svg');
}

li.bv-contact-info-item.bv-phone-number::before {
    /* content: ''; */
    /* display: inline-block; */
    /* width: 2rem; */
    /* height: 2.25rem; */
    /* line-height: 2.25rem; */
    /* padding: var(--bv-focus-ring-pad-text); */
    background-image: url('../assets/icon/contact/iconBVolt_ContactInfoMobile.svg');
    /* background-position: left -0.2rem; */
    /* background-repeat: no-repeat; */
    /* background-size: contain; */
}

.bv-info-value {
    display: inline-block;
    font-size: var(--bv-font-size, 1.3rem);
}

.bv-info-value-icon.bv-usa {
    background-image: url('../assets/icon/flag/iconBVolt_Flag_of_USA.svg');
    width: 2.85rem;
}

.bv-info-value-icon.bv-hungary {
    background-image: url('../assets/icon/flag/iconBVolt_Flag_of_Hungary.svg');
    width: 2.85rem;
}

#id_lastNameWrapper.bv-text-input-wrapper {
    position: absolute;
    left: -100%;
    top: -100%;
    right: 200%;
    bottom: 200%;
    max-width: 0;
    max-height: 0;
    display: none;
    outline: none;
    border: 0;
    margin: 0;
    padding: 0;
    color: transparent;
    background-color: transparent;
}

#id_lastNameWrapper.bv-text-input-wrapper:focus-within {
    outline: none;
    border: 0;
    color: transparent;
    background-color: transparent;
}

#id_lastNameWrapper #textLastName {
    color: transparent;
    background-color: transparent;
}

#id_lastNameWrapper #textLastName::selection {
    background-color: var(--bv-text-selected-back-color, hsl(196, 30%, 10%));
    color: var(--bv-text-selected-color, hsl(196, 100%, 50%));
}

#id_lastNameWrapper label.bv-field[for=textLastName] {
    color: transparent;
    background-color: transparent;
}

/******************************
    Media Queries
******************************/

/* @media only screen and (max-width: 1590px) { */
@media only screen and (max-width: 1220px) {

    /* Main */
    ul.bv-nav-circles-grid {
        /* --bv-nav-circle-diameter: 12rem; */
        grid-template-columns: repeat(3, var(--bv-nav-circle-diameter));
        grid-auto-rows: repeat(2, var(--bv-nav-circle-diameter));
        /* gap: 2.5rem; */
    }
}

@media only screen and (max-width: 1080px) {
    /* Header */

    /* Nav Menu Burger Time */

    nav.bv-header-nav {
        padding: 0 var(--bv-spacer-double, 2rem) 0 var(--bv-spacer, 1rem);
    }

    .bv-hamburger {
        display: block;
    }

    .bv-hamburger.active .bv-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .bv-hamburger.active .bv-bar:nth-child(2) {
        opacity: 0;
    }

    .bv-hamburger.active .bv-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .bv-nav-menu {
        position: fixed;
        left: 100%;
        top: var(--bv-header-height);
        gap: 0;
        flex-direction: column;
        background: var(--bv-header-back-color, black);
        width: 100%;
        align-items: flex-start;
        padding: 2rem;
        /* text-align: center; */
        transition: 300ms;
    }

    li.bv-nav-item {
        --bv-font-size: var(--bv-font-size-nav, 1);
        margin: var(--bv-spacer-double, 1rem) 0;
    }

    .bv-nav-menu.active {
        left: 0;
    }

    /* Audio & Video */
    .bv-audio-video-content-container {
        justify-content: center;
    }

    /* About */
    .bv-about-content-container {
        padding: 0;
    }
}

@media only screen and (max-width: 768px) {

    /* General */
    /* section {
        --bv-section-margin-bottom: 8rem;
    } */

    section.bv-centered {
        margin-left: var(--bv-spacer, 0);
        margin-right: 0;
    }

    /* Main */
    .bv-main-logo-wrapper {
        width: 90%;
    }

    ul.bv-nav-circles-grid {
        --bv-nav-circle-diameter: 10rem;
        grid-template-columns: repeat(2, var(--bv-nav-circle-diameter));
        grid-auto-rows: repeat (3, var(--bv-nav-circle-diameter));
        gap: 0.8rem;
    }

    /* Audio & Video */
    .bv-audio-video-flex-item {
        max-width: 100%;
    }

    /* .bv-audio-video-content-container {
        justify-content: center;
    } */

    /* About */
    .bv-sub-section-about-hans p,
    .bv-sub-section-about-vocal-impact p {
        width: 95%;
        max-width: 95%;
    }

    /* Clients */
    .bv-clients-content-container {
        gap: 0;
    }

    .bv-client-logo-wrapper {
        filter: drop-shadow(2px 3px 3px hsl(240, 8%, 32%, .8));
    }

    li.bv-client-logo-item {
        --bv-client-logo-margin-part: calc(var(--bv-client-logo-item-size) * 0.08);
    }

    /* Testimonials */
    /* .bv-testimonials-content-container .bv-headshot {
        width: 110px;
    } */

    /* FAQ */
    /* .bv-faq-item,
    .bv-faq-item p,
    .bv-faq-item span,
    .bv-faq-item ul,
    .bv-faq-item .bv-info-value {
        --bv-font-size: var(--bv-font-size-compact, 1rem);
    } */


    /* Contact */
    .bv-contact-sample-offer {
        max-width: 95%;
        width: 95%;
    }

    #section_contact li.bv-contact-info-item.bv-email-address::before,
    #section_contact li.bv-contact-info-item.bv-phone-number::before {
        width: 1.5rem;
        height: 1.5rem;
        background-position: left -0.2rem;
    }

    #section_contact span.bv-info-label,
    #section_contact span.bv-info-value,
    #section_contact a.bv-info-value {
        --bv-font-size: var(--bv-font-size-compact, 1.1rem);
    }
}

@media only screen and (max-width: 640px) {

    /* .bv-clients-content-container {
        --bv-client-logo-item-size: calc(100vw / 3.5);
        --bv-client-logo-size: calc(var(--bv-client-logo-item-size) * 0.66);
    }

    .bv-client-logo-wrapper {
        width: 100%;
        max-width: var(--bv-client-logo-item-size, 100%);
    } */
}




/* Debugging Tools */
ul.bv-show-lines {
    outline: 2px dashed darkslategray;
}




/* :root {
    --bv-motion-path-fill: none;
    --bv-motion-path-stroke: black;
    --bv-motion-start-fill: crimson;
    --bv-motion-start-stroke: black;
    --bv-motion-end-fill: lime;
    --bv-motion-end-stroke: black;
}

.bv-motion-group .bv-motion-path {
    fill: var(--bv-motion-path-fill, yellow);
    stroke: var(--bv-motion-path-stroke, yellow);
    vector-effect: non-scaling-stroke;
}

.bv-motion-group .bv-start-point {
    fill: var(--bv-motion-start-fill, yellow);
    stroke: var(--bv-motion-start-stroke, yellow);
    vector-effect: non-scaling-stroke;
}

.bv-motion-group .bv-end-point {
    fill: var(--bv-motion-end-fill, yellow);
    stroke: var(--bv-motion-end-stroke, yellow);
    vector-effect: non-scaling-stroke;
}

#svgLogoPath {
    pointer-events: none;
    position: absolute;
    z-index: 750;
    overflow: visible;
}

.bv-client-logo-path-svg {
    position: absolute;
    left: 0;
    top: 0;
    overflow: visible;
}

svg.bv-client-logo-path-svg use {
    visibility: var(--bv-motion-path-visibility);
    pointer-events: none;
    position: absolute;
    z-index: 800;
    fill-opacity: 1;
    fill-rule: nonzero;
    stroke-width: 5px;
    stroke-opacity: 1;
    paint-order: fill stroke markers;
}

li.bv-client-logo-item {
    pointer-events: all;
    outline: none;
    --bv-motion-path-visibility: hidden;
}

li.bv-client-logo-item:hover {
    --bv-motion-path-visibility: visible;
}

li.bv-client-logo-item:hover .bv-client-logo-wrapper {
    box-shadow: 0 0 2px 5px crimson;
} */


/*
animation-name:
animation-duration:
animation-timing-function:
animation-delay:
animation-iteration-count:
    <number>
    infinite

animation-direction: Configures whether or not the animation should alternate direction on each run through the sequence or reset to the start point and repeat itself.
    normal-             - always play forwards
    reverse             - always play reverse
    alternate           - alternate on each playback, first time play forward
    alternate-reverse   - alternate on each playback, first time play reverse

animation-fill-mode: Configures what values are applied by the animation before and after it is executing.

    none        - Animation values are only applied during playback.
    forwards    - retain last frame encountered in the animation (depends on animation-direction)
    backwards   - apply the values defined in the first relevant keyframe as soon as it is applied to the target,
                    and retain this during the animation-delay period
    both

animation-play-state: Lets you pause and resume the animation sequence.
 */

#section_clients .bv-clients-content-container {
    --bv-animate-show-client-logos:

        --bv-animate-hide-client-logos: logomotion-hide 8000ms cubic-bezier(0.42, 0, 0.58, 1.0) 1 normal reverse;
    --bv-animation: none;
}

ul.bv-client-logo-list {
    animation: var(--bv-animation);
}

/* Trigger Show Logos */
ul.bv-client-logo-list.show-ers {
    --bv-animation: var(--bv-animate-show-client-logos);
}

/* Trigger Hide Logos */
ul.bv-client-logo-list.go-ers {
    --bv-animation: var(--bv-animate-hide-client-logos);
}


@keyframes logomotion-show {

    from {
        offset-distance: 0%;
        opacity: 1;
    }

    to {
        offset-distance: 100%;
        opacity: 1;
    }
}

@keyframes logomotion-hide {

    from {
        offset-distance: 0%;
        opacity: 1;
        transform: none;
        visibility: visible;
    }

    25% {
        opacity: 1;
        visibility: visible;
    }

    95% {
        offset-distance: 100%;
        opacity: 0;
        visibility: hidden;
    }

    to {
        offset-path: none;
        opacity: 1;
        visibility: hidden;
        transform: translate(0, 100vh);
    }
}
