/*
	Author: Lumberjacks
	Template: Elegant (Coming Soon)
	Version: 1.1
	URL: http://themeforest.net/user/Lumberjacks/
*/



/* TABLE OF CONTENTS

	1. Import section
	2. Basic styles
	3. Typography
	4. Breakpoint for high-res devices
	5. Header
	6. Icons
	7. Subscribe
	8. Who we are
	9. Twitter
	10. Footer
	11. Breakpoints

*/



/* 1. IMPORT SECTION */

.lato-regular {
font-family: "Lato", sans-serif;
font-weight: 400;
font-style: normal;
}

.lato-bold {
font-family: "Lato", sans-serif;
font-weight: 700;
font-style: normal;
}



	.hero h1{
		line-height: 130%!important;
		color:#fff!important;
		font-weight:700;
		font-size:30px!important;
	}



/* 2. BASIC STYLES */

	html, body {
		height: 100%;
	}

	body {
		font-family: "Lato", sans-serif;
		background-color: #fff;
		color: #262626;
		font-weight: 300;
		-webkit-font-smoothing: antialiased;
		text-rendering: optimizeLegibility;
	}

	h2 {
		line-height: 110%!important;
		font-size:26px!important;
	}


	a {
		color: #e33b38;
		transition: all 0.125s ease-in-out 0s;
		-moz-transition: all 0.125s ease-in-out 0s;
		-webkit-transition: all 0.125s ease-in-out 0s;
		-o-transition: all 0.125s ease-in-out 0s;
		-ms-transition: all 0.125s ease-in-out 0s;
	}

	a:hover {
		color: #e33b38;
	}

	a, a:hover, a:active, a:focus {
		outline: 0;
		border: 0;
		text-decoration: none;
	}

	.lj-float-left {
		float: left;
	}

	.lj-float-right {
		float: right;
	}

	.lj-block-center {
		display: block;
		margin-left: auto;
		margin-right: auto;
	}

	.lj-show {
		display: block !important;
	}

	.lj-hide {
		display: none !important;
		visibility: hidden !important;
	}

	.lj-preloader {
		background: #fff url('../img/preloader.gif') no-repeat center center;
		bottom: 0;
		height: 100%;
		left: 0;
		overflow: hidden;
		position: fixed;
		right: 0;
		top: 0;
		width: 100%;
		z-index: 99999;
	}



/* 3. TYPOGRAPHY */

	p {
		line-height: 1.5;
		font-size:14px;
	}

	.lj-text-uppercase {
		text-transform: uppercase;
	}

	.lj-text-center {
		text-align: center;
		font-size:1.2em;
		font-weight:700;
	}

	.lj-text-left {
		text-align: left;
	}

	.lj-text-right {
		text-align: right;
	}

	.lj-text-justify {
		text-align: justify;
	}

	.lj-text-underline {
		text-decoration: underline;
	}



/* 4. BREAKPOINT FOR HIGH-RES DEVICES */

	@media
	  only screen and (-webkit-min-device-pixel-ratio: 2),
	  only screen and (   min--moz-device-pixel-ratio: 2),
	  only screen and (     -o-min-device-pixel-ratio: 2/1),
	  only screen and (        min-device-pixel-ratio: 2),
	  only screen and (                min-resolution: 192dpi),
	  only screen and (                min-resolution: 2dppx) {

	  	.lj-logo-1x {
			display: none !important;
		}

		.lj-logo-2x {
			display: block !important;
		}

	}


