@charset "UTF-8";
/* CSS Document */

html {
    scroll-behavior: smooth;
    -webkit-scroll-behavior: smooth;
    -moz-osx-scroll-behavior: smooth;
}


/* Carousel Bootstrap */

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-item {
  position: relative;
  display: none;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
	transition: height 0.66s ease-out;
	
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;	
	transition: height 0.66s ease-out;
	height: inherit;


}

@media screen and (prefers-reduced-motion: reduce) {
  .carousel-item.active,
  .carousel-item-next,
  .carousel-item-prev {
    transition: none;
  }
}

.carousel-item-next,
.carousel-item-prev {
  position: absolute;
  top: 0;
}

.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  .carousel-item-next.carousel-item-left,
  .carousel-item-prev.carousel-item-right {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.carousel-item-next,
.active.carousel-item-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  .carousel-item-next,
  .active.carousel-item-right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.carousel-item-prev,
.active.carousel-item-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  .carousel-item-prev,
  .active.carousel-item-left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: .6s;
  transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  .carousel-fade .carousel-item-next,
  .carousel-fade .carousel-item-prev,
  .carousel-fade .carousel-item.active,
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-prev {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 25%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
}

.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: .9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: -20px;
  left: 0;
  z-index: 15;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  position: relative;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
	margin-top: 20px;
  text-indent: -999px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5);
	display: none;
	
}

