@charset "UTF-8";
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0; }

*, *::before, *::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

:focus, :active, a:focus, a:active {
  outline: none; }

article, aside, details, figcaption, figure, main, footer, header, hgroup, menu, nav, section {
  display: block; }

html, body {
  width: 100%;
  height: 100%;
  font-size: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%; }

input, button, textarea {
  font-family: inherit;
  font-size: 100%; }

input::-ms-clear {
  display: none; }

button {
  cursor: pointer; }

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

a, a:visited {
  text-decoration: none; }

a:hover {
  text-decoration: none; }

ul, ol {
  list-style: none; }

img {
  vertical-align: top; }

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit; }

/*---------------------------------------------------------*/
/*Подключение шрифтов*/
@font-face {
  font-family: 'GothamPro';
  src: url("../fonts/GothaProLig.eot");
  src: local("☺"), url("../fonts/GothaProLig.woff") format("woff"), url("../fonts/GothaProLig.ttf") format("truetype"), url("../fonts/GothaProLig.svg") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'GothamPro';
  src: url("../fonts/GothaProReg.eot");
  src: local("☺"), url("../fonts/GothaProReg.woff") format("woff"), url("../fonts/GothaProReg.ttf") format("truetype"), url("../fonts/GothaProReg.svg") format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'GothamPro';
  src: url("../fonts/GothaProMed.eot");
  src: local("☺"), url("../fonts/GothaProMed.woff") format("woff"), url("../fonts/GothaProMed.ttf") format("truetype"), url("../fonts/GothaProMed.svg") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'GothamPro';
  src: url("../fonts/GothaProBol.eot");
  src: local("☺"), url("../fonts/GothaProBol.woff") format("woff"), url("../fonts/GothaProBol.ttf") format("truetype"), url("../fonts/GothaProBol.svg") format("svg");
  font-weight: 700;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'GothamPro';
  src: url("../fonts/GothaProBla.eot");
  src: local("☺"), url("../fonts/GothaProBla.woff") format("woff"), url("../fonts/GothaProBla.ttf") format("truetype"), url("../fonts/GothaProBla.svg") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap; }

/*Задание стилей для всего документа и обёрток*/
body {
  font-family: 'GothamPro', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: #1a1a1e;
  background-color: #282828; }

.wrapper {
  width: 100%;
  max-width: 1400px;
  min-width: 320px;
  background-color: #fff;
  margin: 0 auto; }

.container {
  max-width: 1240px;
  min-width: 320px;
  padding: 0 15px;
  margin: 0 auto; }

.ibg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; }
  .ibg img {
    display: none; }

.section-title {
  font-weight: 700;
  font-size: 48px;
  color: #404040;
  text-align: center; }
  @media (max-width: 767px) {
    .section-title {
      font-size: 36px; } }
  @media (max-width: 400px) {
    .section-title {
      font-size: 19.5px; } }

.text-bold {
  font-weight: 700; }

.text-black {
  font-weight: 900; }