/* 5. HEADER */

	header {
		width: 100%;
		height: 100%;
		overflow: hidden;
		position: relative;
		background-color: #000 !important;
		margin-top:85px;
	}

	header > .container {
		height: 100%;
		position: relative;
	}

	.wrapper {
		width: 100%;
		height: auto;
		position: relative;
		top: 50%;
	}

	.lj-overlay {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
	}

	.lj-background-repeat {
	    background-repeat: repeat;
	}

	.lj-background-no-repeat {
		background-repeat: no-repeat;
	}

	.lj-overlay-none {
		display: none;
		visibility: hidden;
	}

	.lj-overlay-image {
		background-image: url('../img/lines.png');
		background-repeat: repeat;
	}

	.lj-overlay-color {
	    background-color: rgba(0,0,0,0.5);
	}

	.lj-overlay-gradient {
		background: -moz-linear-gradient(215deg,  rgba(0,204,255,0.8) 0%, rgba(196,255,0,0.8) 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,rgba(0,204,255,0.8)), color-stop(100%,rgba(196,255,0,0.8))); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(215deg,  rgba(0,204,255,0.8) 0%,rgba(196,255,0,0.8) 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(215deg,  rgba(0,204,255,0.8) 0%,rgba(196,255,0,0.8) 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(215deg,  rgba(0,204,255,0.8) 0%,rgba(196,255,0,0.8) 100%); /* IE10+ */
		background: linear-gradient(215deg,  rgba(0,204,255,0.8) 0%,rgba(196,255,0,0.8) 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ccff', endColorstr='#c4ff00',GradientType=1 ) progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/1x1.png'); /* IE6-9 fallback on horizontal gradient */
		pointer-events:none;
	}

	header.yt-background {
		background-image: url('../img/video.jpg');
		background-repeat: no-repeat;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
		background-attachment: fixed;
	}

	.mobile .mbYTP_wrapper,
	.tablet .mbYTP_wrapper {
		z-index: -1 !important;
	}

	.mobile .yt-controls,
	.tablet .yt-controls {
		display: none;
	}

	.yt-controls {
		margin-top: 50px;
		text-align: right;
	}

	.yt-controls a {
		display: inline-block;
		color: #fff;
		width: 20px;
	}

	.yt-controls a:hover {
		color: #e33b38;
	}

	.lj-logo a,
	.lj-logo img {
		width: 350px;
	}

	.lj-logo a {
		display: block;
		margin: 0 auto;
	}

	.lj-logo img {
	    vertical-align: bottom;
	}

	.lj-logo-1x {
		display: block;
	}

	.lj-logo-2x {
		display: none;
	}

	.lj-title {
        margin-top: 30px;
    }

    .lj-title h1 {
    	font-family: 'Raleway';
    	font-size: 3.5em;
    	font-weight: 300;
        color: #fff;
        margin: 0;
        word-wrap: break-word;
    }

    .lj-title span {
        color: #fff;
        font-weight: 700;
    }

	.lj-line {
		margin-top: 20px;
	}

    .lj-line > div {
    	width: 200px;
    	height: 1px;
    	background-color: #fff;
    	margin: 0 auto;
    }

    .lj-title-paragraph {
    	margin-top: 20px;
    }

    .lj-title-paragraph p {
    	color: #fff;
    	margin: 0;
		font-size:28px;
    }

    .lj-countdown {
    	color: #fff;
    	margin-top: 40px;
    	text-align: center;
    }

    .lj-countdown > * {
    	text-align: center;
    }

    .lj-countdown div {
    	display: inline-block;
    }

    .lj-countdown div span {
    	width: 150px;
    	display: block;
    }

    .lj-countdown div span:first-child {
    	height: 64px;
    	font-family: Lato, "Century Gothic", "Trebuchet MS", Helvetica, sans-serif;
    	font-weight: 300;
    	font-size: 4em;
    	line-height: 64px;
    }

    .lj-countdown div span:last-child {
    	height: 20px;
    	font-weight: 300;
    	font-size: 1em;
    	line-height: 20px;
    }





/* ABOUT US */

	.about-us {
		background:#fff;
		overflow: hidden;
	}

	.about-us > .container {
		padding-top: 130px;
		padding-bottom: 130px;
	}

/* OUR MODALITIES */

	.our-modalities {
		background-color: #e5e5e5;
		overflow: hidden;
	}

	.our-modalities > .container {
		padding-top: 120px;
		padding-bottom: 130px;
	}

	.our-modalities .columns-new {
		background-color: #fff;
		border:20px solid #e5e5e5;
	}

	.our-modalities .columns-new img {
		padding-top: 40px;
	}

	.our-modalities .columns-new p {
		padding:10px 15px 40px 15px;
	}

	.our-modalities .desktop {
		display:inline;
	}

	.our-modalities .mobile {
		display:none;
	}

	.lj-icon-box {
		padding: 0 20px;
		text-align: center!important;
	}

	.lj-icon-box span {
		display: inline-block;
		font-size: 2em;
		text-align: center!important;
		color: #e33b38;
		background-color: transparent;
	}

	.lj-icon-box h3 {
		font-family: 'Raleway';
		font-weight: 700;
		font-size: 1.2em;
		word-wrap: break-word;
		color: #262626;
	}

	.lj-icon-box p {
		font-size: 1em;
		color: #000;
	}

	.lj-icon-box > a {
		font-family: 'Raleway';
		font-weight: 700;
		font-size: 0.85em;
		color: #262626;
		display: inline-block;
	}

	.lj-icon-box > a:hover {
		color: #e33b38;
	}

	.lj-icon-box h3,
	.lj-icon-box p,
	.lj-icon-box > a {
		margin: 20px 0 0;
	}

	.lj-icon-box p a {
		font-weight: 700;
	}

	.more-info-button p {
		text-align:center!important;
		margin-top:100px;
	}

	.info-button {
	  display: inline-block;
	  padding: 15px 40px;
	  background-color: #e33b38;
	  border: 2px solid #e33b38;
	  color: #fff;
	  -webkit-border-radius: 2px;
	  -moz-border-radius: 2px;
	  border-radius: 2px;
	  font-family: 'Raleway';
		font-size:1.2em;
	  font-weight: 700;
	  transition: all 0.125s ease-in-out 0s;
	  -moz-transition: all 0.125s ease-in-out 0s;
	  -webkit-transition: all 0.125s ease-in-out 0s;
	  -o-transition: all 0.125s ease-in-out 0s;
	  -ms-transition: all 0.125s ease-in-out 0s;
	}

	.info-button:hover {
		background-color: transparent;
		border: 2px solid #e33b38;
		color: #000;
	}


/* OUR PROCESS */

	.our-process {
		width: 100%;
		background-color: #fff;
		background-image: url('../img/bg-process.webp');
		background-attachment: fixed;
		background-repeat: no-repeat;
		background-position: 50% 0;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
		position: relative;
		overflow: hidden;
	}

	.our-process > .container {
		padding-top: 130px;
		padding-bottom: 170px;
	}


/* OUR SERVICES */

	.our-services {
		background-color: #fff;
		overflow: hidden;
	}

	.our-services .columns-new {
		background-color: #e5e5e5!important;
    border-right:2px solid #fff!important;
		border-bottom:2px solid #fff!important;
	}

	.our-services .columns-new:hover {
		background-color: #d5d5d5!important;
	}

	.our-services .columns-new img {
		padding-top:70px;
	}

	.our-services .columns-new h3 {
		padding-bottom:70px;
	}

	.our-services .desktop {
		display:inline;
	}

	.our-services .mobile {
		display:none;
	}


	.lj-quote {
		margin-top: 5.75em;
	}

	.lj-quote span {
		color: #e33b38;
		font-size: 2em;
	}

	.lj-quote blockquote {
		width: 80%;
		margin: 10px 0 0;
		font-weight: 700;
		font-style: italic;
		font-size: 1.25em;
	}

	.lj-quote blockquote cite {
		font-size: 0.8em;
		font-weight: 300;
		font-style: normal;
		margin-top: 10px;
		display: block;
	}

	.lj-about h2 {
		font-family: 'Raleway';
		font-weight: 300;
		font-size: 3em;
		color: #262626;
		margin: 0;
	}

	.lj-about h2 span {
		font-weight: 700;
	}

	.lj-about p {
		margin-top: 20px;
		margin-bottom: 0;
	}

	.lj-about-leading {
		font-weight: 700;
		font-size: 1.2em;
	}

	.center-col {
		float:none!important;
		margin-left:auto!important;
		margin-right:auto!important;
	}

	.process {
		text-align:center!important;
	}

	.process p {
		padding-top:20px!important;
		font-size:1.5em!important;
	}

	.process-white {
		text-align:center!important;
	}

	.process-white h2 {
		color:#fff!important;
	}

	.process-white p {
		padding-top:20px!important;
		font-size:1.5em!important;
		color:#fff!important;
		font-weight: 400;
	}


/* 10. FOOTER */

	footer {
		width: 100%;
		background-color: #18191a;
		overflow: hidden;
	}

	.availability {
		margin-top:10px!important;
		padding-bottom:10px;
	}

	footer .new-footer-row {background:#000; margin-top:60px}
	footer .new-footer-text {text-align:center; padding:20px 20px;color:#757575;}
	footer .new-footer-text a {color:#757575;}
	footer .new-footer-text a:hover {color: #e33b38;}


/* 11. BREAKPOINTS */

	@media (min-width: 992px) and (max-width: 1199px) {

		/* 9. TWITTER */

		.lj-twitter-feed {
			margin-top: 15px;
		}

	}

	@media (min-width: 768px) and (max-width: 991px) {

		/* 7. SUBSCRIBE */

	    .lj-subscribe-form {
	    	margin-top: 20px;
	    }

		/* 9. TWITTER */

		.lj-twitter-feed {
			margin-top: 10px;
		}

	}

	@media (max-width: 767px) {

		/* 5. HEADER */

		header,
		header > .container {
			height: auto;
		}

		.lj-logo a,
		.lj-logo img {
			width: 150px;
		}

		.wrapper {
			width: 100%;
			position: static;
			top: 0;
			margin-top: 50px !important;
			margin-bottom: 50px;
		}

		.our-modalities {
			padding-top:20px;
		}

		.our-modalities .columns-new {
			background-color: #fff;
			border-right:30px solid #e5e5e5;
			border-left:30px solid #e5e5e5;
			border-top:none;
			border-bottom:35px solid #e5e5e5;
			margin:0px;
		}

		.our-modalities .columns-new img {
			padding-top: 40px;
			width:55px;
		}

		.our-modalities .columns-new p {
			padding:4px 10px 40px 10px;
		}

		.our-modalities .last-item {
			margin-bottom:40px;
		}

		.our-modalities .desktop {
			display:none;
		}

		.our-modalities .mobile {
			display:inline;
			width:50px;
		}

		.our-modalities > .container {
			padding-top: 70px;
			padding-bottom: 120px;
		}

		.our-services .columns-new {
			margin-bottom:1px;
	    border-right:none;
		}

		.about-us > .container {
			padding-top: 40px;
			padding-bottom: 80px;
		}

		.about-us h2 {
			font-size:2.2em!important;
			padding-right:10px;
			padding-left:10px;
		}

		.our-process {
			background-image: url('../img/bg-process-mobile.jpg');
		}

		.our-process > .container {
			padding-top: 50px;
			padding-bottom: 100px;
		}

		.our-process h2 {
			font-size:2.2em!important;
			padding-right:10px;
			padding-left:10px;
		}

		.about-us p,
		.process-white p {
			font-size:1.2em!important;
		}

		/* OUR MODALITIES */

		.lj-icon-box {
			text-align: center;
			margin-bottom: 50px;
		}

		.lj-icon-box:last-child {
			margin-bottom: 0;
		}

		.lj-icon-box span {
			font-size: 3em;
		}

		.lj-icon-box h3 {
			font-size: 1.4em;
		}

		.lj-icon-box p {
			font-size: 1em;
			padding: 0 10%;
		}

		.lj-icon-box > a {
			font-size: 1em;
		}

		.lj-about {
			text-align: center;
		}

		.lj-about h2 {
			margin-top: 40px;
		}

		.lj-about p {
			padding: 0;
		}

		.coach-img {
			padding-right:30px;
			padding-left:30px;
		}

}
	@media (max-width: 480px) {
	.our-services .columns-new img {
		padding-top:40px;
	}

	.our-services .columns-new h3 {
		padding-bottom:40px;
	}


	footer .new-footer-text {padding:30px 0px; margin-bottom:0px; margin-top:-40px;}
	footer .new-footer-text a {color:#aaa;}
}

.lato-regular {
font-family: "Lato", sans-serif;
font-weight: 300;
font-style: normal;
}

.lato-bold {
font-family: "Lato", sans-serif;
font-weight: 700;
font-style: normal;
}

/*== UPDATED CSS ==*/

h1, h2, h3 {
font-family: "Lato", sans-serif!important;
font-weight: 700!important;
font-style: normal!important;
line-height:130%!important;
}

h1 {
font-size:46px!important;
}
h2 {
font-size:36px!important;
}
h3 {
font-size:26px!important;
}

p, a, li {
font-family: "Lato", sans-serif!important;
font-weight: 400!important;
font-style: normal!important;
font-size:16px!important;
}

#hero h1 {
    line-height: 130%!important;
    color: #fff!important;
		font-size:46px!important;
}

#hero .lj-scroll-down {
	margin-left: -25px;
	position: absolute;
	bottom: 40px;
	left: 50%;
}

#hero .lj-scroll-down a,
#hero .lj-scroll-down a:hover,
#hero .lj-scroll-down a:focus {
		display: block;
		text-align: center;
		line-height: 36px;
		background-color: transparent;
	}

#hero a i {
	font-size:60px!important;
	font-weight:700!important;
	color:#fff;
}


	.img-txt-block {
		background:#fff;
		overflow: hidden;
	}
	.other-sports,
	.other-sports .img-txt-block  {
		background:#eee!important;
	}

	.img-txt-block {
		padding:40px 0;
	}

	.img-txt-block img {
		width:100%;
		margin-bottom:30px;
	}


div#tennis,
div#other-sports,
div#about-the-coach{
    padding: 80px 0!important;
}

#contact-info {
    padding: 80px 0 0!important;
}

div#tennis h2,
div#other-sports h2 {
    text-align: center!important;
}

