/*!
Theme Name: Unstoppable Sports Club
Theme URI: https://unstoppablesport.club/
Author: Emil G.
Author URI: https://emgrca.dev/
Description: Custom theme for Unstoppable Sports Club
Version: 0.793
Requires at least: 5.7
Tested up to: 5.7
Requires PHP: 7.0
Text Domain: uscwp
Tags: custom-theme
*/
/*--------------------------------------------------------------
	TABLE OF CONTENTS:
--------------------------------------------------------------*/
/*  #Variables  */
:root {
    /*  colors > brand  */
    --color-brand-a: #35e7e6;
    --color-brand-b: #34c4ff;
    --color-brand-c: #2d68ff;
    --color-brand-d: #0b0d21;
    --color-brand-e: #626b72;
    --color-brand-f: #9ca6b1;
    --color-brand-g: #161a46;
    --color-brand-h: #fafcff;
    /*  colors > helpers */
    --color-white: #ffffff;
    --color-black: #0b0d21;
    /*  colors > transparent */
    --color-transparent-white: rgba(255,255,255,0.1);
    --color-transparent-white-medium: rgba(255,255,255,0.3);
    --color-transparent-white-strong: rgba(255,255,255,0.6);
    --color-transparent-black: rgba(0,0,0,0.1);
    --color-transparent-black-medium: rgba(0,0,0,0.3);
    --color-transparent-black-strong: rgba(0,0,0,0.6);
    /*  colors > text */
    --color-text-strong: #0b0d21;
    --color-text-medium: #626b72;
    --color-text-light: #ccd7e3;
    /*  gradients */
    --gradient-light: linear-gradient(45deg, rgba(52,196,255,1) 0%, rgba(53,231,230,1) 100%);
    --gradient-medium: linear-gradient(45deg, rgba(52,196,255,1) 0%, rgba(45,104,255,1) 100%);
    --gradient-strong: linear-gradient(45deg, rgba(45,104,255,1) 0%, rgba(11,13,33,1) 100%);
    --gradient-gray: linear-gradient(45deg, rgba(98,107,114,1) 0%, rgba(156,166,177,1) 100%);
    --gradient-hero: linear-gradient(0deg, rgba(11,13,33,0.7) 0%, rgba(11,13,33,1) 100%);
	/*  typography  */
    --font-body: 'Roboto', sans-serif;
    --font-heading: 'Jost', sans-serif;
    --font-icons: 'Font Awesome 5 Free';
    --font-weight-regular: 400;
    --font-weight-bold: 700;
    --font-weight-icons: 900;
    --font-size-p: 16px;
    --font-size-h1: 38px;
    --font-size-h2: 28px;
    --font-size-h3: 24px;
    --font-size-h4: 22px;
    --font-size-h5: 20px;
    --font-size-h6: 18px;
    --font-size-s: 14px;
    --line-height-s: 1.3;
    --line-height-m: 1.6;
    --line-height-l: 2;
    /*  various */
    --transition: all 0.2s;
    --border-light: 1px solid rgb(53,231,230,0.1);
    --border-dark: 1px solid rgba(11,13,33,0.05);
    --skew: skew(-10deg);
    --border-box-a: 6px solid var(--color-brand-a);
    --border-box-b: 6px solid var(--color-brand-b);
    --border-box-c: 6px solid var(--color-brand-c);
    /*  shadows */
    --box-shadow-light: 0 2px 10px 0 rgba(11,13,33,0.05);
    --box-shadow-medium: 0 5px 15px 0 rgba(11,13,33,0.07);
    --box-shadow-strong: 0 10px 20px 0 rgba(11,13,33,0.1);
}
@media screen and (min-width:992px) {
    :root {
        --font-size-h1: 50px;
        --font-size-h2: 40px;
        --font-size-h3: 30px;
        --font-size-h4: 24px;
    }
}
/*  #General    */
*,
*:before,
*:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
html,
body {
    margin: 0;
    padding: 0;
}
body {
    background-color: var(--color-brand-d);
    color: var(--color-text-strong);
    font-family: var(--font-body);
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-p);
    line-height: var(--line-height-m);
}
.container.container-s { max-width: 1100px; }
.container { max-width: 1300px; }
.container.container-xl { max-width: 2000px; }
.container.container-xxl { max-width: 100%; }
/*	custom scrollbar */
::-webkit-scrollbar { 
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background-color: var(--color-brand-d);
}
::-webkit-scrollbar-thumb {
    background-color: var(--color-brand-c);
    transition: var(--transition);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-brand-a);
}
/*  -----------------------
    ##Elements
--------------------------  */
img {
    max-width: 100%;
    height: auto;
}
hr {
    display: block;
    margin: 40px auto;
    background-color: var(--color-transparent-white-medium);
    width: 100px;
}
blockquote.wp-block-quote {
    display: block;
    margin: 40px 0;
    padding: 20px 20px 20px 40px;
    border-left: var(--border-box-a);
    transition: var(--transition);
    font-style: italic;
    font-weight: var(--font-weight-regular);
}
blockquote.wp-block-quote:hover {
    border-color: var(--color-brand-c);
}
/*  -----------------------
    ##Typography
--------------------------  */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
}
h6, p {
    font-family: var(--font-body);
}
h1, h2, h3, h4, h5, h6, p {
    clear: both;
    margin: 0 0 20px;
}
h1, h2, h3, h4, h5 { line-height: var(--line-height-s); }
h6, p { line-height: var(--line-height-l); }
strong { font-weight: var(--font-weight-bold); }
h1 strong { font-weight: var(--font-weight-regular); }
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child {
    margin: 0;
}
h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }
p { font-size: var(--font-size-p); }
dfn, cite, em, i { font-style: italic; }
blockquote { margin: 0 1.5em; }
address { margin: 0 0 1.5em; }
pre {
	background: var(--color-brand-f);
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}
code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr,
acronym {
	border-bottom: 1px dotted var(--color-brand-f);
	cursor: help;
}
mark,
ins {
	background: var(--color-brand-f);
	text-decoration: none;
}
small { font-size: 80%; }
big { font-size: 120%; }
/*  -----------------------
    ##Links
--------------------------  */
a {
    transition: var(--transition);
    text-decoration: none;
    position: relative;
}
a,
a:visited {
    color: var(--color-brand-c);
}
a:hover,
a:active {
    color: var(--color-brand-b);
}
.dark a,
.dark a:visited { color: var(--color-brand-a); }
.dark a:hover,
.dark a:active { color: var(--color-white); }
/*  -----------------------
    ##Buttons
--------------------------  */
.btn {
    display: inline-block;
    height: 46px;
    margin: 10px;
    padding: 0 40px;
    line-height: 46px;
    font-weight: var(--font-weight-bold);
    font-family: var(--font-heading);
    font-size: var(--font-size-p);
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}
.btn:before,
.btn:after {
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    content: '';
    transform: var(--skew);
    transition: var(--transition);
    height: 100%;
}
.btn:before {
    left: 0;
    width: 100%;
}
.btn:after {
    left: -1px;
    width: 4px;
}
.btn:hover:after { 
    width: calc(100% + 2px); 
}
/*  dark */
.btn.btn-dark:before { background-color: var(--color-brand-d); }
.btn.btn-dark:after { background-color: var(--color-brand-a); }
.btn.btn-dark,
.btn.btn-dark:visited {
    color: var(--color-white) !important;
}
.btn.btn-dark:hover,
.btn.btn-dark:active {
    color: var(--color-brand-d) !important;
}
/*  light */
.btn.btn-light:before { background-color: var(--color-brand-a); }
.btn.btn-light:after { background-color: var(--color-brand-d); }
.btn.btn-light,
.btn.btn-light:visited {
    color: var(--color-brand-d) !important;
}
.btn.btn-light:hover,
.btn.btn-light:active {
    color: var(--color-white) !important;
}
/*  --------------------------------------------------
    #Masthead
--------------------------------------------------  */
#masthead {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    margin: 0;
    padding: 0;
}
body.admin-bar #masthead { top: 46px; }
@media screen and (min-width:782px) { body.admin-bar #masthead { top: 32px; } }
#masthead ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
/*  #masthead--bar  
-----------------------------*/
#masthead--bar {
    display: block;
    height: 40px;
    background-color: var(--color-brand-d);
    color: var(--color-white);
    font-size: var(--font-size-s);
    line-height: var(--line-height-s);
    padding: 0;
    margin: 0;
}
#masthead--bar ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}
#masthead--bar ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
    line-height: 40px;
    font-size: var(--font-size-s);
}
#masthead--bar ul li a { display: block; }
#masthead--bar ul li a,
#masthead--bar ul li a:visited { color: var(--color-white); }
#masthead--bar ul li a:hover,
#masthead--bar ul li a:active { color: var(--color-brand-a); }
/*  ##masthead--bar-left */
#masthead--bar-left i {
    padding: 0 10px 0 0;
}
/*  ##masthead--bar-right */
#masthead--bar-right { justify-content: flex-end; }
#masthead--bar-right span { 
    display: none;
    padding: 0 15px;
}
@media screen and (min-width:992px) {
    #masthead--bar-right span { display: inline-block; }
}
#masthead--bar-right li {
    border-right: var(--border-light);
}
#masthead--bar-right li i {
    display: block;
    text-align: center;
    width: 40px;
    font-size: var(--font-size-h6);
    line-height: 40px;
    position: relative;
}
#masthead--bar-right li a i {
    transition: var(--transition);
}
#masthead--bar-right li a:hover i,
#masthead--bar-right li a:hover i:before { color: var(--color-white); }
#masthead--bar-right li a:hover i {
    background-color: var(--color-brand-c);
}
/*  #masthead--header
-----------------------------*/
#masthead--header {
    height: 90px;
    margin: -40px 0 0;
}
/*  #masthead--branding  
-----------------------------*/
#masthead .branding {
    position: relative;
    display: inline-block;
    padding: 25px;
    height: 90px;
    text-align: left;
}
#masthead .branding img {
    position: relative;
    z-index: 1;
    width: auto;
    height: 50px;
    max-width: 100%;
    max-height: 100%;
}
#masthead .branding:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-brand-a);
    transform: var(--skew);
}
/*  #masthead--toggle
-----------------------------*/
#masthead--toggle {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0 0 5px;
    cursor: pointer;
    border: none;
    background: transparent;
}
#masthead--toggle span,
#masthead--toggle span:before,
#masthead--toggle span:after {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    height: 4px;
    background: var(--color-white);
    transition: var(--transition);
    border-radius: 2px;
}
#masthead--toggle span {
    width: 30px;
    top: calc(50% - 2px);
}
#masthead--toggle span:before,
#masthead--toggle span:after {
    width: 30px;
}
#masthead--toggle span:before { top: -10px; }
#masthead--toggle span:after { bottom: -10px; }
#masthead--toggle.is-active span {
    background: transparent;
}
#masthead--toggle.is-active span:before,
#masthead--toggle.is-active span:after {
    top: 50%;
    left: 0;
    transform-origin: 50% 50%;
}
#masthead--toggle.is-active span:before {
    transform: rotate(135deg);
}
#masthead--toggle.is-active span:after {
    transform: rotate(220deg);
}
/*  #masthead--main-wrapper
-----------------------------*/
#masthead--main-wrapper {
    display: none;
    background-color: var(--color-brand-d);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    padding-top: 20px;
    padding-bottom: 20px;
}
#masthead--main-wrapper.is-active { display: block; }
#masthead--main-wrapper a,
#masthead--main-wrapper a:visited {
    font-family: var(--font-heading);
    color: var(--color-white);
    text-transform: uppercase;
    font-size: var(--font-size-s);
    padding: 0;
}
#masthead--main-wrapper li.current-menu-item > a,
#masthead--main-wrapper li.current-menu-item > a:visited,
#masthead--main-wrapper li.current-menu-item > a:hover,
#masthead--main-wrapper li.current-menu-item > a:active,
#masthead--main-wrapper a:hover,
#masthead--main-wrapper a:active { 
    color: var(--color-brand-a); 
    padding-left: 5px;
}
@media screen and (min-width:992px) {
    #masthead--main-wrapper.is-active,
    #masthead--main-wrapper { 
        display: flex;
        align-items: center;
        background-color: transparent;
        padding-top: 0;
        padding-bottom: 0;
        box-shadow: none;
    }
}
/*  #masthead--main
-----------------------------*/
#masthead--main > li { border-bottom: var(--border-light); }
#masthead--main > li:last-child { border-bottom: none; }
#masthead--main > li > a {
    display: block;
    padding-top: 12px;
    padding-bottom: 12px;
}
@media screen and (min-width:992px) {
    #masthead--main {
        text-align: right;
        display: block;
        width: 100%;
    }
    #masthead--main > li {
        display: inline-block;
        padding: 0 10px 0;
        border-bottom: none;
    }
    #masthead--main > li > a,
    #masthead--main > li > a:visited,
    #masthead--main > li > a:hover,
    #masthead--main > li > a:active {
        padding: 0 0 10px;
    }
    #masthead--main > li > a:after {
        content: '';
        position: absolute;
        z-index: 3;
        left: initial;
        right: 0;
        bottom: 0;
        height: 3px;
        width: 0;
        background-color: var(--color-brand-a);
        transition: var(--transition);
    }
    #masthead--main > li.current-menu-item > a:after,
    #masthead--main > li > a:hover:after {
        left: 0;
        right: initial;
        width: 100%;
    }
}
/*  --------------------------------------------------
    #Colophon
--------------------------------------------------  */
#colophon,
#colophon--bar,
#colophon--main,
#colophon--copyright {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
}
/*  #colophon--bar 
-----------------------------*/
#colophon--bar {
    display: block;
    background-color: var(--color-brand-c);
}
#colophon--bar ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 40px;
}
#colophon--bar ul li { height: 100%; }
#colophon--bar a,
#colophon--bar a:visited {
    display: block;
    color: var(--color-white);
    background-color: var(--color-brand-c);
    font-size: var(--font-size-s);
    line-height: 42px;
    height: 40px;
    position: relative;
}
#colophon--bar a:hover,
#colophon--bar a:active {
    background-color: var(--color-brand-d);
    color: var(--color-white);
}
/*  #footer--bar-left */
#footer--bar-left li.button a,
#footer--bar-left li.button a:visited {
    background-color: rgba(255,255,255,0.2);
    text-transform: uppercase;
    font-weight: var(--font-weight-bold);
}
#footer--bar-left li.button a:hover,
#footer--bar-left li.button a:active {
    background-color: var(--color-brand-d);
}
#footer--bar-left li a {
    padding: 0;
}
#footer--bar-left li a i {
    width: 40px;
    text-align: center;
}
#footer--bar-left li a span { display: none; }
@media screen and (min-width:992px) {
    #footer--bar-left li a span { display: inline-block; }
    #footer--bar-left li a {
        padding: 0 24px;
    }
    #footer--bar-left li a i { 
        padding: 0 10px 0 0;
        width: auto;
    }
}
/*  #footer--bar-right */
#footer--bar-right {
    justify-content: flex-end;
}
#footer--bar-right li {
    border-right: var(--border-light);
}
#footer--bar-right li a i {
    font-size: var(--font-size-h6);
    width: 40px;
    line-height: 41px;
    text-align: center;
}
/*  #colophon--main
-----------------------------*/
#colophon--main {
    background-color: var(--color-brand-d);
    font-size: var(--font-size-s);
    padding: 50px 0;
}
#colophon--main a,
#colophon--main a:visited {
    color: var(--color-white);
}
#colophon--main a:hover,
#colophon--main a:active {
    color: var(--color-brand-a);
}
/*  #colophon--main .branding */
#colophon--main .branding img {
    display: block;
    max-width: 100px;
    margin: 20px auto;
}
@media screen and (min-width:768px) {
    #colophon--main .branding img { max-width: 100%; }
}
/*  #colophon--main .widget */
#colophon--menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}
#colophon--menu .widget {
    flex: 0 1 auto;
    padding: 20px 40px;
}
#colophon--menu ul {
    list-style: none;
}
#colophon--menu ul li a {
    display: block;
    padding: 5px 15px 5px 0;
    position: relative;
}
#colophon--menu ul li a:hover { padding: 5px 0 5px 15px; }
#colophon--menu ul li a:before {
    content: '\f105';
    font-family: var(--font-icons);
    font-weight: var(--font-weight-icons);
    position: absolute;
    top: 4px;
    left: -10px;
    opacity: 0;
    transition: var(--transition);
}
#colophon--menu ul li a:hover:before {
    left: 0;
    opacity: 1;
}
@media screen and (min-width:768px) {
    #colophon--menu {
        justify-content: flex-start;
        text-align: left;
    }
    #colophon--menu .widget {
        padding: 20px 40px 20px 0;
    }   
}
/*  #colophon--copyright
-----------------------------*/
#colophon--copyright {
    color: var(--color-white);
    background-color: var(--color-brand-d);
    border-top: var(--border-light);
    font-size: var(--font-size-s);
    padding: 20px 0;
}
#colophon--copyright a,
#colophon--copyright a:visited {
    color: var(--color-white);
}
#colophon--copyright a:hover,
#colophon--copyright a:active {
    color: var(--color-brand-a);
}
#colophon--copyright ul {
    list-style: none;
    margin: 0;
}
#colophon--copyright ul li {
    display: inline-block;
    margin: 0 15px 0 0;
}
/*  --------------------------------------------------
    #Hero
--------------------------------------------------  */
#hero,
#hero .hero--content {
    display: block;
    position: relative;
    margin: 0;
}
#hero {
    padding: 0;
    background-image: url('assets/imgs/default-hero.jpg');
    background-color: var(--color-brand-d);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    color: var(--color-white);
    text-align: center;
}
#hero a,
#hero a:visited {
    color: var(--color-brand-a);
}
#hero a:hover,
#hero a:active {
    color: var(--color-white);
}
#hero .hero--content {
    padding: 200px 0 100px;
    z-index: 2;
    transition: var(--transition);
}
@media screen and (min-width:768px) {
    #hero.hero--single .hero--content {
        padding: 200px 0 150px;
    }
	#hero.hero--single.hero--single-no-thumbnail .hero--content {
        padding: 200px 0 50px;
    }
    #hero.hero--single.scrolled .hero--content {
        padding: 150px 0 150px;
    }
	#hero.hero--single.hero--single-no-thumbnail.scrolled .hero--content {
        padding: 150px 0 50px;
    }
}
@media screen and (min-width:992px) {
    #hero .hero--content {
        padding: 250px 0 120px;
    }
    #hero.hero--single .hero--content {
        padding: 250px 0 350px;
    }
	#hero.hero--single.hero--single-no-thumbnail .hero--content {
        padding: 250px 0 50px;
    }
    #hero.hero--single.scrolled .hero--content {
        padding: 150px 0 350px;
    }
	#hero.hero--single.hero--single-no-thumbnail.scrolled .hero--content {
        padding: 150px 0 50px;
    }
    #hero.hero--custom .hero--content {
        padding: 250px 0;
    }
    #hero.hero--custom.scrolled .hero--content {
        padding: 250px 0 150px;
    }
}
#hero .hero--overlay {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-brand-d);
    opacity: 0.8;
}
#hero:before,
#hero:after {
    display: block;
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
}
#hero:before {
    left: 0;
    background: linear-gradient(90deg, rgba(11,13,33,1) 0%, rgba(11,13,33,0) 100%);
}
#hero:after {
    right: 0;
    background: linear-gradient(90deg, rgba(11,13,33,0) 0%, rgba(11,13,33,1) 100%);
}
@media screen and (min-width:768px) {
    #hero:before,
    #hero:after {
        content: '';
        width: 250px;
    }
}
@media screen and (min-width:992px) {
    #hero:before,
    #hero:after {
        width: 300px;
    }
}
@media screen and (min-width:1200px) {
    #hero:before,
    #hero:after {
        width: 500px;
    }
}
/*  --------------------------------------------------
    #Content
--------------------------------------------------  */
#content {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: var(--color-white);
}
#content.page {
    padding: 60px 0;
}
/*  --------------------------------------------------
    #Single
--------------------------------------------------  */
#hero.hero--single h1 {
    font-size: var(--font-size-h2);
    text-transform: uppercase;
    transition: var(--transition);
}
#hero.hero--single.scrolled h1 {
    transform: scale(0.9)
}
.single--featured-image {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 200px;
    margin: -100px 0 0 0;
    box-shadow: var(--box-shadow-light);
    transition: var(--transition);
}
.single--featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (min-width:768px) {
    .single--featured-image {
        height: 300px;
        margin: -150px 0 0 0;
    }
    #content.scrolled .single--featured-image {
        height: 200px;
    }
}
@media screen and (min-width:992px) {
    .single--featured-image {
        height: 550px;
        margin: -350px 0 0 0;
    }
    #content.scrolled .single--featured-image {
        height: 400px;
    }
}
#hero.hero--single .single--meta { 
    position: relative;
    padding: 20px 0; 
}
#hero.hero--single .single--meta:before {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% - 25px);
    width: 50px;
    height: 1px;
    background-color: rgba(255,255,255,0.1);
}
#hero .meta--tag a,
#hero .meta--tag a:visited {
    color: var(--color-white);
}
#hero .meta--block {
    color: var(--color-text-light);
    font-size: var(--font-size-s);
    text-transform: uppercase;
}
.single--tags {
    font-size: var(--font-size-s);
    text-transform: uppercase;
    color: var(--color-brand-f);
    display: block;
    border-top: var(--border-dark);
    padding: 16px 0 15px;
    margin: 30px auto 0;
}
.single--tags a,
.single--tags a:visited { 
    color: var(--color-brand-f);
    padding: 0 0 0 10px;
    margin: 0;
}
.single--tags a:hover,
.single--tags a:active { color: var(--color-brand-c); }
/*  meta--share */
.meta--share {
    display: block;
    padding: 20px 0;
    margin: 0 0 30px;
    border-bottom: var(--border-dark);
    text-align: center;
}
.meta--share > span:first-child {
    font-family: var(--font-heading);
    color: var(--color-text-light);
    text-transform: uppercase;
    font-size: var(--font-size-s);
    padding: 0 0 10px;
    display: block;
    text-align: center;
}
.a2a_kit .a2a_svg,
.meta--share .a2a_svg {
    border-radius: 0 !important;
    padding: 4px !important;
    transition: var(--transition);
}
@media screen and (min-width:568px) {
    .meta--share {
        text-align: right;
    }
    .meta--share > span:first-child {
        padding: 0 15px 0;
        display: inline-block;
        text-align: right;
    }
}
/* block-related */
#block--related {
    padding: 80px 0 40px;
    background-color: #fafcff;
}

