/*__     __            _         _      _            
  \ \   / /__ _  _ __ (_)  __ _ | |__  | |  ___  ___ 
   \ \ / // _` || '__|| | / _` || '_ \ | | / _ \/ __|
    \ V /| (_| || |   | || (_| || |_) || ||  __/\__ \
     \_/  \__,_||_|   |_| \__,_||_.__/ |_| \___||___/ */
/* #region */

 :root {
    --c-offwhite: #E5F2F7;
    --c-blue-light: #00B9FF;
    --c-gray-light: #778183;
    --c-gray-lighter: #b9c5c9;
    --c-gray-med: #51575b;
    --c-gray-dark: #2f3435;
    --c-backfill: #0A0B0D;
    --c-bg: #13161A;
    --c-tgk-accent: #fe7531;
    --c-tgk-base: #f2e7df;
    --c-tgk-bronze: #4e473e;
    --transition: all 0.15s ease-in-out;
    --space-from-left: 0;
    --border-radius: 0.66rem;
    --button-radius: 0.5rem;
    --font: 'ohno-casual-variable', Helvetica, sans-serif;
    --font-2: 'polymath', Helvetica, sans-serif;
    --c-img-bg: rgb(238,238,238);
 }

* {
    /*transition: var(--transition);*/
    font-display: swap;
}
/* #endregion */

/*_   _                   _             
 | | | |  ___   __ _   __| |  ___  _ __ 
 | |_| | / _ \ / _` | / _` | / _ \| '__|
 |  _  ||  __/| (_| || (_| ||  __/| |   
 |_| |_| \___| \__,_| \__,_| \___||_|   */
 /* #region */

#site-update-bar {
    display: none;
    border-radius: var(--border-radius);
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--c-backfill);
    z-index: 20000;
    text-align: center;
    padding: .5rem 3rem 0 1rem;
}

#site-update-bar > p {
    color: var(--c-gray-light);
    font-size: .9rem;
    letter-spacing: .065rem;
    padding: 0 0 .5rem 0;
    font-weight: 200;
    line-height: 1.1 !important;
}

#logo-text {
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0rem 0 0.5rem 0;
}

#logo-text a {
    font-family: var(--font);
    font-weight: 350 !important;
    font-size: 2.33rem;
    line-height: 2.5rem;
    text-decoration: none !important;
    color: var(--c-blue-light);
}
/* #endregion */

/*_   _                _                _    _               
 | \ | |  __ _ __   __(_)  __ _   __ _ | |_ (_)  ___   _ __  
 |  \| | / _` |\ \ / /| | / _` | / _` || __|| | / _ \ | '_ \ 
 | |\  || (_| | \ V / | || (_| || (_| || |_ | || (_) || | | |
 |_| \_| \__,_|  \_/  |_| \__, | \__,_| \__||_| \___/ |_| |_|
                          |___/                              */
/* #region */

.nav-flex {
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: flex-end;

    max-width: 1000px;
    width: 90%;
    height: 4.5rem;
    margin: 0 0 0 0;
    position: fixed;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 15000;

    background-color: var(--c-bg);  
    box-sizing: content-box;
    box-shadow: 0 -1000px 0 1000px var(--c-bg);
    border-bottom: .2rem solid var(--c-blue-light);
}

.nav-item {
    display: inline-block;
    padding: 0.8rem 0 0.25rem 2rem;
}

.nav-item, .nav-item a {
    text-decoration: none;
    color: var(--c-blue-light);
    font-size: 1.8rem;
}

.nav-item a:hover {
    color: var(--c-offwhite);
}

.dropdown {
    transition: var(--transition);
    transition-behavior: allow-discrete;
    opacity: 0;
    display: none;
    position: absolute;
    top: 4.5rem;
    margin: 0 0 0 -2rem;
    padding: 0.6rem 2rem 1rem 2rem;
    background-color: var(--c-bg);
    border-radius: 0 0 var(--border-radius) var(--border-radius) ;
    box-sizing: border-box;
    border-top: .2rem solid var(--c-blue-light);
}

.drop-item {
    color: var(--c-blue-light);
    padding: 0.25rem 0 1rem 0;
    margin: 0;
    line-height: 1.1;
}

.dropbtn:hover .dropdown {
    display: block;
    opacity: 1;
    transition: var(--transition);
    transition-behavior: allow-discrete;
}

.dropbtn:hover {
    color: var(--c-offwhite);
}

.nav-main a:hover {
    color: var(--c-offwhite);
}

.nav-main-mobile {
    display: none;
    opacity: 0;
}

.nav-main-mobile-BG {
    display: none;
    opacity: 0;
}

.btn {
    display: none;
}

.closebtn {
    display: none;
}

.notif {
    position: fixed;
    margin: -2rem 0 0 0;
    padding: 0 0 0 3.9rem;
    width: 20px;
}
/* #endregion */

/*____              _        
 | __ )   ___    __| | _   _ 
 |  _ \  / _ \  / _` || | | |
 | |_) || (_) || (_| || |_| |
 |____/  \___/  \__,_| \__, |
                       |___/ */
/* #region */

::selection {
    background-color: var(--c-blue-light);
    color: white;}
::-moz-selection {
    background-color: var(--c-blue-light);
    color: white;}

html {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-2);
    font-weight: 300;
    letter-spacing: .025em;
    color: var(--c-offwhite);
    background-color: var(--c-bg);
    height: 100%;
    margin: 0;
    padding: 0;
}

#container {
    position: relative;
    height: auto;
    max-width: 1000px;
    width: 90%;
    margin: 0 auto 0;
    padding: 8rem 0 0 0;
    overflow-x: hidden;
}

