* {
	margin: 0px;
	padding: 0px;
}

.clearfix {
	clear:both;
	width: 100%;
	height: 0px;
}

.rightAlign {
	float:right;
margin-left: 10px;
}

.rightAlign .button{
	margin-left: 10px;
}

a:link, a:visited {
	color: white;
	text-decoration: none;
	transition: color 0.2s, background-color 0.2s;
}

a:hover {
	color: #DDD;
}

.button {
	font-size: 23px;
	letter-spacing: 0.04em;
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 10px;
	transition: color 0.2s, background-color 0.2s;
	text-decoration: none;
	display: inline-block;
}

.btnWhite {
	background-color: transparent;
	color: white;
	border: 5px solid white;
	padding-left: 25px;
	padding-right: 25px;
	padding-top: 15px;
	padding-bottom: 15px;
}

.btnBlue {
	background-color: #4a9cdf;
	color: white;
	border: none;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 20px;
	padding-bottom: 20px;
}


body {
	font-family: "Raleway", sans-serif;
}

h1 {
	font-size: 40px;
	margin-bottom: 40px;
}

p {
	width: 100%;
	font-size: 18px;
	margin-bottom: 10px;
	text-align: justify;
	line-height: 1.4em;
}

header {
	width: 100%;
	height: 120px;
	background-color: white;
	position: fixed;
	z-index: 999;
	padding: 30px;
	box-sizing: border-box;
}

header:after{
	width: 100vw;
	height: 80px;
	position: fixed;
	top: 120px;
	left:0px;
	display: block;
	z-index: 99;
	content: '';
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolygon points='0,0 100,0 0,100' style='fill:%23FFF;' /%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

section {
	position: relative;
	width: 100%;
	height: auto;
	box-sizing: border-box;
	background-color: grey;
	/*border: blue 1px solid; */
}

.whiteBackground {
	background-color: white;
	padding: 0px 70px 70px 70px;
}

.quote, .testimonialQuotes {
	background-color: white;
}

.testimonialQuotes h1, .quote h1 {
	text-align: center;
	font-weight: 300;
	padding-top: 120px;
	padding-bottom: 100px;
	padding-left: 70px;
	padding-right: 70px;
}


.logoWhite {
	display: block;
	width: 280px;
	height: 210px;
	max-width: 100%;
	background-image: url("../images/AHF_logo.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
	position: absolute;
	z-index: 999;
	transition: width 1s, height 1s;
}

.logoBlack {
	display: block;
	width: 280px;
	height: 210px;
	max-width: 100%;
	background-image: url("../images/AHF_logo_black.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
	position: absolute;
	z-index: 999;
}

#topLogo {
	top: 70px;
	left: 70px;
}

nav {
	width: calc(100% - 160px);
	float: right;
	text-align: right;
	margin-top: 20px;
}

nav ul {
	list-style-type: none;
	float: right;
}

nav ul li {
	float: left;
	margin-left: 12px;
	font-size: 16px;
	text-transform: uppercase;
}

.socialmediaicon {
	width: 20px;
	height: 20px;
	background-color: red;
	display: inline-block;
}

section ul {
	margin-left: 30px;
}

#home {
	min-height: 100vh;
	height: auto;
	background-color: #acacac;
	background: url("../images/1007.jpg");
	background-position: 60% top;
	background-attachment: fixed;
	background-size: cover;
}

#welcome {
	position: relative;
	box-sizing: border-box;
	padding-top: 20vh;
	padding-bottom: 20vh;
	padding-left: 180px;
	padding-right: 70px;
	float: right;
	max-width: 1150px;
	width: 100%;
	min-height: 100vh;
	-webkit-clip-path: polygon(33% 0, 100% 0, 100% 100%, 0% 100%);
	clip-path: polygon(33% 0, 100% 0, 100% 100%, 0% 100%);
	background-color: #acacac;
	background: url("../images/1007_blur.jpg");
	background-position: 60% top;
	background-attachment: fixed;
	background-size: cover;
	color: white;
}

#welcome h1 {
	color:white;
	font-size: 65px;
	text-transform: uppercase;
	text-align: right;
	margin-bottom: 45px;
	width: 100%;
	max-width: 700px;
	margin-left: auto;
}

#gallery {
	height: 100vh;
	position: relative;
	padding: 0px;
	overflow-y: hidden;
	overflow-x: hidden;
	background-color: #4a9cdf;
}

