/*
Theme Name: Grit Athletic Training
Version: 6.1
Description: Customizable responsive accessible Wordpress child theme created by CyberOptik
Author: CyberOptik
Author URI: https://www.cyberoptik.net/
Template: optik-theme-6
*/





/******************************************************************************
 * * *  IMPORTS & VARIABLES  * * * * * * * * * * * * * * * * * * * * * * * * *
******************************************************************************/

@import url("../optik-theme-6/style.css");


/* Add font imports here */

 /***  Oswald  ***/

/* Normal */
@font-face {
	font-family: 'Oswald';
	font-weight: normal;
	src: url('fonts/Oswald/Oswald-Regular.ttf');
}

/* Semi-Bold */
@font-face {
	font-family: 'Oswald';
	font-weight: 600;
	src: url('fonts/Oswald/Oswald-SemiBold.ttf');
}

/* Bold */
@font-face {
	font-family: 'Oswald';
	font-weight: bold;
	src: url('fonts/Oswald/Oswald-Bold.ttf');
}


 /***  Teko  ***/

/* Normal */
@font-face {
	font-family: 'Teko';
	font-weight: normal;
	src: url('fonts/Teko/Teko-Regular.ttf');
}

/* Semi-Bold */
@font-face {
	font-family: 'Teko';
	font-weight: 600;
	src: url('fonts/Teko/Teko-SemiBold.ttf');
}

/* Bold */
@font-face {
	font-family: 'Teko';
	font-weight: bold;
	src: url('fonts/Teko/Teko-Bold.ttf');
}


/***  Ubuntu  ***/

/* Normal */
@font-face {
	font-family: 'Ubuntu';
	font-weight: normal;
	src: url('fonts/Ubuntu/Ubuntu-Regular.ttf');
}

/* Italic */
@font-face {
	font-family: 'Ubuntu';
	font-style: italic;
	font-weight: normal;
	src: url('fonts/Ubuntu/Ubuntu-Italic.ttf');
}

/* Medium */
@font-face {
	font-family: 'Ubuntu';
	font-weight: 500;
	src: url('fonts/Ubuntu/Ubuntu-Medium.ttf');
}

/* Bold */
@font-face {
	font-family: 'Ubuntu';
	font-weight: bold;
	src: url('fonts/Ubuntu/Ubuntu-Bold.ttf');
}


/******************************************************************************
 * * *  STRUCTURAL ELEMENTS  * * * * * * * * * * * * * * * * * * * * * * * * * 
******************************************************************************/



/***  UNIVERSAL STYLES  ***/

html {
	font-size: 16px;
}

body {
	line-height: 1.6em;
	font-family: var(--wp--custom--font--1);
	color: var(--wp--custom--dark--2);
}



/***  BACK TO TOP BUTTON  ***/

.btt-button [class*="fa"] {
	border-radius: var(--wp--custom--radius--full);
	background-color: var(--wp--custom--primary--main);
	font-weight: 300;
	color: white;
}

.btt-button:hover [class*="fa"] {
	background-color: var(--wp--custom--primary--light);
	color: white;
}





/******************************************************************************
 * * *  CONTENT STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * *
******************************************************************************/



/***  TEXT & LINKS  ***/

a {
	color: var(--wp--custom--primary--main);
}

a:hover {
	color: var(--wp--custom--primary--light);
}



/***  HEADINGS  ***/

h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	font-family: var(--wp--custom--font--2);
	color: black;
	text-transform:uppercase;
}

h1 {
	font-size: 3.7em; 
}

h2 {
	font-size: 2.25em;
}

h3 {
	font-size: 1.75em;
}

h4 {
	font-size: 1.25em;
}

h5 {
	font-size: 1em;
}

h6 {
	font-size: 0.85em;
}

/**Mobile & Tablet**/
@media screen and (min-width: 601px) and (max-width: 1024px) {
  h1 { font-size: 3em; }
  h2 { font-size: 1.75em; }
  h3 { font-size: 1.5em; }
  h4 { font-size: 1.25em; }
  h5 { font-size: 1.125em; }
  h6 { font-size: 1em; }
}