section {
    padding: 5rem 0;
}

p {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0.04rem;
    padding: 0 0 1rem var(--space-from-left);
    margin: 0;
}

h1 {
    font-family: var(--font);
    font-weight: 350;
    line-height: 0.9;
    font-size: 9rem;
    color: var(--c-blue-light);
    padding: 0 0 0 var(--space-from-left);
    letter-spacing: 0.1rem;
}

h2 {
    font-family: var(--font);
    font-weight: 350;
    line-height: 0.9;
    font-size: 6rem;
    color: var(--c-blue-light);
    padding: 0 0 0 var(--space-from-left);
    letter-spacing: 0.1rem;
}

.h0 {
    font-family: var(--font-2);
    font-weight: 100;
    line-height: 1.2;
    font-size: 4rem;
    color: var(--c-offwhite);
    padding: 0 0 0 var(--space-from-left);
    letter-spacing: 0.1rem;
}

.h0-alt {
    font-family: var(--font);
    font-weight: 400;
    line-height: 1;
    font-size: 4.25rem;
    color: var(--c-blue-light);
    padding: 0 0 0 var(--space-from-left);
    letter-spacing: 0.15rem;
}

h3, h3 a {
    font-family: var(--font);
    font-weight: 400;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--c-blue-light);
    padding: 0 0 0.75rem var(--space-from-left);
    margin: 0;
    text-decoration: none;
}

h3 a:hover {
    color: var(--c-offwhite);
}

h4 {
    font-family: var(--font);
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.2;
    padding: 0 0 0.75rem var(--space-from-left);
    margin: 0;
    letter-spacing: 0.12rem;
    color: var(--c-gray-lighter);
}

hr {
    border: none;
    height: 3px;
    background-color: var(--c-gray-dark);
    margin: 0 auto;
}

.hr-section {
    margin: 0.5rem 0 1rem 0;
}

a {
    color: var(--c-offwhite); 
    text-decoration: var(--c-blue-light) solid underline;
    text-decoration-skip: ink; -webkit-text-decoration-skip: ink;
    text-decoration-thickness: .2rem;
    text-underline-offset: .2rem;
}

a:hover {
    color: var(--c-blue-light);
}

img {
    user-select: none; -webkit-user-select: none; -ms-user-select: none;
    user-drag: none; -webkit-user-drag: none;
    border-radius: var(--border-radius);
    max-width: 100%;
}

video {
    width: 100%    !important;
    height: auto   !important;
    overflow: none;
    display: block;
}

.video {
    overflow: hidden;
    border-radius: var(--border-radius);
}

button, .button {
    transition: var(--transition);
    border: 0.2rem solid var(--c-blue-light);
    border-radius: var(--button-radius);
    background-color: var(--c-bg);
    color: var(--c-blue-light);
    font-family: var(--font-2);
    line-height: 1.5;
    font-size: 1.5rem;
    font-weight: 400;
    display: inline-block;
    max-width: max-content;
    padding: 0.25rem 0.75rem 0.25rem 0.75rem;
    text-decoration: none;
    box-sizing: border-box;
}

button:hover, .button:hover {
    background-color: var(--c-blue-light);
    color: var(--c-bg);
    cursor: pointer;
}

.button-subtle {
    border: 0.2rem solid var(--c-gray-light);
    background-color: var(--c-bg);
    color: var(--c-gray-light);
}

.button-subtle:hover {
    background-color: var(--c-gray-light);
    color: var(--c-bg);
}

.graphic-grid {
    display: grid;
    width: calc(100% - 0.15rem);
    margin: 0 0 0 0.15rem;
    grid-template-columns: repeat(auto-fit, minmax(3rem, 1fr));
}

.graphic-grid-item {
    border: 0.15rem solid var(--c-gray-dark);
    margin: -0.15rem 0 0 -0.15rem;
    min-width: 10%;
    aspect-ratio: 1;
    box-sizing: border-box;
    background-color: var(--c-bg);
    transition: all 2.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
}

.graphic-grid-item:hover {
    background-color: var(--c-backfill);
    opacity: 0.1;
    transition: all 0.005s cubic-bezier(0.4, 0, 0.2, 1);
}
/* #endregion */

/*_____                    
 |_   _|_   _  _ __    ___ 
   | | | | | || '_ \  / _ \
   | | | |_| || |_) ||  __/
   |_|  \__, || .__/  \___|
        |___/ |_|          */
/* #region */

.caps-test {
    text-transform: uppercase !important;
    font-size: 1.25rem !important;
    letter-spacing: 0.5rem !important;
    margin-right: -0.5rem !important;
    padding-top: 0.45rem !important;
}

.text-sub-head {
    font-family: var(--font);;
    font-size: 3.5rem;
    color: var(--c-gray-light);
    line-height: 0.85 !important;
    letter-spacing: 0.06rem;
    padding: 0;
}

.text-lead-in {
    font-size: 1.8rem;
    font-weight: 500;
    max-width: 90%;
    letter-spacing: 0.05rem;
}

.text-caption {
    display: block;
    max-width: 100%;
    margin: 2rem auto 5rem auto;
    color: var(--c-gray-light);
    border-top: 0.2rem solid var(--c-gray-dark);
}

.text-caption p {
    text-align: left;
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
    font-style: italic;
    max-width: 80%;
    padding: 1rem 0 0 0;
    margin: 0;
}

.text-caption a {
    text-decoration: none;
    color: var(--c-blue-light);
    text-align: left;
    font-size: 1.175rem;
    font-style: italic;
    max-width: 65%;
    padding: 0 0 0 0;
    margin: 0 auto;
}