.slide {
	width: 100vw;
	height: 100vh;
	background-size: cover;
	background-attachment: fixed;
}

#galleryButtons {
	width: 100%;
	height: 50px;
	top: 45vh;
	position: relative;
	z-index: 30;
	padding-left: 50px;
	padding-right: 50px;
	box-sizing: border-box;
}

#galleryLeft{
	width: 30px;
	height: 40px;
	float: left;
}

#galleryRight{
	width: 30px;
	height: 40px;
	margin-left: auto;
}

.galleryWhiteArrowRightSVG, .galleryWhiteArrowLeftSVG{
	fill:#fff;
	transition: fill 0.5s;
}

#galleryRight:hover .galleryWhiteArrowRightSVG {
	fill: #4a9cdf;
}

#galleryLeft:hover .galleryWhiteArrowLeftSVG {
	fill: #4a9cdf;
}

#gallerySlides ul {
	list-style-type: none;
}

#gallerySlides ul li {
	width: 100vw;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

#gallerySlides ul li.galleryVisible {
	opacity: 1;
}

#galleryCover {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
}

#galleryCover path {
  fill: #4a9cdf;
}

#galleryCover.is-animating {
  z-index: 1;
  opacity: 1;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.price {
	height: 40px;
	width: 100%;
	clear:both;
	padding-top: 10px;
}

.price img {
	float: left;
}

.price p {
	font-family: "bebas-neue",sans-serif;
	font-style: normal;
	font-weight: 200; 
	font-size: 30px;
	float: left;
	width: 50%;
	height: 70px;
	margin-top: 12px;
	margin-left: 10px;	
}

.price .timesequals {
	font-size: 20px;
	margin-top: 7px;
}

#personaltraining {
	min-height: 100vh;
	height: auto;
	position: relative;
	padding: 0px;
	overflow-y: hidden;
	overflow-x: hidden;
	background-color: #acacac;
	background: url("../images/alexnat.jpg");
	background-position: 60% center;
	background-attachment: fixed;
	background-size: cover;
}

#personaltraining .blur {
	width: 100%;
	min-height: 100vh;
	height: auto;
	max-width: 1150px;
	padding-top: 270px;
	padding-left: 70px;
	padding-bottom: 70px;
	background-color: #acacac;
	background: url("../images/alexnat_blur.jpg");
	color: white;
	-webkit-clip-path: polygon(0 0, 92% 0, 67% 100%, 0% 100%);
	clip-path: polygon(0 0, 92% 0, 67% 100%, 0% 100%);
	box-sizing: border-box;
	padding-right: 400px;
	background-position: 60% center;
	background-attachment: fixed;
	background-size: cover;
}

#groupsclasses {
	min-height: 100vh;
	height: auto;
	position: relative;
	padding: 0px;
	overflow-y: hidden;
	overflow-x: hidden;
	background-color: #acacac;
	background: url("../images/group.jpg");
	background-position: 60% center;
	background-attachment: fixed;
	background-size: cover;
}

#groupsclasses .blur {
	width: 100%;
	min-height: 100vh;
	height: auto;
	max-width: 1150px;
	padding-top: 70px;
	padding-left: 400px;
	padding-bottom: 270px;
	background-color: #acacac;
	background: url("../images/group_blur.jpg");
	color: white;
	-webkit-clip-path: polygon(8% 0, 100% 0, 100% 100%, 33% 100%);
	clip-path: polygon(8% 0, 100% 0, 100% 100%, 33% 100%);
	box-sizing: border-box;
	padding-right: 70px;
	background-position: 60% center;
	background-attachment: fixed;
	background-size: cover;
	float:right;
	margin-left: auto;
}

#groupsclasses .blur h1 {
	margin-left: auto;
	text-align: right;
}

#onlinetraining {
	min-height: 130vh;
	height: auto;
	position: relative;
	padding: 0px;
	overflow-y: hidden;
	overflow-x: hidden;
	background-color: #acacac;
	background: url("../images/male_blur.jpg");
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
}

#onlinePTComingSoon {
	position: absolute;
	width: 500px;
	height: 600px;
	left: 50%;
	margin-left: -250px;
	top: 50%;
	margin-top: -300px;
	color: white;
}

#onlinePTComingSoon .logoWhite {
	width: 100%;
	height: 35%;
	top: 0px;
	left: 0px;
}

