 
     /* ============ desktop view ============ */
        @media all and (min-width: 992px) {
            .navbar .nav-item .dropdown-menu {
                display: none;
            }

            .navbar .nav-item:hover .nav-link {
            }

            .navbar .nav-item:hover .dropdown-menu {
                display: block;
            }

            .navbar .nav-item .dropdown-menu {
                margin-top: 0;
            }
        }
        /* ============ desktop view .end// ============ */
         .float_wp {
                position: fixed;
                width: 60px;
                height: 60px;
                bottom: 30px;
                left: 30px;
                background-color: #25d366;
                color: #FFF;
                border-radius: 50px;
                text-align: center;
                font-size: 30px;
                box-shadow: 2px 2px 3px #999;
                z-index: 100;
            }

            .my-float_wp {
                margin-top: 16px;
            }
                #goog-gt-tt {
            display: none !important;
        }

        .goog-te-banner-frame {
            display: none !important;
        }

        .goog-te-menu-value:hover {
            text-decoration: none !important;
        }

        body {
            top: 0 !important;
        }

        #google_translate_element2 {
            display: none !important;
        }

  /*----------------------------------------------------------------

  // Table of contents //

    - IMPORT
    - BODY
    - TYPOGRAPHY
    - LINKS
    - LISTS
    - IMAGES
    - BUTTONS
    - GENERAL
    - PAGE LOADER
    - NAVIGATION
    - HOME
    - CLASSES
    - CTA
    - ABOUT
    - BLOCKQUOTE
    - SCHEDULE
    - TRAINERS
    - TESTIMONIALS
    - APPOINTMENT
    - FOOTER
    - RESPONSIVE STYLES

  ------------------------------------------------------------------*/

  /*---------------------------------------
     IMPORT              
  -----------------------------------------*/
  
  @import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700,800');
  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,700&amp;display=swap');  


  /*---------------------------------------
     BODY              
  -----------------------------------------*/
  
  body {
    background: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #494949;
    overflow-x: hidden;
  }


  /*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

  h1, h2, h3, h4, h5, h6 {
	color: #2f3241;  
	margin: 0 0 15px;
  }

  h1 {
	font-size: 60px;
    font-weight: 800;	
	line-height: 64px;	
  }

  h2 {
    font-size: 38px;
    font-weight: 800;	
    line-height: 48px;
  }

  h3 {
    font-size: 30px;
    font-weight: 800;	
    line-height: 40px;	
  }
  
  h4 {
    font-size: 24px;
    font-weight: 700;	
    line-height: 28px;	
  }

  h5 {
    font-size: 16px;
    font-weight: 700;	
    line-height: 20px;		  
  }

  h6 {
    font-size: 12px;
    font-weight: 700;	
    line-height: 16px;
  }   

  p {
    color: #494949;
    font-size: 14px;
	font-weight: 400;
    line-height: 24px;
    margin: 0 0 15px;
  }


  /*---------------------------------------
     LINKS               
  -----------------------------------------*/

  a, a:visited { color: #2f3241; text-decoration: none; outline: 0; transition: 0.5s; }
  a:hover, a:active, a:focus { color: #41ab6b !important; text-decoration: none; }


  /*---------------------------------------
     LISTS              
  -----------------------------------------*/  

  ul { list-style: none; padding: 0; }
  ul li { margin: 0; }
  

  /*---------------------------------------
     IMAGES               
  -----------------------------------------*/

  img {
	max-width: 100%;
    height: auto;	
  }
  

  /*---------------------------------------
     BUTTONS              
  -----------------------------------------*/
  
  .btn {
    display: inline-block;
    padding: 11px 30px;
    margin-bottom: 0;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 20px;
	text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 2px solid transparent;
    border-radius: 30px;
  }

  .btn-colored {
    color:#fff !important;
    background-color:#41ab6b !important;
    border-color:#41ab6b !important;
  }
  
  .btn-colored.focus, .btn-colored:focus, .btn-colored:hover {
    color:#fff !important;
    background-color:#3a9960 !important;
    border-color:#3a9960 !important;
  }
  
  .btn-white {
    color: #41ab6b;
    text-transform: uppercase;
    background-color: #fff;
    opacity: 1 !important;
  }

  .btn-white.focus, .btn-white:focus, .btn-white:hover  {
    color: #fff !important;
    background-color: transparent;	
    border: 2px solid #fff;	
  }   

  
  /*---------------------------------------
     GENERAL               
  -----------------------------------------*/

  section {
    padding: 100px 0;
  }  

  .section-title {
    margin: 0 0 50px;
  }
  
  .section-title h6 {
    color: #41ab6b;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 5px;
  }
  
  .no-pad {
    padding-left: 0;
    padding-right: 0;  
  }
  
  .text-left {
	text-align: left;  
  }
  
  .text-right {
	text-align: right;  
  }

  .text-center {
	text-align: center;  
  }  
  
  .left {
	display: block; 	  
	float: left;  
  }
  
  .right {
	display: block; 	  
	float: right;  
  }
  
  .center {
	display: block;  
	margin-left: auto;
    margin-right: auto;	
  }
  
  .uppercase {
	text-transform: uppercase;  
  }
  
  .white {
	color: #fff;  	  
  } 
  
  .bg-grey {
	background-color: #f3f3f3;  
  }


  /*---------------------------------------
     PAGE LOADER              
  -----------------------------------------*/  

  .flbackdrop {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: white;
    z-index: 99999;
  }


  /*---------------------------------------
     NAVIGATION              
  -----------------------------------------*/  

  .navbar-custom {
    background: transparent;
    font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    border: none;
  }
  
  .navbar-custom a:focus {
    outline: none;
  }
  
  .navbar-custom .navbar-brand {
    color: #fff;	
    font-weight: 800;
    text-transform: none;
  }
  
  .navbar-custom .navbar-brand:hover, 
  .navbar-custom .navbar-brand:focus, 
  .navbar-custom .navbar-brand:active, 
  .navbar-custom .navbar-brand.active {
    color: #fff;
  }
  
  .navbar-custom .navbar-brand span {
    color: #41ab6b;
    margin-left: 2px;
  }

  .navbar-custom .navbar-nav.navbar-first {
    margin-left: 110px;
  }

  .navbar-custom .navbar-nav.navbar-first li a {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    padding: 8px 13px;
	margin: 8px 4px 8px 0;
    text-transform: uppercase;
    -webkit-transition: 0.5s;
    transition: 0.5s;
	background-color: transparent;	
	border-radius: 30px;	
  }
  
  .navbar-custom .navbar-nav.navbar-first li:last-child a {
	margin: 8px 0;
  }  

  .navbar-custom .navbar-nav.navbar-first li a:hover {
    color: #fff !important;
    outline: none;	
	background-color: #41ab6b;
	border-radius: 30px;	
  }
  
  .navbar-custom .navbar-nav.navbar-first li a:focus, 
  .navbar-custom .navbar-nav.navbar-first li a:active {
    color: #fff !important;
	background-color: #41ab6b;
	border-radius: 30px;	
  }
  
  .navbar-custom .navbar-nav.navbar-first li.active a {
    color: #fff !important;
	background-color: #41ab6b;
	border-radius: 30px;	
  }

  .navbar-custom .navbar-nav.navbar-first li.active a:hover, 
  .navbar-custom .navbar-nav.navbar-first li.active a:focus, 
  .navbar-custom .navbar-nav.navbar-first li.active a:active {
    color: #fff !important;
	background-color: #41ab6b;
	border-radius: 30px;	
  }

  .navbar-custom .navbar-nav.navbar-right {
    margin-right: 0;
  }  

  .navbar-custom .navbar-nav.navbar-right li a {
	color: #fff !important;  
	font-size: 18px;
    font-weight: 400;	
	width: 38px;
    height: 38px;
    line-height: 8px;
    border-radius: 50%;	
	text-align: center;
    padding-left: 0;
    padding-right: 0;
	margin: 6px 0 6px 3px;
    transition: all 0.4s ease-in-out;
  }
  
  .navbar-custom .navbar-nav.navbar-right li a.fa-facebook:hover {
    background-color: #3b5998;
    color: #fff;
  }
  
  .navbar-custom .navbar-nav.navbar-right li a.fa-twitter:hover {
    background-color: #00a9ed;
    color: #fff;
  }  
  
  .navbar-custom .navbar-nav.navbar-right li a.fa-linkedin:hover {
    background-color: #006394;
    color: #fff;
  }

  .navbar-custom .navbar-nav.navbar-right li a.fa-behance:hover {
    background-color: #1969ff;
    color: #fff !important;
  }    

  .navbar-custom .navbar-toggle {
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    border-color: transparent;
  }
  
  .navbar-custom .navbar-toggle:hover, 
  .navbar-custom .navbar-toggle:focus {
    background-color: transparent;
    color: #fff;
  }
  
  .navbar-custom .navbar-toggle .icon-bar {
    background-color: #fff;
  }
  
  @media (min-width: 768px) {
    .navbar-custom {
      padding: 25px 0;
      -webkit-transition: padding 0.3s;
      -moz-transition: padding 0.3s;
      transition: padding 0.3s;
    }
  
    .navbar-custom .navbar-brand {
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      transition: all 0.3s;
    }
  
    .navbar-custom.affix {
      background: #2C3E50;	  
      padding: 10px 0;
    }
  }  
  

  /*---------------------------------------
     HOME              
  -----------------------------------------*/

  .hero {
    background-image: url(../images/hero-bg.jpg);
    background-repeat: no-repeat;	
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    position: relative;
  }
  
  .hero:before {
    content: "";
    position: absolute;
    left: 0; right: 0;
    top: 0; bottom: 0;	 	
    background-color: rgba(0,0,0,0.4);
  }
  
  .caption {
    padding: 110px 0 80px;      	  
  }
  
  h1.intro {
	margin-bottom: 20px;    	  
  }

  p.desc {
    font-size: 18px;
	line-height: 26px;
	margin-bottom: 28px;
  }

  p.more .btn, a.icon {
    margin-right: 4px;    	  
  }

  a.watch {
	color: #fff;  
	font-size: 11px;
	font-weight: 600;
	line-height: 20px;
    letter-spacing: 0.5px;	
  }
  

  /*---------------------------------------
     CLASSES              
  -----------------------------------------*/

  #classes {
	padding: 0;  
    margin-top: -90px;
  }
  
  .class {
    position: relative;
    width: 100%;
    height: 279px;		
    padding: 180px 0 0 27px;	
  }  
  
  .class:before {
    content: "";
    position: absolute;
    left: 0; right: 0;
    top: 0; bottom: 0;	  
    background-color: rgba(0,0,0,0.25);
    transition: 0.3s;		
  }
  
  .class:hover::before {
	cursor: pointer;  
    background-color: rgba(0,0,0,0);
  }
  
  .class h4 {
    position: relative;		  
	color: #fff;  
    font-size: 35px;
	font-weight: 800;
	line-height: 35px;
	margin: 0 0 18px;
	z-index: 1;	
  }  

  .first {
    background-image: url(../images/crossfit.jpg);
	background-repeat: no-repeat;
	background-size: cover;
  }    
  
  .second {
    background-image: url(../images/aerobics.jpg);
	background-repeat: no-repeat;
	background-size: cover;
  }

  .third {
    background-image: url(../images/yoga.jpg);
	background-repeat: no-repeat;
	background-size: cover;
  }  


 /*---------------------------------------
     CTA              
  -----------------------------------------*/ 

  #cta {
    padding: 0;
	background-color: #fff;
  }  

  #cta .inner {
    padding: 65px 30px;	  
  }
  
  #cta .inner h4 {
    font-size: 20px;
	font-weight: 700;
	line-height: 26px;
	margin: 0;
  }
  
  #cta .inner p {
	color: #aaa;  
    font-size: 12px;
	line-height: 18px;	
	margin: 0;	
  }  
  
  
  /*---------------------------------------
     ABOUT              
  -----------------------------------------*/

  .about-text {
    padding: 10px 5% 0 0; 	  
  }

  .about-text .section-title {
	margin: 0 0 22px;    	  
  }

  .about-text h3 {
    padding: 0 5% 0 0;
  }    

  .about-text h3 span {
    color: #41ab6b;
  }  
  
  .about-text p {
	margin: 0 0 28px; 	  
  } 

  .about-text ul {
    list-style: none; 
    padding: 0;
	margin: 0; 	
  }

  .about-text ul li {
	line-height: 18px;  
	margin: 0 0 13px; 	
  }
  
  .about-text ul li:before {
	color: #41ab6b;
    font-family:'FontAwesome';	  
    content:"\f00c";
	margin-right: 10px;
  } 

  .about-img {
    position: relative;
	width: 100%;
	height: 326px;
	background-image: url(../images/about.jpg);
	background-repeat: no-repeat;
	background-size: cover;
  }

  a.play-video {
    position: absolute;
    width: 100px;
    height: 100px;	
    top: 0; bottom: 0;
    left: 0; right: 0;
    margin: auto;
  }


  /*---------------------------------------
     BLOCKQUOTE              
  -----------------------------------------*/  

  #blockquote {
    background-image: url(../images/yoga-bg.jpg);
    background-repeat: no-repeat;
	background-size: cover;
    background-attachment: fixed;
    width: 100%;
	padding: 90px 0 !important;
    position: relative;
  }
  
  #blockquote::before {
    content: "";
    position: absolute;
    left: 0; right: 0;
    top: 0; bottom: 0;	 	
    background-color: rgba(0,0,0,0.2);
  }  
  
  .blockquote {
    border-left: 0;	  
	padding: 10px 0;  
    margin: 0;
  }  
  
  .blockquote p {
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 700;	  
	font-size: 22px;
	line-height: 32px;
  }
  
  .blockquote-footer {
    background-color: transparent;	  
  }


  /*---------------------------------------
     SCHEDULE              
  -----------------------------------------*/

  .tab {
    width: 100%;
	float: left;
    position: relative;
    min-height: 1px;	
  }
  
  ul.nav-tabs {
	display: table;  
    border: none;
    border-bottom: 0 !important;
	margin: 0 auto 50px;
  }
  
  ul.nav-tabs li a{
    padding: 11px 88px;
    margin: 0 0 -1px 0;
    font-size: 11px;
    font-weight: 700;
	letter-spacing: 1px;
    color: #293241;
	text-align: center;
	background-color: #f4f4f4;
    text-transform: uppercase;
    border: 1px solid #d6d6d6 !important;
    border-bottom: 1px solid #d6d6d6 !important;
    border-radius: 0;
    z-index: 1;
    position: relative;
    transition: all 0.3s ease 0s;
  }
  
  ul.nav-tabs li:first-child a {
    border-radius: 30px 0 0 30px;  
  }
  
  ul.nav-tabs li:last-child a {
    border-radius: 0 30px 30px 0;      
  }
  
  ul.nav-tabs li a:hover,
  ul.nav-tabs li.active a{
    background: #41ab6b !important;
    color: #fff !important;
    border: 1px solid #41ab6b !important;
    border-bottom: 1px solid #41ab6b !important;
  }

  @media only screen and (max-width: 479px){
    ul.nav-tabs { 
	    border: none; 
    }
	
    ul.nav-tabs li {
        width: 100%;
        text-align: center;
        margin-bottom: 0;
    }
	
    ul.nav-tabs li a {
        margin: 0;
        border-bottom: 1px solid #d6d6d6 !important;
    }
	
    ul.nav-tabs li:first-child a {
      border-radius: 4px 4px 0 0;  
    }
  
    ul.nav-tabs li:last-child a {
      border-radius: 0 0 4px 4px;      
    }	
  }

  ul.schedule li {
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  ul.schedule li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .schedule-desc {
    margin: 55px 80px 0 0;
  }

  .schedule-desc h5 {
    font-size: 16px; 
    margin-bottom: 5px;
  }

  .schedule-desc p {
    font-weight: 600; 
    line-height: 20px; 
    margin-bottom: 5px;
  }

  p.time {
    line-height: 160px; 
    margin: 0 0 0 80px;  
  }


 /*---------------------------------------
     TRAINERS              
  -----------------------------------------*/ 
  
  #trainers {
    padding: 100px 0;	
  }

  .member ul.social {
    position: absolute;	
    list-style: none;
    padding: 0;
    top: 28px;
    right: 15px;  
  }

  .member ul.social li {
    display: inline-block;
    position: relative;  
  }

  .member ul.social li a {
    font-size: 16px;
    color: #fff !important;
    background: none;
    margin: 0;
    padding: 0 7px;
  }
  
 /* Caption Style 3 */
  .grid.cs-style-3 figure {
	margin: 0;
	position: relative;	  
	overflow: hidden;
  }

  .grid.cs-style-3 figure img {
	max-width: 100%;
	display: block;
	position: relative;	  
	-webkit-transition: -webkit-transform 0.4s;
	-moz-transition: -moz-transform 0.4s;
	transition: transform 0.4s;
  }

  .grid.cs-style-3 figure:hover img, .grid.cs-style-3 figure.cs-hover img {
	-webkit-transform: translateY(-50px);
	-moz-transform: translateY(-50px);
	-ms-transform: translateY(-50px);
	transform: translateY(-50px);
  }

  .grid.cs-style-3 figcaption {
	height: 80px;
	width: 100%;
	top: auto;
	bottom: 0;
	opacity: 0;
	-webkit-transform: translateY(100%);
	-moz-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-transition: -webkit-transform 0.4s, opacity 0.1s 0.3s;
	-moz-transition: -moz-transform 0.4s, opacity 0.1s 0.3s;
	transition: transform 0.4s, opacity 0.1s 0.3s;
  }

  .grid.cs-style-3 figure:hover figcaption, .grid.cs-style-3 figure.cs-hover figcaption {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
	-webkit-transition: -webkit-transform 0.4s, opacity 0.1s;
	-moz-transition: -moz-transform 0.4s, opacity 0.1s;
	transition: transform 0.4s, opacity 0.1s;
  }  

  .grid figcaption {
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px;
	background: #2c3f52;
	color: #41ab6b;
  }
  
  .grid figcaption i.fa-caret-up {
    position: absolute; 
    top: -18px; 
    left: 60px; 
    font-size: 28px; 
    color: #2c3f52;
  }   

  .grid figcaption h3 {
	float: left;
    font-size: 16px;
	font-weight: 700;
    line-height: 22px;	
	margin: 0;
	padding: 0;
	color: #fff;
  }

  .grid figcaption span {
	float: left;
	clear: left;
	display: block;
  }

  
 /*---------------------------------------
     TESTIMONIALS              
  -----------------------------------------*/
  
  #testimonials {
    padding: 80px 0 100px;
    background-image: url(../images/t-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  
  .col-center {
    margin: 0 auto;
    float: none !important;
  }
  
  .carousel {
    margin: 0 auto;
    padding: 0 70px;
  }
  
  .carousel .item {
    color: #999;
    font-size: 14px;
    text-align: center;
    overflow: hidden;
    min-height: 270px;
  }

  .carousel .item .img-box {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
  }

  .carousel .img-box img {
    width: 90px;
    height: 90px;
    display: block;
    border-radius: 50%;
  }
  
  p.overview {
    color: #fff;	 
    font-weight: 700;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 25px 0 -57px;
    position: relative;
    z-index: 1;
  }
  
  p.overview span {
    color: #fff;
    font-family: 'Merriweather';
    font-style: normal;
    font-weight: 400;	
    font-size: 12px;
    text-transform: none;	
  }  
  
  i.fa.fa-quote-left {
    color: rgba(205, 205, 205, 0.5);
    font-size: 70px;
  }
  
  p.testimonial {
    color: #fff;
    font-family: 'Merriweather';
    font-style: normal;
    font-weight: 400;	
    font-size: 18px;
    line-height: 24px;
    padding: 5px 11% 10px;
    margin: 0;
  }  
  
  .carousel a.carousel-control {
    color: #110729 !important;	  
    width: 30px;
    height: 30px;
    margin-top: -20px;
    top: 50%;
    background: none;
    text-shadow: none;
    opacity: 1 !important;	
  }
  
  a.carousel-control i {
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
    position: absolute;
    display: inline-block;
    color: #fff !important;
  }
  
  .carousel .carousel-indicators {
    bottom: -40px;
  }
  
  .carousel-indicators li, .carousel-indicators li.active {
    width: 10px;
    height: 10px;
    margin: 1px 3px;
    border-radius: 50%;
  }
  
  .carousel-indicators li {	
    background: #dadada;
    border-color: transparent;
  }
  
  .carousel-indicators li.active {	
    background: #fff;		
  }



  
  
  /*---------------------------------------
     NEWS              
  -----------------------------------------*/

  #news {
	padding: 90px 0 70px;  
  }
  
  #news .section-title {
    margin: 0 0 65px;
  }  

  .news-item {
    background-color: #fff;
    border-radius: 4px; 
    margin-bottom: 30px;	  
  }
  
  a.news-img img {
	width: 100%;  
    border-radius: 4px 4px 0 0;	
  }
  
  .news-content {
    padding: 40px 40px 30px;
    text-align: left;  
  }

  .news-info {
    position: relative;
    width: 100%;
    font-size: 13px;
    line-height: 1.2;
    float: left;
    padding: 0 20px 4px 0;	
  }
  
  .news-date {
    color: #959595;
    display: block;
  }

  .news-category {
    position: absolute;
    -webkit-transform: translateY(-75px);
    -moz-transform: translateY(-75px);
    transform: translateY(-75px);
    right: -15px;
    border-radius: 30px;
    background-color: #2f3241;
    padding: 12px 30px; 
  }
  
  .news-category a {
    color: #fff;
    font-size: 12px;
    font-weight: 800; 	
  }
  
  h4.entry-title {
    font-family: 'Montserrat', sans-serif;		  
	font-size: 17px;
    line-height: 22px;	
	font-weight: 700;  
    margin: 25px 0 10px;	
  }
  
  h4.entry-title a {
    color: #2f3241 !important; 
  }
  
  h4.entry-title a:hover {
    color: #fec901 !important; 
  }
  
  .excerpt p {
    line-height: 20px;    	  
  }



  