.text-caption a:hover {color: var(--c-offwhite);}

.text-comment, .text-comment a {
    font-size: 1.175rem;
    font-weight: 400;
    letter-spacing: 0.02rem;
    font-style: italic;
    color: var(--c-gray-light);
    padding: 0.5rem 1rem .5rem 0;
    margin: 0;
}

.text-comment a {padding: 0;}

.text-comment a:hover {color: var(--c-blue-light);}

.text-note {
    text-align: left;
    font-family: var(--font-2);
    font-size: 1.75rem;
    font-style: italic;
    font-weight: 400;
    display: block;
    width: 100%;
    padding: 5rem 10rem 5rem 0rem !important;
    margin: 5rem 0 3rem 0;
    color: var(--c-gray-light);
    border-top: 0.2rem solid var(--c-gray-dark);
    border-bottom: 0.2rem solid var(--c-gray-dark);
}

.text-note p {
    margin: 0 auto;
    max-width: 80%;
}

.text-hint {
    font-size: 1.175rem;
    font-style: italic;
    color: var(--c-gray-light);
    margin: 0 0 0.75rem 0;
}

.text-notation {
    font-size: 1rem;
    font-style: italic;
    color: var(--c-gray-med);
    padding: 0rem 1rem 0 1rem;
    margin: -0.5rem 0 0.5rem 0;
}

.text-notation a {
    color: var(--c-gray-light);
    -webkit-text-decoration: none;
    text-decoration: none;
}

.text-notation a:hover {
    color: var(--c-blue-light);
    cursor: pointer;
}

.text-tag {
    display: inline-block;
    margin: 0;
    padding: 0;
    color: var(--c-gray-light);
    font-size: 1.15rem;
    line-height: 1;
}

.text-tag span {
    display: inherit;
    margin: 0.5rem 1rem 0 0;
    padding: 1rem 0.66rem;
    background-color: var(--c-gray-dark);
    border-radius: var(--button-radius);
}

.legaltext {
    font-size: 1.1rem;
    color: var(--c-gray-light);
    text-align: center;
    width: 100%;
    padding: 0.5rem 0 0 0;
}

.legaltext a {
    text-decoration: none;
    color: var(--c-gray-light);
}

.legaltext a:hover {color: var(--c-blue-light);}

.email {
    color: var(--c-offwhite); 
    -webkit-text-decoration: var(--c-blue-light) solid underline;
    text-decoration: var(--c-blue-light) solid underline;
    -webkit-text-decoration-skip: ink;
    text-decoration-skip: ink;
    text-decoration-thickness: .2rem;
    text-underline-offset: .2rem;
}

.email:hover, .email:hover .commat {
    color: var(--c-blue-light);
    cursor: pointer;
}

.commat {
    display: inline-block !important;
    height: 2rem;
    vertical-align: -25%;
    background-color: var(--c-bg);
    color: var(--c-offwhite);
    border: none;
    border-radius: 0;
    padding: 0;
    line-height: 1;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: square;
    stroke-linejoin: miter;
}

.tag-flex {
    display: flex;
    flex-flow: row wrap;
    max-width: 100%;
    margin-top: 0.5rem;
    gap: 1rem;
}

.tag-flex > div {
    background-color: var(--c-gray-dark);
    padding: 0.33rem 0.66rem;
    border-radius: var(--border-radius);
    color: var(--c-gray-light);
}
/* #endregion */

/*___       _ _            
 |_ _|_ __ | (_)_ __   ___ 
  | || '_ \| | | '_ \ / _ \
  | || | | | | | | | |  __/
 |___|_| |_|_|_|_| |_|\___|*/
/* #region */