.feed-item-s {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
.feed-item-s .feed-item-s--overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    background: var(--color-brand-g);
}
.feed-item-s .feed-item-s--content {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    height: 100%;
    padding: 30px;
}
.feed-item-s .feed-item-s--content > div {
    flex: 0 0 100%;
    width: 100%;
}
.feed-item-s .feed-item-s--content h4 {
    display: block;
    font-size: var(--font-size-h5);
    color: var(--color-white);
    padding: 0;
}
.feed-item-s .feed-item-s--content h4 a {
    display: block;
    position: relative;
    width: 100%;
    padding-right: 30px;
}
.feed-item-s .feed-item-s--content h4 a,
.feed-item-s .feed-item-s--content h4 a:visited {
    color: var(--color-white);
}
.feed-item-s .feed-item-s--content h4 a:hover,
.feed-item-s .feed-item-s--content h4 a:active {
    color: var(--color-brand-a);
}
.feed-item-s .feed-item-s--content h4 i {
    font-size: var(--font-size-s);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
    color: var(--color-brand-a);
}
.feed-item-s:hover .feed-item-s--content h4 i { 
    right: -10px;
}
/* comments */
#comment-wrapper {
    margin: 0 0 40px;
    padding: 80px 0 40px;
    border-top: var(--border-dark);
}
.comments-title,
.comment-reply-title {
    text-transform: uppercase;
    font-size: var(--font-size-h4);
    line-height: var(--line-height-s);
}
.comments-title.title-border {
    padding-bottom: 20px;
    margin-bottom: 40px;
}
.comments-title.title-border:after {
    left: 0;
}
ol.comment-list,
ol.comment-list ol {
    list-style: none;
    font-size: var(--font-size-s);
    line-height: var(--line-height-s);
    margin: 0;
    padding: 0;
}
#comments > ol.comment-list {
    border-bottom: var(--border-dark);
    padding: 0 0 80px 0;
    margin: 0 0 60px 0;
}
ol.comment-list li {
    background-image: none;
    padding: 0;
}
ol.comment-list ol.children > li {
    margin: 0 0 0 40px;
    position: relative;
}
ol.comment-list ol.children > li:before {
    content: '\f3be';
    font-family: var(--font-icons);
    font-weight: var(--font-weight-icons);
    position: absolute;
    top: 10px;
    left: -30px;
    font-size: 20px;
    color: var(--color-brand-f);
    transform: scaleX(-1) rotate(90deg);
    transition: var(--transition);
}
ol.comment-list ol.children > li:hover:before {
    color: var(--color-brand-c);
}

