@charset "UTF-8";
/*
	HTML5 Reset :: reset.css
	-------------------------------------------------------------------
	-------------------------------------------------------------------
	Выражаем особую благодарность людям, чьи труды способствовали появлению данного ресета:
	We have learned much from/been inspired by/taken code where offered from:

	Eric Meyer					:: http://ericmeyer.com
	HTML5 Doctor				:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com

-------------------------------------------------------------------------------*/
/* Сбрасываем значения по умолчанию для элементов | Let's default this puppy out
-------------------------------------------------------------------------------*/
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article, aside, figure, footer, header, hgroup, nav, section {
  display: block;
}

header, section, footer {
  clear: both;
}

/* Всегда показывать полосу прокрутки (чтобы сайт не прыгал, когда на других страницах нет данной полосы)
   force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll;
}

/* Добавляем буллеты к UL и цифры к OL, т.к. в контенте могут использоваться стандартные списки
	we can use default ULs & OLs with bullets */
ul {
  list-style: outside disc;
  margin: 15px 0 15px 30px;
}

ol {
  list-style: outside decimal;
  margin: 15px 0 15px 30px;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, td img {
  vertical-align: top;
}

/* Сбрасываем отступы у элементов форм
	Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0;
  outline: none;
}

input::-moz-focus-inner, button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input, select {
  vertical-align: middle;
}

input[type=radio], input[type=checkbox] {
  margin: 1px 4px 4px 0;
}

input[type=text], input[type=password] {
  border-radius: 0;
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
  border-radius: 0;
  -webkit-appearance: none;
}

/* Решение проблемы с обрезанием стилизованных кнопок в IE | make buttons play nice in IE */
button, input[type=submit] {
  width: auto;
  overflow: visible;
}

.ie7 input[type=submit], .ie7 input[type=reset], .ie7 input[type=button] {
  -webkit-filter: chroma(color=#000000);
          filter: chroma(color=#000000);
}

/* Курсор-указатель на кликабельных элементах | hand cursor on clickable elements */
input[type=button],
input[type=submit],
button {
  cursor: pointer;
  border-radius: 0;
  -webkit-appearance: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
}

/* Стандартизируем моноширные элементы | standardize any monospaced elements */
pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}

pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
}

/* Устанавливаем произвольный цвет для выделения (не забываем убрать тень для текста)
	Custom text-selection colors (remove any text shadows: twitter.com/miketaylr/status/12228805301) */
/* ::-moz-selection{ background:#fcd700; color:#fff; text-shadow:none; } */
/* ::selection { background:#fcd700; color:#fff; text-shadow:none; } */
/* Устанавливаем произвольный цвет подсветки ссылок на Apple устройствах: j.mp/webkit-tap-highlight-color */
/* a:link {-webkit-tap-highlight-color:#fcd700;} */
/* Правильный ресайз картинок в IE7
	scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/* Сброс float блоков | let's clear some floats */
.clear {
  clear: both;
  height: 0;
  font-size: 0;
  line-height: 0;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ----------------------------------------------------------------------------------------------------

Super Form Reset

A couple of things to watch out for:

- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs

----------------------------------------------------------------------------------------------------*/
input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  line-height: 1;
  /* Browsers have different default form fonts */
  font-size: 16px;
  font-family: inherit;
}

/* Remove the stupid outer glow in Webkit */
input:focus {
  outline: 0;
}

/* Box Sizing Reset
-----------------------------------------------*/
/* All of our custom controls should be what we expect them to be */
input,
textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* These elements are usually rendered a certain way by the browser */
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Text Inputs
-----------------------------------------------*/
/* Button Controls
-----------------------------------------------*/
input[type=checkbox],
input[type=radio] {
  width: 13px;
  height: 13px;
}

/* File Uploads
-----------------------------------------------*/
/* Search Input
-----------------------------------------------*/
/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Buttons
-----------------------------------------------*/
button,
input[type="reset"],
input[type="button"],
input[type="submit"] {
  /* Fix IE7 display bug */
  overflow: visible;
  width: auto;
}

/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button {
  padding: 0;
  border: 0;
  background: none;
}

/* Textarea
-----------------------------------------------*/
textarea {
  /* Move the label to the top */
  vertical-align: top;
  /* Turn off scroll bars in IE unless needed */
  overflow: auto;
}

/* Selects
-----------------------------------------------*/
select[multiple] {
  /* Move the label to the top */
  vertical-align: top;
}

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

@font-face {
  font-family: 'Panton';
  src: url("../fonts/Panton-Bold.woff2") format("woff2"), url("../fonts/Panton-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Panton';
  src: url("../fonts/Panton-RegularItalic.woff2") format("woff2"), url("../fonts/Panton-RegularItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Panton';
  src: url("../fonts/Panton-Regular.woff2") format("woff2"), url("../fonts/Panton-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Panton';
  src: url("../fonts/Panton-SemiBold.woff2") format("woff2"), url("../fonts/Panton-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/*	-------------------------------------------------
    Базовые стили сайта | Base site styles
    ------------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font: normal 600 16px/1.3 Panton, sans-serif;
  background: #FFF;
  color: #303030;
  overflow: hidden;
}

a {
  color: #303030;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

p {
  margin-bottom: 15px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none inside;
}

.f-right {
  float: right;
}

.f-left {
  float: left;
}

ul {
  margin: 0;
  padding: 0;
}

.image {
  display: inline-block;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
}

.image > img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: " ";
}

.clearfix:after {
  clear: both;
}

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

.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-align-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}

html.no-scroll {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

/*	-------------------------------------------------
    Стили блоков, содержимого страниц | Other styles
    ------------------------------------------------- */
.wrapper {
  width: 1190px;
  margin: 0 auto;
}

.block-main {
  height: 100vh;
  min-height: 800px;
  max-height: 850px;
  background: url(../images/bg-main-1.png) calc(50% + 240px) 0 no-repeat, url(../images/decor-main.svg) calc(50% + 320px) 0 no-repeat;
  background-color: #F0F0F0;
  position: relative;
  -webkit-transition: background .2s;
  transition: background .2s;
}

.block-main.active-1 {
  background: url(../images/bg-main-1.png) calc(50% + 240px) 0 no-repeat, url(../images/decor-main.svg) calc(50% + 320px) 0 no-repeat;
  background-color: #F0F0F0;
}

.block-main.active-2 {
  background: url(../images/bg-main-2.png) calc(50% + 120px) 0 no-repeat, url(../images/decor-main.svg) calc(50% + 320px) 0 no-repeat;
  background-color: #F0F0F0;
}

.block-main.active-3 {
  background: url(../images/bg-main-3.png) calc(50% + 125px) 0 no-repeat, url(../images/decor-main.svg) calc(50% + 320px) 0 no-repeat;
  background-color: #F0F0F0;
}

.block-main:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  width: 9999px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  left: calc(50% + 210px);
}

.block-main .text-1 {
  font-size: 20px;
  color: #F04B59;
  max-width: 210px;
  margin-bottom: 80px;
}

.block-main h1 {
  font-size: 80px;
  line-height: 1.1;
  margin-bottom: 55px;
}

.block-main .left {
  width: 362px;
}

.block-main .button {
  margin-bottom: 15px;
}

.block-main .note {
  color: #818286;
  font-style: italic;
  font-size: 14px;
  font-weight: normal;
}

.block-main .right {
  width: 380px;
  padding-left: 50px;
  position: relative;
  display: flex;
  align-items: center;
}

.block-main .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.block-main .right .lang {
  width: 100%;
  text-align: right;
  position: absolute;
  top: 25px;
  left: 0;
}

.block-main .right .lang a + a {
  position: relative;
}

.block-main .right .lang a + a:before {
  content: '|';
  position: absolute;
  left: -9px;
  top: 0;
  color: #303030;
}

.block-main .right .lang .active {
  color: #F04B59
}

.block-main .right .lang a,
.block-main .right .lang span {
  display: inline-block;
  margin: 0 5px;
}

.block-main .right .lang a:hover {
  text-decoration: underline;
}

.block-main .triggers .item {
  text-align: right;
}

.block-main .triggers .item + .item {
  margin-top: 40px;
}

.block-main .triggers .item .name {
  padding-right: 35px;
  font-size: 20px;
  position: relative;
  cursor: pointer;
  -webkit-transition: .2s;
  transition: .2s;
}

.block-main .triggers .item .name:after {
  content: '';
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  background: url(../images/arr-drop-pink.svg) 50% no-repeat;
  right: 0;
  top: 3px;
  -webkit-transition: .2s;
  transition: .2s;
}

.block-main .triggers .item .name:hover span:after {
  width: 100%;
}

.block-main .triggers .item .name span {
  position: relative;
  display: inline-block;
}

.block-main .triggers .item .name span:after {
  content: '';
  position: absolute;
  height: 2px;
  bottom: 0;
  left: 0;
  width: 0;
  background: #F04B59;
  -webkit-transition: 1s;
  transition: 1s;
}

.block-main .triggers .item.active .name {
  font-size: 24px;
}

html[lang=en] .block-main .triggers .item.active .name {
  font-size: 22px;
}

.block-main .triggers .item.active .name span:after {
  width: 100%;
}

.block-main .triggers .item.active .name:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.block-main .triggers .item.active .text {
  display: block;
}

.block-main .triggers .item .text {
  padding-right: 35px;
  margin-top: 15px;
  font-size: 16px;
  font-weight: normal;
  display: none;
}

.video-play {
  text-align: right;
  line-height: 0;
  margin-bottom: 90px;
}

.video-play a {
  display: inline-block;
  width: 114px;
  height: 114px;
  position: relative;
  -webkit-transition: .2s;
  transition: .2s;
  background: url(../images/ico-play.svg) calc(50% + 3px) 50% no-repeat;
}

.video-play a:hover {
  background: url(../images/ico-play-h.svg) calc(50% + 3px) 50% no-repeat;
}

.video-play a:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: url(../images/play-text.svg) no-repeat;
  -webkit-animation: rotate 10s linear infinite;
          animation: rotate 10s linear infinite;
}

.header {
  padding: 20px 0;
  margin-bottom: 35px;
}

.header .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.footer .logo svg {
  width: 220px;
  height: 89px;
}
.header-mob .logo svg,
.header .logo svg {
  width: 98px;
  height: 39px;
}

.header .phones {
  margin-right: 50px;
  position: relative;
}

.header .phones .drop-phones {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  padding-right: 30px;
}

.header .phones .drop-phones li + li {
  margin-top: 5px;
}

.header .phones > a {
  padding-right: 30px;
  font-size: 20px;
  position: relative;
}

.header .phones > a:after {
  content: '';
  display: block;
  position: absolute;
  width: 19px;
  background: url(../images/arr-drop.svg) 50% no-repeat;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-transition: .2s;
  transition: .2s;
}

.header .phones > a.open:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.header .phones > a:hover:after {
  background: url(../images/arr-drop-h.svg) 50% no-repeat;
}

.header.fixed {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 15px 0;
}

.header.fixed .drop-phones {
  background: white;
  width: 250px;
  text-align: right;
  padding-bottom: 20px;
  padding-top: 20px;
  top: calc(100% + 23px);
}

.slide-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 385px;
  z-index: 99;
  padding-top: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: right;
  opacity: 0;
  left: 9999px;
}

.slide-menu.open {
  opacity: 1;
  left: calc(50% + 210px);
}

.slide-menu:after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  width: 9999px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  left: 0;
}

.slide-menu ul {
  width: 100%;
  position: relative;
  z-index: 10;
}

.slide-menu ul li + li {
  margin-top: 40px;
}

.slide-menu ul a {
  font-size: 20px;
  -webkit-transition: .2s;
  transition: .2s;
  -webkit-transform: scale(1);
          transform: scale(1);
  display: inline-block;
}

.slide-menu ul a:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  color: #F04B59;
}