.c-graylight {color: var(--c-gray-light) !important;}
.c-graymed {color: var(--c-gray-med) !important;}
.c-graydark {color: var(--c-gray-dark) !important;}
.green {display: inline; color: #a0d899;}
.red {display: inline; color: #ffa28a;}
.yellow {display: inline; color: #ead784;}

.contrast-110 {filter: contrast(110%) !important;}

small {font-size: .85rem !important;}
em {color: var(--c-gray-light);}
.f-bold {font-weight: 400 !important;}
.f-math {font-family: monospace !important; vertical-align: 0.15rem;}

.desk-none {display: none;}
.mobile-none {display: list-item;}

.center {text-align: center !important;}
.right {text-align: right;}
.left {text-align: left;}

.no-pad {padding: 0;}
.no-mar {margin: 0;}

.flex-break {flex-basis: 100%; height: 0;}
.caption-bump {margin-top: -6rem;}
.caption-bump-2 {margin-top: -10rem;}

.space {height: 5rem !important;}
.space-half {height: 3rem !important;}
.space-third {height: 2rem !important;}
.space-quarter {height: 1rem !important;}
.space-sixth {height: 0.5rem !important;}

.clamp-1 {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* number of lines to show */
    -webkit-box-orient: vertical;
}

.clamp-2 {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    -webkit-box-orient: vertical;
}

.clamp-3 {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    -webkit-box-orient: vertical;
}

/* #endregion */

/*___                                 
 |_ _| _ __ ___    __ _   __ _   ___  
  | | | '_ ` _ \  / _` | / _` | / _ \ 
  | | | | | | | || (_| || (_| ||  __/
 |___||_| |_| |_| \__,_| \__, | \___|
                         |___/       */
/* #region */

.img-hero {
    object-fit: cover;
    padding: 5rem 0;
    margin: 2.5rem 0 0 0;
}

.img-hero img {
    max-width: 100%;
    border-radius: var(--border-radius);
}

.img-border {
    background-color: var(--c-img-bg) !important;
    border-radius: var(--border-radius) !important;
}

.img-bg {
    background-color: var(--c-img-bg);
}

.img-bg-none {
    background-color: var(--c-bg);
}

.img-width {
    max-width: 150% !important;
}

.width-50 {
    max-width: 50% !important; 
}

.width-66 {
    max-width: 66% !important; 
}

.width-75 {
    max-width: 75% !important; 
}

.width-100 {
    max-width: 100% !important; 
}

.img-1 {
    max-width: 45%;
    margin: 4rem auto 2rem auto;
}

.img-1-66 {
    max-width: 66%;
    margin: 4rem auto 2rem auto;
}

.img-1-75 {
    max-width: 75%;
    margin: 4rem auto 2rem auto;
}

.img-1-100 {
    max-width: 100%;
    margin: 4rem auto 2rem auto;
}

.img-2 {
    width: 100%;
    margin: 4rem 0 2rem 0;
    display: flex;
    flex-flow: row nowrap;
    gap: 2.5rem;
}

.img-2 div {
    flex: 1;
}

.img-1 *, .img-2 *, .img-3 * {
    max-width: 100%;
}

.img-3 {
    width: 100%;
    margin: 4rem auto 2rem auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    align-items: center;
    justify-items: center;
}

.img-5 {
    width: 100%;
    margin: 4rem auto 2rem auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    align-items: center;
    justify-items: center;
}

.img-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    touch-action: none;
    border-radius: var(--border-radius);
    background-color: var(--c-backfill);
}

.img-carousel-content.is-ready {
    opacity: 1;
}

.img-carousel-content {
    display: flex;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.img-carousel-track {
    display: flex;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-carousel img,
.img-carousel video {
    width: 100%;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    border-radius: 0;
}

.img-carousel img {
    background-color: var(--c-backfill);
}


/* For hover/disappear */
.img-carousel-nav,
.img-carousel-indicators {
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

.img-carousel.has-interaction .img-carousel-nav,
.img-carousel.has-interaction .img-carousel-indicators {
    opacity: 0;
}

.img-carousel.has-interaction:hover .img-carousel-nav,
.img-carousel.has-interaction:hover .img-carousel-indicators,
.img-carousel.is-interacting .img-carousel-nav,
.img-carousel.is-interacting .img-carousel-indicators {
    opacity: 1;
}

.img-carousel-nav {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.img-carousel-nav-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    aspect-ratio: 1;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    margin: auto 1rem;
    opacity: 0.5;
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-carousel-nav-button:hover {
    opacity: 0.75;
}

.img-carousel-nav-button::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
}

.img-carousel-nav-button.img-carousel-prev::after {
    border-width: 6px 9px 6px 0;
    border-color: transparent var(--c-bg) transparent transparent;
    margin-right: 3px;
}

.img-carousel-nav-button.img-carousel-next::after {
    border-width: 6px 0 6px 9px;
    border-color: transparent transparent transparent var(--c-bg);
    margin-left: 3px;
}

.img-carousel-indicators {
    position: absolute;
    bottom: 1rem;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    pointer-events: none;
}

.img-carousel-indicator {
    width: 0.33rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: white;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.img-carousel-indicator.img-carousel-active {
    opacity: 1;
}

.social-slider {
    width: 50%;
    margin: 0 auto;

    color: var(--c-gray-light);
}

.social-slider-top {
    height: 5rem;
    background-color: var(--c-offwhite);
    width: 75%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    border-radius: .75rem .75rem 0 0;
}

.social-slider-profile {
    height: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 1rem;
}

.social-slider-profpic {
    aspect-ratio: 1;
    height: 61.8%;
    border: 0.5px solid var(--c-gray-lighter);
    border-radius: 100%;
    background-color: var(--c-blue-light);
    overflow: hidden;
}

.social-slider-name {
    padding-top: 1rem;
}

.social-slider-name p {
    font-size: 1.25rem !important;
    font-weight: 400;
}

.social-slider-bottom {
    background-color: var(--c-offwhite);
    width: 75%;
    margin: 0 auto;
    padding: 0 2rem;
    
    border-radius:  0 0 .75rem .75rem;
}

.social-slider-bottom p {
    font-size: 1.25rem;
}

.social-slider-buttons {
    height: 5rem;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.social-slider-buttons > div {
    aspect-ratio: 1;
    height: 50%;
    color: var(--c-gray-light);
}

.social-slider-buttons > div:first-child {
    height: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 1rem;
}

.social-slider-buttons > div:first-child > div {
    aspect-ratio: 1;
    height: 50%;
}

.social-slider-heart,
.social-slider-comment,
.social-slider-bookmark {
    cursor: pointer;
    transition: transform 0.2s ease;
    stroke-width: 1.1;
}

.social-slider-description {
    display: block;
    width: 100%;
}
        
/* Active states with colors */
.social-slider-heart.active svg {
    fill: #ff3b5c;
    stroke: #ff3b5c;
}

.social-slider-comment.active svg {
    fill: var(--c-blue-light);
    stroke: var(--c-blue-light);
}

.social-slider-bookmark.active svg {
    fill: #ffcc00;
    stroke: #ffcc00;
}

/* Animation class */
.btn-animate {
    animation: pulse 0.3s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        stroke-width: 1.1;
    }
    15% {
        transform: scale(0.8);
        stroke-width: 1.37;
    }
    100% {
        transform: scale(1);
        stroke-width: 1.1;
    }
}

.social-slider-dots {
    aspect-ratio: 1;
    height: 50%;
    color: var(--c-gray-light);
    cursor: pointer;
}


.social-slider-info-icon {
    margin: auto;
    height: 3rem;
    display: inline;
}

 .social-slider-tooltip {
    display: none;

}

.social-slider-tooltip div:first-child {
    background-color: var(--c-offwhite);
    border-radius: var(--border-radius);
    padding: 1.5rem 2rem 1rem;
    z-index: 200001;
    text-align: center;

    position: fixed;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    
}
.social-slider-tooltip div:first-child hr{
    margin: 0.5rem 0 1rem;   
    background-color: var(--c-gray-lighter);
}
.social-slider-tooltip div:first-child p{
    font-weight: 400;
    color: var(--c-gray-med);
}



.social-slider-tooltip div:last-child {
            content: "";
            position: fixed;
            top: -5%;
            left: -5%;
            width: 110vw;
            height: 110vw;
            z-index: 200000;
            background-color: var(--c-backfill);
            opacity: 0.33;
}

/* #endregion */

/*____                       
 |  _ \ __ _  __ _  ___  ___ 
 | |_) / _` |/ _` |/ _ \/ __|
 |  __/ (_| | (_| |  __/\__ \
 |_|   \__,_|\__, |\___||___/
             |___/            */
/* #region */

.sub-header {
    margin: 20vh 0 0 0;
}

.sub-header p {
    max-width: 80%;
    padding: 1rem 0 1rem var(--space-from-left);
}

.sub-header h1 {
    margin: 0 0 .5rem 0;
    padding: 0 0 1rem var(--space-from-left);
    max-width: 100%;
    
}

 .thumb-flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 0;
}

.thumb-flex h3 a {
    font-size: 3rem !important;
}

.thumb-flex img {
    display: block;
}

.thumb-flex div {
    flex: 2;
}

.thumb-flex-2col-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 0;
}

.thumb-flex-2col {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    padding: 2rem 0 0 0;
    flex: 2;
    min-width: 40%;
}

.flex-end {
    align-self: flex-end !important;
}

.flex-end-col {
    margin-top: auto !important;
}

.flex-start {
    align-self: flex-start !important;
}

.flex-grow-1 {
    flex-grow: 1;
}

.gumroad-embed-wrapper {
    margin: 4rem 0;
    padding: 5.75rem 6rem 4rem 6rem;
    background-color: #121212;
    border-radius: var(--border-radius);
}

.video-embed-wrapper {
    position: relative;
    width: 100%;
}

.a-16-9 {
    aspect-ratio: 16 / 9;
}

.video-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.article-body {
    margin: 0;
    margin-bottom: 5rem;
}

.article-body p {
    line-height: 1.6;
    max-width: 70%;
}

.article-body h3 {
    padding-top: 4rem;
}

.article-body ul {
    padding-left: 0;
    padding-bottom: 1rem;
}

.article-body li {
    font-size: 1.5rem;
    margin-left: 2rem;
    padding-left: 0.5rem;
    padding-bottom: 0.5rem;
}

.ul-colorbullets li::marker {
    color: var(--c-blue-light);
}


.in-page-nav {
    padding: 2.5rem 0 2.5rem 0;
}

.in-page-nav .button {
    font-size: 1rem;
    margin: 1rem 1rem 0rem 1rem;
}

.in-page-nav hr {
    margin: 0 0 1.5rem 0;
}

.in-page-nav span {
    color: var(--c-gray-light);
    padding: 0 .75rem;
    font-size: 1.25rem;
}

.in-page-nav div {
    display: none;
}

/* ABOUT PAGE */
.about {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    padding: 2rem 0;
}

.about-item {
    min-width: 3em;
}

.about:first-child {
    order: 1;
}

/* COPY/PASTE PAGE */
.area-text {
    width: auto;
    padding: 1.5rem 2rem;
    margin: 1rem 0;
    border-radius: var(--border-radius);
    background-color: var(--c-gray-dark);
    overflow-wrap: anywhere;
}

.copypaste {
    display: flex;
    align-items: baseline;
    gap: 2rem;
}

.unfurl {
    overflow: hidden !important;
    text-overflow: clip !important;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    -webkit-box-orient: vertical;
    padding-bottom: 0;
    background: linear-gradient(to bottom,var(--c-offwhite) 33%, var(--c-gray-light) 80%, var(--c-gray-dark) 120%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important; 
}

.furl {
    -webkit-line-clamp: none; /* number of lines to show */
    background: var(--c-offwhite) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important; 
    padding-bottom: 0;
}

/* LOGOPAGE */

.row {
    max-width: 1000px;
    max-height: 500px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 2.5%;
    grid-row-gap: 2.5%;
    align-items: end;
}

a:hover img,
a:hover video {
    filter: brightness(0.8);   
}

.row img{
    width: 100%;
}

.single {
    max-width: 100%;
    margin: 0;
    padding: 0;
    text-decoration: none;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.single a {
    display: block;
}

.no-textdec {
    text-decoration: none;
    -webkit-text-decoration: none;
}

.single img,
.single video {
    position: relative;
    z-index: 3;
}

.single h3,
.single button {
    position: absolute;
    z-index: 1;
    bottom: 1rem;
    opacity: 0;
    transition: var(--transition);
}

.single h3 {
    left: 0.5rem;
}

.single button {
    right: 1rem;
    margin: 4rem 0 0.25rem 0;
}

.single button:hover {
    opacity: 1;
}

.single button:hover + a > img,
.single button:hover + a > video {
    filter: brightness(0.75);
}

.single h3:hover + a > img,
.single h3:hover + a > video {
    filter: brightness(0.75);
}

.single:hover button, 
.single:hover h3 {
    opacity: 1;
}

.single:hover a img,
.single:hover a video {
    filter: brightness(1);
}

.single:hover {
    padding-bottom: 6rem;
}

.left-column {
    display: flex;
    flex-direction: column;
}

.logos {
    margin: 0 0 5% 0;
    align-self: flex-start;
    border-radius: var(--border-radius);
    border: none;
}

.logos-video {
    margin: 0 0 5% 0;
    padding-bottom: 0;
    align-self: flex-start;
    border-radius: var(--border-radius);
    overflow: hidden;
    text-underline-offset: 0 !important;
    height: auto;
}

.vibe {
    align-self: flex-end;
}

/* THE GOOD KIDS */

.tgk-logo {
    max-width: 20rem;
    padding: 0;
    margin: 0;
    color: var(--c-offwhite);
}

.tgk-link {
    color: var(--c-tgk-base); 
    -webkit-text-decoration: var(--c-tgk-accent) solid underline;
    text-decoration: var(--c-tgk-accent) solid underline;
    -webkit-text-decoration-skip: ink;
    text-decoration-skip: ink;
    text-decoration-thickness: .2rem;
    text-underline-offset: .2rem;
}

.tgk-link:hover {
    color: var(--c-tgk-accent); 
}

.tgk-button {
    border: 0.2rem solid var(--c-tgk-accent);
    color: var(--c-offwhite);
    font-family: 'new-spirit', serif;
    font-weight: 400;
    font-style: normal;
}

.tgk-button:hover {
    border: 0.2rem solid var(--c-tgk-accent);
    color: var(--c-bg);
    background-color: var(--c-tgk-accent);
}

.tgk-button-small {
    border: 0.1rem solid var(--c-gray-med);;
    color: var(--c-gray-med);
    background-color: var(--c-bg);
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.1125rem;
    padding: 0.33rem 0.5rem;
    margin: 0.5rem 0 0 0;
}

.button-small-blue:hover {
    border: 0.1rem solid var(--c-blue-light) !important;
    color: var(--c-offwhite) !important;
    background-color: var(--c-bg) !important;
}

.tgk-button-small:hover {
    border: 0.1rem solid var(--c-tgk-accent);
    color: var(--c-offwhite);
    background-color: var(--c-bg);
}

.tgk-flex {
    display: flex;
    flex-flow: row wrap;
    margin: 8rem 0;
    column-gap: 1.5rem;
    row-gap: 0.5rem;
}

.tgk-item {
    flex: 1;
}

.tgk-item img {
    display: block;
    width: 100%;
}

.tgk-credits {
    width: 10rem;
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    gap: 5px;
    padding-top: 0;
}

.tgk-credits > div {
    width: fit-content;
    height: fit-content;
}

.tgk-credit-title,
.tgk-credit-name {
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.1125rem;
    padding: 0;
}

.tgk-credit-title {
    color: var(--c-gray-med);
    padding-top: 0.66rem;
}

.tgk-credit-name,
.tgk-credit-name a {
    color: var(--c-gray-med);
    text-decoration: none;
}

.tgk-credit-name a:hover {
    color: var(--c-tgk-accent);;
}

.tgk-credit-buttons {
    display: flex;
    flex-flow: row wrap;
    margin-bottom: var(--border-radius);
}

.tgk-h3 {
    margin: 8rem 0 1.5rem 0;
    font-family: var(--font-2);
    color: var(--c-gray-med);
    font-weight: 300;
    font-size: 2rem;
}

.tgk-text-notation {
    color: var(--c-gray-light);
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.1125rem;
    margin-left: var(--border-radius);
    padding: 0;
}

.tgk-white a{
    color: var(--c-tgk-base);
    -webkit-text-decoration: var(--c-tgk-base) solid underline;
    text-decoration: var(--c-tgk-base) solid underline;
    text-decoration-thickness: .15rem;
    text-underline-offset: .15rem;
}
/* CHARACTER COUNTER */
.char-counter {
    margin: 4rem 0;
}

.char-counter > div {
    padding-bottom: 1rem;
}

.char-result > * {
    vertical-align: middle;
}

.char-counter button {
    margin: 0 1rem 1rem 0;

}

#charCounterInput {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0.04rem;
    padding: 0.5rem 1rem;
    margin: 0 0 1rem;
    font-family: var(--font-2);
    max-width: 100%;
    min-width: 100%;
    height: 15vh;
    min-height: 3.25rem;
    border-radius: var(--border-radius);
    box-sizing: border-box;
    background-color: var(--c-gray-dark);
    color: var(--c-offwhite);
    border: none;
    outline: none;
}

#charCounterResult {
    color: var(--c-blue-light);
}

.checkbox input[type="checkbox"] {
    appearance: none; -webkit-appearance: none; /* Add if not using autoprefixer */
    background-color: #fff; /* For iOS < 15 to remove gradient background */
    margin: 0; /* Not removed via appearance */

    color: currentColor;
    padding: 0.5rem;
    border-radius: 0.25rem;
    width: 2rem;
    height: 2rem;
    transform: translateY(.25rem);
    overflow: hidden;

    display: inline-grid;
    place-content: center;
}

.checkbox input[type="checkbox"]::before {
    content: "";
    width: 2rem;
    height: 2rem;
    opacity: 0;
    transition: .2s transform cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: inset 2rem 2rem var(--c-blue-light);
    background-color: var(--c-blue-light);
    border-radius: 0.1rem;
}

.checkbox input[type="checkbox"]:checked::before {
    opacity: 1;
}

.checkbox {
    font-family: var(--font-2);
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0.04rem;
    color: var(--c-gray-light);
    vertical-align: baseline;
    display: inline-grid;
    grid-template-columns: 2rem auto;
    gap: 0.25rem;
    user-select: none; -webkit-user-select: none; 
}

#ignoreSpaces {
    vertical-align: middle;
    width: 1.5rem;
    height: 1.5rem;
    outline: none;
    background: var(--c-gray-med);
    margin: 0 .5rem .5rem 0;
    accent-color: var(--c-blue-light);
}

#ignoreSpaces + p {
    display: inline;
    color: var(--c-gray-light);
}

/* #endregion */

/*_____              _              
 |  ___|___    ___  | |_  ___  _ __ 
 | |_  / _ \  / _ \ | __|/ _ \| '__|
 |  _|| (_) || (_) || |_|  __/| |   
 |_|   \___/  \___/  \__|\___||_|  */
 /* #region */

 footer {
    border-top: 0.2rem solid var(--c-gray-dark);
    position: relative;
    bottom: 0;
    padding: 0rem 0 4rem 0;
    background-color: var(--c-bg);
    z-index: 10000;
}

#footer-nav {
    display: flex;
    flex-flow: row wrap;
    column-gap: 4rem;
    row-gap: 0.5rem;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.footer-navbox {
    flex: 1;
    padding: 1rem 0 0 0;
    margin-bottom: 0;
}

.footer-navbox ul {
    padding-inline-start: 0;
}

.footer-navbox a, .footer-navbox li {
    text-decoration: none;
    list-style: none;
    line-height: 1.25;
    color: var(--c-gray-light);
    font-size: 1.1rem;
    font-weight: 300;
    padding-bottom: .5rem;
}

.footer-navbox a:hover {
    color: var(--c-blue-light);
}

.footer-nav-nolink {
    color: var(--c-gray-light) !important;
    font-weight: 200;
    -webkit-text-decoration: var(--c-gray-dark) solid underline !important;
    text-decoration: var(--c-gray-dark) solid underline !important;
    -webkit-text-decoration-skip: ink !important;
    text-decoration-skip: ink !important;
    text-decoration-thickness: .2rem !important;
    text-underline-offset: .2rem !important;
}

footer hr {
    margin-bottom: 1rem;
}
/* #endregion */

/*** MOBILE
  __  __   ___   ____  ___  _      _____       ----------------------------
 |  \/  | / _ \ | __ )|_ _|| |    | ____|      ----------------------------     
 | |\/| || | | ||  _ \ | | | |    |  _|        ----------------------------
 | |  | || |_| || |_) || | | |___ | |___       ----------------------------
 |_|  |_| \___/ |____/|___||_____||_____|      ----------------------------      
 */

@media screen and (max-width: 768px) {
/* MOBILE 
  ____              _        
 | __ )   ___    __| | _   _ 
 |  _ \  / _ \  / _` || | | |
 | |_) || (_) || (_| || |_| |
 |____/  \___/  \__,_| \__, |
                       |___/ */
/* #region */
    #site-update-bar {
        display: none;
    }

    .nav-flex {
    }

    .nav-item {
        display: none;
    }
    
    .nav-main-mobile {
        transition: all 0.25s ease-in-out;
        width: 100%;
        height: 100%;
        padding-top: 3rem;
        opacity: 1;
        display: block;
        position: fixed;
        right: -100%;
        top: 0;
        z-index: 11000;
        background-color: var(--c-bg);
        overflow-y: auto;
        overflow-x: hidden;
        /* border-left: 0.2rem solid var(--c-blue-light);*/
        box-sizing: border-box;
        color: var(--c-bg);
    }

    .nav-main-mobile a {
        display: block;
        font-size: 2rem;
        font-family: var(--font-2) ;
        text-align: right;
        text-decoration: none;
        color: var(--c-blue-light);
        padding: 0 5% 0.25rem 0;
        line-height: 1.2;
    }

    .nav-main-mobile hr {
        width: 90%;
        margin: 0 5% 0 0;
        right: 0;
        position: absolute;
    }

    .nav-main-mobile a:hover {
        color: var(--c-offwhite);
    }

    .nav-main-mobile ul {
        list-style: none;
        padding: 0 0 0.5rem 0;
    }

    .nav-main-mobile li {
        display: block;
        padding: 1rem 0 0.5rem 0;
        line-height: 3rem;
    }

    .nav-sub-mobile li {
        padding: 0;
    }

    .nav-main-mobile-BG {
        transition: all 1s ease-in-out;
        position: fixed;
        width: 0;
        right: 0;
        top: 0;
        height: 100%;
        z-index: 10999;
    }

    .btn {
        padding: 0 0 .15rem 0;
        margin: 0;
        text-decoration: none;
        font-size: 2.3rem;
        position: absolute;
        right: -.2rem;
        bottom: -.3rem;
        display: block;
        cursor: pointer;
        color: var(--c-blue-light);
    }
    
    .btn:hover {
        color: var(--c-blue-light); 
    }

    .closebtn {
        color: var(--c-blue-light) !important; 
    }
    
    #myClosebtn {
        font-size: 3rem;
    }
/* #endregion */
    
/*** MOBILE
  _   _                   _             
 | | | |  ___   __ _   __| |  ___  _ __ 
 | |_| | / _ \ / _` | / _` | / _ \| '__|
 |  _  ||  __/| (_| || (_| ||  __/| |   
 |_| |_| \___| \__,_| \__,_| \___||_| */
/* #region */

    .nav-flex {
        height: 4rem;
    }

    #logo-text {
        font-size: 2rem;
        padding-bottom: 0;
    }

    .sub-header {
        margin: 12.5rem 0 0 0;
    }

    h1 {
        font-size: 5rem;
    }

    h2 {
        font-size: 3rem;
    }
    .h2-alt {
        font-size: 3.15rem;
    }

    h3 {
        font-size: 3rem;
    }

    h4 {
        font-size: 1.75rem;
    }
    
    .in-page-nav {
        padding: 2.5rem 0 2.5rem 0;
        
    }
    
    .in-page-nav .button {
        font-size: 1rem;
        margin: 1rem .5rem 0rem .5rem;
    }

    .in-page-nav hr {
        margin: 0 0 1.5rem 0;
    }

    .in-page-nav span {
        display: none;
    }

    .in-page-nav div {
        display: block;
    }

    .about {
        flex-direction: column;
    }
    
    .about:first-child {
        order: 2;
    }
    
    .about:nth-child(2) {
        order: 1;
    }
    /* #endregion */