@media screen and (min-width:992px) {
    ol.comment-list ol.children > li {
        margin: 0 0 0 60px;
    }
}
.comment-body {
    padding: 30px;
    margin: 0;
    border-top: var(--border-dark);
    border-left: var(--border-dark);
    transition: var(--transition);
}
.comment-body:hover {
    border-top-color: var(--color-brand-c);
    border-left-color: var(--color-brand-c);
}
.comment-body .comment-meta {
    padding: 0 0 30px 0;
}
.comment-body .comment-author {
    font-size: var(--font-size-s);
    line-height: var(--line-height-l);
}
.comment-body .comment-metadata {
    font-size: var(--font-size-s);
}
.comment-body .comment-metadata a,
.comment-body .comment-metadata a:visited { color: var(--color-brand-f); }
.comment-body .comment-metadata a:hover,
.comment-body .comment-metadata a:active { color: var(--color-brand-c); }
.comment-body .comment-author img {
    float: left;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    margin: 0 15px 0 0;
}

.comment-content {
    padding: 0 0 20px 0;
}
.comment-content h1,
.comment-content h2,
.comment-content h3,
.comment-content h4,
.comment-content h5,
.comment-content h6 {
    font-size: var(--font-size-h6);
    line-height: var(--line-height-m);
}
.comment-content p,
.comment-content blockquote,
.comment-content table,
.comment-content li {
    font-size: var(--font-size-s);
    line-height: var(--line-height-l);
}

