@import url(fonts/raleway.css);
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,700&subset=cyrillic');
* {
  margin: 0;
  padding: 0;
}
html {
  font-size: 10px;
  padding: 30px;
  background: #1566c4;
  font-family: 'Open Sans', sans-serif;
}
@media (max-width: 1500px) {
  html {
    font-size: 9px;
  }
}
@media (max-width: 992px) {
  html {
    padding: 10px;
    font-size: 9px;
  }
}
#content {
  -webkit-box-shadow: 0px 0px 26.1px 3.9px rgba(25, 82, 149, 0.8);
          box-shadow: 0px 0px 26.1px 3.9px rgba(25, 82, 149, 0.8);
  background: #fff;
}
.c {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}
.button {
  background: #09a137;
  font-family: 'Raleway';
  font-size: 2rem;
  padding: 2.5rem 3rem;
  border: none;
  outline: none;
  color: #fff;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.button + .button {
  margin-left: 3rem;
}
.button.transparent {
  background: rgba(255, 255, 255, 0.2);
}
.button.blue {
  background: #1a5bdd;
  padding: 2rem 2.5rem;
}
.button:hover {
  background: #0ab93f;
}
.button:hover.transparent {
  background: rgba(255, 255, 255, 0.27);
}
.button:hover.blue {
  background: #2a69e6;
}
@media (max-width: 992px) {
  .button {
    font-size: 2.1rem;
    width: 100%;
  }
  .button + .button {
    margin-left: 0;
    margin-top: 2rem;
  }
  .button span {
    display: none;
  }
}
header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 2px solid #d7d7d7;
  padding: 0 0 0 4.5rem;
}
header .logo {
  padding: 1.7rem 0 1.7rem 0;
}
@media (max-width: 1025px) {
  header {
    padding: 0 0 0 1.5rem;
  }
  header .menu {
    display: none;
  }
}
.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.menu div {
  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;
  cursor: pointer;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  position: relative;
}
.menu div:before {
  height: 2px;
  width: 100%;
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -2px;
  background: #4693ed;
  opacity: 0;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.menu div span {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.8rem;
  color: #8f8f8f;
  line-height: 1;
  padding: 0 3rem;
}
.menu div span span {
  -webkit-transition: 0.25s;
  transition: 0.25s;
  height: 0;
  overflow: hidden;
  color: #bfbfbf;
  font-size: 1.3rem;
  display: block;
  color: #bfbfbf !important;
  padding: 0 !important;
  position: relative;
  top: 5px;
  font-weight: 400;
  letter-spacing: -0.25px;
}
.menu div span.phone {
  color: #5c5c5c;
  font-weight: 600;
  padding: 1rem 4.5rem 1rem 4rem;
}
.menu div:hover {
  background-color: #f8f7f7 !important;
}
.menu div:hover span {
  color: #3175c6;
}
.menu div:hover span span {
  height: 1.5rem;
}
.menu div:hover:before {
  opacity: 1;
}
.menu div.phone-block {
  background: url(../img/phone.svg) no-repeat 16px center;
  background-size: 9px !important	;
}
.mobile-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  top: -100%;
  left: 0;
  z-index: 9;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  background: rgba(0, 0, 0, 0.97);
}
.mobile-menu.active {
  top: 0;
}
.mobile-menu .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -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;
  padding: 2rem;
}
.mobile-menu .top span {
  color: #656565;
  font-size: 1.9rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 1.5rem;
}
.mobile-menu .top div {
  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;
}
.mobile-menu .menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mobile-menu .menu div {
  padding-left: 2rem;
  border-bottom: 2px solid rgba(86, 86, 86, 0.2);
}
.mobile-menu .menu div > span {
  padding: 2rem 3rem 2rem 1.5rem;
  display: block;
  width: 100%;
  color: #fff;
}
.mobile-menu .menu div:before {
  display: none;
}
.mobile-menu .menu div:hover {
  background: none !important	;
  border-bottom: 2px solid rgba(86, 86, 86, 0.2);
}
.mobile-menu .close-menu {
  opacity: 0.5;
  cursor: pointer;
}
.hero-banner {
  background: url(../img/first.jpg) no-repeat center right;
  background-size: cover;
  padding: 14rem 4.5rem;
}
.hero-banner .event-type {
  font-size: 2.2rem;
  font-weight: 300;
  color: #b2aead;
  font-family: 'Open Sans', sans-serif;
  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;
}
.hero-banner .event-type span {
  display: inline-block;
  border-radius: 50%;
  background: #09a137;
  min-width: 9px;
  min-height: 9px;
  margin-right: 1rem;
}
.hero-banner .page-title {
  font-size: 11rem;
  font-family: 'Raleway';
  font-weight: 800;
  color: #fff;
  padding: 3.5rem 0;
}
.hero-banner .page-desription {
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  color: #c6c2c0;
  font-size: 2.5rem;
  line-height: 1.3;
}
.hero-banner .page-date {
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  color: #c6c2c0;
  font-size: 2.5rem;
  padding: 6rem 0 6.5rem;
}
@media (max-width: 1500px) {
  .hero-banner {
    padding: 7rem 4.5rem;
  }
}
@media (max-width: 992px) {
  .hero-banner {
    padding: 4rem 1.5rem;
    background: url(../img/mobile-bg.jpg) no-repeat center top;
    background-size: cover;
  }
  .hero-banner .page-title {
    font-size: 6rem;
    padding: 2rem 0 3.5rem;
  }
  .hero-banner .event-type {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    line-height: 1.3;
  }
  .hero-banner .event-type span {
    margin-top: 0.9rem;
  }
  .hero-banner .page-date {
    padding: 4rem 0 4.5rem;
  }
}
.review {
  padding-bottom: 9rem;
  padding-top: 2rem;
}
.review .pt-70 {
  padding-top: 7.5rem;
}
.review .pt-70 img {
  display: block;
  max-width: 100%;
}
.review .c {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.review .rev-right {
  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;
}
.review .rev-body {
  padding: 25px 0 0 100px;
  max-width: 520px;
  background: url(../img/quote.svg) no-repeat 10px top;
  background-size: 55px;
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
}
.review .rev-body .rev-text {
  font-size: 1.9rem;
  color: #4b4b4b;
  line-height: 1.5;
}
.review .rev-body .rev-author {
  text-align: right;
  margin-top: 5rem;
}
.review .rev-body .rev-author .woodwerk {
  position: absolute;
}
@media (max-width: 992px) {
  .review .rev-body .rev-author .woodwerk {
    position: static;
  }
}
.review .rev-body .rev-author .woodwerk + div {
  display: inline-block;
}
.review .rev-body .rev-author img {
  margin-right: 3rem;
}
.review .rev-body .rev-author span {
  display: block;
  font-style: italic;
  text-align: right;
}
.review .rev-body .rev-author span.desc {
  color: #d1d1d1;
  font-size: 1.6rem;
}
.review .rev-body .rev-author span.name {
  font-size: 1.9rem;
  color: #a9a9a9;
  margin-bottom: 0.5rem;
  padding-top: 0.5rem;
}
@media (max-width: 1025px) {
  .review {
    padding: 2rem 0 3rem;
  }
  .review .c {
    display: block;
  }
  .review .rev-body {
    padding: 1.5rem;
    background: transparent;
    display: block;
    max-width: 100% !important;
  }
  .review .rev-body .rev-author {
    display: block;
    margin-top: 2rem;
  }
  .review .rev-body .rev-author img {
    margin: 0 auto 1rem auto;
    display: block;
  }
  .review .pt-70 img {
    margin: 0 auto;
  }
}
.year_later {
  padding: 10rem 0 12rem;
  background: #343434;
}
.year_later .title {
  color: #ffd800;
  font-size: 3.8rem;
  font-family: 'Raleway';
  font-weight: 700;
  padding-bottom: 2rem;
}
.year_later .title span {
  color: #fff;
}
.year_later .list {
  font-family: 'Open Sans', sans-serif;
}
.year_later .list ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.year_later .list ul li {
  position: relative;
  color: #aaa;
  font-weight: 600;
  font-size: 1.8rem;
  padding: 2rem 0 2.5rem 7rem;
  border-bottom: 2px solid #3f3f3f;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  line-height: 1.5;
}
.year_later .list ul li:before {
  content: '—';
  position: absolute;
  color: #aaa;
  left: 18px;
  top: 1.25rem;
  font-size: 2.5rem;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.year_later .list ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.year_later .list ul li:hover {
  color: #d5d5d5;
}
.year_later .list ul li:hover:before {
  color: #d5d5d5;
}
@media (min-width: 1025px) AND (max-width: 1500px) {
  .year_later {
    padding: 6rem 8rem 7rem;
  }
}
@media (max-width: 992px) {
  .year_later {
    padding: 3rem 1.5rem 4rem;
  }
  .year_later .title {
    padding-bottom: 1rem;
  }
  .year_later .list ul li {
    font-size: 2rem;
    padding: 2.5rem 0 3rem 0;
  }
  .year_later .list ul li:before {
    display: none;
  }
}
.four {
  padding: 11rem 0 12rem;
  background: #2e2e2e;
}
.four .title {
  font-family: 'Raleway';
  font-size: 3.2rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
}
.four .title.yellow {
  padding: 2rem 0 4rem;
  color: #f7dd00;
}
@media (max-width: 992px) {
  .four {
    padding: 3rem 1.5rem 4rem;
  }
  .four .title {
    padding-bottom: 1rem;
    line-height: 1.3;
  }
  .four .title.yellow {
    padding: 1.5rem 0 3rem;
  }
}
@media (min-width: 1025px) AND (max-width: 1500px) {
  .four {
    padding: 6rem 0 7rem;
  }
}
.white_block {
  padding: 11rem 0 12rem;
}
.white_block p {
  font-family: 'Open Sans', sans-serif;
  color: #4b4b4b;
  font-size: 1.9rem;
  line-height: 1.7;
}
.white_block p + p {
  margin-top: 2.5rem;
}
.white_block .bold {
  font-weight: 700;
  color: #4b4b4b;
  font-size: 2.5rem;
  padding: 3rem 0;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.4;
}
.white_block .bold span {
  display: block;
}
.white_block .bold .blue {
  color: #1a5bde;
}
@media (max-width: 992px) {
  .white_block {
    padding: 3rem 1.5rem 4rem;
  }
  .white_block .bold {
    padding: 3.5rem 0;
  }
}
@media (min-width: 1025px) AND (max-width: 1500px) {
  .white_block {
    padding: 6rem 0 7rem;
  }
}
.gray_block {
  padding: 12rem 0 14rem;
  background: #f2f2f2;
}
.gray_block .title {
  color: #1a5bde;
  font-family: 'Raleway';
  font-weight: 700;
  font-size: 3.8rem;
  padding-bottom: 3rem;
}
.gray_block p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.9rem;
  line-height: 1.7;
  max-width: 80%;
}
.gray_block p span {
  color: #1a5bde;
  font-weight: 700;
}
.gray_block p.yellow {
  margin: 4rem 0;
  padding: 3rem 0 4rem;
  font-size: 3rem;
  line-height: 1.4;
  max-width: 80%;
}
@media (max-width: 992px) {
  .gray_block {
    padding: 3rem 1.5rem 4rem;
  }
  .gray_block .title {
    padding-bottom: 2rem;
  }
  .gray_block .title span {
    display: none;
  }
  .gray_block p {
    max-width: 100% !important;
  }
}
@media (min-width: 1025px) AND (max-width: 1500px) {
  .gray_block {
    padding: 6rem 0 7rem;
  }
}
.programm {
  background: #fff;
  padding: 11rem 0;
}
.programm .title {
  color: #4b4b4b;
  font-size: 3.8rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  padding-bottom: 5rem;
}
.programm .name {
  color: #1a5bde;
  font-weight: 700;
  font-size: 2.5rem;
  padding-bottom: 2rem;
}
.programm .list + .list {
  padding-top: 4.5rem;
}
.programm ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.programm ul li {
  position: relative;
  padding-left: 4.5rem;
  padding-bottom: 2rem;
  color: #4b4b4b;
  font-size: 1.9rem;
}
.programm ul li:before {
  content: '–';
  position: absolute;
  top: 0;
  left: 5px;
}
.programm ul li:last-child {
  padding-bottom: 0;
}
.programm .buttons {
  margin-top: 5rem;
}
@media (max-width: 992px) {
  .programm {
    padding: 3rem 1.5rem 4rem;
  }
  .programm .title {
    font-size: 3rem;
    padding-bottom: 3rem;
  }
  .programm ul li {
    padding-left: 3.5rem;
    padding-bottom: 1.5rem;
  }
  .programm .buttons {
    margin-top: 4rem;
  }
}
@media (min-width: 1025px) AND (max-width: 1500px) {
  .programm {
    padding: 6rem 0 7rem;
  }
}
.speaker {
  background: #f2f2f2;
  padding-bottom: 9.5rem;
}
.speaker .c {
  max-width: 965px;
}
.speaker .title {
  color: #1a5bde;
  font-size: 3.5rem;
  font-weight: 700;
  font-family: 'Raleway';
  padding: 6rem 0 4.5rem;
}
.speaker .title span {
  display: block;
  padding-top: 8px;
  color: #4b4b4b;
  font-size: 1.9rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}
.speaker .speaker-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0px 7px 8px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 7px 8px 0px rgba(0, 0, 0, 0.12);
}
.speaker .speaker-body .speaker-image img {
  display: block;
}
.speaker .speaker-body .social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #1d232f;
  padding: 2rem 0;
  max-width: 355px;
  margin: 0 auto;
}
.speaker .speaker-body .social a {
  text-align: center;
}
.speaker .speaker-body .social a img {
  opacity: 0.4;
  margin: 0 auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.speaker .speaker-body .social a + a {
  margin-left: 3rem;
}
.speaker .speaker-body .social a:hover img {
  opacity: 0.8;
}
.speaker .speaker-body .speaker-text {
  background: #fff;
  padding: 3.5rem 4rem;
}
.speaker .speaker-body .speaker-text p {
  font-size: 1.53rem;
  color: #4b4b4b;
  line-height: 1.5;
}
.speaker .speaker-body .speaker-text p + p {
  margin-top: 1.55rem;
}
@media (max-width: 992px) {
  .speaker {
    padding: 0 1.5rem 2rem;
    background: #fff;
  }
  .speaker .title {
    text-align: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 3px;
  }
  .speaker .speaker-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .speaker .speaker-body .speaker-text {
    padding: 4rem 2rem;
  }
  .speaker .speaker-body .speaker-image img {
    max-width: 100%;
    margin: 0 auto;
  }
}
@media (min-width: 1025px) AND (max-width: 1500px) {
  .speaker {
    padding-bottom: 8.5rem;
  }
  .speaker .speaker-text p {
    font-size: 1.7rem !important	;
  }
}
.speaker-say {
  background: #2e2e2e;
  font-family: 'Open Sans', sans-serif;
  padding: 9rem 0;
}
.speaker-say .c {
  max-width: 965px;
}
.speaker-say .c:after {
  width: 135px;
  height: 100px;
  background: url(../img/quote-2.png) no-repeat center center;
  background-size: 100%;
  position: absolute;
  left: -6.5rem;
  top: -3rem;
  content: '';
  display: block;
}
.speaker-say .title {
  color: #f7dd00;
  font-size: 2.5rem;
  padding-bottom: 2rem;
  font-weight: 700;
}
.speaker-say .text {
  color: #e0e4ec;
  font-size: 2.2rem;
  line-height: 1.5;
}
@media (max-width: 1025px) {
  .speaker-say .c:after {
    display: none;
  }
}
@media (max-width: 992px) {
  .speaker-say {
    padding: 3rem 1.5rem 4rem;
  }
  .speaker-say .c:after {
    display: none;
  }
  .speaker-say .c .text {
    line-height: 1.3;
  }
}
@media (min-width: 1025px) AND (max-width: 1500px) {
  .speaker-say {
    padding: 6rem 0 7rem;
  }
}
.form {
  background: #ffffff;
  padding: 10rem 0 5rem;
}
.form .c {
  max-width: 990px;
}
.form .title {
  font-family: 'Raleway';
  font-weight: 700;
  color: #1a5bde;
  font-size: 3.3rem;
  line-height: 1.3;
  padding-bottom: 7rem;
}
@media (max-width: 992px) {
  .form {
    padding: 3rem 1.5rem 5rem;
  }
  .form .title {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    text-align: center;
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 1025px) AND (max-width: 1500px) {
  .form {
    padding: 6rem 0 7rem;
  }
}
.form-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0px 0px 64.4px 5.6px rgba(157, 169, 194, 0.42);
          box-shadow: 0px 0px 64.4px 5.6px rgba(157, 169, 194, 0.42);
  padding-bottom: 5rem;
  background: #fff;
  max-width: 907px;
  margin: 0 auto;
}
.form-body .form-body-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.form-body .city-date {
  font-size: 2.1em;
  font-family: 'Open Sans', sans-serif;
  color: #0a0b0b;
  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;
  font-weight: 700;
  padding: 4.5rem 0 3rem 0;
  margin: 0 0 3rem 5rem;
  border-bottom: 2px solid #f8f8f8;
}
.form-body .city-date .city {
  padding: 0 42px 0 21px;
  position: relative;
}
.form-body .city-date .city:after {
  display: block;
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 2px solid #3e3e3e;
  border-right: 2px solid #3e3e3e;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
  right: 16px;
}
.form-body .city-date img {
  display: block;
}
.form-body .price-time {
  background: #f7f7f8;
  border-left: 4px solid #1a5bdd;
  font-family: 'Open Sans', sans-serif;
  padding: 3.5rem 4rem;
  margin-left: 5rem;
  display: inline-block;
}
.form-body .price-time .price {
  color: #a7a7a7;
  font-size: 1.5rem;
}
.form-body .price-time .new-price {
  color: #0a0b0b;
  font-size: 1.5rem;
  font-weight: 700;
}
.form-body .price-time .new-price td {
  padding-top: 0.5em;
}
.form-body .price-time .new-price td:first-child {
  padding-right: 1rem;
}
.form-body .price-time .new-price td:last-child {
  color: #1a5bde;
}
.form-body .date-time {
  color: #0a0b0b;
  font-size: 1.5rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  margin-left: 5rem;
}
.form-body .date-time .date {
  padding: 0.5rem 0;
  background: url(../img/date.png) no-repeat left center;
  padding-left: 5rem;
  margin: 2rem 0 1rem;
}
.form-body .date-time .time {
  padding: 0.5rem 0;
  background: url(../img/time.png) no-repeat left center;
  padding-left: 5rem;
  margin-bottom: 2rem;
}
.form-body .tickets {
  color: #0a0b0b;
  line-height: 1.3;
  font-size: 1.3rem;
  border-left: 4px solid #9f1818;
  font-family: 'Open Sans', sans-serif;
  padding: 3.3rem 3.5rem 3.5rem 4rem;
  background: #f7f7f8;
  font-weight: 600;
  margin-left: 5rem;
  display: inline-block;
}
.form-body .form-body-right {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.form-body .form-body-right .city-date {
  margin: 0 5rem 3rem 0;
  padding-left: 6rem;
}
.form-body .form-body-right form {
  padding: 0 5rem 0 6rem;
}
.form-body .form-body-right form > div {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 2rem;
  position: relative;
}
.form-body .form-body-right label {
  color: #848585;
  font-size: 1.3rem;
  padding-bottom: 0.7rem;
  font-family: 'Open Sans', sans-serif;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.form-body .form-body-right label .no-required {
  color: #c4c4c4;
}
.form-body .form-body-right input {
  display: block;
  color: #0a0b0b;
  font-size: 1.8rem;
  font-family: 'Open Sans', sans-serif;
  outline: none;
  padding: 0.75rem 1rem;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  border: 1px solid #ededed;
  background-position: center right !important;
  background-repeat: no-repeat;
  line-height: 1.4;
  width: 100%;
}
.form-body .form-body-right input:focus {
  background-color: #f7f7f8;
}
.form-body .form-body-right input:before {
  position: absolute;
  display: block;
  content: 'q';
}
.form-body .form-body-right input.error,
.form-body .form-body-right input.error-field {
  border: 1px solid #ea5050;
  background-image: url(../img/error-icon.svg) !important;
}
.form-body .form-body-right input.valid,
.form-body .form-body-right input.valid-field {
  background-image: url(../img/valid-icon.svg);
}
.form-body .form-body-right .promo.status {
  position: absolute;
  bottom: 1.4rem;
  right: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  color: #00aa51;
}
.form-body .form-body-right .politics {
  color: #c1c2c2;
  line-height: 1.3;
  font-size: 1.3rem;
}
.form-body .form-body-right .politics a {
  color: #b0c6f3;
}
@media (max-width: 992px) {
  .form-body .form-body-right .politics br {
    display: none;
  }
}
.form-body .timer {
  margin-top: 3rem;
  max-width: 250px;
}
.form-body .timer-head-block {
  color: #a7a7a7;
  font-size: 1.5rem;
  font-weight: 400;
  padding-bottom: 0.4rem;
  font-family: 'Open Sans', sans-serif;
}
.form-body .timer-body-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}
.form-body .timer-body-block .table-cell {
  width: 44px;
}
.form-body .timer-body-block .tab-metr {
  color: #a7a7a7;
  font-size: 1.3em;
  position: relative;
  text-align: center;
}
.form-body .timer-body-block .tab-val {
  color: #1a5bde;
  font-size: 3.8rem;
  position: relative;
  width: 100%;
  text-align: center;
}
.form-body .timer-body-block .tab-val:after {
  position: absolute;
  display: block;
  content: ':';
  top: -0.1rem;
  right: -2rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .form-body .timer-body-block .tab-val:after {
    right: -1.6rem;
  }
}
.form-body .timer-body-block .second .tab-val:after {
  content: '';
}
@media (max-width: 992px) {
  .form-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 1rem;
  }
  .form-body .form-body-left {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
  .form-body .form-body-left > div {
    margin-left: 0;
  }
  .form-body .city-date {
    padding-left: 0;
  }
  .form-body .form-body-right form {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .form-body .form-body-right .city-date {
    margin-left: 1.5rem;
    padding-left: 0;
  }
  .form-body .price-time {
    padding: 3rem 1rem 3rem 1.5rem;
  }
  .form-body table {
    width: 100%;
    max-width: 400px;
  }
}
.contact-table {
  margin: 8rem auto 0 auto;
  font-family: 'Open Sans', sans-serif;
}
.contact-table td {
  vertical-align: top;
  line-height: 1.4;
  padding-bottom: 3rem;
}
.contact-table td:first-child {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4b4b4b;
}
.contact-table td:last-child {
  color: #1a5bdd;
  font-size: 2.5rem;
  font-weight: 700;
  padding-left: 3rem;
}
@media (max-width: 1025px) {
  .contact-table td {
    display: block;
    text-align: center;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .contact-table td:last-child {
    padding-bottom: 0 !important;
  }
  .contact-table td:first-child {
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 992px) {
  .contact-table {
    margin-top: 5rem;
  }
}
footer {
  background: #f9f9f7;
  border-top: 1px solid #ececea;
  padding: 4rem 0;
  font-family: 'Open Sans', sans-serif;
}
footer .c {
  max-width: 965px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -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;
}
footer .copy {
  color: #c0c0c0;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 300;
}
footer .icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
footer .icons a {
  opacity: 0.6;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
footer .icons a:hover {
  opacity: 1;
}
footer .icons a + a {
  margin-left: 3rem;
}
@media (max-width: 1025px) {
  footer .c {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .icons {
    margin-bottom: 1.5rem;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  footer .copy {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 19, 47, 0.75);
  pointer-events: none;
  opacity: 0;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  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;
}
.modal.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 99;
}
.modal .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.modal .content {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .modal {
    overflow-y: scroll !important	;
  }
  .modal .content {
    height: 100%;
  }
}
.close-modal {
  position: absolute;
  cursor: pointer;
  right: -35px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.close-modal:hover {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.woodwerk {
  height: 55px;
  overflow: hidden;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.woodwerk:hover {
  height: 78px;
}
@media (min-width: 992px) AND (max-width: 1025px) {
  #content > section:not(.hero-banner) {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .speaker .speaker-body .speaker-text {
    padding: 3rem;
  }
}
.show-menu {
  display: none;
}
button.burger {
  width: 35px;
  height: 25px;
  border: none;
  background: transparent;
  position: relative;
  cursor: pointer;
}
button.burger:focus {
  outline: none;
}
button.burger.burger1:after,
button.burger.burger1:before,
button.burger.burger1 span {
  width: 100%;
  height: 4px;
  border-radius: 100px;
  position: absolute;
  left: 0px;
  background: #4b4b4b;
}
button.burger.burger1:after,
button.burger.burger1:before {
  content: "";
}
button.burger.burger1:after {
  top: 0px;
  margin-top: 0px;
  -webkit-transition: 0.2s all 0.4s, -webkit-transform 0.2s;
  transition: 0.2s all 0.4s, -webkit-transform 0.2s;
  transition: transform 0.2s, 0.2s all 0.4s;
  transition: transform 0.2s, 0.2s all 0.4s, -webkit-transform 0.2s;
}
button.burger.burger1:before {
  bottom: 0px;
  margin-bottom: 0px;
  -webkit-transition: 0.2s all 0.4s, -webkit-transform 0.2s;
  transition: 0.2s all 0.4s, -webkit-transform 0.2s;
  transition: transform 0.2s, 0.2s all 0.4s;
  transition: transform 0.2s, 0.2s all 0.4s, -webkit-transform 0.2s;
}
button.burger.burger1 span {
  top: 50%;
  margin-top: -2px;
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.2s, svisibility 0.2s;
  transition: opacity 0.2s, svisibility 0.2s;
}
.fixed {
  position: fixed;
  top: 0;
  right: 10px;
  padding: 1rem;
  background: #fff;
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.fixed.show {
  opacity: 1;
  pointer-events: auto;
}
.fixed .show-menu {
  padding-right: 0;
}
.fixed .show-menu button.burger {
  width: 35px;
  height: 25px;
}
@media (min-width: 992px) {
  .fixed {
    display: none;
  }
}
@media (max-width: 1025px) {
  .show-menu {
    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;
    padding-right: 2.5rem;
  }
  .hidden {
    display: none !important;
  }
}
#callback_modal form {
  padding: 0 4rem;
}
#callback_modal .city-date {
  padding-left: 3rem;
  margin-left: 1rem;
}
#callback_modal .form-body {
  padding-bottom: 3rem;
}
input[name="promo"] {
  background-image: none !important;
}
.widget {
  position: fixed;
  top: 30px;
  right: 60px;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.widget.active {
  opacity: 1;
  pointer-events: auto;
}
.widget .widget-title {
  font-size: 1.9rem;
  color: #181818;
  padding-bottom: 2rem;
  opacity: 0.5;
}
.widget .widget-content ul {
  list-style-type: none;
}
.widget .widget-content ul li {
  margin-bottom: 1rem;
}
.widget .widget-content ul span {
  font-size: 1.5rem;
  color: #969696;
  display: block;
  font-weight: 300;
}
.widget .widget-content p {
  color: #c0c0c0;
  font-size: 1.4rem;
  padding-bottom: 0.5rem;
}
.widget .widget-content p:first-child {
  color: #969696;
}
.country-filter-widget {
  font-family: 'Raleway';
}
.country-filter-widget .widget-content ul {
  list-style-type: none;
}
.country-filter-widget .widget-content li {
  display: block;
  font-size: 1.8rem;
  color: #9b9b9a;
  font-weight: 300;
  cursor: pointer;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  position: relative;
  overflow: hidden;
  padding-left: 1rem;
  padding-right: 1rem;
}
.country-filter-widget .widget-content li span {
  display: block;
  line-height: 1;
}
.country-filter-widget .widget-content li b + span {
  padding-left: 0;
  font-family: 'Open Sans', sans-serif;
}
.country-filter-widget .widget-content li b {
  font-weight: 700;
}
.country-filter-widget .widget-content li.active {
  color: #5f5f5f;
  font-weight: 700;
}
.country-filter-widget .widget-content li.active:before {
  opacity: 1;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.country-filter-widget .widget-content li.divider {
  margin: 2rem 0 !important;
  height: 1px;
  background: #969696;
  width: 100%;
  padding: 0;
}
.country-filter-widget .widget-content li.divider + li {
  margin-top: 0 !important;
}
.country-filter-widget .widget-content li.date-item {
  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;
}
.country-filter-widget .widget-content li:hover:not(.date-item) {
  color: #5f5f5f;
}
.country-filter-widget .widget-content li:hover:not(.date-item):not(.active):before {
  opacity: 0.3;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.country-filter-widget .widget-content li + li {
  margin-top: 2.5rem;
}
@media (max-width: 1600px) {
}
.form_done {
  min-width: 416px;
}
.form_done p {
  font-size: 2rem;
  color: #2c2c2c;
}
.form_done span {
  color: #bdbdbd;
  font-size: 1.6rem;
  display: block;
  padding: 2.5rem 0 4rem;
  line-height: 1.4;
}
.form_done div {
  display: inline-block !important;
  background: #efefef;
  color: #8e8e8e;
  font-weight: 300;
  font-size: 1.7rem;
  max-width: 180px;
  text-align: center;
  padding: 1.5rem 0;
  cursor: pointer;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.form_done div:hover {
  background: #e2e2e2;
}
.fixed-header {
  padding-left: 1.5rem;
  min-height: 60px;
  position: fixed;
  top: -100%;
  left: 30px;
  width: -webkit-calc(100% - 60px - 1.5rem);
  width: calc(100% - 60px - 1.5rem);
  background: #fff;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.fixed-header.active {
  opacity: 1;
  z-index: 3;
  top: 0%;
  pointer-events: auto;
}
.fixed-header .divider {
  padding: 0;
}
.fixed-header .divider div {
  height: 15px;
  padding: 0;
  background: #8f8f8f;
  width: 1px;
}
.fixed-header .menu div:hover {
  background: transparent !important;
}
.fixed-header .menu div:hover.phone-block {
  background: url(../img/phone.svg) no-repeat 16px center !important;
  background-size: 9px !important;
}
.fixed-header .menu div:hover:before {
  display: none;
}
@media (min-width: 1024px) AND (max-width: 1500px) {
  #content .review,
  #content .four,
  #content .white_block,
  #content .gray_block,
  #content .programm,
  #content .year_later,
  #content .yellow-div,
  #content .speaker,
  #content .form,
  #content .speaker-say {
    padding-left: 4.5rem;
    padding-right: 4.5rem;
  }
  #content .yellow-div {
    margin-left: -4.5rem;
    margin-right: -4.5rem;
  }
}
@media (max-width: 992px) {
  .white_block .bold {
    padding: 2.5rem 0;
  }
  .gray_block p.yellow {
    padding: 2rem;
  }
}
.sales {
  font-size: 13px;
  font-weight: 700;
  color: #1a5bde;
  padding-top: 1rem;
  cursor: pointer;
}
.sales span {
  text-decoration: underline;
}
#sales_modal .content {
  height: auto;
}
#sales_modal .wrap {
  background: #fff;
  padding: 5.5rem;
  max-width: 510px;
}
@media (max-width: 992px) {
  #sales_modal .wrap {
    padding: 2rem;
  }
}
#sales_modal .title {
  font-weight: 700;
  color: #0a0b0b;
  font-size: 2.1rem;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #f7f7f7;
}
#sales_modal .title span {
  font-size: 1.7rem;
  color: #898989;
  font-weight: 400;
  padding-top: 0.5rem;
  display: block;
}
#sales_modal table tr {
  vertical-align: top;
}
#sales_modal table td {
  padding-bottom: 2rem;
}
#sales_modal table td:first-child:not(.buttons-td) {
  color: #0a0b0b;
  font-weight: 700;
  font-size: 1.5rem;
  padding-right: 1rem;
}
#sales_modal table td:first-child:not(.buttons-td) span {
  display: block;
  font-size: 1.2rem;
  color: #b7b7b7;
  font-weight: 400;
  padding-top: 0.5rem;
}
#sales_modal table td:last-child:not(.buttons-td) {
  color: #1a5bde;
  font-weight: 700;
  font-size: 1.5rem;
}
#sales_modal table td:last-child:not(.buttons-td) span {
  color: #b7b7b7;
  font-weight: 400;
  padding-top: 0.5rem;
}
#sales_modal table td:last-child:not(.buttons-td) b {
  display: block;
  padding-top: 0.75rem;
}
#sales_modal table td.buttons-td {
  padding-bottom: 0;
  padding-top: 3rem;
}
@media (max-width: 992px) {
  #sales_modal table {
    width: 100%;
  }
  #sales_modal .button {
    width: 100%;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
  #sales_modal .close-modal {
    bottom: -40px;
    -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
            transform: translateX(50%);
    right: 50%;
  }
  #sales_modal td:not(.buttons-td) span {
    font-size: 1rem;
    display: block;
  }
  #sales_modal .title {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
}
input[data-phone] {
  padding-left: 10px !important;
}