.menu-toggle {
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  height: 3px;
  background: #303030;
  right: 0;
  -webkit-transition: .2s;
  transition: .2s;
}

.menu-toggle span:nth-child(1) {
  left: 0;
}

.menu-toggle span:nth-child(2) {
  left: 10px;
  top: 8px;
}

.menu-toggle span:nth-child(3) {
  left: 16px;
  top: 16px;
}

.menu-toggle:hover span {
  left: 0;
  background: #D73744;
}

.menu-toggle.open span {
  background: #D73744;
}

.btn {
  display: inline-block;
  cursor: pointer;
  background: #F04B59;
  color: #FFF;
  padding: 22px 80px 22px 50px;
  border-radius: 2px;
  position: relative;
  -webkit-transition: .2s;
  transition: .2s;
}

.btn i {
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  background: url(../images/btn-arrow.svg) 50% no-repeat;
  top: calc(50% - 12px);
  right: 30px;
}

.btn:hover {
  background: #D73744;
}

.btn:after {
  content: '';
}

.btn:before {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 25px 25px;
  border-color: transparent transparent #f0f0f0 transparent;
  bottom: -1px;
  right: -1px;
}

.btn.btn-border {
  border: 1px solid #F04B59;
  background: transparent;
  color: #F04B59;
  -webkit-transition: .2s;
  transition: .2s;
}

.btn.btn-border i {
  background: url(../images/btn-arrow-red.svg) 50% no-repeat;
}

