@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Regular.woff2"), url("../fonts/Montserrat-Regular.woff"), url("../fonts/Montserrat-Regular.ttf"), url("../fonts/Montserrat-Regular.eot"), url("../fonts/Montserrat-Regular.svg"); }

@font-face {
  font-family: Montserrat;
  font-display: swap;
  font-weight: 500;
  src: url("../fonts/Montserrat-Medium.woff2"), url("../fonts/Montserrat-Medium.woff"), url("../fonts/Montserrat-Medium.ttf"), url("../fonts/Montserrat-Medium.eot"), url("../fonts/Montserrat-Medium.svg"); }

@font-face {
  font-family: Montserrat;
  font-display: swap;
  font-weight: 700;
  src: url("../fonts/Montserrat-Bold.woff2"), url("../fonts/Montserrat-Bold.woff"), url("../fonts/Montserrat-Bold.ttf"), url("../fonts/Montserrat-Bold.eot"), url("../fonts/Montserrat-Bold.svg"); }

*, p, ol, ul {
  padding: 0;
  margin: 0; }

a:hover {
  text-decoration: none; }

body {
  min-width: 320px;
  color: #333;
  font-family: Montserrat; }

@-webkit-keyframes autofill {
  to {
    background: transparent; } }

input:-webkit-autofill {
  -webkit-animation-name: autofill;
          animation-name: autofill;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }

