/* ============================================================
  GENERAL
============================================================ */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box; 
	-moz-box-sizing: border-box; /* Firefox */ 
	-webkit-box-sizing: border-box; /* Safari */ 
	/*-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;*/
}

body {
	color: #444;
	line-height: 1.5;
	font-size: 18px; 
	background-color: white;
	font-family: 'Lato', sans-serif; 
	font-weight: 400;
	position: relative;
}

.noscroll {
	overflow: hidden;
}

.form-group.required label {
	position: relative;
}

.form-group.required label:after { 
    	color: #d00;
    	content: "*";
    	position: absolute;
    	margin-left: 2px;
    	top: 0px;
}

button[type=submit], button[type=button] {
	cursor: pointer;
}

textarea.form-control {
	height: 120px;
}

img {
	max-width: 100%;
}

p {
	margin-top: 0px;
	margin-bottom: 30px;
}

ul, ol {
	margin-left: 50px;
}

h1, h2, h3, h4, h5, h6 {
	margin-top: 0px;
	margin-bottom: 20px;
	font-weight: 700;
	color: #292624;
	line-height: 1.4;
}

h1 {
	font-size: 30px;
}

h2 {
	font-size: 26px;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 19px;
}

.section-title {
	/*font-family: 'Playfair Display', sans-serif; */
	font-size: 38px;
}

.underline {
	padding-bottom: 10px;
	border-bottom: 2px solid #eee;
}

a {
	color: #5fd2b8;
}

a img {
	outline: none;
      	border: none;
}

.padded {
	padding-top: 80px;
	padding-bottom: 80px;
}

.center {
	text-align: center;
}

.flex-center {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	align-items: center;
}

#nav-mobile {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: #703d81;
	overflow-y: auto;
}

#nav-mobile ul {
	margin: 0px auto 0px auto;
	width: 80%;
	max-width: 400px;
	list-style-type: none;
}

#nav-mobile li {
	margin-bottom: 10px;
}

#nav-mobile li a {
	display: block;
	padding: 12px 0px;
	text-align: center;
	font-size: 30px;
	color: white;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

#nav-mobile li a:hover {
	color: #df8a73;
	text-decoration: none;
}

#nav-mobile li a .far {
	margin-right: 5px;
}

#close-nav-mobile {
	margin-right: 10px;
	color: white;
	font-size: 38px;
}

header {
	position: relative;
	padding: 150px 0px 100px 0px;
}

header h1, header h2 {
	margin-bottom: 30px;
}

.overlay {
	position: absolute;
	top: 0px;
	right: 0px;
	left: 0px;
	bottom: 0px;
	background-color: rgba(28,34,39,0.3);
	z-index: 0;
}

#nav-bar {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
	padding: 25px 0px;
	transition-property: all;
	transition-duration: 0.2s;
	-webkit-transition-property: all;
	-webkit-transition-duration: 0.2s;
}

#nav-bar.active {
	background-color: #703d81;
}

nav a {
	font-size: 17px;
	font-weight: 700;
	color: white;
	background-color: transparent;
	padding: 8px 20px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin: 0px 4px;
	text-transform: uppercase;
}

nav a:hover, #nav-bar.active nav a:hover {
	text-decoration: none;
	color: #df8a73;
}

nav #logo a:hover {
	background-color: transparent;
}

#logo {
	width: 220px;
	transition-property: all;
	transition-duration: 0.2s;
	-webkit-transition-property: all;
	-webkit-transition-duration: 0.2s;
}

#nav-bar.active #logo {
	width: 120px;
}

#bars {
	color: white;
	font-size: 30px;
	margin-left: auto;
	margin-right: 0px !important;
	cursor: pointer;
}

.button-curved {
	background-color: #df8a73;
	border: 1px solid #df8a73;
	color: white;
	padding: 16px 45px;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	display: inline-block;
}

.button-curved:hover {
	color: white;
	text-decoration: none;
	background-color: #ce7d67;
}

.curved {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.gradient {
	width: 100%;
	height: 2px;
	background: #dbdbdb; /* Old browsers */
	background: -moz-linear-gradient(left, #ffffff 0%, #dbdbdb 50%, #ffffff 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #ffffff 0%,#dbdbdb 50%,#ffffff 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #ffffff 0%,#dbdbdb 50%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */

}

#me {
	margin-top: 20px;
}

#services-table {
	width: 100%;
}

#services-table th {
	text-align: center;
	padding: 10px 5px;
	background-color: #df8a73;
	color: white;
}

#services-table td {
	padding: 20px 5px;
	font-size: 15px;
}

#services-table tr {
	border-bottom: 2px solid #ddd;
}

#services-table tr:first-child, #services-table tr:last-child {
	border: none;
}

#services-table .lesson-title {
	text-align: center;
	font-size: 30px;
	color: #292624;
}

footer {
	background-color: #302c37;
	color: white;
}

footer .section-title {
	color: white;
}

.form-group {
	margin-bottom: 20px;
}

.form-control {
	height: 46px;
	border: 1px solid black;
}

textarea.form-control {
	height: 140px;
	resize: none;
}

#copyright {
	margin-top: 30px;
}

#loading {
	position: fixed; 
	z-index: 10000; 
	padding: 15px 30px; 
	background-color: #3569ff; 
	color: white; 
	font-size: 30px; 
	top: 50%; 
	left: 50%; 
	-ms-transform: translateX(-50%) translateY(-50%); 
	-moz-transform: translate(-50%,-50%); 
	-webkit-transform: translate(-50%,-50%); 
	transform: translate(-50%,-50%); 
	-webkit-border-radius: 6px; 
	-moz-border-radius: 6px; 
	border-radius: 6px;
}

@media only screen and (min-width : 576px) {
	
}

@media only screen and (min-width : 768px) {	
	#me {
		margin-top: 0px;
	}
}

@media only screen and (min-width : 992px) {
	h1 {
		font-size: 34px
	}

	header {
		padding: 150px 0px 120px 0px;
	}
}

@media only screen and (min-width : 1200px) {	
}

@media only screen and (min-width : 1300px) {	
}