.carousel-indicators li::before {
  position: absolute;
  top: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

.carousel-indicators li::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

.carousel-indicators .active {
  background-color: #fff;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

/* End Carousel Bootstrap */



.privacyPolicy {
	width: 70%;
	min-width: 250px;
	margin: auto auto;
	}

body

{
	/* background-color: #EB0045; */
	background-color: #FFF;
	width: 100%;
	margin: 0;
}

@keyframes move-up {
	from {
    transform: translateY(500%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes move-down {
	from {
    transform: translateY(-350%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
	
	@keyframes appear {
	from {
    transform: translateY(0);
    opacity: 0;
  }
		
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
	
	@keyframes slide {
    from {
        opacity: 0;
        transform: translateY(50%);
    } 
    to {
        opacity: 1;
        transform: translateY(0);
    } 
}
	
	@keyframes grow {
    from {
        opacity: 1;
        transform: scale(1)
    } 
    to {
        opacity: 1;
        transform: scale(1.2);
    } 
}

@keyframes jump {
    0% { transform: translate(0px, 1px) rotate(0deg); }
    10% { transform: translate(0px, 2px) rotate(0deg); }
    20% { transform: translate(0px, 5px) rotate(0deg); }
    30% { transform: translate(0px, 2px) rotate(0deg); }
    40% { transform: translate(0px, 1px) rotate(0deg); }
    50% { transform: translate(0px, 0px) rotate(0deg); }
    60% { transform: translate(0px, 1px) rotate(0deg); }
    70% { transform: translate(0px, 2px) rotate(0deg); }
    80% { transform: translate(0px, 5px) rotate(0deg); }
    90% { transform: translate(0px, 2px) rotate(0deg); }
    100% { transform: translate(0px, 1px) rotate(0deg); }
}

@keyframes fade-in {
    from {opacity: 0; transform: scale(.7,.7)}
    to {opacity: 1;}
}

.hidden {
  opacity: 0;
}

.fade-in-element {
  animation: fade-in 1s;
  animation-delay: fade-in 3s;
}


hr.style-two {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}


h1 {
font-family: 'Oswald', sans-serif;
font-size: 4em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 30px;
	text-shadow: 1px 1px 30px #EB0045;
}

h2 {
	font-family: 'Oswald', sans-serif;
font-size: 2em;
	opacity: 1;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 30px;
	padding-top: 20px;
	padding-bottom: 20px;

}

h3 {
	font-family: 'Oswald', sans-serif;
font-size: 1.6em;
	opacity: 1;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding-top: 10px;
	padding-bottom: 10px;

}

h4 {
	font-family: 'Oswald', sans-serif;
font-size: .8em;
	color: #000;
	opacity: 1;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0px;

}

h5 {
	font-family: 'Oswald', sans-serif;
font-size: .9em;
	opacity: 1;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 5px;
	margin-bottom: -30px;

}

h6 {
	font-family: 'Oswald', sans-serif;
font-size: 1em;
	opacity: 1;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding-top: 20px;
	padding-bottom: 00px;

}


p {
	font-family: 'Oswald', sans-serif;
font-size: .9em;
	opacity: 1;
	font-weight: 400;
	text-transform: none;
}


.greyBackground {
	/* background-image: linear-gradient(to right, rgba(243,243,243,1), rgba(243,243,243,0)); */
	background-color: #E8E8E8;
}

.redButton {
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
	font-size: 20px;
	text-transform: uppercase;
	width: 250px;
	margin: auto auto;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #FFFFFF;
	background-color:#EB0045;
	/* animation: 
		appear 1s ease-in; */
	/*
	-webkit-clip-path: polygon(100% 100%, 80% 0, 10% 0%, 0% 100%);
	clip-path: polygon(70% 150%, 80% 0, 10% 0%, 0% 100%); */
}

.redButton:hover {
	color: #FFFFFF !important;
	opacity: 1;
}


.blackButton {
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
	font-size: 20px;
	text-transform: uppercase;
	width: 250px;
	margin: auto auto;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	background-color:#000000;
	/* animation: 
		appear 1s ease-in; */
	/*
	-webkit-clip-path: polygon(100% 100%, 80% 0, 10% 0%, 0% 100%);
	clip-path: polygon(70% 150%, 80% 0, 10% 0%, 0% 100%); */
}

.blackButton:hover {
	color: #FFFFFF !important;
	opacity: 1;
}

.hollowButton {
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
	font-size: 20px;
	text-transform: uppercase;
	width: 250px;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #FFFFFF;
	border-color:#EB0045;
	border-width: 2pt;
	border-style: solid;
	/* animation: 
		appear 1s ease-in; */
	/*
	-webkit-clip-path: polygon(100% 100%, 80% 0, 10% 0%, 0% 100%);
	clip-path: polygon(70% 150%, 80% 0, 10% 0%, 0% 100%); */
}


.hollowButton:hover {
	color: #FFFFFF !important;
	opacity: 1;
}


.hollowHeaderButton {
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
	font-size: 20px;
	text-transform: uppercase;
	width: 250px;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #FFFFFF;
	border-color:#EB0045;
	border-width: 2pt;
	border-style: solid;
	/* background-color: rgba(0, 0, 0, 0.5); */
	margin: auto auto;
	/* animation: 
		appear 1s ease-in; */
	/*
	-webkit-clip-path: polygon(100% 100%, 80% 0, 10% 0%, 0% 100%);
	clip-path: polygon(70% 150%, 80% 0, 10% 0%, 0% 100%); */
}


.hollowHeaderButton:hover {
	color: #FFFFFF !important;
	opacity: 1;
}



.footerTag {
	font-family: 'Oswald', sans-serif;
	font-size: .9em;
	color: #fff;
	opacity: 1;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 2px;
	/* padding-top: 100px; */
}

a {
	font-family: 'Oswald', sans-serif;
	letter-spacing: 1px;
	color: #fff;
	opacity: 1;
	text-decoration: none;
}

a:hover {
	/* color: #EB0045; */
	color: #F07397;
	opacity: 1;
	text-decoration: none;
}

#logo {
	
	width: 140px;
	height: auto;
	/* box-shadow: 2px 2px 4px #000000; */
	padding-bottom: 30px;
}

.centerJustify {
	text-align: center;
}

.leftJustify {
	text-align: left;
	padding-left: 0px;
}

.allCaps {
	text-transform: uppercase;
}

.whiteText {
	color: #FFFFFF;
}

.whiteText:hover {
	color: #FFFFFF;
}


.blackText {
	color: #100F0F;
}

.blackText:hover {
	color: #100F0F;
}

.redText {
	color: #EB0045;	
}

.redItalicText {
	color: #EB0028;	
	font-weight: 300;
	font-style:italic;
}

.maxWidth {
max-width: 900px;
text-align: center;
margin: auto auto;	
}

.glow {
	box-shadow: 0px 0px 25px #EFEFEF;
}


#headerLogo {
	display: inline-block;
	width: 10%;
	height: auto;
	min-width: 80px;
	padding-right: 150px;
	padding-top: 10px;
	padding-bottom: 10px;
	vertical-align: middle;
}

#mainLogo {
	display: inline-block;
	width: 15%;
	height: auto;
	min-width: 250px;
	padding-top: 130px;
	padding-bottom: 10px;
	vertical-align: middle;
}

.desktopNavClear {
	font-family: 'Titillium Web', sans-serif;
	display: block;
	position:fixed;
	width: 100%;
	height: auto;
	font-size: 11pt;
	font-style: normal;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	text-align:center;
	background-color:#F1F1F1;
	background: rgba(00, 00, 00, 0.0);
	padding: 0px;
	z-index:10;
	transition: 1s all;
}

.desktopNav {
font-family: 'Titillium Web', sans-serif;
	display: block;
	position:fixed;
	width: 100%;
	height: auto;
	font-size: 11pt;
	font-style: normal;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	text-align:center;
	background-color:#F1F1F1;
	background: rgba(00, 00, 00, 0.95);
	padding: 0px;
	z-index:10;
	transition: 1s all;
}

#mobileLogo {
	display: none;
}

.topnav {
	display: none;
}

.topnav a {display: none;}
  .topnav a.icon {
    float: ;
    display: block;
	color: #434343;
	text-align: right;
	font-size: 20pt;
	padding-top: 0px;
	padding-bottom: 20px;
	  padding-right: 20px;
	  transition: 1s all;
  }
  
  topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: ;
    right: 50%;
    top: 163px;
	font-size: 20pt;
	  	color: #434343;
	  transition: 1s all;
  }
  
  .topnav.responsive a {
    font-family: 'Oswald', sans-serif;
	float: none;
    display: block;
	font-size: 18pt;
    text-align: center;
	text-transform: uppercase;
	padding-top: 20px;
	padding-right: 0px;
	color: #000;
	  transition: 1s all;
  }

.dropbtn {

  font-family: 'Oswald', sans-serif;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 700;
  background-color: transparent;
  color: #FFF;
  padding: 0px;
  font-size: 11pt;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #FFF;
	opacity: .9;
	padding-top: 12px;
  min-width: 310px;
  box-shadow: 0px 4px 16px 0px rgba(0,0,0,0.4);
  z-index: 1;
}

.dropdown-content a {
	
  color: #000;
  padding: 16px 16px;
  text-decoration: none;
  display: block;
	text-align: left;
}

.dropdown-content a:hover {
	
	background-color: #f1f1f1;
	 color: #EB0028; 
	/* color: #F07397; */

}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: transparent;
  /* color: #EB0028; */
	color: #F07397;
}

.smallBadge {
	width: 50px;
	height: auto;
	vertical-align: middle;
	padding-left: 5px;
	padding-right: 10px;
}


.smIconContainer {
	padding-top: 50px;
	text-align: left;
	
}


#smIcon {
	width: 35px;
	height: auto;
	padding-right: 10px;
	vertical-align: top;
}

#smIcon:hover {
	opacity: .5;
}


.headerContainer {
		width: 100%;
		height: 600px;
		text-align: center;
		background-image: url("images/hero_background_2.jpg");
		background-size: 100%;
		background-repeat: no-repeat;
		background-position: bottom center;
	/* padding-top: 40px; */
	}

.oneContainer {
		width: 100%;
		height: auto;
		text-align: center;
		background-image: url("images/one_on_one_header.jpg");
		background-size: 107%;
		background-repeat: no-repeat;
		background-position: top center;
	padding-top: 0px;
	padding-bottom: 80px;
	
	}

.introContainer {
	background-image: url("images/field_red_background_top.png");
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	padding-top: 250px;
	padding-bottom: 130px;
	text-align: center;
	margin-top: -250px;
}

.introInteriorContainer {
	padding-top: 0px;
	padding-bottom: 60px;
	text-align: center;
	/* margin-top: -250px; */
}

.introText {
	max-width: 1000px;
	margin: auto auto;
}

.columnService {
		/* float: left; */
		display: inline-block;
	/*position: relative;*/
	/*min-height: 800px;*/
		width: 25%;
		margin: -2.1px;
		min-width: 300px;
	
		padding: 00px 00px 40px 00px;
		vertical-align: top;
}

.columnImages {
		/* float: left; */
		display: inline-block;
		width: 25%;
		margin: -2.1px;
		min-width: 270px;
		padding: 00px 00px 00px 00px;
}

.columnFiveImages {
		/* float: left; */
		display: inline-block;
		width: 20%;
		margin: -2.1px;
		min-width: 270px;
		padding: 00px 00px 00px 00px;
}


.columnThreeImages {
		/* float: left; */
		display: inline-block;
		width: 33.33%;
		margin: -2.1px;
		min-width: 270px;
		padding: 00px 00px 00px 00px;
}




.pillarsContainer {
	background-image: url("images/field_red_background_top.png");
	background-size: 110%;
	background-repeat: no-repeat;
	background-position: bottom center;
	width: 100%;
	margin-top: -100px;
	margin-bottom: -1px;
	}

.columnPillars {
		/* float: left; */
		display: inline-block;
		width: 18%;
		min-width: 270px;
		margin: 00px;	
		padding: 00px 00px 40px 00px;
		vertical-align: top;
}

.pillarsIcon {
	max-height: 260px;
	width: auto;
}

.highlightIcons {
	max-width: 130px;
	width: auto;
	margin-bottom: -30px;
}


.columnText {
	max-width: 80%;
	text-align: center; 
	margin: auto auto;
}

.servicesContainer {
	width: 100%;
	margin-top: -100px;
	padding-bottom: 50px;
	}

.serviceIcon {
	width: 100%;
	height: auto;
	padding: 0px;
	margin: 0;
}

.picturesContainer {
	width: 100%;
	margin-top: 00px;
margin-bottom: -5px;
	overflow: hidden;
	height: 20%;
	vertical-align: top;
}

.pictureColumn {
	width: 100%;
	height: auto;
	overflow: 200px;
	padding: 0px;
	margin: 0;
		vertical-align: top;


	
}


.serviceIcon:hover {
	opacity: .9;
}

.columnInstructor {
		/* float: left; */
		display: inline-block;
		width: 45%;
		min-width: 300px;
		padding: 00px 20px 00px 20px;
		vertical-align: top;
}

.columnText {
	max-width: 80%;
	text-align: center; 
	margin-top: -25px;
}

.instructorContainer {
	background-color: #1C1C1C;
	width: 100%;
	margin: 0;
	padding-top: 50px;
	padding-bottom: 70px;
	}

.instructorIcon {
	max-width: 300px;
	height: auto;
	padding: 0px;
	margin: 0;
}

.testimonialsContainer {
	background-color: #EB0045;
	padding-top: 50px;
	padding-bottom: 80px;
	width: 100%;
		transition: height 1s;

}

.headshots {
	max-width: 100px;
	height: auto;
}

.testimonialText {
	/* font-family: 'Permanent Marker', cursive; */
	font-family: 'Oswald', sans-serif;
font-size: 1.7em;
	opacity: 1;
	font-weight: 100;
	text-transform: none;
	letter-spacing: 1px;
	padding-top: 20px;
	padding-bottom: 20px;
	max-width: 890px;
	margin: auto auto;
			transition: height 1s;

}

.testimonialCredits {
	font-family: 'Oswald', sans-serif;
font-size: .8em;
	opacity: 1;
	font-weight: 300;
	text-transform: uppercase;
	padding-top: 20px;
	padding-bottom: 20px;
	margin: auto auto;
}

.partnersContainer {
	width: 100%;
	padding-top: 50px;
	padding-bottom: 50px;
	text-align: center;
}

.partnerLogos {
	display: inline;
	width: 150px;
	height: auto;
	padding: 30px;
	margin: auto auto;
	vertical-align: middle;
}


.footerContainer {
	background-color: #EB0045;
	padding-top: 70px;
	padding-bottom: 50px;
	text-align: center;
}

#logoFooter {
	max-width: 140px;
	height: auto;
}

