@import url('https://fonts.googleapis.com/css?family=Oswald:300,400,500,600,700&display=swap');
@import url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');

.slider-container {
	margin-top: 20px;
	overflow: hidden;
	width: 100%;
	position: relative;
  }
  
  .slider-wrapper {
	display: flex;
	transition: transform 0.5s ease-in-out;
	width: 300%;
  }
  
  .slider-wrapper .box {
	min-width: 100%;
	padding: 10px;
	color: white;
	text-align: center;
	border-radius: 8px;
  }
  
  .slider-wrapper .box a {
	display: inline-block;
	background-color: #A594FC;
	color: white;
	text-decoration: none;
	padding: 10px 15px;
	margin-top: 10px;
	border-radius: 8px;
	font-weight: bold;
	font-size: 14px;
	transition: background-color 0.3s, transform 0.2s;
  }
  
  .slider-wrapper .box a:hover {
	background-color: #000000;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* ==========================================================================================z */

  .slider-item {
	min-width: 100%;
	flex: 0 0 100%;
	text-align: center;
	background-color: #fff;
	padding: 20px;
	background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent for each slide */
	padding: 15px;
	border-radius: 10px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow for better visibility */
  }

  .slider-item img {
	width: 80%;
	max-width: 300px;
	margin-bottom: 10px;
  }

  .slider-item a {
	display: inline-block;
	margin-top: 10px;
	text-decoration: none;
	font-size: 16px;
	background: #A594FC;
	color: white;
	padding: 10px 15px;
	border-radius: 5px;
  }

  .button1 {
	display: inline-block;
	padding: 10px 15px;
	background-color: #A594FC;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	margin: 5px;
  }
  
  .buttons1 {
	text-align: center;
	margin-top: 20px;
  }
  
  .button1:hover {
	background-color: #000000;
  }
  


/* ================================================================================================================================================== */













/* Button Styling */
.quote-button {
	background-color: #A594FC; /* Green background */
	color: white;
	border: none;
	padding: 15px 30px;
	font-size: 16px;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	margin-bottom: 20px; /* Space below the button */
  }
  
  .quote-button:hover {
	background-color: #000000; /* Darker green on hover */
  }
  
  /* Quote Image Display Styling */
  .quote-image-display {
	margin-bottom: 20px; /* Space below the image */
  }
  
  .quote-image-display img {
	max-width: 100%; /* Ensure the image fits within the container */
	height: auto;
	border-radius: 10px; /* Rounded corners */
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  }






/* Home Section */
.home {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh; /* Full viewport height */
	text-align: center;
	color: white;
	background-size: cover;
	background-position: center;
  }
  
  /* Welcome Text Styling */
  .welcome-text {
	font-size: 3rem; /* Adjust size as needed */
	font-weight: bold;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Add shadow for better visibility */
	margin-bottom: 20px; /* Space between text and arrow */
  }
  
  .welcome-text span {
	display: inline-block; /* Ensure each span can animate independently */
  }
  
  /* Go Down Arrow Styling */
  .go-down {
	color: white;
	font-size: 2rem;
	text-decoration: none;
	animation-delay: 1s; /* Delay the animation */
  }
  
  .go-down:hover {
	color: #A594FC; /* Change color on hover */
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
	.welcome-text {
	  font-size: 2rem; /* Smaller font size for mobile */
	}
  
	.go-down {
	  font-size: 1.5rem; /* Smaller arrow for mobile */
	}
  }
  
  /* Zoom Out Animation */
  .zoom-out {
	animation: zoomOut 1s ease-out forwards;
  }
  
  @keyframes zoomOut {
	from {
	  transform: scale(1);
	  opacity: 1;
	}
	to {
	  transform: scale(0.8);
	  opacity: 0.5;
	}
  }



   /* Parallax Effect */
   .parallax {
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
  }

  /* Smooth Scroll */
  html {
	scroll-behavior: smooth;
  }

  /* Additional Animations */
  @keyframes fadeInUp {
	from {
	  opacity: 0;
	  transform: translateY(20px);
	}
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
  }

  .fadeInUp {
	animation: fadeInUp 1s ease-out;
  }


/* Container for Instagram Posts */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
  }
  
  /* Instagram Grid Layout */
  .instagram-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
	gap: 20px; /* Space between posts */
	margin-top: 20px;
  }
  
  /* Instagram Post Styling */
  .instagram-post {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .instagram-post:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  
  /* Instagram Embed Styling */
  .instagram-media {
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 10px;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
	.instagram-grid {
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjust for smaller screens */
	  gap: 15px;
	}
  }
  
  @media (max-width: 480px) {
	.instagram-grid {
	  grid-template-columns: 1fr; /* Single column on mobile */
	}
  }

	/* Section Styling */
	.gallery {
		padding: 50px 20px;
		background-color: #f9f9f9;
		text-align: center;
	  }
	
	  .gallery h2 {
		font-size: 2rem;
		margin-bottom: 30px;
		color: #ffffff;
	  }
	
	  /* Responsive Gallery Grid */
	  .content {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 20px;
		justify-content: center;
	  }
	
	  .box {
		position: relative;
		overflow: hidden;
		border-radius: 10px;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	  }
	
	  .box img {
		width: 100%;
		height: auto;
		transition: transform 0.3s ease;
	  }
	
	  .box:hover img {
		transform: scale(1.1);
	  }

	/* Container Styles */
	.iframe-container {
		overflow: hidden;
		position: relative;
		width: 100%;
		padding-top: 56.25%; /* Aspect ratio for the iframe */
		border-radius: 12px;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
		transition: transform 0.3s ease, box-shadow 0.3s ease;
	  }
	
	  .iframe-container:hover {
		transform: translateY(-5px);
		box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	  }
	
	  .iframe-container iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: auto;
		border-radius: 12px;
	  }
	
	  /* Grid Layout */
	  .content {
		display: grid;
		gap: 20px;
		grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
		margin-top: 40px;
	  }
	
	  /* Section Headings */
	  .about h4 {
		font-size: 1.5rem;
		color: #333;
	  }
	
	  .about p {
		font-size: 1rem;
		color: #555;
		line-height: 1.5;
	  }
	
	  /* Box Hover Effects */
	  .box {
		padding: 20px;
		border-radius: 10px;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
		transition: transform 0.3s ease, box-shadow 0.3s ease;
	  }
	
	  .box:hover {
		transform: translateY(-5px);
		box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	  }
	
	  .img img {
		width: 100%;
		height: auto;
		border-radius: 8px;
		margin-bottom: 15px;
	  }