@media screen and (min-width:992px) {
    .comment-content h1,
    .comment-content h2,
    .comment-content h3,
    .comment-content h4,
    .comment-content h5,
    .comment-content h6 {
        font-size: var(--font-size-p);
        line-height: var(--line-height-m);
    }
    .comment-content p,
    .comment-content blockquote,
    .comment-content table,
    .comment-content li {
        font-size: var(--font-size-p);
        line-height: var(--line-height-l);
    }
}

.comment-content a {
    word-wrap: break-word;
}
.comment-body .reply {
    padding: 0 0 10px 0;
    font-family: var(--font-heading);
    font-size: var(--font-size-p);
    text-transform: uppercase;
    text-align: right;
}
.comment-body .reply a,
.comment-body .reply a:visited { color: var(--color-brand-f); }
.comment-body .reply a:hover,
.comment-body .reply a:active { color: var(--color-brand-c); }
#comments .navigation {
    padding: 30px 0 30px 0;
    border-top: var(--border-dark);
}
#comments .navigation .nav-links {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
#comments .navigation .nav-links > div {
    flex: 1 1 auto; 
    width: 50%;
}
#comments .navigation .nav-links > div:last-child { text-align: right; }




#respond {
    margin: 0;
    padding: 0;
}
#respond #reply-title { margin: 0; }
#respond p {
    font-size: var(--font-size-p);
}
#respond p.comment-notes {
    margin: 0 0 40px 0;
}
.comment-respond textarea,
.comment-respond label,
.comment-respond input {
    display: block;
    width: 100%;
}
.comment-respond textarea,
.comment-respond input {
    margin: 10px 0;
}
.comment-respond label {
    font-size: var(--font-size-s);
    line-height: var(--line-height-s);
    color: var(--color-brand-f);
    font-weight: bold;
}
#commentform {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
#commentform > p {
    flex: 0 1 auto;
    width: 100%;
    margin: 0 0 20px 0;
}
@media screen and (min-width:768px) {
    #commentform > p.comment-form-author,
    #commentform > p.comment-form-email,
    #commentform > p.comment-form-url {
        width: 30%;
    }
    #commentform > p.comment-form-cookies-consent { width: 60%; }
    #commentform > p.form-submit { 
        width: 40%;
    }
}
@media screen and (min-width:992px) {
    #commentform > p.comment-form-author,
    #commentform > p.comment-form-email,
    #commentform > p.comment-form-url {
        width: 100%;
    }
}
@media screen and (min-width:1200px) {
    #commentform > p.comment-form-author,
    #commentform > p.comment-form-email,
    #commentform > p.comment-form-url {
        width: 30%;
    }
}