.btn.btn-border:hover {
  background-color: #fff;
}

.btn.btn-border:before {
  border-color: transparent transparent #FAFAFA transparent;
  bottom: -2px;
  right: -2px;
}

.btn.btn-border:after {
  content: '';
  position: absolute;
  display: block;
  width: 35px;
  height: 1px;
  background: #F04B59;
  bottom: 11px;
  right: -6px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.block-statistics {
  padding-top: 130px;
  background: #FAFAFA;
}

.block-statistics .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 80px;
}

.block-statistics .top h2 {
  max-width: 450px;
  max-width: 470px;
}

.block-statistics .top h2 br {
  display: none;
}

.block-statistics .top .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.block-statistics .top .years {
  font-size: 70px;
  color: #F04B59;
  margin-right: 30px;
}

.block-statistics .top .years span {
  font-size: 45px;
}

.block-statistics .top .text {
  margin-top: 15px;
}

.block-statistics .circles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.block-statistics .circles .item {
  width: 47%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.block-statistics .circles .item .circle {
  width: 283px;
  height: 283px;
  border-radius: 50%;
  background: #FAFAFA;
  z-index: 10;
  position: relative;
  border: 8px solid rgba(129, 130, 134, 0.1);
}

.block-statistics .circles .item .circle span {
  position: absolute;
  display: block;
  width: 155px;
  height: 155px;
  line-height: 155px;
  text-align: center;
  color: #F04B59;
  top: calc(50% - 76px);
  left: calc(50% - 76px);
  border-radius: 50%;
  background: #FFFFFF;
  font-size: 52px;
  -webkit-box-shadow: 0px 4px 18px rgba(165, 98, 98, 0.3);
          box-shadow: 0px 4px 18px rgba(165, 98, 98, 0.3);
}

.block-statistics .circles .item .circle svg.radial-progress {
  height: auto;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  position: absolute;
  top: -24px;
  right: -24px;
  bottom: -24px;
  left: -24px;
}

.block-statistics .circles .item .circle svg.radial-progress circle {
  fill: rgba(0, 0, 0, 0);
  stroke: #F04B59;
  stroke-dashoffset: 219.91148575129;
  stroke-width: 1;
}

.block-statistics .circles .item .circle svg.radial-progress circle.complete {
  stroke-dasharray: 219.91148575129;
}

.block-statistics .circles .item .circle svg.radial-progresscircle {
  stroke: #a2ed56;
}

.block-statistics .circles .item .text {
  width: calc(100% - 283px);
  font-weight: normal;
  padding: 56px 27px;
  position: relative;
}

.block-statistics .circles .item .text:before {
  content: '';
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, 0.84);
  top: 0;
  right: 0;
  bottom: 0;
  left: -200px;
  border-radius: 2px;
}

.block-statistics .circles .item .text > div {
  position: relative;
}

.block-statistics .circles .item .text b {
  font-weight: 600;
  color: #F04B59;
}

h2.title {
  font-size: 45px;
  font-weight: bold;
}

.block-passport {
  background: #FAFAFA;
  padding-top: 130px;
  padding-bottom: 45px;
  position: relative;
}

.block-passport:after {
  content: '';
  position: absolute;
  display: block;
  width: 1095px;
  height: 486px;
  background: url(../images/decor-about.svg) no-repeat;
  bottom: 0;
  left: calc(50% - 88px);
}

.block-passport h2 {
  margin-bottom: 60px;
}

.block-passport .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.block-passport .left {
  max-width: 680px;
}

.block-passport .list-passport {
  max-width: 420px;
  margin-bottom: 50px;
}

.block-passport .list-passport .item {
  padding-left: 80px;
  color: #818286;
  font-weight: normal;
}

.block-passport .list-passport .item + .item {
  margin-top: 30px;
}

.block-passport .list-passport .item-1 {
  background: url(../images/passport-1.svg) 0 0 no-repeat;
}

.block-passport .list-passport .item-2 {
  background: url(../images/passport-2.svg) 0 0 no-repeat;
}

.block-passport .photo {
  position: relative;
  z-index: 10;
}

.block-heart {
  padding-top: 130px;
  padding-bottom: 140px;
}

.block-heart h2 {
  max-width: 430px;
  margin-bottom: 60px;
}

.block-heart .list-heart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.block-heart .list-heart:before {
  content: '';
  position: absolute;
  display: block;
  width: 389px;
  height: 617px;
  background: url(../images/heart.png) no-repeat;
  top: 0;
  left: calc(50% - 135px);
  opacity: 0.5;
  mix-blend-mode: luminosity;
  top: -240px;
  -webkit-animation: heart 2s linear infinite;
          animation: heart 2s linear infinite;
}

.block-heart .list-heart .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.block-heart .list-heart .col-1 {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  width: 385px;
}

.block-heart .list-heart .col-2 {
  width: 280px;
  margin-top: -60px;
}

.block-heart .list-heart .item .name {
  color: #F04B59;
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
}

.block-heart .list-heart .item .name:before {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background: #F04B59;
  bottom: -6px;
}

.block-heart .list-heart .item .text {
  font-size: 14px;
  font-weight: normal;
  color: #818286;
}

.block-heart .list-heart .item + .item {
  margin-top: 60px;
}

.block-heart .list-heart .item-1 {
  width: 385px;
}

.block-heart .list-heart .item-2 {
  width: 335px;
}

.block-heart .list-heart .item-3 {
  width: 245px;
}

.block-heart .list-heart .item-4 {
  width: 285px;
  margin-left: -50px;
}

.block-heart .list-heart .col-1 .item .name:after {
  content: '';
  position: absolute;
  display: block;
  width: 118px;
  height: 2px;
  background: #F04B59;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
  bottom: -31px;
  left: calc(100% - 7px);
}

.block-heart .list-heart .col-1 .item-2 .name:after {
  width: 143px;
  bottom: -36px;
}

.block-heart .list-heart .col-2 .item .name:after {
  content: '';
  position: absolute;
  display: block;
  width: 118px;
  height: 2px;
  background: #F04B59;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
  bottom: -31px;
  right: calc(100% - 7px);
}