#contact-info h2 {
    text-align: left!important;
		color: #eee!important;
}

div#about-the-coach h2 {
		padding-left:10px!important;
		text-align:left!important;
}

div#tennis h3,
div#other-sports h3 {
		padding-left:10px!important;
}

div#tennis h3 span,
div#other-sports h3 span {
    border-bottom: 3px solid #e33b38!important;
}

div#tennis p,
div#other-sports p,
div#about-the-coach p {
    font-size: 17px!important;
		line-height:180%!important;
		padding-right:40px!important;
		padding-left:10px!important;
}

#contact-info p {
    font-size: 17px!important;
		line-height:180%!important;
		color: #e5e5e5!important;
}

#contact-info a {
    font-size: 24px!important;
		color:#e5e5e5!important;
}

#contact-info i {
    font-size: 24px!important;
		color:#e33b38!important;
		padding-right:5px!important;
}

div#our-services h3 {
	font-size:20px!important;
}

@media (max-width: 991px) {
/*== GENERAL ==*/
/* Column Reverse */
.row.img-txt-block.col-reverse {
display: flex!important;
flex-direction: column-reverse!important;
}

h2 {
font-size:24px!important;
}
h3 {
font-size:22px!important;
}

#hero h1 {
		font-size:30px!important;
}

div#tennis,
div#other-sports,
div#about-the-coach {
    padding: 40px 0!important;
}
#contact-info {
    padding: 40px 0 0!important;
}
div#tennis h2,
div#other-sports h2,
div#about-the-coach h2 {
    padding-left:0!important;
}
div#tennis h3,
div#other-sports h3 {
		padding-left:0!important;
}