/*  single navigation */
.single--navigation {
    margin: 0;
    padding: 20px 0;
    border-top: var(--border-dark);
    font-size: var(--font-size-h6);
}
.single--navigation .nav-links {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
.single--navigation .nav-links .nav-previous {
    flex: 1 1 auto;
    width: 50%;
}
.single--navigation .nav-links .nav-next {
    flex: 1 1 auto;
    width: 50%;
    justify-self: flex-end;
    text-align: right;
}
.single--navigation .nav-links .nav-subtitle {
    display: block;
    font-size: var(--font-size-s);
}
.single--navigation .nav-links .nav-title {
    font-size: var(--font-size-h5);
    font-family: var(--font-heading);
}
.single--navigation .nav-links a,
.single--navigation .nav-links a:visited { 
    color: var(--color-brand-e);
}
.single--navigation .nav-links a:hover,
.single--navigation .nav-links a:focus {
    color: var(--color-brand-c);
}
/*  --------------------------------------------------
    #index
--------------------------------------------------  */
#hero.archive .hero--content {
    padding: 200px 0 150px;
}
#content.page-archive > .container {
    position: relative;
    z-index: 3;
    top: -150px;
    margin-bottom: -120px;
}
/*  --------------------------------------------------
    #frontpage
--------------------------------------------------  */
#hero.hero--frontpage .hero--content {
    padding: 200px 0 400px;
}
@media screen and (min-width:768px) {
    #hero.hero--frontpage .hero--content {
        padding: 250px 0 400px;
    }
    #hero.hero--frontpage.scrolled .hero--content {
        padding: 150px 0 300px;
    }
}
#content.page--frontpage { padding: 0; }
#frontpage--sports {
    padding: 0 0 100px;
    margin: -250px 0 0 0;
    position: relative;
    z-index: 2;
}
/*  about */
#about {
    background-image: url('images/about-bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    color: var(--color-white);
    padding: 60px 0 0;
    margin: 0;
    overflow: hidden;
}
#about .about-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    max-width: 2000px;
    padding: 0;
    margin: 0 auto;
}
#about .about-container > div {
    flex: 1 1 auto;
    width: 100%;
}
#about .about-container > div.about-content {
    padding: 0 15px 50px;
}
#about .about-container > div.about-image {
    padding: 0;
}
@media screen and (min-width:992px) {
    #about { padding: 60px 0; }
    #about .about-container > div { 
        width: 50%;
    }
}
@media screen and (min-width:1200px) {
    #about .about-container > div.about-content {
        max-width: 600px;
        margin-left: calc(50% - 600px);
    }
}
@media screen and (min-width:1300px) {
    #about .about-container > div.about-content {
        max-width: 650px;
        margin-left: calc(50% - 650px);
    }
}



/*  latest news */
#latest-news {
    padding: 0;
    margin: 40px auto;
	background-color: var(--color-brand-h);
}
#latest-news .latest-news--inner {
    padding: 30px 0 20px;
    max-width: 1350px;
    margin: 0 auto;
    background-image: url('images/news-bg.svg');
    background-position: -300px 50%;
    background-repeat: no-repeat;
    background-size: auto 100%;
    padding-bottom: 30px;
}
@media screen and (min-width:1350px) {
	#latest-news { margin: 60px auto 20px; }
    #latest-news .latest-news--inner {
        background-position: 0 50%;
    }
}
#latest-news h3 {
    margin-bottom: 20px;
}
#latest-news h3:after {
    left: initial;
    right: 0;
}
@media screen and (max-width:568px) {
	#latest-news h3 {
		color: #fff;
	}	
	#latest-news h3:after {
    	left: 0;
    	right: initial;
	}
}
/*  feed-item */
.feed-item { 
    background-color: var(--color-white);
    box-shadow: var(--box-shadow-light);
    transition: var(--transition);
    position: relative;
    top: 0;
    height: 100%;
    padding: 0 0 60px 0;
}
.feed-item:hover {
    box-shadow: var(--box-shadow-strong);
    top: -5px;
}
#latest-news .feed-item-wrapper .feed-item--thumbnail { display: none; }
#latest-news .feed-item-wrapper:nth-child(4),
#latest-news .feed-item-wrapper:nth-child(5),
#latest-news .feed-item-wrapper:nth-child(6) {
    display: none;
}
@media screen and (min-width:768px) {
    #latest-news .feed-item-wrapper .feed-item--thumbnail { display: block; }
    #latest-news .feed-item-wrapper:nth-child(4),
    #latest-news .feed-item-wrapper:nth-child(5),
    #latest-news .feed-item-wrapper:nth-child(6) {
        display: block;
    }
    #latest-news .feed-item-wrapper:nth-child(3) .feed-item--thumbnail,
    #latest-news .feed-item-wrapper:nth-child(4) .feed-item--thumbnail,
    #latest-news .feed-item-wrapper:nth-child(5) .feed-item--thumbnail,
    #latest-news .feed-item-wrapper:nth-child(6) .feed-item--thumbnail {
        display: none;
    }
}
@media screen and (min-width:992px) {
    #latest-news .feed-item-wrapper:nth-child(3) .feed-item--thumbnail {
        display: block;
    }
    #latest-news .feed-item-wrapper:nth-child(4) .feed-item--thumbnail,
    #latest-news .feed-item-wrapper:nth-child(5) .feed-item--thumbnail,
    #latest-news .feed-item-wrapper:nth-child(6) .feed-item--thumbnail {
        display: none;
    }
}
.feed-item--header h4.title-link a,
.feed-item--header h4.title-link a:visited {
    color: var(--color-brand-d);
}
.feed-item:hover h4.title-link a,
.feed-item:hover h4.title-link a:visited,
.feed-item:hover h4.title-link a:hover,
.feed-item:hover h4.title-link a:active {
    color: var(--color-brand-c);
}
.feed-item--thumbnail { margin: 0 0 -10px 0;}
.feed-item--header {
    padding: 20px 40px 0 40px;
}
.feed-item--header h4.title-link {
    border-bottom: var(--border-dark);
    padding: 0 0 10px 0;
    margin: 0;
    font-family: var(--font-body);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-h5);
}
.feed-item--content {
    padding: 10px 40px;
}
.feed-item--content p {
    font-size: var(--font-size-s);
}
.feed-item--footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
}
.feed-item--footer .meta {
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-s);
    color: var(--color-text-light);
}
.feed-item .feed-item--footer a,
.feed-item .feed-item--footer a:visited {
    position: relative;
    right: 0;
    color: var(--color-brand-f);
}
.feed-item:hover .feed-item--footer a,
.feed-item:hover .feed-item--footer a:visited {
    position: relative;
    right: -10px;
    color: var(--color-brand-c);
}

/*  subscribe */
#subscribe {
    padding: 60px 0;
}
#subscribe .subscribe-container {
    max-width: 1100px;
    padding: 20px;
    margin: 0 auto;
    background-image: url('images/subscribe-bg.jpg');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: 0 100%;
    background-color: var(--color-white);
    box-shadow: var(--box-shadow-medium);
    transition: var(--transition);
}
#subscribe .subscribe-container:hover { box-shadow: var(--box-shadow-strong); }
/*  #coaches */
#coaches {
    padding: 80px 0 20px;
}
#coaches .coaches-wrapper {
    background-image: url('images/coach-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 100%;
    padding: 0 0 20px;
    margin: 120px 0 0;
}
#coaches .coaches-wrapper > .container {
    position: relative;
    top: -60px;
}
.type-usc_coaches img {
    object-position: top;
}
/* coach item */
.coach-item {
    margin: 0 0 30px;
    height: calc(100% - 30px);
}
.coach-item .coach-item--image:after {
    content: url('assets/imgs/unstoppable-icon-light.svg');
    position: absolute;
    z-index: 2;
    top: 30px;
    right: 40px;
    width: 60px;
    height: auto;
}
.coach-item .coach-item--header {
    margin: -40px 0 0;
    position: relative;
    z-index: 2;
}
.coach-item--header h4 {
    text-transform: uppercase;
}
.coach-item:hover h4.title-border:after {
    background-color: var(--color-brand-c);
}
.coach-item h4 a,
.coach-item h4 a:visited {
    color: var(--color-brand-d);
}
.coach-item:hover h4 a,
.coach-item:hover h4 a:visited {
    color: var(--color-brand-c);
}
.coach-item .meta--tag { margin-bottom: 30px; }
.coach-item .meta--tag span { 
    background-color: var(--color-brand-d);
}
.coach-item:hover .meta--tag span { background-color: var(--color-brand-c); }
.coach-item--content {
    padding: 20px 40px 30px;
}
.coach-item--content p {
    font-size: var(--font-size-s);
}