@media screen and (max-width: 600px){
h1 {font-size: 1.75em;;}
h2 {font-size: 1.5em; }
h3 {font-size: 1.25em;  }
h4 {font-size: 1.125em;}
h5 {font-size: 1em;}
h6 {font-size: 0.875em;}
}



/***  BORDERS & DIVIDERS  ***/

hr, .divider {
	display: block;
	width: 100%;
	height: 1px;
	border: 0;
	border-top: 1px solid #e2e2e2;
	margin: 2.5em auto;
	padding: 0;
}



/***  BUTTONS  ***/

.button, 
.wp-block-button__link, 
.button-outline, 
.is-style-outline .wp-block-button__link {
	padding: 0.75em 2.25em;
	border-radius: var(--wp--custom--radius--xl);
	font-weight:600;
	color: black;
	text-transform: uppercase;
	letter-spacing: 1px;
     background-color: var(--wp--custom--secondary--main);
     border: 1px solid var(--wp--custom--primary--main);
     box-shadow: 0 4px 0 var(--wp--custom--primary--main);
     transition: all 0.1s ease-in-out;
}

.button:hover, 
.wp-block-button__link:hover, 
.button-outline:hover,
.is-style-outline .wp-block-button__link:hover {
	border-color: var(--wp--custom--secondary--dark);
	background-color: var(--wp--custom--secondary--dark);
	color: black;
	transform: translateY(3px);
    box-shadow: 0 1px 0 var(--wp--custom--primary--main);
}

.button [class*="fa"], 
.wp-block-button__link [class*="fa"], 
.button:hover [class*="fa"], 
.wp-block-button__link:hover [class*="fa"] {
	color: inherit !important;
}

/* Outlined Button */

.button-outline, 
.is-style-outline .wp-block-button__link {
	background: none;
	border:none;
	padding: 0;
	color: var(--wp--custom--secondary--main);
}

.button-outline:hover,
.is-style-outline .wp-block-button__link:hover {
	border-color: none;
	background: none;
	color: var(--wp--custom--secondary--light);
}



/***  ICONS  ***/

.fa {
	font-weight: 300;
}

/* Icon Colors */

.fa, .fas, .far, .fal, .fab {
	color: var(--wp--custom--primary--main);
}

a .fa, a .fas, a .far, a .fal, a .fab {
	color: var(--wp--custom--primary--main);
}

a:hover .fa, a:hover .fas, a:hover .far, a:hover .fal, a:hover .fab {
	color: var(--wp--custom--secondary--main);
}

/* Icon Backgrounds */

.fa-bg {
	background-color: var(--wp--custom--primary--main);
	color: white;
}

a .fa-bg {
	background-color: var(--wp--custom--primary--main);
	color: white;
}

a:hover .fa-bg {
	background-color: var(--wp--custom--secondary--main);
	color: white;
}

/* Icon Borders */

.fa-br {
	border-color: var(--wp--custom--primary--main);
}

a .fa-br {
	border-color: var(--wp--custom--primary--main);
}

a:hover .fa-br {
	border-color: var(--wp--custom--secondary--main);
}



/***  LISTS  ***/

.arrow-list li:before, 
.check-list li:before, 
.check-circle-list li:before, 
.icon-list li:before, 
.contact-list li:before, 
.arrow-list li [class*="fa"], 
.check-list li [class*="fa"], 
.check-circle-list li [class*="fa"], 
.icon-list li [class*="fa"], 
.contact-list li [class*="fa"] {
	color: var(--wp--custom--primary--main);
}



/***  FORMS  ***/

/* Inputs */

input[type="text"], input[type="email"], input[type="number"], 
input[type="password"], input[type="search"], input[type="tel"], 
input[type="url"], input[type="date"], input[type="datetime-local"], 
input[type="month"], input[type="time"], input[type="week"], 
textarea, select, .filter-reset {
	border-radius: var(--wp--custom--radius--xs);
}