.smIconFooter {
	width: 30px;
	height: auto;
}

.smIconFooter:hover {
	opacity: .6;
}

.redLines {
	max-width: 500px;
	width: 80%;
	margin: auto auto;
}

.leagueText {
	margin-top: -30px;
}

.alumniContainer {
	padding-bottom: 70px;
	padding-top: 40px;
	padding-left: 10px;
	padding-right: 10px;
	/* background-color: #fff; */
}

.affiliateColumn {
	display: inline-block;
	width: 20%;
	margin-left: 10px;
	margin-right: 10px;
}


.highlightsContainer {
	
	vertical-align: top;
	margin: auto auto;
	padding-bottom: 40px;
}

.highlightsColumn {
	display: inline-block;
		vertical-align: top;
	width: 17%;
	margin-left: 10px;
	margin-right: 10px;
}

.scholarshipColumn {
	display: inline-block;
		vertical-align: top;
	width: 10%;
	margin-left: 45px;
	margin-right: 45px;
}

.filmColumn {
	display: inline-block;
		vertical-align: top;
	width: 25%;
	min-width: 270px;
	margin-left: 10px;
	margin-right: 10px;
}


#onlineStore {
	width: 60%;
	max-width: 500px;
	height: auto;
	margin: auto auto;
	padding: 10px;
}