/*** MOBILE
  _____              _              
 |  ___|___    ___  | |_  ___  _ __ 
 | |_  / _ \  / _ \ | __|/ _ \| '__|
 |  _|| (_) || (_) || |_|  __/| |   
 |_|   \___/  \___/  \__|\___||_| */
 /* #region */

#footer-nav {
    display: flex;
    flex-flow: row wrap;
    column-gap: 2rem;
    row-gap: 0;
    justify-content: left;
    align-items: flex-start;
    width: 100%;
    margin-right: 2rem;
    margin-top: 1rem;
} 

#footer-nav ul {
    padding-bottom: 0;
    margin-bottom: 0;
}

.footer-navbox {
    width: max-content;
}

/* #endregion */

/*** MOBILE
  ____                       
 |  _ \ __ _  __ _  ___  ___ 
 | |_) / _` |/ _` |/ _ \/ __|
 |  __/ (_| | (_| |  __/\__ \
 |_|   \__,_|\__, |\___||___/
             |___/            */
 /* #region */

    .row {
        grid-template-columns: 1fr;
        max-height: max-content;
    }

    .single {
        max-width: 100%;
        margin-top: 2rem;
    }

    .single h3 {
        font-size: 3rem;
        padding-top: 1rem;
    }
    
    section {
        padding: 2.5rem 0 7.5rem 0;
        max-height: 100%;
    }

    .tgk-logo {
        max-width: 80%;
    }

    .thumb-flex {
        flex-direction: column;
        gap: 1rem;
    }

    .thumb-flex-2col {
        min-width: 90%;
    }

    .sub-header h1 {
        max-width: 100%;
    }

    .sub-header p {
        max-width: 90%;
    }
    
    .article-body p, .article-body h3 {
        max-width: 100%;
    }

    .img-hero {
        max-width: 100%;
    }
    
    .img-1, .img-2, .img-3 {
        grid-template-columns: 100%;
    }

    .img-2 {
        flex-flow: column wrap;
        gap: 1.5rem;
    }
    
    .img-1, .img-1-75, .img-1-66 {
        max-width: 100%;
    }

    .img-carousel-nav-button {
        width: 1rem;
    }

    .img-carousel-nav-button.img-carousel-prev::after {
        border-width: 4px 6px 4px 0;
        margin-right: 2px;
    }

    .img-carousel-nav-button.img-carousel-next::after {
        border-width: 4px 0 4px 6px;
        margin-left: 2px;
    }

    .text-note {
        padding-left: 0 !important;
        padding-right: 4rem !important;
    }

    .text-caption {
        padding-left: 1rem;
        /* to correct for -2rem on article-body p */
    }

    .caption-bump {
        margin-top: -1rem;
    }

    .caption-bump-2 {
        margin-top: -2.5rem;
    }

    .width-50 {
        max-width: 100% !important; 
    }

    .mobile-none {
        display: none;
    }

    .desk-none {
        display: unset;
    }

    #footer-nav .desk-none {
        display: list-item;
        list-style: none;
    }

    .text-tag {
        font-size: 1rem;
    }

    .text-tag span {
        margin-bottom:1rem;
    }

    .gumroad-embed-wrapper {
        margin: 2rem 0;
        padding: 0;
    }

    .tgk-flex {
        margin: 2rem 0;
        flex-flow: column nowrap;
        gap: 0.5rem;
    }

    .tgk-credits {
        flex-flow: column nowrap;
        width: 100%;
        align-items: baseline;
        gap: 0.25rem;
        padding-top: 0.5rem;
    }

    .tgk-credits > div {
        width: 100%;
        flex: 1;
    }

    .tgk-credit-title,
    .tgk-credit-name {
        padding: 0;
        font-size: 0.7rem;
    }

    .tgk-credit-name {
        padding: 0 0 0.5rem 0;
    }

    .tgk-credit-buttons {
        margin-right: var(--border-radius);
        max-width: max-content;
        max-height: min-content;
        row-gap: 0.2rem;
        column-gap: 0.75rem;
        margin: 0;
    }

    .tgk-button-small small {
        font-size: 0.7rem !important;
    }

    .tgk-h3 {
        margin-top: 2rem;
        font-size: 1.5rem;
    }

    .tgk-text-notation {
        margin-left: 0;
        font-size: 0.7rem;
    }

    .tgk-item {order:1;}
    .tgk-tags {order:2;}
    .tgk-credits{order:4;}

    /* #endregion */
}