div#tennis h3 span,
div#other-sports h3 span {
    border-bottom: 2px solid #e33b38!important;
}

div#tennis p,
div#other-sports p,
div#about-the-coach p {
		padding-right:0!important;
		padding-left:0!important;
}

.img-txt-block {
    padding: 20px 5px!important;
}
.img-txt-block img {
	margin-bottom:5px;
}

div#our-services h3 {
	font-size:14px!important;
}

}



#sticky-menu {background:#111; position:fixed; top:0; z-index: 999999!important; width: 100%; height:85px; margin:0 auto;}
#sticky-menu .logo {margin-top:10px; width:60px; height:auto}
#sticky-menu p {padding-top:15px}
#sticky-menu p .divider {font-weight: 200 !important; padding:0 10px; color:#555;}
#sticky-menu a {color:#fff; text-decoration:none; font-size: 18px !important; font-weight: 500 !important;}
#sticky-menu a i {color:#e33b38 !important; text-decoration:none; font-size: 24px !important; font-weight: 500 !important; vertical-align: middle; margin-top:-3px;}

#sticky-menu a .text {padding-left:7px;}


@media (max-width: 991px) {
#sticky-menu {height:85px; margin:0 auto;}
#sticky-menu a .text {display:none; font-weight: 400 !important;}
#sticky-menu p .divider {padding:0 6px; color:#111;}
#sticky-menu a i {font-size: 36px !important; margin-top:-5px; font-weight: 400 !important;}
}