.text-violet {
  color: #b33a97; }

.text-italic {
  font-style: italic; }

.return {
  opacity: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(251, 10, 183, 0.8);
  position: fixed;
  left: 20px;
  bottom: 20px;
  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;
  z-index: -1; }
  .return span {
    width: 85%;
    height: 85%;
    border-radius: 50%;
    border: 1px solid #ffffff;
    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;
    font-size: 10px;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    z-index: 20; }
  .return::before {
    content: '';
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background-color: rgba(251, 10, 183, 0.3);
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10;
    -webkit-animation: pulse 3s infinite;
    animation: pulse 3s infinite; }

@-webkit-keyframes pulse {
  from {
    -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transform: translate(-50%, -50%) scale3d(1, 1, 1);
    background-color: rgba(251, 10, 183, 0.3); }
  60% {
    -webkit-transform: translate(-50%, -50%) scale3d(1.05, 1.05, 1.05);
    transform: translate(-50%, -50%) scale3d(1.3, 1.3, 1.3);
    background-color: rgba(251, 10, 183, 0.1); }
  to {
    -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transform: translate(-50%, -50%) scale3d(1, 1, 1);
    background-color: rgba(251, 10, 183, 0); } }

@keyframes pulse {
  from {
    -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transform: translate(-50%, -50%) scale3d(1, 1, 1);
    background-color: rgba(251, 10, 183, 0.3); }
  60% {
    -webkit-transform: translate(-50%, -50%) scale3d(1.05, 1.05, 1.05);
    transform: translate(-50%, -50%) scale3d(1.3, 1.3, 1.3);
    background-color: rgba(251, 10, 183, 0.1); }
  to {
    -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transform: translate(-50%, -50%) scale3d(1, 1, 1);
    background-color: rgba(251, 10, 183, 0); } }

.header {
  background-color: #bf55a1; }
  .header__content {
    padding: 15px 55px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #ffffff;
    position: relative; }
  .header__logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 190px;
    flex: 0 0 190px;
    width: 190px;
    margin-right: 25px; }
    .header__logo img {
      display: block;
      max-width: 100%;
      height: auto; }
  .header__text {
    max-width: 245px;
    text-transform: uppercase;
    font-size: 16px;
    margin-right: auto; }
  .header__more {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 7px; }
  .header__socials {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    @media (max-width: 767px) {
      .header__socials {
        opacity: 0;
        width: 100%;
        height: auto;
        background-color: #bf55a1;
        padding: 15px;
        position: absolute;
        bottom: 0;
        left: 0;
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
        transform: translateY(100%);
        border-top: 1px solid #f881d6;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-transition-duration: 0.5s;
        -o-transition-duration: 0.5s;
        transition-duration: 0.5s;
        z-index: -1; }
        .header__socials--active {
          opacity: 1;
          z-index: 100; } }
  .header__link {
    display: block;
    margin-left: 13px;
    width: 30px;
    height: 30px;
    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;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s; }
    .header__link img {
      display: block;
      max-width: 100%;
      height: auto; }
    .header__link:hover, .header__link:focus {
      -webkit-transform: scale(1.2, 1.2);
      -ms-transform: scale(1.2, 1.2);
      transform: scale(1.2, 1.2); }
  .header__burger {
    display: none;
    width: 30px;
    height: 20px;
    background-color: transparent;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(-15px, -50%);
    -ms-transform: translate(-15px, -50%);
    transform: translate(-15px, -50%); }
    .header__burger:hover .header__line:first-child, .header__burger:focus .header__line:first-child {
      -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
      transform: translateY(-10px); }
    .header__burger:hover .header__line:last-child, .header__burger:focus .header__line:last-child {
      -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
      transform: translateY(10px); }
    .header__burger--active .header__line:last-child {
      display: none; }
    .header__burger--active .header__line:nth-child(2) {
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg); }
    .header__burger--active .header__line:first-child {
      -webkit-transform: rotate(-45deg) translate(-1px, 2px);
      -ms-transform: rotate(-45deg) translate(-1px, 2px);
      transform: rotate(-45deg) translate(-1px, 2px); }
    .header__burger--active:hover .header__line:nth-child(2), .header__burger--active:focus .header__line:nth-child(2) {
      -webkit-transform: rotate(45deg) scale(1.2);
      -ms-transform: rotate(45deg) scale(1.2);
      transform: rotate(45deg) scale(1.2); }
    .header__burger--active:hover .header__line:first-child, .header__burger--active:focus .header__line:first-child {
      -webkit-transform: rotate(-45deg) translate(-1px, 2px) scale(1.2);
      -ms-transform: rotate(-45deg) translate(-1px, 2px) scale(1.2);
      transform: rotate(-45deg) translate(-1px, 2px) scale(1.2); }
  .header__line {
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s; }
    .header__line:first-child {
      -webkit-transform: translateY(-7px);
      -ms-transform: translateY(-7px);
      transform: translateY(-7px); }
    .header__line:last-child {
      -webkit-transform: translateY(7px);
      -ms-transform: translateY(7px);
      transform: translateY(7px);
      width: 75%;
      margin-left: auto; }

@media (max-width: 991px) {
  .header__content {
    padding: 15px 15px 20px; } }

@media (max-width: 900px) {
  .header__more {
    display: none; } }

@media (max-width: 767px) {
  .header__burger {
    display: block; }
  .header__link {
    margin-left: 25px; }
    .header__link:first-child {
      margin-left: 0; } }

@media (max-width: 600px) {
  .header__text {
    display: none; } }

.top {
  padding: 70px 0 130px;
  background: url("../img/top/top-bg.jpg") center top 70px/cover no-repeat;
  position: relative;
  overflow: hidden; }
  .top__menu {
    width: 100%;
    height: 70px;
    position: absolute;
    left: 0;
    top: 0; }
  .top__navigation {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    padding: 0 185px;
    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; }
  .top__link {
    display: block;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.45px;
    color: #48a5dc;
    padding: 13px 25px;
    border-radius: 30px;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s; }
    .top__link:hover, .top__link:focus {
      color: #ffffff;
      background: -webkit-gradient(linear, left top, left bottom, from(#48a5dc), to(#1e6690));
      background: -webkit-linear-gradient(top, #48a5dc, #1e6690);
      background: -o-linear-gradient(top, #48a5dc, #1e6690);
      background: linear-gradient(to bottom, #48a5dc, #1e6690); }
  .top__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .top__actions {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 33%;
    flex: 0 1 33%;
    max-width: 33%;
    padding: 60px 0 0 60px;
    position: relative; }
  .top__title {
    font-weight: 700;
    font-size: 30px;
    color: #bf55a1;
    margin-bottom: 30px; }
  .top__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .top__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    max-width: 50%;
    margin-bottom: 37px;
    padding-right: 10px; }
    .top__item.first-item {
      -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
      flex: 0 1 100%;
      max-width: 100%; }
      .top__item.first-item .top__text {
        width: 50%; }
  .top__icon {
    height: 50px;
    margin-bottom: 13px; }
    .top__icon img {
      display: block;
      max-height: 100%;
      width: auto; }
  .top__text {
    font-size: 18px; }
  .top__presentation {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 67%;
    flex: 0 1 67%;
    max-height: 67%;
    background: url("../img/top/top-woman.png") right bottom no-repeat;
    padding-top: 114px; }
  .top__info {
    width: 618px;
    margin-left: -80px;
    position: relative; }
  .top__monitor {
    margin-bottom: 10px; }
    .top__monitor img {
      display: block;
      height: auto;
      width: 100%; }
  .top__video {
    background-color: black;
    width: 392px;
    height: 247px;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 20px);
    -ms-transform: translate(-50%, 20px);
    transform: translate(-50%, 20px); }
    .top__video video {
      width: 100%;
      height: 100%; }
  .top__warning {
    width: 505px;
    margin: 0 auto;
    padding: 16px;
    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;
    border-radius: 50px;
    border: 1px solid #48a5dc;
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transform: translate(95%, -30px);
    -ms-transform: translate(95%, -30px);
    transform: translate(95%, -30px); }
  .top__sign {
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #48a5dc;
    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;
    font-size: 28px;
    font-weight: 700;
    color: #48a5dc;
    margin-right: 18px; }
  .top__message {
    font-size: 18px;
    color: #48a5dc; }

.item-pointer .top__icon {
  position: relative; }
  .item-pointer .top__icon::before {
    content: '';
    width: 2px;
    height: 35px;
    background-color: #f0e0eb;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: translate(20px, -110%);
    -ms-transform: translate(20px, -110%);
    transform: translate(20px, -110%); }
  .item-pointer .top__icon::after {
    content: '';
    width: 75px;
    height: 2px;
    background-color: #f0e0eb;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(-20px, -50%);
    -ms-transform: translate(-20px, -50%);
    transform: translate(-20px, -50%); }

@media (max-width: 1300px) {
  .top__navigation {
    padding: 0 15px; }
  .top__actions {
    padding-left: 15px; }
  .top__presentation {
    background-position: right -100px bottom; } }

@media (max-width: 1200px) {
  .top {
    background-size: 100% auto;
    background-position: center top 70px; }
    .top__content {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
    .top__actions {
      -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
      order: 10;
      -webkit-box-flex: 0;
      -ms-flex: 0 0 475px;
      flex: 0 0 475px;
      max-width: 475px;
      margin: 0 auto;
      padding-top: 0; }
    .top__warning {
      left: 50%;
      -webkit-transform: translate(-50%, 100%);
      -ms-transform: translate(-50%, 100%);
      transform: translate(-50%, 100%); }
    .top__presentation {
      -webkit-box-flex: 0;
      -ms-flex: 0 1 950px;
      flex: 0 1 950px;
      max-width: 950px;
      margin: 0 auto 10px;
      height: 430px;
      background-size: auto 100%;
      background-position: right  bottom; }
    .top__info {
      margin-left: 0; } }

@media (max-width: 991px) {
  .top__link {
    font-size: 16px;
    padding: 8px 18px; } }

@media (max-width: 900px) {
  .top__presentation {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 100%;
    background-position: right -50px bottom; }
  .top__info {
    margin-left: -20px; } }

@media (max-width: 767px) {
  .top {
    padding-top: 0;
    background-position: center top; }
    .top__menu {
      width: 220px;
      height: auto;
      top: 50px;
      left: 0; }
    .top__navigation {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      width: 100%;
      background-color: transparent; }
    .top__link {
      -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
      flex: 0 1 100%;
      max-width: 100%;
      text-align: center;
      margin-bottom: 20px;
      border: 1px solid #48a5dc; }
    .top__presentation {
      padding-top: 350px;
      height: auto;
      background-size: auto 350px;
      background-position: right -50px top; }
    .top__video {
      width: 370px;
      height: 230px; }
    .top__info {
      width: 580px;
      margin: 0 auto; } }

@media (max-width: 600px) {
  .top__menu {
    top: 30px; }
  .top__link {
    margin-bottom: 10px; }
  .top__video {
    width: 205px;
    height: 130px;
    -webkit-transform: translate(-50%, 10px);
    -ms-transform: translate(-50%, 10px);
    transform: translate(-50%, 10px); }
  .top__actions {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 100%; }
  .top__warning {
    width: 90%; }
  .top__presentation {
    padding-top: 250px;
    background-size: auto 250px;
    background-position: right -30px top; }
  .top__info {
    width: 320px; } }

@media (max-width: 400px) {
  .top {
    padding-bottom: 75px; }
    .top__menu {
      -webkit-box-flex: 0;
      -ms-flex: 0 1 160px;
      flex: 0 1 160px;
      max-width: 170px; }
    .top__link {
      font-size: 11px; }
    .top__title {
      font-size: 19px;
      margin-bottom: 15px; }
    .top__warning {
      padding: 10px; }
    .top__sign {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
      flex: 0 0 30px;
      width: 30px;
      height: 30px;
      font-size: 20px; }
    .top__message {
      font-size: 10.5px; }
    .top__icon {
      height: 38px; }
    .top__text {
      font-size: 13px; } }

.about {
  padding: 0 110px 83px 50px; }
  .about__title {
    font-size: 0; }
  .about__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .about__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 30%;
    flex: 0 1 30%;
    max-width: 30%;
    padding: 0 5px;
    margin-bottom: 35px; }
    .about__item--big {
      -webkit-box-flex: 0;
      -ms-flex: 0 1 40%;
      flex: 0 1 40%;
      max-width: 40%; }
  .about__icon {
    height: 115px;
    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;
    margin-bottom: 22px; }
    .about__icon img {
      display: block;
      max-height: 100%;
      width: auto; }
  .about__subtitle {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 42px;
    text-align: center; }
  .about__description {
    font-size: 24px;
    text-align: center; }

@media (max-width: 1200px) {
  .about {
    padding: 0 15px; } }

@media (max-width: 992px) {
  .about__item {
    padding: 0 10px; }
  .about__icon {
    height: 70px;
    margin-bottom: 17px; }
  .about__subtitle {
    font-size: 15px;
    margin-bottom: 10px; }
  .about__description {
    font-size: 14px; } }

@media (max-width: 767px) {
  .about__block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .about__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    max-width: 50%; } }

@media (max-width: 600px) {
  .about__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 100%;
    margin-bottom: 20px; }
  .about__icon {
    height: 65px;
    margin-bottom: 10px; }
  .about__subtitle {
    font-size: 13.5px;
    margin-bottom: 5px; }
  .about__description {
    font-size: 13.5px; } }

.who {
  padding: 95px 15px 63px;
  background: url("../img/who/who-bg.jpg") center/cover no-repeat; }
  .who__title {
    margin-bottom: 105px; }
  .who__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .who__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
    width: 300px;
    margin-bottom: 33px; }
    .who__item:nth-child(1) {
      margin-right: 115px; }
      .who__item:nth-child(1) .who__image.ibg {
        background-size: auto 125%;
        background-position: center bottom; }
    .who__item:nth-child(2) .who__image.ibg {
      background-size: auto 105%;
      background-position: left -120px center; }
  .who__image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 5px solid #48a5dc;
    margin-bottom: 50px;
    position: relative; }
  .who__text {
    color: #404040;
    font-size: 24px;
    line-height: 1.25;
    text-transform: uppercase;
    text-align: center; }
  .who__ok {
    position: absolute;
    left: 30px;
    bottom: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #48a5dc;
    color: #ffffff;
    text-align: center;
    font-size: 24px;
    line-height: 36px;
    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; }
    .who__ok span {
      display: block;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background-color: #48a5dc;
      border: 3px solid #ffffff; }

@media (max-width: 992px) {
  .who__title {
    font-size: 40px; } }

@media (max-width: 767px) {
  .who {
    padding: 60px 15px 80px; }
    .who__title {
      font-size: 36px;
      margin-bottom: 55px; }
    .who__block {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
    .who__item {
      -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
      flex: 0 1 100%;
      max-width: 100%; }
      .who__item:nth-child(1) {
        margin-right: 0; }
    .who__image {
      margin: 0 auto 33px; }
    .who__text {
      font-size: 20px; } }

@media (max-width: 400px) {
  .who {
    padding: 0 15px 8px; }
    .who__title {
      margin-bottom: 20px; }
    .who__item {
      margin-bottom: 25px; }
    .who__image {
      width: 230px;
      height: 230px;
      margin-bottom: 10px; }
    .who__text {
      font-size: 15.5px; }
    .who__ok {
      left: 20px;
      width: 40px;
      height: 40px;
      font-size: 20px;
      line-height: 30px; }
      .who__ok span {
        width: 34px;
        height: 34px; } }

.instruction {
  padding: 35px 145px 0;
  position: relative;
  overflow: hidden; }
  .instruction::before {
    content: '';
    width: 1100px;
    height: 1100px;
    border-radius: 50%;
    border: 150px solid rgba(243, 132, 212, 0.05);
    background-color: transparent;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10; }
  .instruction__title {
    margin-bottom: 90px; }
  .instruction__block {
    position: relative;
    z-index: 20;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 -50px; }
  .instruction__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 33.333%;
    flex: 0 1 33.333%;
    max-width: 33.333%;
    padding: 115px 50px 0;
    margin-bottom: 60px; }
  .instruction__image {
    width: 100%;
    height: 160px;
    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;
    margin-bottom: 100px; }
    .instruction__image img {
      display: block;
      max-height: 100%;
      width: auto;
      position: relative;
      z-index: 30; }
    .instruction__image::before {
      content: '';
      width: 265px;
      height: 265px;
      border-radius: 50%;
      background-color: #ffffff;
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      z-index: 10;
      -webkit-box-shadow: inset 0 0 0px 18px #ffffff, inset 0 0 0px 19px #e7e2e6, 0 0 43px rgba(216, 205, 215, 0.4);
      box-shadow: inset 0 0 0px 18px #ffffff, inset 0 0 0px 19px #e7e2e6, 0 0 43px rgba(216, 205, 215, 0.4); }
  .instruction__number {
    display: block;
    font-weight: 700;
    font-size: 140px;
    color: rgba(227, 192, 192, 0.3);
    font-family: 'Times New Roman', serif;
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translate(-180%, -90%);
    -ms-transform: translate(-180%, -90%);
    transform: translate(-180%, -90%);
    z-index: 1; }
  .instruction__text {
    font-size: 18px;
    line-height: 1.33; }
    .instruction__text.text-italic {
      margin-top: 18px; }

@media (max-width: 1300px) {
  .instruction {
    padding: 35px 15px 0; }
    .instruction__block {
      margin: 0 -10px; }
    .instruction__item {
      padding: 115px 10px 0; } }

@media (max-width: 1200px) {
  .instruction::before {
    width: 950px;
    height: 950px; } }

@media (max-width: 991px) {
  .instruction {
    padding: 0 35px 0; }
    .instruction::before {
      width: 750px;
      height: 750px; }
    .instruction__title {
      margin-bottom: 50px; }
    .instruction__block {
      margin: 0; }
    .instruction__item {
      padding: 110px 25px 0;
      -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
      flex: 0 1 50%;
      max-width: 50%;
      margin-bottom: 45px; } }

@media (max-width: 767px) {
  .instruction::before {
    display: none; }
  .instruction__title {
    margin-bottom: 20px; }
  .instruction__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 100%;
    margin-bottom: 30px; } }

@media (max-width: 400px) {
  .instruction__item {
    padding: 85px 0 0 25px; }
  .instruction__number {
    font-size: 105px; }
  .instruction__image {
    width: 240px;
    height: 110px;
    margin: 0 auto 55px; }
    .instruction__image::before {
      width: 200px;
      height: 200px;
      -webkit-box-shadow: inset 0 0 0px 12px #ffffff, inset 0 0 0px 13px #e7e2e6, 0 0 43px rgba(216, 205, 215, 0.4);
      box-shadow: inset 0 0 0px 12px #ffffff, inset 0 0 0px 13px #e7e2e6, 0 0 43px rgba(216, 205, 215, 0.4); }
  .instruction__text {
    font-size: 13.5px;
    line-height: 1.4; } }

.result {
  padding: 50px 15px 100px; }
  .result__title {
    margin-bottom: 100px; }
  .result__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 40px; }
  .result__column {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 32.5%;
    flex: 0 1 32.5%;
    max-width: 32.5%;
    -webkit-box-shadow: 0 0 62px 25px rgba(112, 100, 134, 0.25);
    box-shadow: 0 0 62px 25px rgba(112, 100, 134, 0.25);
    background-color: #f3ebf1;
    border-radius: 30px;
    position: relative; }
  .result__item {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background-color: #f3ebf1;
    padding: 53px 30px 120px;
    -webkit-box-shadow: 0 0 10px #f3ebf1;
    box-shadow: 0 0 10px #f3ebf1;
    position: relative;
    z-index: 20;
    overflow: hidden; }
    .result__item::before {
      content: '';
      width: 290px;
      height: 290px;
      border-radius: 50%;
      background-color: transparent;
      border: 58px solid #ffffff;
      position: absolute;
      left: 50%;
      top: 0;
      -webkit-transform: translate(-50%, -60%);
      -ms-transform: translate(-50%, -60%);
      transform: translate(-50%, -60%); }
  .result__subtitle {
    font-family: 'Times New Roman', serif;
    font-size: 34px;
    letter-spacing: 1.85px;
    color: #f4a2b2;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 20; }
  .result__text {
    position: relative;
    z-index: 20;
    font-size: 18px;
    line-height: 1.4;
    text-align: center; }
    .result__text.text-italic {
      color: #414149;
      margin-top: 18px; }
  .result__image {
    width: 137px;
    height: 137px;
    border-radius: 50%;
    background-color: #ffffff;
    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;
    -webkit-box-shadow: 0 0 0 12px rgba(253, 253, 254, 0.72), 0 0 62px rgba(112, 100, 134, 0.25);
    box-shadow: 0 0 0 12px rgba(253, 253, 254, 0.72), 0 0 62px rgba(112, 100, 134, 0.25);
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translate(-50%, 35px);
    -ms-transform: translate(-50%, 35px);
    transform: translate(-50%, 35px);
    z-index: 30; }
    .result__image img {
      display: block;
      max-width: 75%;
      height: auto; }

@media (max-width: 1200px) {
  .result {
    padding-bottom: 0; }
    .result__block {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
    .result__column {
      -webkit-box-flex: 0;
      -ms-flex: 0 1 45%;
      flex: 0 1 45%;
      max-width: 45%;
      margin: 0 10px 110px 10px; } }

@media (max-width: 991px) {
  .result {
    padding-top: 30px;
    margin-bottom: -30px; }
    .result__title {
      margin-bottom: 73px; }
    .result__block {
      padding: 0 20px; }
    .result__column {
      -webkit-box-flex: 0;
      -ms-flex: 0 1 62%;
      flex: 0 1 62%;
      max-width: 62%;
      margin: 0 0 110px 0; } }

@media (max-width: 600px) {
  .result {
    margin-bottom: 0; }
    .result__title {
      margin-bottom: 25px; }
    .result__block {
      padding: 0 13px; }
    .result__column {
      -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
      flex: 0 1 100%;
      max-width: 100%;
      margin: 0 0 45px 0;
      -webkit-box-shadow: 0 0 20px 25px rgba(112, 100, 134, 0.05);
      box-shadow: 0 0 20px 25px rgba(112, 100, 134, 0.05); }
    .result__item {
      padding: 35px 30px 105px; }
      .result__item::before {
        width: 185px;
        height: 185px;
        border: 43px solid #ffffff; }
    .result__subtitle {
      font-size: 22px;
      margin-bottom: 15px; }
    .result__text {
      font-size: 11.5px; }
      .result__text.text-italic {
        margin-top: 10px; }
    .result__image {
      width: 89px;
      height: 89px;
      -webkit-box-shadow: 0 0 0 8px rgba(253, 253, 254, 0.72), 0 0 62px rgba(112, 100, 134, 0.25);
      box-shadow: 0 0 0 8px rgba(253, 253, 254, 0.72), 0 0 62px rgba(112, 100, 134, 0.25);
      left: 50%;
      bottom: 0;
      -webkit-transform: translate(-50%, 23px);
      -ms-transform: translate(-50%, 23px);
      transform: translate(-50%, 23px);
      z-index: 30; } }

.prices {
  padding: 100px 0 90px; }
  .prices__title {
    margin-bottom: 80px; }
    .prices__title .text-violet span {
      font-weight: 400; }
  .prices__slider {
    width: 70%;
    margin: 0 auto; }
  .prices__slide {
    min-height: 110px; }
  .prices__link {
    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: 100%; }
    .prices__link img {
      width: 80%;
      -webkit-filter: grayscale(1);
      filter: grayscale(1);
      -webkit-transition-duration: 0.5s;
      -o-transition-duration: 0.5s;
      transition-duration: 0.5s; }
      .prices__link img:hover, .prices__link img:focus {
        -webkit-filter: grayscale(0);
        filter: grayscale(0); }

.slick-slider {
  min-width: 0;
  position: relative; }

.slick-list {
  overflow: hidden; }

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

.slick-slide {
  min-width: 0; }

.prev-arrow, .next-arrow {
  font-size: 90px;
  line-height: 1;
  color: #cccccc;
  background-color: transparent;
  outline: none;
  position: absolute;
  top: 0;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s; }
  .prev-arrow:hover, .prev-arrow:focus, .next-arrow:hover, .next-arrow:focus {
    color: #b7549b; }
  .prev-arrow:active, .next-arrow:active {
    text-shadow: 0 0 15px #b7549b; }

.prev-arrow {
  left: -10%; }

.next-arrow {
  right: -10%; }

@media (max-width: 991px) {
  .prices {
    padding: 50px 15px; }
  .prices__title {
    font-size: 40px;
    margin-bottom: 50px; }
  .prices__slider {
    width: 90%; }
  .prices .prev-arrow {
    left: -25px; }
  .prices .next-arrow {
    right: -25px; } }

@media (max-width: 600px) {
  .prices {
    padding: 15px; }
  .prices__title {
    font-size: 19px;
    margin-bottom: 15px; } }

.review {
  padding: 30px 0 105px;
  overflow: hidden; }
  .review__title {
    margin-bottom: 40px; }
  .review__slider {
    min-width: 0; }
  .review__slide {
    margin: 20px 0;
    min-width: 0; }
  .review__item {
    width: 620px;
    margin: 0 auto;
    -webkit-box-shadow: 0 0 62px rgba(112, 110, 134, 0.25);
    box-shadow: 0 0 62px rgba(112, 110, 134, 0.25);
    border: 1px solid #e3dce2;
    border-radius: 100px;
    padding: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .review__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 140px;
    flex: 0 0 140px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 10px 25px 0 0; }
  .review__info {
    -ms-flex-preferred-size: calc(100% - 165px);
    flex-basis: calc(100% - 165px);
    width: calc(100% - 165px); }
  .review__name {
    font-size: 24px;
    letter-spacing: -0.6px;
    margin-bottom: 10px; }
  .review__text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px; }
  .review__button {
    font-size: 18px;
    color: #897a86;
    text-decoration: underline;
    text-transform: uppercase;
    background-color: transparent;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s; }
    .review__button:hover, .review__button:focus {
      text-shadow: 0 0 15px #897a86; }
  .review .slick-track {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .review .slick-slide {
    -webkit-transform: scale(0.5, 0.5);
    -ms-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5); }
  .review .slick-current {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 620px;
    flex: 0 0 620px;
    margin-left: 130px;
    padding: 0px 0 20px; }
  .review .slick-dots {
    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: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 55px);
    -ms-transform: translate(-50%, 55px);
    transform: translate(-50%, 55px);
    font-size: 0; }
  .review .slick-dots li {
    margin: 0 7px; }
    .review .slick-dots li.slick-active button {
      width: 22px;
      height: 22px;
      background-color: transparent;
      border: 2px solid #bf55a1; }
  .review .slick-dots li button {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #bf55a1; }

@media (max-width: 992px) {
  .review .slick-current {
    margin-left: 70px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 700px;
    flex: 0 1 700px;
    max-width: 700px; }
  .review__item {
    margin: 0 auto;
    width: 100%; } }

@media (max-width: 768px) {
  .review {
    padding: 30px 5px 50px; }
  .review .slick-current {
    margin: 20px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 90vw;
    flex: 0 1 90vw;
    max-width: 90vw; }
  .review .slick-dots {
    -webkit-transform: translate(-50%, 15px);
    -ms-transform: translate(-50%, 15px);
    transform: translate(-50%, 15px); } }

@media (max-width: 600px) {
  .review {
    padding-bottom: 10px; }
  .review__title {
    margin-bottom: 10px; }
  .review__item {
    padding: 15px 15px 15px 30px; }
  .review__name {
    font-size: 13.5px; }
  .review__text {
    font-size: 9.5px;
    margin-bottom: 7px; }
  .review__button {
    font-size: 8.5px; }
  .review .slick-dots {
    -webkit-transform: translate(-50%, -20px);
    -ms-transform: translate(-50%, -20px);
    transform: translate(-50%, -20px); }
  .review .slick-dots li {
    margin: 0 6px; }
    .review .slick-dots li.slick-active button {
      width: 11px;
      height: 11px; }
  .review .slick-dots li button {
    width: 6px;
    height: 6px; }
  .review__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 67px;
    flex: 0 0 67px;
    width: 67px;
    height: 67px;
    margin: 5px 12px 0 0; }
  .review__info {
    -ms-flex-preferred-size: calc(100% - 80px);
    flex-basis: calc(100% - 80px);
    width: calc(100% - 80px); } }

@media (max-width: 400px) {
  .review__item {
    padding-left: 15px; }
  .review__text {
    max-height: 55px;
    overflow-y: hidden; } }

.disease {
  padding: 100px 60px 0 150px; }
  .disease__block {
    background-color: #ae5395;
    border-radius: 40px;
    color: #ffffff;
    padding: 65px 35px 45px 70px;
    position: relative; }
  .disease__title {
    margin-left: 170px;
    color: #ffffff;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 30px; }
  .disease__text {
    margin-left: 170px;
    font-size: 24px;
    line-height: 1.25; }
  .disease__test {
    margin: 35px 0 75px 170px;
    padding-left: 60px;
    font-weight: 700;
    font-size: 30px;
    color: #47193a;
    text-transform: uppercase;
    position: relative; }
    .disease__test::before {
      content: '';
      width: 40px;
      height: 100%;
      min-height: 40px;
      position: absolute;
      left: 0;
      top: 0;
      background: url("../img/disease/icon-ok.png") center top no-repeat;
      background-size: 100% auto; }
  .disease__item {
    background-color: #883d73;
    padding: 50px 92px 42px;
    border-radius: 40px;
    width: 100%; }
  .disease__description {
    padding-left: 78px;
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 25px;
    position: relative; }
    .disease__description::before {
      content: '';
      width: 45px;
      height: 45px;
      position: absolute;
      left: 0;
      top: -5px; }
    .disease__description:nth-child(1)::before {
      background: url("../img/disease/icon-1.png") center no-repeat; }
    .disease__description:nth-child(2)::before {
      background: url("../img/disease/icon-2.png") center no-repeat; }
  .disease__image {
    width: 310px;
    height: 310px;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 18px rgba(192, 113, 186, 0.27);
    box-shadow: 0 0 0 18px rgba(192, 113, 186, 0.27);
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-40%);
    -ms-transform: translateX(-40%);
    transform: translateX(-40%); }
    .disease__image.ibg {
      background-size: 180% auto;
      background-position: left -40px center; }

@media (max-width: 1100px) {
  .disease__title {
    font-size: 40px; } }

@media (max-width: 992px) {
  .disease {
    padding: 50px 23px 0; }
    .disease__block {
      padding: 33px 25px 25px 45px; }
    .disease__title {
      margin: 0 0 20px 120px; }
    .disease__text {
      margin-left: 120px;
      font-size: 15px; }
    .disease__test {
      margin: 25px 0 45px 120px;
      padding-left: 40px;
      font-size: 19px; }
      .disease__test::before {
        width: 27px; }
    .disease__item {
      padding: 30px 36px 30px 55px; }
    .disease__description {
      font-size: 15px;
      margin-bottom: 10px; }
    .disease__image {
      width: 175px;
      height: 175px;
      top: 5px;
      -webkit-transform: translateX(-25%);
      -ms-transform: translateX(-25%);
      transform: translateX(-25%); } }

@media (max-width: 600px) {
  .disease {
    padding: 83px 15px 0; }
    .disease__block {
      border-radius: 20px;
      padding: 90px 18px 22px;
      text-align: center; }
    .disease__title {
      margin: 0 auto 10px;
      font-size: 17.5px;
      text-align: center; }
    .disease__text {
      font-size: 13.5px;
      margin: 0 auto;
      width: 70%; }
      .disease__text.text-bold {
        margin-top: 15px;
        width: 80%; }
    .disease__test {
      display: inline-block;
      margin: 15px 0 20px;
      padding-left: 26px;
      font-size: 12px; }
      .disease__test::before {
        width: 19px;
        top: -3px; }
    .disease__item {
      padding: 5px 10px 7px;
      border-radius: 15px; }
    .disease__description {
      padding: 0;
      margin-top: 55px; }
      .disease__description::before {
        width: 35px;
        height: 35px;
        left: 50%;
        top: 0;
        -webkit-transform: translate(-50%, -40px);
        -ms-transform: translate(-50%, -40px);
        transform: translate(-50%, -40px); }
    .disease__image {
      width: 145px;
      height: 145px;
      -webkit-box-shadow: 0 0 0 10px rgba(192, 113, 186, 0.27);
      box-shadow: 0 0 0 10px rgba(192, 113, 186, 0.27);
      left: 50%;
      top: 0;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); } }

@media (max-width: 338px) {
  .disease__test::before {
    -webkit-transform: translateX(25px);
    -ms-transform: translateX(25px);
    transform: translateX(25px); } }

.symptoms {
  padding: 115px 94px 0; }
  .symptoms__title {
    margin-bottom: 60px; }
  .symptoms__text {
    font-size: 24px;
    color: #484848;
    text-align: center;
    max-width: 890px;
    margin: 0 auto 80px; }
  .symptoms__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .symptoms__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 19%;
    flex: 0 1 19%;
    max-width: 19%;
    margin-bottom: 40px; }
  .symptoms__icon {
    width: 168px;
    height: 168px;
    border-radius: 50%;
    background-color: #fff7f9;
    margin: 0 auto 30px;
    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; }
    .symptoms__icon img {
      display: block;
      width: auto;
      max-height: 100%; }
  .symptoms__description {
    font-size: 20px;
    text-align: center; }

@media (max-width: 1300px) {
  .symptoms {
    padding: 115px 15px 0; } }

@media (max-width: 1100px) {
  .symptoms__block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .symptoms__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 33.333%;
    flex: 0 1 33.333%;
    max-width: 33.333%;
    padding: 0 10px; } }

@media (max-width: 768px) {
  .symptoms {
    padding: 55px 15px 0; }
    .symptoms__title {
      margin-bottom: 50px; }
    .symptoms__text {
      font-size: 20px;
      margin-bottom: 50px;
      width: 100%; }
    .symptoms__icon {
      width: 160px;
      height: 160px; } }

@media (max-width: 600px) {
  .symptoms__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    max-width: 50%; } }

@media (max-width: 400px) {
  .symptoms {
    padding-top: 25px; }
    .symptoms__title {
      margin-bottom: 12px; }
    .symptoms__text {
      font-size: 13.5px;
      margin-bottom: 25px; }
    .symptoms__item {
      -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
      flex: 0 1 100%;
      max-width: 100%;
      margin-bottom: 40px; }
    .symptoms__icon {
      width: 130px;
      height: 130px;
      margin-bottom: 25px; }
      .symptoms__icon img {
        height: 40%; }
    .symptoms__description {
      font-size: 15.5px; } }

.complications {
  padding: 150px 0 115px; }
  .complications__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    padding-right: 210px; }
  .complications__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 39.5%;
    flex: 0 1 39.5%;
    max-width: 39.5%;
    position: relative; }
    .complications__image img {
      display: block;
      max-width: 100%;
      height: auto; }
    .complications__image::after {
      content: '';
      width: 140%;
      height: 80%;
      background: url("../img/complications/round-image.png") no-repeat;
      background-size: cover;
      position: absolute;
      left: 0;
      top: -20%; }
  .complications__block {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 60.5%;
    flex: 0 1 60.5%;
    max-width: 60.5%;
    position: relative;
    z-index: 50; }
  .complications__element {
    width: 100%;
    border-radius: 5px;
    background: -webkit-gradient(linear, left top, left bottom, from(#e8f4fb), to(#ecf8ff));
    background: -webkit-linear-gradient(top, #e8f4fb, #ecf8ff);
    background: -o-linear-gradient(top, #e8f4fb, #ecf8ff);
    background: linear-gradient(to bottom, #e8f4fb, #ecf8ff);
    margin-bottom: 30px;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s; }
    .complications__element:hover {
      background: -webkit-gradient(linear, left top, left bottom, from(#ddf3ff), to(#ddf3ff));
      background: -webkit-linear-gradient(top, #ddf3ff, #ddf3ff);
      background: -o-linear-gradient(top, #ddf3ff, #ddf3ff);
      background: linear-gradient(to bottom, #ddf3ff, #ddf3ff); }
    .complications__element--active {
      -webkit-box-shadow: 0 0 62px rgba(112, 110, 134, 0.2);
      box-shadow: 0 0 62px rgba(112, 110, 134, 0.2);
      -webkit-transition-duration: 0.3s;
      -o-transition-duration: 0.3s;
      transition-duration: 0.3s; }
      .complications__element--active:hover {
        -webkit-box-shadow: 0 0 20px rgba(112, 110, 134, 0.5);
        box-shadow: 0 0 20px rgba(112, 110, 134, 0.5); }
  .complications__header {
    padding: 27px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer; }
    .complications__header--active {
      background: -webkit-gradient(linear, left top, left bottom, from(#ddf3ff), to(#ddf3ff));
      background: -webkit-linear-gradient(top, #ddf3ff, #ddf3ff);
      background: -o-linear-gradient(top, #ddf3ff, #ddf3ff);
      background: linear-gradient(to bottom, #ddf3ff, #ddf3ff); }
  .complications__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60px;
    flex: 0 0 60px;
    width: 60px;
    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;
    margin-right: 25px; }
    .complications__icon img {
      display: block;
      max-width: 100%;
      height: auto; }
  .complications__subtitle {
    font-weight: 700;
    font-size: 30px;
    color: #48a5dc;
    margin-right: auto; }
  .complications__button {
    font-size: 0;
    background-color: transparent;
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 28px;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    margin-left: 15px;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    position: relative; }
    .complications__button::before, .complications__button::after {
      content: '';
      width: 100%;
      height: 2px;
      background-color: #8dd5ff;
      position: absolute;
      top: 48%;
      left: 0;
      -webkit-transition-duration: 0.3s;
      -o-transition-duration: 0.3s;
      transition-duration: 0.3s; }
    .complications__button::after {
      -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
      transform: rotate(90deg); }
    .complications__button:hover::before, .complications__button:focus::before, .complications__button:hover::after, .complications__button:focus::after {
      -webkit-box-shadow: 0 0 5px #48a5dc;
      box-shadow: 0 0 5px #48a5dc; }
    .complications__button--active::after {
      display: none; }
  .complications__info {
    padding: 15px;
    background-color: #ffffff;
    display: none; }
  .complications__text {
    width: 60%;
    margin: 0 auto;
    font-size: 20px; }
    .complications__text:not(:last-child) {
      margin-bottom: 20px; }
  .complications__title {
    position: absolute;
    right: 0;
    top: 0;
    font-weight: 700;
    font-size: 72px;
    letter-spacing: 1.8px;
    color: #ddf3ff;
    text-transform: uppercase;
    width: 705px;
    -webkit-transform: rotate(-90deg) translate(200px, -30px);
    -ms-transform: rotate(-90deg) translate(200px, -30px);
    transform: rotate(-90deg) translate(200px, -30px);
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -ms-flex-item-align: start;
    align-self: flex-start; }
    .complications__title span {
      display: block;
      text-align: right; }

@media (max-width: 1200px) {
  .complications__title {
    font-size: 60px; } }

@media (max-width: 1100px) {
  .complications__wrap {
    padding-right: 160px; }
  .complications__title {
    font-size: 56px;
    -webkit-transform: rotate(-90deg) translate(160px, -10px);
    -ms-transform: rotate(-90deg) translate(160px, -10px);
    transform: rotate(-90deg) translate(160px, -10px);
    width: 600px; } }

@media (max-width: 992px) {
  .complications {
    padding: 70px 0 55px; }
    .complications__subtitle {
      font-size: 24px; }
    .complications__text {
      font-size: 16px; }
      .complications__text:not(:last-child) {
        margin-bottom: 12px; } }

@media (max-width: 900px) {
  .complications__wrap {
    padding-left: 55px; }
  .complications__image {
    display: none; }
  .complications__block {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 100%; } }

@media (max-width: 600px) {
  .complications {
    padding: 0 0 5px; }
    .complications__wrap {
      padding: 0 15px;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
    .complications__element {
      margin-bottom: 14px; }
    .complications__block {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2; }
    .complications__title {
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1;
      position: relative;
      -webkit-transform: rotate(0) translate(0, 0);
      -ms-transform: rotate(0) translate(0, 0);
      transform: rotate(0) translate(0, 0);
      width: 100%;
      margin-bottom: 10px;
      font-size: 40px; } }

@media (max-width: 400px) {
  .complications__header {
    padding: 10px; }
  .complications__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 22px;
    flex: 0 0 22px;
    width: 22px; }
    .complications__icon img {
      width: 100%; }
  .complications__title {
    font-size: 29px; }
  .complications__subtitle {
    font-size: 13.5px; }
  .complications__text {
    font-size: 9px;
    width: 70%; }
  .complications__button {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 13px;
    flex: 0 0 13px;
    width: 13px;
    height: 13px; } }

.reason {
  padding: 110px 90px 65px; }
  .reason__title {
    margin-bottom: 15px; }
  .reason__text {
    font-size: 48px;
    color: #404040;
    text-align: center;
    margin-bottom: 100px; }
  .reason__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .reason__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 19%;
    flex: 0 1 19%;
    max-width: 19%;
    margin-bottom: 35px; }
  .reason__icon {
    width: 165px;
    height: 165px;
    border-radius: 50%;
    background-color: #fff7f9;
    margin: 0 auto 30px;
    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; }
    .reason__icon img {
      display: block;
      width: auto;
      max-height: 100%; }
  .reason__description {
    font-size: 20px;
    text-align: center; }

@media (max-width: 1300px) {
  .reason {
    padding: 10px 15px 35px; } }

@media (max-width: 1100px) {
  .reason__block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .reason__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 33.333%;
    flex: 0 1 33.333%;
    max-width: 33.333%;
    padding: 0 10px; } }

@media (max-width: 767px) {
  .reason {
    padding: 60px 15px 0; }
    .reason__title {
      margin-bottom: 5px; }
    .reason__text {
      font-size: 36px;
      margin-bottom: 70px; } }

@media (max-width: 600px) {
  .reason__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    max-width: 50%; }
  .reason__description {
    font-size: 15.5px; } }

@media (max-width: 400px) {
  .reason {
    padding-top: 15px; }
    .reason__text {
      font-size: 19.5px;
      margin-bottom: 25px; }
    .reason__item {
      -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
      flex: 0 1 100%;
      max-width: 100%; }
    .reason__icon {
      width: 130px;
      height: 130px;
      margin-bottom: 10px; }
      .reason__icon img {
        height: 40%; } }

.therapy {
  padding: 105px 125px 50px 80px; }
  .therapy__block {
    background-color: #ae5395;
    border-radius: 40px;
    color: #ffffff;
    padding: 95px 90px 75px;
    position: relative; }
  .therapy__title {
    color: #ffffff;
    text-align: left;
    margin-bottom: 65px; }
  .therapy__text {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0.6px;
    background-color: #883d73;
    padding: 20px 27px;
    border-radius: 15px;
    max-width: 85%;
    margin-bottom: 60px; }
  .therapy__element {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 45px; }
  .therapy__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75px;
    flex: 0 0 75px;
    width: 75px;
    margin: 0 35px 0 27px; }
    .therapy__icon img {
      display: block;
      max-width: 100%;
      height: auto; }
  .therapy__description {
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: 0.6px; }
  .therapy__image {
    width: 314px;
    height: 314px;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 18px rgba(192, 113, 186, 0.27);
    box-shadow: 0 0 0 18px rgba(192, 113, 186, 0.27);
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transform: translateX(30%);
    -ms-transform: translateX(30%);
    transform: translateX(30%); }
    .therapy__image.ibg {
      background-size: auto 100%;
      background-position: center top; }
    .therapy__image::after {
      content: '';
      width: 110%;
      height: 110%;
      border-radius: 50%;
      background-color: rgba(0, 0, 0, 0.5);
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }

@media (max-width: 1200px) {
  .therapy__image {
    -webkit-transform: translate(30%, -30px);
    -ms-transform: translate(30%, -30px);
    transform: translate(30%, -30px); } }

@media (max-width: 1100px) {
  .therapy__title {
    font-size: 40px; } }

@media (max-width: 992px) {
  .therapy {
    padding-top: 50px; }
    .therapy__block {
      padding: 55px 90px 55px 22px; }
    .therapy__title {
      margin-bottom: 35px;
      font-size: 34px; }
    .therapy__text {
      font-size: 15px;
      padding: 14px 20px;
      max-width: 88%;
      margin-bottom: 36px; }
    .therapy__element {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-bottom: 25px; }
    .therapy__icon {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
      flex: 0 0 50px;
      width: 50px;
      margin: 0 25px 0 15px; }
    .therapy__description {
      font-size: 15px; }
    .therapy__image {
      width: 185px;
      height: 185px;
      -webkit-transform: translateX(40%);
      -ms-transform: translateX(40%);
      transform: translateX(40%); } }

@media (max-width: 767px) {
  .therapy {
    padding: 85px 15px 10px; }
    .therapy__block {
      border-radius: 20px;
      padding: 80px 15px 20px; }
    .therapy__title {
      margin-bottom: 22px; }
    .therapy__text {
      padding: 22px 5px;
      max-width: 100%;
      margin-bottom: 27px; }
    .therapy__element {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin-bottom: 20px; }
    .therapy__icon {
      margin: 0 auto 12px; }
    .therapy__description {
      -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
      flex: 0 1 100%;
      max-width: 100%;
      text-align: center; }
    .therapy__image {
      width: 130px;
      height: 130px;
      -webkit-box-shadow: 0 0 0 10px rgba(192, 113, 186, 0.27);
      box-shadow: 0 0 0 10px rgba(192, 113, 186, 0.27);
      left: 50%;
      -webkit-transform: translate(-50%, -60%);
      -ms-transform: translate(-50%, -60%);
      transform: translate(-50%, -60%); } }

@media (max-width: 400px) {
  .therapy__title {
    text-transform: uppercase;
    font-size: 17.5px;
    text-align: center; }
  .therapy__text {
    font-size: 13.5px;
    line-height: 21px;
    text-align: center; }
  .therapy__description {
    font-size: 13.5px; } }

.prevention {
  padding: 80px 60px 0; }
  .prevention__wrap {
    border-bottom: 1px solid #e2e1ed; }
  .prevention__title {
    margin-bottom: 10px; }
  .prevention__subtitle {
    color: #404040;
    font-size: 48px;
    text-align: center;
    margin-bottom: 85px; }
  .prevention__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 117px; }
  .prevention__column {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 32%;
    flex: 0 1 32%;
    max-width: 33.333%;
    border-radius: 30px;
    -webkit-box-shadow: 0 0 62px rgba(112, 110, 134, 0.2);
    box-shadow: 0 0 62px rgba(112, 110, 134, 0.2);
    margin-bottom: 15px;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s; }
    .prevention__column:hover {
      -webkit-box-shadow: 0 0 20px rgba(112, 110, 134, 0.5);
      box-shadow: 0 0 20px rgba(112, 110, 134, 0.5); }
    .prevention__column:nth-child(1) .ibg {
      background-position: left -25px center; }
    .prevention__column:nth-child(2) .ibg {
      background-position: left -90px center; }
    .prevention__column:nth-child(3) .ibg {
      background-position: left -100px center; }
    .prevention__column:nth-child(4) .ibg {
      background-position: left -70px center; }
    .prevention__column:nth-child(5) .ibg {
      background-position: left -105px center; }
    .prevention__column--last {
      background-color: #b33a97;
      color: #ffffff; }
      .prevention__column--last .prevention__image {
        width: 100%;
        border-radius: 0;
        border: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
        .prevention__column--last .prevention__image img {
          display: block;
          -webkit-box-flex: 0;
          -ms-flex: 0 1 67.5%;
          flex: 0 1 67.5%;
          max-width: 67.5%;
          margin-top: auto; }
        .prevention__column--last .prevention__image span {
          display: block;
          -webkit-box-flex: 0;
          -ms-flex: 0 1 100%;
          flex: 0 1 100%;
          max-width: 100%;
          text-align: center;
          font-weight: 700;
          font-size: 30px;
          letter-spacing: 0.75px; }
      .prevention__column--last .prevention__description {
        color: #ffffff; }
  .prevention__item {
    padding: 25px 18px 30px; }
  .prevention__image {
    width: 167px;
    height: 167px;
    border-radius: 50%;
    border: 6px solid #c265ad;
    margin: 0 auto 35px; }
    .prevention__image.ibg {
      background-position: left center;
      background-size: auto; }
  .prevention__description {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    color: #404040;
    text-align: center; }
  .prevention__important {
    padding: 60px 60px 47px;
    background-color: #48a5dc;
    color: #ffffff;
    text-align: center;
    max-width: 1150px;
    margin: 0 auto 75px;
    border-radius: 500px; }
  .prevention__text {
    font-weight: 300;
    font-size: 30px;
    line-height: 1.333;
    margin-bottom: 30px; }
    .prevention__text.text-bold {
      font-weight: 700; }
    .prevention__text:last-child {
      max-width: 690px;
      margin: 0 auto; }
  .prevention__button {
    display: block;
    margin: 0 auto 47px;
    padding: 20px 90px;
    border-radius: 40px;
    border: 1px solid #48a5dc;
    background-color: transparent;
    color: #48a5dc;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s; }
    .prevention__button:hover, .prevention__button:focus {
      background-color: #48a5dc;
      color: #ffffff; }

@media (max-width: 1200px) {
  .prevention {
    padding: 25px 15px 0; } }

@media (max-width: 1100px) {
  .prevention__column {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 49%;
    flex: 0 1 49%;
    max-width: 49%; }
  .prevention__block {
    margin-bottom: 70px; } }

@media (max-width: 992px) {
  .prevention__important {
    padding: 35px 50px 25px;
    max-width: 92%;
    margin: 0 auto 27px; }
  .prevention__text {
    font-size: 18px;
    margin-bottom: 20px; }
    .prevention__text:last-child {
      max-width: 415px; }
  .prevention__button {
    margin-bottom: 35px; } }

@media (max-width: 767px) {
  .prevention__title {
    margin-bottom: 0px; }
  .prevention__subtitle {
    font-size: 36px;
    margin-bottom: 50px; }
  .prevention__column:nth-child(1) .ibg {
    background-size: 80%;
    background-position: center; }
  .prevention__image {
    width: 140px;
    height: 140px; }
  .prevention__description {
    font-size: 20px; } }

@media (max-width: 600px) {
  .prevention__block {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .prevention__block {
    margin-bottom: 17px; }
  .prevention__column {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 80%;
    flex: 0 1 80%;
    max-width: 80%; }
  .prevention__important {
    padding: 15px 22px;
    max-width: 100%;
    margin: 0 auto 17px; }
  .prevention__text {
    font-size: 12px; }
  .prevention__button {
    margin-bottom: 15px; } }

@media (max-width: 400px) {
  .prevention__subtitle {
    font-size: 19.5px;
    margin-bottom: 23px; }
  .prevention__column {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 90%;
    flex: 0 1 90%;
    max-width: 90%; }
    .prevention__column--last .prevention__image {
      height: 80px;
      margin-bottom: 10px; }
      .prevention__column--last .prevention__image img {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 80%;
        flex: 0 1 80%;
        max-width: 80%; }
      .prevention__column--last .prevention__image span {
        font-size: 20px; }
  .prevention__description {
    font-size: 14px; }
  .prevention__text {
    font-size: 9px;
    margin-bottom: 0; }
    .prevention__text:last-child {
      max-width: 95%; }
  .prevention__button {
    font-size: 11px;
    padding: 7px 30px; } }

.footer {
  padding: 35px 15px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .footer__instruction {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 100%;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #939393;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s; }
    .footer__instruction:hover, .footer__instruction:focus {
      color: #48a5dc;
      text-decoration: underline; }
  .footer__certificate {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 100%;
    font-size: 18px;
    line-height: 24px;
    color: #939393;
    text-align: center;
    margin-top: 13px; }

@media (max-width: 767px) {
  .footer {
    padding: 9px 15px 15px; }
  .footer__instruction {
    font-size: 16px; }
  .footer__certificate {
    font-size: 16px; } }

@media (max-width: 400px) {
  .footer__instruction {
    font-size: 7px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    line-height: 1.2; }
  .footer__certificate {
    font-size: 9.5px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin: 0; } }
