@import url('https://fonts.googleapis.com/css?family=Oswald:300,400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');
@import url('https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css');
@import url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');

body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Oswald', sans-serif;
}

/* Header */

header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 10;
	background-color: #000000;
	padding: 15px;
}
header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .logo a {
	font-size: 30px;
	text-decoration: none;
	color: #d2be0a;
	font-weight: 700;
}
header .logo a span {
	color: #ffffff;
}

header .nav {
	position: fixed;
	background-color: #c11325;
	width: 280px;
	top: 0;
	right: 0;
	height: 100%;
	z-index: 99;
	padding: 100px 0 15px;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	-webkit-transition: transform .5s ease;
	transition: transform .5s ease;
}
header .nav.open {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
header .nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
header .nav ul li {
	display: block;
}
header .nav ul li a {
	text-decoration: none;
	font-size: 30px;
	font-weight: 400;
	color: #d2be0a;
	display: block;
	position: relative;
	padding: 10px 30px;
}
header .nav ul li a.active::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #000000;
	opacity: .2;
	-webkit-transition: width .5s ease;
	transition: width .5s ease;
	z-index: -1;
}
header .nav ul li a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 0;
	background-color: #000000;
	opacity: .2;
	-webkit-transition: width .5s ease;
	transition: width .5s ease;
	z-index: -1;
}
header .nav ul li a:hover::before {
	width: 100%;
}

.container {
	max-width: 1170px;
	margin: auto;
}

/* Home Section */
.home {
	height: 100vh;
	background-image: url('../images/home.jpg');
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 15px;
	position: relative;
}

