/**
* template: Lotuslab

TABLE OF CONTENTS

    + Global
    + Header
	+ Header Content
    + About Us
    + Edge
    + Services
    + Testimonials
	+ Footer
	+ Page
	+ Sidebar
    + Category
    + Blog
	+ Events
	+ 404
    + FAQ
	+ Team
	+ Classes
	+ Contact
      
*/


@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: #00aab0;
	--color-lavender: #00aab0;
	--color-gray: #B5AFB8;
}

::-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;
}

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: "Prata", serif;
	font-weight: 400;
	margin-bottom: 30px;
	line-height: 1.2;
	color: var(--color-dark);
}

h1 {
	font-size: 80px;
	color: var(--color-white);
}

h2 {
	font-size: 50px;
}

@-webkit-keyframes menu {

	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes menu {

	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-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;
}

.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: normal;
	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: normal;
	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%);
}

.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);
}

.overlay {
	background-color: rgba(155, 89, 182, 0.5);
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	opacity: 0;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.overlay i {
	color: var(--color-white);
}

#scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 1000;
	padding: 16px 20px;
}

#openmenu {
	color: var(--color-white);
	font-size: 30px;
	display: none;
}

#closemenu {
	display: inline-block;
	float: right;
	margin: 10px;
	font-size: 30px;
	color: var(--color-white);
}

#openmenu:hover {
	color: var(--color-purple);
}

#closemenu:hover {
	color: #111;
}

#mobile-nav {
	position: fixed;
	top: 0;
	left: -320px;
	bottom: 0;
	width: 320px;
	background-color: var(--color-purple);
	z-index: 10000;
	padding: 10px;
	overflow: auto;
}

.mobile-menu {
	clear: both;
}

.mobile-menu li {
	padding: 10px;
}

.mobile-menu>li a {
	text-decoration: none;
	color: var(--color-white);
	font-size: 16px;
	text-transform: uppercase;
}

.mobile-menu li a:hover {
	color: #111;
}

.mobile-menu .sub-menu li a {
	padding: 5px;
	font-size: 16px;
	font-weight: 400;
	text-transform: none;
}

.mobile-menu>li.menu-item-has-children>a {
	display: block;
}

.mobile-menu>li.menu-item-has-children>a i {
	font-size: 12px;
	margin-left: 5px;
	float: right;
	margin-top: 4px;
}

.mobile-menu .sub-menu>li.menu-item-has-children>a {
	display: block;
}

.mobile-menu .sub-menu>li.menu-item-has-children>a i {
	font-size: 12px;
	margin-left: 5px;
	float: right;
	margin-top: 4px;
}

.mobile-menu .sub-menu li.menu-item-has-children {
	padding-right: 0px;
}

.mobile-menu .sub-menu {
	display: none;
	margin-top: 20px;
}

.w-70 {
	width: 70%;
}

.w-30 {
	width: 30%;
}

.res-contact {
	display: none;
	font-size: 14px;
	margin-top: 20px;
	text-align: center;
}

.res-contact .error {
	color: var(--color-purple);
}

.res-contact .send {
	color: var(--color-dark);
}


/**************************************
*
*         HEADER  
*
***************************************/


#header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

.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;
}

.header-menu li {
	float: left;
	margin: 15px 20px;
}

.header-menu>li>a {
	text-transform: uppercase;
	color: var(--color-white);
}

.header-menu li a:hover {
	color: #00aab0;
}

#logo img {
	max-width: 150px;
}

.header-menu>li {
	padding-bottom: 10px;
	padding-top: 10px;
}

.header-menu>.menu-item-has-children {
	position: relative;
}

.header-menu>.menu-item-has-children>.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	display: none;
	background-color: #111;
	z-index: 100000;
	-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%);
	padding-top: 15px;
	padding-bottom: 15px;
}

.header-menu>.menu-item-has-children>.sub-menu>li {
	margin-left: 0px;
	white-space: nowrap;
	width: 100%;
	padding-top: 8px;
	padding-bottom: 8px;
	margin: 0px;
}

.header-menu>.menu-item-has-children>.sub-menu>li a {
	font-size: 16px;
	text-transform: none;
	font-weight: 400;
	display: block;
	padding: 0px 20px;
}

.header-menu>.menu-item-has-children .sub-menu li a {
	color: var(--color-white);
}

.header-menu>.menu-item-has-children .sub-menu li a:hover {
	color: var(--color-lavender);
}