* {
	box-sizing: border-box;
  }

  .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
  }

  .content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
  }

  .box2 {
	background: #ffffff;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  blockquote.instagram-media {
	background: #fff;
	border: none;
	width: 100%;
  }

  h2 {
	text-align: center;
	margin-bottom: 30px;
	font-size: 24px;
	color: #333;
  }

/* Go to Top Button */
#goTopBtn {
	display: none; /* Hidden by default */
	position: fixed;
	bottom: 20px; /* Distance from the bottom */
	right: 20px; /* Distance from the right */
	z-index: 1000;
	background-color:#A594FC; /* Semi-transparent black */
	color: white;
	border: none;
	border-radius: 50%; /* Circular button */
	width: 50px;
	height: 50px;
	font-size: 24px;
	cursor: pointer;
	transition: background-color 0.3s ease, opacity 0.3s ease;
  }
  
  #goTopBtn:hover {
	background-color: rgba(0, 0, 0, 0.9); /* Darker on hover */
  }
  
  #goTopBtn.show {
	display: block; /* Show the button */
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
	#goTopBtn {
	  bottom: 10px; /* Adjust for smaller screens */
	  right: 10px; /* Adjust for smaller screens */
	  width: 40px; /* Smaller size for mobile */
	  height: 40px;
	  font-size: 20px; /* Smaller font size for mobile */
	}
  }