/*------------ Portfolio area ends ---------*/

/*--- Pricing Starts  ---*/


#price {
	text-align: center;
}
.planpricing {
	margin: 15px 0;
	box-shadow: 0 2px 20px 2px rgba(0, 0, 0, 0.5);
}
.planpricing-inner {
	background: #fff;
	position: relative;
}
.entry-titlepricing  {
	background: #41ab6b;
	height: 140px;
	position: relative;
	text-align: center;
	color: #fff;
	margin-bottom: 30px;
}
.entry-titlepricing >h3 {
	background: #41ab6b;
	font-size: 20px;
	padding: 5px 0;
	text-transform: uppercase;
	font-weight: 700;
	margin: 0;
	line-height: 70px;
    color:#FFF;
}
.entry-titlepricing  .price {
	position: absolute;
	bottom: -25px;
	background: #2C3E50;
	height: 100px;
	width: 100px;
	margin: 0 auto;
	left: 0;
	right: 0;
	overflow: hidden;
	border-radius: 50px;
	border: 5px solid #fff;
	line-height: 80px;
	font-size: 23px;
	font-weight: 700;
}
.price span {
	position: absolute;
	font-size: 9px;
	bottom: -10px;
	left: 30px;
	font-weight: 400;
}
.planpricing.diff h3 {
	background: #41ab6b;
}
.planpricing.diff .entry-titlepricing  {
	background: #41ab6b;
}
.planpricing.diff .price {
	background: #111111;
}
.entry-contentpricing  {
	color: #323232;
}
.entry-contentpricing  ul {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
}
.entry-contentpricing  li {
	border-bottom: 1px solid #B8B8B8;
	padding: 15px 0;
	font-size: 18px;
}
.entry-contentpricing  li:last-child {
	border: none;
}
.lnpricing  {
	text-decoration: line-through;
	text-decoration-thickness: 1.5px;
}
.btnpricing  {
	padding: 3em 0;
	text-align: center;
}
.btnpricing  a {
	background: #323232;
	padding: 10px 30px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	text-decoration: none
}
.planpricing.diff .btn a {
	background: #ff5f15;
}