#onlinePTComingSoon h1 {
	font-family: "bebas-neue",sans-serif;
	font-style: normal;
	font-weight: 400; 
	font-size: 145px;
	text-align: center;
	top: 33%;
	position: absolute;
	width: 500px;
	margin: 0px;
}

#onlinePTComingSoon span {
	font-family: "bebas-neue",sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 111px;
	text-align: center;
	top: 75%;
	left: 0px;
	width: 500px;
	position: absolute;
	margin: 0px;
}

#onlinePTComingSoon p {
	width: 100%;
	font-size: 50px;
	font-family: "bebas-neue", sans-serif;
	font-style: normal;
	font-weight: 400;
	text-align: center;
	position: absolute;
	top: 80%;
}

.testimonialQuotes {
	height: 600px;
}

.testVisible {
	display: block !important;
}

.testimonial {
	max-width: 1140px;
	width: 100%;
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
	padding-left: 120px;
	padding-right: 120px;
	display: none;
	position:absolute;
	left: 50%;
	margin-left: -570px;
}

.testimonial h1{
	font-size: 30px;
	padding-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	text-align: justify;
}

.testimonial p {
	text-align: right;
	padding-bottom: 90px;
}

#testimonialButtons {
	width: 100%;
	height: 50px;
	top: 46%;
	position: absolute;
	z-index: 30;
	padding-left: 50px;
	padding-right: 50px;
	box-sizing: border-box;
}

#testimonialLeft{
	width: 30px;
	height: 40px;
	float: left;
}

#testimonialRight{
	width: 30px;
	height: 40px;
	margin-left: auto;
}

.testimonialWhiteArrowRightSVG, .testimonialWhiteArrowLeftSVG{
	fill:#4a9cdf;
	transition: fill 0.5s;
}

#testimonialRight:hover .testimonialWhiteArrowRightSVG {
	fill: black;
}

#testimonialLeft:hover .testimonialWhiteArrowLeftSVG {
	fill: black;
}


#socialMedia {
	height: 750px;
	background-color: #acacac;	
	background: url("../images/goldcoast.jpg");
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
}

#socialMedia ul {
	list-style-type: none;
	padding-top: 330px;
	margin-left: auto;
	margin-right: auto;
	max-width: 640px;
	width: 100%;
}

#socialMedia ul li {
	width: 100px;
	height: 100px;
	float: left;
	margin-left: 30px;
	margin-right: 30px;
}

#contact {
	padding-top: 70px;
}

#contact p {
	margin-bottom: 20px;
}

#contact form {
	width: 50%;
	padding-right: 20px;
	margin-right: 30px;
	box-sizing: border-box;
	float: left;
}

#contact form input {
	width: 100%;
	height: 40px;
	padding: 10px;
	border: none;
	background-color: #eee;
	transition: background-color 1s;
	outline: none;
	margin-bottom: 10px;
	font-size: 14px;
	letter-spacing: 0.5px;
}

#contact form input:focus, #contact form textarea:focus  {
	background-color: white;
}

#contact form textarea {
	width: 100%;
	height: 300px;
	padding: 10px;
	border: none;
	background-color: #eee;
	transition: background-color 1s;
	outline: none;
	margin-bottom: 10px;
	font-size: 14px;
}

#map {
	width: calc(50% - 30px);
	height: 600px;
	float: left;
	box-sizing: border-box;
	border: none;
}

#callnow {
	background-color: #4a9cdf;
	height: 500px;
	font-family: "bebas-neue",sans-serif;
	color: white;
}

#callnow h1 {
	padding-top: 215px;
	font-size: 70px;
}

#callnow a {
	color: white;
	text-decoration: none;
	transition: color 0.5s;
}

#callnow a:hover {
	color: #222;
}

footer {
	height: 400px;
	width: 100%;
	background-color: #222;
	position: relative;
}

footer a {
	color: white;
	text-decoration: none;
	transition: color 1s;
}

footer a:hover {
	color: #CCC;
}

footer .logoWhite {
	max-width: 240px;
	height:170px;
	width: 100%;
	position: absolute;
	right: 70px;
	bottom: 160px;
}

#corporate {
	position: absolute;
	bottom: 70px;
	left: 70px;
}

#corporate img {
	width: auto;
	height: 100px;
	margin-right: 10px;
}

#disclaimer {
	position: absolute;
	bottom: 70px;
	right: 70px;
	font-size: 20px;
	color: white;
}