/* Audio Control */
.audio-control {
	position: fixed;
	bottom: 20px; /* Distance from the bottom */
	left: 20px; /* Distance from the left */
	z-index: 1000;
	background: #A594FC;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px; /* Adjust font size for better readability */
	transition: background 0.3s ease;
  }
  
  .audio-control:hover {
	background: rgba(0, 0, 0, 0.9);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
	.audio-control {
	  bottom: 10px; /* Adjust for smaller screens */
	  left: 10px; /* Adjust for smaller screens */
	  padding: 8px 16px; /* Smaller padding for mobile */
	  font-size: 14px; /* Smaller font size for mobile */
	}
  }


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 15px;
	color: white;
  }
  
  header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
  }

header .logo a{
	font-size: 30px;
	text-decoration: none;
	color:#ffffff;
	font-weight: 700;
}
header .logo a span{
	color:#A594FC;
}
header .nav{
	position: fixed;
	background-color: #A594FC;
	width: 280px;
	top:0;
	right:0;
	height: 100%;
	z-index: 99;
	padding:100px 0px 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:0px;
}
header .nav ul li{
display: block;
}
header .nav ul li a{
	text-decoration: none;
	font-size: 30px;
	font-weight: 400;
    color:#ffffff;
    display: block;
    position: relative;
    padding:10px 30px;
}
header .nav ul li a.active::before{
	content: '';
	position: absolute;
	left:0px;
	top:0px;
	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:0px;
	top:0px;
	height: 100%;
	width:0px;
	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%;
}
header .ham-burger{
	display: inline-block;
	position: relative;
	z-index: 100;
}
header .ham-burger span{
	height: 3px;
	margin-bottom:8px;
	display: block;
	background-color:#ffffff;
	width:30px;
	-webkit-transition: transform .5s ease;
	transition: transform .5s ease;
}
header .ham-burger span:nth-child(1){
	transform-origin: left top;
}
header .ham-burger span:nth-child(2){
	transform-origin: left bottom;
}

header .ham-burger.active span:nth-child(1){
	-webkit-transform: rotate(45deg) translateY(-6px);
	transform: rotate(45deg) translateY(-6px);
}
header .ham-burger.active span:nth-child(2){
	-webkit-transform: rotate(-45deg) translateY(6px);
	transform: rotate(-45deg) translateY(6px)
}

.container{
	max-width: 1170px;
	margin: auto;
}




/*Home section*/
.home{
    height: 100vh;
    background-size: cover;
    background-image: url('images/home1.png');
    padding: 15px;
    --webkit-display: flex;
    position: relative;
}

.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{
  -webkit-display: flex;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.home h1{
	color:#ffffff;
	font-size: 60px;
	font-weight: 700;
	text-transform: uppercase;
	margin:0;
}

.home h1 span{
	color:#ffffff;;
}
/*------------------------------------------------------------------------------------------------------------------------------------------------*/

/*About section*/

.about{
	padding:80px 0px;
	background-color:#ffffff;
}

.about .content{ 
 -webkit-display: flex;
 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: #A594FC;
}
.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: 0px 0px 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 0px;
	background-color: #A594FC;
}

.service .content{
	-webkit-display:flex;
	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;
	padding:0px 0px 20px;
}

.service .content .text p{
    font-size: 15px;
	line-height:20px;
	color:#ffffff;
	margin:0;
	padding:0px 0px 20px;
	font-family: 'Open Sans', sans-serif;
}

.service .content .text .btn{
	padding:8px 30px;
	background-color: #222222;
	color:#ffffff;
	text-decoration: none;
	display: inline-block;
	border:1px solid transparent;
	cursor: pointer;
	-webkit-transition: all .5s ease;
	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;
	color:#ffffff;
	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;	
}


/*Classes Section*/

.classes{
	padding:80px 0px 50px;
	background-color: #ffffff;
}

.classes .content{
	-webkit-display: flex;
	display: flex;
}