/*  partners */
#partners {
    display: block;
    max-width: 1800px;
    margin: 0 auto;
    padding: 80px 0 40px;
}
#partners .slick-track {
    display: flex;
    align-items: center;
}
#partners .slick-slide {
    text-align: center;
    position: relative;
    top: 0;
    transition: var(--transition);
}
#partners .slick-slide:hover {
    top: -5px;
} 

/*  --------------------------------------------------
    #Forms
--------------------------------------------------  */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select {
    display: block;
    width: 100%;
    border: var(--border-dark);
    padding: 12px 15px;
    margin: 10px 0;
    font-size: var(--font-size-s);
    line-height: 1;
    transition: var(--transition);
    border-color: var(--color-text-light);
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus,
select:focus {
    border-color: var(--color-brand-c);
    outline: 0;
}
label {
    display: block;
    font-family: var(--font-body);
    font-size: var(--font-size-s);
    line-height: var(--line-height-s);
    padding: 0 20px;
    margin: 5px 0;
}
textarea { 
    height: auto;
}
input::placeholder,
textarea::placeholder {
    font-size: var(--font-size-s);
    color: var(--color-brand-f);
}
input[type="checkbox"] {
    display: inline;
    width: 16px;
    height: 16px;
    padding: 0;
    margin: -1px 10px 0 0;
    float: left;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    display: inline-block;
    width: auto;
    height: 44px;
    line-height: 44px;
    padding: 0 30px;
    margin: 10px 0;
    font-size: var(--font-size-s);
    line-height: 1;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    border: 1px solid var(--color-brand-a);
    background-color: var(--color-brand-a);
    transition: var(--transition);
    color: var(--color-brand-d);
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
    background-color: var(--color-brand-c);
    border-color: var(--color-brand-c);
    color: var(--color-white);
}
button,
input,
select,
optgroup,
textarea {
	font-family: var(--font-body);
}
/*  --------------------------------------------------
    #Helpers
--------------------------------------------------  */
.text-faded > p {
    color: var(--color-text-medium);
    transition: var(--transition);
}
.text-faded:hover > p {
    color: var(--color-text-strong);
}
.aspect-ratio-square,
.aspect-ratio-wide,
.aspect-ratio-tall {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.aspect-ratio-square { padding-top: 70%; }
.aspect-ratio-wide { padding-top: 50%; }
.aspect-ratio-tall { padding-top: 85%; }
.aspect-ratio-tall-xl { padding-top: 125%; }
.aspect-ratio-square > img,
.aspect-ratio-wide > img,
.aspect-ratio-tall > img,
.aspect-ratio-tall-xl > img,
.aspect-ratio-square > div,
.aspect-ratio-wide > div,
.aspect-ratio-tall > div,
.aspect-ratio-tall-xl > div,
.aspect-ratio-square > a,
.aspect-ratio-wide > a,
.aspect-ratio-tall > a,
.aspect-ratio-tall-xl > a,
.aspect-ratio-square > div > img,
.aspect-ratio-wide > div > img,
.aspect-ratio-tall > div > img,
.aspect-ratio-tall-xl > div > img,
.aspect-ratio-square > a > img,
.aspect-ratio-wide > a > img,
.aspect-ratio-tall > a > img,
.aspect-ratio-tall-xl > a > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.aspect-ratio-square figcaption,
.aspect-ratio-wide figcaption, 
.aspect-ratio-tall figcaption, 
.aspect-ratio-tall-xl figcaption { 
    display: none; 
}
.image-cover,
.image-cover > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.text-brand-a { color: var(--color-brand-a); }
.text-brand-b { color: var(--color-brand-b); }
.text-brand-c { color: var(--color-brand-c); }
.meta--tag span,
.meta--tag a {
    display: inline-block;
    margin: 0 5px 0 0;
    font-size: 10px;
    line-height: 1;
    text-transform: uppercase;
    border-radius: 15px;
    padding: 5px 10px;
}
.meta--tag span,
.meta--tag a,
.meta--tag a:visited { 
    color: var(--color-white);
    background-color: var(--color-brand-c);
    transition: var(--transition);
}
.meta--tag span:hover,
.meta--tag a:hover, 
.meta--tag a:active { 
    color: var(--color-white);
    background-color: var(--color-brand-d);
}
.hero--inner .meta--tag span,
.hero--inner .meta--tag a,
.hero--inner .meta--tag a:visited {
    background-color: var(--color-blue-medium-alt);
}
.title-border {
    position: relative;
    padding-bottom: 10px;
}
.title-border:after {
    content: '';
    height: 4px;
    width: 40px;
    position: absolute;
    bottom: 0;
    left: calc(50% - 20px);
}
@media screen and (min-width:768px) {
    .text-md-start .title-border:after { left: 0; }
}
@media screen and (min-width:992px) {
    .text-lg-start .title-border:after { left: 0; }
}
.title-border-a:after { background-color: var(--color-brand-a); }
.title-border-b:after { background-color: var(--color-brand-b); }
.title-border-c:after { background-color: var(--color-brand-c); }
.title-border-d:after { background-color: var(--color-brand-d); }
/*  hover animation */
.move-up-on-hover {
    position: relative;
    top: 0;
    transition: var(--transition);
}
.move-up-on-hover:hover { top: -3px; }
/*  shadow animation */
.shadow-animation { 
    background-color: var(--color-white);
    box-shadow: var(--box-shadow-light);
    transition: var(--transition);
    position: relative;
    top: 0;
}
.shadow-animation:hover {
    box-shadow: var(--box-shadow-strong);
    top: -5px;
}













/*  ##Carousels  */
.carousel--item { height: 100%; }
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
    padding: 20px 0;
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus { outline: none; }
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
}
.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}
.slick-track:after { clear: both; }
.slick-loading .slick-track {
    visibility: hidden;
}
.slick-slide {
    display: none;
    float: left;
    min-height: 1px;
    margin: 15px;
    height: inherit;
}
.slick-slider .slick-slide { margin-bottom: 20px; }
.slick-slider.slick-dotted .slick-slide { margin-bottom: 20px; }
.slick-slide > div { 
    display: flex;
    height: 100%;
}
.slick-slide img { display: inline-block; }
.slick-slide.slick-loading img { display: none; }
.slick-slide.dragging img { pointer-events: none; }
.slick-initialized .slick-slide { display: block; }
.slick-loading .slick-slide { visibility: hidden; }
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden { display: none; }
/*  arrows  */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 50px;
    height: 50px;
    padding: 0;
    margin: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    margin: 0;
    padding: 0;
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25;
}
.slick-prev:before,
.slick-next:before {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    font-family: var(--font-icons);
    font-weight: var(--font-weight-icons);
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    opacity: .75;
    color: var(--color-brand-f);
    background-color: rgba(0,0,0,0.05);
    transition: var(--transition);
}
.slick-prev:hover:before,
.slick-next:hover:before {
    background-color: rgba(0,0,0,0.1);
    color: var(--color-brand-c);
}
.slick-prev { left: 0; }
.slick-prev:before { content: '\f104'; }
.slick-next { right: 0; }
.slick-next:before { content: '\f105'; }
/*  dots    */
.slick-dots {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    background-image: none;
}
.slick-dots li button {
    position: relative;
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 0 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}
.slick-dots li button:before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background-color: var(--color-text-light);
    transition: var(--transition);
}
.slick-dots li.slick-active button:before,
.slick-dots li button:hover:before {
    background-color: var(--color-brand-c);
}
@media screen and (min-width:768px) {
    .slick-slider {
        padding: 20px 0;
    }
}