#onlineStore:hover {
	opacity: .8;
}

#coachChris {

	max-width: 280px;
	height: auto;
	margin: auto auto;
	padding-bottom: 20px;
	
}

#colorAnalyst {

	max-width: 1000px;
	width: 100%;
	height: auto;
	margin: auto auto;
	padding-bottom: 40px;
	
}

.proList {
	max-width: 900px;
	margin: auto auto;
	line-height: 26px;
}


.eventLogos {
	width: 150px; height: auto; margin-top: 0px;
}

.eventLogosLebanon {
	width: 240px; height: auto; margin-top: 0px;
}


.formContainer {
	background-color: #1C1C1C;
	padding-top: 50px;
	padding-bottom: 50px;
	padding-left: 50px;
	padding-right: 50px;
	text-align: center;
	margin: auto auto;
	background-image: url("images/field_goal_background_black.jpg");
	background-size: cover;
	background-position: bottom;
	background-repeat: no-repeat;
}

.formText {
	font-family: 'Oswald', sans-serif;
font-size: 1.2em;
	letter-spacing: 1px;
	font-weight: 400;
	text-transform: uppercase;
}

.formTextSmall {
	font-family: 'Oswald', sans-serif;
font-size: .9em;
	letter-spacing: 1px;
	font-weight: 400;
	text-transform: uppercase;
}


