/*------------------------------------------------------------------
[Table of contents]

1. CSS Reset
2. Global variables
3. Header (inner page) and (logo/ navigation bar and menu) / header, nav.navbar
4. Full-width zoom slider block / section.slider-full
5. Icons block / .icons-best
6. Training block with tabs / .trainings
7. Full-width white block with header/text/photo / .block-white
8. 4-columns plans block with parallax effect / .plans
9. Coaches block width photos and descriptions / .coaches
10. Full-width black block with header/text/photo / .block-dark
11. Calculator block / .calculator
12. 3-columns cards block / .cards
13. Clients block with horizontal slider and inner page / .clents
14. 4-columns Skills block with parallax effect / .skills
15. Blog posts and blog inner page / .blog, .blog-post
16. Subscribe section / .subscribe
17. Bottom block with address/menu/form/mini-gallery goes before footer / .block-bottom
18. Footer and copyrights / footer
19. 404 page and coming soon page / .page-404, .page-coming
20. About inner page / .about-inner
21. Pagination / .pages
22. Inner page right column / .block-col
23. Contacts inner page width full-width map / .contact
24. Gallery page
25. Forms (buttons/radio/inputs) / .btn, input, form
26. Common classes (hover/transition effect/etc)

Note: All blocks can be used multiple times, so classes are used.
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Fonts]

Font-family: 'Roboto', sans-serif;
Font-family: 'Fira Sans', sans-serif;

All standart headings have font-size: 27pt / font-weight: 900

-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Color codes pink theme]

	Pink (headers, href, navigation, buttons): #cc1b6f

	Black (text 1): #23182C
	Violete (text 2): #1C1324
	Yellow (headers): #FFDD55

	Other colors used in different blocks/backgrounds:
	Violete-lighter: #6f6078;
	Violete-light: #352540;
	Violete: #422055;
	Violete-dark: #1C1324;
	Violete-darker: #23182C;
	Gray-darker:	#E9E5EB;
	Gray:			#939393;
	Gray-lighter:		#F8F6F9;	
*/
/*
  1. CSS Reset
*/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/**
 * Remove default margin.
 */
body {
  margin: 0;
}
/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}
/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}
/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}
/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}
/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}
/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}
/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/* 2. Global classes */
*:not(#fancybox-lock) {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  overflow-y: scroll;
}
html,
body {
  height: 100% !important;
}
body {
  color: #fff;
  background: #212121;
  font-family: "SimHei";
}
body,
div,
table {
  font-family: 'SimHei', sans-serif;
  font-size: 12pt;
  line-height: 1.9em;
}
a {
  color: #787878;
  text-decoration: none;
  transition: color 0.5s ease;
}
a:hover {
  text-decoration: none;
}
a:focus {
  outline: 0 none;
  text-decoration: none;
}
a img {
  border: 0;
  outline: 0 none;
}
.form-control:focus,
input:focus {
  outline: none;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}
