/**
* template:  ZenDen

TABLE OF CONTENTS

        + Global
        + Header
        + About Us
        + Edge
        + Classes
        + Events
        + Booking
        + Testimonials
        + Contacts
      
*/

@import 'reset.css';
@import 'all.min.css';
@import 'owl.carousel.min.css';
@import 'owl.theme.default.min.css';

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Prata&display=swap');


/**************************************
*
*         GLOBAL   
*
***************************************/


:root {
	--color-light-gray: #f8f8f8;
	--color-white: #ffffff;
	--color-dark: #222222;
	--color-purple: #9B59B6;
	--color-lavender: #D2B4DE;
	--color-gray: #B5AFB8;
}

@-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-purple);
	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;
}

::-moz-selection {
	background-color: var(--color-purple);
	color: var(--color-white);
}

::selection {
	background-color: var(--color-purple);
	color: var(--color-white);
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	border: none;
}

a {
	text-decoration: none;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

img {
	width: 100%;
	display: block;
	height: auto;
}

body {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: var(--color-gray);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Poppins", serif;
	font-weight: 300;
	/*text-transform: capitalize;*/
	margin-bottom: 30px;
	line-height: 1.2;
	color: var(--color-dark);
}

h1 {
	font-size: 80px;
	color: var(--color-white);
}

h2 {
	font-size: 50px;
}

.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-size: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 20px;
	display: inline-block;
	color: var(--color-purple);
}

.btn {
	display: inline-block;
	background-color: var(--color-purple);
	color: var(--color-white);
	padding: 20px 45px;
	font-size: 14px;
	text-transform: uppercase;
	border-radius: 40px;
	letter-spacing: 2px;
}

.btn:hover {
	-webkit-box-shadow: 0 16px 24px 2px rgb(0 0 0 / 14%), 0 6px 30px 5px rgb(0 0 0 / 12%), 0 8px 10px -7px rgb(0 0 0 / 20%);
	box-shadow: 0 16px 24px 2px rgb(0 0 0 / 14%), 0 6px 30px 5px rgb(0 0 0 / 12%), 0 8px 10px -7px rgb(0 0 0 / 20%);
}

.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;
	padding-left: 50px;
}

.wrapper-list li p {
	margin-bottom: 0px;
}

.wrapper-list h3 {
	font-size: 25px;
	margin-bottom: 5px;
}

.bg-gradient {
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(155, 89, 182, 0.1)), to(rgba(155, 89, 182, 0.0)));
	background-image: -o-linear-gradient(left, rgba(155, 89, 182, 0.1), rgba(155, 89, 182, 0.0));
	background-image: linear-gradient(90deg, rgba(155, 89, 182, 0.1), rgba(155, 89, 182, 0.0));
}

.owl-theme .owl-nav.disabled+.owl-dots {
	margin-top: 50px;
}

.owl-theme .owl-dots .owl-dot span {
	width: 20px;
	height: 3px;
	margin: 5px 7px;
	background: var(--color-lavender);
	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-purple);
}

#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-lavender);
}

.res-booking {
	display: none;
	font-size: 14px;
	margin-top: 20px;
	text-align: center;
}

.res-booking .error {
	color: #ff0000;
}

.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-purple);
}

.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;
}

.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%;
}

.wrapper-header-content {
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(155, 89, 182, 0.4)), to(rgba(155, 89, 182, 0.0))), url('../images/bg-header.png');
	background-image: -o-linear-gradient(rgba(155, 89, 182, 0.4), rgba(155, 89, 182, 0.0)), url('../images/bg-header.png');
	background-image: linear-gradient(rgba(155, 89, 182, 0.4), rgba(155, 89, 182, 0.0)), url('../images/bg-header.png');
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	background-attachment: fixed;
	height: 800px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.wrapper-header-content .suptitle {
	color: var(--color-white);
}


/**************************************
*
*         ABOUT US 
*
***************************************/

.aboutus-img {
	width: 40%;
}

.aboutus-content {
	width: 60%;
	padding-left: 50px;
}

.aboutus-content p {
	margin-bottom: 20px;
}

/**************************************
*
*           CLASSES
*
***************************************/

.single-classes {
	width: calc(33.333333% - 20px);
	margin: 10px;
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 5%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 5%);
}

.single-classes-content {
	padding: 30px 20px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(155, 89, 182, 0.2)), to(rgba(155, 89, 182, 0.0)));
	background-image: -o-linear-gradient(rgba(155, 89, 182, 0.2), rgba(155, 89, 182, 0.0));
	background-image: linear-gradient(rgba(155, 89, 182, 0.2), rgba(155, 89, 182, 0.0));
}

.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);
}

.price {
	font-weight: 600;
	font-size: 20px;
}

.sessions i {
	margin-right: 10px;
}

.single-classes-content h3 {
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 20px;
}

/**************************************
*
*         EVENTS  
*
***************************************/

.wrapper-events {
	margin-top: 50px;
	max-width: 1200px;
}

.events-img {
	width: 40%;
}

.single-events {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.events-content {
	width: 60%;
	padding-left: 50px;
}

.events-date,
.address {
	color: var(--color-dark);
	margin-bottom: 10px;
}

.address {
	margin-bottom: 30px;
}

.events-date i,
.address i {
	margin-right: 10px;
}

.events-content h3 {
	font-size: 30px;
	margin-bottom: 30px;
}

/**************************************
*
*         BOOKING 
*
***************************************/

#booking {
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(155, 89, 182, 0.4)), to(rgba(155, 89, 182, 0))), url('../images/bg-booking.png');
	background-image: -o-linear-gradient(rgba(155, 89, 182, 0.4), rgba(155, 89, 182, 0)), url('../images/bg-booking.png');
	background-image: linear-gradient(rgba(155, 89, 182, 0.4), rgba(155, 89, 182, 0)), url('../images/bg-booking.png');
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
	background-attachment: fixed;
}

#booking .suptitle,
#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: "Poppins", sans-serif;
	font-weight: 400;
}

.wrapper-booking input::-moz-placeholder {
	color: var(--color-white);
	font-family: "Poppins", sans-serif;
	font-weight: 400;
}

.wrapper-booking input:-ms-input-placeholder {
	color: var(--color-white);
	font-family: "Poppins", sans-serif;
	font-weight: 400;
}

.wrapper-booking input::-ms-input-placeholder {
	color: var(--color-white);
	font-family: "Poppins", sans-serif;
	font-weight: 400;
}

.wrapper-booking input::placeholder {
	color: var(--color-white);
	font-family: "Poppins", sans-serif;
	font-weight: 400;
}

.wrapper-booking input:focus {
	border-bottom: 1px solid var(--color-lavender);
}

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;
	text-transform: uppercase;
	color: var(--color-dark);
}


/**************************************
*
*         CONTACTS
*
***************************************/


.wrapper-contact {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.wrapper-contact>div {
	width: 33.3%;
	padding: 20px;
}

.wrapper-contact>div p {
	margin-bottom: 10px;
}

.wrapper-contact>div h3 {
	font-size: 30px;
}

.wrapper-contact>div a {
	color: var(--color-gray);
}

.wrapper-contact>div a:hover {
	color: var(--color-purple);
}

.wrapper-map iframe {
	width: 100%;
	height: 200px;
	display: block;
}

.copyright {
	background-color: var(--color-purple);
	padding: 30px 15px;
	text-align: center;
	font-size: 14px;
	color: var(--color-white);
}

.social-link {
	margin-top: 10px;
}

.social-link li {
	margin-right: 20px;
}