input[type="text"]:focus, input[type="email"]:focus, input[type="number"]:focus, 
input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, 
input[type="url"]:focus, input[type="date"]:focus, input[type="datetime-local"]:focus, 
input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, 
textarea:focus, select:focus {
	border-color: var(--wp--custom--primary--main);
}

/* Buttons */

input[type="submit"], 
input[type="reset"], 
input[type="button"], 
form button {
	border-radius: var(--wp--custom--radius--xl);
	font-weight:600;
	color: black;
	text-transform: uppercase;
	letter-spacing: 1px;
     background-color: var(--wp--custom--secondary--main);
     border: 1px solid var(--wp--custom--primary--main);
     box-shadow: 0 4px 0 var(--wp--custom--primary--main);
     transition: all 0.1s ease-in-out;
}

input[type="Submit"]:hover, 
input[type="reset"]:hover, 
input[type="button"]:hover, 
form button:hover {
	border-color: var(--wp--custom--secondary--dark);
	background-color: var(--wp--custom--secondary--dark);
	color: black;
	transform: translateY(3px);
    box-shadow: 0 1px 0 var(--wp--custom--primary--main);
}

input[type="Submit"]:active, 
input[type="reset"]:active, 
input[type="button"]:active, 
form button:active {
	border-color:  var(--wp--custom--primary--dark);
	background-color:  var(--wp--custom--primary--dark);
	color: white;
}





/******************************************************************************
 * * *  HEADER STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
******************************************************************************/



/***  SCROLL BAR  ***/

.scroll-bar {
	background-color: black;
	transition: opacity 500ms ease-in-out, transform 500ms ease-in-out!important;
}

.scroll-logo {
	max-height: 90px;
}



/***  TOP BAR  ***/

.top-bar {
	background-color: var(--wp--custom--light--2);
}



/***  HEADER  ***/

.header {
  position: absolute;
  top: 25px;
  left: 0;
  z-index: 3;
}

.header-logo {
	max-height: 110px;
}

/* Menu Button */

.header .menu-button [class*="fa"], 
.header .menu-button:hover [class*="fa"] {
	color: var(--wp--custom--dark--1);
	background-color: var(--wp--custom--primary--main);
}

.header .menu-button.active [class*="fa"] {
	background-color: var(--wp--custom--primary--main);
	color: white;
}



/***  NAVBAR  ***/

.navbar {
}



/***  NAV MENUS  ***/

.nav-menu > li > a, 
.nav-menu > li > span, 
.nav-menu > li > button {
	color: white;
}

.single-post .nav-menu > li.posts-link > a, 
.category .nav-menu > li.posts-link > a, 
.single-service .nav-menu > li.services-link > a, 
.single-career .nav-menu > li.careers-link > a, 
.single-resource .nav-menu > li.resources-link > a, 
.nav-menu > li.current-menu-ancestor > a, 
.nav-menu > li.current-menu-ancestor > span, 
.nav-menu > li.current-menu-ancestor > button, 
.nav-menu > li.current-menu-item > a, 
.nav-menu > li.current-menu-item > span, 
.nav-menu > li.current-menu-item > button, 
.nav-menu > li:hover > a, 
.nav-menu > li:hover > span, 
.nav-menu > li:hover > button {
	color: var(--wp--custom--secondary--main);
}

.nav-menu {
    justify-content: right;
}
/* Nav Button */

.nav-menu > li.nav-button {
	background-color: transparent !important;
}

.nav-menu > li.nav-button > a {
	margin-left: 10px;
	margin-right: 10px;
	background-color: var(--wp--custom--secondary--main);
	border-radius: var(--wp--custom--radius--xs);
	color: var(--wp--custom--dark--1);
}

.nav-menu > li.nav-button > a:hover {
	background-color: var(--wp--custom--secondary--dark);
}

/* Dropdowns */

.nav-menu li ul {
	background-color: black;
	width: 250px;
}


.nav-menu li ul li:first-child {
	padding-top: 8px;
}
.nav-menu li ul li:last-child {
	padding-bottom: 8px;
}

