@charset "UTF-8";
/* CSS Document */

p {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
}

.pad20-left-align {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	text-align: left;
	padding: 30px 20px;	
}

.fa-arrow-right {
	color: #1200ed;
}

.center {
	text-align: center;	
	}

.alignleft {
	text-align: left;
	padding-left: 18px
	}

.center-red {
	text-align: center;
	color: #a50000;
	font-size: 12px;
	}

.error_message {
	color: #a50000;
	font-weight: 600;
}

.info-spam-invalid {
	color: #a50000;			
	}
	
.pad20 {
	padding-top: 20px;
}

.main-menu-left:hover {		
	-ms-transform: scale(1.05); /* IE 9 */
  	-webkit-transform: scale(1.05); /* Safari 3-8 */
  	transform: scale(1.05); 
	}
	
.zoom:hover {		
	-ms-transform: scale(1.05); /* IE 9 */
  	-webkit-transform: scale(1.05); /* Safari 3-8 */
  	transform: scale(1.05); 
	}

/*Calendar------------------------------------------*/

.month {
  padding: 10px 0;
  width: 100%;
  background: #00aeef;;
  text-align: center;
  font-weight: bold;
}

.month ul {
  margin: 0;
  padding: 0;
}

.month ul li {
  color: white;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.month .prev {
  float: left;
  padding-top: 10px;
}

.month .next {
  float: right;
  padding-top: 10px;
}

.weekdays {
  margin: 0;
  padding: 10px 0;
  background-color: #ddd;
}

.weekdays li {
  display: inline-block;
  width: 13.6%;
  color: #666;
  text-align: center;
}

.days {
  padding: 10px 0;
  background: #eee;
  margin: 0;
}

.days li {
  list-style-type: none;
  display: inline-block;
  width: 13.6%;
  text-align: center;
  margin-bottom: 5px;
  font-size:12px;
  color: #777;
}

.days li .active {
  padding: 5px;
  background: #1abc9c;
  color: white !important
}

/* Add media queries for smaller screens */
@media screen and (max-width:720px) {
  .weekdays li, .days li {width: 13.1%;}
}

@media screen and (max-width: 420px) {
  .weekdays li, .days li {width: 12.5%;}
  .days li .active {padding: 2px;}
}

@media screen and (max-width: 290px) {
  .weekdays li, .days li {width: 12.2%;}
}

/*Navigation------------------------------------------*/
/* Some stylesheet reset */
#nav, #nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#nav #toggleMenu, #nav #hideMenu {
	display: none;
}

/* The main navigation bar */

#bhome a#home,
#babout a#about,
#blines a#lines,
#btraining-all a#training-all,
#bcontact a#contact {
	color: #d8801c;
	font-weight: bold;;
	font-size: 16px;
	font-family: Poppins, sans-serif;
}

#nav {
	position: relative;
	display: block;
	height: 34px;
	background: transparent;
	z-index: 100;
	float: right;	
}

#nav>li {
	display: block;
	float: left;
	position: relative;
	}

/* The main navigation links */
#nav>li>a {
	/* Layout */
	display: block;
	padding: 10px 17px;
	
	/* Typography */
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #363636;
	text-decoration: none;
	
	/* Transitions */
	-webkit-transition: color .2s ease-in, border-top-color .2s ease-in;
	-ms-transition: color .2s ease-in, border-top-color .2s ease-in;
	-moz-transition: color .2s ease-in, border-top-color .2s ease-in;
	-o-transition: color .2s ease-in, border-top-color .2s ease-in;
	transition: color .2s ease-in, border-top-color .2s ease-in;
}

/* The hover state of the links */
#nav>li:hover>a {
	color: #363636;
	font-weight: normal;
}

#nav>li.dropdown>a {
	padding-right: 34px;
}

/* The arrow indicating a dropdown menu */
.dropdown>a::after {
	position: absolute;
	display: block;
	content: "";
	height: 0;
	width: 0;
	border: 6px solid transparent;
	border-top-color: inherit;
	right: 16px;
	top: 21px;
}