.home-content {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.home img {
	max-width: 100%;
	height: auto;
	display: block;
	margin-bottom: 20px;
}

.home .go-down {
	position: absolute;
	bottom: 50px;
	width: 26px;
	height: 40px;
	border: 1px solid #ffffff;
	display: block;
	border-radius: 4px;
	text-align: center;
	left: 50%;
	margin-left: -13px;
}
.home .go-down .fa {
	color: #ffffff;
	-webkit-animation: goDown 1s ease infinite;
	animation: goDown 1s ease infinite;
}
@-webkit-keyframes goDown {
	0% { transform: translateY(0); opacity: .5; }
	100% { transform: translateY(10px); }
}
@keyframes goDown {
	0% { transform: translateY(0); opacity: .5; }
	100% { transform: translateY(10px); }
}
.home .container {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.home h1 {
	color: #ffffff;
	font-size: 60px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0;
	padding-bottom: 600px;
}
.home h1 span {
	color: #d2be0a;
}

/* About Section */
.about {
	padding: 80px 0;
	background-image: url('/images/aboutbody.jpg');
}
.about .content {
	display: flex;
}
.about .content .box {
	flex: 0 0 33.33%;
	max-width: 33.33%;
	padding: 15px;
}
.about .content .box .inner {
	background-color: #222222;
}
.about .content .box:nth-child(2) .inner {
	background-color: #222222;
}
.about .content .box .inner .img img {
	width: 100%;
}
.about .content .box .inner .text {
	padding: 30px;
}
.about .content .box .inner .text h4 {
	font-size: 20px;
	margin: 0;
	padding: 0 0 15px;
	font-weight: 500;
	color: #ffffff;
	text-transform: capitalize;
	text-align: center;
}
.about .content .box .inner .text p {
	font-size: 15px;
	line-height: 20px;
	color: #ffffff;
	text-align: center;
	margin: 0;
	font-family: 'Open Sans', sans-serif;
}

/* Service Section */
.service {
	padding: 80px 0;
	background-image: url('/images/servicesbody.jpg');
}
.service .content {
	display: flex;
}
.service .content .box {
	flex: 0 0 50%;
	max-width: 50%;
	padding: 15px;
}
.service .content .text h2 {
	font-size: 30px;
	font-weight: 500;
	color: #ffffff;
	background-color: #222222;
	padding: 20px;
	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
	border: 2px solid #ffffff;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.service .content .text p {
	font-size: 15px;
	line-height: 20px;
	color: #ffffff;
	background-color: #222222;
	border: 2px solid #ffffff;
	text-align: center;
	margin: 0;
	padding: 20px;
	font-family: 'Open Sans', sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
}
.service .content .text .btn {
	padding: 8px 30px;
	background-color: #000000;
	color: #ffffff;
	text-decoration: none;
	display: inline-block;
	border: 1px solid transparent;
	cursor: pointer;
	transition: all .5s ease;
}
.service .content .text .btn:hover {
	border: 1px solid #ffffff;
	color: #ffffff;
	background-color: transparent;
}
.service .content .accordian-container {
	margin-bottom: 5px;
}
.service .content .accordian-container .head {
	background-color: rgba(0,0,0,0.2);
	position: relative;
	padding: 12px 15px;
	cursor: pointer;
}
.service .content .accordian-container .head .fa {
	position: absolute;
	right: 10px;
	top: 13px;
	color: #ffffff;
	height: 30px;
	width: 30px;
	text-align: center;
	line-height: 30px;
	border-radius: 50%;
}
.service .content .accordian-container .head h4 {
	font-size: 20px;
	margin: 0;
	padding: 0;
	font-weight: 500;
	color: #ffffff;
	text-transform: capitalize;
}
.service .content .accordian-container.active .head {
	background-color: #222222;
}
.service .content .accordian-container .body {
	display: none;
	padding: 15px;
	background-color: #222222;
	border-top: 1px solid #333333;
}
.service .content .accordian-container:nth-child(1) .body {
	display: block;
}
.service .content .accordian-container .body p {
	font-size: 15px;
	line-height: 20px;
	color: #ffffff;
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
}

/* Start Today Section */
.start-today {
	background-color: #222222;
}
.start-today .content {
	display: flex;
	align-items: center;
}
.start-today .content .box {
	flex: 0 0 50%;
	max-width: 50%;
	padding: 0 15px;
}
.start-today .content .img img {
	width: 100%;
	display: block;
}
.start-today .content .text h2 {
	font-size: 30px;
	font-weight: 500;
	color: #ffffff;
	padding: 0 0 20px;
}
.start-today .content .text p {
	font-size: 15px;
	line-height: 20px;
	color: #ffffff;
	margin: 0;
	padding: 0 0 20px;
	font-family: 'Open Sans', sans-serif;
}
.start-today .content .text .btn {
	padding: 8px 30px;
	background-color: #c11325;
	color: #ffffff;
	text-decoration: none;
	display: inline-block;
	border: 1px solid transparent;
	cursor: pointer;
	transition: all .5s ease;
}
.start-today .content .text .btn:hover {
	color: #ffffff;
	border-color: #ffffff;
	background-color: transparent;
}

/* Gallery Section */
.gallery .content {
	display: flex;
	flex-wrap: wrap;
}
.gallery .content .box {
	flex: 0 0 50%;
	max-width: 50%;
}
.gallery .content .box img {
	display: block;
	width: 100%;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	transition: all .5s ease;
}
.gallery .content .box img:hover {
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
}
.gallery h2 {
	font-size: 30px;
	font-weight: 500;
	background-color: #000000;
	color: #ffffff;
	padding: 0 0 20px;
	text-align: center;
}

/* Load More */
body {
	background-color: #000000;
}
#load-more {
	background-color: #333;
	color: #fff;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px auto;
}
#load-more:hover {
	background-color: #444;
}
.content.box {
	text-align: center;
}
.content.box:nth-child(-n+4) {
	display: block;
}