.nav-menu li ul > li > a, 
.nav-menu li ul > li > span, 
.nav-menu li ul > li > button {
	color: white;
}

.single-careers .nav-menu li ul li.careers-link > a, 
.nav-menu li ul li.current-menu-item > a, 
.nav-menu li ul li.current-menu-item > span, 
.nav-menu li ul li.current-menu-item > button, 
.nav-menu li ul li:hover > a, 
.nav-menu li ul li:hover > span, 
.nav-menu li ul li:hover > button {
	color: var(--wp--custom--secondary--main);
}

/* Nested Dropdowns */

.nav-menu li ul li ul {
	top: -8px;
}



/***  HIDDEN NAV  ***/

.hidden-menu li a {
	color: var(--wp--custom--dark--3);
}

.hidden-menu li.current-menu-item > a {
	color: var(--wp--custom--primary--main);
}



/******************************************************************************
 * * *  BODY STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
******************************************************************************/

/***  BANNER  ***/

.banner {
	background-color: var(--wp--custom--dark--1);
	text-align: left;
}

.banner:before {
	background-attachment: fixed;
	opacity: 0.30!important;
}

.banner-inner {
	min-height: 460px;
	padding-top: var(--wp--custom--spacer--xxl);
	padding-bottom: var(--wp--custom--spacer--lg);
}

.banner-viewheight .banner-inner {
	padding-top: calc(var(--wp--custom--spacer--lg) + 140px);
	padding-bottom: var(--wp--custom--spacer--lg);
}

.banner-tall .headline-wrap {
		max-width: 900px;
}

.banner-tall .banner-inner {
	min-height: 650px;
	padding-top: var(--wp--custom--spacer--xxl);
	padding-bottom: var(--wp--custom--spacer--lg);
}

.banner a {
	color: var(--wp--custom--primary--light);
}

.banner a:hover {
	color: white;
}

.banner a.button {
	color: black;
}


/***  HEADLINE BAR  ***/

.headline-bar {
}



/***  ENTRY NAVBAR  ***/

.entry-menu > li > a {
	color: var(--wp--custom--dark--3);
}

.entry-menu > li.current-menu-item > a, 
.entry-menu > li:hover > a {
	color: var(--wp--custom--primary--main);
}



/***  MAIN  ***/

.main {
	padding-top:  var(--wp--custom--spacer--xxl);
	padding-bottom:  var(--wp--custom--spacer--xxl);
}



/***  ARCHIVE  ***/

/* Entry Cols */

.entry-cols .entry-link {
	border-radius: var(--wp--custom--radius--md);
	background-color: var(--wp--custom--light--2);
	overflow: hidden;
	color: var(--wp--custom--dark--2);
}

.entry-cols .entry-link:hover {
	transform: translateY(-3px);
}

.entry-cols .entry-icon-wrap:first-child {
	padding: 30px 30px 0;
}

.entry-cols .entry-icon svg {
	width: 60px;
	fill: var(--wp--custom--primary--main);
}

.entry-cols .entry-text-wrap {
	padding: 30px;
}

.includes-link-text .entry:not(.col-full) .entry-text-wrap {
	padding-bottom: 80px;
}

.entry-cols .entry:not(.col-full) .entry-link-text-wrap {
	left: 30px;
	bottom: 30px;
}

.entry-cols .entry-link .entry-link-text {
	color: var(--wp--custom--primary--main);
}

.entry-cols .entry-link:hover .entry-link-text {
	color: var(--wp--custom--primary--light);
}

/* Archive Pagination */

.archive-pagination a {
	border-radius: var(--wp--custom--radius--xl);
	border-color: var(--wp--custom--light--1);
	color: var(--wp--custom--primary--main);
}

.archive-pagination a:hover {
	border-color: var(--wp--custom--primary--light);
	color: var(--wp--custom--primary--light);
}

.archive-pagination a [class*="fa"], 
.archive-pagination a:hover [class*="fa"] {
	color: inherit !important;
	transition: all 0ms ease-in-out;
}