.container {
  max-width: 1200px; }

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  color: #333;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  background-color: #FFAB00;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  -webkit-transition: color 0.4s, background-color 0.4s;
  transition: color 0.4s, background-color 0.4s; }
  .button:hover {
    color: #fff;
    background-color: #FF8A00; }
  .button:focus {
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none; }

[data-toggle] {
  cursor: pointer; }

.section_title {
  font-size: 36px;
  line-height: 1.17;
  text-align: center;
  font-weight: 700; }
  .section_title.ta-l {
    text-align: left; }

.text_p {
  font-size: 20px;
  line-height: 1.4; }

.fw500 {
  font-weight: 500; }

.logo {
  display: inline-block; }
  .logo_icon {
    width: 140px;
    height: 178px; }

.list {
  list-style: none; }
  .list li {
    padding-left: 30px;
    position: relative; }
    .list li:not(:last-child) {
      margin-bottom: 20px; }
    .list li:before {
      content: '';
      width: 10px;
      height: 10px;
      position: absolute;
      left: 0;
      top: 8px;
      background-color: #FFAB00;
      border-radius: 10px; }

.flex_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .flex_wrap.jc-sb {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .flex_wrap.ai-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .flex_wrap.inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex; }

.contact_item {
  display: block;
  position: relative;
  vertical-align: middle;
  line-height: 1; }
  .contact_item:not(:last-child) {
    margin-bottom: 12px; }
  .contact_item_value {
    display: inline-block;
    vertical-align: middle;
    font-size: 20px;
    line-height: 1;
    font-weight: 500;
    color: #333;
    -webkit-transition: color 0.4s;
    transition: color 0.4s; }
  .contact_item a:hover {
    color: #FFAB00; }
  .contact_item_title {
    margin-bottom: 10px;
    font-weight: bold; }
  .contact_item.td-u .contact_item_value {
    text-decoration: underline; }
  .contact_item.multiline .contact_item_icon {
    top: 6px;
    bottom: unset; }
  .contact_item.multiline .contact_item_value {
    display: block; }
  .contact_item.only_icon {
    padding: 0; }
    .contact_item.only_icon .contact_item_icon {
      position: static;
      vertical-align: top; }
  .contact_item.no_icon {
    padding: 0; }
  .contact_item_icon {
    display: inline-block;
    margin-right: 5px;
    fill: #FFAB00; }

a.contact_item:hover .contact_item_value {
  color: #FFAB00; }

.input_wrap {
  position: relative;
  color: #333;
  font-size: 20px;
  font-family: Montserrat;
  margin-bottom: 10px;
  background-color: #fff;
  border-radius: 8px; }
  .input_wrap_error {
    display: none;
    position: absolute;
    left: 0;
    top: -13px;
    color: #f00;
    font-size: 12px;
    line-height: 1; }
  .input_wrap.invalidate .input_wrap_error {
    display: block; }

input, textarea {
  width: 100%; }
  input:not([type="submit"]), textarea:not([type="submit"]) {
    padding: 17px 20px;
    border: 1px solid #DEDEDE;
    border-radius: 8px;
    font-size: 20px;
    line-height: 1.2;
    background-color: #fff; }
    input:not([type="submit"]):focus, textarea:not([type="submit"]):focus {
      -webkit-box-shadow: none;
              box-shadow: none;
      outline: none; }

.placeholder {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  height: 18px;
  margin: auto;
  font-size: 18px;
  line-height: 1;
  color: #C7C7C7;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  will-change: transform;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s; }
  .placeholder.active {
    -webkit-transform: scale(0.75) translateY(-115%);
            transform: scale(0.75) translateY(-115%); }

.form_title {
  margin-bottom: 23px;
  text-align: center;
  font-size: 28px;
  line-height: 1.21;
  font-weight: 700; }

.form_wrap {
  position: relative; }

form.sending {
  opacity: 0; }
  form.sending ~ .preloader-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  form.sending ~ .data_warning {
    display: none; }

form.sent ~ .preloader-wrapper {
  display: none; }

form.sent ~ .mail_sent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

form.horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: -10px; }
  form.horizontal > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%; }

.close {
  width: 36px;
  height: 36px;
  padding: 12px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  -webkit-transition: fill 0.4s;
  transition: fill 0.4s; }
  .close:hover {
    fill: #FFAB00; }

.modal-content {
  padding: 30px 15px;
  position: relative;
  border: 0;
  border-radius: 8px; }

.modal-dialog {
  max-width: 320px; }

.modal_form_wrap {
  padding: 0 20px; }

.modal_form_title {
  margin-bottom: 30px; }

.modal_info .modal-dialog {
  max-width: 770px; }

.modal_info .modal-content {
  padding: 50px 60px 60px; }

.modal_info p:not(.form_title), .modal_info ol {
  font-size: 16px;
  line-height: 1.3; }
  .modal_info p:not(.form_title):not(:last-child), .modal_info ol:not(:last-child) {
    margin-bottom: 20px; }

.modal_info ol {
  padding-left: 25px;
  list-style: decimal; }
  .modal_info ol > li {
    padding-left: 10px; }
    .modal_info ol > li:not(:last-child) {
      margin-bottom: 15px; }
  .modal_info ol ul {
    margin: 0;
    padding-top: 10px; }
    .modal_info ol ul li {
      padding-left: 20px; }

.modal_info ul li:before {
  top: 4px; }

.modal_info .form_title {
  text-align: left; }

.modal_info b {
  display: block;
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 15px; }

.nano {
  height: 420px; }
  .nano > .nano-pane {
    width: 4px;
    opacity: 1;
    background-color: #D8D8D8; }
    .nano > .nano-pane > .nano-slider {
      margin: 0;
      border-radius: 8px;
      background-color: #262A2D; }
  .nano .content {
    padding-right: 35px; }

.data_warning {
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.2;
  color: #A4A4A4; }
  .data_warning.ta-c {
    text-align: center; }
  .data_warning_link {
    text-decoration: underline; }
    .data_warning_link:hover {
      text-decoration: none; }

.preloader {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
  .preloader__figure {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 115px;
    height: 115px;
    margin: auto; }
    .preloader__figure.preloader__figure_size_s {
      -webkit-transform: scale(0.5);
              transform: scale(0.5); }
    .preloader__figure.preloader__figure_size_m {
      -webkit-transform: scale(0.79);
              transform: scale(0.79); }
    .preloader__figure.preloader__figure_size_l {
      -webkit-transform: scale(1);
              transform: scale(1); }
  .preloader__item {
    position: absolute;
    background-color: transparent;
    width: 10px;
    height: 31px;
    border-radius: 5px;
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
    background-color: transparent;
    -webkit-animation-name: fadeG;
            animation-name: fadeG;
    -webkit-animation-duration: 1.2s;
            animation-duration: 1.2s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-direction: normal;
            animation-direction: normal; }
    .preloader__item-1 {
      top: 0;
      left: 10px;
      bottom: 0;
      -webkit-animation-delay: 0.45s;
              animation-delay: 0.45s;
      -webkit-transform: rotate(-90deg);
              transform: rotate(-90deg);
      margin: auto 0; }
    .preloader__item-2 {
      top: 11px;
      left: 22px;
      -webkit-animation-delay: 0.6s;
              animation-delay: 0.6s;
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg); }
    .preloader__item-3 {
      top: 0;
      left: 0;
      right: 0;
      -webkit-animation-delay: 0.75s;
              animation-delay: 0.75s;
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
      margin: 0 auto; }
    .preloader__item-4 {
      top: 11px;
      right: 22px;
      -webkit-animation-delay: 0.9s;
              animation-delay: 0.9s;
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg); }
    .preloader__item-5 {
      top: 0;
      right: 10px;
      bottom: 0;
      -webkit-animation-delay: 1.05s;
              animation-delay: 1.05s;
      -webkit-transform: rotate(90deg);
              transform: rotate(90deg);
      margin: auto 0; }
    .preloader__item-6 {
      right: 22px;
      bottom: 11px;
      -webkit-animation-delay: 1.2s;
              animation-delay: 1.2s;
      -webkit-transform: rotate(135deg);
              transform: rotate(135deg); }
    .preloader__item-7 {
      left: 0;
      right: 0;
      bottom: 0;
      -webkit-animation-delay: 1.35s;
              animation-delay: 1.35s;
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg);
      margin: 0 auto; }
    .preloader__item-8 {
      left: 22px;
      bottom: 11px;
      -webkit-animation-delay: 1.5s;
              animation-delay: 1.5s;
      -webkit-transform: rotate(-135deg);
              transform: rotate(-135deg); }

@-webkit-keyframes fadeG {
  100% {
    background-color: #FFAB00; } }

@keyframes fadeG {
  100% {
    background-color: #FFAB00; } }

.preloader-wrapper, .mail_sent {
  display: none;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent; }

.mail_sent_title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  text-align: center; }

.footer {
  padding: 23px 0;
  background-color: #333; }
  .footer_text {
    display: inline-block;
    color: #aaa;
    font-size: 14px;
    line-height: 1; }
    .footer_text:focus, .footer_text:hover {
      color: #aaa; }
    .footer_text span {
      vertical-align: middle; }
    .footer_text.td-u {
      text-decoration: underline; }
      .footer_text.td-u:hover {
        text-decoration: none; }
    .footer_text:not(:last-child) {
      margin-right: 35px; }
  .footer_wrap {
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto; }

.ps_logo {
  width: 101px;
  height: 20px; }

.page_404 {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.body_404 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  padding: 75px 0; }

.number_404 {
  font-size: 165px;
  line-height: 1;
  font-weight: 700; }

.text_404 {
  margin: 25px 0;
  max-width: 700px;
  text-align: center; }

.button_404 {
  padding: 0 20px; }

@media (max-width: 1199px) {
  .button {
    height: 50px;
    font-size: 18px; }
  .text_p {
    font-size: 16px;
    line-height: 1.25; }
  .form_title {
    font-size: 26px;
    line-height: 1.15;
    margin-bottom: 15px; }
  input:not([type="submit"]), textarea:not([type="submit"]) {
    font-size: 16px;
    padding: 15px 20px; }
  .placeholder {
    font-size: 14px;
    height: 14px; }
  .section_title {
    font-size: 26px; }
  .list li {
    padding-left: 20px; }
    .list li:not(:last-child) {
      margin-bottom: 12px; }
    .list li:before {
      top: 4px; } }

@media (max-width: 991px) {
  form.horizontal {
    max-width: 390px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    form.horizontal > * {
      -ms-flex-preferred-size: auto;
          flex-basis: auto; }
  .modal_info .modal-content {
    padding: 40px 15px 25px; }
  .number_404 {
    font-size: 120px; } }

@media (max-width: 767px) {
  .footer {
    padding: 23px 0 11px; }
    .footer_wrap {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
    .footer_text {
      display: block;
      margin-bottom: 12px;
      text-align: center; }
      .footer_text:not(:last-child) {
        margin-right: 0; } }

@media (min-width: 576px) and (max-width: 991px) {
  .modal_info .modal-dialog {
    max-width: 95%; } }

@media (max-width: 575px) {
  .modal-dialog {
    max-width: 290px;
    margin: 30px auto; } }

.header {
  width: 100%;
  position: relative;
  z-index: 1;
  margin: 0 auto -203px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 1200px;
  padding: 25px 15px 0; }
  .header .contact_item {
    margin-bottom: 0; }
  .header .button {
    width: 234px;
    margin-left: 30px; }

.main_section {
  max-width: 1920px;
  margin: 0 auto;
  height: 800px;
  padding-top: 207px;
  background: url("../images/main_bg.jpg") no-repeat;
  background-position: -1px -1px; }
  .main_section .container {
    position: relative;
    height: 100%; }
    .main_section .container > .row {
      height: 100%; }
  .main_section_tennis_trainer {
    height: 670px;
    position: absolute;
    bottom: 0;
    right: 20px; }
  .main_section_title_h2 {
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 1; }
  .main_section_title_h1 {
    margin-bottom: 30px;
    font-size: 70px;
    line-height: 1;
    font-weight: 700; }
  .main_section_title_h1, .main_section_title_h2, .main_section_desc {
    max-width: 330px;
    color: #fff; }
  .main_section_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 63px; }
  .main_section_tennis_trainer {
    width: 430px; }
  .main_section_action {
    padding: 40px 20px;
    background-color: #fff;
    -webkit-box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 8px; }
  .main_section_form_wrap {
    max-width: 270px;
    margin: 30px auto 0; }
  .main_section .parallax1 {
    bottom: 30%;
    right: -5%; }
    .main_section .parallax1 img {
      width: 279px; }
  .main_section .parallax2 {
    bottom: -34%;
    left: 1%; }
    .main_section .parallax2 img {
      -webkit-transform: rotate(-60deg);
              transform: rotate(-60deg);
      width: 164px; }

.discount {
  width: 100%;
  height: 64px;
  margin-bottom: 30px;
  border: 1px solid #DEDEDE;
  border-radius: 8px; }
  .discount_old_price {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 40%;
            flex: 1 0 40%;
    color: #CACACA;
    font-size: 29px;
    font-weight: 500;
    text-decoration: line-through; }
  .discount_new_price {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 60%;
            flex: 1 0 60%;
    position: relative;
    margin: -1px 0;
    padding-left: 8px;
    font-size: 32px;
    color: #fff;
    font-weight: 700;
    background-color: #D10000;
    border-radius: 0 8px 8px 0; }
    .discount_new_price:before {
      content: '';
      position: absolute;
      height: 100%;
      top: 0;
      left: 0;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 32px 0 32px 15px;
      border-color: transparent transparent transparent #fff; }
  .discount_old_price, .discount_new_price {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    line-height: 1; }

.custom-timer {
  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;
  line-height: 1; }
  .custom-timer__title {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center; }
  .custom-timer__part {
    position: relative;
    width: 25%;
    text-align: center; }
    .custom-timer__part:not(:last-child):after {
      content: ":";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 93%;
      font-size: 42px;
      line-height: 1;
      font-weight: 700; }
  .custom-timer__int {
    font-size: 42px;
    font-weight: 700; }
  .custom-timer__text {
    font-size: 12px;
    color: #838383; }
  .custom-timer__int, .custom-timer__text, .custom-timer__part {
    display: block;
    line-height: 1; }

.section_title.large {
  font-size: 48px; }

.section_video {
  padding: 0 15px;
  max-width: 1000px;
  margin: 100px auto;
  position: relative; }
  .section_video_desc {
    margin-bottom: 40px;
    text-align: center; }
  .section_video .section_title {
    margin-bottom: 10px; }
  .section_video .gallery_block {
    width: 100%;
    height: 543px;
    margin: 0;
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1); }
  .section_video_bg {
    width: 525px;
    height: 305px;
    position: absolute;
    bottom: -32px;
    right: -25px;
    z-index: -1;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAg0AAAExBAMAAAANZozsAAAAD1BMVEUAAADr6+vr6+vn5+fr6+svmSEAAAAABHRSTlMAz78gcVMlWAAAAZBJREFUeNrs2LENAkEQBMEPAYMAMAgAiADQ5x8TEo99FtLM6aqs2QDW6e3xum1fi6/zfjmOxde+P49j8XXdT8ex+Lq/f19iAQAAAP9W0ASbVkcdzK+OOphfHXUwv/JNsGkBAAAAQ/qkPqlP6pP6pD4JAAAAk+mog/nVUQfzq6MO5ldHHcyvfBNsWgAAAMCQPqlP6pP6pD6pTwIAAMBkOupgfnXUwfzqqIP51VEH8yvfBJsWAAAAMKRP6pP6pD6pT+qTAAAAMJmOOphfHXUwvzrqYH511MH8yjfBpgUAAAAM6ZP6pD6pT+qT+iQAAABMpqMO5ldHHcyvjjqYXx11ML/yTbBpAQAAAEP6pD6pT+qT+qQ+CQAAAJPpqIP51VEH86ujDuZXRx3Mr3wTbFoA8GnHjmkAgIEghvFnXQZdLy/ZUzAEAIAvf9Kf9Cf9SX/SnwQAAIBjGndwX407uK/GHdxX4w7ua/8ESwUAAAB8+ZP+pD/pT/qT/iQAAAAc07iD+2rcwX017uC+GndwX/snmKgHWGMM7OL9FDEAAAAASUVORK5CYII=) left top; }

.gallery_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  min-height: 220px;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  line-height: 1; }
  .gallery_block_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: center/cover no-repeat;
    cursor: pointer; }
    .gallery_block_overlay_title {
      margin-top: 10px;
      font-size: 15px;
      line-height: 1.33;
      color: #fff;
      text-align: center; }
  .gallery_block_play_button {
    width: 93px;
    height: 93px;
    position: relative; }
    .gallery_block_play_button_icon {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
      z-index: 1;
      width: 15px;
      height: 20px;
      fill: #fff; }
    .gallery_block_play_button_bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -webkit-transition: -webkit-transform 0.4s;
      transition: -webkit-transform 0.4s;
      transition: transform 0.4s;
      transition: transform 0.4s, -webkit-transform 0.4s;
      will-change: transform; }
  .gallery_block_video {
    display: none;
    width: 100%;
    min-height: 100%; }
  .gallery_block_title {
    line-height: 1;
    text-align: center; }
  .gallery_block:hover .gallery_block_play_button_bg {
    -webkit-transform: scale(1.2);
            transform: scale(1.2); }

.section_trainer {
  padding: 45px 0 50px;
  background-color: #F7F4FB; }
  .section_trainer .list {
    margin-bottom: 35px; }
  .section_trainer .section_title {
    margin: 70px 0 40px;
    letter-spacing: -1px; }
  .section_trainer_title {
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25; }
  .section_trainer .parallax {
    right: -8%;
    top: -20%; }
    .section_trainer .parallax img {
      width: 388px; }

.tennis_trainer {
  margin: 0 auto; }
  .tennis_trainer_wrap {
    position: relative;
    margin: 0 auto;
    max-width: 468px; }
  .tennis_trainer_img {
    width: 100%; }
  .tennis_trainer_tip {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .tennis_trainer_tip:hover .tennis_trainer_desc {
      opacity: 1; }
    .tennis_trainer_tip.tip1 {
      top: 16%;
      right: 38%; }
    .tennis_trainer_tip.tip2 {
      top: 46%;
      right: 30%; }
    .tennis_trainer_tip.tip3 {
      top: 74%;
      right: 48%; }
    .tennis_trainer_tip.to_right .tennis_trainer_desc {
      position: absolute;
      left: 32px;
      padding-left: 50px;
      width: 340px; }
  .tennis_trainer_button {
    width: 65px;
    height: 65px;
    position: relative;
    z-index: 1;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    cursor: pointer; }
  .tennis_trainer_desc {
    width: 304px;
    padding: 21px 25px;
    margin-right: -32px;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
    background-color: #fff;
    -webkit-box-shadow: 0px 7px 15px rgba(0, 0, 0, 0.08);
            box-shadow: 0px 7px 15px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    opacity: 0;
    -webkit-transform-origin: right center;
            transform-origin: right center;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s; }
  .tennis_trainer.hidden {
    display: none; }

.section_compare {
  position: relative;
  padding: 87px 0 100px;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #fff), color-stop(50.1%, #FFAB00));
  background: linear-gradient(to right, #fff 50%, #FFAB00 50.1%); }
  .section_compare .section_title {
    margin-bottom: 90px; }
  .section_compare_right {
    color: #fff; }
    .section_compare_right .compare_icon {
      fill: #fff; }
  .section_compare .parallax {
    left: 0;
    bottom: -8%; }
    .section_compare .parallax img {
      width: 272px;
      -webkit-transform: rotate(12.61deg);
              transform: rotate(12.61deg); }

.compare_block {
  max-width: 350px;
  margin: 0 auto;
  text-align: center; }
  .compare_block:not(:last-child) {
    margin-bottom: 82px; }

.compare_icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 40px;
  fill: #cecece; }

.compare_text {
  font-weight: 500; }

.racket {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto; }

.section_cite {
  padding: 122px 0 90px;
  background-color: #333; }

.cite {
  padding: 24px 5px;
  position: relative; }
  .cite_text {
    color: #fff;
    font-size: 24px;
    line-height: 1.33;
    font-weight: 700; }
  .cite_wrap {
    max-width: 890px;
    margin: 0 auto;
    padding: 0 15px; }
  .cite .quote {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    top: -30px;
    left: -21px; }
  .cite:before {
    content: '';
    position: absolute;
    right: 0;
    left: 65px;
    top: 0;
    height: 4px;
    background-color: #FFAB00;
    border-radius: 10px; }
  .cite_review {
    margin-top: 70px;
    color: #fff; }
    .cite_review_img {
      width: 100px;
      height: 100px;
      margin-right: 30px;
      border-radius: 100px;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: center;
         object-position: center; }
    .cite_review_name {
      margin: 10px 0;
      font-size: 20px;
      line-height: 1.2;
      font-weight: 700; }
    .cite_review_text {
      max-width: 525px; }
  .cite_border_bottom {
    fill: transparent;
    position: absolute;
    bottom: 0;
    left: 0;
    top: 100%;
    width: 100%; }

.quote {
  width: 70px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  fill: #FFAB00;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right; }

.section_specs {
  padding: 70px 0; }
  .section_specs .section_title {
    margin-bottom: 50px; }
  .section_specs_row {
    margin-bottom: 50px; }
  .section_specs .parallax1 {
    right: 2%;
    top: 45%; }
    .section_specs .parallax1 img {
      width: 151px;
      -webkit-transform: rotate(-72.92deg);
              transform: rotate(-72.92deg); }
  .section_specs .parallax2 {
    left: -3%;
    bottom: 4%; }
    .section_specs .parallax2 img {
      width: 236px;
      -webkit-transform: rotate(-65.18deg);
              transform: rotate(-65.18deg); }

.specs_table {
  margin-bottom: 40px; }
  .specs_table td {
    vertical-align: top;
    font-size: 20px;
    line-height: 1.2; }
    .specs_table td:first-child {
      padding-right: 27px;
      font-weight: 700; }
  .specs_table tr:not(:last-child) td:first-child {
    padding-bottom: 20px; }

.specs_list li {
  padding-left: 20px; }

.section_reviews {
  padding: 70px 0 94px;
  background-color: #333; }
  .section_reviews .section_title {
    margin-bottom: 64px;
    color: #fff; }

.reviews_slider {
  height: 470px;
  border-radius: 8px;
  background-color: #fff; }
  .reviews_slider_wrap {
    position: relative;
    width: 970px;
    margin: 0 auto; }
    .reviews_slider_wrap .quote {
      top: -15px;
      left: -29px; }
  .reviews_slider .slick-dots {
    position: absolute;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 24px 0 0;
    line-height: 1; }
    .reviews_slider .slick-dots li {
      width: 10px;
      height: 10px;
      margin: 0 5px;
      background-color: #C4C4C4;
      border-radius: 10px;
      cursor: pointer;
      line-height: 1;
      font-size: 0;
      -webkit-transition: background-color 0.4s;
      transition: background-color 0.4s; }
      .reviews_slider .slick-dots li.slick-active {
        background-color: #FFAB00; }
    .reviews_slider .slick-dots button {
      display: none; }
  .reviews_slider_arrow {
    display: block;
    width: 100px;
    position: absolute;
    top: 38px;
    bottom: 38px;
    margin: auto;
    background-color: #D1D1D1;
    border: 0;
    cursor: pointer;
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s; }
    .reviews_slider_arrow svg {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
      width: 17px;
      height: 32px;
      fill: #333;
      -webkit-transition: fill 0.4s;
      transition: fill 0.4s; }
    .reviews_slider_arrow.prev {
      right: 100%;
      border-radius: 8px 0 0 8px; }
    .reviews_slider_arrow.next {
      left: 100%;
      border-radius: 0 8px 8px 0; }
      .reviews_slider_arrow.next svg {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg); }
    .reviews_slider_arrow:focus {
      outline: none; }
    .reviews_slider_arrow:hover {
      background-color: #888585; }
      .reviews_slider_arrow:hover svg {
        fill: #FFAB00; }
  .reviews_slider > .reviews_slide:not(:first-child) {
    display: none; }

.reviews_slide {
  padding: 38px 70px;
  height: 100%;
  overflow: auto; }
  .reviews_slide:focus {
    outline: none; }

.reviews_name {
  margin-bottom: 20px;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 600; }

.reviews_city {
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1; }

.section_bottom {
  padding: 19px 0 70px; }
  .section_bottom_title_h2 {
    margin-bottom: 15px; }
  .section_bottom_title_h1 {
    margin-bottom: 25px;
    font-size: 90px;
    line-height: 1;
    font-weight: 700; }
  .section_bottom_desc {
    margin-bottom: 46px;
    margin-right: -18px; }
  .section_bottom_wrap {
    position: relative;
    height: 100%; }
  .section_bottom_timer {
    width: 340px;
    position: absolute;
    bottom: 0;
    right: 0; }
  .section_bottom_img {
    display: block;
    max-width: 100%; }

.modal_video_video_frame {
  width: 100%;
  height: 570px;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden; }

.modal_video .modal-dialog {
  max-width: 1030px; }

.modal_video .modal-content {
  padding: 30px; }

main {
  overflow: hidden; }

section {
  position: relative; }

.parallax {
  position: absolute;
  z-index: 1; }
  .parallax img {
    -webkit-filter: blur(4px);
            filter: blur(4px); }

@media (max-width: 1550px) {
  .main_section .parallax1 {
    right: -15%; }
  .main_section .parallax2 {
    left: -5%; }
  .section_compare .parallax {
    left: -8%; }
  .section_specs .parallax2 {
    left: -12%; } }

@media (max-width: 1450px) {
  .contact_item_value {
    color: #fff; }
  .main_section_wrap {
    padding-top: 40px; }
  .main_section_title_h1 {
    margin-bottom: 20px; }
  .main_section_title_h2 {
    margin-bottom: 5px; } }

@media (max-width: 1199px) {
  .logo_icon {
    width: 70px;
    height: 89px; }
  .header {
    padding-top: 15px;
    margin-bottom: -104px; }
    .header .flex_wrap {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; }
    .header .button {
      margin-top: 20px;
      margin-left: 0;
      height: 40px;
      width: 100%;
      padding: 0 12px;
      font-size: 16px; }
    .header .contact_item_value {
      font-size: 18px; }
  .main_section {
    padding-top: 150px;
    padding-bottom: 200px;
    height: auto; }
    .main_section_tennis_trainer {
      width: 40%;
      right: 15px;
      height: auto;
      -ms-flex-item-align: end;
          align-self: flex-end; }
    .main_section_title_h1 {
      margin-bottom: 20px;
      font-size: 44px; }
    .main_section_title_h2 {
      margin-bottom: 10px;
      font-size: 20px; }
    .main_section_action {
      padding: 25px 15px; }
  .discount {
    margin-bottom: 20px; }
    .discount_old_price {
      font-size: 24px; }
    .discount_new_price {
      font-size: 28px; }
  .custom-timer__part:not(:last-child):after {
    font-size: 34px; }
  .custom-timer__int {
    font-size: 36px; }
  .custom-timer__text {
    font-size: 14px; }
  .section_video {
    margin: 50px auto; }
    .section_video_desc {
      margin-bottom: 25px; }
  .section_title.large {
    font-size: 32px; }
  .section_trainer {
    padding: 55px 0 40px; }
    .section_trainer .list {
      margin-bottom: 30px; }
  .tennis_trainer_desc {
    width: auto;
    padding: 15px;
    margin-right: -25px;
    font-size: 16px;
    line-height: 1.2; }
  .tennis_trainer_button {
    width: 50px;
    height: 50px; }
  .tennis_trainer_wrap {
    max-width: 360px; }
  .tennis_trainer_tip.to_right .tennis_trainer_desc {
    width: auto;
    padding-left: 30px; }
  .section_compare {
    padding: 50px 0; }
    .section_compare .section_title {
      margin-bottom: 45px; }
  .compare_block {
    max-width: 280px; }
    .compare_block:not(:last-child) {
      margin-bottom: 35px; }
  .racket {
    max-width: 38%; }
  .section_cite {
    padding: 80px 0 50px; }
  .cite .quote {
    -webkit-transform: scale(0.65);
            transform: scale(0.65); }
  .cite_text {
    font-size: 20px; }
  .section_specs {
    padding: 50px 0; }
    .section_specs .section_title {
      margin-bottom: 30px; }
    .section_specs_row {
      margin-bottom: 40px; }
  .specs_table {
    margin-bottom: 20px; }
    .specs_table td {
      font-size: 18px; }
    .specs_table tr:not(:last-child) td:first-child {
      padding-bottom: 12px; }
  .specs_list {
    margin-bottom: 20px;
    max-width: 300px; }
  .main_section .parallax1 {
    bottom: 0;
    right: -17%; }
  .main_section .parallax2 {
    bottom: -16%;
    left: -6%; }
  .section_trainer .parallax {
    right: -30%; }
  .section_compare .parallax {
    right: -16%;
    left: unset; }
  .section_specs .parallax1, .section_specs .parallax2 {
    display: none; }
  .section_reviews {
    padding: 50px 0 64px; }
    .section_reviews .section_title {
      text-align: center;
      margin-bottom: 45px; }
  .reviews_slider {
    height: auto; }
    .reviews_slider_wrap {
      width: 85%; }
      .reviews_slider_wrap .quote {
        -webkit-transform: scale(0.6);
                transform: scale(0.6);
        -webkit-transform-origin: top center;
                transform-origin: top center;
        top: -9px;
        left: -23px; }
    .reviews_slider_arrow {
      width: 60px; }
      .reviews_slider_arrow svg {
        width: 10px; }
    .reviews_slider .slick-dots {
      padding: 15px 0 0; }
  .reviews_slide {
    padding: 25px 15px; }
  .reviews_name {
    margin-bottom: 10px; }
  .reviews_city {
    margin-bottom: 20px; }
  .section_bottom {
    padding: 25px 0 95px; }
    .section_bottom_title_h1 {
      margin-bottom: 25px;
      font-size: 62px; }
    .section_bottom_title_h2 {
      margin-bottom: 5px; }
    .section_bottom_desc {
      margin-right: 0;
      margin-bottom: 30px; }
    .section_bottom_timer {
      width: auto; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .section_bottom_timer {
    bottom: -55px;
    right: -8px; } }

@media (max-width: 991px) {
  .gallery_block_title {
    margin-bottom: 20px; }
  .main_section {
    padding-bottom: 0; }
    .main_section_wrap {
      padding-top: 0; }
    .main_section_tennis_trainer {
      width: 48%;
      position: static;
      margin: -110px 0 40px; }
    .main_section_desc {
      max-width: 60%;
      position: relative;
      z-index: 1; }
  .data_warning {
    font-size: 11px; }
  .section_trainer_title {
    margin-bottom: 20px; }
  .section_trainer .section_title {
    margin: 45px 0 30px; }
  .page_404 .header {
    padding-top: 15px;
    position: static; }
  .parallax {
    display: none; }
  .modal_video .modal-dialog {
    max-width: 90%; }
  .modal_video .modal-content {
    padding: 30px 15px; }
  .modal_video_video_frame {
    height: 50vw; } }

@media (min-width: 768px) and (max-width: 1199px) {
  .section_video {
    max-width: 80vw; } }

@media (max-width: 767px) {
  .section_bottom {
    padding: 55px 0 40px; }
    .section_bottom_timer {
      position: static;
      width: 100%;
      max-width: 320px;
      margin: 0 auto; }
    .section_bottom_img {
      margin-top: 30px; }
  .section_video_bg {
    right: 5px; }
  .section_trainer .section_title {
    margin: 0 0 30px; }
  .tennis_trainer {
    display: none;
    margin-bottom: 50px; }
    .tennis_trainer.hidden {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
  .racket {
    display: none !important; }
  .section_compare {
    padding: 0;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fff), color-stop(50.1%, #FFAB00));
    background: linear-gradient(to bottom, #fff 50%, #FFAB00 50.1%); }
    .section_compare_left, .section_compare_right {
      padding: 50px 0; }
  .compare_block {
    max-width: 290px; }
  .cite_review {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .reviews_slider_arrow {
    display: none !important; }
  .reviews_slider_wrap {
    width: auto; } }

@media (max-width: 575px) {
  .section_video_bg {
    display: none; }
  .modal_video_video_frame {
    height: 60vw; } }

/*# sourceMappingURL=main.css.map */

.logo img{
  width: 110px;
  height: auto;
  @media (max-width: 1200px) {
    width: 80px;
  }
}