.header-menu>.menu-item-has-children:hover>.sub-menu {
	display: block;
	-webkit-animation-name: menu;
	animation-name: menu;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
}

.header-menu>.menu-item-has-children>.sub-menu>.menu-item-has-children {
	position: relative;
}

.header-menu>.menu-item-has-children>.sub-menu>.menu-item-has-children>.sub-menu {
	position: absolute;
	padding-top: 15px;
	padding-bottom: 15px;
	top: -15px;
	left: 100%;
	display: none;
	z-index: 10000;
	background-color: var(--color-purple);
	-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%);
}

.header-menu>.menu-item-has-children>.sub-menu>.menu-item-has-children:hover>.sub-menu {
	display: block;
	-webkit-animation-name: menu;
	animation-name: menu;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
}

.header-menu>.menu-item-has-children>.sub-menu>.menu-item-has-children>.sub-menu li {
	margin-left: 0px;
	white-space: nowrap;
	width: 100%;
	margin: 0px;
	padding-top: 8px;
	padding-bottom: 8px;
}


/**************************************
*
*         HEADER  CONTENT
*
***************************************/


.wrapper-header-content {
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	min-height: 800px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 100px 0px;
}

.wrapper-header-content .suptitle {
	color: var(--color-white);
}

.wrapper-header-content.pages {
	min-height: 400px;
	height: auto;
	padding-top: 100px;
	padding-bottom: 50px;
}

.wrapper-header-content.pages h1 {
	font-size: 50px;
}

.breadcrumbs-content {
	padding: 20px 20px 20px 0px;
	margin-top: 30px;
	color: var(--color-white);
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.breadcrumbs-content>div {
	margin-right: 10px;
}

.breadcrumbs-content a {
	color: var(--color-white);
}

.breadcrumbs-content a:hover {
	color: var(--color-purple);
}

.breadcrumbs-content a:after {
	content: "/";
	display: inline-block;
	margin-left: 10px;
}


/**************************************
*
*         ABOUT US 
*
***************************************/


#aboutus {
	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));
}

.aboutus-img {
	width: 40%;
}

.aboutus-content {
	width: 60%;
	padding-left: 50px;
}

.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;
	padding-left: 50px;
}

.wrapper-list li p {
	margin-bottom: 0px;
}

.wrapper-list h3 {
	font-size: 25px;
	margin-bottom: 5px;
}


/**************************************
*
*         EDGE 
*
***************************************/


.wrapper-edge {
	padding-top: 50px;
	padding-bottom: 50px;
}

.single-edge {
	width: 25%;
	padding: 10px;
}

.single-edge span {
	font-size: 140px;
	font-weight: 700;
	color: rgba(155, 89, 182, 0.1);
	line-height: 1;
}

.single-edge-content {
	margin-top: -70px;
	padding-left: 30px;
}

.single-edge-content h3 {
	margin-bottom: 5px;
	font-size: 25px;
}


/**************************************
*
*         SERVICES
*
***************************************/


.grid .service-article {
	width: calc(33.333333% - 20px);
	margin: 10px;
}

.sidebar-left .service-article,
.sidebar-right .service-article {
	width: calc(50% - 20px);
	margin: 10px;
}

.service-article-content {
	padding: 30px 20px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 66, 69, 0.2)), to(rgba(0, 66, 69, 0.0)));
	background-image: -o-linear-gradient(rgba(66, 69, 62, 0.2), rgba(66, 69, 62, 0.0));
	background-image: linear-gradient(rgba(66, 69, 62, 0.2), rgba(66, 69, 62, 0.0));
}

.service-article-img {
	position: relative;
}

.service-article-img:hover .overlay {
	opacity: 1;
}

.service-article-content a h3 {
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 20px;
	color: var(--color-dark);
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.service-article-content a:hover h3 {
	color: #00aab0;
}

.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;
}


/**************************************
*
*        TESTIMONIALS
*
***************************************/


#testimonials {
	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));
}

.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: normal;
	color: var(--color-dark);
}


/**************************************
*
*       FOOTER
*
***************************************/


footer {
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(66, 69, 62, 0.8)), to(rgba(66, 69, 62, 0.1))), url('../images/bg_footer.jpg');
	background-image: -o-linear-gradient(rgba(66, 69, 62, 0.8), rgba(66, 69, 62, 0.1)), url('../images/bg_footer.jpg');
	background-image: linear-gradient(rgba(66, 69, 62, 0.8), rgba(66, 69, 62, 0.1)), url('../images/bg_footer.jpg');
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
}