input {
	width: 80%;
	max-width: 350px;
	height: 40px;
	border-radius: 5px;
	border: solid;
	border-color: #EB0045;
	margin: 10px;
	vertical-align: middle;
	background-color: #1C1C1C;
	font-family: 'Oswald', sans-serif;
	color: #FFF;
	font-size: .9em;
	padding-left: 10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input:focus {
	background-color: #000000;
}

input:checked {
		background-color: #EB0045;
}

input#county {
	width: 25px;
	height: 25px;
	vertical-align: middle;
	-webkit-appearance: none;
	-moz-appearance: none;
	/* appearance: none; */
	
}

input#escprogram {
	width: 25px;
	height: 25px;
	vertical-align: middle;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input#marketing {
	width: 25px;
	height: 25px;
	vertical-align: middle;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.formButton {
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
	font-size: 20px;
	text-transform: uppercase;
	width: 200px;
	margin: auto auto;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 45px;
	color: #FFFFFF;
	background-color:#EB0045;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.formButton:hover {
	opacity: .7;
}




.formRadio {
	display: inline;
	width: 80%;
 max-width: 500px !important;
	margin: auto auto;
	-webkit-appearance: none;
	-moz-appearance: none;
	/* appearance: none; */
}


.travelContainer {
	background-image: url("images/field_red_background.jpg");
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: bottom center;
	background-color: #EB0045;
	padding-top: 50px;
	padding-bottom: 80px;
	width: 100%;
		transition: height 1s;
	text-align: center;
	margin: auto auto;
}