.classes .content .box{
	padding:15px;
	flex:0 0 50%;
	max-width: 50%;
}

.classes .content .img img{
	width: 100%;
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.classes .content .text h2{
    font-size: 30px;
    font-weight: 500;
    color: #000000;
    padding: 0px 0px 20px;
}

.classes .content .text p{
	font-size: 15px;
    line-height: 20px;
    color: #000000;
    margin: 0;
    padding: 0px 0px 30px;
    font-family: 'Open Sans', sans-serif;
}


.classes .content .class-items .item{
	margin-bottom: 30px;
	display: flex;
}
.classes .content .class-items .item:nth-child(1){
 background-color: #222222;
}
.classes .content .class-items .item:nth-child(2){
 background-color: #A594FC;
}
.classes .content .class-items .item .item-text{
	padding: 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.classes .content .class-items .item .item-text,
.classes .content .class-items .item .item-img{
	flex:0 0 50%;
	max-width: 50%;
	position: relative;
}

.classes .content .class-items .item .item-img img{
 width: 100%;
 display: block;
}
.classes .content .class-items .item .item-img .price{
	position: absolute;
	height: 50px;
	width: 60px;
	font-size:20px;
	font-weight: 500; 
	color:#ffffff;
	text-align: center;
	line-height: 50px;
}
.classes .content .class-items .item:nth-child(1) .item-img .price{
 background-color: #A594FC;
 left:0;
 top:0;
}
.classes .content .class-items .item:nth-child(2) .item-img .price{
 background-color: #222222;
 right:0;
 top:0;
}
.classes .content .class-items .item .item-text h4{
	font-size: 20px;
    margin: 0;
    padding: 0px 0px 15px;
    font-weight: 500;
    color: #ffffff;
    text-transform: capitalize;
    text-align: left;
}

.classes .content .class-items .item .item-text p{
	font-size: 15px;
    line-height: 20px;
    color: #ffffff;
    text-align:left;
    margin: 0;
    padding:0 0 20px;
    font-family: 'Open Sans', sans-serif;
}
.classes .content .class-items .item .item-text a{
 font-size: 16px;
 text-decoration: none;
 display: inline-block;
}

.classes .content .class-items .item .item-text a{
	color:#ffffff;
}




/*Start Today Section*/
.start-today{
	background-color: #222222;
}

.start-today .content{
	-webkit-display: flex;
	display: flex;
	align-items: center;
}

.start-today .content .box{
	flex:0 0 50%;
	max-width: 50%;
	padding:0px 15px;
}

.start-today .content .img img{
	width: 100%;
	display: block;
}

.start-today .content .text h2{
	font-size: 30px;
    font-weight: 500;
    color: #ffffff;
    padding: 0px 0px 20px;
}

.start-today .content .text p{
	font-size: 15px;
    line-height: 20px;
    color: #ffffff;
    margin: 0;
    padding: 0px 0px 20px;
    font-family: 'Open Sans', sans-serif;
}

.start-today .content .text .btn{
	padding: 8px 30px;
    background-color: #A594FC;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    border: 1px solid transparent;
    cursor: pointer;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.start-today .content .text .btn:hover{
	color:#ffffff;
	border-color: #ffffff;
	background-color: transparent;
}




/*Class Schedule Section*/
.schedule{
	padding:80px 0px;
}

.schedule .content{
	-webkit-display: flex;
	display: flex;
}

.schedule .content .box{
	flex:0 0 50%;
	max-width: 100%;
	padding:15px;
}

.schedule .content .text h2{
   font-size: 30px;
    font-weight: 500;
    color: #000000;
    padding: 0px 0px 20px;
}

.schedule .content .text p{
	font-size: 15px;
    line-height: 20px;
    color: #222222;
    margin: 0;
    padding: 0px 0px 20px;
    font-family: 'Open Sans', sans-serif;
}
.schedule .content .text img{
	width: 100%;
	transform: rotateY(180deg);
}

.schedule .content .timing .table{
	width: 100%;
	border-collapse: collapse;
}

.schedule .content .timing .table td{
	border:1px solid #dfdfdf;
	padding: 8px;
	font-size: 15px;
	text-align: center;
	color:#222222;
}

.schedule .content .timing .table tr:nth-child(even) td.day{
	background-color: #222222;
}
.schedule .content .timing .table tr:nth-child(odd) td.day{
	background-color: #444444;
}
.schedule .content .timing .table tr:nth-child(1) td.day{
	background-color: #A594FC;
}
.schedule .content .timing .table tr td.day{
	color:#ffffff;
	border-color:transparent;
}


/*Gallery Section*/

.gallery .content{
	-webkit-display: flex;
	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%);
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}
.gallery .content .box img:hover{
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
}

.gallery h2{
	font-size: 30px;
    font-weight: 500;
    color: #ffffff;
    padding: 0px 0px 20px;
    text-align: center;
}


/*Price Section*/

.messages{
	padding: 80px 0px;
	background-color: #ffffff;
}
.messages h2{
	font-size: 30px;
	font-weight: 500;
	color:#ffffff;
	padding: 0px 0px 20px;
	text-align: center;
}

.messages .title-p{
 font-size: 15px;
 line-height: 20px;
 color:#ffffff;
 margin:0;
 text-align: center;
 padding:0 20% 50px;
 font-family: 'Open-sans', sans-serif;
}

.messages .content{
	-webkit-display: flex;
	display: flex;
}
.messages .content .box{
	flex:0 0 33.33%;
	max-width: 33.33%;
	padding: 15px;
}
.messages .content .box .inner{
	background-color: #f0f0f0;
}
.messages .content .box .inner .price-tag{
	padding: 15px;
	font-size: 20px;
	background-color: #A594FC;
	color:#ffffff;
	text-align: center;
	font-weight: 700;
}
.messages .content .box .inner .text{
	padding:30px 15px;
	text-align: center;
}
.messages .content .box .inner .text h3{
	font-size: 24px;
	color:#222222;
	margin:0;
	padding:0px 0px 20px;
	font-weight: 700;
}
.messages .content .box .inner .text p{
 font-size: 15px;
 line-height: 20px;
 color:#222222;
 margin:0;
 text-align: center;
 padding:0 0 5px;
 font-family: 'Open-sans', sans-serif;	
}
.messages .content .box .inner .text .btn{
    padding: 8px 30px;
    background-color: #A594FC;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    border: 1px solid transparent;
    cursor: pointer;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    margin-top: 10px;
}
.messages .content .box .inner .text .btn:hover{
	border-color:#222222;
	color:#222222;
	background-color: transparent;
}
.messages .content .box .inner .img img{
	width: 100%;
}



/*Contact Section*/

.contact{
	padding:80px 0px;
	background-color: #222222;
}

.contact .content{
	-webkit-display: flex;
	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:0px 50px;
	border:1px solid transparent;
	background-color: #A594FC;
	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: #A594FC;
    padding: 0px 0px 20px;
}
.contact .content .text p{
    font-size: 15px;
    line-height: 20px;
    color: #ffffff;
    margin: 0;
    padding: 0px 0px 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:0px;
	top:0px;
	font-size: 20px;
	color:#A594FC;
}
.contact .content .text .social {
	padding-top: 30px;
}
.contact .content .text .social a{
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	background-color: #A594FC;
    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;
}




/*Responsive*/

/*if screen width is less than or equal to 991px then*/
@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;
}
}

/*if screen width is less than or equal to 767px then*/
@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%;
}
.messages .content{
	flex-wrap: wrap;
}
.messages .content .box {
    flex: 0 0 100%;
    max-width: 100%;
}
.contact .content{
	flex-wrap: wrap;
}
.contact .content .box {
    flex: 0 0 100%;
    max-width: 100%;
}
}

/*if screen width is less than or equal to 550px then*/
@media(max-width: 550px){
  .home h1{
      font-size: 30px;
  }
}