#logo-footer {
	margin-bottom: 30px;
	display: block;
}

#logo-footer img {
	max-width: 150px;
	width: auto;
}

.wrapper-footer {
	padding-bottom: 70px;
	padding-top: 70px;
	color: var(--color-white);
}

.single-content-footer {
	width: 22.222222%;
	padding: 10px 10px 30px 10px;
}

.single-content-footer:first-child {
	width: 33.333333%;
}

.single-content-footer h4 {
	font-size: 24px;
	color: var(--color-white);
}

.single-content-footer p {
	line-height: 1.5;
	margin-bottom: 10px;
}

.single-content-footer p a {
	display: inline-block;
	color: var(--color-white);
}

.single-content-footer p a:hover {
	color: var(--color-lavender);
}

.single-content-footer p i {
	margin-right: 5px;
}

.footer-social {
	margin-top: 30px;
}

.footer-social li {
	float: left;
	margin-right: 20px;
}

.footer-social li a {
	color: var(--color-white);
	font-size: 16px;
}

.footer-social li a:hover {
	color: var(--color-lavender);
}

.footer-menu li {
	margin-bottom: 10px;
}

.footer-menu li a {
	color: var(--color-white);
}

.footer-menu li a:hover {
	color: var(--color-lavender);
}

.wrapper-form-footer {
	margin-top: 30px;
}

.wrapper-copyright {
	padding-top: 30px;
	padding-bottom: 30px;
	border-top: 1px solid rgba(203, 189, 154, 1);
}

.wrapper-copyright p {
	font-size: 12px;
	color: var(--color-white);
}

#logo-footer {
	margin-bottom: 30px;
}


/**************************************
*
*        PAGE 
*
***************************************/


.content {
	line-height: 1.6;
}

.content p {
	margin-bottom: 30px;
}

.content img {
	max-width: 100%;
	margin-bottom: 30px;
}

.content ul,
.content ol {
	margin: 30px;
}

.content ul li {
	list-style: disc;
}

.content ol li {
	list-style: decimal;
}

.content strong {
	font-weight: 700;
	color: var(--color-dark);
}

.content .alignleft {
	float: left;
	max-width: 100%;
	margin-right: 30px;
	margin-bottom: 30px;
}

.content .alignright {
	float: right;
	max-width: 100%;
	margin-left: 30px;
	margin-bottom: 30px;
}

.content .aligncenter {
	clear: both;
	display: block;
	float: none;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.content h1 {
	font-size: 32px;
	color: var(--color-dark);
}

.content h2 {
	font-size: 24px;
}

.content h3 {
	font-size: 19px;
}

.content h4 {
	font-size: 16px;
}

.content h5 {
	font-size: 13px;
}

.content h6 {
	font-size: 11px;
}

.content em {
	font-style: italic;
}

.content blockquote {
	margin-bottom: 30px;
}

.content blockquote:before {
	content: "“";
}

.content blockquote:after {
	content: "“";
}

.tags-links {
	margin-bottom: 30px;
	display: block;
}

.tags-links a {
	display: inline-block;
	text-decoration: none;
	font-size: 16px;
	color: var(--color-purple);
	font-weight: 500;
	margin: 10px;
}

.tags-links a:hover {
	color: var(--color-lavender);
}


/**************************************
*
*        SIDEBAR
*
***************************************/


.sidebar-right .sidebar {
	padding-left: 50px;
}

.sidebar-left .sidebar {
	padding-right: 50px;
}

.widget {
	margin-bottom: 50px;
}

.widget .widget-title {
	font-size: 24px;
	margin-bottom: 20px;
}

.widget .search-form {
	width: 100%;
}

.widget .search-form .search-field {
	border: none;
	outline: none;
	padding: 20px;
	background-color: var(--color-light-gray);
	border-radius: 3px 0px 0px 3px;
	width: 80%;
	display: block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-weight: 400;
}

.widget .search-form button {
	display: block;
	border: none;
	outline: none;
	width: 20%;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
	cursor: pointer;
	background-color: var(--color-purple);
	color: var(--color-white);
	border-radius: 0 3px 3px 0px;
}

.widget .search-form button: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%);
}

.widget .search-form .search-field::-webkit-input-placeholder {
	color: var(--color-dark);
	font-weight: 400;
}

.widget .search-form .search-field::-moz-placeholder {
	color: var(--color-dark);
	font-weight: 400;
}

.widget .search-form .search-field:-ms-input-placeholder {
	color: var(--color-dark);
	font-weight: 400;
}