.contactContainer {
	background-image: url("images/footwork_background.jpg");
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: top center;
	background-color: #EB0045;
	padding-top: 50px;
	padding-bottom: 80px;
	width: 100%;
		transition: height 1s;
	text-align: center;
	margin: auto auto;
}

video {
	padding-top: 00px;
	padding-bottom: 00px;
	margin-bottom: -4px;
	
	
}


.videoContainerHome {
	background-image: url("images/empty_football_field_background.jpg");
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: bottom center;
	background-color: #EB0045;
	padding-top: 00px;
	padding-bottom: 00px;
	width: 100%;
		transition: height 1s;
	text-align: center;
	margin: auto auto;
}

.videoContainer {
	width: 100%;
	text-align: center;
	margin-top: -20px;
}

.videoColumn {
	display: inline-block;
	width: 45%;
	height: auto;
	margin: auto auto;
	padding-bottom: 30px;
}

.eliteCampContainer {
	background-image: url("images/lvc_football_field.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	background-color: #EB0045;
	padding-top: 100px;
	padding-bottom: 120px;
	padding-left: 10px;
	padding-right: 10px;
	text-align: center;
	border-top: #EB0045;
	border-style: solid;
	border-width: 5pt;
	border-left: none;
	border-right: none;
	border-bottom: none;
}

.eventContainer {
	width: 95%;
	max-width: 1500px;
	margin: -80px auto 40px auto;
}

.eventDetails {
	margin-top: -30px;
}


.eventColumn {
		/* float: left; */
		display: inline-block;
		width: 55%;
		min-width: 300px;
		padding: 00px 30px 00px 30px;
		vertical-align: middle;
	text-align: right;
}

.eventColumnRight {
		/* float: left; */
		display: inline-block;
		width: 32%;
		min-width: 300px;
		padding: 00px 30px 00px 30px;
		vertical-align: middle;
	text-align: center;
}



.eventIcon {
	width: 30px;
	height: auto;
	padding-right: 10px;
	vertical-align: middle;
	margin-top: -3px;
}


.logoIcons {
	width: 60px;
	height: auto;
	padding-left: 5px;
	padding-right: 5px;
}


@media only screen and (max-width: 724px) {
	
	
	.sevenHeader {
		margin-top: -100px;
		margin-bottom: 85px;
	}
	
	#coachChris {

	padding-top: 30px;
	
}
	
		#colorAnalyst {

	padding-top: 30px;
	
}
	
	
	
	video {
	padding-top: 0px;
		min-width: 100%;
		height: auto;
		margin-bottom: -5px;
	
	
}
	
	.videoColumn {
		width: 100%;
	}
	
	
	
	.travelContainer {
	background-size: cover;
}

.contactContainer {
	background-size: cover;
}

	
	h1 {
		max-width: 100%;
		font-size: 2em;
		letter-spacing: 10px;
		padding-left: 0px;
	}
	
	h2 {
		padding-left: 10px;
		padding-right: 10px;
		max-width: 100%;
			letter-spacing: 3px;

	}
	
	h4 {
		padding-left: 10px;
		padding-right: 10px;
	}
	
	#mobileLogo {
	display: block;
		text-align: center;
		padding-top: 30px;
}
	
	.mobileLogo {
		max-width: 350px;
		width: 60%;
		height: auto;
		margin: auto auto;
		padding-bottom: 10px;
	}

	
	.desktopNav {
	display: none;
}
	
		.desktopNavClear {
	display: none;
}
	
	

.topnav {
	display: block;
	padding-right: 00px;
	text-align: center;
	padding-top: 0px;
	transition: 1s all;
}

