/*================= MASTER STYLESHEET =================================

	Project     :	TREX-YOGA Page
	Version     :	1.0
	Last Change : 	20/06/2017
	Primary Use :   TREX-YOGA HTML Page

=======================================================================*/
/*========================================== LAYOUT ===================================================================

		1.GLOBAL CSS START
		2.NAVIGATION
		3.HEADER-1
		4.YOGA CLASSES
		5.IMPROVE HEALTH
		6.CTA
		7.OUR PRICE
		8.GALLERY
		9.BREATHING EXERCISE
		10.OUR TRAINERS
		11.OUR TIME TABLE
		12.OUR TESTIMONIAL
		13.OUR YOGA ARTICLES
		14.FOOTER
		15.MEDIA QUERIES

=========================================================================================================*/
/*========================================== COLOR CODES ==============================================


	Theme Color	       :#008000
	Main Heading Color :#333333
	SubHeading Color   :#333333
	Content Color      :#666666

=====================================================================================================*/
/*========================================== TYPOGRAPHY ==============================================
	HEADING :font-family: 'Oswald', Helvathika, Arial sans-serif;
	CONTENT :font-family: 'Open Sans', Helvathika, Arial sans-serif;

====================================================================================================*/
/*========================================== 1.GLOBAL CSS START ===========================================*/
/* CUSTOM STYLES */

@import url('https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i');
body {
    font-family: 'Open Sans', Helvathika, Arial, sans-serif;
    font-size: 14px;
}
a {
    outline: none !important;
    text-decoration: none !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    font-family: 'Oswald', Helvathika, Arial, sans-serif;
}
/* elements */

p {
    margin: 0px;
}
h1,
h2,
h3,
.menu-fs {
    text-transform: uppercase;
}
h1,
h2,
h3 {
    color: #333333;
    font-weight: 500;
    letter-spacing: 1px;
}
h2 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 10px;
}
h3 {
    font-size: 20px;
    line-height: 28px;
}
.h3-bottom {
    margin-bottom: 10px;
}
p {
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}
.p-bottom {
    margin-bottom: 20px;
}
a {
    color: inherit;
}
a:hover {
    color: inherit;
    text-decoration: none;
}
a:visited {
    color: inherit;
    text-decoration: none;
}
.section-space {
    padding: 80px 0 80px 0;
}
.image-center {
    margin: 0 auto;
}
.image-right {
    margin: 0 0 0 auto;
}
.image-left {
    margin: 0 auto 0 0;
}
.image-radius {
    border-radius: 3px;
}
.center {
    text-align: center;
}
.left {
    text-align: left;
}
.right {
    text-align: right;
}
.link {
    color: #ff8758;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 1px;
}
.link-top {
    margin-top: 15px;
}
.btn-1 {
    background-color: #008000;
    border: 0;
    border-radius: 3px;
    color: #f3f3f3;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 20px 10px 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 300ms ease-in;
}
.btn-1:hover {
    background-color: #2980B9;
}
.btn-ant:hover {
    background-color: #f3f3f3;
    color: #333333;
}
.btn-top {
    margin-top: 30px;
}
.btn:hover,
.btn:focus {
    color: #ffffff;
}
.image-bottom {
    margin: 0 0 20px 0;
}
.column-center {
    float: none;
    margin: 0 auto;
}
.no-padding {
    padding: 0;
}
.no-margin {
    margin: 0;
}
.no-fs {
    font-size: 0;
}
.left-padding {
	padding-left: 10px;
}
.right-padding {
	padding-right: 10px;
}
.common-row-space {
    padding-bottom: 40px;
}
.common-row-space30 {
	padding-bottom: 30px;
}
.section-bg-1 {
    background-color: #ffffff;
}
.section-bg-2 {
    background-color: #f6f6f6;
}
iframe {
    border: 0px;
}
.white-text h1,
.white-text h2,
.white-text h3,
.white-text p {
    color: #f3f3f3;
}
.bgimage-property {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.ls {
    letter-spacing: 1px;
}
.content-ul {
	list-style:none;
}
.distab {
    display: table;
}
.distab-cell-middle {
    display: table-cell;
    vertical-align: middle;
}
.distab-cell-top {
    display: table-cell;
    vertical-align: top;
}
.distab-cell {
    display: table-cell;
}
.underline-bottom {
    margin: 0 0 40px 0;
}
.link {
    color: #008000;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
}
.link a:hover {
    color: #333333;
}
.img-responsive {
    border-radius: 3px;
}
/*========================================== NAVIGATION START ===========================================*/

.menu-underline {
    display: inline-block;
    position: relative;
    padding-bottom: 3px;
}
.menu-underline:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    transition: width 0s ease, background .5s ease;
}
.menu-underline:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    background: #008000;
    transition: width .5s ease;
}
.menu-underline:hover:before {
    width: 100%;
    background: #008000;
    transition: width .5s ease;
}
.menu-underline:hover:after {
    width: 100%;
    background: transparent;
    transition: all 0s ease;
}
.menu-fs,
.menu-fs li {
    color: #666666;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 1px;
}
.menu-bg {
    background: rgb(255, 255, 255) none repeat scroll 0 0;
}
.navbar {
    margin-bottom: 0;
}
.navbar-default .navbar-nav > li > a {
    color: #666666 !important;
    background-color: transparent !important;
    margin: 0 15px;
    padding: 15px 0 2px 0;
}
.navbar-default .navbar-nav > li > a:hover {
    color: #666666 !important;
    background-color: transparent !important;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
    color: #008000!important;
}
.navigation-tb {
    margin: 10px 0;
}
.nav > li {
    display: table;
}
.navbar-right {
    margin-right: 0;
}
/*========================================== NAVIGATION END ===========================================*/
/*========================================== HEADER-1 START ===========================================*/

