@font-face {
  font-family: "Raleway";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/RalewayRegular/RalewayRegular.eot");
  src: url("../fonts/RalewayRegular/RalewayRegular.eot?#iefix") format("embedded-opentype"), url("../fonts/RalewayRegular/RalewayRegular.woff") format("woff"), url("../fonts/RalewayRegular/RalewayRegular.ttf") format("truetype");
}

@font-face {
  font-family: "Raleway";
  font-weight: bold;
  font-style: normal;
  src: url("../fonts/RalewayBold/RalewayBold.eot");
  src: url("../fonts/RalewayBold/RalewayBold.eot?#iefix") format("embedded-opentype"), url("../fonts/RalewayBold/RalewayBold.woff") format("woff"), url("../fonts/RalewayBold/RalewayBold.ttf") format("truetype");
}

::-webkit-input-placeholder {
  color: #666;
}

::-moz-placeholder {
  color: #666;
}

:-ms-input-placeholder {
  color: #666;
}

::-ms-input-placeholder {
  color: #666;
}

::placeholder {
  color: #666;
}

* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #00896d;
  font-size: 16px;
  min-width: 320px;
  position: relative;
  line-height: 1.65;
  font-family: "Raleway", sans-serif;
  overflow-x: hidden;
  color: #2a2a2a;
}

body input, body textarea {
  border: #666 1px solid;
  outline: none;
}

body input:focus:required:invalid, body textarea:focus:required:invalid {
  border-color: red;
}