#sendBtn {
	width: 200px !important;
	background-color: #4a9cdf !important;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}

#sendBtn:hover {
	color: white;
}

/* DIAGONALS & TRIANGLES -------------------------------- */

.diagonal_BL:after {
	width: 100%;
	height: 200px;
	position: absolute;
	bottom: 0px;
	left:0px;
	display: block;
	z-index: 99;
	content: '';
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolygon points='0,0 0,100 100,100' style='fill:%23FFF;' /%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.diagonal_TL:before {
	width: 100%;
	height: 200px;
	position: absolute;
	top: 0px;
	left:0px;
	display: block;
	z-index: 99;
	content: '';
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolygon points='0,0 100,0 0,100' style='fill:%23FFF;' /%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.diagonal_BR:after {
	width: 100%;
	height: 200px;
	position: absolute;
	bottom: 0px;
	left:0px;
	display: block;
	z-index: 99;
	content: '';
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolygon points='0,100 100,0 100,100' style='fill:%23FFF;' /%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.diagonal_BR_grey:after {
	width: 100%;
	height: 200px;
	position: absolute;
	bottom: 0px;
	left:0px;
	display: block;
	z-index: 99;
	content: '';
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolygon points='0,100 100,0 100,100' style='fill:%23222;' /%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.diagonal_TR:before {
	width: 100%;
	height: 200px;
	position: absolute;
	top: 0px;
	left:0px;
	display: block;
	z-index: 99;
	content: '';
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolygon points='0,0 100,0 100,100' style='fill:%23FFF;' /%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}


.diagonalShape {
	-webkit-shape-outside: polygon(100% 0, 0 0, 0% 100%, 0% 100%);
	shape-outside: polygon(100% 0, 0 0, 0% 100%);
	shape-margin: 10px;
	width: 114px;
	height: 400px;
	float: left;
}

/* GALLERY IMAGES / SLIDES - - - - - - - - - - - - -  */

#slide_1 {
	background-image: url("../images/gallery/16_jeans.png");
	background-position: center center;
	width: auto;
	max-width: 100%;
}

#slide_2 {
	background-image: url("../images/gallery/2_alex.jpg");
	background-position: right center;
	width: auto;
	max-width: 100%;
}

#slide_3 {
	background-image: url("../images/gallery/3_lunge.jpg");
	width: auto;
	background-position: center center;
	max-width: 100%;
}

#slide_4 {
	background-image: url("../images/gallery/4_jump.jpg");
	background-position: left center;
	width: auto;
	max-width: 100%;
}

#slide_5 {
	background-image: url("../images/gallery/5_group.jpg");
	background-position: center 80%;
	width: auto;
	max-width: 100%;
}

#slide_6 {
	background-image: url("../images/gallery/6_boxing.jpg");
	width: auto;
	max-width: 100%;
}

#slide_7 {
	background-image: url("../images/gallery/7_family.jpg");
	background-position: left center;
	width: auto;
	max-width: 100%;
}

#slide_8 {
	background-image: url("../images/gallery/8_hill.jpg");
	background-position: right center;
	width: auto;
	max-width: 100%;
}

#slide_10 {
	background-image: url("../images/gallery/10_stretch.jpg");
	background-position: left center;
	width: auto;
	max-width: 100%;
}

#slide_11 {
	background-image: url("../images/gallery/11_group.jpg");
	background-position: center 70%;
	width: auto;
	max-width: 100%;
}

#slide_12 {
	background-image: url("../images/gallery/12_outside.jpg");
	background-position: center 70%;
	width: auto;
	max-width: 100%;
}

#slide_13 {
	background-image: url("../images/gallery/13_boxing.jpg");
	background-position: center 14%;
	width: auto;
	max-width: 100%;
}

#slide_14 {
	background-image: url("../images/gallery/1_alexnat.jpg");
	background-position: left center;
	width: auto;
	max-width: 100%;
}

#slide_15 {
	background-image: url("../images/gallery/15_outdoor.jpg");
	background-position: right center;
	width: auto;
	max-width: 100%;
}

#slide_16 {
	background-image: url("../images/gallery/14_van.jpg");
	width: auto;
	max-width: 100%;
}



@media (max-width: 1240px) {
	
	.logoWhite {
		width: 200px;
		height: 140px;
	}
	
}