.topnav a {display: none;}
  .topnav a.icon {
    float: ;
    display: block;
	  transition: 1s all;
  }
  
  topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: ;
    right: 50%;
    top: 163px;
	  transition: 1s all;
  }
  
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: center;
	padding-top: 15px;
	padding-right: 0px;
	  transition: 1s all;
  }
	
	
	
	.headerContainer {
		width: 100%;
		height: 400px;
		text-align: center;
		background-image: url("images/hero_background_2.jpg");
		background-size: 300%;
		background-repeat: no-repeat;
		background-position: center;
		margin-bottom: -200px;
	}
	
	
	.oneContainer {
		width: 100%;
		height: 350px;
		text-align: center;
		background-image: url("images/one_on_one_header.jpg");
		background-size: 400%;
		background-repeat: no-repeat;
		background-position: top center;
	padding-top: 20px;
	
	}
	
	
	.introInteriorContainer {
		padding-left: 10px;
		padding-right: 10px;
	}
	
	.introContainer {
		background-size: cover;
		padding-left: 10px;
		padding-right: 10px;
		padding-bottom: 20px;
	}
	
	.servicesContainer {
		margin-top: 0px;
	}
	
	.picturesContainer {
		padding-top: 30px;
	}
	
	.testimonialText {
		padding-left: 10px;
		padding-right: 10px;
	}
	
	
	.footerTag {
		padding-left: 5px;
		padding-right: 5px;
		letter-spacing: 1px;
		font-size: .7em;
	}
	
	
	.affiliateColumn {
	width: 40%;
		margin: 10px;
}
	
	.leagueText {
		margin-top: -25px;
	}
	
	.carousel-control-prev,
.carousel-control-next {
 display: none;
}
	
	.highlightsColumn {
	width: 35%;
}
	
		.scholarshipColumn {
	width: 60%;
}
	
	.formContainer {
	padding-left: 20px;
		padding-right: 20px;
}
	
	.formRadio {
	display: inline;
	text-align: left !important;
}
	
	
	.eventContainer {
	width: 98%;
	margin: auto auto;
		text-align: center;
		padding-bottom: 30px;
}
	
	.eventColumn {
		/* float: left; */
		display: inline-block;
		width: 45%;
		min-width: 300px;
		padding: 00px 10px 00px 10px;
		vertical-align: middle;
		text-align: center;
}
	
		.eventColumnRight {
		/* float: left; */
		display: inline-block;
		width: 45%;
		min-width: 300px;
		padding: 00px 10px 00px 10px;
		vertical-align: middle;
			text-align: center;
}
	
}

@media only screen and (min-width:725px) and (max-width: 1107px) {

	
	.sevenHeader {
		margin-top: -100px;
		margin-bottom: 85px;
	}
	
	h1 {
		max-width: 900px;
		font-size: 3em;
		letter-spacing: 10px;
		margin: auto auto;
	}
	
	
	.desktopNav {
	display: none;
}
	
		.desktopNavClear {
	display: none;
}
	
	#mobileLogo {
	display: block;
		text-align: center;
		padding-top: 30px;
}
	
	.mobileLogo {
		max-width: 250px;
		width: 70%;
		height: auto;
		margin: auto auto;
	}

.topnav {
	display: block;
	padding-right: 00px;
	text-align: center;
	padding-top: 0px;
}

.topnav a {display: none;}
  .topnav a.icon {
    float: ;
    display: block;
  }
  
  topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: ;
    right: 50%;
    top: 163px;
  }
  
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: center;
	padding-top: 15px;
	padding-right: 0px;
  }
	
	
	.headerContainer {
		width: 100%;
		height: 500px;
		text-align: center;
		background-image: url("images/hero_background_2.jpg");
		background-size: 200%;
		background-repeat: no-repeat;
		background-position: center;
		padding-top: 40px;
	}
	
	.oneContainer {
		width: 100%;
		height: 500px;
		text-align: center;
		background-image: url("images/one_on_one_header.jpg");
		background-size: 200%;
		background-repeat: no-repeat;
		background-position: top center;
	padding-top: 20px;
	
	}
	
		.carousel-control-prev,