@-webkit-keyframes heart {
  0%, 20% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  30% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  60% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  70%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes heart {
  0%, 20% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  30% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  60% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  70%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.block-benefits .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.block-benefits h2 {
  margin-bottom: 50px;
}

.block-benefits .form-left {
  width: 43%;
}

.block-benefits .list-benefits {
  width: 50%;
}

.block-benefits .form {
  max-width: 325px;
}

.block-benefits .form .input {
  margin-bottom: 30px;
}

.block-benefits .form input {
  border-bottom: 1px solid rgba(129, 130, 134, 0.5);
  padding-left: 30px;
  width: 100%;
  height: 40px;
}

.block-benefits .form .input-name input {
  background: url(../images/input-name.svg) 0 50% no-repeat;
}

.block-benefits .form .input-phone input {
  background: url(../images/input-phone.svg) 0 50% no-repeat;
}

html[lang=ua] .block-benefits .form .btn {
  padding-left: 30px;
  width: 100%;
  padding-right: 60px;
}

.block-benefits .form .btn:before {
  border-color: transparent transparent #fff transparent;
  bottom: 0;
  right: 0;
}

.block-benefits .list-benefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 40px;
  border-left: 2px solid #F04B59;
}

.block-benefits .list-benefits .item {
  width: 45%;
  padding-top: 70px;
  margin-bottom: 50px;
}

.block-benefits .list-benefits .item:nth-child(5), .block-benefits .list-benefits .item:nth-child(6) {
  margin-bottom: 0;
}

.block-benefits .list-benefits .item-1 {
  background: url(../images/benefit-1.svg) 0 0 no-repeat;
}

.block-benefits .list-benefits .item-2 {
  background: url(../images/benefit-2.svg) 0 0 no-repeat;
}

.block-benefits .list-benefits .item-3 {
  background: url(../images/benefit-3.svg) 0 0 no-repeat;
}

.block-benefits .list-benefits .item-4 {
  background: url(../images/benefit-4.svg) 0 0 no-repeat;
}

.block-benefits .list-benefits .item-5 {
  background: url(../images/benefit-5.svg) 0 0 no-repeat;
}

.block-benefits .list-benefits .item-6 {
  background: url(../images/benefit-6.svg) 0 0 no-repeat;
}

.form .input {
  margin-bottom: 30px;
}

.form input {
  border-bottom: 1px solid rgba(129, 130, 134, 0.5);
  padding-left: 30px;
  width: 100%;
  height: 40px;
}

.form .input-name input {
  background: url(../images/input-name.svg) 0 50% no-repeat;
}

.form .input-name input:focus {
  background: url(../images/input-name-h.svg) 0 50% no-repeat;
}

.form .input-phone input {
  background: url(../images/input-phone.svg) 0 50% no-repeat;
}

.form .input-phone input:focus {
  background: url(../images/input-phone-h.svg) 0 50% no-repeat;
}

.form .btn {
  padding-left: 30px;
}

.block-about {
  padding: 130px 0;
}

.block-about .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.block-about h2 {
  margin-bottom: 50px;
}

.block-about .left {
  max-width: 390px;
}

.block-about .text-1 {
  font-size: 24px;
  color: #F04B59;
  margin-bottom: 30px;
}

.block-about .triggers {
  border-left: 2px solid #F04B59;
  padding-left: 25px;
  max-width: 332px;
}

.block-about .triggers .text-2 {
  margin-bottom: 25px;
  font-weight: normal;
}

.block-about .triggers .item + .item {
  margin-top: 25px;
}

.block-about .triggers .item b {
  font-size: 20px;
  display: block;
  color: #F04B59;
}

.block-about .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.block-about .right .item {
  width: 230px;
  margin: 0 10px;
}

.block-about .right .item .photo {
  margin-bottom: 20px;
}

.block-about .right .item .name {
  margin-bottom: 20px;
}

.block-about .right .item .desc {
  font-size: 14px;
  font-weight: normal;
  color: #818286;
}

.block-trust {
  background: url(../images/bg-trust.png) 50% 0 no-repeat;
  padding: 130px 0;
}

.block-trust h2 {
  margin-bottom: 55px;
}

.block-trust .text-wrap {
  max-width: 640px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
}

.block-trust .text-wrap .text {
  width: 310px;
  font-size: 20px;
  color: #818286;
}

.block-trust .text-wrap .text b {
  color: #F04B59;
  display: inline-block;
  text-decoration: underline;
}

.block-trust .text-wrap .text b span {
  position: relative;
}

.block-trust .text-wrap .text b span:after {
  content: '';
  position: absolute;
  height: 2px;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #F04B59;
  -webkit-transition: 1s;
  transition: 1s;
  display: none;
}

.block-trust .text-wrap .text + .text {
  margin-left: 33px;
}

.block-trust .text-2 {
  font-size: 20px;
  color: #818286;
  margin-bottom: 15px;
}

.block-trust .list-trust {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.block-trust .list-trust .item {
  max-width: 270px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid #FFFFFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-backdrop-filter: blur(19px);
          backdrop-filter: blur(19px);
  border-radius: 2px;
  padding: 25px 20px 25px 40px;
}

.block-trust .list-trust .item b {
  display: block;
  color: #F04B59;
}

.block-trust .list-trust .item + .item {
  margin-left: 40px;
}

.block-reviews {
  background: #FAFAFA;
  padding-bottom: 130px;
}

.block-reviews h2 {
  margin-bottom: 60px;
}

.block-reviews .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.block-reviews .slider-reviews .slick-slide {
  padding: 0 15px;
}

.block-reviews .slider-reviews .item {
  position: relative;
  background: #FFFFFF;
  border-radius: 2px;
  border-top: 4px solid #F04B59;
  padding: 30px;
  max-width: 380px;
}

.block-reviews .slider-reviews .item:after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent #FAFAFA transparent;
  bottom: 0;
  right: 0;
}

.block-reviews .slider-reviews .item .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.block-reviews .slider-reviews .item .top .photo {
  width: 64px;
}

.block-reviews .slider-reviews .item .top .name {
  color: #F04B59;
  width: calc(100% - 64px);
  padding-left: 20px;
  font-size: 13px;
}

.block-reviews .slider-reviews .item .top .name b {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}

.block-reviews .slider-reviews .item .bottom {
  font-size: 14px;
  color: #818286;
  line-height: 1.7;
}

.block-reviews .slider-reviews .item .bottom .hidden {
  display: none;
}

.block-reviews .slider-reviews .item .bottom .hidden.open {
  display: block;
}

.block-reviews .slider-reviews .item .button {
  margin-top: 18px;
}

.block-reviews .slider-reviews .item .button a {
  text-decoration: underline;
  color: #818286;
}

.block-reviews .slider-reviews .item .button a:hover {
  color: #F04B59;
}

.slick-arrow {
  font-size: 0;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: inline-block;
  -webkit-transition: .2s;
  transition: .2s;
}

.slick-prev {
  background: url(../images/slider-prev.svg) 50% no-repeat;
}

.slick-prev:hover {
  background-image: url(../images/slider-prev-h.svg);
}

.slick-next {
  margin-left: 20px;
  background: url(../images/slider-next.svg) 50% no-repeat;
}

.slick-next:hover {
  background-image: url(../images/slider-next-h.svg);
}

.block-steps {
  background: #F04B59;
  position: relative;
  color: #fff;
  padding: 130px 0;
}

.block-steps .cardiogramm {
  position: absolute;
  width: 1515px;
  height: 312px;
  left: calc(50% - 732px);
  overflow: hidden;
  top: 200px;
}

.block-steps .cardiogramm:before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/cardiogramm.svg) no-repeat;
  top: 0;
  left: 0;
  -webkit-animation: cardiogramm 4s linear infinite;
          animation: cardiogramm 4s linear infinite;
}