.tabs {
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 2rem;
  margin-left: 5rem;
}
.tabs .tabs--header .tabs--header__title {
  font-size: 1.3rem;
  color: #949595;
  padding-bottom: 1rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}
.tabs .tabs--header .tabs--header__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.tabs .tabs--header .tabs--header__buttons div {
  padding: 1.5rem 2rem;
  color: #c1c1c1;
  border: 1px solid #ededed;
  font-size: 1.8rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 50%;
  text-align: center;
}
.tabs .tabs--header .tabs--header__buttons div span {
  position: relative;
  z-index: 9;
}
.tabs .tabs--header .tabs--header__buttons div:first-child {
  border-right: none;
}
.tabs .tabs--header .tabs--header__buttons div + div {
  border-left: none;
}
.tabs .tabs--header .tabs--header__buttons div.marker {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #ffeb99;
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: all 502ms cubic-bezier(0.185, 0.66, 0.315, 0.985);
  transition: all 502ms cubic-bezier(0.185, 0.66, 0.315, 0.985);
}
.tabs .tabs--header .tabs--header__buttons.default > div:first-child {
  color: #171719;
}
.tabs .tabs--header .tabs--header__buttons.business > div:nth-child(2) {
  color: #171719 !important;
}
.tabs .tabs--header .tabs--header__buttons.business .marker {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}