/**************** GENERAL ****************/
*
{
	color: #fff;
	font-size: 16px;

	font-family: bebas-neue-by-fontfabric,sans-serif;
	font-weight: 400;
	font-style: normal;
}

a
{
	text-decoration: none;
}

h1
{
	
}

hr
{

}

button
{
	border: 0;
	cursor: pointer;
}

body, html
{
	margin: 0;
    padding: 0;

    background-color: #000;
	background-image: url("../img/textures/gun-metal.png");
}

img {display: block;}

@media only screen and (min-width: 1024px)
{
	*
	{
		font-size: 22px;
	}
}

/**************** STANDARDS ****************/
.display-none { display: none;}
.before { opacity: 0; }
.after { opacity: 1 !important; }
.desktop-only { display: none;}
.mobile-only { display: block;}

/* variant 1 */
.primary-color {color: #fff;}
.primary-bkg {background-color: #fff;}

.secondary-color {color: #304a61;}
.secondary-bkg {background-color: #304a61;}

.accent-color {color: #317b23;}
.accent-bkg {background-color: #317b23;}

.plain-color {color: #000;}
.plain-bkg {background-color: #000;}

.orange-test {background-color: #ff712c;}
.smalltext {font-size: 14px;}

.char-space {margin: 0 2px !important;}
.fullopacity {opacity: 1 !important;}

.clearfix {clear: both;}
.title-font
{
	font-family: bebas-neue-by-fontfabric,sans-serif;
	font-weight: 700;
	font-style: normal;
}

.main-font
{
	font-family: bebas-neue-by-fontfabric,sans-serif;
	font-weight: 400;
	font-style: normal;
}

.clean-font
{
	font-family: bebas-neue-by-fontfabric,sans-serif;
	font-weight: 300;
	font-style: normal;
}

@media only screen and (min-width: 1024px)
{
	.smalltext {font-size: 14px;}
}

/* Variant 2 
.primary-color {color: #353535;}
.primary-bkg {background-color: #353535;}

.secondary-color {color: #304a61;}
.secondary-bkg {background-color: #304a61;}

.accent-color {color: #476d70;}
.accent-bkg {background-color: #476d70;}

.plain-color {color: #FFF;}
.plain-bkg {background-color: #FFF;}
*/

/* variant 3 
.primary-color {color: #353535;}
.primary-bkg {background-color: #353535;}

.secondary-color {color: #304a61;}
.secondary-bkg {background-color: #304a61;}

.accent-color {color: #476d70;}
.accent-bkg {background-color: #476d70;}

.plain-color {color: #FFF;}
.plain-bkg {background-color: #FFF;}
*/

.flex-split
{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
}

.flex-center
{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.coaching-text
{
	margin: 50px auto;
	width: 90% !important;
	text-align: center;
}

@media only screen and (min-width: 1024px)
{
	.desktop-only
	{
		display: block;
	}

	.mobile-only
	{
		display: none;
	}

	.coaching-text
	{
		margin: 75px auto;
		width: 50% !important;
	}

	.char-space {margin: 0 5px !important;}
}

/* NAV BAR */
#nav-bar
{
	width: 100%;
	height: 200px;

	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;

	background-color: #000;
	background-image: url("../img/textures/gun-metal.png");
}

#left-nav
{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin: 0;
	height: 150px;
}

#left-nav h1
{
	color: white;
	margin: 10px 0px;
	font-size: 24px;
}

#left-nav img
{
	width: 96px;
}

#right-nav
{
	margin: 0;
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 2;
}

#right-nav img
{
	width: 24px;
}

#center-nav
{
	width: 100%;
	position: absolute;
	left: 0px;
	top: 0;
	right: 0px;
	height:175px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	z-index: 1;
}

#center-nav a
{
	color: white;
	margin: 0 5px;
	letter-spacing: 2px;
	font-style: italic;
	font-size: 14px;
}

#center-nav a:hover
{
	color: #317b23;
}

#center-nav p
{
	color: white;
	margin: 0 5px;
	font-size: 14px;
}

.current-container
{
	text-align: center;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	flex-direction: column;
	height: 175px;
}

.current-container img
{
	margin: 2px auto;
}

.bench-anim
{
	width: 40px;
}

.start-bench-anim
{
	animation: headerupdown 2s ease-in-out 0s infinite;
}

.benchdown
{
	transform: translateY(10px);
}

@keyframes headerupdown {
    0% {
        transform: translateY(10px);
    }
	49% {
        transform: translateY(10px);
    }
    50% {
        transform: translateY(0px);
    }
	99% {
        transform: translateY(0px);
    }
	100% {
        transform: translateY(10px);
    }
}

@media only screen and (min-width: 1024px)
{
	#nav-bar
	{
		height: 200px;

		justify-content: space-between;
		align-items: center;
		flex-direction: row;
	}

	#left-nav
	{
		justify-content: flex-start;
		margin-left: 50px;
		height: 200px;
		flex-direction: row;
		margin-left: 50px;
	}

	#right-nav
	{
		position: static;
		margin-right: 50px;
	}

	#right-nav img
	{
		width: 32px;
	}

	#center-nav
	{
		height: 200px;
		align-items: center;
		width: calc(100% - 200px);
		left: 100px;
		right: 100px;
	}

	#center-nav a
	{
		margin: 0 10px;
		letter-spacing: 5px;
		font-size: 18px;
	}

	#center-nav p
	{
		color: white;
		margin: 0 20px;
	}

	#left-nav img
	{
		width: 128px;
	}

	#left-nav h1
	{
		color: white;
		margin-left: 25px;
		font-size: 32px;
	}

	.bench-anim
	{
		width: 64px;
	}

	.current-container
	{
		height: 150px;
	}

	.current-container img
	{
		margin: 0 auto;
	}
}

/* MAIN CONTENT */
.banner-container {
	position: relative;
	overflow: hidden;
  }

.banneroverlay
{
	opacity: 0;
	animation: fadein 1s ease-in-out 0.5s forwards;
}

.digit-container-main, .digit-container-sub
{
	display: flex;
	justify-content: center;
	align-items: center;
}

.banneroverlay h1
{
	font-size: 28px !important;
	margin: 0 auto;
}

.banneroverlay h2
{
	font-size: 16px;
	margin: 0 auto;
}


.banneroverlay img
{
	width: 256px;
}
  
  .sliding-background {
	background: url("../img/banner1_m.jpg") repeat-x;
	height: 400px;
	width: 7977px;
	animation: slide 60s linear infinite;
  }
  
  @keyframes slide{
	0% {
	  transform: translate3d(0, 0, 0);
	}
	100% {
	  transform: translate3d(-2659px, 0, 0);
	}
  }

  .centered
  {
	  position: absolute;
	  left: 50%;
	  top: 50%;
	  transform: translate(-50%,-50%);
	  text-align: center;
  }

  .centered-stepdown
  {
	  position: absolute;
	  left: 50%;
	  top: 60%;
	  transform: translate(-50%,-50%);
	  text-align: center;
  }

.arrow-container
{
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translate(-50%,0);

	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;

	opacity: 0;
	animation: fadein75 1s ease-in-out 1s forwards;
}

.arrow1
{
	width: 32px;
	animation: bob1 1.5s ease-in-out 0s infinite;
}

.arrow2
{
	width: 32px;
	animation: bob2 1.5s ease-in-out 0s infinite;
}

@media only screen and (min-width: 1024px)
{
	.banneroverlay h1
	{
		font-size: 64px !important;
	}

	.banneroverlay h2
	{
		font-size: 32px;
	}

	.centered-stepdown
  	{
	  	position: absolute;
	  	left: 50%;
	  	top: 65%;
	  	transform: translate(-50%,-50%);
	  	text-align: center;
  	}


}

@media only screen and (min-width: 1500px)
{
	.banneroverlay h1
	{
		font-size: 80px !important;
	}

	.banneroverlay h2
	{
		font-size: 42px;
	}
}

.content-container
{
  width: 100%;
  overflow: hidden;
}

.content-info
{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0px;
  min-height: 600px;
  max-height: 600px;
  background-position: center;

  transform: translateX(4000px);
  transition: opacity 0.5 ease-in-out;
}

.content-info img
{
}

.content-info-text
{
	width: 95%;
}

.content-text-container
{
	width: 80%;
	padding: 25px;
	margin: 25px auto;
	border-radius: 15px;
	background-color: black;
	box-shadow: 0 8px 16px 0 rgba(49,123,35,0.2), 0 6px 20px 0 rgba(49,123,35,0.19);
}

.content-text-container img 
{
	width: 128px;
	height: 128px;
	border-radius: 50%;
	box-shadow: 0 8px 16px 0 rgba(256,256,256,0.2), 0 6px 20px 0 rgba(256,256,256,0.19);
	float:  left;
	margin: 10px 25px 15px 5px;
}

.content-text-container h1
{
	font-size: 32px;
	letter-spacing: 3px;
	color: grey;
}

.content-text-container p
{
	font-style: italic;
	opacity: 0.75;
	line-height: 125%;
	font-size: 18px;
}

.content-text-container button
{
	padding: 15px;
	border-radius: 5px;
	letter-spacing: 2px;
	float: right;
}

.coaching-text-container
{
	width: 80%;
	padding: 25px;
	margin: 25px auto;
	border-radius: 15px;
	background-color: black;
	box-shadow: 0 8px 16px 0 rgba(49,123,35,0.2), 0 6px 20px 0 rgba(49,123,35,0.19);
}

.coaching-text-container h1
{
	font-size: 42px;
	letter-spacing: 5px;
	color: grey;
}

.coaching-text-container p
{
	font-style: italic;
	opacity: 0.75;
	line-height: 150%;
	font-size: 22px;
}

.coaching-text-container button
{
	padding: 15px;
	border-radius: 5px;
	letter-spacing: 2px;
}

#content-info0
{
	background-image: url("../img/sectionbanner1_m.jpg");
}

#content-info1
{
	background-image: url("../img/sectionbanner2_m.jpg");
}

#content-info2
{
	background-image: url("../img/sectionbanner3_m.jpg");
}

.transform-container 
{
	width: calc(100% - 50px);
	padding: 25px;
}

.transform-img-container
{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.transform-img-container img
{
	transition: opacity 0.5s ease-in-out;
}

.before-container
{
	width: 50%;
	height: auto !important;
	opacity: 0;
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
}

.before-container img
{
	opacity: 0;
	width: 100%;
}

.after-container
{
	width: 50%;
	height: auto;
	overflow: hidden;
	opacity: 0;
}

.after-container img
{
	width: 100%;
}

.transform-text-container
{
	width: calc(100% - 30px);
	padding: 15px;
	margin: 25px auto;
	border-radius: 15px;
	background-color: black;
	box-shadow: 0 8px 16px 0 rgba(49,123,35,0.2), 0 6px 20px 0 rgba(49,123,35,0.19);

	opacity: 0;
	overflow: hidden;
}

.transform-text-container button
{
	padding: 15px;
	border-radius: 5px;
	letter-spacing: 2px;
}

.transform-text-container h1
{
	font-size: 42px;
	letter-spacing: 5px;
	color: grey;
}

.transform-text-container p
{
	font-style: italic;
	opacity: 0.75;
	line-height: 150%;
	font-size: 22px;
}

.insta-img
{
	width: 24px;
}

.before-pic
{
	animation: beforeanim 0.5s linear forwards;
}

.after-pic
{
	animation: afteranim 0.5s linear forwards;
}

.crack-anim
{
	animation: crack 0.25s linear 0s forwards;
}

.transform-text-anim
{
	animation: textanim 0.25s ease-in 0.5s forwards;
}

@keyframes beforeanim{
	0% {
	  transform: translateX(-2000px);
	  opacity: 0;
	}
	100% {
		transform: translateX(0px);
		opacity: 1;
	}
  }

  @keyframes afteranim{
	0% {
	  transform: translateX(2000px);
	  opacity: 0;
	}
	100% {
		transform: translateX(0px);
		opacity: 1;
	}
  }

  @keyframes textanim{
	0% {
	  opacity: 0;
	}
	100% {
		opacity: 1;
	}
  }

  @keyframes fullopac{
	0% {
	  opacity: 1;
	}
	100% {
		opacity: 1;
	}
  }

   @keyframes crack{
	0% {
		transform: rotateX(5deg) translateX(-10px);
		opacity: 1;
	}
	20% {
		transform: rotateX(-5deg) translateX(10px);
		opacity: 1;
	}
	40% {
		transform: rotateX(5deg) translateX(-10px);
		opacity: 1;
	}
	60% {
		transform: rotateX(-5deg) translateX(10px);
		opacity: 1;
	}
	80% {
		transform: rotateX(5deg) translateX(-10px);
		opacity: 1;
	}
	100% {
		transform: rotateX(0deg) translateX(0px);
		opacity: 1;
	}
  }

@media only screen and (min-width: 1024px)
  {
  	.content-text-container img 
	{
		width: 200px;
		height: 200px;
		margin: 50px 25px 15px 15px;
	}

	.content-text-container h1
	{
		font-size: 42px;
		letter-spacing: 5px;
	}

	.content-text-container p
	{
		line-height: 150%;
		font-size: 22px;
	}

	.transform-text-anim
	{
		animation: textanim 1s ease-in 1.0s forwards;
	}

	.transform-img-container img
	{
		width: 100%;
	}

	.before-container
	{
		width: 512px;
	}

	.before-container img
	{
		opacity: 0;
		width: 100%;
	}

	.after-container
	{
		width: 512px;
	}

	.after-container img
	{
		width: 100%;
	}

	.transform-text-container
	{
		width: 1024px;
		margin: 25px auto;
	}

	.transform-text-container p
	{
		font-size: 22px;
		max-height: 500px;
	}

	.transform-text-container h1
	{
		font-size: 36px;
		margin: 5px 0;
	}

	.insta-img
	{
		width: 32px;
	}

	@keyframes beforeanim{
		0% {
		  transform: translateX(-3000px);
		  opacity: 0;
		}
		100% {
			transform: translateX(0px);
			opacity: 1;
		}
	  }
	
	  @keyframes afteranim{
		0% {
		  transform: translateX(3000px);
		  opacity: 0;
		}
		100% {
			transform: translateX(0px);
			opacity: 1;
		}
	  }

	@keyframes textanim{
		0% {
		  opacity: 0;
		}
		100% {
			opacity: 1;
		}
	  }
  }

/* IMG GRID */
.gallery-grid
{
	width: 100%;
	margin: 0px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
}

.gallery-grid-column
{
	width: calc(100% - 4px);
	margin: 2px;

	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
}

.gallery-grid-column img
{
	width: 100%;

	animation: fadein 0.5s ease-in-out forwards;
}

@media only screen and (min-width: 1024px)
{
	.arrow1, .arrow2
	{
		width: 48px;
	}

	.banneroverlay img
	{
		width: 384px;
	}
	.banner-container h1
	{
		text-shadow: black 4px 4px;
		font-size: 120px;
	}

	.sliding-background {
		background: url("../img/banner1.jpg") repeat-x;
		height: 700px;
		width: 13959px;
		animation: slide 60s linear infinite;
	  }

	  @keyframes slide{
		0% {
		  transform: translate3d(0, 0, 0);
		}
		100% {
		  transform: translate3d(-4653px, 0, 0);
		}
	  }

	.content-info
	{
		min-height: 800px;
		max-height: 800px;
		background-position: 0 0;
		flex-direction: row;
	}

	.content-text-container
	{
		width: 75%;
	}

	.coaching-text-container
	{
		width: 80%;
	}

	.content-info-text
	{
		width: 85%;
	}

	#content-info0
	{
		background-image: url("../img/sectionbanner1.jpg");
	}

	#content-info1
	{
		background-image: url("../img/sectionbanner2.jpg");
	}

	#content-info2
	{
		background-image: url("../img/sectionbanner3.jpg");
	}


	.gallery-grid
	{
		width: 100%;
		margin: 0px;
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		flex-direction: row;
	}

	.gallery-grid-column
	{
		width: calc(50% - 4px);
		margin: 2px;

		display: flex;
		justify-content: center;
		align-items: flex-start;
		flex-direction: column;
	}
}

@media only screen and (min-width: 1600px)
{
	.banneroverlay img
	{
		width: 384px;
	}

	.arrow1, .arrow2
	{
		width: 48px;
	}
}

footer
{
	position: relative;
	width: calc(100% - 100px);
	padding: 50px;

	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;

	background-color: #000;
	background-image: url("../img/textures/gun-metal.png");

	border: 0;
	border-top: 3px solid #353535;
	border-style: outset;
}

.footer-column
{
	text-align: center;
	width: 100%;
	border-bottom: 1px solid #353535;
}

.footer-column img
{
	margin: 0 auto;
	width: 256px;
	max-width: 90%;
}

#links-container
{
	width: fit-content;
	text-align: center;
	margin: 0 auto;
}

#links-container a
{
	display: block;
	margin: 10px auto;
	font-size: 16px;
}

#links-container a:hover
{
	color: #476d70;
}

.social-icon-container
{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 15px;
}

.social-icon img
{
	width: 24px !important;
	margin: 0 5px !important;
}

.poweredby
{
	position: absolute;
	right: 10px;
	bottom: 5px;
	color: #fff;
	font-size: 12px;
	letter-spacing: 2px;
}

.poweredby:hover
{
	color: #476d70;
}

@keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadein75 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.75;
    }
}

@keyframes bob1 {
    0% {
        transform: translateY(0px);
    }
	20% {
        transform: translateY(0px);
    }
	30% {
        transform: translateY(25px);
    }
	65% {
        transform: translateY(25px);
    }
	85% {
        transform: translateY(-5px);
    }
}

@keyframes bob2 {
    0% {
        transform: translateY(0px);
    }
	30% {
        transform: translateY(0px);
    }
	50% {
        transform: translateY(25px);
    }
	75% {
        transform: translateY(-5px);
    }

}

@media only screen and (min-width: 1024px)
{
	footer 
	{
		flex-direction: row;
	}

	.footer-column
	{
		text-align: left;
		width: 33.3%;
		border: 0;
	}

	.footer-column img
	{
		margin: 0;
		width: 192px;
	}

	#links-container
	{
		margin: 0;
	}

	#links-container a
	{
		display: block;
		margin: 10px 0px;
		font-size: 18px;
		text-align: left;
	}

	.social-icon-container
	{
		justify-content: flex-start;
	}
}

@media only screen and (min-width: 1024px)
{
	.footer-column img
	{
		margin: 0;
		width: 256px;
	}
}


/* TEXTURES */
.texture1
{
	background-color: #bc7855;
	background-image: url("../img/textures/gravel.png");
}

.texture2
{
	background-color: #81521e;
	background-image: url("../img/textures/gravel.png");
}

.texture3
{
	background-color: #d29847;
	background-image: url("../img/textures/gravel.png");
}

.texture4
{
	background-color: #b86938;
	background-image: url("../img/textures/rough-cloth-light.png");
}

.texture5
{
	background-color: #b86938;
	background-image: url("../img/textures/sandpaper.png");
}

.texture6
{
	background-color: #d29847;
	background-image: url("../img/textures/stardust.png");
}

.swipe-righttomid
{
  animation: swipe-righttomid 0.5s ease-in-out 0s forwards;
}

.swipe-lefttomid
{
  animation: swipe-lefttomid 0.5s ease-in-out 0s forwards;
}

  /* ANIMATIONS */
  @keyframes swipe-righttomid 
  {
    0% {
      transform: translateX(4000px);
      opacity: 0;
    }
    100% {
      transform: translateX(0px);
      opacity: 1;
    }
  }

  @keyframes swipe-lefttomid
  {
    0% {
      transform: translateX(-4000px);
      opacity: 0;
    }
    100% {
      transform: translateX(0px);
      opacity: 1;
    }
  }