.block-steps h2 {
  margin-bottom: 115px;
}

.block-steps .list-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 30px;
}

.block-steps .list-steps .item {
  max-width: 291px;
  max-width: 363px;
  position: relative;
  padding-left: 60px;
}

.block-steps .list-steps .item .name {
  font-size: 24px;
  margin-bottom: 15px;
}

.block-steps .list-steps .item-1 {
  max-width: 291px;
}

.block-steps .list-steps .item-2 {
  max-width: 354px;
}

.block-steps .list-steps .item-3 {
  max-width: 337px;
}

.block-steps .list-steps .item-1:before {
  content: '';
  position: absolute;
  display: block;
  width: 65px;
  height: 65px;
  top: -11px;
  left: -12px;
  background: url(../images/step-1.png) no-repeat;
}

.block-steps .list-steps .item-2:before {
  content: '';
  position: absolute;
  display: block;
  width: 71px;
  height: 73px;
  top: -11px;
  left: -12px;
  background: url(../images/step-2.png) no-repeat;
}

.block-steps .list-steps .item-3:before {
  content: '';
  position: absolute;
  display: block;
  width: 73px;
  height: 73px;
  top: -11px;
  left: -12px;
  background: url(../images/step-3.png) no-repeat;
}

@-webkit-keyframes cardiogramm {
  0% {
    -webkit-clip-path: inset(0% 100% 0 0);
            clip-path: inset(0% 100% 0 0);
  }
  50% {
    -webkit-clip-path: inset(0% 0 0 50%);
            clip-path: inset(0% 0 0 50%);
  }
  100% {
    -webkit-clip-path: inset(0% 0% 0 100%);
            clip-path: inset(0% 0% 0 100%);
  }
}

@keyframes cardiogramm {
  0% {
    -webkit-clip-path: inset(0% 100% 0 0);
            clip-path: inset(0% 100% 0 0);
  }
  50% {
    -webkit-clip-path: inset(0% 0 0 50%);
            clip-path: inset(0% 0 0 50%);
  }
  100% {
    -webkit-clip-path: inset(0% 0% 0 100%);
            clip-path: inset(0% 0% 0 100%);
  }
}

.block-ekg {
  padding-top: 130px;
  background: #FAFAFA;
}

.block-ekg .wrapper {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.block-ekg h2 {
  margin-bottom: 60px;
}

.block-ekg .left {
  max-width: 420px;
}

.block-ekg .left .text {
  font-size: 24px;
  margin-bottom: 25px;
}

.block-ekg .triggers .item {
  padding-left: 80px;
  position: relative;
  font-size: 20px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.block-ekg .triggers .item span {
  display: block;
  font-style: italic;
  font-weight: normal;
  font-size: 14px;
}

.block-ekg .triggers .item + .item {
  margin-top: 22px;
}

.block-ekg .triggers .item-1 {
  background: url(../images/ekg-1.svg) 0 0 no-repeat;
}

.block-ekg .triggers .item-2 {
  background: url(../images/ekg-2.svg) 0 0 no-repeat;
}

.block-ekg .triggers .item-3 {
  background: url(../images/ekg-3.svg) 0 0 no-repeat;
}

.block-ekg .right {
  max-width: 704px;
}

.block-ekg .right .photo {
  padding-bottom: 25px;
  border-bottom: 2px solid #F04B59;
  margin-bottom: 27px;
}

.block-ekg .right .photo img {
  max-width: 100%;
  height: auto;
}

.block-ekg .right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.block-ekg .right ul li {
  font-size: 24px;
  line-height: 1.7;
  color: #F04B59;
  max-width: 394px;
}

.block-ekg .right ul li + li {
  max-width: 253px;
}

.block-order {
  padding-top: 130px;
  padding-bottom: 110px;
  background: #FAFAFA;
  position: relative;
}

.block-order:after {
  content: '';
  position: absolute;
  display: block;
  width: 1283px;
  height: 1407px;
  background: url(../images/decor-order.svg) no-repeat;
  left: calc(50% - 240px);
  bottom: -187px;
}

.block-order .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  position: relative;
  z-index: 10;
}

.block-order h2 {
  margin-bottom: 60px;
}

.block-order .left {
  max-width: 465px;
}

html[lang=en] .block-order .left {
  max-width: 490px;
}

.block-order .left ul {
  padding-left: 38px;
}

.block-order .left ul li {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(129, 130, 134, 0.4);
  margin-bottom: 20px;
  position: relative;
}

.block-order .left ul li:before {
  content: '';
  position: absolute;
  display: block;
  width: 38px;
  height: 38px;
  background: url(../images/ico-check.svg) 0 0 no-repeat;
  left: -38px;
  top: 0;
}

.block-order .left ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.block-order .left .note {
  font-size: 14px;
  color: #818286;
  font-style: italic;
  padding-left: 38px;
  font-weight: 400;
}

.block-order .form {
  background: #FFFFFF;
  border-radius: 2px;
  padding: 60px;
}

.block-order .form .btn:before {
  border-color: transparent transparent #fff transparent;
}

.footer {
  background: #FAFAFA;
}

.footer .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 10;
}

.footer .top .logo {
  line-height: 0;
}

.footer .top .phones li + li {
  margin-top: 5px;
}

.footer .top .phones a {
  font-size: 20px;
}

.footer .top .social a {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.footer .top .social a + a {
  margin-left: 10px;
}

.footer .top .social .fb {
  background: url(../images/soc-fb.svg) no-repeat;
}

.footer .top .social .insta {
  background: url(../images/soc-insta.svg) no-repeat;
}

.footer .col-1 {
  width: 220px;
}

.footer .col-2 {
  width: 195px;
}

.footer .col-3 {
  width: 580px;
}

.footer .bottom {
  padding: 25px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 10;
}

.footer .bottom .copy {
  color: #818286;
  font-size: 14px;
}

.footer .bottom .btn {
  font-size: 14px;
  width: 170px;
  padding: 10px 20px;
}

.footer .bottom .btn:before {
  bottom: -7px;
}

.footer .bottom .btn:after {
  bottom: 8px;
  right: -4px;
  width: 26px;
}

.footer .bottom .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer .bottom .links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  justify-content: space-between;
}