/*--- Pricing End  ---*/ 



 /*---------------------------------------
     APPOINTMENT             
  -----------------------------------------*/
  
  #appointment {
    background-image: url(../images/appointment-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;	
  }
  
  #appointment:before {
    content: "";
    position: absolute;
    left: 0; right: 0;
    top: 0; bottom: 0;	 	
    background-color: rgba(0,0,0,0.3);
  }  

  .appointment-inner {
    background-image: url(../images/contact-bg.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    position: relative;	
	border-radius: 4px;
  }
  
  .contact-info img {
    display: none;
  }  
  
  .form {
    background-color: #41ab6b; 
    padding: 70px 25px;
    border-radius: 0 4px 4px 0;		
  }
  
  .form .section-title h6 {
	color: #fff;  
    font-size: 14px;
	line-height: 14px;
  }  

  .form .section-title h4 {	
    font-size: 24px;
    line-height: 24px;
  } 

  .form-group {
    margin-bottom: 11px;
  }

  .form-control {
   display:block;
   width:100%;
   height: 45px;
   padding: 0 20px;
   font-size:12px;
   color:#fff;
   background-color:#68c28c;
   background-image:none;
   border:1px solid #7fd7a2;
   border-radius:30px;
   -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);
   box-shadow:inset 0 1px 1px rgba(0,0,0,.075);
   -webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
   -o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;
   transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s
  }

  .form-control:focus {
   border-color:#66afe9;
   outline:0;
   -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
   box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)
  }

  .form-control::-moz-placeholder {
   color:#fff;
  }

  .form-control:-ms-input-placeholder {
   color:#fff;
  }

  .form-control::-webkit-input-placeholder {
   color:#fff;
  }
  
  .help-block.with-errors {
    color: #ff5050;
    margin-top: 5px;
  }  

  select#form_class, select#form_trainer {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(../images/arrow-down.png);  
    background-repeat: no-repeat;
    background-position-x: 94%;
    background-position-y: 18px;  
    margin-right: 2rem;
  }
  
  textarea.form-control {
    height: 69px;
    resize: none;	
    padding: 10px 0 0 25px; 	  
    margin-bottom: 14px;	
  }

  #contact-form .btn {
    cursor: pointer;	  
  }  
  
  
  /*---------------------------------------
     FOOTER              
  -----------------------------------------*/

  footer {
	background-color: #2f3241;
	color: #fff;
  }
  
  .footer-top {
    padding: 90px 0 30px;
  }
  
  .widget h3 {
    font-weight: 600; 
	margin-top: 34px;	  
  }  
  
  p.phone {
    margin-bottom: 25px;	  
  }   
  
  p.phone img {
    margin-right: 5px;	  
  }  
  
  p.phone a {
	color: #b7b7b7;
	font-size: 18px;
	font-weight: 700;
    line-height: 32px;	
	letter-spacing: 0.5px;
  }  
  
  .widget h5 {
	margin-top: 34px;
  }  
  
  ul.contact-info {
    list-style: none;
    margin: 0 ;
    padding: 0;	
  }

  ul.contact-info li {
	font-size: 12px;
    margin-bottom: 10px;	
  }
  
  ul.contact-info li i {
	float: left;  
	color: #41ab6b;  
    font-size: 22px;
	margin: 0 14px 0 0;
  }

  ul.contact-info li p {
    color: #fff;
	font-size: 12px;
    line-height: 12px;
    margin: 0 0 5px;	
  }  
  
  ul.contact-info li span {
    color: #b7b7b7;
	font-size: 12px;	
    line-height: 12px;
    margin: 0;	
  }

  ul.contact-info li a {
    color: #fff;
	font-size: 12px;
    line-height: 25px;
    margin: 0;	
  }
  
  ul.contact-info li a:hover {
    color: #41ab6b;
  }
  
  ul.footer-socials {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;	
  } 

  ul.footer-socials li {
    display: inline-block;
    margin-right: 23px;	
  }

  ul.footer-socials li a {
    color: #fff;
	font-size: 18px;
  }
  
  ul.footer-socials li a:hover {
    color: #41ab6b;  
  }  

  .icon-holder {
	width: 68px;
    height: 68px;
	line-height: 68px;
	display: block;  
    margin-left: auto;
    margin-right: auto;
	text-align: center;
    background-color: #2a2d3b;
    border-radius: 50%;	
  }
  
  .footer-schedule {
    margin: -34px 0 40px;	  
    padding: 35px 26px 20px;	  
    background-color: #2a2d3b;
	border-radius: 5px;
  }
  
  .footer-schedule h5 {
	margin-top: 0;
  }  

  .footer-bottom {
	padding: 35px 0;
    border-top: 1px solid #4a4c59;	
  }
  
   
  p.design {
    float: right;	  
  }  

  p.copyright, p.design {
	color: #fff;  
	font-size: 12px;  
    line-height: 22px;
	margin: 0;	
  }

  p.copyright a, .design a {
	color: #b7b7b7;
    font-weight: 600;	
  }  


  /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

  @media only screen and (max-width: 1200px) {
	  
    /* navbar */   
    .navbar-custom .navbar-nav.navbar-first {
      margin-left: inherit;
    }
	
    /* schedule */ 	
    ul.nav-tabs li a {
      padding: 11px 69px;
    }

    .schedule-desc {
      margin: 55px 20px 0 0;
    }

    p.time {
      margin-left: 25px;
    }	
	
  }

  @media only screen and (max-width: 992px) {
	  
    /* home */
    .caption {
      padding: 100px 0 0;     	  
    }
  
    h1.intro {
      font-size: 50px;
	  line-height: 55px;
	  padding: 0 10%;
    }
	
	p.desc {
      font-size: 18px;
	  line-height: 22px;
	  margin-bottom: 25px;
	}
	
	p.more .btn {
	  font-size: 11px;
	  line-height: 20px;
	  padding: 10px 26px;
	  margin-right: 2px;
	}
	
	a.icon {
	  margin-right: 2px;		
	}	
	
	a.icon img {
      width: 55px;		
	}
	
	a.watch {
	  font-size: 11px;
	  line-height: 20px;	
	}
	
    /* classes */
	#classes {
      margin-top: -50px;		
	}
	
    /* cta */	
	#cta .inner p {
      margin: 0 0 25px;		
	}
	
	#cta .inner .btn {
      float: none;		
	}

    /* about */
    .about-text {
      padding: 0 4% 10px 0; 		
      margin-bottom: 20px;		
	}

    /* schedule */
    ul.nav-tabs li a {
      padding: 11px 35px;	  
    }
	
    ul.schedule li {
      padding-bottom: 20px;
      margin-bottom: 20px;
    }	
	
    .schedule-desc, ul.schedule li img, p.time {
      float: none;		
	}
	
    ul.schedule li img {
      margin: 0 auto 20px;		
	}
	
    .schedule-desc {
	  text-align: center;			
	  margin: 15px 0 30px 0;	
	}    
	
    p.time {
	  text-align: center;
	  line-height: 20px;
	  margin-left: 0	
	}

    /* trainers */	
	.grid.cs-style-3 figure img {
	  width: 100%;	
	}

    /* appointment */
    .appointment-inner {
      background-image: none;
    }
	
    .contact-info img {
      display: block;
	  width: 100%;
      border-radius: 4px 4px 0 0;	  
    }
	
    .form {
      border-radius: 0 0 4px 4px;		
	}

    /* footer */
	.widget {
      margin-bottom: 30px;		
	}
	
	.footer-schedule {
      margin-bottom: 0;	      		
	}	
	
	p.copyright, p.design {
      float: none;
      text-align: center;	  
	}	

  }

  @media only screen and (max-width: 767px) {
	  
    /* general */ 	  
    section {
      padding: 70px 0;		
	}

    /* navbar */ 
    .navbar-custom {
      background-color: #2C3E50;
      padding: 10px 0;
      text-align: center;
    }

    .navbar-custom .navbar-nav.navbar-first li a {
      line-height: normal;
    }
	
    .navbar-custom .navbar-nav.navbar-first li a:hover, 
    .navbar-custom .navbar-nav.navbar-first li a:focus, 
    .navbar-custom .navbar-nav.navbar-first li a:active, 
    .navbar-custom .navbar-nav.navbar-first li.active a, 
    .navbar-custom .navbar-nav.navbar-first li.active a:hover, 
    .navbar-custom .navbar-nav.navbar-first li.active a:focus, 
    .navbar-custom .navbar-nav.navbar-first li.active a:active {
      color: #41ab6b !important;		
      background-color: transparent;
    }  
  
    .navbar-custom .navbar-nav.navbar-right {
      margin-right: -15px;
    }	

    .navbar-custom .navbar-nav.navbar-right li {
      display: inline-block;
    }
	
    .navbar-custom .navbar-nav.navbar-right li a {
	  font-size: 18px;
      font-weight: 400;	
	  width: 38px;
      height: 38px;
      line-height: 38px;
      border-radius: 50%;	
	  text-align: center;
      padding: 0;
	  margin: 6px 0 6px 3px;
    }	

    .navbar-custom .navbar-nav.navbar-right li a:hover {
	  color: #fff !important;  
    }	  
	  
    /* home */
    .caption {
      padding: 100px 0 0;    	  
    }
  
    h1.intro {
      font-size: 38px;
	  line-height: 42px;
	  padding: 0 8%;	  
    }
	
	p.desc {
      font-size: 16px;
	  line-height: 20px;
	  margin-bottom: 20px;
	}
	
	p.more .btn {
	  padding: 8px 20px;
	  font-size: 10px;
	  line-height: 18px;
	}
	
	a.icon img {
      width: 48px;		
	}
	
	a.watch {
	  font-size: 10px;
	  line-height: 18px;	
	}
	
    /* classes */
	#classes .no-pad {
      padding-left: 15px;
	  padding-right: 15px;
	}
	
    /* cta */	
	#cta .inner p {
      margin: 0 0 25px;		
	}
	
	#cta .inner .btn {
      float: none;		
	}

    /* schedule */
    ul.schedule li {
      padding-bottom: 20px;
      margin-bottom: 20px;
    }	
	
    .schedule-desc, ul.schedule li img, p.time {
      float: none;		
	}
	
    ul.schedule li img {
      margin: 0 auto 30px;		
	}
	
    .schedule-desc {
	  text-align: center;			
	  margin: 15px 0 30px 0;	
	}    
	
    p.time {
	  text-align: center;
	  line-height: 20px;
	  margin-left: 0	
	}

    /* testimonials */
    p.testimonial {
      font-size: 16px;
      line-height: 24px;
      padding: 26px 0 0;	  
    }

    /* appointment */
    .appointment-inner {
      background-image: none;
    }
	
    .contact-info img {
      display: block;
	  width: 100%;
      border-radius: 4px 4px 0 0;	  
    } 	

  }