/* CSS Document */
@font-face {
    font-family: 'bio';
    src: url('../fonts/bio/biorhyme-regular-webfont.woff2') format('woff2'),
         url('../fonts/bio/biorhyme-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	letter-spacing:0.7px;

}

@font-face {
    font-family: 'prime';
    src: url('../fonts/prime/primetime-personal_use_only-webfont.woff2') format('woff2'),
         url('../fonts/prime/primetime-personal_use_only-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

html, body{
  	font-family: 'bio';
    font-size: 100%;
	transition: background-color 0.5s ease;
  	//background: #333333;
	margin:0px;
	padding:0px;
	text-align:center;
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}

ul{
	list-style:none;
	margin:0px;
	padding:0px;
}

body a{
	font-size:12px;
	text-decoration:none;
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
	
}

a:hover{
	text-decoration:underline;
	
}

h1,h2,h3,h4,h5,h6{
	margin:0px;
	padding:0px;
}

img{
	border-width:0px;
}

i{
	margin:0px;	
}

.full{
	width:100%;
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}

.container{
	width:94%;
	margin:0px 3%;
}

.clear{
	clear:both;
}

::-webkit-scrollbar {
  width: 6px; 
   background-color:#CCCCCC;
  -webkit-border-radius: 80px;
}
::-webkit-scrollbar:hover {
  background-color: rgba(0,0,0,0.61);
}

::-webkit-scrollbar-thumb:vertical {
  background: #CC9933;
  -webkit-border-radius: 80px;
}
/*::-webkit-scrollbar-thumb:vertical:active {
  background: rgba(0,0,0,0.61);
  -webkit-border-radius: 80px;
}*/

/*=========Animation============*/

/*=========bottom ani============*/

@-webkit-keyframes bottom-ani {
    from { margin-top:150px; }
    to { margin-top:0px;}
}
/* Standard syntax */
@keyframes bottom-ani {
   from { margin-top:150px; }
    to { margin-top:0px;}
}

/*=========left ani============*/

@-webkit-keyframes left-ani {
    from { margin-left:-150px; }
    to { margin-left:0px;}
}
/* Standard syntax */
@keyframes left-ani {
   from { margin-left:-150px; }
    to { margin-left:0px;}
}

/*=========top ani============*/

@-webkit-keyframes top-ani {
    from { margin-top:-150px; }
    to { margin-top:0px;}
}
/* Standard syntax */
@keyframes top-ani {
   from { margin-top:-150px; }
    to { margin-top:0px;}
}

/*=========menu top ani============*/

@-webkit-keyframes menu_top-ani {
    from { margin-top:-30px; }
    to { margin-top:0px;}
}
/* Standard syntax */
@keyframes menu_top-ani {
   from { margin-top:-30px; }
    to { margin-top:0px;}
}

/*=========right ani============*/


@-webkit-keyframes right-ani {
    from { margin-right:-150px; }
    to { margin-right:0px;}
}
/* Standard syntax */
@keyframes right-ani {
   from { margin-right:-150px; }
    to { margin-right:0px;}
}


/*==================header tag====================*/

.header{
	width:100%;	
	position: fixed;
	z-index:12;
	opacity:0.9;
	background: #FFF; /* For browsers that do not support gradients */
  	background: -webkit-linear-gradient(left, #ffffff 48px, #FF8300 18%, #E6B60E 100%); /* For Safari 5.1 to 6.0 */
  	background: -o-linear-gradient(right, #ffffff 48px, #FF8300 18%, #E6B60E 100%); /* For Opera 11.1 to 12.0 */
  	background: -moz-linear-gradient(left, #ffffff 48px, #FF8300 18%, #E6B60E 100%); /* For Firefox 3.6 to 15 */
  	background: linear-gradient(to right, #ffffff 48px, #FF8300 18%, #E6B60E 100%); /* Standard syntax */
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#FF8300', GradientType=1);
}

.header .logo{
	float:left;	
	padding: 10px 13px 10px 0;
	background: #FFF;
}

.header .logo img{
	width:auto;
	height:60px;
}

.header .om{
	float:left;	
	padding: 2px 5px 2px 0;
	background: #FFF;
}

.header .om img{
	width:auto;
	height:76px;
}

.header span.doubleline{
	display:block;
	width:100%;
	height:4px;
	border-top: 1px solid #e3ffbb;
    border-bottom: 1px solid #b8e4ff;
}

/*================== Menu ====================*/

.menu{
	float:right;	
}

.menu i{
    border: 2px solid #0c6eb7;
    color: #0c6eb5;
    padding: 7px 10px;
    font-size: 21px;
    cursor: pointer;
	display:none;
	visibility:hidden;	
}

.menu ul{
	display:block;	
}

.menu ul li{
	display:table-cell;
}

.menu ul li:hover{
	background:#fff;
	box-shadow: -2px 0px 0px 0px #ffffff;
}

.menu ul li a{
	display:block;
	padding: 32.5px 13px;
    color: #000;
    text-decoration: none;
    font-family: 'prime';
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 11px;
	
	transition:0s all;
	-webkit-transition:0s all;
	-moz-transition:0s all;
	-o-transition:0s all;
	-ms-transition:0s all;
}

.menu ul li:hover a{
	color:#FFF;
	background:#0e76b8;	
}

.menu ul .menu_active{
	background:#0e76b8;	
	box-shadow: -2px 0px 0px 0px #ffffff;
}

.menu ul .menu_active > a{
	color:#ffffff;
}

.menu ul ul{
	margin-left: -2px;
	min-width:200px;
	background:rgb(142, 200, 54);
	position:absolute;
	z-index:99;
	visibility:hidden;
	border:1px solid #FFF;
	
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
	
}

.menu ul li:hover ul{
	visibility:visible;
	/* Chrome, Safari, Opera */
    -webkit-animation-name: bottom-ani;
    -webkit-animation-duration: 0.2s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-direction: alternate;
    /* Standard syntax */
	
    animation-name: bottom-ani;
    animation-duration: 0.2s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-direction: alternate;
}

.menu ul ul li{
	display:block;	
	border-width:0px;
	border-bottom:1px solid #FFFFFF;
}

.menu ul ul li:hover{
	background:#D3D3D6;
}

.menu ul ul li a{
	padding:10px;
	display:block;	
	line-height:18px;
	color:#666;
	text-align:left;
}

.menu ul ul li:hover a{
	color:#333;
	background:#FFF;
}

.menu ul ul .menu_active a{
	color:#333;
	background:#FFF;
}

/*================== welcome ====================*/

.welcome{
	width:100%;
	padding:40px 0px;
	background:#FFF url(../images/welcome.jpg) left no-repeat;
	background-size:cover;
	min-height: 603px;	
}

.welcome .welcome-col{
	width:55%;
	float:right;
}

.welcome .welcome-col .welcome-col-inner{
	margin:	0 0 0 10px;	
}

.welcome .welcome-col h1{
	font-family: 'prime';
    text-align: left;
    font-size: 26px;
    padding: 10px 0px;
    color: #1d79b6;
	line-height: 35px;
}

.welcome .welcome-col p{
	text-align: left;
    font-size: 16px;
    padding: 10px 0px;
    color: #3e3e3e;
    margin: 0;
    line-height: 23px;
}

.welcome .welcome-col ul{
	display:block;
}

.welcome .welcome-col ul li{
	text-align: left;
    font-size: 16px;
    padding: 10px 0px 10px 30px;
    color: #2985bb;
    margin: 0;
    line-height: 23px;
}

.welcome .welcome-col ul li i{
	position: absolute;
    margin-left: -24px;
    margin-top: 2px;
    color: #f7890c;
    font-size: 18px;
}

.welcome .welcome-col .readmore{
	font-family: 'bio';
	display: table;
    background: #2684bf;
    color: #FFF;
    font-size: 17px;
    padding: 10px 42px 10px 15px;
    margin-top: 30px;
	text-decoration:none;
}

.welcome .welcome-col .readmore i{
	font-size: 20px;
    position: absolute;
    margin-top: -22px;
    margin-left: 61px;
	border-radius:50%;
	
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}

.welcome .welcome-col .readmore:hover{
	background: #f98b0e;
}

.welcome .welcome-col .readmore:hover i{
	-ms-transform: rotate(-90deg); /* IE 9 */
    -webkit-transform: rotate(-90deg); /* Chrome, Safari, Opera */
    transform: rotate(-90deg);
}

/*================== Yoga ====================*/

.yoga{
	width:100%;
	background:#FFF;
	padding:20px 0px;	
}

.yoga .yoga-col{
	float:left;
	width:33.33%;
	position:relative;
	overflow:hidden;
}

.yoga .yoga-col img{
	width:100%;
	height:auto;
	
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}

.yoga .yoga-col:hover img{
	transform:scale(1.1);	
}

.yoga .yoga-col .yoga-info{
	position:absolute;
	display:inline-block;
	width:100%;
	height:100%;
	left:0;
	top:0;
	vertical-align:middle;    
	z-index: 0;
}

.yoga .yoga-col .yoga-info:before{
	content:"";
	display:block;
	width:100%;
	position:absolute;
	left:0;
	top:0;
	height:0;
	background:rgba(230, 188, 38, 0.28);    
	z-index: -1;
	
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;	
}

.yoga .yoga-col:hover .yoga-info:before{
	height:100%;
}

.yoga .yoga-col .yoga-info .info-col{
	display: block;
    padding: 5% 10px;
    position: relative;
    vertical-align: middle;	
}

.yoga .yoga-col .yoga-info h5{
	color: #00456f;
    font-size: 18px;
    padding: 2px 0px;
    line-height: 24px;
}

.yoga .yoga-col:hover .yoga-info h5{
	color:#824500;	
}

.yoga .yoga-col .yoga-info h6{
	color: #000000;
    font-size: 14px;
    padding: 0px 30px;
    line-height: 24px;
}

.yoga .yoga-col .yoga-info .readmore{
	display: inline-block;
    position: relative;
    padding: 18px 19px 15px 11px;
    border-radius: 8px;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    color: #2883bd;
    margin-top: 16px;
	overflow:hidden;
}

.yoga .yoga-col:hover .yoga-info .readmore{
	padding: 9px 45px 6px 13px;
    background: #FFF;
}

.yoga .yoga-col .yoga-info .readmore span{
	visibility: hidden;
    display: none;
}

.yoga .yoga-col:hover .yoga-info .readmore span{
	visibility: visible;
    display: inline-block;
}

.yoga .yoga-col .yoga-info .readmore i{
	position: absolute;
    font-size: 29px;
    border-radius: 50%;
    color: #2883bd;
    right: 2px;
    top: 3px;
	
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;	
}

.yoga .yoga-col:hover .yoga-info .readmore i{
	-ms-transform: rotate(-90deg); /* IE 9 */
    -webkit-transform: rotate(-90deg); /* Chrome, Safari, Opera */
    transform: rotate(-90deg);
}

/*================== yoga-time ====================*/

.yoga-time{
	width: 100%;
	padding:40px 0px
}

.yoga-time .yoga-time-col{
	width: 25%;
    float: left;
}

.yoga-time .yoga-time-inner{
	margin: 10px;
    padding: 10px 20px;
    border: 1px solid #CCC;
    background: #098ddc;
}

.yoga-time .yoga-time-inner:hover{
	background: #e67c00;
}

.yoga-time .yoga-time-col:nth-child(3) .yoga-time-inner{
	background: #e67c00;
}

.yoga-time .yoga-time-col h2{
	display: block;
    font-size: 24px;
    padding: 5px 0px;
    color: #e0e0e0;
}

.yoga-time .yoga-time-col h1{
	padding: 3px 0px;
    color: #002c46;
    font-size: 30px;
}

.yoga-time .yoga-time-col h3{
	color: #efefef;
    font-size: 20px;
    padding: 5px 0;
}

.yoga-time .yoga-time-col i{
	font-size: 29px;
    color: #0f6ba2;
}

.yoga-time .yoga-time-inner:hover i{
	color: #ffae4f;
}

.yoga-time .yoga-time-col:nth-child(3) .yoga-time-inner i{
	color: #ffae4f;
}

/*================== inner-slide ====================*/

.inner-slide{
	width:100%;
	height:auto;
	position:relative;
}

.inner-slide img{
	width:100%;
	height:auto;	
}

.inner-slide .banner-heading{
	width: 100%;
    padding: 13px 0px 9px;
    background: rgba(255,255,255,0.4);
    position: absolute;
    bottom: 0;
    left: 0;
    text-shadow: 1px 1px 1px #000;
}

.inner-slide .banner-heading h1{
	font-family: 'prime';
    font-size: 20px;
    color: #f38512;
    line-height: 28px;
    text-align: left;
    text-transform: uppercase;
}

/*================== Other Page ====================*/

.other{
	width:100%;
	padding:40px 0px;
	background:#FFF;
}

.other .other-inner{
	margin-left:40px;
}

.other .other-left{
	width:70%;
	float:left;
}

.other .other-left h3{
	text-align: left;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 33px;
    padding: 8px 0px;
    color: #484848;
}

.other .other-left p{
	text-align: left;
    font-size: 15px;
    line-height: 23px;
    padding: 0px;
    margin: 0;
    color: #484848;
}

.other .other-left img{
	float: right;
    margin: 0 0 5px 10px;
    width: 45%;	
}

.other ul{
	display: block;
	margin: 1px 0px 15px;
}

.other ul li{
	text-align: left;
    padding: 5px 10px 5px 44px;
    font-size: 15px;
    line-height: 22px;
	color: #6f6f6f;
}

.other ul li:before{
	font-family: FontAwesome;
    content: "\f152";
    font-size: 15px;
    color: #0e7fc5;
    position: absolute;
    margin-left: -28px;
	margin-top: -1px;
}

.other ul li a{
	text-align: left;
    font-size: 15px;
    line-height: 22px;
	color: #bd6400;
}

.other ul li a:hover{
	color: #0e7fc5;
}

.other .table-responsive{
	width:100%;	
	margin:10px 0 20px;
}

.other .table-responsive tr:first-child{
	background:#2683bd;	
}
.other .table-responsive tr:first-child:hover{
	background:#f98a16;	
}
.other .table-responsive tr:first-child th{
	padding: 15px 10px;
    color: #FFF;
    text-transform: uppercase;
    font-size: 13px;
    word-spacing: 3px;
    letter-spacing: 1px;
    font-family: initial;
}
.other .table-responsive tr:first-child th:first-child, .other .table-responsive tr td:first-child{
	text-align:center;
}
.other .table-responsive td{
	padding: 10px;
}

.other .other-right{
	width:30%;
	float:left;	
}

.other .other-right:after{
	content:"";
	clear: both;	
}

.other .other-right h4{
	display: block;
    padding: 13px 15px;
    text-align: left;
    font-size: 14px;
    background: rgba(28, 120, 176, 0.09);
    color: #1d78b1;
	margin-bottom: 10px;
}

.other .other-right p{
	display: block;
    padding: 13px 8px 14px;
    text-align: left;
    font-size: 14px;
    color: #ff8600;
}

.other .other-right p a{
	font-size: 14px;
	text-decoration:none;
}

.other .other-right p a:hover{
	color: #ff8600;
}

.other .other-right img{
	width:100%;
	height:auto;
	margin:15px 0px;	
}



/*====================== Gallery ========================*/


.work{
	width: 100%;
    background: #900 url(../images/service.png) top no-repeat;
    background-size: 100%;
    padding: 20px 0px;
    position: relative;
	overflow:hidden;
}

.work h1{
	display: block;
    text-align: left;
    font-size: 32px;
    text-transform: uppercase;
    line-height: 50px;
    color: #FFF;
    font-weight: bold;
    margin-bottom: 30px;
	margin-left: 10px;	
}

.work .work-inner{
	margin: 10px;
}

.work .work-col{
	width: 33.33%;
    float: left;
	margin-bottom: 12px;
}

.work .work-col .img{
	display: block;
    position: relative;
	overflow:hidden;
	max-height: 208px;
}

.work .work-col .img img{
	width: 100%;
    height: auto;
	
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}

.work .work-col .bottom-box{
	position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.54);
	overflow:hidden;
}

.work .work-col .bottom-box p{
	display: block;
    vertical-align: middle;
    padding: 15px 50px 15px 10px;
    text-align: left;
    color: #FFF;
    margin: 0;
	font-size: 15px;
}

.work .work-col .bottom-box .readmore{
	position: absolute;
    width: 50px;
    height: 100%;
    right: 0;
    bottom: 0;
    vertical-align: middle;
	top:100%;
	
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}

.work .work-col:hover .bottom-box .readmore{
	top:0;	
}

.work .work-col .bottom-box .readmore a{
	width: 100%;
    height: 100%;
    display: block;
    vertical-align: middle;
    background: #911d1d;
}

.work .work-col .bottom-box .readmore a:hover{
	background:#FFF;	
}

.work .work-col .bottom-box .readmore a i{
	margin: 0;
    vertical-align: middle;
    font-size: 40px;
    color: #FFF;
    margin-top: 11%;
}

.work .work-col .bottom-box .readmore a:hover i{
	color:#911d1d;
}



.gallery{
	background:none;
}

.gallery .zoom{
	position:absolute;
	display:block;
	vertical-align:middle;
	text-align:center;
	width:100%;	
	height:101%;
	left:0;
	top:0;
	background:rgba(148, 147, 147, 0.62);
	visibility:hidden;
}

.gallery .work-col:hover .zoom{
	visibility:visible;
}

.gallery .zoom i{
	font-size: 40px;
    margin-top: 26%;
    color: #9e2020;
}

.gallery .work-col:hover .img img{	
	transform:scale(1.5,1.5);
}


/*================== Contact us ====================*/

.contact{
	width:100%;
	padding:30px 0;	
}

.contact .contact-col:nth-child(1){
	width:55%;
	float:left;
}

.contact .contact-col:nth-child(2){
	width:45%;
	float:left;
}

.contact .contact-col h1{
	text-align: left;
    font-size: 19px;
    line-height: 28px;
    color: #106ea9;
}

.feedback{
	padding: 43px 0px 20px;
}

.feedback .feedback-col{
	display: block;
    padding: 10px 0px;
}

.feedback .feedback-col .text-left{
	width: 48%;
    float: left;
}

.feedback .feedback-col .text-right{
	width: 48%; 
    float: right;
}

.feedback .feedback-col:after{
	content:"";
	display:block;
	clear:both;	
}

.feedback .feedback-col label{
	display: block;
    text-transform: uppercase;
    text-align: left;
    font-size: 13px;
    color: #4e4e4e;
}

.feedback .feedback-col .text{
	display: block;
    width: 100%;
    height: 36px;
    border-radius: 5px;
    border: 1px solid #ccc;
    color: #464646;
	background: #dcdcdc;
}

.feedback .feedback-col textarea{
	display: block;
    width: 100%;
    height: 100px;
    border-radius: 5px;
    border: 1px solid #ccc;
    color: #464646;
	background: #dcdcdc;
}

.feedback .feedback-col .button{
	font-family: 'bio';
    display: table;
	background: #f98b0e;
    color: #FFF;
    font-size: 17px;
    padding: 10px 42px 10px 15px;
    margin-top: 30px;
    text-decoration: none;
	border: 0px;
}

.feedback .feedback-col .button:hover{
    background: #2684bf;
}

.feedback .feedback-col .button i{
	font-size: 20px;
    position: absolute;
    margin-top: -22px;
    margin-left: 73px;
    border-radius: 50%;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

.feedback .feedback-col .button:hover i{
	-ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.contact .contact-col:nth-child(2) .contact-col-inner{
	margin-left:70px;	
}

.contact .contact-col h4{
	display: block;
    padding: 13px 15px;
    text-align: left;
    font-size: 14px;
    background: rgba(28, 120, 176, 0.09);
    color: #1d78b1;
}

.contact .contact-col p{
	display: block;
    padding: 13px 8px 14px;
    text-align: left;
    font-size: 14px;
    color: #ff8600;
}

.contact .contact-col p a{
	font-size: 14px;
	text-decoration:none;
}

.contact .contact-col p a:hover{
	color: #ff8600;
}

/*================== Footer ====================*/

.footer{
	width:100%;
	padding:40px 0px;
	background: rgba(117, 179, 59, 0.59);	
	position:relative;
}

.footer .footer-inner{
	margin: 10px;
}

.footer .footer-col{
	width: 33.33%;
    float: left;
}

.footer .footer-col .curve{
	width: 40%;
    min-width: 100px;
    border-radius: 50%;
}

.footer .footer-col .logo{
	width: 40%;
    max-width: 160px;
    min-width: 100px;
    margin: 10px 0px;
}

.footer .footer-col p{
	font-size: 13px;
    margin: 0;
}

.footer .footer-col h1{
	text-transform: uppercase;
    font-size: 22px;
    text-align: left;
    color: #327b02;
    line-height: 30px;
    border-left: 5px solid #327b02;
    padding: 7px 10px 7px 25px;
    position: relative;
	background: rgba(255, 255, 255, 0.52);
    margin-bottom: 20px;
}

.footer .footer-col h1:before{
	content: "";
    position: absolute;
    background: #0c78bc;
    width: 5px;
    height: 90%;
    left: 4px;
    top: 5%;	
}

.reach-us{
	display: block;
}

.reach-us li{
	text-align: left;
    padding: 5px 10px 5px 33px;
    font-size: 14px;
}

.reach-us li i{
	position: absolute;
    color: #05669c;
    margin: 0;
    margin-left: -29px;
    margin-top: 1px;
    font-size: 17px;
}

.reach-us li a{
	font-size: 14px;
	color: #1f80b0;
}

.reach-us li a:hover{
	color:#498400;
}

.news i{
	color:#fd391a !important;	
}

.social{
	display: block;
    margin-top: 22px;
}

.social li{
	    display: inline-block;
}

.social li i{
	margin: 0;
    padding: 13px 14px;
    border-radius: 50%;
	color: #FFF;
    font-size: 14px;
}

.social li:nth-child(1) i{
	padding: 13px 15px;
}

.social li:nth-child(2) i{
	padding: 13px 13px;
}

.social li a{
	text-decoration:none;
	display: block;
    border-radius: 50%;
    background: #05669c;
	position:relative;
	z-index:0;
}

.social li a:before{
	content:"";
	position:absolute;
	width:100%;
	height:0px;	
	z-index:-1;
	background:#316503;
	top:0;
	left:0;
	border-radius:50%;	
	
	transition:0.5s ease;
	-webkit-transition:0.5s ease;
	-moz-transition:0.5s ease;
	-o-transition:0.5s ease;
	-ms-transition:0.5s ease;
}

.social li a:hover:before{
	height:100%;
}

.counter-metter{
	position:absolute;
	bottom:5px;
	left:0;
	text-align:center;
	width: 100%;
    color: #e11963;
    font-size: 14px;
}

.counter-metter img{
	height: 19px;
    margin-top: -4px;
    border-radius: 3px;
}




@media (max-width: 979px){	

	.inner-slide{
		padding-top: 83px;
	}

	.menu i{
		display:block;
		visibility:visible;	
	}
	
	.menu{
		text-align:right;	
		margin-top:21px;
	}
	
	.menu > ul{
		display:none;
		position:absolute;
		width:90%;
		right:5%;
		margin-top: 13px;
		background:rgba(56, 56, 56, 0.81);
		z-index:999;
	}
	
	.menu ul li{
		display: block;
		border-right-width: 0;
		height: auto;
		border-bottom: 1px solid #424242;
	}
	
	.menu ul li a{
		display: block;
		margin: 0;
		border-radius: 0px;
		padding: 15px 20px;
		text-align: left;
		color: #ff9300;
	}
	
	.welcome{
		background:#fff;	
	}
	
	.welcome .welcome-col{
		float:none;
		width:100%;	
	}
	
	.yoga .yoga-col{
		float:none;
		width:100%;
		margin-bottom:20px;	
	}
	
	.yoga-time .yoga-time-col{
		float:none;
		width:100%;
	}
	
	.work .work-col{
		display:block;
		width:100%;	
	}
	
	.contact .contact-col:nth-child(1){
		width:100%;
		float:none;
		display:block;
		margin-bottom:30px;	
	}
	
	.contact .contact-col:nth-child(2){
		width:100%;
		float:none;
		display:block;
		margin-bottom:30px;	
	}
	
	.contact .contact-col:nth-child(2) .contact-col-inner{
		margin-left:0;	
	}
	
	.other .other-left{
		width:100%;
		float:none;
		display:block;
		margin-bottom:30px;
	}
	
	.other .other-right{
		width:100%;
		float:none;
		display:block;
	}
	
	.other .other-inner{
		margin:0;	
	}
	
	.other img{
		width:100%;
		margin:20px 0;	
	}
	
	.footer .footer-col{
		float:none;
		width:100%;
		margin-bottom:30px;
	}

}