h1,
h2,
h3 {
  font-weight: 700;
  font-size: 28pt;
  font-family: 'Fira Sans', sans-serif;
}
h4,
h5 {
  font-weight: 700;
  font-family: 'Fira Sans', sans-serif;
}
h1,
h2 {
  font-size: 27pt;
  font-weight: 900;
  color: #23182C;
  text-align: left;
  margin: 0px auto;
}
h1 span,
h2 span {
  color: #cc1b6f;
}
h3 {
  font-size: 27pt;
  font-weight: 900;
  color: #23182C;
  text-align: center;
  margin: 100px auto 25px;
}
h3 span {
  color: #cc1b6f;
}
@media (min-width: 480px) and (max-width: 767px) {
  h3 {
    margin: 60px auto 25px;
  }
}
h3.pink {
  color: #cc1b6f;
}
h3.pink span {
  color: #23182C;
}
section {
  overflow: hidden;
}
.container{
  padding-left: 10px;
  padding-right: 10px;
}
/*
	3. Header, navigation bar and menu
*/
header {
  background: #F8F6F9;
  padding: 140px 0 50px 0;
  margin-bottom: 40px;
}
header.menu-hidden {
  padding-top: 50px;
}
header .bread {
  float: right;
  list-style: none;
  margin: -35px 0 0 0;
}
header .bread li {
  float: left;
  margin: 0 0 0 10px;
}
header .bread li.divider {
  color: #23182C;
}
@media (max-width: 768px) {
  header .bread {
    display: none;
  }
}
@media (max-width: 991px) {
  header {
    padding-top: 123px;
  }
}
nav.navbar {
  background: #212121;
  transition: background 1.8s ease;
  /*	overflow: hidden;*/
}
nav.navbar.dark {
  background: rgba(33,33,33,0.8);
}
@media (max-width: 991px) {
  nav.navbar {
    background: #212121;
  }
}
nav.navbar #navbar {
  position: relative;
  /*		@media @sm-only { display: none !important; }*/
}
@media (min-width: 991px) {
  nav.navbar #navbar ul.navbar-nav {
    float: right;
  }
  nav.navbar #navbar ul.navbar-nav .active > a {
    color: #c32922;
    cursor: default;
  }
  
  nav.navbar #navbar ul.navbar-nav .active  span{
    padding-top: 10px;
    border-top: 2px #c32922 solid;
  } 
  nav.navbar #navbar ul.navbar-nav li,
  nav.navbar #navbar ul.navbar-nav a {
    color: #787878;
    font-size: 16px;
    /*padding: 26px 0;*/
  }
  nav.navbar #navbar ul.navbar-nav a {
    margin: 6px 15px;
    border: 1px solid transparent;
  }
  nav.navbar #navbar ul.navbar-nav a:hover {
    background: transparent;
    color: #c32922;
  }
  nav.navbar #navbar ul.navbar-nav a:hover span{
    padding-top: 10px;
    border-top: 2px #c32922 solid;
  }
  nav.navbar #navbar ul.navbar-nav a:focus {
    background: transparent;
  }
  nav.navbar #navbar ul.navbar-nav .hasSub {
    padding-right: 6px;
  }
  nav.navbar #navbar ul.navbar-nav .hasSub.active > a {
    padding-right: 25px;
  }
  nav.navbar #navbar ul.navbar-nav .hasSub > a {
    vertical-align: middle;
  }
  nav.navbar #navbar ul.navbar-nav .hasSub > a:after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 11pt;
    vertical-align: middle;
    content: "\f0da";
    margin: 4px 0 0 8px;
    position: absolute;
  }
  nav.navbar #navbar ul.navbar-nav .hasSub:hover ul {
    visibility: visible;
    opacity: 1;
    transition-delay: .1s;
  }
  nav.navbar #navbar ul.navbar-nav .hasSub:hover > a {
    color: #cc1b6f;
  }
  nav.navbar #navbar ul.navbar-nav .hasSub:hover > a:after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f0d7";
    margin-top: 3px;
    margin-left: 8px;
  }
  nav.navbar #navbar ul.navbar-nav ul {
    visibility: hidden;
    opacity: 0;
    transition: visibility .1s linear 0.4s, opacity 0.4s linear, background 0.5s ease;
    background: #cc1b6f;
    -webkit-border-radius: 40px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 40px;
    -moz-background-clip: padding;
    border-radius: 40px;
    background-clip: padding-box;
    position: absolute;
    width: 250px;
    margin: 12px 0 0 -86px;
    list-style: none;
    padding: 6px 30px;
  }
  nav.navbar #navbar ul.navbar-nav ul:before {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 10px 8px;
    border-color: transparent transparent #cc1b6f;
    left: 50%;
    top: -10px;
    margin: 0 0 0 -8px;
  }
  nav.navbar #navbar ul.navbar-nav ul li {
    color: #fff;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  nav.navbar #navbar ul.navbar-nav ul li:last-child {
    border-bottom: none;
  }
  nav.navbar #navbar ul.navbar-nav ul li a {
    color: #fff;
    padding: 10px 0;
    font-size: 11pt;
    display: block;
  }
  nav.navbar #navbar ul.navbar-nav ul li a:hover {
    color: #c32922;
    border-top: 1px #c32922 solid;
  }
  nav.navbar #navbar ul.navbar-nav ul li.active a {
    color: #c32922;
    border-top: 1px #c32922 solid;
  }
  
}
@media (min-width: 991px) and (max-width: 1229px) {
  nav.navbar #navbar ul.navbar-nav {
    margin-right: 50px;
  }
}
@media (min-width: 991px) and (max-width: 1229px) {
  nav.navbar #navbar #search {
    position: absolute;
    right: 0;
  }
}
nav.navbar .logo {
  display: block;
  position: absolute;
  z-index: 1001;
}
nav.navbar .navbar-toggle {
  background-color: transparent;
  background-image: none;
  height: 45px;
  width: 63px;
  border-radius: 4px;
  margin: 14px 15px;
  padding: 2px 10px 4px;
  position: relative;
}
nav.navbar .navbar-toggle .icon-bar {
  background: #fff;
  height: 4px;
  width: 100%;
  margin: 7px 0;
  transition: all 0.2s;
}
nav.navbar .navbar-toggle .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}
nav.navbar .navbar-toggle .middle-bar {
  opacity: 0;
}
nav.navbar .navbar-toggle .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}
nav.navbar .navbar-toggle.collapsed .top-bar {
  transform: rotate(0);
}
nav.navbar .navbar-toggle.collapsed .middle-bar {
  opacity: 1;
}
nav.navbar .navbar-toggle.collapsed .bottom-bar {
  transform: rotate(0);
}
@media (max-width: 991px) {
  nav.navbar #navbar {
    margin: 90px 0  0 !important;
    padding: 0px 0 0px 0 !important;
    bottom: 0px;
    top: 0px;
    left: 0;
    right: 0;
    position: fixed;
    z-index: 1002;
    height: 100%;
    width: 100%;
    max-height: 100% !important;
  }
  nav.navbar #search {
    display: none;
  }
  nav.navbar .logo {
    margin-left: 15px;
    margin-top: -5px;
  }
  nav.navbar ul.navbar-nav {
    background: #212121;
    width: 100%;
    padding: 0px 0px 73px 0;
    margin-top: 0;
  }
  nav.navbar ul.navbar-nav a {
    font-size: 20pt;
    font-weight: 900;
    padding: 20px 40px;
  }
  nav.navbar ul.navbar-nav a:focus {
    background: transparent;
  }
  nav.navbar ul.navbar-nav li.active > a {
    color: #6f6078;
  }
  nav.navbar ul.navbar-nav li.active ul li.active a {
    color: #23182C;
  }
  nav.navbar ul.navbar-nav > li {
    border-bottom: 1px solid #352540;
  }
  nav.navbar ul.navbar-nav > li.hasSub:after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 18pt;
    vertical-align: middle;
    content: "\f0da";
    margin: 4px 0 0 8px;
    right: 25px;
    top: 15px;
    position: absolute;
    color: #cc1b6f;
  }
  nav.navbar ul.navbar-nav > li.show-child ul {
    display: block !important;
  }
  nav.navbar ul.navbar-nav ul {
    padding: 20px 30px;
    list-style: none;
    background: #cc1b6f;
  }
  nav.navbar ul.navbar-nav ul a {
    padding: 6px 25px;
    font-size: 16pt;
    display: block;
    color: #fff;
  }
}
/*
	4. Full-width zoom slider block
*/
.slider-full {
  position: relative;
  background: #23182C;
}
@media (max-width: 768px) {
  .slider-full {
    margin-top: 74px;
  }
}
.slider-full .item {
  position: relative;
  color: #fff;
  height: 867px;
}
.slider-full .item .content {
  position: absolute;
  top: 50%;
  height: 30%;
  margin: -15% 0 0 0;
}
.slider-full .item h3 {
  color: #fff;
  text-align: left;
  font-family: 'Fira Sans', sans-serif;
  font-weight: 900;
  font-size: 60pt;
  line-height: 0.9em;
  margin: 0 0 50px 0;
}
.slider-full .item h3 span {
  color: #cc1b6f;
  font-size: 44pt;
}
.slider-full .item p {
  font-size: 14pt;
  font-weight: 300;
  width: 50%;
}
.slider-full .item .btn {
  margin-top: 65px;
}
@media (min-width: 992px) and (max-width: 1229px) {
  .slider-full .item {
    height: 700px;
  }
  .slider-full .item h3 {
    font-size: 50pt;
  }
  .slider-full .item h3 span {
    font-size: 34pt;
  }
  .slider-full .item p {
    font-size: 12pt;
    line-height: 1.5em;
  }
  .slider-full .item .btn {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .slider-full .item {
    height: 500px;
  }
  .slider-full .item h3 {
    font-size: 36pt;
    margin-bottom: 20px;
    margin-top: 40px;
  }
  .slider-full .item h3 span {
    font-size: 24pt;
  }
  .slider-full .item p {
    font-size: 12pt;
    width: 100%;
    line-height: 1.6em;
    display: none;
  }
  .slider-full .item .btn {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .slider-full .item {
    height: 300px;
  }
  .slider-full .item h3 {
    font-size: 28pt;
    margin-bottom: 20px;
    margin-top: 0px;
  }
  .slider-full .item h3 span {
    font-size: 16pt;
  }
  .slider-full .item p {
    font-size: 12pt;
    width: 100%;
    line-height: 1.6em;
    display: none;
  }
  .slider-full .item .btn {
    margin-top: 10px;
    font-size: 12pt;
    padding: 10px 20px;
  }
}
@media (max-width: 479px) {
  .slider-full {
    height: 300px;
  }
  .slider-full .item h3 {
    font-size: 22pt;
    margin-bottom: 20px;
    margin-top: 0px;
  }
  .slider-full .item h3 span {
    font-size: 14pt;
  }
  .slider-full .item p {
    font-size: 12pt;
    width: 100%;
    line-height: 1.6em;
    display: none;
  }
  .slider-full .item .btn {
    margin-top: 0px;
    font-size: 10pt;
    padding: 6px 10px;
  }
}
.slider-full .zs-bullets {
  z-index: 1001;
  content: " ";
  display: block;
  width: 222px !important;
  height: 41px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAN4AAAApCAYAAABa8JcWAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA4RpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjMjNkYTEyYy1jOGMyLTcwNDItODg2Ny0xZmZhZWI3MmViOTMiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QkQ1QkQ5MzlERjU5MTFFNkIwNEVGRUFENDc0MEU4ODgiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QkQ1QkQ5MzhERjU5MTFFNkIwNEVGRUFENDc0MEU4ODgiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKFdpbmRvd3MpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6M2FkN2NhNzItNGVjOC1iNjQ1LThkYzAtMzI0YmRkYWI5MjgxIiBzdFJlZjpkb2N1bWVudElEPSJhZG9iZTpkb2NpZDpwaG90b3Nob3A6NzM0YzAwNTYtZGVhMy0xMWU2LWI1YjgtYTY4ZTU4NzU0ZDkwIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+rKFp7AAABARJREFUeNrsnUlIVlEYho9F2kRm1EKbUbGBoMKiFpWNkLaIIGpRNNBItCiDogHKjAaiFrVoojJaFNGwaACbrIgkmqhswCLLykWRFZlpxN/7eb7AjfKT/3Duve8DDy5E9D/nvJ577zn3OwmhUMgQJ+gAM2BP2AOmwl76tat+PxF2gq1hiv5cNfwDv8N6WAM/wyr4Tr++h5XwlX6fxJkEBi8upMERcCgcDAfC3tIfUf690tlvYRl8BB/AUviRXcLg+ZG+cDQcA0fpzOYSMhPegjfgTfiGXcbgeZEkOA7mqX089vdXwAvqNVjHLmXwXA7bZDgdTtF7MT8g947n4Sl4iSFk8FxhJJyrgUvx+Wet1gAehXfY9QxerEmG8+Ei2C+gbfACHoCH4TcOCQYvmmTB5XAO7MjmaOAHLIJ74Es2B4MXScbC1XCSif4jf68iA6kYbofX2RwM3n+3DcyF6/Q+joSP3P9tgRc1kITBCytwU+EGOITN0SIews3wHAPI4DXHeLgVDmNTRJS7cC28yqawtGITNJCt9ydXGLqoMFzbtljbmjNewGc82Yy8A840fGgSK2TAnTD2YVUlgxcs2sGVcI3hskC8kGWIbXAXrGXw/I/sMNlp7Cs3JP7Iq0urjN0Rw+D5kEy419i1OOIel+EyWB6EDxuEhytyWVkAnzJ0TjNR+6hA+4wznoeZAPfBdI5rT/EaLjH2SShnPA8hpRKK9PKFofMe6dp3RdqXnPE8wCy4268dFkCkfswKeJzBcxNZk9tv7P5K4j9k3+diYws38VLThX8eej9QxtD5mlzt46XGB5sdvD7jSdGggzCH4zJQlMCFxhZp4owXQ6SuZD58zNAFkhzt+3wdC5zxYsAgeMjYjbeEyJsPC+ATznjRoS0shPcZOtIIGQv34CZjK21zxosgUgxWCutkcZyRZijT2a+UM17L6GzsEkEJQ0fCQErh3za28JLTdU1dnvGmaQOmcTyR/+CDsRXhznLGCw9ZIpDKxacZOtICusMzOpYyGLymkRdSC/U6PY/jhkSIPB1Thcahl55duNRM1BvijbAbxwmJIp+Mffopmy7qgxq8NnA2XG/sMVaExAo5hkzqfh6Dv4MSPDnZdJ6xNU8YOBJPKoyt+SLnP9T4NXiZekkpdmGfE4f4YuxuKLHcD8GTV/hn6AwnJ6GyhB5xGQmDnIx7BJ40Uax+Fo3gydYuqW0i63BSCj2Z/Uk8iBw9JqXnZUlCCvH+ci148lRSqgPLwR5y/HAObM9+Iz7ip7G7p+RYajmQRfaG1scqeLJ9K9XYhcn+cICxW3SyTQCqQhHSiFoNn6wPPoPPjd0pUwW/hhu8UDMpr2sUOt6fERLefeK/8CU1dfX3V4ABAJMPCwn97kTtAAAAAElFTkSuQmCC") no-repeat 50% 50%;
  position: absolute;
  bottom: -1px !important;
  margin-left: -111px !important;
  left: 50% !important;
  z-index: 1000;
}
@media (max-width: 768px) {
  .slider-full .zs-bullets {
    display: none;
  }
}
.slider-full .zs-bullets .zs-bullet {
  display: none !important;
  margin: 10px 5px 0 5px !important;
  zoom: 1;
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  background: #23182C !important;
  vertical-align: middle;
  border: 0 !important;
  width: 9px !important;
  height: 9px !important;
  z-index: 1002;
}
.slider-full .zs-bullets .zs-bullet.active {
  background: #cc1b6f !important;
  width: 14px !important;
  height: 14px !important;
}
.index{
  background: #212121;
  text-align: center;
  padding-top: 70px;
  background-image: url("../images/hometext_bg.png");
  background-repeat: no-repeat;
  background-position: center top;
}
.index p {
  color: #fff;
  font-weight: 100;
  line-height: 51px;
  font-size: 26px;
  letter-spacing: 0.05em;
}
/*
	5. Icons block
*/
.about{
  background: #262626;
  text-align: center;
  padding-top: 70px;
}

.about p{
  color: #999;
  line-height: 24px;
  letter-spacing: 0.1em;
  font-size: 16px;
  font-weight: 400;
}
.step{
  display: inline-block;
  vertical-align: top;
}

.about .step .step-text{
  color: #FFF;
  font-weight: 100;
  font-size: 18px;
  margin-top: 38px;
  margin-left: -2px;
}
.about .step .step-img{
  margin-top: 40px;
  margin-left: -2px;
}
.about  .step .step-box{
  width: 181px;
  height: 181px;
}
@media(max-width: 991px){
  .about .step {
    margin-top: 10px;
  }
}
@media(min-width: 768px){
  
}
@media(min-width: 992px){
  .about .step{
    margin-top: 10px;
  }
}

.about .step1 {
  background: url("../images/aboutme_step1_bg.png") no-repeat;
  background-size: 100% 100%;
  height: 181px;
  width: 201px;
}
.about .step2 {
  background: url("../images/aboutme_step2_bg.png") no-repeat;
  background-size: 100% 100%;
  height: 181px;
  width: 201px;
  margin-left: -10px;
}
.about .step3 {
  background: url("../images/aboutme_step2_bg.png") no-repeat;
  background-size: 100% 100%;
  height: 181px;
  width: 201px;
  margin-left: -10px;
}
.about .step4 {
  background: url("../images/aboutme_step2_bg.png") no-repeat;
  background-size: 100% 100%;
  height: 181px;
  width: 201px;
  margin-left: -10px;
}
.about .step5 {
  background: url("../images/aboutme_step2_bg.png") no-repeat;
  background-size: 100% 100%;
  height: 181px;
  width: 201px;
  margin-left: -10px;
}
.about .step6 {
  background: url("../images/aboutme_step6_bg.png") no-repeat;
  background-size: 100% 100%;
  height: 181px;
  width: 181px;
  margin-left: -10px;
}

.case{
  background: #212121;
  text-align: center;
  padding-bottom: 30px;
}
.case-bg{
  height: 430px;
  width: 100%;
  background: #323232;
  position: relative;
}
@media(min-width: 991px){
  .case .case-img .case-img-box{
    height: 430px;
    position: absolute;
    right: 0;
    left: 50%;
    top:0;
    width: 50%;
  }
  .case-img{
    position: initial;
  }
  .case-more{
    padding-top: 80px;
  }
}
@media(max-width: 768px){
  .case-bg{
    height: auto;
  }
  .case .case-img{
    height: auto;
  }
  .case .case-img .case-img-box{
    height: auto;
    min-height: auto;
    width: 100%;
  }
}
@media(min-width: 768px) and (max-width: 991px){
  .case-bg{
    height: auto;
  }
  .case .case-img .case-img-box{
    height: auto;
    min-height: 430px;
    overflow: auto;
  }
  .case-img{
    position: relative;
  }
  .case-img .case-img-box{
    width: 100%;
  }
  .case-more{
    padding-top: 40px;
  }
}
.case-more{
  background: url("../images/case_more_bg.png") no-repeat;
  background-size: 100% 100%;
  padding: 40px; 
  
}
.case-more div{
  height: 100px;
  padding-top:28px;
  padding-bottom: 28px;

}
.case-more div img{

}
.case-text{
  padding-top: 110px;
}
.case-text h4{
  font-size: 26px;
  line-height: 42px;
  text-align: left;
  font-weight: 400;
}
.case-text p{
    font-weight: 100;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.05em;
    text-align: left;
    width: 522px;
}
@media(max-width: 1170px){
  .case-text p{
    width: auto;
  }
}
.case-text-1 h4{
  color: #bc317c;
}
.case-text-2 h4{
  color: #d0291a;
}
.case-text-3 h4{
  color: #1b5cb4;
}
.case-text-4 h4{
  color: #e42a20;
}
.case-text-5 h4{
  color: #118462;
}
.case-text-6 h4{
  color: #ffcb29;
}
.case-logos{
  margin-top: 90px;
}
@media(min-width: 768px){
  .case-logos {
    height: 60px;
  }
  .case-logos a{
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
  }
}

@media(max-width: 991px){
  .case-logos a{
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
  }
  .case-logos div{
    height: 100px;
    margin-top: 16px;
    margin-bottom: 16px;
  }
}
/*
	6. Training block with tabs
*/
.partner{
  background: #212121;
  text-align: center;
  padding-top: 70px ;
}
.partner h4{
  margin-top: 24px;
  color: #fff;
  font-size: 22px;
  font-weight: 400;
}
.partner p{
  font-weight: 100;
  font-size: 14px;
  line-height: 24px;
  color: #999;
  text-align: left;
}
.partner .partner-desc{
  max-width: 234px;
  margin-top: 28px;
}
.partner-logos div{
  display: inline;
  padding-left: 38px;
  padding-right: 38px;
  margin-top: 15px;
  margin-bottom: 15px;
  height: 60px;
  float: left;;
}

/*
	7. Full-width white block with header/text/photo
*/
.join{
  background: #262626;
  text-align: center;
  padding: 70px 0;
}
.join1{
  background: #2f2f2f;
  margin-top: 48px;
}
.join-header,.join-desc,.join-banner{
  display: inline-block;
  vertical-align: top;
}
.join1 .join-header{
  background: url("../images/join_part1_bg.png") no-repeat 100% 100%;
  width: 104px;
  height: 296px;
  position: relative;
}
.join1 .join-header-box{
  width: 92px;
  text-align: center;
  top: 50%;
  margin-top: -92px;
  position: absolute;
}
.join1 .join-header .join-header-text{
  font-size: 32px;
  font-weight: 400;
  width: 44px;
  line-height: 44px;
}

.join1 .join-desc .join-box{
  margin-left: auto;
  margin-right: auto;
}
.join1 .join-desc .join-box img{
  margin-top: 44px;
}
.join-desc .join-box h4{
  margin-top: 20px;
  font-weight: 400;
  font-size: 22px;
}
 .join-desc .join-box p{
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #787878;
  margin-top: 12px;
  letter-spacing: 0.05em;
  text-align: left;
}



.join2{
  background: #2f2f2f;
}
.join2-first{
  margin-top: 64px;
}
.join2 .join-desc{
  height: 230px;
}
.join2 .join-desc .join-box{
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}


.join3{
  margin-top:64px;
}
.join3 .step{
  display: inline-block;
  vertical-align: top;
  width: 221px;
  height: 94px;
}
.join3 p{
  line-height: 94px;
  font-weight: 300;
  font-size: 26px;
  letter-spacing: 0.1em;
}
.join3 .step-header p{
  line-height: 42px;
  text-align: center;
  font-weight: 300;
  margin-top: 6px;
  font-size: 28px;
  letter-spacing: 0.1em;
}
.join3 .step-header{
  background-image: url("../images/join_part3_bg1.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 104px;
}
.join3 .step1,.step2,.step3,.step4{
  background: url("../images/join_part3_bg2.png") no-repeat 100% 100%;
  margin-left: -12px;
}
.join3 .step5{
  background: url("../images/join_part3_bg3.png") no-repeat 100% 100%;
  width: 209px;
  height: 94px;
  margin-left: -9px;
}
.join3 .step-box{
  width: 209px;
}

.join1 .gray-divide{
  display: inline-block;
  border-left: 1px #3d3c41 solid;
  width: 1px;
  height: 208px;
  margin-top: 46px;
}
.join2 .gray-divide{
  height: 100%;
  display: inline-block;
  border-left: 1px #3d3c41 solid;
  width: 1px;
}
.gray-line{
  width: 100%;
  border-top: 1px #3d3c41 solid;
  height: 1px;
}

@media(max-width: 767px){
  .join{
    position: relative;
  }
  .join2{
    height: auto;
  }
  .join1{
    height: auto;
  }
  .join2-first{
    margin-top: 218px;
  }
  .join1 .gray-divide{
    display: none;
  }
  .gray-line{
    display: none;
  }
  .join1 .join-desc{
    padding-left: 24px;
    padding-right: 24px;
  }
  .join2 .join-desc{
    height: auto;
  }
  .join2 .join-desc .join-box{
    text-align: center;
    padding-left: 24px;
    padding-right: 24px;
  }
  .join2 .join-banner{
    top: 1392px;
    position: absolute;
    width: 436px;
    left: 50%;
    margin-left: -218px;
  }
  .join2 .join-banner img{
    width: 80%;
  }
  .join3 .step{
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

@media(min-width: 768px){
  .join{
    position: relative;
  }
  .join2{
    height: auto;
  }
  .join1{
    height: auto;
  }
  .join1 .join-desc{
    width: 300px;
  }
  .join2-first{
    margin-top: 218px;
  }
  .join2 .join-desc{
    width: 240px;
    height: 230px;
  }
  .join2 .join-desc .join-box{
    width: 206px;
  }
  .join2 .join-banner{
    top: 728px;
    position: absolute;
    width: 436px;
    left: 50%;
    margin-left: -218px;
  }
  .join3{
    height: auto;
  }
  .join3 .step{
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media(min-width: 992px){
  .join1 .join-desc{
    width: 200px;
  }
  .join1 .join-desc .join-box{
    width: 174px;
  }
  .join2{
    height: 292px;
  }
  .join2-first{
      margin-top: 64px;
    }
  .join2 .join-desc{
    width: 228px;
    height: 230px;
  }
  .join2 .join-desc .join-box{
    width: 165px;
  }
  .join2 .join-banner{
    width: 468px;
    position: inherit;
    left: auto;
    margin-left: auto;
  }
  .join3{
    height: auto;
  }
  .join3 .step{
    margin-top: 10px;
    margin-bottom: 10px;
  }

}
@media(min-width: 1200px){
    .join1 {
      height: 296px;
    }
    .join1 .join-desc{
      width: 268px;
      float: left;
    }
    .join1 .join-desc .join-box{
      width: 208px;
    }
    .join1 .join-header{
      float: left;
    }
    .join2{
      height: 230px;
    }
    .join2 .join-desc{
      width: 294px;
      height: 230px;
      float: left;
    }
    .join2 .join-desc .join-box{
      width: 236px;
    }
    .join2-first{
      margin-top: 64px;
    }
    .join2 .join-banner{
      width: 589px;
      position: inherit;
      left: auto;
      margin-left: auto;
      float: left;
    }
    .join3{
      height: auto;
    }
    .join3 .step{
      margin-top: 0px;
      margin-bottom: 0px;
    }
    .gray-divide{
      float: left;
    }
      
}


/*
	9. Coaches block width photos and descriptions
*/
.contact {
  background: #212121;
  text-align: center;
  padding: 0 0 70px 0;
}
.contact .container .contact-way{
  margin-top: 56px;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.05em;
}

/*
	18. Footer and copyrights
*/
footer {
  background: #212121;
  color: #787878;
  padding: 37px 0 27px;
  overflow-y: hidden;
  letter-spacing: 0.1em;
  font-size: 16px;
}
footer a {
  color: #787878;
}
footer a:hover {
  color: #fff;
}
.line{
  border-top: #3d3c41 3px solid;
  height: 2px;
}
.triangle-down {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #c32922;
}
.contact-title{
  background: #c32922;
  height: 100px;
  line-height: 100px;
  color: #fff;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0.1em;
}
@media(max-width: 768px){
  .contact-title{
    height: 100px;
    line-height: 50px;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.1em;
  }
}
.section-title{
  border-bottom: 2px #c32922 solid;
  text-align: center;
  color: #fff;
  padding-bottom: 8px;
  font-size: 26px;
}
.copyright{
  font-size: 16px;
}
.copyright div{
  float: left;
}
.copyright .icp{
  margin-left: 16px;
}
.footer-link{
  font-size: 16px;
}
.footer-link .divide{
  margin-left: 20px;
  margin-right: 20px;
  height: 10px;
  border-left: 2px #c32922 solid;
  display: inline-block;
}
@media(max-width: 1169px){
    .footer-link{
      float: initial;
      text-align: center;
      clear: both;
    }
    .copyright{
      float: initial;
      text-align: center;
      clear: both;
    }
}
@media(max-width: 768px){
  .copyright .icp{
    display: block;
  }
}
@media(min-width: 1170px){
  .copyright{
    float: left;
    text-align: left;
  }
  .footer-link{
    float:right;
    text-align: right;
  }
}