/* Price Section */
.price-package {
	padding: 80px 0;
	background-image: url('/images/wp9484917-men-and-women-fitness-wallpapers.jpg');
	background-size: cover;
	background-position: center;
	text-align: center;
}
.price-package h2 {
	font-size: 30px;
	font-weight: 500;
	color: #ffffff;
	padding: 0 0 20px;
}
.price-package .title-p {
	font-size: 15px;
	line-height: 20px;
	color: #222222;
	margin: 0 auto 50px;
	max-width: 60%;
	font-family: 'Open Sans', sans-serif;
}
.price-package .content {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.price-package .content .box {
	flex: 0 0 100%;
	max-width: 33.33%;
	padding: 15px;
	box-sizing: border-box;
	text-align: center;
}
.price-package .content .box .inner {
	background-color: #ffffff;
	padding: 15px;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.price-package .content .box .inner .price-tag {
	padding: 15px;
	font-size: 20px;
	background-color: #ff0000;
	color: #ffffff;
	font-weight: 700;
	border-radius: 5px;
}
.price-package .content .box .inner .text {
	padding: 30px 15px;
}
.price-package .content .box .inner .text h3 {
	font-size: 24px;
	color: #222222;
	margin: 0;
	padding: 0 0 20px;
	font-weight: 700;
}
.price-package .content .box .inner .text p {
	font-size: 15px;
	line-height: 20px;
	color: #222222;
	margin: 0;
	padding: 0 0 5px;
	font-family: 'Open Sans', sans-serif;
}
.price-package .content .box .inner .text .btn {
	padding: 8px 30px;
	background-color: #ff0000;
	color: #ffffff;
	text-decoration: none;
	display: inline-block;
	border: 1px solid transparent;
	cursor: pointer;
	transition: all .5s ease;
	margin-top: 10px;
	border-radius: 5px;
}
.price-package .content .box .inner .text .btn:hover {
	border-color: #c11325;
	color: #c11325;
	background-color: #ffffff;
}
.price-package .content .box .inner .img img {
	width: 100%;
}

/* Contact Section */
.contact {
	padding: 80px 0;
	background-color: #222222;
}
.contact .content {
	display: flex;
}
.contact .content .box {
	flex: 0 0 50%;
	max-width: 50%;
	padding: 15px;
}
.contact .content .form input,
.contact .content .form textarea {
	height: 45px;
	width: 100%;
	padding: 6px 12px;
	margin-bottom: 25px;
	background-color: transparent;
	border: 1px solid #ffffff;
	font-family: 'Open-sans', sans-serif;
	color: #ffffff;
}
.contact .content .form input:focus,
.contact .content .form textarea:focus {
	outline: none;
}
.contact .content .form input::placeholder,
.contact .content .form textarea::placeholder {
	color: #ffffff;
}
.contact .content .form textarea {
	height: 100px;
}
.contact .content .form button {
	border: none;
	outline: none;
	box-shadow: none;
	height: 45px;
	padding: 0 50px;
	border: 1px solid transparent;
	background-color: #c11325;
	color: #ffffff;
	font-size: 15px;
	transition: all .5s ease;
	cursor: pointer;
}
.contact .content .form button:hover {
	background-color: transparent;
	color: #ffffff;
	border-color: #ffffff;
}
.contact .content .text h2 {
	font-size: 30px;
	font-weight: 500;
	color: #c11325;
	padding: 0 0 20px;
}
.contact .content .text p {
	font-size: 15px;
	line-height: 20px;
	color: #ffffff;
	margin: 0;
	padding: 0 0 30px;
	font-family: 'Open-sans', sans-serif;
}
.contact .content .text .info ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.contact .content .text .info li {
	display: block;
	margin-bottom: 15px;
	color: #ffffff;
	font-size: 15px;
	letter-spacing: 1px;
	position: relative;
	padding-left: 40px;
	font-family: 'Open-Sans', sans-serif;
}
.contact .content .text .info li span {
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
	font-size: 20px;
	color: #c11325;
}
.contact .content .text .social {
	padding-top: 30px;
}
.contact .content .text .social a {
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	background-color: #c11325;
	text-decoration: none;
	display: inline-block;
	margin-right: 10px;
	transition: all .5s ease;
	border: 1px solid transparent;
}
.contact .content .text .social a:hover {
	background-color: transparent;
	border-color: #ffffff;
}
.contact .content .text .social a span {
	color: #ffffff;
	font-size: 20px;
}
.contact .content .text .copy {
	border-top: 1px solid #333333;
	margin-top: 30px;
	padding-top: 20px;
	color: #c5c5c5;
	font-size: 15px;
}
.custom-tiktok-icon {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	margin-right: 10px;
	transition: all .5s ease;
	border: 1px solid transparent;
	background-image: url('https://www.tiktok.com/favicon.ico');
	background-size: 24px 24px;
	background-position: center;
	background-repeat: no-repeat;
	vertical-align: middle;
	position: relative;
	top: -3.5px;
}

/* Modal Styles */
.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.4);
}
.modal-content {
	background-color: #fefefe;
	margin: 15% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	animation-name: zoom;
	animation-duration: 0.6s;
	text-align: center;
}
.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}
.close:hover,
.close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}
@keyframes zoom {
	from { transform: scale(0); }
	to { transform: scale(1); }
}