/*
*   ABOUT 
*/
#about-join {
    background: var(--color-brand-d);
    background: linear-gradient(90deg, rgba(11,13,33,1) 0%, rgba(22,26,70,1) 100%);
    color: var(--color-white);
}
#about-join .section--join {
    padding-top: 130px;
}
#about-intro {
    padding: 100px 0 0;
    margin-bottom: -50px;
}
#about-intro img {
    border-bottom: var(--border-box-a);
}
#about-intro img:hover {
    border-bottom-color: var(--color-brand-c);
}
#coaches.about {
    padding: 100px 0 60px;
}
#coaches.about .coaches-wrapper {
    background-image: none;
    margin: 60px 0 0;
}
#coaches.about .coaches-wrapper .container { top: 0; }
#about-news {
    background-color: var(--color-brand-h);
    padding: 100px 0 40px;
}
#about-news #latest-news {
    margin: 0 auto;
}


/* 
*   Coaches
*/
#coaches.coaches .coaches-wrapper {
    background-image: none;
    margin: 60px 0 40px;
}
#coaches.coaches .coaches-wrapper .container { top: 0; }
#coaches-join {
    background: var(--color-brand-h);
}
.feed--coach-item .coach-item--image img {
    object-position: top;
}
/*  coach single */
#hero.coach .hero--content {
    padding: 200px 0 300px;
}
#hero.coach h5 {
    font-size: var(--font-size-h6);
    line-height: var(--line-height-l);
}
@media screen and (min-width:768px) {
    #hero.coach .hero--content {
        padding: 250px 0 350px;
    }
    #hero.coach .hero--content h5 {
        font-size: var(--font-size-h4);
        line-height: var(--line-height-m);
    }
}
#content.coach .coach--image {
    border-bottom: var(--border-box-c);
    margin-top: -50px;
    margin-bottom: 20px;
}
@media screen and (min-width:768px) {
    #content.coach.scrolled .coach--image {
        position: sticky;
        top: 30px;
    }
}
#content.coach .coach--image:hover {
    border-color: var(--color-brand-a);
}
#content.coach > .container {
    position: relative;
    z-index: 9;
    margin-top: -200px;
    margin-bottom: 100px;
}
#content.coach .coach--content .coach--content-inner {
    background: var(--color-white);
    padding: 40px;
    margin: 20px 0;
}
#content.coach .coach--content .coach--content-title {
    color: var(--color-white);
}


/* 
*   Practices
*/
#practices-intro {
    position: relative;
    z-index: 9;
}
#practices-intro .practice-table {
    background-color: var(--color-white);
    box-shadow: var(--box-shadow-medium);
    padding: 20px 30px 60px 30px;
    margin: -80px 0 0;
    display: block;
    overflow-x: auto;
    touch-action: pan-x;
    border-bottom: var(--border-box-c);
}
#practices-intro table {
    text-align: left;
    width: 100%;
    min-width: 900px;
}
#practices-intro table thead th,
#practices-intro table tbody td {
    text-align: left;
}
#practices-intro table thead th {
    font-family: var(--font-heading);
    font-size: var(--font-size-p);
    text-transform: uppercase;
    color: var(--color-brand-e);
    padding: 10px 20px;
}
#practices-intro table td {
    transition: var(--transition);
    background-color: rgba(0,0,0,0);
    border: var(--border-dark);
    border-bottom-width: 2px;
    padding: 30px 20px;
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-s);
}
#practices-intro table td:hover {
    background-color: rgba(0,0,0,0.02);
    border-bottom-color: var(--color-brand-a);
    padding: 25px 20px 35px;
}
#practices-intro table tbody td strong,
#practices-intro table tbody td i {
    display: block;
    font-weight: var(--font-weight-regular);
}
#practices-intro table tbody td strong {
    font-family: var(--font-heading);
    color: var(--color-brand-e);
}
#practices-intro table tbody td:hover strong {
    color: var(--color-brand-c);
}
#practices-intro table tbody td i {
    margin: 5px 0 15px;
}
#about-join.practice {
    margin-top: -50px;
}
/*  
*   SECTIONS 
*/
/*  sports */
.sports-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: var(--color-white);
    box-shadow: var(--box-shadow-medium);
}
.sports-item {
    flex: 0 1 auto;
    width: 100%;
    padding: 0 0 15px;
    margin: 0;
    text-align: center;
}
@media screen and (min-width:568px) {
    .sports-item {
        width: 50%;
        padding: 0 15px;
        margin: 15px 0;
        border-right: var(--border-dark);
    }
    .sports-item:nth-child(even) {
        border-right: none;
    }
}
@media screen and (min-width:992px) {
    .sports-item {
        width: 25%;
    }
    .sports-item:nth-child(even) { border-right: var(--border-dark); }
    .sports-item:last-child { border-right: none; }
}
.sports-item .sports-item--thumbnail {
    width: 100%;
    height: 200px;
}
.sports-item .sports-item--thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sports-item .sports-item--icon {
    display: block;
    margin: -30px auto 0;
    width: 60px;
    height: 60px;
    line-height: 56px;
    text-align: center;
    position: relative;
    z-index: 1;
    top: 0;
    transition: var(--transition);
}
.sports-item:hover .sports-item--icon { top: -5px; }
.sports-item .sports-item--icon:before,
.sports-item .sports-item--icon:after {
    content: '';
    display: block;
    border-radius: 40px;
    position: absolute;
    z-index: -1;
}
.sports-item .sports-item--icon:before {
    width: 70px;
    height: 70px;
    top: -5px;
    left: -5px;
    background-color: var(--color-white);
    transform-origin: 50% 50%;
    transition: var(--transition);
}
.sports-item .sports-item--icon:after {
    width: 60px;
    height: 60px;
    top: 0;
    left: 0;
    background-color: var(--color-brand-a);
}
.sports-item:hover .sports-item--icon:before {
    transform: scale(1.1);
}
.sports-item .sports-item--content {
    padding: 10px 20px;
}
.sports-item .sports-item--content h4 {
    font-size: var(--font-size-h5);
    text-transform: uppercase;
}
.sports-item .sports-item--content p {
    font-size: var(--font-size-s);
    line-height: var(--line-height-l);
}
/*  signup */
.section--join {
    padding: 80px 0;
}