/*  The submenus */
#nav ul {
	display: block;
	position: absolute;
	top: 33px;
	left: -9999px;
	opacity: 0;
	background: #ffffff;	
	cursor: pointer;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	-webkit-transition: opacity .22s ease-in;
	-ms-transition: opacity .22s ease-in;
	-moz-transition: opacity .22s ease-in;
	-o-transition: opacity .22s ease-in;
	transition: opacity .22s ease-in;
}

#nav ul li {
	display: block;
	position: absolute;
	height: 0px;
	-webkit-transition: height .15s ease-in;
	-ms-transition: height .15s ease-in;
	-moz-transition: height .15s ease-in;
	-o-transition: height .15s ease-in;
	transition: height .15s ease-in;
	}

/* The submenu appears when its parent is hovered */
#nav>li:hover>ul {
	left: 0px;
	opacity: 1;
}

#nav li:hover>ul>li {
	position: relative;
	height: 40px;
}

/* The submenu links */
#nav ul li a {
	/* Layout */
	display: block;
	padding: 10px 12px 10px 22px;
	width: 300px;
	border-bottom: 0px solid #2A3C59;
	
	/* Typography */
	font-family: 'Poppins',  sans-serif;
	font-size: 14px;
	text-decoration: none;
	color: #2A3C59;
	font-weight: 400;
	text-align: left;
	
	/* Background & effects */
	background: #ffffff;
	-webkit-transition: color .2s ease-in, border-left-color .2s ease-in;
	-ms-transition: color .2s ease-in, border-left-color .2s ease-in;
	-moz-transition: color .2s ease-in, border-left-color .2s ease-in;
	-o-transition: color .2s ease-in, border-left-color .2s ease-in;
	transition: color .2s ease-in, border-left-color .2s ease-in;
}

/* Rounded corners for the last submenu link */
#nav ul>li:last-child>a {
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}

/* Changing the link color on hover */
#nav ul li:hover>a {
	font-weight: normal;
	border: none;
}

.nav ul ul {
	display: none;
}

/* Styling for mobile devices */
@media screen and (max-width: 769px) {
	#nav {
		width: 100%;
		max-width: 769px;
		height: auto;
		}

	#nav li {
		float: none;
		padding: 0 10px;
		display: none;
			}

	#nav>li>a {
		padding: 8px 8px;
	}

	.dropdown>a::after {
		display: none;
	}

	#nav ul {
		position: relative;
		top: 0px;
		left: 0px;
		right: auto;
		opacity: 1;
		clear: both;
	}

	#nav ul li, #nav>li:hover>ul>li {
		height: auto;
		position: relative;
				
	}

	#nav ul li a {
		padding: 5px 20px;
		width: auto;
	}

	#nav #toggleMenu {
		display: block;
		background: #363636;
		color: #ffffff;
	}

	#nav #toggleMenu>a, #nav #hideMenu>a {
		padding: 13px 10px;
		z-index: 200;
		color: #ffffff;
	}

	#nav:target li {
		display: block;
	}

	#nav:target #toggleMenu {
		display: none;
	}

	#nav:target #hideMenu {
		display: block;
		background: #363636;
		border-top-left-radius: 3px;
		border-top-right-radius: 3px;
	}

	#nav #hideMenu>a {
		color: #ffffff;
	}

	#toggleMenu>a::after, #hideMenu>a::after {
		position: absolute;
		content: "";
		right: 20px;
		top: 16px;
		height: 3px;
		width: 20px;
		border-top: 2px solid #ffffff;
		border-bottom: 2px solid #ffffff;
		z-index: 1;
	}

	#toggleMenu>a::before, #hideMenu>a::before {
		position: absolute;
		content: "";
		right: 20px;
		top: 23px;
		height: 3px;
		width: 20px;
		border-bottom: 2px solid #ffffff;
		z-index: 1;
	}

	#hideMenu>a::after, #hideMenu>a::before {
		border-color: #363636;
	}

}

/* End Navigation------------------------------------------*/