/* Responsive */

/* Screens ≤ 991px */
@media (max-width: 991px) {
	.home {
		background-position: center;
	}
	.classes .content {
		flex-wrap: wrap;
	}
	.classes .content .box {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.classes .content .img {
		display: none;
	}
	.start-today .content .box {
		padding: 15px;
	}
}

/* Screens ≤ 767px */
@media (max-width: 767px) {
	.home h1 {
		font-size: 40px;
	}
	.about .content {
		flex-wrap: wrap;
	}
	.about .content .box {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.service .content {
		flex-wrap: wrap;
	}
	.service .content .box {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.classes .content .class-items .item {
		flex-wrap: wrap;
	}
	.classes .content .class-items .item .item-text,
	.classes .content .class-items .item .item-img {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.schedule .content {
		flex-wrap: wrap;
	}
	.schedule .content .box {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.start-today .content {
		flex-wrap: wrap;
	}
	.start-today .content .box {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.gallery .content {
		flex-wrap: wrap;
	}
	.gallery .content .box {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.price-package .content {
		flex-wrap: wrap;
	}
	.price-package .content .box {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.contact .content {
		flex-wrap: wrap;
	}
	.contact .content .box {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/* Global Responsive Styles */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	font-family: 'Oswald', sans-serif;
	margin: 0;
	padding: 0;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #000;
	padding: 15px;
	z-index: 10;
}
header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .logo a {
	font-size: 24px;
	text-decoration: none;
	color: #d2be0a;
}

/* Home Section */
.home {
	height: 100vh;
	background-image: url('../images/home.jpg');
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-top: 100px;
}
.home h1 {
	font-size: 36px;
	color: #fff;
	text-transform: uppercase;
	margin: 0;
	padding-bottom: 600px;
}
.home img {
	width: 100%;
	height: auto;
	padding-top: 350px;
}
.home h1 span {
	color: #d2be0a;
}

/* Tablet Styles */
@media (min-width: 768px) {
	header .nav {
		display: block;
		text-align: center;
	}
	.home h1 {
		font-size: 40px;
	}
}

/* Desktop Styles */
@media (min-width: 992px) {
	.home h1 {
		font-size: 48px;
	}
	.home img {
		max-width: 50%;
		height: auto;
		display: block;
		margin: 0 auto;
		padding-top: 400px;
	}
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
	.home h1 {
		font-size: 56px;
	}
}
@media (orientation: landscape) and (min-width: 768px) {
	.home img {
		max-width: 30%;
		margin-top: 10%;
	}
}
@media (orientation: landscape) and (min-width: 1200px) {
	.home img {
		max-width: 25%;
		margin-top: 8%;
	}
}