.header-bgimage {
    background-image: url("../../images/1500x700.jpg");
}
.header-section-space {
    padding: 320px 0 320px 0;
}
.header-head h1 {
	color: #008000;
    font-size: 100px;
    font-weight: 500;
    line-height: 108px;
    letter-spacing: 20px;
    text-transform: uppercase;
}
.header-head p {
	color: #ec9a29;
	font-family: 'Oswald', Helvathika, Arial, sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 42px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.header-head-bottom h1 {
    margin-bottom: 15px;
}
.header-head-bottom p {
    margin-bottom: 10px;
}
.header-head-bottom p:last-child {
    margin-bottom: 0;
}

/*========================================== HEADER-1 END ===========================================*/

/*========================================== YOGA CLASSES START ===========================================*/

.yoga-bg {
    background-color: #008000;
	border-radius:3px;
    padding: 15px;
}
.cta-bg:hover,
.yoga-bg:hover {
	background-color: #2980B9;
}

/*========================================== YOGA CLASSES END ===========================================*/

/*========================================== IMPROVE HEALTH START ===========================================*/

.health-icon-left,
.health-image-left {
    float: left;
}
.health-pad-left {
    padding-left: 170px;
}
.health-top {
	padding-top: 15px;
}
.link-top1 {
    padding-top: 15px;
}
.left-padding-link {
	padding-left: 20px;
}
.distab-link {
	display: table;
	margin: 0 auto;
	text-align:center;
}

/*========================================== IMPROVE HEALTH END ===========================================*/

/*========================================== CTA START ===========================================*/

.cta-bgimage {
    background-image: url("../../images/1500x600.jpg");
}
.cta-section-space {
    padding: 220px 0 220px 0;
}
.cta-bg {
	background-color: #008000;
	border-radius:3px;
    padding: 15px;
}
.cta-bg p {
	color: #f3f3f3;
}

/*========================================== CTA END ===========================================*/

/*========================================== OUR PRICE START ===========================================*/

.price-head-bottom {
    margin-bottom: 20px;
}
.price-tag {
    color: #333333;
    font-size: 50px;
    font-weight: 600;
    line-height: 70px;
}
.price-br {
    border-left: 1px solid #333333;
	border-radius: 3px 3px 0 0;
	border-right: 1px solid #333333;
	border-top: 1px solid #333333;
    transition: 300ms ease-in;
}
.price-btn-bg,
.price-title-bg {
	background-color: #008000;
}
.price-content-bg {
	background-color: #333333;
}
.price-btn-bg {
	border-radius: 0 0 3px 3px;
}
.price-btn {
    border: 0;
    color: #f3f3f3;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 300ms ease-in;
}
.price-btn-bg {
	padding: 10px;
}
.price-tag,
.list-pad,
.price-content-bg,
.price-title-bg {
	padding: 15px;
}
.price-list-bottom p {
    padding-bottom: 15px;
}
.price-list-bottom p:last-child {
    padding-bottom: 0;
}
.price-fixed:hover .price-btn-bg,
.price-fixed:hover .price-title-bg {
	background-color: #2980B9;
}
.price-fixed:hover .price-br {
    background-color: #ffffff;
	border-left: 1px solid #2980B9;
	border-right: 1px solid #2980B9;
	border-top: 1px solid #2980B9;
}
/*========================================== OUR PRICE END ===========================================*/

/*========================================== GALLERY START ===========================================*/

.gallery-fa {
    color: #008000;
    font-size: 30px;
}
.gallery-fa-pad-left {
    padding-left: 10px;
}
.ekko-lightbox-nav-overlay a {
    color: #008000;
}
.gallery-row-bottom {
    padding-bottom: 30px;
}
.list-style-none {
    list-style: none;
}
/*========================================== GALLERY END ===========================================*/

/*========================================== BREATHING EXERCISE START ===========================================*/

.exercise-head-bottom {
    padding-bottom: 10px;
}
.exercise-uline-bottom {
    padding-bottom: 15px;
}
/*========================================== BREATHING EXERCISE END ===========================================*/

/*========================================== OUR TRAINERS START ===========================================*/

.trainer-center {
	margin: 0 auto;
	width: 80%;
}
.trainerbr-padding {
	border: 1px solid #333333;
	border-radius: 3px;
	padding: 79px 15px;
}
.trainerbr img {
    border-radius: 0;
}
.trainer-social-icon li {
    list-style: none;
    display: inline-block;
}
.trainer-social-lr-pad li {
    padding-left: 10px;
}
.trainer-social-lr-pad li:first-child {
    padding-left: 0;
}
.trainerbg-author {
    color: #333333;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 15px;
}
.trainerbg-design {
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 15px;
}
.trainerbr-padding:hover {
	background-color: #f6f6f6;
	border: 1px solid #008000;
	transition: 300ms ease-in;
}
.trainerbr-padding:hover .trainerbg-design {
	color: #008000;
}
/*========================================== OUR TRAINERS END ===========================================*/

/*========================================== OUR TIME TABLE START ===========================================*/

.timetable-br {
	border: 1px solid #333333;
    padding: 15px 15px 35px 15px;
}
.time span {
	color: #008000;
}
.h3-timebottom {
	margin-bottom: 15px;
}
.timetable-br:hover {
	background-color: #ffffff;
	border: 1px solid #008000;
	transition: 300ms ease-in;
}

/*========================================== OUR TIME TABLE END ===========================================*/

/*========================================== OUR TESTIMONIAL START ===========================================*/

.client-design,
.client-content {
    font-style: italic;
}
.client-content {
	margin-bottom: 10px;
}
.client-name-bottom {
    padding-bottom: 20px;
}
.client-left-pad {
    padding-left: 15px;
}
.client-name {
    font-size: 16px;
    font-weight: 600;
}
.client-design {
	color: #008000;
    font-size: 13px;
    font-weight: 600;
}
/*========================================== OUR TESTIMONIAL END ===========================================*/

/*========================================== OUR YOGA ARTICLES START ===========================================*/

.articles-p {
	font-weight: 600;
}

/*========================================== OUR YOGA ARTICLES END ===========================================*/

/*========================================== FOOTER START =========================================*/

.contact-heading-bottom {
    margin-bottom: 20px;
}
.follow-heading-bottom {
    margin-bottom: 20px;
}
.footer-bg {
    background-color: #333333;
}
.footer-row-space {
    margin-bottom: 30px;
}
.footer-icon {
    list-style: none;
    display: inline-block;
}
.footer-lr-pad {
    padding-left: 10px;
}
.form-bottom-1 {
    margin-bottom: 20px;
}
.form-text {
    height: 40px;
}
.footer-br {
    border-bottom: 1px solid #cccccc;
    margin-top: 40px;
}
.footer-br-bottom {
    margin-bottom: 40px;
}
.form-div input.error,
.form-div-1 textarea.error {
    border-color: #ff0000 !important;
}
.contact-div label {
    color: #ff0000;
    font-size: 12px;
    font-weight: 600;
}
.errorClass {
    border: 1px solid #ff0000 !important;
}
.form-success,
.form-failure {
    font-size: 14px;
    font-weight: 600;
}
.form-success {
    color: #008000;
}
.form-failure {
    color: #ff0000;
}
.submit-reset {
    margin: 0 0 0 auto;
    padding-top: 20px;
}
.submit-right-pad {
    padding-right: 30px;
}
.form-error-top {
    padding-top: 10px;
}
/*========================================== FOOTER END ===========================================*/

/*========================================== MEDIA QUERIES START ===========================================*/

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .health-top {
		padding-top: 5px;
	}
	.timetable-br {
        padding: 15px 15px 20px;
    }
	.relax {
		width: 40%;
	}
	.trainer-center {
		margin: 0 auto;
		width: 97%;
	}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .res-image-bottom {
        padding-bottom: 20px;
    }
    .common-res-bottom {
        padding-bottom: 40px;
    }
    .timetable-br {
        padding: 15px;
    }
	.health-top {
		padding-top: 0;
	}
    .estimation-text-top {
        margin-top: 40px;
    }
	.trainer-center {
		margin: 0 auto;
		width: 100%;
	}
	.trainerbr-padding {
		padding: 48px 15px;
	}
	.gallery-img {
		height: 177px !important;
	}
}
@media only screen and (min-width: 250px) and (max-width: 767px) {
    .navbar-toggle {
        margin-right: 0;
    }
	.navbar-collapse {
		padding-left: 0;
		padding-right: 0;
	}
    .navbar-default .navbar-nav > li > a {
        margin: 5px 15px;
    }
    .res-image-bottom-1 {
        padding-bottom: 20px;
    }
    .common-res-bottom-1 {
        padding-bottom: 40px;
    }
    .price-fixed {
        margin: 0 auto;
        width: 350px !important;
    }
    .price-res-bottom {
        margin-bottom: 40px;
    }
	.timetable-br {
        padding: 15px;
    }
	.health-top {
		padding-top: 0;
	}
    .estimation-text-top {
        margin-top: 40px;
    }
	.common-row-space30 {
		padding-bottom: 40px;
	}
}
@media only screen and (min-width: 250px) and (max-width: 639px) {
    .header-res-center {
        margin: 0 auto;
    }
    .header-full {
        width: 100% !important;
    }
}
@media only screen and (min-width: 250px) and (max-width: 600px) {
    .relax1 {
        width: 40%;
    }
}
@media only screen and (min-width: 250px) and (max-width: 481px) {
    .relax1 {
        width: 50%;
    }
}
@media only screen and (min-width: 250px) and (max-width: 479px) {
    .gallery-fa {
        font-size: 20px;
    }
    .common-full {
        width: 100% !important;
    }
    .four-column-res-bottom {
        padding-bottom: 40px;
    }
    .four-column-res-bottom-1 {
        padding-bottom: 40px;
    }
    .price-fixed {
        width: 100% !important;
    }
    .image-responsive {
        width: 100%;
        height: auto;
    }
	.res-time-table-img {
		padding-bottom: 20px;
		width: 100%;
	}
	.res-time-img {
		margin: 0 auto;
	}
	.res-center {
		text-align: center;
	}
	.res-time-table {
		padding: 0;
		width: 100%;
	}
	.relax1 {
        width: 60%;
    }
	.trainerbr-padding {
		padding: 30px 15px;
	}
}
@media only screen and (min-width: 250px) and (max-width: 359px) {
    .header-head p {
        font-size: 28px;
    }
	.header-head h1 {
        font-size: 80px;
    }
	.trainerbr-padding {
		padding: 30px 15px;
	}
	.relax1 {
        width: 70%;
    }
}

/*========================================== MEDIA QUERIES END ===========================================*/