/***  SINGLE  ***/





/******************************************************************************
 * * *  FOOTER STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
******************************************************************************/



/***  CTA BAR  ***/

.cta-bar {
	padding-top: var(--wp--custom--spacer--xxl);
	padding-bottom: var(--wp--custom--spacer--xxl);
	background-color: var(--wp--custom--secondary--light);
	color: black;
}

.cta-bar h1, 
.cta-bar h2, 
.cta-bar h3, 
.cta-bar h4, 
.cta-bar h5, 
.cta-bar h6 {
	color: black;
} 


.cta-bar .wp-block-button__link {
  border:1px solid var(--wp--custom--secondary--main);
  box-shadow: 0 4px 0 var(--wp--custom--secondary--main);
  background-color: var(--wp--custom--primary--main);
  color: white;
}


.cta-bar .wp-block-button__link:hover {
  border-color: var(--wp--custom--primary--dark);
  background-color: var(--wp--custom--primary--dark);
  color: white;
  transform: translateY(3px);
  box-shadow: 0 1px 0 var(--wp--custom--secondary--main);

}



/***  FOOTER  ***/

.footer {
	padding-top: var(--wp--custom--spacer--lg);
	padding-bottom: var(--wp--custom--spacer--lg);
	background-color: black;
	font-size: 0.9em;
	color: var(--wp--custom--light--1);
}

.footer a {
	color: white;
}

.footer a:hover {
	color: var(--wp--custom--secondary--main);
}

.footer h1, 
.footer h2, 
.footer h3, 
.footer h4, 
.footer h5, 
.footer h6 {
	color: var(--wp--custom--secondary--light);
}

/* Footer Icon List */

.footer .icon-list li:before, 
.footer .arrow-list li:before, 
.footer .check-list li:before, 
.footer .check-circle-list li:before, 
.footer .contact-list li:before {color: var(--wp--custom--secondary--main);}

.footer .icon-list li a, 
.footer .arrow-list li a, 
.footer .check-list li a, 
.footer .check-circle-list li a, 
.footer .contact-list li a {
	color: var(--wp--custom--secondary--main);
}

.footer .contact-list .map-marker a {display: block;}

.footer .icon-list li a:hover, 
.footer .arrow-list li a:hover, 
.footer .check-list li a:hover, 
.footer .check-circle-list li a:hover, 
.footer .contact-list li a:hover {
	color: var(--wp--custom--secondary--light);
}


/***  6.3 BOTTOM BAR  ***/

.bottom-bar {
	background-color: black;
	font-size: 0.9em;
	color: var(--wp--custom--light--1);
}

.bottom-bar a {
	color: var(--wp--custom--secondary--main);
}

.bottom-bar a:hover {
	color: var(--wp--custom--secondary--light);
}

/* Menus */

.bottom-bar .menu a {
	color: white;
}

.bottom-bar .menu a:hover {
	color: var(--wp--custom--secondary--light);
}





/******************************************************************************
 * * *  7 CUSTOM STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * 
******************************************************************************/

/* Add custom theme styles here */



/***  ICON CARDS  ***/

.icon-cards {
	text-align: center;
}

.icon-cards .wp-block-column {
	background-color: var(--wp--custom--light--2);
	padding: var(--wp--custom--spacer--md) var(--wp--custom--spacer--sm);
	transition: all 350ms ease-in-out;
}

.icon-cards .wp-block-column:hover {
	background-color: var(--wp--custom--primary--light);
	color: white;
}

.icon-cards .wp-block-column .wp-block-heading, 
.icon-cards .wp-block-column .wp-block-heading a {
	color: var(--wp--custom--primary--main);
	border-bottom: none;
	transition: all 350ms ease-in-out;
}

.icon-cards .wp-block-column:hover .wp-block-heading, 
.icon-cards .wp-block-column:hover .wp-block-heading a, 
.icon-cards .wp-block-column:hover .wp-block-heading a:hover {
	color: white;
}