.footer .bottom .links a {
  font-size: 14px;
  color: #818286;
}

.footer .bottom .links a:hover {
  color: #F04B59;
}

.block-main-mob {
  display: none;
  padding-top: 59px;
}

.block-main-mob .content {
  padding-top: 33px;
  height: 800px;
}

.block-main-mob .text-1 {
  font-weight: 600;
  font-size: 26px;
  color: #F04B59;
  max-width: 230px;
}

.block-main-mob .bottom {
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(22px);
          backdrop-filter: blur(22px);
  margin-top: -190px;
  padding-top: 33px;
  padding-bottom: 92px;
}

.block-main-mob .bottom .video-play {
  margin-bottom: 0;
}

.block-main-mob .bottom .triggers .item + .item {
  margin-top: 40px;
}

.block-main-mob .bottom .triggers .item .name {
  padding-left: 35px;
  font-size: 20px;
  position: relative;
  cursor: pointer;
  -webkit-transition: .2s;
  transition: .2s;
}

.block-main-mob .bottom .triggers .item .name:after {
  content: '';
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  background: url(../images/arr-drop-pink.svg) 50% no-repeat;
  left: 0;
  top: 3px;
  -webkit-transition: .2s;
  transition: .2s;
}

.block-main-mob .bottom .triggers .item .name span {
  position: relative;
  display: inline-block;
}

.block-main-mob .bottom .triggers .item.active .name {
  font-size: 24px;
}

.block-main-mob .bottom .triggers .item.active .name span:after {
  content: '';
  position: absolute;
  height: 2px;
  bottom: 0;
  left: 0;
  right: 0;
  background: #F04B59;
}

.block-main-mob .bottom .triggers .item.active .name:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.block-main-mob .bottom .triggers .item.active .text {
  display: block;
}

.block-main-mob .bottom .triggers .item .text {
  padding-left: 35px;
  margin-top: 15px;
  font-size: 16px;
  font-weight: normal;
  display: none;
}

.block-main-mob .bottom .button {
  margin-top: 40px;
}

.block-main-mob .bottom .button .btn {
  width: 420px;
  max-width: 100%;
  text-align: center;
}

.block-main-mob .bottom .button .btn:before {
  border-color: transparent transparent #fff transparent;
}

.block-main-mob .bottom .note {
  margin-top: 20px;
  color: #818286;
  font-style: italic;
  font-size: 14px;
  font-weight: normal;
}

.block-main-mob .bottom-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}

.block-main-mob .bottom-top h2 {
  font-size: 55px;
  line-height: 1.1;
}

.header-mob {
  background: #fff;
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 90;
}

.header-mob .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-mob .logo {
  line-height: 0;
}

.mobile-menu {
  background: #fff url(../images/bg-mob-menu.svg) 50% 95% no-repeat;
  position: fixed;
  top: -100vh;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  text-align: center;
  z-index: 100;
  padding: 30px;
  -webkit-transition: .5s;
  transition: .5s;
}

.mobile-menu.open {
  top: 0;
}

.mobile-menu .close-menu {
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  background: url(../images/ico-close.svg) no-repeat;
  top: 30px;
  right: 30px;
}

.mobile-menu .logo {
  margin-bottom: 50px;
}

.mobile-menu .lang {
  margin: 10px 0 20px 0;
}
.mobile-menu .lang a {
  display: inline-block;
  margin: 0 5px;
}
.mobile-menu .lang .active {
  color: #F04B59;
}
.mobile-menu .lang a + a {
  position: relative;
}
.mobile-menu .lang a + a:before {
  content: '|';
  position: absolute;
  left: -9px;
  top: 0;
  color: #303030;
}
.mobile-menu .mob-nav {
  margin-bottom: 30px;
}

.mobile-menu .mob-nav li + li {
  margin-top: 20px;
}

.mobile-menu .mob-nav a {
  font-size: 20px;
  -webkit-transition: .2s;
  transition: .2s;
  -webkit-transform: scale(1);
          transform: scale(1);
  display: inline-block;
}

.mobile-menu .mob-nav a:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  color: #F04B59;
}

.mobile-menu .button {
  margin-bottom: 30px;
}

.mobile-menu .button a:before {
  border-color: transparent transparent #fff transparent;
}

.mobile-menu .phones {
  margin-bottom: 30px;
}

.mobile-menu .phones a {
  display: inline-block;
  font-size: 20px;
  color: #818286;
  margin: 5px;
}

.mobile-menu .social a {
  display: inline-block;
  width: 36px;
  height: 36px;
}

.mobile-menu .social a + a {
  margin-left: 10px;
}

.mobile-menu .social .fb {
  background: url(../images/soc-fb.svg) 0 0/100% auto no-repeat;
}

.mobile-menu .social .insta {
  background: url(../images/soc-insta.svg) 0 0/100% auto no-repeat;
}

.block-steps .slider-steps {
  display: none;
}

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

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots li button {
  font-size: 0;
  cursor: pointer;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
}

.slick-dots li.slick-active button {
  background: #fff;
}

.modal-callback {
  max-width: 600px;
  padding: 100px 60px;
}

.modal-callback .form {
  max-width: 360px;
  margin: 0 auto;
}

.modal-callback .btn {
  padding-left: 20px;
  padding-right: 60px;
  width: 100%;
}

.modal-callback .btn:before {
  border-color: transparent transparent #fff transparent;
}

.modal-head {
  font-size: 24px;
  margin-bottom: 40px;
}

.modal-head b {
  font-size: 45px;
  display: block;
  color: #F04B59;
}

.remodal-close {
  left: auto;
  right: 0;
}

.menu-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  text-align: right;
  right: -9999px;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
  opacity: 0;
}

.menu-pc.open {
  opacity: 1;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu-pc li + li {
  margin-top: 40px;
}

.menu-pc a {
  font-size: 20px;
  -webkit-transition: .2s;
  transition: .2s;
  -webkit-transform: scale(1);
          transform: scale(1);
  display: inline-block;
}

.menu-pc a:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  color: #F04B59;
}

.modal-pdf {
  max-width: 1190px;
  height: 90vh;
  padding: 40px 0 0 0;
}

.modal-pdf img {
  max-width: 100%;
  height: auto;
}

.block-thank {
  padding-top: 175px;
  padding-bottom: 175px;
  background: url(../images/heart-thank.png) calc(50% + 255px) 0 no-repeat, url(../images/decor-main.svg) calc(50% + 485px) 0 no-repeat;
}

.block-thank h1 {
  color: #F04B59;
  font-size: 45px;
  margin-bottom: 13px;
}

.block-thank .text {
  font-size: 24px;
  margin-bottom: 47px;
}

