/**
* template:  Stepgo

TABLE OF CONTENTS

        + Global
        + Header
        + Header Content
        + About Us
        + Edge
        + Services
        + Discount
        + Events
        + Booking
        + Testimonials
        + Contacts
      
*/


@import 'reset.css';
@import 'all.min.css';
@import 'magnific-popup.css';
@import 'owl.carousel.min.css';
@import 'owl.theme.default.min.css';

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');


/**************************************
*
*         GLOBAL   
*
***************************************/


* {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

:root {
	--color-white: #ffffff;
	--color-dark-blue: #12232b;
	--color-pink: #e93483;
	--color-gray: #777777;
}

@-webkit-keyframes load {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes load {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

#preload {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background-color: var(--color-dark-blue);
	z-index: 100000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#preload img {
	width: 30px;
	height: auto;
	-webkit-animation-name: load;
	animation-name: load;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

a {
	text-decoration: none;
	display: inline-block;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	     -o-transition-duration: 0.5s;
	        transition-duration: 0.5s;
	outline: none;
}

img {
	height: auto;
	display: block;
	width: 100%;
}

::-moz-selection {
	color: var(--color-white);
	background-color: var(--color-pink);
}

::selection {
	color: var(--color-white);
	background-color: var(--color-pink);
}

body {
	font-family: "DM Sans", sans-serif;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-gray);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	font-style: normal;
	text-transform: uppercase;
	color: var(--color-dark-blue);
	margin-bottom: 30px;
	line-height: 1.2;
}

h1 {
	color: var(--color-white);
	font-size: 90px;
}

h2 {
	font-size: 60px;
}

.wrapper {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
}

.container {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 15px;
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.align-center {
	text-align: center;
}

.ptb {
	padding-top: 100px;
	padding-bottom: 100px;
}

.suptitle {
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 20px;
	display: inline-block;
	color: var(--color-pink);
}

.btn {
	background-color: var(--color-pink);
	color: var(--color-white);
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	padding: 20px 45px;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.btn:hover {
	background-color: var(--color-dark-blue);
}

.owl-theme .owl-nav.disabled+.owl-dots {
	margin-top: 30px;
}

.owl-theme .owl-dots .owl-dot span {
	width: 20px;
	height: 3px;
	margin: 5px 7px;
	background: var(--color-dark-blue);
	display: block;
	-webkit-backface-visibility: visible;
	-webkit-transition: opacity .2s ease;
	-o-transition: opacity .2s ease;
	transition: opacity .2s ease;
	border-radius: 0px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background: var(--color-pink);
}

#scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 100;
	padding: 15px 20px;
}

#openmenu,
#closemenu {
	font-size: 30px;
	color: var(--color-white);
	display: none;
}

#openmenu:hover,
#closemenu:hover {
	color: var(--color-pink);
}

.res-booking {
	display: none;
	font-size: 14px;
	margin-top: 20px;
	text-align: center;
}

.res-booking .error {
	color: var(--color-pink);
}

.res-booking .send {
	color: var(--color-white);
}


/**************************************
*
*         HEADER  
*
***************************************/


header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

.bg-header {
	background-color: var(--color-dark-blue);
}

.wrapper-header {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding-top: 15px;
	padding-bottom: 15px;
}

.menu li {
	float: left;
	margin-left: 30px;
}

.menu li a {
	text-transform: uppercase;
	color: var(--color-white);
	position: relative;
	padding-bottom: 5px;
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	font-size: 24px;
	letter-spacing: 2px;
}

.menu li a:after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: 0%;
	height: 1px;
	display: block;
	background-color: var(--color-white);
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	     -o-transition-duration: 0.5s;
	        transition-duration: 0.5s;
}

.menu li a:hover:after {
	width: 100%;
}


/**************************************
*
*         HEADER CONTENT
*
***************************************/


.wrapper-header-content {
	background-image: url('../images/bg-header.png');
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
	height: 800px;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}


/**************************************
*
*         ABOUT US  
*
***************************************/


#aboutus {
	background-color: var(--color-dark-blue);
}

.wrapper-aboutus {
	max-width: 1200px;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.aboutus-img {
	width: 40%;
	position: relative;
}

.aboutus-img img {
	-webkit-box-shadow: 20px 20px 0px -10px var(--color-pink);
	        box-shadow: 20px 20px 0px -10px var(--color-pink);
}

.aboutus-img>a {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	font-size: 80px;
	color: var(--color-pink);
}

.aboutus-img>a:hover {
	color: var(--color-dark-blue);
}

.aboutus-content {
	width: 60%;
	padding-left: 50px;
	color: var(--color-white);
}

.aboutus-content h2 {
	color: var(--color-white);
}

.aboutus-content p {
	margin-bottom: 20px;
}

.wrapper-list {
	margin: 40px 0px;
}

.wrapper-list li {
	margin-bottom: 30px;
	background-image: url('../images/checkmark.png');
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 32px;
	padding-left: 50px;
}

.wrapper-list li p {
	margin-bottom: 0px;
}

.wrapper-list h3 {
	font-size: 25px;
	margin-bottom: 5px;
	color: var(--color-white);
}


/**************************************
*
*         EDGE
*
***************************************/


.wrapper-edge {
	padding-top: 50px;
	padding-bottom: 50px;
}

.single-edge {
	width: 25%;
	padding: 10px;
}

.single-edge span {
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	font-size: 140px;
	font-weight: 700;
	color: rgba(59, 106, 124, 0.1);
	line-height: 1;
}

.single-edge-content {
	margin-top: -70px;
}

.single-edge-content h3 {
	margin-bottom: 5px;
	font-size: 40px;
}


/**************************************
*
*         SERVICES
*
***************************************/


#services {
	padding-bottom: 100px;
}