/*  
*   TESTIMONIALS 
*/
#testimonials {
    padding: 60px 0;
    background-color: var(--color-brand-h);
}
.testimonial--item .testimonial--content {
    background-color: var(--color-white);
    padding: 40px 40px 100px 40px;
    position: relative;
    height: calc(100% - 100px);
}
.testimonial--item .testimonial--content:after {
    content: '”';
    font-family: Arial, Helvetica, sans-serif;
    font-size: 350px;
    line-height: 1;
    opacity: 0.07;
    position: absolute;
    top: -10px;
    left: 15px;
    transition: var(--transition);
    color: var(--color-brand-c);
}
.testimonial--item:hover .testimonial--content:after { opacity: 0.02; }
.testimonial--item h4 {
    font-size: var(--font-size-h6);
    color: var(--color-brand-g);
}
.testimonial--item h5 {
    margin: 20px 0 0 0;
    padding: 0 40px;
    font-size: var(--font-size-h6);
    color: var(--color-brand-g);
}
.testimonial--item p {
    font-size: var(--font-size-s);
    padding-right: 20px;
}
.testimonial--item img {
	width: 114px;
	height: 114px;
	object-fit: cover;
    position: absolute;
    bottom: -70px;
    right: 20px;
    border-radius: 50%;
    border: 8px solid #fff;
    transition: var(--transition);
    display: block;
    margin: 10px;
    box-shadow: 0 5px 5px rgba(0,0,0,0.05);
}
.testimonial--item .shadow-animation:hover img {
    box-shadow: 0 10px 10px rgba(0,0,0,0.05);
}






































/*  
*   Woocommerce
*/
/*  general */
#content.woocommerce .woocommerce--container {
    padding: 20px;
    background-color: var(--color-white);
    position: relative;
    z-index: 9;
}
@media screen and (min-width:768px) {
    #content.woocommerce .woocommerce--container { padding: 40px; }
}
/*  pages */
#content.page.woocommerce .woocommerce--container { 
    margin: -100px 0 0 0; 
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
#content.page.woocommerce .woocommerce--container .woocommerce-result-count,
#content.page.woocommerce .woocommerce--container .woocommerce-ordering,
#content.page.woocommerce .woocommerce--container .page-title,
#content.page.woocommerce .woocommerce--container .woocommerce-notices-wrapper,
#content.page.woocommerce .woocommerce--container .products {
    flex: 1 1 auto;
    width: 100%;
}
#content.page.woocommerce .woocommerce--container .page-title {
    text-align: center;
    color: var(--color-white);
    margin: -150px 0 0 0;
}
@media screen and (min-width:768px) {
    #content.page.woocommerce .woocommerce--container .page-title,
    #content.page.woocommerce .woocommerce--container .woocommerce-notices-wrapper,
    #content.page.woocommerce .woocommerce--container .products {
        width: 100%;
    }
    #content.page.woocommerce .woocommerce--container .woocommerce-result-count,
    #content.page.woocommerce .woocommerce--container .woocommerce-ordering {
        width: calc(100% - 300px);
    }
    #content.page.woocommerce .woocommerce--container .woocommerce-ordering {
        width: 300px;
    }
    #content.page.woocommerce .woocommerce--container .page-title { margin: -200px 0 0 0; }
}
@media screen and (min-width:992px) {
    #content.page.woocommerce .woocommerce--container { margin: -100px 0 0 0; }
    #content.page.woocommerce .woocommerce--container .page-title { margin: -250px 0 0 0; }
}
/*  pages feed */
#content.page.woocommerce .woocommerce--container ul.products {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
#content.page.woocommerce .woocommerce--container ul.products li {
    flex: 0 1 auto;
    width: calc(100% - 20px);
    height: 100%;
    padding: 20px 20px 40px 20px;
    margin: 20px 10px;
    background-color: var(--color-white);
    box-shadow: var(--box-shadow-light);
    transition: var(--transition);
    position: relative;
    top: 0;
    text-align: center;
}
#content.page.woocommerce .woocommerce--container ul.products li:hover {
    box-shadow: var(--box-shadow-strong);
    top: -5px;
}
@media screen and (min-width:568px) {
    #content.page.woocommerce .woocommerce--container ul.products li {
        width: calc(50% - 20px);
    }
}
@media screen and (min-width:768px) {
    #content.page.woocommerce .woocommerce--container ul.products li {
        width: calc(33.33% - 20px);
    }
}
@media screen and (min-width:992px) {
    #content.page.woocommerce .woocommerce--container ul.products li {
        width: calc(25% - 20px);
    }
}
#content.page.woocommerce .woocommerce--container ul.products li img {
    margin: -20px -20px 20px;
}
/*  single */
#content.single.woocommerce .woocommerce--container { margin: -200px 0 0 0; }
@media screen and (min-width:992px) {
    #content.single.woocommerce .woocommerce--container { margin: -250px 0 0 0; }
}





















































































/*  -----------------------
    ##Feed pages
--------------------------  */
.feed-pagination {
	text-align: center;
	padding: 20px 0 0 0;
}
.feed-pagination .nav-links span,
.feed-pagination .nav-links a {
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
}
.feed-pagination .nav-links span.current,
.feed-pagination .nav-links a:hover {
	background-color: var(--color-brand-h);
}


/* scroll to top temp from plugin */
.trx_addons_scroll_to_top,
.trx_addons_scroll_to_top:visited {
	background-color: var(--color-brand-c);
	transition: var(--transition);
	color: #fff;
}
.trx_addons_scroll_to_top:hover,
.trx_addons_scroll_to_top:active {
	color: #fff;
	background-color: var(--color-brand-b);
}









/* images */
.wp-block-image {
	position: relative;
	overflow: hidden;
}
.wp-block-image figcaption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 10px 20px;
	text-align: center;
	background-color: var(--color-brand-g);
	color: #fff;
	opacity: 0.8;
	transition: var(--transition);
	font-weight: var(--font-weight-bold);
}
.wp-block-image:hover figcaption {
	opacity: 1;
	bottom: 5px;
}


/* tables */
.single--wrapper table tfoot th,
.single--wrapper table thead th,
.single--wrapper table.tablepress tfoot th, 
.single--wrapper table.tablepress thead th {
	background-color: var(--color-brand-c);
	color: #fff;
	padding: 20px 10px;
}
.single--wrapper table thead th,
.single--wrapper table.tablepress thead th {
	font-family: var(--font-heading);
}
.single--wrapper table tbody td,
.single--wrapper table.tablepress tbody td {
	background-color: transparent !important;
	border-top: none;
	padding: 20px 10px;
	font-size: var(--font-size-s);
	color: var(--color-brand-d);
}
.single--wrapper table tbody tr,
.single--wrapper table.tablepress tbody tr {
	transition: var(--transition);
	border-color: transparent !important;
}
.single--wrapper table tbody tr:nth-child(even),
.single--wrapper table.tablepress tbody tr.even {
	background-color: #fff;
}
.single--wrapper table tbody tr:nth-child(odd),
.single--wrapper table.tablepress tbody tr.odd {
	background-color: var(--color-brand-h);
}
.single--wrapper table tbody tr:hover,
.single--wrapper table.tablepress tbody tr:hover {
	background-color: var(--color-text-light);
}




/* video embed */
.wp-block-embed iframe {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}
.wp-block-embed .wp-block-embed__wrapper {
	position: relative;
	padding-top: 56.25%; 
}
.wp-block-embed .wp-block-embed__wrapper iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}





/*  -----------------------
    ##Accessibility
--------------------------  */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}
/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus { outline: 0; }
/*  -----------------------
    ##Print
--------------------------  */