.carousel-control-next {
 display: none;
}
	
	.highlightsColumn {
	width: 35%;
}
	
		.scholarshipColumn {
	width: 20%;
}
	
	
	.eventContainer {
	width: 98%;
	margin: auto auto;
		text-align: center;
}
	
	.eventColumn {
		/* float: left; */
		display: inline-block;
		width: 45%;
		min-width: 300px;
		padding: 00px 10px 00px 10px;
		vertical-align: middle;
		text-align: right;
}
	
		.eventColumnRight {
		/* float: left; */
		display: inline-block;
		width: 45%;
		min-width: 300px;
		padding: 00px 10px 00px 10px;
		vertical-align: middle;
		text-align: center;
}
	
	
}


@media only screen and (min-width:1550px){
	
	
	
	.mobileMargin {
		position: absolute;
        bottom: 0;
	}
	
	.rightJustify {
	text-align: right !important;
}

	
	h3 {
		font-size: 1.9em;
		font-weight: 700;
	}
	
	h6 {
		padding: 0px;
	}

	.headerContainer {
		width: 100%;
		height: 900px;
		text-align: center;
		background-image: url("images/hero_background_2.jpg");
		background-size: 100%;
		background-repeat: no-repeat;
		background-position: top center;
	padding-top: 190px;
	
	}
	
	
	.oneContainer {
		width: 100%;
		height: 850px;
		text-align: center;
		background-image: url("images/one_on_one_header.jpg");
		background-size: 100%;
		background-repeat: no-repeat;
		background-position: top center;
	padding-top: 20px;
	
	}
	
	
	
	

.introContainer {
	margin-top: -430px;
}
	

	.servicesContainer {
		margin-top: 0;
	}
	
	
		.introInteriorContainer {
	/*margin-top: -450px;*/
	padding-bottom: 60px;
}
	
	
	.eventLogos {
	width: 150px; height: auto; margin-top: 0px;
}
	
	.eventLogosLebanon {
	width: 240px; height: auto; margin-top: 20px; margin-bottom: 10px;
}
	
		.eventContainer {
	width: 98%;
	margin: auto auto;
		text-align: left;
			padding-bottom: 30px;
}
	
	.eventColumn {
		/* float: left; */
		display: inline-block;
		width: 53%;
		min-width: 300px;
		padding: 00px 10px 00px 10px;
		vertical-align: middle;
		text-align: right;
}
	
		.eventColumnRight {
		/* float: left; */
		display: inline-block;
		width: 34%;
		min-width: 300px;
		padding: 00px 10px 00px 10px;
		vertical-align: middle;
		text-align: center;
}
	
	
}

@media only screen and (min-width:2200px){
	
	.rightJustify {
	text-align: right !important;
}

	
	h1 {
		font-size: 5em;
	}
	
	h3 {
		font-size: 1.9em;
		font-weight: 700;
	}
	
	h6 {
		padding: 0px;
	}

	.headerContainer {
		width: 100%;
		height: 900px;
		text-align: center;
		background-image: url("images/hero_background_2.jpg");
		background-size: 100%;
		background-repeat: no-repeat;
		background-position: center;
	padding-top: 240px;
	
	}
	
		.oneContainer {
		width: 100%;
		height: 850px;
		text-align: center;
		background-image: url("images/one_on_one_header.jpg");
		background-size: 100%;
		background-repeat: no-repeat;
		background-position: top center;
	padding-top: 150px;
	
	}
	

.introContainer {
	margin-top: -330px;
	padding-bottom: 200px;
}
	
	.introInteriorContainer {
	/* margin-top: -450px; */
	padding-bottom: 50px;
}
	
	
	.introText {
		font-size: 1.1em;
	}
	
	.servicesContainer {
		margin-top: 0;
	}
	
	.columnInstructor {
		max-width: 700px;
}
	
	.extraMargin {
		margin-top: 80px !important;
	}
	
}