body input:required:valid, body textarea:required:valid {
  border-color: green;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-responsive.img-width {
  width: 100%;
}

.text-center {
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media screen and (max-width: 992px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

b, strong {
  font-weight: bold;
}

ul {
  list-style: none;
}

.is_stuck + div {
  z-index: -999;
}

.show-sm,
.show-xs {
  display: none;
}

.button-check {
  text-transform: uppercase;
  color: #fff;
  background: #004d3d;
  text-decoration: none;
  padding: 15px 14px;
  -webkit-transition: .2s opacity;
  -o-transition: .2s opacity;
  transition: .2s opacity;
  text-align: center;
}

.button-check:hover {
  opacity: .7;
}

.button-explore {
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #004d3d;
  color: #004d3d;
  font-weight: bold;
  padding: 15px 22px;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  display: inline-block;
}

.button-explore:hover {
  background-color: #004d3d;
  color: #fff;
}

.burger-btn {
  width: 36px;
}

.burger-btn span {
  width: 100%;
  display: block;
  border-bottom: 4px solid #000;
  padding-top: 6px;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.burger-btn:after, .burger-btn:before {
  content: '';
  display: block;
  padding-top: 6px;
  width: 100%;
  border-bottom: 4px solid #000;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.burger-btn:before {
  padding-top: 0;
}

.menu-opened span {
  opacity: 0;
}

.menu-opened:before {
  -webkit-transform: rotate(45deg) translate(6px, 5px);
      -ms-transform: rotate(45deg) translate(6px, 5px);
          transform: rotate(45deg) translate(6px, 5px);
}

.menu-opened:after {
  -webkit-transform: rotate(-45deg) translate(7px, -10px);
      -ms-transform: rotate(-45deg) translate(7px, -10px);
          transform: rotate(-45deg) translate(7px, -10px);
}

.title {
  font-size: 32px;
  line-height: 1.2;
}

.subtitle {
  font-size: 12px;
  text-transform: uppercase;
  color: #c2c1c1;
  display: inline-block;
  margin-bottom: 25px;
  position: relative;
  font-weight: bold;
}

.subtitle:after {
  content: '';
  position: absolute;
  right: -110px;
  bottom: 50%;
  width: 100px;
  border-bottom: 1px solid #c2c1c1;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 14px;
  z-index: 99;
  -webkit-transition: background-color .5s;
  -o-transition: background-color .5s;
  transition: background-color .5s;
}

header .container {
  padding-top: 30px;
  padding-bottom: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

header .container > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.header-bg {
  background-color: rgba(255, 255, 255, 0.9);
}

nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

nav a {
  text-decoration: none;
  color: #2a2a2a;
  margin-left: 40px;
  -webkit-transition: .2s color;
  -o-transition: .2s color;
  transition: .2s color;
}

nav a.active, nav a:hover {
  color: #004d3d;
}

.langs {
  margin-left: 30px;
  margin-right: 60px;
  position: relative;
}

.langs ul {
  display: none;
  position: absolute;
  top: 22px;
  left: 0;
}

.langs a {
  color: #c2c1c1;
  text-decoration: none;
  -webkit-transition: .2s color;
  -o-transition: .2s color;
  transition: .2s color;
}

.langs a.active, .langs a:hover {
  color: #2a2a2a;
}

.langs a.active {
  position: relative;
}

.langs a.active:before {
  content: '';
  position: absolute;
  top: 2px;
  left: -20px;
  width: 16px;
  height: 11px;
  background: url(../img/english_flag.png);
}

.langs a.active:after {
  content: '';
  position: absolute;
  top: 4px;
  right: -10px;
  width: 5px;
  height: 5px;
  border-bottom: 1px solid #c2c1c1;
  border-left: 1px solid #c2c1c1;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: .2s transform;
  -o-transition: .2s transform;
  transition: .2s transform;
}

.opened a.active:after {
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}

.hero {
  padding: 170px 0 130px;
  background: #fff;
  position: relative;
}

.hero .col {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: -webkit-calc(45.83333% - 30px);
  width: calc(45.83333% - 30px);
  margin-left: 100px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .hero .col {
    width: -webkit-calc(83.33333% - 30px);
    width: calc(83.33333% - 30px);
  }
}

@media screen and (max-width: 576px) {
  .hero .col {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }
}

.hero p {
  margin: 25px 0 25px;
}

.hero span {
  display: block;
  margin-bottom: 23px;
  font-size: 12px;
}


.sponsors {
  margin-top: 55px;
  margin-bottom: 55px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}

.sponsors p {
  margin-top: 20px;
  font-size: 10px;
  font-weight: bold;
}

.sponsor {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-right: 35px;
}

.hero-slider {
  position: absolute;
  width: 50%;
  right: 0;
  height: 100%;
  bottom: 0;
}

.hero-slide {
  width: 100%;
  height: 100%;
}

.hero-slide-1 {
  background: url(../img/hero.png) no-repeat;
  -webkit-background-size: cover;
          background-size: cover;
  background-position: 0% 50%;
}

.hero-slide-2 {
  background: url(../img/hero2.jpg) no-repeat;
  -webkit-background-size: cover;
          background-size: cover;
  background-position: 100% 50%;
  display: none;
}

.hero-slide-3 {
  background: url(../img/hero3.jpg) no-repeat;
  -webkit-background-size: cover;
          background-size: cover;
  background-position: 100% 50%;
  display: none;
}

.what-is-it {
  padding: 140px 0;
  position: relative;
  overflow-x: hidden;
}

.what-is-it .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.what-is-it .col {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: -webkit-calc(45.83333% - 30px);
  width: calc(45.83333% - 30px);
  z-index: 3;
}

@media screen and (max-width: 768px) {
  .what-is-it .col {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }
}

.what-is-it p {
  margin: 25px 0 25px;
}

.what-is-it span {
  display: block;
  margin-bottom: 23px;
  font-size: 12px;
}

.what-is-it .text {
  margin-bottom: 45px;
}

.what-is-it-slider {
  width: 100%;
  right: 50%;
  height: 100%;
  bottom: 0;
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-transition: .5s right;
  -o-transition: .5s right;
  transition: .5s right;
}

.what-is-it .arrow-left {
  bottom: 0;
  right: 50%;
}

.what-is-it .arrow-right {
  bottom: 0;
  left: 50%;
}

.bodybuilder-img {
  width: 50%;
  height: 100%;
  background: url(../img/bodybuilder.jpg) no-repeat;
  -webkit-background-size: cover;
          background-size: cover;
  background-position: 50% 50%;
  -webkit-transition: width .5s;
  -o-transition: width .5s;
  transition: width .5s;
}

.kids-img {
  width: 50%;
  height: 100%;
  background: url(../img/kids.jpg) no-repeat;
  -webkit-background-size: cover;
          background-size: cover;
  background-position: 80% 50%;
}

.tabs {
  margin-top: 45px;
}

.tabs a {
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
  margin-right: 30px;
  color: #c2c1c1;
  font-weight: bold;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.tabs a:hover {
  color: #004d3d;
}

.tabs a.active {
  color: #004d3d;
  border-bottom: 2px solid #004d3d;
}

.arrow {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  width: 55px;
  height: 55px;
  cursor: pointer;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.arrow:hover {
  opacity: .7;
}

.arrow-left {
  background-color: #F7F8FB;
}

.arrow-left:after {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  border-top: 1px solid #2a2a2a;
  border-left: 1px solid #2a2a2a;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.arrow-right {
  background-color: #004d3d;
}

.arrow-right:after {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.bodybuilder-text {
  display: none;
}

.kids-active .what-is-it-slider {
  right: 0;
}

.kids-active .bodybuilder-img {
  width: 0;
}

.product {
  width: 100%;
  background: #F7F8FB;
  position: relative;
}

.product-text {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 30px;
  width: -webkit-calc(45.83333% - 30px);
  width: calc(45.83333% - 30px);
  margin-left: 100px;
}

@media screen and (max-width: 768px) {
  .product-text {
    width: -webkit-calc(83.33333% - 30px);
    width: calc(83.33333% - 30px);
  }
}

@media screen and (max-width: 576px) {
  .product-text {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }
}

.product .container {
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.product h2 {
  margin-bottom: 40px;
}

.product p {
  font-size: 14px;
  margin-bottom: 25px;
}

.product p:last-child {
  margin-bottom: none;
}

.boxs-container {
  height: 100vh;
  width: 50%;
  position: absolute;
  right: 0;
  top: 0;
}

.boxs-fixed {
  position: fixed;
  right: 0;
  top: 0;
}

.boxs {
  width: 100%;
  height: 100%;
  position: relative;
}

.box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.box-1 {
  background: url(../img/box-1.png) 0% 50% no-repeat;
  -webkit-background-size: cover;
          background-size: cover;
  opacity: 1;
}

.box-2 {
  background: url(../img/box-2.png) 0% 50% no-repeat;
  -webkit-background-size: cover;
          background-size: cover;
  opacity: 0;
}

.box-3 {
  background: url(../img/box-3.png) 0% 50% no-repeat;
  -webkit-background-size: cover;
          background-size: cover;
  opacity: 0;
}

.box-4 {
  background: url(../img/box-4.png) 0% 50% no-repeat;
  -webkit-background-size: cover;
          background-size: cover;
  opacity: 0;
}

.product-2 {
  height: 100vh;
  position: relative;
  background: #00896d;
  overflow-x: hidden;
}

.product-2 .container {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-2 .col {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: -webkit-calc(45.83333% - 30px);
  width: calc(45.83333% - 30px);
  margin-left: 100px;
  z-index: 5;
}

@media screen and (max-width: 768px) {
  .product-2 .col {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }
}

.product-2 p {
  margin: 25px 0 35px;
  font-size: 14px;
}

.product-2 .arrow-right {
  right: 0;
  bottom: 0;
}

.product-2 .arrow-left {
  right: 55px;
  bottom: 0;
}

.product-2-slider {
  width: 100%;
  left: 50%;
  height: 100%;
  bottom: 0;
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-transition: .5s right;
  -o-transition: .5s right;
  transition: .5s right;
}

.package-img {
  width: 50%;
  height: 100%;
  background: url(../img/package.jpg) no-repeat;
  -webkit-background-size: cover;
          background-size: cover;
  -webkit-transition: width .5s;
  -o-transition: width .5s;
  transition: width .5s;
}

.slim-img {
  width: 50%;
  height: 100%;
  background: url(../img/slim.jpg) no-repeat;
  -webkit-background-size: cover;
          background-size: cover;
}

.package-text {
  display: none;
}

.slim-active .product-2-slider {
  right: 0;
}

.slim-active .package-img {
  width: 0;
}

.documents {
  height: 100vh;
  position: relative;
}

.documents .container {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.documents .col {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: -webkit-calc(45.83333% - 30px);
  width: calc(45.83333% - 30px);
  margin-left: 100px;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .documents .col {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }
}

.documents ul {
  margin: 45px 0;
}

.documents li {
  font-size: 14px;
  margin-bottom: 25px;
  padding-left: 50px;
  position: relative;
}

.documents li:last-child {
  font-weight: bold;
  margin-bottom: none;
}

.documents li:last-child:after {
  content: '2019';
}

.documents li:after {
  font-weight: bold;
  color: #004d3d;
  position: absolute;
  top: 0;
  left: 0;
}

.documents li:first-child:after {
  content: '2012';
}

.documents li:nth-child(2):after {
  content: '2016';
}

.documents li:nth-child(3):after {
  content: '2017';
  /*display: block;
  top: 3px;
  width: 38px;
  height: 20px;
  background: url(../img/after-bg.png) no-repeat;
  background-position: 50% 50%;*/
}

.documents li:nth-child(4):after {
  content: '2019';
}

.documents li:nth-child(5):after {
  content: '2023';
}

.documents li:nth-child(6):after {
  content: '2024';
}

.documents a {
  color: #004d3d;
}

.documents-img {
  height: 100%;
  width: 50%;
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(../img/certificate.jpg) no-repeat;
  -webkit-background-size: cover;
          background-size: cover;
}

.distributors {
  height: 100vh;
  background-color: #F7F8FB;
  position: relative;
}

.distributors .container {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.distributors .col {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: -webkit-calc(45.83333% - 30px);
  width: calc(45.83333% - 30px);
}

@media screen and (max-width: 768px) {
  .distributors .col {
    width: -webkit-calc(83.33333% - 30px);
    width: calc(83.33333% - 30px);
  }
}

@media screen and (max-width: 576px) {
  .distributors .col {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }
}

.distributors ul {
  margin-top: 35px;
  max-height: 300px;
  overflow-y: auto;
}

.distributors li {
  margin-bottom: 20px;
}

.distributors li:last-child {
  margin-bottom: 0;
}

.distributors a {
  position: relative;
  display: inline-block;
  padding-left: 28px;
  color: #2a2a2a;
  text-decoration: none;
  line-height: 1;
}

.distributors a:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 13px;
  background: url(../img/link.svg) no-repeat;
}

.distributors a:hover:after {
  background: url(../img/link-hover.svg) no-repeat;
}

.distributors a span {
  font-size: 14px;
  color: #c2c1c1;
}

.col-left {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  background: url(../img/col-left.jpg) no-repeat;
  -webkit-background-size: cover;
          background-size: cover;
}

.another-page-resaved {
  background: url(../img/another-page-resaved-bg.png) no-repeat center center;
  -webkit-background-size: cover;
          background-size: cover;
  height: 100vh;
  position: relative;
}

.another-page-resaved-header {
  background-color: rgba(255, 255, 255, 0.9) !important;
}

.another-page-resaved-header .button-check {
  font-weight: bold;
  color: #004d3d;
  border: 2px solid #004d3d;
  background-color: transparent;
  -webkit-transition: .2s all;
  -o-transition: .2s all;
  transition: .2s all;
}

.another-page-resaved-header .button-check:hover {
  opacity: 1;
  background-color: #004d3d;
  color: #fff;
}

.another-page-resaved .code {
  display: block;
  text-align: center;
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 82px;
  font-family: 'Roboto', sans-serif;
  color: #161113;
}

.another-page-resaved .code span {
  padding-bottom: 80px;
}

.another-page-resaved .subtitle {
  display: inline-block;
}

.another-page-resaved .wrapper {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.another-page-resaved .title-wrapper {
  background-color: rgba(255, 255, 255, 0.9);
  padding-top: 15px;
  padding-bottom: 15px;
}

.another-page-resaved .title, .another-page-resaved .subtitle {
  margin-left: 100px;
}

footer {
  background: url(../img/footer-bg.png) no-repeat;
  -webkit-background-size: cover;
          background-size: cover;
  color: #fff;
  text-align: center;
}

footer nav {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 55px;
}

footer nav a {
  color: rgba(255, 255, 255, 0.7);
}

footer nav a.active, footer nav a:hover {
  color: #fff;
}

footer nav a:first-child {
  margin-left: 0;
}

footer p {
  font-size: 32px;
  margin-bottom: 40px;
}

footer .button-check {
  background: transparent;
  border: 1px solid #fff;
  font-weight: bold;
  -webkit-transition: .2s all;
  -o-transition: .2s all;
  transition: .2s all;
}

footer .button-check:hover {
  background: #fff;
  color: #004d3d;
  opacity: 1;
}

.footer-logo {
  margin: 100px 0;
  display: inline-block;
}

.contacts {
  margin-bottom: 90px;
}

.contacts span {
  font-size: 20px;
  margin-right: 45px;
  padding-left: 25px;
  position: relative;
}

.contacts span:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  display: block;
  width: 22px;
  height: 18px;
  -webkit-background-size: cover;
          background-size: cover;
  background-position: 0% 0%;
}

.contacts span:last-child {
  margin-right: none;
}

.tel:after {
  background: url(../img/tg.svg) no-repeat;
}

.email:after {
  background: url(../img/email.svg) no-repeat;
}

.made-by {
  padding-bottom: 40px;
  display: block;
}

.all-sections {
  background: #fff;
  -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.4);
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.footer-effect {
  -webkit-transform: scale(0.9) translate(0, 300px);
      -ms-transform: scale(0.9) translate(0, 300px);
          transform: scale(0.9) translate(0, 300px);
  -webkit-border-radius: 5px;
          border-radius: 5px;
  overflow: hidden;
}

/*==========  Desktop First  ==========*/
@media screen and (max-width: 992px) {
  nav a {
    margin-left: 20px;
  }
  .langs {
    margin-right: 30px;
  }
  footer nav {
    display: none;
  }
  .hero .col,
  .product-text,
  .product-2 .col,
  .documents .col {
    margin-left: 0;
  }
  .documents-img {
    width: 70%;
  }
}

@media screen and (max-width: 768px) {
  .header-bg, header {
    background-color: #F7F8FB;
  }
  nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    position: fixed;
    left: 0;
    width: 100%;
    background-color: #F7F8FB;
    padding: 50px 0;
    display: none;
    overflow-x: auto;
  }
  nav a {
    display: block;
    text-align: left;
    margin-left: 115px;
    font-size: 30px;
  }
  .show-sm {
    display: block;
  }
  .hide-sm {
    display: none;
  }
  .logo {
    margin-right: 50px;
  }
  .langs {
    margin-right: 70px;
  }
  .hero-slider {
    width: 70%;
    height: 50%;
    bottom: 0;
  }
  .sponsors {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .sponsors .sponsor {
    margin-bottom: 20px;
  }
  .sponsors .sponsor p {
    margin-top: 10px;
  }
  .hero-slide-2 {
    background-position: 0 0;
  }
  .hero-slide-3 {
    background-position: -50% 0;
  }
  .what-is-it {
    padding-top: 90px;
    padding-bottom: 400px;
  }
  .what-is-it .arrow-left {
    bottom: 30%;
    left: -webkit-calc(100% - 110px);
    left: calc(100% - 110px);
  }
  .what-is-it .arrow-right {
    bottom: 30%;
    left: -webkit-calc(100% - 55px);
    left: calc(100% - 55px);
  }
  .what-is-it-slider {
    width: 200%;
    height: 30%;
    right: 0%;
  }
  .kids-active .what-is-it-slider {
    right: -100%;
  }
  .kids-active .bodybuilder-img {
    width: 0;
  }
  .product .container {
    height: auto;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .boxs-container {
    height: 50vh;
    width: 100%;
    padding-top: 50vh;
  }
  .product-2 {
    padding-bottom: 250px;
    height: auto;
  }
  .product-2 .container {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .product-2-slider {
    width: 200%;
    left: 0;
    height: 50%;
  }
  .product-2 .col {
    margin-top: 50px;
  }
  .documents {
    height: auto;
    padding: 50px 0;
  }
  .documents-img {
    height: 50%;
    width: 50%;
  }
  .distributors .col-left {
    display: none;
  }
  .another-page-resaved .title, .another-page-resaved .subtitle {
    margin-left: 0;
  }
}

@media screen and (max-width: 576px) {
  .show-xs {
    display: block;
  }
  .hide-xs {
    display: none;
  }
  header .container {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  header .container nav {
    padding: 10px 0;
  }
  header .container nav > a {
    margin: 0;
    text-align: center;
  }
  header .container nav .button-check {
    padding: 10px 10px;
    font-size: 24px;
    display: inline-block;
    margin-top: 30px;
  }
  .langs-nav {
    margin-top: 20px;
  }
  .langs-nav a {
    display: inline-block;
    font-weight: bold;
    font-size: 24px;
    margin-left: 40px;
    text-align: center;
    color: #c2c1c1;
  }
  .langs-nav a:first-child {
    margin-left: 0;
  }
  .langs-nav .active {
    position: relative;
    color: #2a2a2a;
  }
  .langs-nav .active:before {
    content: '';
    position: absolute;
    top: 14px;
    left: -25px;
    width: 20px;
    height: 13px;
    background: url(../img/english_flag.png) no-repeat;
    -webkit-background-size: cover;
            background-size: cover;
  }
  .hero {
    padding-top: 150px;
    padding-bottom: 350px;
  }
  .hero-slider {
    width: 100%;
    bottom: 0;
    height: 30%;
  }
  .hero-slide-3 {
    background-position: 0 0;
  }
  .hero-slide-2 {
    background-position: 10% 0;
  }
  .another-page-resaved .title {
    font-size: 18px;
  }
  .another-page-resaved .subtitle {
    font-size: 10px;
    margin-bottom: 15px;
  }
  .another-page-resaved .code {
    font-size: 70px;
  }
  .another-page-resaved .code span {
    padding-bottom: 70px;
  }
  .logo img {
    height: 36px;
  }
  .burger-btn:after, .burger-btn span {
    padding-top: 5px;
  }
  .menu-opened:before {
    -webkit-transform: rotate(45deg) translate(4px, 5px);
        -ms-transform: rotate(45deg) translate(4px, 5px);
            transform: rotate(45deg) translate(4px, 5px);
  }
  .menu-opened:after {
    -webkit-transform: rotate(-45deg) translate(6px, -10px);
        -ms-transform: rotate(-45deg) translate(6px, -10px);
            transform: rotate(-45deg) translate(6px, -10px);
  }
}

@media screen and (min-width: 1600px) {
  .another-page-resaved .code {
    font-size: 100px;
  }
  .another-page-resaved .code span {
    padding-bottom: 100px;
  }
  footer {
    height: 65vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