.block-thank .btn:before {
  border-color: transparent transparent #fff transparent;
}

.block-thank .btn:hover {
  background: #F04B59;
  color: #fff;
}

.footer-white {
  background: #fff;
  padding-bottom: 50px;
}

.safari .block-statistics .circles .item .circle svg.radial-progress {
  width: calc(100% + 46px);
  height: calc(100% + 46px);
  margin-top: -23px;
  margin-left: -23px;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}

@media (max-width: 1200px) {
  .block-main:before {
    width: 390px;
    right: 0;
    left: auto;
  }
  .wrapper {
    max-width: 1100px;
  }
  .block-ekg .right {
    max-width: 620px;
  }
  .block-ekg .right ul li {
    font-size: 22px;
    max-width: 320px;
  }
}

@media (max-width: 1100px) {
  .wrapper {
    max-width: 1020px;
  }
  .block-main.active-1 {
    background: url(../images/bg-main-1.png) calc(50% + 270px) 0 no-repeat, url(../images/decor-main.svg) calc(50% + 385px) 0 no-repeat;
    background-color: #F0F0F0;
  }
  .block-main.active-2 {
    background: url(../images/bg-main-2.png) calc(50% + 120px) 0 no-repeat, url(../images/decor-main.svg) calc(50% + 385px) 0 no-repeat;
    background-color: #F0F0F0;
  }
  .block-main.active-3 {
    background: url(../images/bg-main-3.png) calc(50% + 125px) 0 no-repeat, url(../images/decor-main.svg) calc(50% + 385px) 0 no-repeat;
    background-color: #F0F0F0;
  }
  .block-about .right .item {
    width: 210px;
  }
  .block-about .right .item img {
    width: 100%;
    height: auto;
  }
  .block-steps .list-steps {
    padding-left: 0;
  }
  .block-ekg .right {
    max-width: 560px;
  }
  .block-thank {
    background: url(../images/heart-thank.png) calc(50% + 255px) 0 no-repeat, url(../images/decor-main.svg) calc(50% + 570px) 0 no-repeat;
  }
}