.icon-cards .wp-block-outermost-icon-block {
	justify-content: center;
}

.icon-cards .wp-block-heading:not(:first-child) {
	margin-top: 0.25em;
	font-size: 1.45em;
}


/** Lines Heading **/ 

.headings:after {
    display: block;
	width: 80px;
	height: 3px;
	margin-top: 15px;
	margin-left: 0;
	margin-right: auto;
	background-color: var(--wp--custom--primary--main);
    content: '';
}


.headings-center:after {
  display: block;
	width: 80px;
	height: 3px;
	margin-top: 15px;
	margin: 15px auto 0 auto;
	background-color: var(--wp--custom--primary--main);
    content: '';
}


/**/


/***  Box COLS  ***/

.box-cols .wp-block-column {
  display:block;
  padding: 40px 25px!important;
  background-color: black;
  color: white;
}

.box-cols .wp-block-column .wp-block-heading {
	color: var(--wp--custom--secondary--main);
}

.box-cols .wp-block-column:hover {
  opacity: 0.95;
}


/* Banner Spacing */
.section.banner-text-wrap {
    margin-top: 80px;
}

/* Media Querries Start here */
/* Tablets (Portrait & Landscape) */
@media screen and (min-width: 601px) and (max-width: 1024px) {
	.wp-block-column.testi.is-layout-flow.wp-block-column-is-layout-flow{
		margin-left: 61px;
	}
	.wp-block-columns.what-you-get.is-layout-flex.wp-container-core-columns-is-layout-28f84493.wp-block-columns-is-layout-flex {
    margin-left: 60px !important;
    margin-right: 30px !important;
    }
	.cta-cols {
    flex-direction: column;
    width: 80%;
	}
	.wp-block-spacer {
    display: none;
	}
	.wp-block-buttons.is-vertical.is-content-justification-right.is-layout-flex.wp-container-core-buttons-is-layout-a18aa0d7.wp-block-buttons-is-layout-flex {
    align-items: center;
	}
}

/* iPad Mini & iPad Air (Portrait) */
@media screen and (min-width: 744px) and (max-width: 820px) and (orientation: portrait) {
	.section-reverse {
    flex-direction: column-reverse;
    }
	/** Contact two columns**/
	 .wp-block-columns {
     flex-wrap: nowrap !important;
    }
	/** CTA Reduce size on button **/
	a.wp-block-button__link.has-text-align-left.wp-element-button {
    font-size: 14px;
    }
	 .wp-block-column.testi.is-layout-flow.wp-block-column-is-layout-flow {
        margin-left: 42px;
    }
	.cta-cols {
    flex-direction: column;
    width: 80%;
	}
	.wp-block-spacer {
    display: none;
	}
	.wp-block-buttons.is-vertical.is-content-justification-right.is-layout-flex.wp-container-core-buttons-is-layout-a18aa0d7.wp-block-buttons-is-layout-flex {
    align-items: center;
	}
}

/* Mobile */
@media screen and (max-width: 600px){
	.section-reverse {
    flex-direction: column-reverse;
    }
	/** CTA Center Button**/
	.wp-block-buttons.is-content-justification-right.is-layout-flex.wp-container-core-buttons-is-layout-27f651d6.wp-block-buttons-is-layout-flex {
    justify-content: center;
    }
	.wp-block-spacer {
    display: none;
	}
	.wp-block-buttons.is-vertical.is-content-justification-right.is-layout-flex.wp-container-core-buttons-is-layout-a18aa0d7.wp-block-buttons-is-layout-flex {
    align-items: center;
	}
	.what-you-get {
    padding-top: 40px;
    padding-bottom: 40px;
	}
	/** Shop Image Reduce Size**/
	 img.wp-image-18151.size-full {
    width: 70%;
	}

  img.wp-image-18136.size-full {
    width: 70%;
	}
}

/** Animation to the banner **/

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.banner-text-wrap {
  opacity: 0;
  animation: fadeIn 1s ease-in forwards;
}
.policy_embed_div h1{font-size:32px !important;}