.widget .search-form .search-field::-ms-input-placeholder {
	color: var(--color-dark);
	font-weight: 400;
}

.widget .search-form .search-field::placeholder {
	color: var(--color-dark);
	font-weight: 400;
}

.widget ul li {
	margin-bottom: 10px;
}

.widget ul li a {
	display: inline-block;
	text-decoration: none;
	font-size: 16px;
	color: var(--color-dark);
}

.widget ul li a:hover {
	color: var(--color-purple);
}

.wp-calendar-table {
	width: 100%;
	border: 1px solid rgba(203, 189, 154, 0.2);
}

.wp-calendar-table caption {
	color: var(--color-dark);
	margin-bottom: 10px;
}

table.wp-calendar-table td,
table.wp-calendar-table th {
	background: transparent;
	border: 0;
	text-align: center;
	line-height: 2;
	vertical-align: middle;
	word-break: normal;
	padding: 10px;
}

table.wp-calendar-table th {
	font-weight: 500;
}

table.wp-calendar-table td a {
	font-weight: 600;
	color: var(--color-purple);
}

table.wp-calendar-table td a:hover {
	color: var(--color-lavender);
}

.tagcloud a {
	display: inline-block;
	text-decoration: none;
	font-size: 16px;
	color: var(--color-purple);
	font-weight: 500;
	margin: 10px;
}

.tagcloud a:hover {
	color: var(--color-lavender);
}


/**************************************
*
*         CATEGORY 
*
***************************************/


.sidebar-left .blog-article {
	width: calc(50% - 20px);
	margin: 10px;
}

.sidebar-right .blog-article {
	width: calc(50% - 20px);
	margin: 10px;
}

.navigation.pagination {
	padding: 30px 10px 30px 10px;
}