@media (max-width: 1050px) {
  .wrapper {
    max-width: 920px;
  }
  .block-main.active-1 {
    background: url(../images/bg-main-1.png) calc(50% + 270px) 0 no-repeat, url(../images/decor-main.svg) calc(50% + 420px) 0 no-repeat;
    background-color: #F0F0F0;
  }
  .block-main.active-2 {
    background: url(../images/bg-main-2.png) calc(50% + 120px) 0 no-repeat, url(../images/decor-main.svg) calc(50% + 420px) 0 no-repeat;
    background-color: #F0F0F0;
  }
  .block-main.active-3 {
    background: url(../images/bg-main-3.png) calc(50% + 135px) 40px no-repeat, url(../images/decor-main.svg) calc(50% + 420px) 0 no-repeat;
    background-color: #F0F0F0;
  }
  .block-statistics .top {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .block-statistics .top .right {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 315px;
  }
  .block-statistics .circles {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .block-statistics .circles .item {
    width: 550px;
    margin: 0 auto;
  }
  .block-statistics .circles .item + .item {
    margin-top: 40px;
  }
  .block-passport .wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .block-passport .left {
    max-width: 100%;
    width: 100%;
  }
  .block-passport .right {
    width: 100%;
  }
  .block-passport .right .photo {
    width: 319px;
    margin: 40px auto 0 auto;
  }
  .block-heart .list-heart {
    display: block;
  }
  .block-heart .list-heart .col-2 {
    margin-top: 30px;
    width: 385px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
  .block-heart .list-heart .item-3 {
    width: 385px;
  }
  .block-heart .list-heart .item + .item {
    margin-top: 30px;
  }
  .block-heart .list-heart .col-2 .item .name:after {
    left: calc(100% - 7px);
    -webkit-transform: rotate(25deg);
            transform: rotate(25deg);
    right: auto;
  }
  .block-heart .list-heart:before {
    top: -70px;
    left: calc(50% - 74px);
  }
  .block-about .wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .block-about .left {
    width: 100%;
    max-width: none;
  }
  .block-about .right .item {
    width: 230px;
  }
  .block-about .right {
    margin: 40px auto 0 auto;
  }
  .block-ekg .right {
    max-width: 450px;
  }
  .block-ekg .right ul li {
    max-width: 100%;
    width: 49%;
    font-size: 20px;
    line-height: 1.3;
  }
  .block-trust {
    background-position: 12% 0;
  }
  .block-order .left {
    max-width: 100%;
  }
  .block-order .wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .block-order .left ul {
    max-width: 470px;
  }
  .block-order .form {
    margin: 40px auto 0 auto;
  }
  .footer .col-3 {
    width: 445px;
  }
}

@media (max-width: 940px) {
  .wrapper {
    max-width: 800px;
  }
  .block-main-mob {
    display: block;
  }
  .block-main {
    display: none;
  }
  .block-heart .list-heart:before {
    left: 50%;
  }
  .block-benefits .form-left {
    width: 100%;
  }
  .block-benefits .wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .block-benefits .list-benefits {
    width: 100%;
    padding-left: 0;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 2px solid #F04B59;
    border-left: none;
  }
  .block-benefits .form {
    margin: 0 auto;
  }
  .block-steps .slider-steps {
    display: block;
  }
  .block-steps .pc-steps {
    display: none;
  }
  .block-ekg .wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .block-ekg .left {
    max-width: none;
    width: 100%;
  }
  .block-ekg .right {
    max-width: 704px;
    width: 100%;
    margin: 40px auto 0 auto;
  }
  .block-order:after {
    bottom: -200px;
  }
  .footer .phones {
    width: 200px;
  }
  .footer .social {
    width: 225px;
  }
  .footer .links {
    width: 315px;
  }
  .footer .bottom .links ul {
    display: block;
  }
  .block-thank {
    background: url(../images/heart-thank.png) calc(50% + 255px) 0 no-repeat;
  }
}

@media (max-width: 840px) {
  .block-main {
    max-height: none;
  }
  .wrapper {
    max-width: 700px;
  }
  .block-about .right .item {
    width: 210px;
  }
  .block-thank .text {
    max-width: 350px;
  }
  .block-thank .text br {
    display: none;
  }
}

@media (max-width: 740px) {
  .wrapper {
    max-width: 600px;
  }
  .block-statistics .top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .block-statistics .top .right {
    max-width: 100%;
  }
  h2.title {
    font-size: 40px;
  }
  .block-heart .list-heart:before {
    left: 61%;
  }
  .block-main-mob .content {
    background: url(../images/bg-main-1.png) calc(50% + 160px) 0/560px auto no-repeat, url(../images/decor-main-mob.svg) calc(50% + 379px) 77px no-repeat;
    background-color: #F0F0F0;
    height: 590px;
  }
  .block-about .right {
    display: block;
  }
  .block-about .right .item {
    width: 230px;
  }
  .block-about .right .item + .item {
    margin-top: 40px;
  }
  .block-trust .list-trust {
    display: block;
  }
  .block-trust .list-trust .item {
    max-width: 400px;
  }
  .block-trust .list-trust .item + .item {
    margin-left: 0;
    margin-top: 20px;
  }
  .footer .col-1,
  .footer .col-2,
  .footer .col-3 {
    width: 100%;
    text-align: center;
    padding: 15px 0;
  }
  .footer .bottom .links,
  .footer .bottom,
  .footer .top {
    display: block;
  }
  .footer .bottom .links ul {
    width: 100%;
    margin-bottom: 30px;
  }
  .footer .bottom {
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .wrapper {
    max-width: 500px;
  }
  .block-main-mob .text-1 {
    font-size: 20px;
  }
  .block-main-mob .content {
    height: 525px;
    -webkit-transition: background .2s;
    transition: background .2s;
  }
  .block-main-mob.active-1 .content {
    background: url(../images/bg-main-1.png) calc(50% + 117px) 0/485px auto no-repeat, url(../images/decor-main-mob.svg) calc(50% + 360px) 30px no-repeat;
    background-color: #F0F0F0;
  }
  .block-main-mob.active-2 .content {
    background: url(../images/bg-main-2.png) calc(50% + 115px) 0/485px auto no-repeat, url(../images/decor-main-mob.svg) calc(50% + 360px) 30px no-repeat;
    background-color: #F0F0F0;
  }
  .block-main-mob.active-3 .content {
    background: url(../images/bg-main-3.png) calc(50% + 130px) -25px/485px auto no-repeat, url(../images/decor-main-mob.svg) calc(50% + 360px) 30px no-repeat;
    background-color: #F0F0F0;
  }
  .block-steps,
  .block-reviews,
  .block-about {
    padding-bottom: 70px;
  }
  .block-ekg,
  .block-steps,
  .block-trust,
  .block-heart,
  .block-statistics {
    padding-top: 70px;
  }
  h2.title {
    font-size: 36px;
  }
  .block-trust .text-wrap .text {
    font-size: 18px;
  }
  .block-ekg .right ul li {
    width: 47%;
    font-size: 16px;
  }
  .block-ekg .triggers .item {
    font-size: 20px;
  }
  .modal-callback {
    padding: 30px;
  }
  .modal-head {
    font-size: 18px;
  }
  .modal-head b {
    font-size: 38px;
  }
  .footer .top .social a {
    width: 36px;
    height: 36px;
  }
  .footer .top .social a.fb {
    background: url(../images/soc-fb.svg) 0 0/100% auto no-repeat;
  }
  .footer .top .social a.insta {
    background: url(../images/soc-insta.svg) 0 0/100% auto no-repeat;
  }
  .block-statistics .top h2 br {
    display: block;
  }
  .slick-dots {
    margin-top: 20px;
  }
  .block-ekg h2 {
    margin-bottom: 30px;
  }
  .block-steps h2 {
    margin-bottom: 60px;
  }
  .block-thank {
    background: url(../images/heart-thank.png) 50% 340px/180px auto no-repeat;
    background-size: 200px auto;
    padding-top: 50px;
    padding-bottom: 400px;
    text-align: center;
  }
  .block-thank .text {
    max-width: none;
  }
  .safari .block-statistics .circles .item .circle svg.radial-progress {
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    margin-top: -20px;
    margin-left: -20px;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }
  .footer .bottom .links a br {
    display: none;
  }
}

@media (max-width: 540px) {
  .wrapper {
    max-width: 400px;
  }
  .block-statistics .circles .item .circle span {
    font-size: 36px;
    width: 110px;
    height: 110px;
    line-height: 110px;
    top: calc(50% - 55px);
    left: calc(50% - 55px);
  }
  .block-statistics .circles .item .circle {
    width: 200px;
    height: 200px;
  }
  .block-statistics .circles .item .text {
    padding-top: 20px;
    padding-bottom: 20px;
    width: calc(100% - 200px);
  }
  .block-statistics .circles .item .text:before {
    left: -100px;
  }
  h2.title {
    font-size: 30px;
  }
  .block-heart .list-heart .col {
    width: 240px;
  }
  .block-heart .list-heart:before {
    width: 441px;
    height: 699px;
    background: url(../images/heart-mob.png) no-repeat;
    opacity: .5;
    top: -30px;
    left: 50%;
  }
  .block-heart .list-heart .col-1 .item-1 .name:after {
    -webkit-transform: rotate(17deg);
            transform: rotate(17deg);
    bottom: -23px;
    left: calc(100% - 5px);
  }
  .block-heart .list-heart .col-1 .item-2 .name:after {
    width: 90px;
    bottom: -25px;
    left: calc(100% - 5px);
  }
  .block-heart .list-heart .col-2 .item-3 .name:after {
    width: 90px;
    bottom: 13px;
    left: calc(100% - 5px);
    -webkit-transform: rotate(-25deg);
            transform: rotate(-25deg);
  }
  .block-heart .list-heart .col-2 .item-4 .name:after {
    -webkit-transform: rotate(-17deg);
            transform: rotate(-17deg);
    bottom: 11px;
    left: calc(100% - 5px);
  }
  .block-heart .list-heart .item-4 {
    margin-left: 0;
  }
  .block-order:after {
    bottom: -240px;
    left: calc(50% - 275px);
  }
  .footer {
    padding-top: 40px;
  }
  .block-main-mob .text-1 {
    max-width: 215px;
  }
  .block-statistics .circles .item {
    width: 400px;
  }
  .block-thank .text {
    font-size: 20px;
  }
  .block-statistics .circles .item .circle svg.radial-progress {
    top: -19px;
    bottom: -19px;
    right: -19px;
    left: -19px;
  }
  html[lang=ua] .block-passport .title br {
    display: none;
  }
  html[lang=ua] .block-order .form .btn {
    padding-right: 60px;
  }
}


@media (max-height: 740px) {
  .mobile-menu .logo {
    margin-bottom: 20px;
  }
  .mobile-menu {
    background-position: 50% 110%;
  }
}
@media (max-height: 645px) {
  .mobile-menu {
    background: #fff;
  }
}

html[lang=ua] body {
  font-family: 'Ubuntu', sans-serif;
  font-weight: normal;
  /* letter-spacing: -1px; */
}
html[lang=ua] .block-main .triggers .item.active .name {
  font-weight: 400;
}
html[lang=ua] .block-main .right {
  padding-left: 40px;
}