.single-classes-content {
	padding: 30px 20px;
	border-bottom: 1px solid rgba(59, 106, 124, 0.1);
	border-left: 1px solid rgba(59, 106, 124, 0.1);
	border-right: 1px solid rgba(59, 106, 124, 0.1);
}

.wrapper-pricing {
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: var(--color-dark-blue);
}

.price {
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	font-size: 30px;
}

.sessions {
	color: var(--color-pink);
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	letter-spacing: 2px;
}

.sessions i {
	margin-right: 5px;
}

.single-classes-content h3 {
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 30px;
}

.classes-content {
	margin-bottom: 20px;
}

.date {
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	letter-spacing: 2px;
	color: var(--color-dark-blue);
}


/**************************************
*
*         DISCOUNT
*
***************************************/


#discount {
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(18, 35, 43, 0.4)), to(rgba(18, 35, 43, 0.4))), url('../images/bg-section.png');
	background-image: -o-linear-gradient(rgba(18, 35, 43, 0.4), rgba(18, 35, 43, 0.4)), url('../images/bg-section.png');
	background-image: linear-gradient(rgba(18, 35, 43, 0.4), rgba(18, 35, 43, 0.4)), url('../images/bg-section.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
}

#discount h2 {
	color: var(--color-white);
}


/**************************************
*
*        EVENTS
*
***************************************/


#events {
	background-color: var(--color-dark-blue);
}

#events h2 {
	color: var(--color-white);
}

#events>.container {
	max-width: 1200px;
}

.single-events {
	border-left: 1px solid var(--color-pink);
	margin-bottom: 50px;
	padding-left: 20px;
	color: var(--color-white);
}

.single-events h3 {
	color: var(--color-white);
	font-size: 25px;
	margin-bottom: 20px;
}

.events-date,
.address {
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	letter-spacing: 2px;
}

.events-date i,
.address i {
	margin-right: 5px;
}

.address {
	margin-bottom: 20px;
}


/**************************************
*
*        BOOKING
*
***************************************/


#booking {
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(18, 35, 43, 0.4)), to(rgba(18, 35, 43, 0.4))), url('../images/bg-booking.png');
	background-image: -o-linear-gradient(rgba(18, 35, 43, 0.4), rgba(18, 35, 43, 0.4)), url('../images/bg-booking.png');
	background-image: linear-gradient(rgba(18, 35, 43, 0.4), rgba(18, 35, 43, 0.4)), url('../images/bg-booking.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
}

#booking h2 {
	color: var(--color-white);
}

.wrapper-booking {
	max-width: 1000px;
}

.wrapper-input {
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.wrapper-booking input {
	background-color: transparent;
	outline: none;
	border: none;
	display: block;
	padding: 15px 0px;
	margin: 0 20px 20px 0;
	width: calc(50% - 40px);
	color: var(--color-white);
	border-bottom: 1px solid var(--color-white);
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	     -o-transition-duration: 0.5s;
	        transition-duration: 0.5s;
	font-size: 16px;
}

.wrapper-booking input::-webkit-input-placeholder {
	color: var(--color-white);
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	letter-spacing: 2px;
}

.wrapper-booking input::-moz-placeholder {
	color: var(--color-white);
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	letter-spacing: 2px;
}

.wrapper-booking input:-ms-input-placeholder {
	color: var(--color-white);
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	letter-spacing: 2px;
}

.wrapper-booking input::-ms-input-placeholder {
	color: var(--color-white);
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	letter-spacing: 2px;
}

.wrapper-booking input::placeholder {
	color: var(--color-white);
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	letter-spacing: 2px;
}

button[type="submit"] {
	margin-top: 50px;
	outline: none;
	border: none;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	     -o-transition-duration: 0.5s;
	        transition-duration: 0.5s;
	cursor: pointer;
}


/**************************************
*
*        TESTIMONIALS
*
***************************************/


.wrapper-testimonials {
	max-width: 1000px;
	margin-top: 50px;
}

.single-testimonials img {
	width: 80px !important;
	height: 80px !important;
	margin: 0 auto;
	border-radius: 50%;
	margin-bottom: 30px;
}

.single-testimonials p {
	margin-bottom: 20px;
}

.wrapper-author h3 {
	margin-bottom: 10px;
	font-size: 20px;
}

.wrapper-author p {
	font-size: 14px;
	letter-spacing: 2px;
	color: var(--color-pink);
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
}


/**************************************
*
*         CONTACTS
*
***************************************/


#contacts {
	background-color: var(--color-dark-blue);
	color: var(--color-white);
}

#contacts h2 {
	color: var(--color-white);
}

.wrapper-contact {
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}

.wrapper-contact>div {
	width: 25%;
	padding: 20px;
}

.wrapper-contact>div p {
	margin-bottom: 10px;
}

.wrapper-contact>div h3 {
	font-size: 30px;
	color: var(--color-white);
}

.wrapper-contact>div a {
	color: var(--color-white);
}

.wrapper-contact>div a:hover {
	color: var(--color-pink);
}

.wrapper-map iframe {
	width: 100%;
	height: 400px;
	display: block;
}

.copyright {
	background-color: var(--color-dark-blue);
	padding: 30px 15px;
	text-align: center;
	font-size: 14px;
	color: var(--color-white);
}

.social-link {
	margin-top: 30px;
}

.social-link li {
	margin-right: 20px;
}