.navigation.pagination .nav-links {
	font-weight: 500;
	font-size: 18px;
	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;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.navigation.pagination .nav-links span.current {
	display: inline-block;
	padding: 10px;
	border-radius: 3px;
	text-decoration: none;
	color: var(--color-purple);
	margin: 0px 5px;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
	cursor: pointer;
}

.navigation.pagination .nav-links a {
	display: inline-block;
	padding: 10px;
	border-radius: 3px;
	text-decoration: none;
	color: var(--color-dark);
	margin: 0px 5px;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.navigation.pagination .nav-links span.current:hover,
.navigation.pagination .nav-links a:hover {
	color: var(--color-purple);
}


/**************************************
*
*         BLOG
*
***************************************/


.wrapper-blog-img {
	position: relative;
	display: block;
}

.wrapper-blog-img:hover .overlay {
	opacity: 1;
}

.wrapper-blog-content {
	padding: 40px 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-blog-content h3 {
	font-size: 24px;
	margin-bottom: 20px;
}

.titlelink {
	color: var(--color-dark);
}

.titlelink:hover {
	color: var(--color-purple);
}

.date {
	display: inline-block;
	color: var(--color-purple);
	margin-bottom: 20px;
}

.date i {
	margin-right: 10px;
}


/**************************************
*
*         EVENTS
*
***************************************/


.single-events-list {
	padding: 40px 20px;
	margin-bottom: 10px;
	display: block;
	color: var(--color-gray);
	background-color: var(--color-light-gray);
}

.single-events-list h3 {
	font-size: 24px;
	margin-bottom: 20px;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.events-list-date {
	display: inline-block;
	color: var(--color-purple);
	margin-bottom: 20px;
}

.events-list-date i {
	margin-right: 10px;
}

.single-events-list:hover h3 {
	color: var(--color-purple);
}

.wrapper-details-info {
	border: 1px solid rgba(203, 189, 154, 0.2);
	padding: 20px;
}

.wrapper-details-info .flex {
	color: var(--color-dark);
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(203, 189, 154, 0.2);
	padding-bottom: 5px;
}

.wrapper-details-info .flex i {
	margin-right: 10px;
	color: var(--color-purple);
}


/**************************************
*
*        404
*
***************************************/


.wrapper-header-content.pages.page-404 {
	height: 100vh;
}


/**************************************
*
*         FAQ
*
***************************************/


.wrapper-faq {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.faq-block-content {
	width: 60%;
	padding: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.faq-img {
	width: 40%;
}

.faq-img img {
	width: 100%;
}

.wrapper-accordion h3 {
	padding: 20px;
	cursor: pointer;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
	font-size: 20px;
	color: var(--color-dark);
	border-left: 1px solid var(--color-purple);
	margin-bottom: 0px;
}

.wrapper-accordion h3:hover {
	color: var(--color-purple);
}

.wrapper-accordion h3 i {
	margin-right: 10px;
}

.content-accordion {
	display: none;
	padding: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-left: 1px solid var(--color-white);
}

.content-accordion p {
	margin-bottom: 30px;
}

.wrapper-accordion h3 i {
	font-size: 14px;
}


/**************************************
*
*         TEAM  
*
***************************************/

@media screen and (max-width: 768px) {
.team-article {
	width: calc(50% - 20px);
	margin: 10px;
}
  }
  
@media screen and (max-width: 480px) {
.team-article {
	width: calc(100% - 20px);
	margin: 10px;
}
  }
  
@media screen and (min-width: 769px) {
.team-article {
	width: calc(33.333333% - 20px);
	margin: 10px;
	color: #111;
}
  }


.wrapper-team-content {
	padding: 40px 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-team-content h3 {
	font-size: 24px;
	margin-bottom: 20px;
}

.wrapper-team-content p {
	color: #111111;
}

.social-team {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 20px;
}

.social-team li {
	margin: 0 10px;
}

.social-team li a {
	color: var(--color-black);
}

.social-team li a:hover {
	color: var(--color-lavender);
}


/**************************************
*
*         CLASSES 
*
***************************************/


.sidebar-details-info .price {
	font-size: 30px;
	color: var(--color-dark);
}

.sidebar-details-info .price-sale {
	color: var(--color-purple);
	text-decoration: line-through;
	margin-left: 10px;
}

.wrapper-star-classes {
	margin-bottom: 20px;
}

.wrapper-star-classes a {
	color: var(--color-dark);
}

.wrapper-star-classes i {
	color: var(--color-purple);
}

.wrapper-tabs {
	margin: 30px 0px;
	border: 1px solid rgba(203, 189, 154, 0.2);
}

.wrapper-tabs .tabs-list {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

.wrapper-tabs .tabs-list li {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex-preferred-size: 200px;
	flex-basis: 200px;
	text-align: center;
	list-style: none;
	border-right: 2px solid rgba(250, 250, 250, 1);
}

.wrapper-tabs .tabs-list li:last-child {
	border: none;
}

.wrapper-tabs .tabs-list li a {
	text-decoration: none;
	display: block;
	background-color: var(--color-light-gray);
	padding: 15px 20px;
	color: var(--color-dark);
}

.wrapper-tabs .tabs-list li a:hover {
	color: var(--color-white);
	background-color: var(--color-purple);
}

.wrapper-tabs .tabs-list li a.active {
	color: var(--color-white);
	background-color: var(--color-purple);
}

.tabs-content {
	margin-top: 30px;
	padding: 30px 20px;
}

.tabs-content>div[id^="tab-"] {
	display: none;
}

.table-course {
	width: 100%;
	margin-bottom: 30px;
	font-size: 14px;
}

.table-course tbody tr td {
	padding: 20px;
}

.table-course tbody tr td:first-child {
	text-align: left;
}

.table-course tbody tr td:last-child {
	text-align: right;
}

.table-course tbody tr td:last-child i {
	margin-right: 10px;
}

.table-course tbody tr:nth-child(odd) {
	background-color: var(--color-light-gray);
}

.wrapper-instructor-course {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.instructor-courese-img {
	width: 30%;
}

.instructor-courese-img img {
	display: block;
	width: 100%;
}

.instructor-course-content {
	width: 70%;
	padding-left: 30px;
}

.instructor-course-content h3 {
	font-size: 24px;
	margin-bottom: 20px;
}

.instructor-course-content .social-team {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	margin: 30px 0px;
}

.instructor-course-content .social-team li {
	list-style: none !important;
}

.instructor-course-content .instructor-social {
	margin: 0;
	padding: 0;
	list-style: none;
}

.instructor-course-content .instructor-social li {
	margin: 0px;
	margin-right: 20px;
	list-style: none;
}

.reviews-single .reviews-single-header {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.wrapper-reviews-page {
	margin-bottom: 100px;
}

.reviews-single {
	margin-bottom: 30px;
	font-size: 14px;
	background-color: var(--color-light-gray);
	padding: 20px 10px;
}

.reviews-single .reviews-single-header {
	margin-bottom: 20px;
}

.reviews-single .reviews-single-header img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin-right: 20px;
	margin-bottom: 0px;
}

.reviews-single p {
	margin-bottom: 0px;
}

.reviews-single-header h4 {
	margin-bottom: 10px;
}

.reviews-single-header ul {
	margin: 0px;
}

.reviews-single-header ul li {
	list-style: none;
	float: left;
	margin-right: 5px;
}

.reviews-single-header ul li i {
	color: var(--color-purple);
}

.wrapper-review-form p {
	margin-bottom: 20px;
}

.wrapper-review-form .wrapper-input {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.wrapper-review-form .wrapper-input p {
	width: 48%;
}

.wrapper-review-form input,
.wrapper-review-form textarea {
	outline: none;
	border: none;
	background-color: var(--color-light-gray);
	padding: 20px;
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
	color: var(--color-dark);
}

.wrapper-review-form textarea {
	min-height: 150px;
}

.wrapper-review-form .wrapper-star-classes {
	color: var(--color-dark);
}

.wrapper-review-form a i {
	color: var(--color-purple);
	font-size: 14px;
}

.wrapper-review-form input.btn {
	background-color: var(--color-purple);
	cursor: pointer;
	color: #ffffff;
	border: none;
}

.wrapper-review-form input.btn:hover {
	border: none;
}

.wrapper-review-form input::-webkit-input-placeholder,
.wrapper-review-form textarea::-webkit-input-placeholder {
	font-family: "Prata", serif;
	font-weight: 400;
	color: var(--color-dark);
}

.wrapper-review-form input::-moz-placeholder,
.wrapper-review-form textarea::-moz-placeholder {
	font-family: "Prata", serif;
	font-weight: 400;
	color: var(--color-dark);
}

.wrapper-review-form input:-ms-input-placeholder,
.wrapper-review-form textarea:-ms-input-placeholder {
	font-family: "Prata", serif;
	font-weight: 400;
	color: var(--color-dark);
}

.wrapper-review-form input::-ms-input-placeholder,
.wrapper-review-form textarea::-ms-input-placeholder {
	font-family: "Prata", serif;
	font-weight: 400;
	color: var(--color-dark);
}

.wrapper-review-form input::placeholder,
.wrapper-review-form textarea::placeholder {
	font-family: "Prata", serif;
	font-weight: 400;
	color: var(--color-dark);
}

.wrapper-review-form input:focus,
.wrapper-review-form textarea:focus {
	background-color: var(--color-lavender);
}


/**************************************
*
*        CONTACT PAGE 
*
***************************************/


.wrapper-contact {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	margin-bottom: 50px;
	margin-top: 100px;
}

.contact-content {
	width: 50%;
	padding-right: 50px;
}

.contact-form {
	width: 50%;
}

.contact-form .wrapper-input {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.contact-form p {
	margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
	outline: none;
	border: none;
	background-color: var(--color-light-gray);
	padding: 20px;
	width: 100%;
	display: block;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
	color: var(--color-dark);
}

.contact-form input.btn {
	background-color: var(--color-purple);
	cursor: pointer;
	color: var(--color-white);
	border: none;
	font-size: 16px;
}

.contact-form .wrapper-input p {
	width: 48%;
}

.contact-form textarea {
	min-height: 150px;
}

.contact-form input:hover,
.contact-form textarea:hover {
	background-color: var(--color-lavender);
}

.contact-form input[type="submit"]:hover {
	background-color: var(--color-purple);
}

.contact-form input::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
	font-family: "Prata", serif;
	font-weight: 400;
	color: var(--color-dark);
}

.contact-form input::-moz-placeholder,
.contact-form textarea::-moz-placeholder {
	font-family: "Prata", serif;
	font-weight: 400;
	color: var(--color-dark);
}

.contact-form input:-ms-input-placeholder,
.contact-form textarea:-ms-input-placeholder {
	font-family: "Prata", serif;
	font-weight: 400;
	color: var(--color-dark);
}

.contact-form input::-ms-input-placeholder,
.contact-form textarea::-ms-input-placeholder {
	font-family: "Prata", serif;
	font-weight: 400;
	color: var(--color-dark);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	font-family: "Prata", serif;
	font-weight: 400;
	color: var(--color-dark);
}

.contact-block p {
	margin-bottom: 10px;
}

.contact-block p i {
	margin-right: 10px;
	color: var(--color-purple);
}

.contact-block p a {
	color: var(--color-black);
}

.contact-block p a:hover {
	color: var(--color-purple);
}

.wrapper-map iframe {
	width: 100%;
	height: 350px;
	display: block;
}