@media (max-width: 1024px) {
	
	.logoWhite {
		max-width: 200px;
		width: 100%;
		left: 50%;
	}
	
	#topLogo {
		top: 30px;
		left: 50%;
		margin-left: -100px;
	}
	
	#welcome {
		width: 100%;
		-webkit-clip-path: none;
		clip-path: none;
		padding-left: 70px;
		padding-right: 70px;
		padding-bottom: 300px;
		background-image: none;
		background-color: #4a9cdf;
	}
	
	#welcome h1 {
		width: 100%;
		max-width: 100%;
		margin-top: 70px;
		text-align: center;
	}
	
	.diagonalShape {
		display: none;
	}
	
	#personaltraining .blur, #groupsclasses .blur {
		width: 100%;
		-webkit-clip-path: none;
		clip-path: none;
		padding-left: 70px;
		padding-right: 70px;
	}
	
	#personaltraining .blur h1, #groupsclasses .blur h1 {
		text-align: left;
	}
	
	#onlinePTComingSoon .logoWhite {
		width: 100%;
		max-width: 100%;
	}
	
	footer .logoWhite {
		width: 200px;
		left: 50%;
		margin-left: -100px;
		top: 10px;
	}
	
	#corporate {
		position: relative;
		padding-top: 100px;
		width: 100%;
		bottom: 0px;
		left: 0px;
		top: 115px;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
	
	#corporate img {
		max-width: 70%;
		clear: both;
		float: none;
		margin-left: auto;
		margin-right: auto;
	}
	
	#disclaimer {
		position: relative;
		width: 100%;
		top: 150px;
		right: 0px;
	}
	
	#disclaimer p {
		text-align: center;
	}
	
	#slide_4 {
		background-position: 53% center;
	}
	
	#slide_6 {
		background-position: 40% center;
	}
	
	#slide_8 {
		background-position: 67% center;
	}
	
	#slide_10 {
		background-position: 32% center;
	}
	
	#slide_11 {
		background-position: 70% center;
	}
	
	#slide_12 {
		background-position: 65% center;
	}
	
	#slide_14 {
		background-position: 62% center;
	}
	
	#slide_15 {
		background-position: 20% center;
	}
	
	#slide_16 {
		background-position: 80% center;
	}
	
}

@media (max-width: 700px) {
	
	.button {
		width: 100%;
		box-sizing: border-box;
		text-align: center;
	}
	
	p {
		width: 100%;
		font-size: 15px;
		margin-bottom: 10px;
		text-align: justify;
		line-height: 1.4em;
	}
	
	#welcome h1 {
		font-size:  30px;
	}
	
	#corporate {
		display: none;
	}
	
	#disclaimer {
		position: absolute;
		bottom: 40px;
		top: inherit;
	}
	
	#map {
		display: none;
	}
	
	#contact form {
		width: 100%;
	}
	
	#socialMedia {
		background-attachment: scroll;
	}
	
	#socialMedia ul li {
		width: 50px;
		height: 50px;
		margin-left: 10px;
		margin-right: 10px;
	}
	
	#socialMedia ul {
		max-width: 280px;
		padding-top: 360px;
	}
	
	.testimonial h1 {
		font-size: 20px;
	}
	
	.price {
		height: 140px;
		text-align: center;
	}
	
	.price img {
		float: none;
		clear:both;
		margin-left: auto;
		margin-right: auto;
		width: auto;
	}
	
	.price p {
		float: none;
		font-size: 25px;
		text-align: center;
		width: 100%;
		margin-bottom: 20px;
		margin-top: 0px;
		margin-left: 0px;
	}
	
}

@media (max-width: 450px) {
	#onlinetraining {
		min-height: 150vh;
	}
	
	#onlinePTComingSoon {
		margin-top: -267px;
	}
	
	.slide {
		min-height: 150vh;
	}
	
	#gallery {
		min-height: 150vh;
	}
	
	#galleryButtons {
		top: 72vh;
	}
	
	#callnow h1 {
		padding-top: 230px;
		font-size: 40px;
	}
	
	#welcome h1 {
		font-size: 22px;
	}
	
}

@media (max-width: 360px) {
	#onlinetraining {
		display:none;
	}
	
	#secondQuote {
		display: none;
	}
	
	#disclaimer p {
		font-size: 14px;
	}
}

.btnBlue:hover, .btnWhite:hover {
	color:#4a9cdf;
	background-color: white;
}

#ptminder-client-signin-button:hover {
	color:#4a9cdf;
	background-color: white !important;
}