/* FONTS */
@font-face {
  font-family: 'SourceSansPro-Regular';
  src: local('SourceSansPro-Regular'), url('../fonts/SourceSansPro-Regular.otf');
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: 'SourceSansPro-Light';
  src: local('SourceSansPro-Light'), url('../fonts/SourceSansPro-Light.otf');
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: 'SourceSansPro-Semibold';
  src: local('SourceSansPro-Semibold'), url('../fonts/SourceSansPro-Semibold.otf');
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: 'SourceSansPro-Bold';
  src: local('SourceSansPro-Bold'), url('../fonts/SourceSansPro-Bold.otf');
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: 'SourceSansPro-Black';
  src: local('SourceSansPro-Black'), url('../fonts/SourceSansPro-Black.otf');
  font-style: normal;
  font-weight: normal;
}
/* COMMON SETTINGS */
body {
  background-color: #e8e8e8;
  font-family: 'SourceSansPro-Regular', sans-serif;
  font-size: 20px;
  color: #2a2323;
  scroll-behavior: smooth;
}
section {
  padding: 80px 0;
}
iframe {
  border-width: 0px;
}
.red {
  color: red;
}
.blue {
  color: #00baff;
}
.center {
  float: none;
  text-align: center;
  margin: auto auto;
}
.right {
  text-align: right;
}
.left {
  text-align: left;
}
.input-main {
  display: block;
  width: 100%;
  max-width: 450px;
  padding: 12px;
  margin: 15px auto;
  border: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  outline: none;
}
.input-main:hover {
  border: 1px solid #999;
}
.input-main:focus {
  border: 1px solid #00baff;
  -webkit-box-shadow: 0px 0px 2px #00baff;
          box-shadow: 0px 0px 2px #00baff;
}
.btn-main {
  display: block;
  width: 100%;
  max-width: 450px;
  padding: 12px;
  margin: 15px auto;
  background-color: #00baff;
  border: none;
  border-radius: 50px;
  font-family: 'SourceSansPro-Semibold';
  color: #fff;
  font-size: 22px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.btn-main:hover {
  background-color: #00a0db;
}
.btn-main:focus {
  outline: 0;
}
.video {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 20px #000;
          box-shadow: 0px 0px 20px #000;
  margin-bottom: 30px;
}
.video iframe,
.video .youtube {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video > .youtube > .play {
  background: url(../img/ytp.png) center no-repeat;
}
.up {
  display: none;
  width: 48px;
  height: 48px;
  position: fixed;
  bottom: 60px;
  right: 20px;
  cursor: pointer;
  z-index: 1;
}
/* TYPOGRAPHY */
strong {
  font-family: 'SourceSansPro-SemiBold', sans-serif;
}
a,
a:hover,
a:focus,
a:active,
a:visited {
  color: #2a2323;
  font-size: 20px;
  text-decoration: none;
  cursor: pointer;
  outline: 0;
}
p {
  color: #2a2323;
  font-size: 20px;
  line-height: 1.5;
}
h1 {
  margin-top: -120px;
  font-family: 'SourceSansPro-Black';
  font-size: 75px;
  letter-spacing: 2px;
}
.h1 {
  font-family: 'SourceSansPro-Black';
  font-size: 52px;
  color: #00baff;
  text-shadow: 1px 1px 1px #000;
  margin: 20px 0;
}
h2 {
  font-family: 'SourceSansPro-Bold';
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 50px;
  line-height: 1.3;
}
h3 {
  font-family: 'SourceSansPro-Bold';
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
h4 {
  font-family: 'SourceSansPro-Semibold';
  font-size: 26px;
}
/* NAVBAR */
.navbar {
  background-color: #00baff;
  border-radius: 0;
  margin-bottom: 0px;
  border: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  display: none;
}
.navbar.fixed {
  display: block;
  position: fixed;
  width: 100%;
  z-index: 999;
}
.navbar-brand {
  padding: 5px;
}
.navbar-nav {
  float: none;
  margin: 0 auto;
  text-align: center;
}
.navbar-nav li {
  float: none;
  display: inline-block;
  margin-right: 30px;
}
.navbar-nav li:last-child {
  margin-right: 0;
}
.navbar-nav li a {
  color: #fff;
  position: relative;
}
.navbar-nav li a:hover,
.navbar-nav li a:focus {
  background: none;
}
.navbar-nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.navbar-nav li:hover a::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.navbar-toggle {
  border: none;
  background: transparent !important;
}
.navbar-toggle:hover {
  background: transparent !important;
}
.navbar-toggle .icon-bar {
  width: 22px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.navbar-toggle .icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 10% 10%;
  transform-origin: 10% 10%;
}
.navbar-toggle .icon-bar:nth-of-type(2) {
  opacity: 0;
  filter: alpha(opacity=0);
}
.navbar-toggle .icon-bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 10% 90%;
  transform-origin: 10% 90%;
}
.navbar-toggle.collapsed .icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.navbar-toggle.collapsed .icon-bar:nth-of-type(2) {
  opacity: 1;
  filter: alpha(opacity=100);
}
.navbar-toggle.collapsed .icon-bar:nth-of-type(3) {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
@media (max-width: 899px) {
  .navbar-header {
    float: none;
  }
  .navbar-left,
  .navbar-right {
    float: none !important;
  }
  .navbar-toggle {
    display: block;
  }
  .navbar-collapse {
    border-top: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  .navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
  }
  .navbar-collapse.collapse {
    display: none!important;
  }
  .navbar-nav {
    float: none!important;
    margin-top: 7.5px;
  }
  .navbar-nav > li {
    float: none;
  }
  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .collapse.in {
    display: block !important;
  }
  .container-fluid > .navbar-collapse,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container > .navbar-header {
    margin-right: -15px;
    margin-left: -15px;
  }
}
/* MAIN */
.main {
  background: url(../img/main-bg.jpg) center no-repeat;
  background-size: cover;
  padding: 5px 0px 100px 0px;
  position: relative;
}
.main::before {
  content: '';
  position: absolute;
  left: 200px;
  top: -50px;
  width: 752px;
  height: 978px;
  background: url(../img/fitgirl-rounds.png) center no-repeat;
}
.main-address {
  margin-top: 20px;
}
.main-address p {
  font-family: 'SourceSansPro-Light';
  font-size: 18px;
}
.main-phone {
  margin-top: 10px;
}
.main-phone p {
  font-family: 'SourceSansPro-Semibold';
  font-size: 26px;
  margin-bottom: 0;
}
.main-phone .recall {
  font-family: 'SourceSansPro-Light';
  font-size: 18px;
  text-decoration: underline;
}
.main .geo {
  position: relative;
}
.main .geo::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 4px;
  width: 10px;
  height: 15px;
  background: url(../img/geo.png) center no-repeat;
}
.main .description {
  font-size: 22px;
}
.main-form {
  position: relative;
}
.main-form::before {
  content: '';
  position: absolute;
  top: 160px;
  left: -230px;
  width: 211px;
  height: 190px;
  background: url(../img/book-arrow.png) center no-repeat;
}
.main-form p {
  font-size: 24px;
}
.main-form p.action {
  font-size: 20px;
}
.main-form .blue {
  font-family: 'SourceSansPro-Black';
}
.main-form .input-main {
  margin: 15px 0;
}
.main-form .btn-main {
  margin: 15px 0;
}
.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.logo img {
  margin-right: 15px;
}
.logo p {
  font-family: 'SourceSansPro-Light';
  font-size: 16px;
}
.logo p.title {
  margin-top: 5px;
  font-family: 'SourceSansPro-Semibold';
  font-size: 30px;
  margin-bottom: 0px;
}
/* REASON */
.reason {
  background: url(../img/discobol.png) 150px 200px no-repeat;
}
.reason-item {
  margin-bottom: 30px;
}
/* DOCUMENT */
.document {
  background: url(../img/bg-docs.jpg) center no-repeat;
  background-size: cover;
  text-align: center;
  min-height: 980px;
}
.document img {
  margin: 0 auto;
  border: 1px solid #00baff;
  -webkit-box-shadow: 0px 0px 5px #99e3ff;
          box-shadow: 0px 0px 5px #99e3ff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.document img:hover {
  -webkit-box-shadow: 0px 0px 30px #66d6ff;
          box-shadow: 0px 0px 30px #66d6ff;
}
/* DOORS */
.doors {
  background: url(../img/main-bg.jpg) center no-repeat;
  background-size: cover;
  position: relative;
}
.doors::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1192px;
  height: 1134px;
  background: url(../img/fitnes-para-rounds.png) center no-repeat;
  -webkit-transform: translate(-50%, -45%);
          transform: translate(-50%, -45%);
}
.doors-item {
  margin-bottom: 30px;
}
.doors-item-head {
  padding-left: 40px;
  font-size: 26px;
  position: relative;
}
.doors-item-head::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background-color: #00baff;
  border-radius: 28px;
  color: #fff;
  font-size: 20px;
}
.doors-item .dih1::before {
  content: '1';
  padding-left: 9px;
  padding-top: 3px;
}
.doors-item .dih2::before {
  content: '2';
  padding-left: 9px;
  padding-top: 2px;
}
.doors-item .dih3::before {
  content: '3';
  padding-left: 9px;
  padding-top: 2px;
}
.doors-item .dih4::before {
  content: '4';
  padding-left: 9px;
  padding-top: 2px;
}
.doors-item .dih5::before {
  content: '5';
  padding-left: 9px;
  padding-top: 2px;
}
.doors-item .dih6::before {
  content: '6';
  padding-left: 9px;
  padding-top: 2px;
}
.doors-item .dih7::before {
  content: '7';
  padding-left: 9px;
  padding-top: 2px;
}
/* ORDER */
.order {
  padding: 50px 0;
  background-color: #151515;
}
.order img {
  float: right;
}
.order p {
  font-size: 40px;
  line-height: 1.2;
  color: #fff;
}
.order p .blue {
  font-family: 'SourceSansPro-Bold';
}
.order p.action {
  font-size: 20px;
}
.order .input-main,
.order .btn-main {
  margin: 15px 0;
}
/* PROGRAM */
.program {
  background: url(../img/girl-rounds.png) 15% center no-repeat;
}
.program h4 {
  margin-top: 30px;
}
.program-list {
  margin: 60px 0;
  padding: 0;
}
.program-list li {
  list-style: none;
  font-size: 22px;
  background: url(../img/ellips.png) left top no-repeat;
  padding: 2px 2px 2px 45px;
  margin-bottom: 20px;
}
.program-list li:nth-child(2n) {
  font-family: 'SourceSansPro-Bold';
}
.program .nothing {
  padding-left: 60px;
  background: url(../img/znak.png) left center no-repeat;
}
.program .nothing p {
  font-size: 22px;
}
/* SELF */
.self {
  background-color: #fff;
}
.self h2 {
  font-size: 32px;
  text-transform: none;
}
.self h3 {
  color: #00baff;
}
.self p {
  font-size: 22px;
  line-height: 1.4;
}
.self-item {
  border: 2px solid #00baff;
  -webkit-box-shadow: 0px 0px 2px #00baff;
          box-shadow: 0px 0px 2px #00baff;
  padding: 20px;
  padding-top: 50px;
  margin-bottom: 30px;
  min-height: 380px;
  text-align: center;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.self-item::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 100px;
  height: 50px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #00baff;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
}
.self-item.si1::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 100px;
  height: 50px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/gantel-w.png) center no-repeat;
}
.self-item.si2::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 100px;
  height: 50px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/clock-w.png) center no-repeat;
}
.self-item.si3::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 100px;
  height: 50px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/body-w.png) center no-repeat;
}
.self-item.si4::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 100px;
  height: 50px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/zhim-w.png) center no-repeat;
}
.self-item.si5::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 100px;
  height: 50px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/coin-w.png) center no-repeat;
}
.self-item:hover {
  background-color: #00baff;
  -webkit-box-shadow: 0px 0px 20px #00baff;
          box-shadow: 0px 0px 20px #00baff;
}
.self-item:hover h3 {
  color: #fff;
}
.self-item:hover::before {
  background-color: #fff;
}
.self-item:hover.si1::after {
  background: url(../img/gantel.png) center no-repeat;
}
.self-item:hover.si2::after {
  background: url(../img/clock.png) center no-repeat;
}
.self-item:hover.si3::after {
  background: url(../img/body.png) center no-repeat;
}
.self-item:hover.si4::after {
  background: url(../img/zhim.png) center no-repeat;
}
.self-item:hover.si5::after {
  background: url(../img/coin.png) center no-repeat;
}
/* TEACHERS */
.teachers-item {
  padding-left: 30px;
}
.teachers-item h2 {
  font-size: 32px;
  margin-bottom: 0;
}
.teachers-item .program-list {
  margin: 20px 0;
}
.teachers-item .program-list li:nth-child(2n) {
  font-family: 'SourceSansPro-Regular';
}
/* OPININS */
.opinions {
  background-color: #fff;
}
.opinions .video {
  margin-top: 30px;
}
/* MODULE */
.module {
  background: url(../img/main-bg.jpg) center bottom no-repeat;
  background-size: contain;
}
.module .program-list {
  margin: 0;
}
.module .program-list li:nth-child(2n) {
  font-family: 'SourceSansPro-Regular';
}
.module .result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.module .result-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20%;
  padding: 20px;
  background-color: #00baff;
  min-height: 110px;
}
.module .result-left p {
  font-size: 26px;
  color: #fff;
  font-family: 'SourceSansPro-Black';
}
.module .result-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80%;
  padding: 20px;
  margin-right: -4px;
  background-color: #fff;
  min-height: 110px;
}
.module .result-right p {
  font-family: 'SourceSansPro-Semibold';
  margin-bottom: 0;
}
.panel {
  background-color: transparent;
  border-bottom: 1px solid #00baff;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.down {
  display: block;
  padding-left: 70px;
  width: 100%;
  height: 100%;
  background: url(../img/up.png) right center no-repeat;
}
.down.collapsed {
  background: url(../img/down.png) center right no-repeat;
}
.pt1 {
  background: url(../img/modul-ico1.png) left center no-repeat;
}
.pt2 {
  background: url(../img/modul-ico2.png) left center no-repeat;
}
.pt3 {
  background: url(../img/modul-ico3.png) left center no-repeat;
}
.pt4 {
  background: url(../img/modul-ico4.png) left center no-repeat;
}
.pt5 {
  background: url(../img/modul-ico5.png) left center no-repeat;
}
.pt6 {
  background: url(../img/modul-ico6.png) left center no-repeat;
}
.pt7 {
  background: url(../img/modul-ico7.png) left center no-repeat;
}
.panel-group .panel-heading {
  border-bottom: 1px solid #00baff;
}
.panel-group .panel-heading + .panel-collapse > .list-group,
.panel-group .panel-heading + .panel-collapse > .panel-body {
  border-top: none;
}
/* TRUST */
.trust {
  background: url(../img/trust-bg.jpg) center bottom no-repeat;
  background-size: cover;
}
.trust img {
  margin: 20px auto;
}
.trust .trust-text {
  font-size: 24px;
  padding-left: 100px;
  position: relative;
  margin-bottom: 30px;
}
.trust .tt1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 70px;
  height: 70px;
  background: url(../img/1.png) center no-repeat;
}
.trust .tt2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 70px;
  height: 70px;
  background: url(../img/2.png) center no-repeat;
}
.trust .tt3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 70px;
  height: 70px;
  background: url(../img/3.png) center no-repeat;
}
/* PRICE */
.price-item {
  min-height: 350px;
  margin-bottom: 30px;
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #00baff;
  -webkit-box-shadow: 0px 0px 3px #00baff;
          box-shadow: 0px 0px 3px #00baff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
}
.price-item p {
  font-size: 22px;
}
.price-item h2 {
  margin: 0px auto;
  padding-bottom: 10px;
}
.price-item:hover {
  -webkit-box-shadow: 0px 0px 10px #00baff;
          box-shadow: 0px 0px 10px #00baff;
}
/* STEPS */
.steps {
  background: url(../img/steps-bg.jpg) center no-repeat;
  background-size: cover;
}
.steps-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.steps-item-flex {
  max-width: 300px;
  text-align: center;
  padding: 20px;
  position: relative;
}
.steps-item-flex:nth-child(2n) {
  padding-top: 100px;
}
.steps-item-flex:nth-child(2n)::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 150px;
  width: 83px;
  height: 38px;
  background: url(../img/arrow-up.png) center no-repeat;
}
.steps-item-flex:first-child::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 120px;
  width: 78px;
  height: 51px;
  background: url(../img/arrow-down.png) center no-repeat;
}
.steps-item-flex:nth-child(3)::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 120px;
  width: 78px;
  height: 51px;
  background: url(../img/arrow-down.png) center no-repeat;
}
.steps-item-flex img {
  margin: 20px auto;
}
.steps .how-item {
  text-align: center;
}
.steps .how-item img {
  margin: 20px auto;
}
/* FAQ */
.faq {
  background: url(../img/main-bg.jpg) center no-repeat;
}
.faq .panel-heading {
  position: relative;
}
.faq .faq1::before {
  content: '1';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background-color: #00baff;
  font-family: 'SourceSansPro-Black';
  color: #fff;
  font-size: 24px;
  padding-left: 12px;
  padding-top: 3px;
}
.faq .faq2::before {
  content: '2';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background-color: #00baff;
  font-family: 'SourceSansPro-Black';
  color: #fff;
  font-size: 24px;
  padding-left: 12px;
  padding-top: 3px;
}
.faq .faq3::before {
  content: '3';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background-color: #00baff;
  font-family: 'SourceSansPro-Black';
  color: #fff;
  font-size: 24px;
  padding-left: 12px;
  padding-top: 3px;
}
.faq .faq4::before {
  content: '4';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background-color: #00baff;
  font-family: 'SourceSansPro-Black';
  color: #fff;
  font-size: 24px;
  padding-left: 12px;
  padding-top: 3px;
}
.faq .faq5::before {
  content: '5';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background-color: #00baff;
  font-family: 'SourceSansPro-Black';
  color: #fff;
  font-size: 24px;
  padding-left: 12px;
  padding-top: 3px;
}
.faq .faq6::before {
  content: '6';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background-color: #00baff;
  font-family: 'SourceSansPro-Black';
  color: #fff;
  font-size: 24px;
  padding-left: 12px;
  padding-top: 3px;
}
.faq .faq7::before {
  content: '7';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background-color: #00baff;
  font-family: 'SourceSansPro-Black';
  color: #fff;
  font-size: 24px;
  padding-left: 12px;
  padding-top: 3px;
}
.faq .faq8::before {
  content: '8';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background-color: #00baff;
  font-family: 'SourceSansPro-Black';
  color: #fff;
  font-size: 24px;
  padding-left: 12px;
  padding-top: 3px;
}
.faq .faq9::before {
  content: '9';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background-color: #00baff;
  font-family: 'SourceSansPro-Black';
  color: #fff;
  font-size: 24px;
  padding-left: 12px;
  padding-top: 3px;
}
.faq .faq10::before {
  content: '10';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background-color: #00baff;
  font-family: 'SourceSansPro-Black';
  color: #fff;
  font-size: 24px;
  padding-left: 7px;
  padding-top: 3px;
}
.faq .faq11::before {
  content: '11';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background-color: #00baff;
  font-family: 'SourceSansPro-Black';
  color: #fff;
  font-size: 24px;
  padding-left: 7px;
  padding-top: 3px;
}
.faq .faq12::before {
  content: '12';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background-color: #00baff;
  font-family: 'SourceSansPro-Black';
  color: #fff;
  font-size: 24px;
  padding-left: 7px;
  padding-top: 3px;
}
.faq .faq13::before {
  content: '13';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background-color: #00baff;
  font-family: 'SourceSansPro-Black';
  color: #fff;
  font-size: 24px;
  padding-left: 7px;
  padding-top: 3px;
}
.faq .down {
  padding-left: 40px;
  padding-right: 20px;
}
/* FOOTER */
.footer {
  padding: 30px 0;
  background-color: #fff;
  border-top: 2px solid #00baff;
}
.footer .copyright p,
.footer .copyright a {
  font-family: 'SourceSansPro-Light';
}
.footer .copyright a:hover {
  text-decoration: underline;
}
.footer .geo {
  position: relative;
}
.footer .geo::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 4px;
  width: 10px;
  height: 15px;
  background: url(../img/geo.png) center no-repeat;
}
.footer .social {
  text-align: right;
}
.footer .social a {
  display: inline-block;
  margin-left: 6px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.footer .social a:hover {
  opacity: 0.7;
}
/* MODAL */
.modal-dialog {
  border: 15px solid #00baff;
}
.modal-content {
  border-radius: 0px;
}
.form-label {
  margin: 10px auto;
}
button.close {
  width: 50px;
  height: 50px;
  background-color: #fff;
  position: absolute;
  top: -35px;
  right: -35px;
  opacity: 1;
  border-radius: 40px;
  -webkit-box-shadow: 0px 0px 3px #00446a;
          box-shadow: 0px 0px 3px #00446a;
}
button.close::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 3px;
  background-color: #00446a;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
button.close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 3px;
  background-color: #00446a;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
button.close:hover {
  opacity: 1;
  -webkit-box-shadow: 0px 0px 20px #00446a;
          box-shadow: 0px 0px 20px #00446a;
}
/* MEDIA */
@media (min-width: 400px) and (max-width: 767px) {
  .container {
    width: 400px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .navbar-phone,
  .navbar-phone:hover,
  .navbar-phone:focus {
    float: left;
    margin-top: 8px;
    margin-left: 10px;
    color: #fff;
  }
  .navbar-nav > li {
    display: block;
    text-align: right;
    margin-right: 0;
  }
  .navbar-nav > li:hover a::after {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  section {
    padding: 40px 0;
  }
  p {
    font-size: 16px;
  }
  h1 {
    margin-top: 0;
    font-size: 36px;
    letter-spacing: 0;
  }
  .h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
  }
  .main {
    text-align: center;
    padding-bottom: 0;
    background: none;
  }
  .main::before {
    left: 0;
    top: 0;
    width: 0;
  }
  .main .video {
    margin: 20px auto;
  }
  .main .description {
    font-size: 15px;
  }
  .main-form::before {
    left: 0;
    top: 0;
    width: 0;
  }
  .main-form p {
    font-size: 20px;
  }
  .logo img {
    max-width: 60px;
    margin-top: 10px;
  }
  .logo p {
    text-align: left;
    font-size: 14px;
  }
  .logo p.title {
    font-size: 22px;
    margin-top: 0;
  }
  .main-form .input-main,
  .main-form .btn-main {
    margin: 10px auto;
    font-size: 16px;
  }
  .main-form p.action {
    font-size: 14px;
  }
  .reason {
    background: none;
  }
  .doors::before {
    width: 0;
  }
  .doors-item .dih1::before,
  .doors-item .dih2::before,
  .doors-item .dih3::before,
  .doors-item .dih4::before,
  .doors-item .dih5::before,
  .doors-item .dih6::before,
  .doors-item .dih7::before {
    content: '';
  }
  .doors-item-head {
    font-size: 22px;
  }
  .order p {
    font-size: 30px;
  }
  .order p.action {
    font-size: 16px;
  }
  .program {
    background: none;
  }
  .program h4 {
    margin-top: 0;
    font-size: 24px;
  }
  .program-list {
    margin: 30px 0;
  }
  .program-list li {
    font-size: 16px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
  .program .nothing p {
    font-size: 18px;
  }
  .order img {
    float: none;
    margin: 0 auto;
  }
  .self-item {
    min-height: 250px;
    max-width: 400px;
    margin: 20px auto;
  }
  .self h2 {
    font-size: 20px;
  }
  .self h3 {
    font-size: 18px;
  }
  .self p {
    font-size: 16px;
  }
  .teachers-item {
    padding-left: 0;
  }
  .teachers-item h2 {
    font-size: 20px;
  }
  .trust {
    background: none;
  }
  .trust .trust-text {
    font-size: 16px;
  }
  .module .result {
    display: block;
  }
  .module .result-left {
    width: 100%;
    text-align: center;
  }
  .module .result-right {
    width: 100%;
  }
  .price-item {
    max-width: 350px;
  }
  .price-item p {
    font-size: 20px;
  }
  .steps {
    background: none;
  }
  .steps-item {
    display: block;
  }
  .steps-item-flex:nth-child(2n) {
    padding-top: 0;
  }
  .steps-item-flex::after {
    left: 0;
    top: 0;
    width: 0;
  }
  .steps-item-flex:first-child::after,
  .steps-item-flex:nth-child(2n)::after,
  .steps-item-flex:nth-child(3)::after {
    left: 0;
    top: 0;
    width: 0;
  }
  .right {
    text-align: center;
  }
  .copyright {
    text-align: center;
  }
  .copyright a {
    font-size: 16px;
  }
  .footer .social {
    margin-top: 15px;
    text-align: center;
  }
  .steps-item-flex {
    margin: 0px auto;
  }
  .faq {
    background: none;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .navbar-phone,
  .navbar-phone:hover,
  .navbar-phone:focus {
    float: left;
    margin-top: 8px;
    color: #fff;
  }
  .navbar-nav > li {
    display: block;
    text-align: right;
    margin-right: 0;
  }
  .navbar-nav > li:hover a::after {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  section {
    padding: 40px 0;
  }
  p {
    font-size: 16px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
  }
  .logo img {
    width: 60px;
    height: 60px;
    margin-top: 10px;
  }
  .logo p {
    text-align: left;
    font-size: 12px;
  }
  .logo p.title {
    margin-top: 0;
    font-size: 20px;
  }
  .main {
    text-align: center;
    padding-bottom: 0;
    background: none;
  }
  .main::before {
    left: 0;
    top: 0;
    width: 0;
  }
  .main .video {
    margin: 20px auto;
  }
  h1 {
    margin-top: 0;
    font-size: 58px;
    letter-spacing: 0;
  }
  .h1 {
    font-size: 44px;
  }
  .main-address p {
    font-size: 14px;
  }
  .main-phone p {
    font-size: 22px;
  }
  .main-phone .recall {
    font-size: 16px;
  }
  .main .description {
    font-size: 20px;
  }
  .main-form .input-main,
  .main-form .btn-main {
    margin: 10px auto;
  }
  .main-form::before {
    top: 150px;
    left: -30px;
  }
  .main-form p.action {
    max-width: 450px;
    margin: 10px auto;
    font-size: 16px;
  }
  .reason {
    background: none;
  }
  .document {
    background: none;
    background-color: #fff;
    min-height: auto;
  }
  .doors-item .dih1::before,
  .doors-item .dih2::before,
  .doors-item .dih3::before,
  .doors-item .dih4::before,
  .doors-item .dih5::before,
  .doors-item .dih6::before,
  .doors-item .dih7::before {
    content: '';
  }
  .doors::before {
    width: 0;
  }
  .order p {
    font-size: 30px;
  }
  .order p.action {
    font-size: 16px;
  }
  .order img {
    margin-top: 180px;
  }
  .program {
    background: none;
  }
  .program h4 {
    margin-top: 0;
    font-size: 24px;
  }
  .program-list {
    margin: 30px 0;
  }
  .program-list li {
    font-size: 18px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
  .program .nothing p {
    font-size: 20px;
  }
  .self-item {
    max-width: 400px;
    margin: 30px auto;
    min-height: 250px;
  }
  .self h2 {
    font-size: 22px;
  }
  .self p {
    font-size: 18px;
  }
  .teachers h2 {
    font-size: 28px;
  }
  .teachers-item {
    padding-left: 10px;
  }
  .teachers-item h2 {
    font-size: 20px;
    margin-top: 0;
  }
  .trust {
    background: none;
  }
  .trust .trust-text {
    font-size: 20px;
  }
  .price-item {
    padding: 15px;
    min-height: 300px;
  }
  .price-item p {
    font-size: 18px;
  }
  .price-item h2 {
    font-size: 24px;
  }
  .steps {
    background: none;
  }
  .steps-item-flex {
    max-width: 100px;
    padding: 0;
  }
  .steps-item-flex:nth-child(2n) {
    padding-top: 70px;
  }
  .steps-item-flex:first-child::after {
    top: 100px;
  }
  .steps-item-flex:nth-child(3)::after {
    top: 100px;
  }
  .copyright a {
    font-size: 15px;
  }
  .doors,
  .module,
  .faq {
    background: none;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  section {
    padding: 50px 0;
  }
  p {
    font-size: 16px;
  }
  .navbar-nav li {
    margin-right: 0;
  }
  .navbar-nav li a {
    font-size: 18px;
  }
  .logo p {
    font-size: 14px;
  }
  .logo p.title {
    font-size: 20px;
  }
  .logo p img {
    width: 60px;
    height: 60px;
  }
  .main {
    padding-bottom: 50px;
  }
  .main::before {
    left: 0;
    top: -80px;
  }
  .main-address p {
    font-size: 16px;
  }
  h1 {
    font-size: 55px;
  }
  .h1 {
    font-size: 40px;
  }
  .main .description {
    font-size: 16px;
  }
  .main-form::before {
    left: -210px;
  }
  .main-form p {
    font-size: 17px;
  }
  .main-form p.action {
    font-size: 16px;
  }
  .input-main {
    padding: 10px;
  }
  h2 {
    font-size: 28px;
  }
  .reason {
    background: none;
  }
  .document {
    background: none;
    background-color: #fff;
  }
  .doors::before {
    width: 800px;
    background-size: contain;
  }
  .doors-item p {
    font-size: 16px;
  }
  .doors-item-head {
    font-size: 22px;
  }
  .order p {
    font-size: 32px;
  }
  .order p.action {
    font-size: 16px;
  }
  .program {
    background: none;
  }
  .program h4 {
    margin-top: 0px;
  }
  .program .nothing p {
    font-size: 20px;
  }
  .program-list {
    margin: 30px 0;
  }
  .program-list li {
    padding: 5px 2px 5px 45px;
    margin-bottom: 10px;
    font-size: 18px;
  }
  .self h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 20px;
  }
  .self p {
    font-size: 16px;
  }
  .teachers-item h2 {
    font-size: 24px;
    margin-top: 0;
  }
  .trust {
    background: none;
  }
  .trust .trust-text {
    font-size: 20px;
  }
  .price-item p {
    font-size: 18px;
  }
  .steps-item-flex {
    width: 160px;
    padding: 0;
  }
  h4 {
    font-size: 18px;
  }
  .footer .copyright a {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1799px) {
  section {
    padding: 50px 0;
  }
  .main {
    padding-bottom: 50px;
  }
  .main::before {
    left: 0;
    top: -80px;
  }
  h1 {
    font-size: 65px;
    margin-top: -160px;
  }
  .h1 {
    font-size: 42px;
  }
  .main .description {
    font-size: 20px;
  }
  .main-form p {
    font-size: 21px;
  }
  .reason {
    background: url(../img/discobol.png) left 200px no-repeat;
  }
  .program {
    background: url(../img/girl-rounds.png) left center no-repeat;
  }
}
@media (min-width: 1800px) {
  .container {
    width: 1370px;
  }
}
.hours, .minutes, .seconds {
  display: none;
}
#cookie_notification{
  display: none;
  justify-content: space-between;
  align-items: flex-end;
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: 1000px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 25px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
}
#cookie_notification p {
  margin: 0;
  font-size: 14px;
  text-align: left;
  color: #000;
}
#cookie_notification a {
  color: #284e92;
  font-size: 14px;
}
#cookie_notification .btn {
  font-size: 14px;
}
@media (min-width: 576px){
  #cookie_notification.show{
    display: flex !important;
  }
  .cookie_accept{
    margin: 0 0 0 25px;
  }
}
@media (max-width: 575px){
  #cookie_notification.show{
    display: block;
    text-align: left;
  }
  .cookie_accept{
    margin: 10px 0 0 0;
  }
}