@font-face {
    font-family: "Manrope";
    src:
      local("Manrope"),
      url("../fonts/manrope-regular.woff2") format("woff2"),
      url("../fonts/manrope-regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Roboto";
    src:
      local("Roboto"),
      url("../fonts/roboto-regular.woff2") format("woff2"),
      url("../fonts/roboto-regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  *::before,
  *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  :hover {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  
  body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    background: #f0f4ff;
  }
  
  img {
    max-width: 100%;
  }
  
  input:focus {
    outline: none;
  }
  
  input {
    border: none;
  }
  
  button {
    padding: 0;
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
  }
  
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  ul li:not([class]) {
    margin-left: 18px;
    position: relative;
  }
  
  ul li:not([class])::before {
    display: block;
    content: "";
    position: absolute;
    left: -18px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #9e00ff;
    min-width: 10px;
    height: 10px;
    border-radius: 50%;
  }
  
  .clear {
    clear: both;
  }
  
  .container {
    padding: 0 20px;
    max-width: 1160px;
    margin: 0 auto;
  }
  
  /*header*/
  
  .btn-to-top {
    position: fixed;
    z-index: 100;
    bottom: 70px;
    left: 70px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #7250da;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition:
      background-color 0.2s ease,
      opacity 0.2s ease,
      -webkit-transform 0.2s ease;
    transition:
      background-color 0.2s ease,
      opacity 0.2s ease,
      -webkit-transform 0.2s ease;
    -o-transition:
      background-color 0.2s ease,
      opacity 0.2s ease,
      transform 0.2s ease;
    transition:
      background-color 0.2s ease,
      opacity 0.2s ease,
      transform 0.2s ease;
    transition:
      background-color 0.2s ease,
      opacity 0.2s ease,
      transform 0.2s ease,
      -webkit-transform 0.2s ease;
  }
  
  .btn-to-top.btn-to-top_hide {
    display: none;
  }
  
  .btn-to-top.btn-to-top_hiding {
    opacity: 0;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
  }
  
  .btn-to-top svg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  .btn-to-top svg path {
    -webkit-transition: fill 0.2s ease;
    -o-transition: fill 0.2s ease;
    transition: fill 0.2s ease;
  }
  
  @media (max-width: 991px) {
    .btn-to-top {
      width: 40px;
      height: 40px;
      bottom: 15px;
      left: 15px;
    }
  
    .btn-to-top svg {
      width: 13px;
      height: 13px;
    }
  }
  
  .header {
    padding: 16px 0;
  }
  
  .header-top-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
  }
  
  .header-top-li a {
    text-decoration: none;
    font-size: 16px;
    line-height: 140%;
    color: #ffffff;
  }
  
  .header-top-li a:hover {
    color: #43cdd7;
  }
  
  .header-middle {
    padding: 0 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
  }
  
  .header-link a {
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    line-height: 18.2px;
    color: #ffffff;
  }
  .header-logo.mob {
    display: none;
  }
  
  .header-link-img {
    background: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 5px 0 0;
  }
  
  .header-link a:hover {
    color: #43cdd7;
  }
  
  .header-link2 {
    padding: 8px 0 0 0;
  }
  
  .header-link2 a {
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    line-height: 140%;
    color: #ffffff;
  }
  
  .header-link2 a:hover {
    color: #43cdd7;
  }
  
  .header-link3 a {
    font-weight: 700;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    line-height: 140%;
    color: #ffffff;
  }
  
  .header-link3 a:hover {
    color: #43cdd7;
  }
  
  .header-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 0 0 0;
  }
  
  .header-social-li {
    padding: 0 12px 0 0;
  }
  
  .header-social-li a img + img {
    display: none;
  }
  
  .header-social-li a:hover img {
    display: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  
  .header-social-li a:hover img + img {
    display: block;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  
  .header-miner {
    margin-top: -50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .header-input {
    position: relative;
  }
  
  .header-input-button {
    position: absolute;
    right: 0;
    top: 0;
  }
  
  .header-input-button button {
    width: 44px;
    height: 48px;
    background: #fff;
    border-radius: 10px;
  }
  
  .header-input input {
    font-size: 16px;
    line-height: 28px;
    margin: 0 0 0 0;
    width: 240px;
    color: #7e7099;
    padding: 0 0 0 10px;
    height: 48px;
    background: #ffffff;
    border-radius: 10px;
  }
  
  .header-input input::-webkit-input-placeholder {
    color: #7e7099;
  }
  
  .header-input input::-moz-placeholder {
    color: #7e7099;
  }
  
  .header-input input:-ms-input-placeholder {
    color: #7e7099;
  }
  
  .header-input input::-ms-input-placeholder {
    color: #7e7099;
  }
  
  .header-input input::placeholder {
    color: #7e7099;
  }
  
  .header-button button {
    font-size: 18px;
    line-height: 140%;
    color: #ffffff;
    background: #43cdd7;
    border-radius: 10px;
    width: 175px;
    padding: 12px 0;
  }
  
  .header-button button:hover {
    background: #1a8289;
  }
  .tg-button {
    text-decoration: none;
    font-size: 18px;
    line-height: 140%;
    color: #ffffff;
    background: #43cdd7;
    border-radius: 10px;
    padding: 12px;
    align-items: center;
    display: flex;
    gap: 15px;
    width: 100%;
    justify-content: center;
  }
  .tg-button button:hover {
    background: #1a8289;
  }
  
  .tg-form {
    width: 100%;
  }
  
  .tg-title a {
    color: #43cdd7;
    transition: color 0.3s ease;
  }
  
  .tg-title a:hover {
    color: #1a8289;
  }
  .header-bottom {
    padding: 20px 0 0 0;
    -webkit-transition: 0.2s background-color;
    -o-transition: 0.2s background-color;
    transition: 0.2s background-color;
  }
  
  .header-bottom-ul {
    max-width: 1160px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  
  .header-bottom-li {
    position: relative;
  }
  
  .header-bottom-li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    line-height: 140%;
    color: #ffffff;
  }
  
  .header-bottom-li a svg {
    margin: 0 0 0 4px;
  }
  
  .header-bottom-li a:hover {
    color: #43cdd7;
  }
  
  .header-bottom-li a:hover svg path {
    stroke: #43cdd7;
  }
  
  .header-bottom-li a:hover svg {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  
  .header-bottom-li:hover .header-absolute {
    display: block;
    z-index: 2;
  }
  
  .header-bottom-li:hover .header-absolute2 {
    display: block;
  }
  
  .header-bottom-li:last-child .header-absolute,
  .header-bottom-li:last-child .header-absolute2,
  .header-bottom-li:nth-last-child(2) .header-absolute,
  .header-bottom-li:nth-last-child(2) .header-absolute2 {
    left: auto;
    right: 0;
  }
  
  .header-absolute {
    display: none;
    top: 20px;
    left: 0;
    position: absolute;
    width: auto;
    height: auto;
  }
  
  .header-absolute2 {
    display: none;
    top: 20px;
    right: 0;
    position: absolute;
    width: auto;
    height: auto;
  }
  
  .header-absolute-border {
    height: 100%;
    background: url(../images/header-absolute-border.png) 0 0 no-repeat;
    padding: 12px 20px 20px 20px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  
  .header-absolute-li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-decoration: none;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  
  .header-absolute-li a:hover .header-absolute-text {
    color: #43cdd7;
  }
  
  .header-absolute-elipse {
    margin: 7px 0 0 0;
    background: #5531d2;
    width: 8px;
    height: 8px;
    border-radius: 50%;
  }
  
  .header-absolute-text {
    width: 100%;
    padding: 0 0 0 5px;
    font-size: 16px;
    line-height: 140%;
    color: #200f3f;
  }
  
  /*main*/
  
  .breadcrumbs {
    background: -o-linear-gradient(
      8.55deg,
      #5531d2 24.63%,
      #9273e4 75.28%,
      #e7cdfc 113.86%
    );
    background: linear-gradient(
      81.45deg,
      #5531d2 24.63%,
      #9273e4 75.28%,
      #e7cdfc 113.86%
    );
  }
  
  .main {
    background: url(../images/bg.png) center 0 no-repeat;
    border-bottom-left-radius: 23%;
    overflow: hidden;
    position: relative;
  }
  
  .main-img {
    position: absolute;
    bottom: 0;
    right: 200px;
    pointer-events: none;
  }
  
  @media (max-width: 1650px) {
    .main-img {
      width: 525px;
    }
  }
  @media (max-width: 1410px) {
    .main-img {
      right: 0;
    }
  }
  @media (max-width: 850px) {
    .main-img {
      max-width: 500px;
      max-height: 465px;
      -o-object-fit: cover;
      object-fit: cover;
      bottom: 0;
    }
  }
  @media (max-width: 550px) {
    .main-img {
      width: 100%;
    }
  }
  
  .main-content {
    padding: 162px 0 0 0;
    width: 670px;
  }
  
  .main-title {
    font-size: 42px;
    line-height: 130%;
    color: #ffffff;
    margin: 0;
    font-weight: normal;
  }
  
  .main-suptitle {
    padding: 24px 0 0 0;
    font-size: 16px;
    line-height: 140%;
    font-family: "Manrope";
    color: #ffffff;
  }
  
  .main-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 42px 0 0 0;
    margin-bottom: 30px;
  }
  
  .main-button button {
    font-size: 18px;
    line-height: 140%;
    color: #ffffff;
    background: #43cdd7;
    border-radius: 10px;
    width: 255px;
    height: 57px;
  }
  
  .main-button button:hover {
    background: #1a8289;
  }
  
  .main-button2 {
    padding: 0 0 0 30px;
  }
  
  .main-button2 button {
    font-size: 18px;
    line-height: 140%;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 10px;
    width: 255px;
    height: 57px;
  }
  
  .main-button2 button:hover {
    background: #ffffff;
    color: #200f3f;
  }
  
  /*comprasion*/
  
  .comprasion {
    padding: 80px 0 0 0;
    background: url(../images/comprasion-bg.png) center 0 no-repeat;
  }
  
  .comprasion-title {
    font-weight: 700;
    font-size: 42px;
    line-height: 130%;
    text-align: center;
    color: #200f3f;
  }
  
  .comprasion-container {
    padding: 0 10px;
  }
  
  .comprasion-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 55px 0 0 0;
  }
  
  .comprasion-block {
    width: 33.3333333%;
    padding: 0 14px;
  }
  
  .comprasion-border {
    display: block;
    text-decoration: none;
    background: #ffffff url(../images/comprasion-border.png) 0 0 no-repeat;
    -webkit-box-shadow: 0px 4px 20px rgba(43, 17, 133, 0.2);
    box-shadow: 0px 4px 20px rgba(43, 17, 133, 0.2);
    border-radius: 20px;
    padding: 42px 22px 59px 22px;
    height: 100%;
    position: relative;
  }
  
  .comprasion-border:hover {
    background: #ffffff url(../images/comprasion-border-hv.png) 0 0 no-repeat;
    -webkit-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  
  .comprasion-border-title {
    z-index: 1;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    color: #ffffff;
    position: relative;
  }
  
  .comprasion-absolute {
    position: absolute;
    top: 32px;
    left: 10px;
    width: 42px;
    height: 42px;
  }
  
  .comprasion-border-price {
    padding: 50px 0 0 0;
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    color: #200f3f;
  }
  
  .comprasion-absolute-title {
    position: absolute;
    top: 75px;
    left: 22px;
    font-size: 16px;
    line-height: 140%;
    color: #ffffff;
  }
  
  .comprasion-border-suptitle {
    padding: 5px 0 0 0;
    font-size: 16px;
    line-height: 140%;
    color: #200f3f;
  }
  
  .comprasion-border-ul {
    padding: 14px 0 0 0;
  }
  
  .comprasion-border-li {
    padding: 10px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-size: 16px;
    line-height: 140%;
    color: #200f3f;
  }
  
  .comprasion-border-li img {
    margin: 0 4px 0 0;
  }
  
  .comprasion-suptitle {
    font-size: 14px;
    line-height: 140%;
    color: #200f3f;
    text-align: center;
    padding: 24px 0 0 0;
  }
  
  /*garant*/
  
  .garant {
    margin: -50px 0 0 0;
    background: url(../images/garant-bg.png) center 0 no-repeat;
    padding: 236px 0 196px 0;
  }
  
  .garant-title {
    font-weight: 700;
    font-size: 42px;
    line-height: 130%;
    text-align: center;
    color: #ffffff;
  }
  
  .garant-container {
    padding: 0 4px;
  }
  
  .garant-wrap {
    padding: 56px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .garant-block {
    width: 25%;
    padding: 0 16px;
  }
  
  .garant-border {
    margin: -48px 0 0 0;
    height: 180px;
    padding: 58px 16px 0 16px;
    background: #ffffff;
    -webkit-box-shadow: 0px 4px 20px rgba(43, 17, 133, 0.2);
    box-shadow: 0px 4px 20px rgba(43, 17, 133, 0.2);
    border-radius: 20px;
  }
  
  .garant-block-title {
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: #200f3f;
  }
  
  /*infosection*/
  
  .infosection {
    background: url(../images/infosection-bg.png) center 90% no-repeat;
    margin: -20px 0 0 0;
    padding: 0 0 120px 0;
  }
  
  .infosection-accordion {
    width: 736px;
    margin: 0 auto;
  }
  
  .infosection-accordion-title {
    font-weight: 700;
    font-size: 42px;
    line-height: 130%;
    text-align: center;
    color: #200f3f;
  }
  
  .expand {
    float: right;
    display: inline;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    margin: 0 10px;
  }
  
  .sidebar-1 {
    /* these are the styles for the container around the menu */
    width: 100%;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .sidebar-menu {
    margin: 16px 0 0 0;
    /*this style impacts the look of the heading containers. */
    cursor: pointer;
    padding: 16px 16px;
    position: relative;
    background: #ffffff;
    -webkit-box-shadow: 0px 2px 10px rgba(43, 17, 133, 0.1);
    box-shadow: 0px 2px 10px rgba(43, 17, 133, 0.1);
    border-radius: 10px;
    font-size: 18px;
    line-height: 140%;
    color: #200f3f;
    font-weight: 500;
    text-rendering: optimizeLegibility;
    letter-spacing: 0.5px;
    padding-right: 0;
  }
  
  .sidebar-menu:before {
    content: "";
    width: 2px;
    height: 18px;
    background: #9e00ff;
    border-radius: 10px;
    position: absolute;
    right: 22px;
    top: calc(32px - 12.5px);
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  
  .sidebar-menu:after {
    content: "";
    width: 2px;
    height: 18px;
    background: #9e00ff;
    border-radius: 10px;
    position: absolute;
    right: 22px;
    top: calc(32px - 12.5px);
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  
  .sidebar-menu:after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  
  .open {
    background: #c5a6fd !important;
    color: #fff;
    border-radius: 10px 10px 0 0;
  }
  
  .open:before {
    background: #fff;
    -webkit-animation: turn-plus;
    animation: turn-plus;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  
  .open:after {
    background: #fff;
    -webkit-animation: turn-crossbar;
    animation: turn-crossbar;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  
  @-webkit-keyframes turn-plus {
    0% {
      -webkit-transform: translate(0, 0);
      transform: translate(0, 0);
    }
  
    50% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  
    100% {
      -webkit-transform: rotate(90deg);
      transform: rotate(90deg);
    }
  }
  
  @keyframes turn-plus {
    0% {
      -webkit-transform: translate(0, 0);
      transform: translate(0, 0);
    }
  
    50% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  
    100% {
      -webkit-transform: rotate(90deg);
      transform: rotate(90deg);
    }
  }
  
  @-webkit-keyframes turn-crossbar {
    0% {
      -webkit-transform: none;
      transform: none;
      -webkit-transform: rotate(90deg);
      transform: rotate(90deg);
    }
  
    50% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  
    100% {
      -webkit-transform: rotate(90deg);
      transform: rotate(90deg);
    }
  }
  
  @keyframes turn-crossbar {
    0% {
      -webkit-transform: none;
      transform: none;
      -webkit-transform: rotate(90deg);
      transform: rotate(90deg);
    }
  
    50% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  
    100% {
      -webkit-transform: rotate(90deg);
      transform: rotate(90deg);
    }
  }
  
  .sidebar-menu:hover {
    background: #e7cdfc;
    -webkit-box-shadow: 0px 2px 10px rgba(43, 17, 133, 0.1);
    box-shadow: 0px 2px 10px rgba(43, 17, 133, 0.1);
  }
  
  .sub-menu {
    /*this style is for the sub-menu box*/
  
    font-size: 1em;
    display: none;
  
    &:last-child {
      border-bottom: 0;
    }
  }
  
  .sub-text {
    padding: 16px 16px 32px 16px;
    background: #ffffff;
    -webkit-box-shadow: 0px 4px 10px rgba(43, 17, 133, 0.1);
    box-shadow: 0px 4px 10px rgba(43, 17, 133, 0.1);
    border-radius: 0 0 10px 10px;
    font-size: 18px;
    line-height: 140%;
    color: #200f3f;
  }
  
  .infosection-accordion-block {
    padding: 40px 0 0 0;
  }
  
  .whoshown {
    padding: 160px 0 0 0;
  }
  
  .whoshown-title {
    font-weight: 700;
    font-size: 42px;
    line-height: 130%;
    color: #200f3f;
  }
  
  .whoshown-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 55px 0 32px 0;
  }
  
  .whoshown-block {
    width: 50%;
    padding: 0 16px 0 0;
  }
  
  .whoshown-sings {
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    color: #200f3f;
  }
  
  .whoshown-sings-text {
    padding: 16px 0 0 0;
    font-size: 16px;
    line-height: 140%;
    color: #200f3f;
  }
  
  .whoshown-sings-padding {
    padding: 32px 0 0 0;
  }
  
  .whoshown-block2 {
    width: 50%;
    padding: 0 0 0 16px;
  }
  
  .whoshown-ul {
    padding: 16px 0 8px 0;
  }
  
  .whoshown-li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 0 0 0;
  }
  
  @media (max-width: 768px) {
    .whoshown-li {
      width: 100%;
    }
  }
  
  .whoshown-li-dote {
    background: #9e00ff;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10px;
    flex: 0 0 10px;
  }
  
  .whoshown-li-text {
    padding: 0 0 0 8px;
    font-size: 16px;
    line-height: 140%;
    color: #200f3f;
  }
  
  .whoshown-li-number {
    font-size: 14px;
    line-height: 140%;
    color: #ffffff;
    background: #9e00ff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    text-align: center;
  }
  
  /*getadvice*/
  
  .getadvice {
    background: url(../images/getadvice-bg.png) center 0 no-repeat;
    padding: 173px 0 77px 0;
  }
  
  .getadvice-title {
    font-weight: 700;
    font-size: 42px;
    line-height: 130%;
    color: #ffffff;
  }
  
  .getadvice-suptitle {
    padding: 16px 0 0 0;
    font-size: 18px;
    line-height: 140%;
    color: #ffffff;
  }
  
  .getadvice-form {
    padding: 11px 0 0 0;
  }
  
  .getadvice-border {
    width: 398px;
    padding: 8px 24px 24px 24px;
    background: #ffffff;
    border-radius: 20px;
  }
  
  .getadvice-input {
    padding: 16px 0 0 0;
  }
  
  .getadvice-input input {
    font-size: 18px;
    line-height: 140%;
    margin: 0 0 0 0;
    width: 100%;
    color: #200f3f;
    padding: 0 0 0 15px;
    height: 53px;
    background: #f6eefd;
    border-radius: 10px;
  }
  
  .getadvice-input input:focus {
    border: 2px solid #000;
    padding: 0 0 0 13px;
  }
  
  .getadvice-input input::-webkit-input-placeholder {
    color: #7e7099;
  }
  
  .getadvice-input input::-moz-placeholder {
    color: #7e7099;
  }
  
  .getadvice-input input:-ms-input-placeholder {
    color: #7e7099;
  }
  
  .getadvice-input input::-ms-input-placeholder {
    color: #7e7099;
  }
  
  .getadvice-input input::placeholder {
    color: #7e7099;
  }
  
  .getadvice-button {
    padding: 16px 0 0 0;
  }
  
  .getadvice-button button {
    font-size: 18px;
    line-height: 140%;
    color: #ffffff;
    background: #43cdd7;
    border-radius: 10px;
    width: 100%;
    height: 57px;
  }
  
  .getadvice-button button:hover {
    background: #1a8289;
  }
  
  .getadvice-form-text {
    padding: 8px 0 0 0;
    font-size: 12px;
    line-height: 140%;
    color: #200f3f;
  }
  
  .getadvice-form-text span {
    font-weight: 700;
  }
  
  .getadvice-form-text a {
    font-size: 12px;
    line-height: 140%;
    color: #200f3f;
  }
  
  .getadvice-form-text a:hover {
    color: #43cdd7;
  }
  
  .getadvice-block {
    position: relative;
  }
  
  /*weareinternet*/
  
  .weareinternet {
    padding: 72px 0 0 0;
  }
  
  .weareinternet-title {
    font-weight: 700;
    font-size: 42px;
    line-height: 130%;
    text-align: center;
    color: #200f3f;
  }
  
  .weareinternet-container {
    padding: 0 4px;
  }
  
  .weareinternet-block {
    width: 25%;
    padding: 0 16px;
  }
  
  .weareinternet-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 50px 0 0 0;
  }
  
  .weareinternet-border {
    position: relative;
    width: 100%;
    display: block;
    padding: 24px 24px;
    text-decoration: none;
    background: #ffffff;
    -webkit-box-shadow: 0px 4px 20px rgba(43, 17, 133, 0.2);
    box-shadow: 0px 4px 20px rgba(43, 17, 133, 0.2);
    border-radius: 20px;
  }
  
  .weareinternet-grade {
    padding: 8px 0;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    color: #200f3f;
  }
  
  .weareinternet-revievs {
    padding: 40px 0 0 0;
    font-size: 18px;
    line-height: 140%;
    color: #200f3f;
  }
  
  .weareinternet-absolute {
    background: #e7cdfc;
    opacity: 0.3;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    position: absolute;
    bottom: 16px;
    left: 7px;
  }
  
  /*footer*/
  
  .footer {
    margin: -50px 0 0 0;
    padding: 394px 0 0 /*  36px */ 0;
  }
  
  .footer-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  
  .footer-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .footer-link {
    padding: 46px 0 0 0;
  }
  
  .footer-link a {
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 20px;
    line-height: 140%;
    color: #ffffff;
  }
  
  .header-link-img {
    background: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 5px 0 0;
  }
  
  .footer-link a:hover {
    color: #43cdd7;
  }
  
  .footer-link2 {
    padding: 16px 0 0 0;
  }
  
  .footer-link2 a {
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    line-height: 140%;
    color: #ffffff;
  }
  
  .footer-link2 a:hover {
    color: #43cdd7;
  }
  
  .footer-block2 {
    padding: 0 0 0 53px;
  }
  
  .footer-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
    color: #ffffff;
  }
  
  .footer-ul {
    padding: 8px 0 0 0;
  }
  
  .footer-li {
    padding: 8px 0 0 0;
  }
  
  .footer-li a {
    font-size: 16px;
    line-height: 140%;
    color: #ffffff;
    text-decoration: none;
  }
  
  .footer-li a:hover {
    color: #43cdd7;
  }
  
  .footer-block3 {
    padding: 0 0 0 42px;
  }
  
  .footer-social {
    padding: 52px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .footer-form-text {
    padding: 0 0 8px 0;
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
    color: #ffffff;
  }
  
  .footer-input {
    padding: 16px 0 0 0;
  }
  
  .footer-input input {
    font-size: 18px;
    line-height: 140%;
    margin: 0 0 0 0;
    width: 352px;
    color: #200f3f;
    padding: 0 0 0 15px;
    height: 53px;
    background: #ffffff;
    border-radius: 10px;
  }
  
  .footer-input input:focus {
    border: 2px solid #000;
    padding: 0 0 0 13px;
  }
  
  .footer-input input::-webkit-input-placeholder {
    color: #7e7099;
  }
  
  .footer-input input::-moz-placeholder {
    color: #7e7099;
  }
  
  .footer-input input:-ms-input-placeholder {
    color: #7e7099;
  }
  
  .footer-input input::-ms-input-placeholder {
    color: #7e7099;
  }
  
  .footer-input input::placeholder {
    color: #7e7099;
  }
  
  .footer-button {
    padding: 16px 0 0 0;
  }
  
  .footer-button button {
    font-size: 18px;
    line-height: 140%;
    color: #ffffff;
    background: #43cdd7;
    border-radius: 10px;
    width: 352px;
    height: 57px;
  }
  
  .footer-button button:hover {
    background: #1a8289;
  }
  
  .footer-form-suptext {
    padding: 8px 0 0 0;
    font-size: 12px;
    line-height: 140%;
    color: #ffffff;
  }
  
  .footer-form-suptext a {
    font-size: 12px;
    line-height: 140%;
    color: #ffffff;
  }
  
  .footer-form-suptext a:hover {
    color: #43cdd7;
  }
  
  .footer-inner {
    padding: 38px 0 0 0;
  }
  
  .footer-suptitle {
    font-size: 12px;
    line-height: 140%;
    text-align: center;
    color: #ffffff;
  }
  
  /*BURGER*/
  
  .mt-munu-mb {
    padding: 0 0 0 0;
  }
  
  .burger {
    position: absolute;
    top: 30px;
    right: 0;
    display: none !important;
    color: #23f0ff;
    cursor: pointer;
    z-index: 12;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .burger i:nth-of-type(1) {
    display: block;
  }
  
  .burger i:nth-of-type(2) {
    display: none;
  }
  
  .burger.burger-open {
    color: #2a3255;
  }
  
  .burger.burger-open i:nth-of-type(1) {
    display: none;
  }
  
  .burger.burger-open i:nth-of-type(2) {
    display: block;
  }
  
  .body-open {
    overflow: hidden;
  }
  
  .mt-mobile {
    position: fixed;
    top: 50px;
    z-index: 11;
    right: 0;
    height: 100vh;
    width: 100%;
    padding: 50px 0 32px 0;
    background-color: #5531d2;
    -webkit-transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
    transition: 0.5s ease all;
    -webkit-clip-path: circle(100%);
    clip-path: circle(100%);
    overflow-y: scroll;
  }
  
  .mt-mobile.nav-open {
    -webkit-clip-path: circle(0px at 100% 0px);
    clip-path: circle(0px at 100% 0px);
  }
  
  .burger i svg {
  }
  
  .burger-title {
    padding: 24px 0 0 0;
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
    color: #ffffff;
  }
  
  .burger-ul {
    padding-left: 12px;
  }
  
  .burger-li {
    padding: 4px 0 0 0;
  }
  
  .burger-li a {
    text-decoration: none;
    font-size: 16px;
    line-height: 140%;
    color: #ffffff;
  }
  
  .burger-li a:hover {
    color: #43cdd7;
  }
  
  .comprasion-slayder {
    /* display: none; */
  }
  
  .weareinternet-slayder {
    display: none;
  }
  
  .footer-social2 {
    display: none;
  }
  
  .sidebar-menu br {
    display: none;
  }
  
  /*price*/
  
  /*header2*/
  
  .header2 {
    padding: 16px 0;
    background: -o-linear-gradient(
      340.94deg,
      #5531d2 28.35%,
      #9273e4 76.57%,
      #e7cdfc 113.82%
    );
    background: linear-gradient(
      109.06deg,
      #5531d2 28.35%,
      #9273e4 76.57%,
      #e7cdfc 113.82%
    );
  }
  
  /*price*/
  
  .price {
    background: url(../images/price-bg.png) center 45% no-repeat;
    padding: 16px 0 0 0;
  }
  
  .seeds {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 0;
  }
  
  .seeds-link a {
    font-size: 14px;
    font-family: "Manrope", sans-serif;
    font-weight: 300;
    line-height: 140%;
    color: #200f3f;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  
  .seeds-link a img {
    margin: -2px 2px 0 0;
  }
  
  .seeds-link a:hover {
    color: #43cdd7;
  }
  
  .seeds-link {
    color: #fff;
  }
  .seeds-link a {
    color: #fff;
  }
  
  .seeds-elipce {
    background: #fff;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin: 0 4px;
  }
  
  .seeds-link2 {
    text-decoration: none;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    color: #7e7099;
  }
  
  .seeds-link2:hover {
    color: #43cdd7;
  }
  
  .price-block {
    padding: 0 0 154px 0;
    width: 736px;
    margin: 0 auto;
  }
  
  .price-price {
    padding: 52px 0 0 0;
  }
  
  .price-border {
    padding: 16px 16px;
    background: -o-linear-gradient(
      340.94deg,
      #5531d2 28.35%,
      #9273e4 76.57%,
      #e7cdfc 113.82%
    );
    background: linear-gradient(
      109.06deg,
      #5531d2 28.35%,
      #9273e4 76.57%,
      #e7cdfc 113.82%
    );
    -webkit-box-shadow: 0px 2px 10px rgba(43, 17, 133, 0.1);
    box-shadow: 0px 2px 10px rgba(43, 17, 133, 0.1);
    border-radius: 10px 10px 0px 0px;
  }
  
  .price-border-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    color: #ffffff;
  }
  
  .price-border2 {
    padding: 16px 16px;
    background: #ffffff;
  }
  
  .price-border3 {
    padding: 16px 16px;
    background: #f7eeff;
  }
  
  .price-border4 {
    border-radius: 0 0 10px 10px;
    padding: 16px 16px;
    background: #ffffff;
  }
  
  .price-border5 {
    border-radius: 0 0 10px 10px;
    padding: 16px 16px;
    background: #f7eeff;
  }
  
  .price-border2-title {
    font-size: 18px;
    line-height: 140%;
    color: #200f3f;
  }
  
  .price-border2-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .price-border2-price {
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
    color: #200f3f;
  }
  
  .price-border2-button {
    padding: 0 0 0 10px;
  }
  
  .price-border2-button button {
    font-size: 18px;
    line-height: 140%;
    color: #ffffff;
    background: #43cdd7;
    border-radius: 10px;
    width: 98px;
    padding: 10px 0;
  }
  
  .price-border2-button button:hover {
    background: #1a8289;
  }
  
  .request-border {
    padding: 48px 32px;
    background: #ffffff;
    -webkit-box-shadow: 0px 4px 20px rgba(43, 17, 133, 0.2);
    box-shadow: 0px 4px 20px rgba(43, 17, 133, 0.2);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  
  .request-title {
    font-weight: 700;
    text-align: center;
    font-size: 24px;
    line-height: 120%;
    color: #000000;
  }
  
  .request-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 24px 0 0 0;
  }
  
  .request-block {
    width: 33.333333%;
    padding: 0 16px;
  }
  
  .request-input input {
    font-size: 18px;
    line-height: 140%;
    margin: 0 0 0 0;
    width: 100%;
    color: #200f3f;
    padding: 0 0 0 15px;
    height: 58px;
    background: #f6eefd;
    border-radius: 10px;
  }
  
  .request-input input:focus {
    border: 2px solid #43cdd7;
    padding: 0 0 0 13px;
  }
  
  .request-input input::-webkit-input-placeholder {
    color: #7e7099;
  }
  
  .request-input input::-moz-placeholder {
    color: #7e7099;
  }
  
  .request-input input:-ms-input-placeholder {
    color: #7e7099;
  }
  
  .request-input input::-ms-input-placeholder {
    color: #7e7099;
  }
  
  .request-input input::placeholder {
    color: #7e7099;
  }
  
  .request-button button {
    font-size: 18px;
    line-height: 140%;
    color: #ffffff;
    background: #43cdd7;
    border-radius: 10px;
    width: 100%;
    height: 58px;
  }
  
  .request-button button:hover {
    background: #1a8289;
  }
  
  .request-suptitle {
    padding: 16px 16px 0 16px;
    text-align: center;
    font-size: 12px;
    line-height: 140%;
    color: #200f3f;
  }
  
  .request-suptitle span {
    font-weight: 700;
  }
  
  .request-suptitle a {
    font-size: 12px;
    line-height: 140%;
    color: #200f3f;
  }
  
  .request-suptitle a:hover {
    color: #43cdd7;
  }
  
  .request-ul {
    padding: 24px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  
  .request-li {
    padding: 0 12px;
  }
  
  .request-li a img + img {
    display: none;
  }
  
  .request-li a:hover img {
    display: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  
  .request-li a:hover img + img {
    display: block;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  
  .request-ul2 {
    display: none;
  }
  
  .price-border2-button-mb {
    display: none;
  }
  
  .price-border-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  
  /*doctors*/
  
  .doctors-container {
    padding: 0 4px;
  }
  
  .doctors-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 0 100px 0;
  }
  
  .doctors-block {
    width: 33.333333%;
    padding: 16px 16px 0 16px;
  }
  
  .doctors-block a {
    display: block;
    text-decoration: none;
  }
  
  .doctors-block a:hover .doctors-border {
    background: -o-linear-gradient(
      358.13deg,
      #5531d2 8.4%,
      #9273e4 129.13%,
      #e7cdfc 191.33%
    );
    background: linear-gradient(
      91.87deg,
      #5531d2 8.4%,
      #9273e4 129.13%,
      #e7cdfc 191.33%
    );
  }
  
  .doctors-block a:hover .doctors-link-border {
    background: #9e00ff;
  }
  
  .doctors-border {
    position: relative;
    margin: -6px 0 0 0;
    padding: 30px 16px 34px 16px;
    background: -o-linear-gradient(
      340.94deg,
      #5531d2 28.35%,
      #9273e4 76.57%,
      #e7cdfc 113.82%
    );
    background: linear-gradient(
      109.06deg,
      #5531d2 28.35%,
      #9273e4 76.57%,
      #e7cdfc 113.82%
    );
    border-radius: 0 0 16px 16px;
  }
  
  .doctors-img img {
    border-radius: 16px 16px 0 0;
    width: 100%;
  }
  
  .doctors-name {
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: #ffffff;
  }
  
  .doctors-position {
    text-align: center;
    padding: 16px 0 0 0;
    font-size: 16px;
    line-height: 140%;
    color: #ffffff;
  }
  
  .doctors-link {
    padding: 16px 0 0 0;
    text-align: center;
  }
  
  .doctors-link-border {
    font-size: 18px;
    line-height: 140%;
    color: #ffffff;
    background: #c5a6fd;
    border-radius: 10px;
    width: 248px;
    padding: 16px 0;
    margin: 0 auto;
  }
  
  /*sales*/
  
  .sales {
    background: url(../images/sales-bg.png) center 100% no-repeat;
    padding: 16px 0 230px 0;
    margin: 0 0 -300px 0;
  }
  
  .sales-block {
    padding: 56px 0 100px 0;
  }
  
  .sales-border {
    padding: 0 78px 0 25px;
    position: relative;
    border-radius: 20px;
    background: -o-linear-gradient(
      340.94deg,
      #5531d2 28.35%,
      #9273e4 76.57%,
      #e7cdfc 113.82%
    );
    background: linear-gradient(
      109.06deg,
      #5531d2 28.35%,
      #9273e4 76.57%,
      #e7cdfc 113.82%
    );
  }
  
  .sales-border:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: url(../images/sales-border.png) 0 0 no-repeat;
  }
  
  .sales-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    z-index: 1;
  }
  
  .sales-wrap-block {
    padding: 43px 0 23px 0;
  }
  
  .sales-wrap-block2 {
    margin: 0 0 -4px 0;
  }
  
  .sales-title {
    font-weight: 700;
    font-size: 42px;
    line-height: 130%;
    color: #ffffff;
  }
  
  .sales-suptitle {
    padding: 8px 0 0 0;
    font-size: 18px;
    line-height: 140%;
    color: #ffffff;
  }
  
  .sales-button {
    padding: 75px 0 0 0;
  }
  
  .sales-button button {
    font-size: 18px;
    line-height: 140%;
    color: #ffffff;
    background: #43cdd7;
    border-radius: 10px;
    width: 254px;
    height: 50px;
  }
  
  .sales-button button:hover {
    background: #1a8289;
  }
  
  .sales-button2 {
    padding: 16px 0 0 0;
  }
  
  .sales-button2 button {
    font-size: 18px;
    line-height: 140%;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 10px;
    width: 254px;
    height: 50px;
  }
  
  .sales-button2 button:hover {
    background: #ffffff;
    color: #200f3f;
  }
  
  /*fag*/
  
  .fag-block {
    padding: 40px 0 100px 0;
    width: 736px;
    margin: 0 auto;
  }
  
  .sales2 {
    background: url(../images/sales-bg.png) center 0 no-repeat;
    padding: 16px 0 230px 0;
    margin: 0 0 -300px 0;
  }
  
  /*review*/
  
  .review {
    margin: 0 0 -250px 0;
    padding: 0 0 190px 0;
    background: url(../images/review-bg.png) center 100% no-repeat;
  }
  
  .review-block {
    padding: 24px 0 0 0;
  }
  
  .review-border {
    width: 732px;
    margin: 0 auto;
    padding: 52px 0;
    background: #ffffff;
    -webkit-box-shadow: 0px 4px 20px rgba(43, 17, 133, 0.2);
    box-shadow: 0px 4px 20px rgba(43, 17, 133, 0.2);
    border-radius: 20px;
    text-align: center;
  }
  
  .review-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  
  .review-link a {
    text-decoration: none;
    font-size: 18px;
    line-height: 140%;
    color: #ffffff;
    background: #43cdd7;
    border-radius: 10px;
    display: block;
    text-align: center;
    width: 200px;
    padding: 16px 0;
  }
  
  .review-link a:hover {
    background: #1a8289;
  }
  
  .review-link2 {
    padding: 24px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  
  .review-link2 a {
    text-decoration: none;
    font-size: 18px;
    line-height: 140%;
    color: #5531d2;
    border: 1px solid #5531d2;
    border-radius: 10px;
    display: block;
    text-align: center;
    width: 200px;
    padding: 16px 0;
  }
  
  .review-link2 a:hover {
    background: #5531d2;
    color: #fff;
  }
  
  .review-link3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 24px 0 0 0;
  }
  
  .review-link3 a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    line-height: 140%;
    color: #200f3f;
    text-decoration: none;
    border: 1px solid #200f3f;
    border-radius: 10px;
    width: 200px;
    padding: 16px;
  }
  
  .review-link3 a svg {
    margin: 0 4px 0 0;
  }
  
  .review-link3 a:hover {
    background: #200f3f;
    color: #fff;
  }
  
  .review-link3 a:hover svg path {
    fill: #fff;
  }
  
  /*history*/
  
  .history {
    padding: 20px 0 100px 0;
  }
  
  .history-block {
    padding: 32px 0 0 0;
  }
  
  .history-border {
    background: #fff url(../images/history-border.png) 0 0 no-repeat;
    -webkit-box-shadow: 0px 4px 20px rgba(43, 17, 133, 0.2);
    box-shadow: 0px 4px 20px rgba(43, 17, 133, 0.2);
    border-radius: 20px;
    padding: 24px 24px;
  }
  
  .history-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    color: #ffffff;
  }
  
  .history-suptitle {
    padding: 76px 0 0 0;
    font-size: 16px;
    line-height: 140%;
    color: #200f3f;
  }
  
  .history-data {
    padding: 24px 0 0 0;
    font-size: 16px;
    line-height: 140%;
    text-align: right;
    color: #c5a6fd;
  }
  
  /*error*/
  
  .error {
    padding: 106px 0 100px 0;
  }
  
  .error-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  
  .error-title {
    font-weight: 700;
    font-size: 124px;
    line-height: 100%;
    color: #000000;
  }
  
  .error-title span {
    color: rgba(158, 0, 255, 1);
  }
  
  .error-suptitle {
    width: 545px;
    padding: 32px 0 0 0;
    font-size: 16px;
    line-height: 140%;
    color: #494949;
  }
  
  .error-inner {
    padding: 32px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .error-link a {
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    line-height: 140%;
    color: #200f3f;
    border: 1px solid #200f3f;
    border-radius: 10px;
    width: 202px;
    padding: 15px 0;
  }
  
  .error-link a svg {
    margin: 0 4px 0 0;
  }
  
  .error-link a:hover {
    background: #200f3f;
    color: #fff;
  }
  
  .error-link a:hover svg path {
    fill: #fff;
  }
  
  .error-input {
    padding: 0 0 0 24px;
    position: relative;
  }
  
  .error-input-button {
    position: absolute;
    right: 0;
    top: 0;
  }
  
  .error-input-button button {
    background: #fff;
    width: 44px;
    height: 57px;
    border-radius: 10px;
  }
  
  .error-input input {
    font-size: 16px;
    line-height: 28px;
    margin: 0 0 0 0;
    width: 319px;
    color: #7e7099;
    padding: 0 0 0 10px;
    height: 57px;
    background: #ffffff;
    border-radius: 10px;
  }
  
  .error-input input::-webkit-input-placeholder {
    color: #7e7099;
  }
  
  .error-input input::-moz-placeholder {
    color: #7e7099;
  }
  
  .error-input input:-ms-input-placeholder {
    color: #7e7099;
  }
  
  .error-input input::-ms-input-placeholder {
    color: #7e7099;
  }
  
  .error-input input::placeholder {
    color: #7e7099;
  }
  
  .error-input2 {
    display: none;
    position: relative;
  }
  
  .error-input2 input {
    font-size: 16px;
    line-height: 28px;
    margin: 0 0 0 0;
    width: 100%;
    color: #7e7099;
    padding: 0 0 0 10px;
    height: 57px;
    background: #ffffff;
    border-radius: 10px;
  }
  
  .error-input2 input::-webkit-input-placeholder {
    color: #7e7099;
  }
  
  .error-input2 input::-moz-placeholder {
    color: #7e7099;
  }
  
  .error-input2 input:-ms-input-placeholder {
    color: #7e7099;
  }
  
  .error-input2 input::-ms-input-placeholder {
    color: #7e7099;
  }
  
  .error-input2 input::placeholder {
    color: #7e7099;
  }
  
  .recent-container {
    padding: 0 4px;
  }
  
  .recent-title {
    padding: 0 16px;
    font-weight: 700;
    font-size: 42px;
    line-height: 130%;
    color: #000000;
  }
  
  .recent-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 52px 0 0 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 32px;
  }
  
  .recent-block {
    width: 33.333333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 330px;
    flex: 0 0 330px;
  }
  
  .recent-link {
    position: relative;
    -webkit-box-shadow: 0px 4px 20px rgba(43, 17, 133, 0.2);
    box-shadow: 0px 4px 20px rgba(43, 17, 133, 0.2);
    border-radius: 20px;
    display: block;
    text-decoration: none;
  }
  
  .recent-link:hover {
    -webkit-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04);
  }
  
  .recent-link:hover .recent-border-border {
    background: #5531d2;
    color: #fff;
  }
  
  .recent-link:hover .recent-img img {
    width: 100%;
  }
  
  .recent-img {
    height: 247px;
  }
  
  .recent-img img {
    border-radius: 20px 20px 0 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
  }
  
  .recent-border {
    margin: -4px 0 0 0;
    border-radius: 0 0 20px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: white;
    height: 380px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  
  .recent-border-title {
    height: auto;
    font-weight: 700;
    min-height: 110px;
    font-size: 20px;
    line-height: 140%;
    color: #ffffff;
    background:
      url(../images/recent-border.svg),
      -o-linear-gradient(8.55deg, #5531d2 5.63%, #9273e4 60.42%, #e7cdfc 91.86%);
    background:
      url(../images/recent-border.svg),
      linear-gradient(81.45deg, #5531d2 5.63%, #9273e4 60.42%, #e7cdfc 91.86%);
    background-position-y:
      101%,
      -5px;
    background-position-x: 3%;
    background-repeat: no-repeat;
    padding: 16px 24px 24px 24px;
  }
  
  .recent-border-suptitle {
    padding: 8px 24px 16px 24px;
    font-size: 16px;
    line-height: 140%;
    color: #000000;
  }
  
  .recent-border-border {
    font-size: 18px;
    line-height: 140%;
    color: #5531d2;
    text-align: center;
    border: 1px solid #5531d2;
    border-radius: 10px;
    padding: 16px 0;
    margin: 16px 24px 24px 24px;
  }
  
  .sales3 {
    background: url(../images/sales-bg.png) center 45% no-repeat;
    padding: 16px 0 230px 0;
    margin: 0 0 -300px 0;
  }
  
  /*articles*/
  
  .articles-container {
    padding: 0 4px;
  }
  
  .articles-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 4px 0 0 0;
    gap: 32px;
  }
  
  .articles-block {
    width: 33.3333333%;
    padding: 52px 16px 0 16px;
  }
  
  .price4 {
    background: url(../images/price-bg.png) center 45% no-repeat;
    padding: 0;
  }
  
  .articles-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 55px 0 0 0;
  }
  
  .button-arrow {
    padding: 0 8px 0 0;
  }
  
  .button-arrow2 {
    padding: 0 0 0 8px;
  }
  
  .button-number {
    padding: 0 10px;
  }
  
  .points {
    padding: 0 10px;
    font-size: 18px;
    line-height: 140%;
    color: #200f3f;
  }
  
  .button-number button {
    padding: 4px 4px 2px 2px;
    font-size: 18px;
    line-height: 140%;
    color: #200f3f;
    border-radius: 5px;
  }
  
  .button-number button:hover {
    background: #f7eeff;
    border-radius: 5px;
  }
  
  .button-number-border button {
    background: #e7cdfc;
    border-radius: 5px;
    padding: 4px 4px 2px 2px;
    font-size: 18px;
    line-height: 140%;
    color: #200f3f;
  }
  
  .request-section {
    background: url(../images/request-section-bg.png) center 0 no-repeat;
    padding: 163px 0 0 0;
  }
  
  /*review2*/
  
  .review2 {
    padding: 0;
  }
  
  .recent2 {
    padding: 0 0 100px 0;
  }
  
  .request-section2 {
    background: url(../images/request-section-bg2.png) 0 100% no-repeat;
    padding: 100px 0 0 0;
  }
  
  /*review3*/
  
  .review3 {
    padding: 24px 0 100px 0;
  }
  
  .review3-wrap {
    margin: 32px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: 0px 4px 20px rgba(43, 17, 133, 0.2);
    box-shadow: 0px 4px 20px rgba(43, 17, 133, 0.2);
    border-radius: 10px;
  }
  
  .review3-block {
    width: 68%;
    padding: 24px 24px;
    background: #f7eeff;
    border-radius: 10px 0 0 10px;
  }
  
  .review3-block2 {
    width: 32%;
    background: #fff;
    border-radius: 0 10px 10px 0;
    padding: 24px 24px;
  }
  
  .review3-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .review3-img {
    width: 80px;
    height: 80px;
  }
  
  .review3-img img {
    border-radius: 10px;
  }
  
  .review3-text {
    padding: 0 0 0 8px;
  }
  
  .review3-name {
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
    color: #200f3f;
  }
  
  .review3-review {
    font-size: 16px;
    line-height: 140%;
    color: #200f3f;
  }
  
  .review3-stars {
    padding: 16px 0 0 0;
  }
  
  .review3-title {
    padding: 16px 0 0 0;
    font-size: 16px;
    line-height: 140%;
    color: #200f3f;
  }
  
  .review3-data {
    padding: 16px 0 0 0;
    font-size: 16px;
    line-height: 140%;
    text-align: right;
    color: #7e7099;
  }
  
  .review3-doctor {
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    color: #200f3f;
  }
  
  .review3-link {
    padding: 16px 0 0 0;
  }
  
  .review3-link a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    line-height: 140%;
    color: #200f3f;
  }
  
  .review3-link a img {
    margin: 0 8px 0 0;
  }
  
  .review3-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 8px 0 0 0;
  }
  
  .review3-li {
    padding: 8px 8px 0 0;
  }
  
  .review3-li a {
    text-decoration: none;
    font-size: 14px;
    line-height: 140%;
    color: #ffffff;
    display: block;
    background: #c5a6fd;
    border-radius: 10px;
    padding: 4px 8px;
  }
  
  .review3-li a:hover {
    background: #43cdd7;
  }
  
  .review3-button {
    text-align: center;
    padding: 52px 0 0 0;
  }
  
  .review3-button button {
    font-size: 18px;
    line-height: 140%;
    color: #ffffff;
    background: #43cdd7;
    border-radius: 10px;
    width: 352px;
    padding: 16px 0;
  }
  
  .review3-button button:hover {
    background: #1a8289;
  }
  
  /*doctor*/
  
  .doctor-wrap {
    padding: 0 0 100px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .doctor-block {
    width: 32%;
  }
  
  .doctor-block2 {
    width: 68%;
  }
  
  .doctor-img img {
    width: 100%;
    border-radius: 16px 16px 0 0;
  }
  
  .doctor-img {
    position: relative;
  }
  
  .doctor-absolute {
    font-size: 18px;
    line-height: 140%;
    color: #ffffff;
    text-align: center;
    background: #c5a6fd;
    border-radius: 10px;
    width: 114px;
    padding: 8px 0;
    position: absolute;
    bottom: 16px;
    left: 16px;
  }
  
  .doctor-border {
    margin: -4px 0 0 0;
    padding: 28px 10px 32px 10px;
    background: -o-linear-gradient(
      340.94deg,
      #5531d2 28.35%,
      #9273e4 76.57%,
      #e7cdfc 113.82%
    );
    background: linear-gradient(
      109.06deg,
      #5531d2 28.35%,
      #9273e4 76.57%,
      #e7cdfc 113.82%
    );
    border-radius: 0 0 16px 16px;
  }
  
  .doctor-name {
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: #ffffff;
  }
  
  .doctor-position {
    padding: 8px 0 0 0;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: #ffffff;
  }
  
  .doctor-year {
    padding: 8px 0 0 0;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: #ffffff;
  }
  
  .doctor-button {
    padding: 32px 0 0 0;
  }
  
  .doctor-button button {
    font-size: 18px;
    line-height: 140%;
    color: #ffffff;
    background: #43cdd7;
    border-radius: 10px;
    width: 100%;
    padding: 16px 0;
  }
  
  .doctor-button button:hover {
    background: #1a8289;
  }
  
  .doctor-button2 {
    padding: 20px 0 0 0;
  }
  
  .doctor-button2 button {
    font-size: 18px;
    line-height: 140%;
    color: #5531d2;
    width: 100%;
    border: 2px solid #5531d2;
    border-radius: 10px;
    padding: 16px 0;
  }
  
  .doctor-button2 button:hover {
    background: #5531d2;
    color: #fff;
  }
  
  .doctor-treatment {
    padding: 0 0 0 32px;
  }
  
  .treatment-border {
    background: -o-linear-gradient(
      340.94deg,
      #5531d2 28.35%,
      #9273e4 76.57%,
      #e7cdfc 113.82%
    );
    background: linear-gradient(
      109.06deg,
      #5531d2 28.35%,
      #9273e4 76.57%,
      #e7cdfc 113.82%
    );
    border-radius: 15px;
    padding: 32px 16px;
  }
  
  .treatment-title {
    padding: 0 16px;
  
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    color: #ffffff;
  }
  
  .treatment-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 8px 0 0 0;
  }
  
  .treatment-block {
    width: 50%;
    padding: 0 16px;
  }
  
  .treatment-li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 0 0 0;
  }
  
  .treatment-percent {
    font-size: 18px;
    line-height: 140%;
    color: #ffffff;
    padding: 8px 0;
    width: 50px;
    text-align: center;
    background: #9e00ff;
    border-radius: 10px;
  }
  
  .treatment-name {
    padding: 0 0 0 8px;
    font-size: 18px;
    line-height: 140%;
    color: #ffffff;
  }
  
  /*ACCARDION*/
  
  .accordion {
    padding: 0 0 0 0;
    margin: 0 0 0 0;
  }
  
  .accordion .item {
    padding: 52px 0 0 0;
    cursor: pointer;
  
    -ms-grid-columns: auto 24px 1fr 24px auto;
  
    grid-template-columns: auto 1fr auto;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    row-gap: 32px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: border-top 0.3s;
    -o-transition: border-top 0.3s;
    transition: border-top 0.3s;
  }
  
  .accordion .item.open2 {
  }
  
  .accordion .item.open2 .hidden-box {
    display: block;
    font-size: 16px;
    line-height: 28px;
    color: #151922;
  }
  
  .accordion .item.open2 .text {
  }
  
  .accordion .item:hover .text {
    color: #5531d2;
  }
  
  .accordion .item:hover .icon path {
    fill: #5531d2;
  }
  
  .accordion .text {
    position: relative;
    padding: 0 0 0 32px;
    width: 100%;
    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;
  
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    color: #000000;
    margin: 0;
    margin-bottom: 15px;
  }
  
  .accordion .item.open2 .text {
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
  }
  
  .accordion .icon {
    top: 0;
    right: 0;
    width: auto;
    height: auto;
  
    -webkit-transition: -webkit-transform 0.2s ease-in;
  
    transition: -webkit-transform 0.2s ease-in;
  
    -o-transition: transform 0.2s ease-in;
  
    transition: transform 0.2s ease-in;
  
    transition:
      transform 0.2s ease-in,
      -webkit-transform 0.2s ease-in;
  }
  
  .accordion .item.open2 .icon {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  
  .accordion .hidden-box {
    -ms-grid-column: 1;
    grid-column: 1;
    display: none;
    -webkit-transition: display 0.2 ease-in;
    -o-transition: display 0.2 ease-in;
    transition: display 0.2 ease-in;
  }
  
  .hidden-box {
    padding: 0 0 0 0;
  }
  
  .accordion-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 0 0 32px;
  }
  
  .accordion-block {
    width: 50%;
    padding: 32px 0 0 32px;
  }
  
  .accordion-border {
    height: 100%;
    background: #ffffff;
    border-radius: 20px;
    padding: 16px 16px;
  }
  
  .accordion-number {
    display: initial;
    padding: 8px 8px;
    font-size: 18px;
    line-height: 140%;
    color: #200f3f;
    background: #e7cdfc;
    border-radius: 10px;
  }
  
  .accordion-title {
    padding: 8px 0 0 0;
    font-size: 14px;
    line-height: 140%;
    color: #200f3f;
  }
  
  .accordion-suptitle {
    padding: 8px 0 0 0;
    font-size: 16px;
    line-height: 140%;
    color: #200f3f;
  }
  
  /*MODAL*/
  
  .backdrop {
    position: fixed;
    display: none;
    width: 100%;
    left: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 12;
  }
  
  .backdropActive {
    display: block;
  }
  
  .modal {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    padding: 56px 56px 20px 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 1120px;
    height: 584px;
    background:
      -o-linear-gradient(8.55deg, #5531d2 5.63%, #9273e4 54.28%, #e7cdfc 91.86%),
      #ffffff;
    background:
      linear-gradient(81.45deg, #5531d2 5.63%, #9273e4 54.28%, #e7cdfc 91.86%),
      #ffffff;
    border-radius: 20px;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    -o-transition: transform 0.4s;
    transition: transform 0.4s;
    transition:
      transform 0.4s,
      -webkit-transform 0.4s;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    z-index: 13;
  }
  
  .modal:before {
    display: none;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: url(../images/modal-bg.png) 100% 100% no-repeat;
    border-radius: 20px;
  }
  
  .modalActive {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  
  .modalActive::before {
    display: block;
  }
  
  .modalHeader {
    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: 0;
  }
  
  .modalCloseButton {
    position: absolute;
  
    height: 100%;
    display: block;
    cursor: pointer;
    z-index: 1;
    right: 24px;
    top: 24px;
  }
  
  .modalCloseButton:hover {
  }
  
  .modalCloseButton span:first-child {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  .modalCloseButton span:last-child {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
  .modalContent {
    display: block;
    height: 100%;
    padding: 0 0 0 0;
    line-height: 24px;
    overflow: auto;
  }
  
  .modalContent::-webkit-scrollbar {
    width: 1px;
  }
  
  .modalContent::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  .modalContent::-webkit-scrollbar-thumb {
    background: #555;
  }
  
  .modalContent::-webkit-scrollbar-thumb:hover {
    background: #333;
  }
  
  .getadvice-block-modal {
  }
  
  .modal-block {
    padding: 90px 0 0 0;
  }
  
  .modal-title {
    font-size: 48px;
    line-height: 130%;
    color: #ffffff;
  }
  
  .modal-img {
    padding: 17px 0 0 0;
  }
  
  /*MODAL2*/
  
  .backdrop2 {
    position: fixed;
    display: none;
    width: 100%;
    left: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 12;
  }
  
  .backdropActive2 {
    display: block;
  }
  
  .modal2 {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    padding: 56px 56px 20px 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 1120px;
    height: 584px;
    background:
      -o-linear-gradient(8.55deg, #5531d2 5.63%, #9273e4 54.28%, #e7cdfc 91.86%),
      #ffffff;
    background:
      linear-gradient(81.45deg, #5531d2 5.63%, #9273e4 54.28%, #e7cdfc 91.86%),
      #ffffff;
    border-radius: 20px;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    -o-transition: transform 0.4s;
    transition: transform 0.4s;
    transition:
      transform 0.4s,
      -webkit-transform 0.4s;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    z-index: 13;
  }
  .modal2.modalActive {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    max-width: 485px;
    max-height: 300px;
  }
  .modal2:before {
    display: none;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: url(../images/modal-bg.png) 80% 100% no-repeat;
    border-radius: 20px;
    background-size: 450px;
  }
  .result-wrapper h3 {
    color: #fff;
    font-weight: 700;
    font-size: 28px;
    line-height: 130%;
  }
  .result-wrapper p {
    font-size: 18px;
    line-height: 140%;
    color: #ffffff;
  }
  .modalActive2 {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  
  .modalActive2::before {
    display: block;
  }
  
  .modalHeader2 {
    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: 0;
  }
  
  .modalCloseButton2 {
    position: absolute;
  
    height: 100%;
    display: block;
    cursor: pointer;
    z-index: 1;
    right: 24px;
    top: 24px;
  }
  
  .modalCloseButton2:hover {
  }
  
  .modalCloseButton2 span:first-child {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  .modalCloseButton2 span:last-child {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
  .modalContent2 {
    display: block;
    height: 100%;
    padding: 0 0 0 0;
    line-height: 24px;
    overflow: auto;
  }
  
  .modalContent2::-webkit-scrollbar {
    width: 1px;
  }
  
  .modalContent2::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  .modalContent2::-webkit-scrollbar-thumb {
    background: #555;
  }
  
  .modalContent2::-webkit-scrollbar-thumb:hover {
    background: #333;
  }
  
  /*ACCARDION2*/
  
  .accordion2 {
    padding: 0 0 0 0;
    margin: 0 0 0 0;
  }
  
  .accordion2 .item2 {
    padding: 4px 0 0 0;
    cursor: pointer;
  
    -ms-grid-columns: auto 24px 1fr 24px auto;
  
    grid-template-columns: auto 1fr auto;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    row-gap: 32px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: border-top 0.3s;
    -o-transition: border-top 0.3s;
    transition: border-top 0.3s;
  }
  
  .accordion2 .item2.open2 {
  }
  
  .accordion2 .item2.open2 .hidden-box2 {
    display: block;
    font-size: 16px;
    line-height: 28px;
    color: #151922;
  }
  
  .accordion2 .item2.open2 .text2 {
  }
  
  .accordion2 .item2:hover .text2 {
    color: #43cdd7;
  }
  
  .accordion2 .item2:hover .icon2 path {
    stroke: #43cdd7;
  }
  
  .accordion2 .text2 {
    position: relative;
    padding: 0 0 0 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  
    font-size: 16px;
    line-height: 140%;
    color: #ffffff;
    margin: 0;
  }
  
  .accordion2 .item2.open2 .text2 {
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
  }
  
  .accordion2 .icon2 {
    top: 0;
    right: 0;
    width: auto;
    height: auto;
  
    -webkit-transition: -webkit-transform 0.2s ease-in;
  
    transition: -webkit-transform 0.2s ease-in;
  
    -o-transition: transform 0.2s ease-in;
  
    transition: transform 0.2s ease-in;
  
    transition:
      transform 0.2s ease-in,
      -webkit-transform 0.2s ease-in;
  }
  
  .accordion2 .item2.open2 .icon2 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  
  .accordion2 .hidden-box2 {
    -ms-grid-column: 1;
    grid-column: 1;
    display: none;
    -webkit-transition: display 0.2 ease-in;
    -o-transition: display 0.2 ease-in;
    transition: display 0.2 ease-in;
  }
  
  .hidden-box2 {
    padding: 8px 0 8px 0;
  }
  
  /*MODAL3*/
  
  .backdrop3 {
    position: fixed;
    display: none;
    width: 100%;
    left: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 12;
  }
  
  .backdropActive3 {
    display: block;
  }
  
  .modal3 {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 1120px;
    height: 584px;
    background:
      -o-linear-gradient(8.55deg, #5531d2 5.63%, #9273e4 54.28%, #e7cdfc 91.86%),
      #ffffff;
    background:
      linear-gradient(81.45deg, #5531d2 5.63%, #9273e4 54.28%, #e7cdfc 91.86%),
      #ffffff;
    border-radius: 80px;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    -o-transition: transform 0.4s;
    transition: transform 0.4s;
    transition:
      transform 0.4s,
      -webkit-transform 0.4s;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    z-index: 13;
  }
  
  .modalActive3 {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  
  .modalHeader3 {
    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: 0;
  }
  
  .modalCloseButton3 {
    position: absolute;
  
    height: 100%;
    display: block;
    cursor: pointer;
    z-index: 1;
    right: 24px;
    top: 24px;
  }
  
  .modalCloseButton3:hover {
  }
  
  .modalCloseButton3 span:first-child {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  .modalCloseButton3 span:last-child {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
  .modalContent3 {
    display: block;
    height: 100%;
    padding: 0 0 0 0;
    line-height: 24px;
    overflow: none;
  }
  
  .modalContent3::-webkit-scrollbar {
    width: 1px;
  }
  
  .modalContent3::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  .modalContent3::-webkit-scrollbar-thumb {
    background: #555;
  }
  
  .modalContent3::-webkit-scrollbar-thumb:hover {
    background: #333;
  }
  
  .modal-paley img {
    width: 1120px;
    height: 584px;
  }
  
  .modal-paley {
    position: relative;
  }
  
  .modal-paley-button {
    position: absolute;
    top: 45%;
    left: 45%;
  }
  
  .modal-paley-button img {
    width: 64px;
    height: 64px;
  }
  
  .fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #8968e1;
    padding: 20px 0;
    z-index: 999;
  }
  
  .fixed .header-bottom-ul {
    padding: 0 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    max-width: 100%;
    margin: 0;
  }
  
  .licenses__list {
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 0;
    margin-bottom: 35px;
  }
  
  .price-border_inner {
    background-color: #f7eeff;
    padding: 16px 16px;
  }
  
  .price-border_inner:nth-child(2n) {
    background-color: #ffffff;
  }
  
  .review2 .review2 {
    padding: 0;
  }
  
  .comprasion-sl .recent-border-title {
    font-size: 16px;
  }
  
  .contacts__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  
  .contacts__block {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 350px;
    flex: 0 0 350px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  
  .contacts__header {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
  }
  
  .contacts__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .contacts__content a {
    color: #000;
    text-decoration: none;
  }
  
  .contacts__icon {
    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;
    min-width: 32px;
    height: 32px;
  }
  
  .contacts__map {
    height: 700px;
    border-radius: 64px;
    overflow: hidden;
    margin-top: 56px;
  }
  
  .phone-warning {
    color: #e64c38;
    display: none;
  }
  
  .header-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 5px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .header-link a {
    max-width: 255px;
    white-space: normal;
  }
  
  .footer-link2 a {
    /*max-width: 239px;
        white-space: normal;*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
  
  .header-link-imgred {
    width: 32px;
    height: 32px;
  }
  
  .header-link-imgred img {
    max-width: inherit;
  }
  
  .footer-link2 {
    max-width: 230px;
  }
  
  .header-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
  
  .header-block:nth-child(4) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .header-block:nth-child(4) .header-link {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    padding: 8px 0 0 0;
    gap: 0;
  }
  .header-block:nth-child(4) .header-link2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-block:last-child {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  
  @media (max-width: 850px) {
    .header-logo.mob {
      display: block;
    }
  }
  .header-link__city {
    color: #ffffff99;
    font-size: 14px;
    line-height: 18.2px;
    border-left: 1px solid #ffffff4d;
    padding-left: 5px;
    margin-left: 5px;
  }
  .footer-block2 {
    padding: 0 0 0 53px;
    max-width: 218px;
  }
  
  .header-absolute-border {
    background: none;
    background-color: #fff;
    border: 1px solid #e7cdfc;
    border-radius: 16px;
    height: auto;
  }
  
  @media (min-width: 850px) and (max-width: 1079px) {
    .header-link a {
      max-width: 170px;
    }
  
    .footer-link2 a {
      max-width: 170px;
    }
  }
  
  @media (max-width: 850px) {
    .header-link {
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
    }
  
    .header-navigation .burger-ul {
      padding-left: 0;
      margin-bottom: 24px;
    }
  
    .footer-block2 {
      max-width: 100%;
      padding: 32px 0 0 0;
    }
  }
  
  /*review3*/
  
  .review3 {
    padding: 24px 0 100px 0;
  }
  
  .review3-wrap {
    margin: 32px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: 0px 4px 20px rgba(43, 17, 133, 0.2);
    box-shadow: 0px 4px 20px rgba(43, 17, 133, 0.2);
    border-radius: 10px;
  }
  
  .review3-block {
    width: 68%;
    padding: 24px 24px;
    background: #e4eafa;
    border-radius: 10px 0 0 10px;
  }
  
  .review3-block2 {
    width: 32%;
    background: #fff;
    border-radius: 0 10px 10px 0;
    padding: 24px 24px;
  }
  
  .review3-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .review3-img {
    width: 80px;
    height: 80px;
  }
  
  .review3-img img {
    border-radius: 10px;
  }
  
  .review3-text {
    padding: 0 0 0 8px;
  }
  
  .review3-name {
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
    color: #0f3f2b;
  }
  
  .review3-review {
    font-size: 16px;
    line-height: 140%;
    color: #0f3f2b;
  }
  
  .review3-stars {
    padding: 16px 0 0 0;
  }
  
  .review3-title {
    padding: 16px 0 0 0;
    font-size: 16px;
    line-height: 140%;
    color: #0f3f2b;
  }
  
  .review3-data {
    padding: 16px 0 0 0;
    font-size: 16px;
    line-height: 140%;
    text-align: right;
    color: #709976;
  }
  
  .review3-doctor {
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    color: #0f3f2b;
  }
  
  .review3-link {
    padding: 16px 0 0 0;
  }
  
  .review3-link a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    line-height: 140%;
    color: #0f3f2b;
  }
  
  .review3-link a img {
    margin: 0 8px 0 0;
    width: 80px;
    height: 80px;
  }
  
  .review3-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 8px 0 0 0;
  }
  
  .review3-li {
    padding: 8px 8px 0 0;
  }
  
  .review3-li a {
    text-decoration: none;
    font-size: 14px;
    line-height: 140%;
    color: #ffffff;
    display: block;
    background: #43cdd7;
    border-radius: 10px;
    padding: 4px 8px;
  }
  
  .review3-li a:hover {
    background: #1a8289;
  }
  
  .review3-button {
    text-align: center;
    padding: 52px 0 0 0;
  }
  
  .review3-button button {
    font-size: 18px;
    line-height: 140%;
    color: #ffffff;
    background: #43cdd7;
    border-radius: 10px;
    width: 352px;
    padding: 16px 0;
  }
  
  .review3-button button:hover {
    background: #1a8289;
  }
  
  .form2 .titleblock {
    color: #ffffff;
    margin-bottom: 20px;
    text-align: left;
  }
  
  /* стили для sm-устройств */
  @media screen and (max-width: 992px) {
    .review3-block {
      width: 60%;
      padding: 24px 24px;
      background: #f7eeff;
      border-radius: 10px 0 0 10px;
    }
  
    .review3-block2 {
      width: 40%;
      background: #fff;
      border-radius: 0 10px 10px 0;
      padding: 24px 24px;
    }
  
    .form2 .titleblock {
      text-align: center;
    }
  
    .section-title {
      font-weight: 700;
      font-size: 24px;
      line-height: 28px;
      color: #200f3f;
      text-align: center;
    }
  }
  
  @media screen and (max-width: 768px) {
    .review3-block2 {
      width: 45%;
      background: #fff;
      border-radius: 0 10px 10px 0;
      padding: 16px 16px;
    }
  
    .review3-block {
      width: 55%;
      padding: 16px 16px;
      background: #f7eeff;
      border-radius: 10px 0 0 10px;
    }
  }
  
  /* Galaxy*/
  @media screen and (max-width: 415px) {
    .review3-button button {
      width: 100%;
    }
  }
  
  @media screen and (max-width: 640px) {
    .review3-wrap {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }
  
    .review3-block,
    .review3-block2 {
      width: 100%;
    }
  }
  
  /* Iphone 6.7.8 */
  @media screen and (max-width: 375px) {
    .review3-li a {
      padding: 4px 4px;
    }
  }
  
  .item2__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .item2__link {
    text-decoration: none;
    font-size: 16px;
    line-height: 140%;
    color: #ffffff;
    white-space: nowrap;
    margin-right: 8px;
  }
  
  .footer-link--style {
    padding: 16px 0 0 0 !important;
  }
  
  /* licenses img footer  */
  .licenses2 {
    display: none;
  }
  
  .licenses1 {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
  
  .footer-suptitle {
    text-align: center;
  }
  
  @media (max-width: 900px) {
    .licenses2 {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
      flex: 1 0 100%;
      margin: 0 auto;
    }
  
    .licenses1 {
      display: none;
    }
  
    .footer-suptitle p {
      text-align: center;
    }
  }
  
  .card-wrapper {
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 80px;
    padding-top: 40px;
  }
  
  .card-block {
    border-radius: 20px;
    background-color: #fff;
    cursor: pointer;
    width: 360px;
    height: 325px;
  }
  
  .card-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
  }
  
  .card-block a {
    text-decoration: none;
  }
  
  .card-img img {
    width: 360px;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  
  .card-border {
    padding: 20px 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 15px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  
  .card-border-title {
    color: #200f3f;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
  }
  
  .card-border-link {
    color: #43cdd7;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }
  
  .sales .container {
    position: relative;
  }
  
  .sales__slider .card-block {
    margin-right: 15px;
  }
  
  .sales__slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .sales__slider .slick-slide {
    height: inherit !important;
  }
  
  .another__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  
  .another__block {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 265px;
    flex: 0 1 265px;
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 8px 0px #d7dcea;
    box-shadow: 0px 0px 8px 0px #d7dcea;
    overflow: hidden;
    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;
    height: 80px;
    text-decoration: none;
    color: #200f3f;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
  }
  
  .text-section__content {
    font-family: "Manrope", sans-serif;
  }
  
  .another__block span {
    padding: 20px;
    padding-right: 40px;
  }
  
  .another__arrow {
    background-color: #43cdd7;
    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;
    width: 26px;
    height: 100%;
  }
  
  .another__block:hover {
    color: #43cdd7;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
  }
  
  .another__block:hover .another__arrow {
    background-color: #25acb6;
  }
  
  @media (width < 700px) {
    .another__wrap {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
  }
  
  .header-absolute-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
  }
  
  @media (min-width: 850px) {
    .header-absolute-ul {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      max-height: calc(100vh - 300px);
    }
  }
  
  .header-block__mobile-phones_sticky .header__top-phones-icon img {
    max-width: 32px;
  }
  
  .header-block__mobile-phones {
    position: relative;
    display: none;
  }
  
  .fixed .header-block__mobile-phones {
    display: block;
  }
  
  .fixed.header-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .fixed.header-bottom .header__top-phones_wrapper {
    position: absolute;
    right: 0;
    top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
    scale: 0.4;
    opacity: 0;
    -webkit-transition:
      scale 0.3s linear,
      opacity 0.15s linear;
    -o-transition:
      scale 0.3s linear,
      opacity 0.15s linear;
    transition:
      scale 0.3s linear,
      opacity 0.15s linear;
    padding: 10px;
    border-radius: 8px;
    background-color: #8968e1;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  
  .fixed.header-bottom .header__top-phones_wrapper.active {
    opacity: 1;
    scale: 1;
  }
  
  .fixed.header-bottom .header__top-phones_wrapper a {
    color: #fff;
  }
  
  @media (max-width: 1000px) {
    .header-bottom .header-bottom-li a {
      font-size: 12px;
    }
  }
  
  @media (max-width: 850px) {
    .header2 {
      padding-bottom: 0 !important;
    }
  
    .header-middle {
      padding-top: 10px !important;
      padding-bottom: 10px !important;
    }
  
    .fixed.header-bottom {
      display: none;
    }
  
    .header-block__mobile-phones {
      display: block;
      position: relative;
    }
  
    .header__top-phones_wrapper {
      position: absolute;
      right: 0;
      top: 50px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      gap: 5px;
      scale: 0.4;
      opacity: 0;
      -webkit-transition:
        scale 0.3s linear,
        opacity 0.15s linear;
      -o-transition:
        scale 0.3s linear,
        opacity 0.15s linear;
      transition:
        scale 0.3s linear,
        opacity 0.15s linear;
      padding: 10px;
      border-radius: 8px;
      background-color: #9e00ff;
      -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      pointer-events: none;
    }
  
    .header__top-phones_wrapper.active {
      opacity: 1;
      scale: 1;
      pointer-events: all;
    }
  
    .header__top-phones-icon img {
      max-width: 32px;
    }
  
    .header__top-phone {
      color: #fff;
    }
  }
  
  .header__top-phones_wrapper .header__top-phone {
    white-space: nowrap;
    font-size: 16px;
    line-height: 1.1;
  }
  
  .header__top-phones_panel-title {
    cursor: pointer;
  }
  
  .header-top {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  
  .header-absolute-border,
  .header-absolute-ul,
  .header-absolute {
    width: 100%;
  }
  
  .header-bottom-li {
    position: static;
  }
  
  .header-bottom-ul {
    position: relative;
  }
  
  @supports not (-moz-appearance: none) {
    .header-absolute-ul,
    .header-absolute {
      width: auto;
    }
  
    .header-absolute-border {
      width: -webkit-max-content;
      width: -moz-max-content;
      width: max-content;
    }
  
    .header-bottom-li {
      position: relative;
    }
  }
  
  .fixed.sticky .header-absolute-ul {
    max-height: calc(100vh - 72px);
  }
  
  /* Калькулятор */
  
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
  }
  
  .calc__block-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  
  .calc__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 50px 60px;
    gap: 40px;
  }
  
  .calc__form .section-title {
    margin-bottom: 0;
  }
  
  .calc__title_min {
    color: #828282;
    font-size: 16px;
  }
  
  .calc__btn {
    border-radius: 100px;
  }
  
  .calc__title {
    color: #828282;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 10px;
  }
  
  .calc__title_color {
    color: #200f3f;
  }
  
  .calc__select-btn {
    display: none;
  }
  
  .calc__label {
    cursor: pointer;
    position: relative;
  }
  .calc-radio__text-wrap {
    padding: 15px 20px;
    border-radius: 10px;
    background-color: #f0f4ff;
  }
  .calc__label-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
  
  .calc-radio__input:checked + .calc-radio__text-wrap {
    background-color: #5632d3;
  }
  
  .calc-radio__input:checked + .calc-radio__text-wrap .calc-radio__text {
    color: #fff;
  }
  
  .calc-range__input {
    width: 100%;
  }
  .calc__range-values {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 16px;
  }
  
  .calc__range-values_mobile {
    display: none;
  }
  
  .calc-range__input:focus {
    outline: none;
  }
  
  .calc__block-item {
    -ms-flex-preferred-size: calc(50% - 15px);
    flex-basis: calc(50% - 15px);
  }
  
  /***** Chrome, Safari, Opera and Edge Chromium styles *****/
  .calc-range__input::-webkit-slider-runnable-track {
    border-radius: 10px;
    height: 6px;
  }
  
  .calc-range__input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    margin-top: -5px;
    border-radius: 100%;
    background-color: #ffffff;
    height: 20px;
    width: 20px;
    outline: 8px solid #5632d3;
    outline-offset: -8px;
  }
  
  .calc-range__input:focus::-webkit-slider-thumb {
    background-color: #ffffff;
  }
  
  /******** Firefox styles ********/
  .calc-range__input::-moz-range-track {
    border-radius: 10px;
    height: 6px;
  }
  
  .calc-range__input::-moz-range-thumb {
    border: none;
    border-radius: 0;
    border-radius: 100%;
    background-color: #ffffff;
    height: 20px;
    width: 20px;
    outline: 7px solid #5632d3;
    outline-offset: -7px;
  }
  
  .calc-range__input:focus::-moz-range-thumb {
    background-color: #ffffff;
  }
  
  .calc__result-block {
    background-color: #5531d21a;
    border-radius: 30px;
    padding: 40px 60px;
  }
  
  .calc-result__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  
  .calc__title {
    color: #200f3f99;
  }
  
  .calc__title_big {
    color: #200f3f;
  }
  
  .calc-result__price {
    color: #5632d3;
    font-weight: 700;
    font-size: 28px;
  }
  
  .calc__result-btn {
    padding: 20px 30px;
    color: #fff;
    background-color: #5632d3;
    border-radius: 10px;
    font-size: 16px;
  }
  
  .fixed-buttons {
    position: fixed;
    top: 230px;
    right: 0;
    z-index: 5;
    padding: 15px 20px;
    border-radius: 10px 0 0 10px;
    background-color: #5632d3;
  }
  
  .btn-square {
    font-size: 14px;
    line-height: 28px;
    font-weight: 400;
    text-transform: initial;
    color: #fff;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
  }
  
  @media (max-width: 1200px) {
    .calc__block-row {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      gap: 15px;
    }
    .calc__label-wrapper {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }
  }
  
  @media (max-width: 757px) {
    .calc__form {
      padding: 20px 15px;
    }
  
    .calc-result__wrap {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      gap: 15px;
    }
  
    .btn-square p {
      display: none;
    }
  }
  
  .navigation-article__wrapper {
    background-color: #e0e0fa;
    padding: 30px;
    border-radius: 30px;
  }
  
  .navigation-article__link {
    color: #000000;
    text-decoration: none;
  }
  
  .navigation-article__list {
    margin: 0 !important;
  }
  @media (max-width: 550px) {
    .navigation-article__wrapper {
      padding: 20px;
    }
    .navigation-article__title {
      font-size: 18px;
    }
    .navigation-article__title::before {
      width: 80px;
      height: 2px;
    }
  }
  
  /* programs */
  .program {
    background-color: #fff;
    border-radius: 20px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  
  .programs__wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 25px 1fr 25px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .program__wrapper {
    margin-bottom: 45px;
  }
  
  .program__title {
    color: #ffffff;
    background: -o-linear-gradient(
      8.55deg,
      #5531d2 5.63%,
      #9273e4 60.42%,
      #e7cdfc 91.86%
    );
    background: linear-gradient(
      81.45deg,
      #5531d2 5.63%,
      #9273e4 60.42%,
      #e7cdfc 91.86%
    );
    border-radius: 20px 20px 0 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
    padding: 40px 25px;
  }
  
  .program__content ul {
    padding-left: 0;
  }
  
  .program__content ul li {
    font-weight: 500;
    padding-left: 30px;
  }
  
  .program__content ul li.li-hide {
    opacity: 0.5;
  }
  
  .program__content ul li::before {
    content: "✓" !important;
    text-align: center;
    color: #9e00ff;
    background-color: #e7cdfc !important;
    height: 20px !important;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
  }
  
  .program__info {
    border-radius: 10px;
    padding: 20px;
  }
  
  .program__price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 15px;
  }
  
  .program__price-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 33.6px;
    color: #200f3f;
    padding: 20px 25px;
  }
  
  .program__price-num {
    font-weight: 700;
    font-size: 30px;
    line-height: 39px;
    /*color: #fff;*/
    margin: 0.5em 0;
    padding: 0 25px;
  }
  
  .program__btn {
    background-color: #5531d2;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
    line-height: 21px;
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
  }
  
  @media (max-width: 991px) {
    .programs__wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 10px;
      overflow-x: scroll;
    }
    .programs__wrapper::-webkit-scrollbar {
      width: 6px;
      height: 6px;
    }
    .programs__wrapper::-webkit-scrollbar-track {
      background-color: #9e00ff;
      border-radius: 6px;
    }
    .programs__wrapper::-webkit-scrollbar-thumb {
      width: 6px;
      height: 6px;
      background-color: #e7cdfc;
      border-radius: 6px;
    }
    .program {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 350px;
      flex: 0 0 350px;
    }
  
    .program__content ul li {
      margin-left: 20px !important;
    }
  }
  
  .page {
    background: -o-linear-gradient(
      340.94deg,
      #5531d2 20.35%,
      #9273e4 67.57%,
      #e7cdfc 99.82%
    );
    background: linear-gradient(
      109.06deg,
      #5531d2 20.35%,
      #9273e4 67.57%,
      #e7cdfc 99.82%
    );
    border-radius: 0 0 0 280px;
  }
  
  .page__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
  }
  
  .page__left {
    padding: 0 0 20px 0;
  }
  .page img {
    height: 700px;
  }
  
  .page__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .page__block-item {
    background-color: #e7cdfc66;
    border-radius: 20px;
    padding: 10px;
    font-size: 14px;
    font-weight: 800;
    line-height: 18.2px;
    text-align: center;
    color: #ffffffe5;
    max-width: 175px;
  }
  
  .page h1 {
    color: #ffffff;
  }
  .page__left-subtitle {
    color: #ffffff;
  }
  
  .page__price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    color: #ffffff;
    font-size: 26px;
    font-weight: 400;
    line-height: 31.2px;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  
  .page__price p {
    font-size: 26px;
    font-weight: 400;
    line-height: 31.2px;
    text-decoration: line-through;
    color: #ffffff;
  }
  .page__price .page__price-new {
    font-size: 36px;
    font-weight: 600;
    line-height: 43.2px;
    text-decoration: none;
    color: #ffffff;
  }
  
  @media (max-width: 1300px) {
    .page__container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
  
    .page img {
      height: 450px;
      -o-object-fit: contain;
      object-fit: contain;
    }
  }
  @media (max-width: 900px) {
    .preim-fon2 img {
      display: none;
    }
    .preim-fon1 img {
      display: none;
    }
  }
  @media (max-width: 550px) {
    .page button {
      width: 100%;
    }
    .page {
      border-radius: 0 0 0 56px;
    }
    .page img {
      height: 100%;
    }
  
    .page__block-item {
      width: 100%;
      max-width: 100%;
    }
  
    .doctors-block {
      width: 100%;
    }
  
    .doctors-border {
      position: relative;
      margin: -6px 0 0 0;
      padding: 28px 16px 24px 16px;
      background: -o-linear-gradient(
        340.94deg,
        #5531d2 28.35%,
        #9273e4 76.57%,
        #e7cdfc 113.82%
      );
      background: linear-gradient(
        109.06deg,
        #5531d2 28.35%,
        #9273e4 76.57%,
        #e7cdfc 113.82%
      );
      border-radius: 0 0 16px 16px;
    }
  }
  
  .p__substance {
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 35px;
    color: #432a72;
    text-align: left;
    margin-bottom: 30px;
  }
  @media (max-width: 768px) {
    .p__substance {
      font-size: 20px;
      line-height: 25px;
    }
  }
  
  .header-absolute-ul {
    max-height: 200px;
    overflow-y: auto;
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  /* Стилизация полосы прокрутки */
  .header-absolute-ul::-webkit-scrollbar {
    width: 8px;
  }
  
  .header-absolute-ul::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .header-absolute-ul::-webkit-scrollbar-thumb {
    background: #43cdd7;
    border-radius: 10px;
  }
  
  .header-absolute-ul::-webkit-scrollbar-thumb:hover {
    background: #43cdd7;
  }
  
  .header-absolute-ul {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  
  .diplom__slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -10px;
    position: relative;
    padding: 0 32px;
  }
  
  .diplom__slide {
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  .diplom__slide img {
    max-width: 100%;
    height: auto;
  }
  
  .diplom__btn-next,
  .diplom__btn-prev {
    font-size: 20px;
    color: #43cdd7;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border: none;
    cursor: pointer;
    z-index: 2;
  }
  
  .diplom__btn-next {
    right: 0;
  }
  
  .diplom__btn-prev {
    left: 5px;
  }
  
  .clinic-doctor-block {
    --primary-bg: #330dda;
    --accent-blue: #007bff;
    --text-dark: #333;
    --text-light: #fff;
    --text-gray: #888;
    --radius-lg: 20px;
    --radius-md: 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  .clinic-doctor-block *,
  .clinic-doctor-block *::before,
  .clinic-doctor-block *::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
  }
  
  .clinic-doctor__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    background: #5632d3;
    border-radius: var(--radius-lg);
    margin: 20px auto;
    max-width: 1200px;
  }
  
  .clinic-doctor__info-wrap {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
    padding: 30px;
  }
  
  .clinic-doctor__photo-side {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(40% - 40px);
    flex: 0 0 calc(40% - 40px);
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
  }
  
  .clinic-doctor__meta {
    color: var(--text-light);
  }
  
  .clinic-doctor__name {
    font-size: 28px;
    color: white;
    margin: 0 0 10px;
    line-height: 1.2;
    text-align: left !important;
    font-weight: 700;
  }
  
  .clinic-doctor__position {
    font-size: 20px;
    margin: 0 0 8px;
    line-height: 1.3;
  }
  
  .clinic-doctor__experience {
    color: var(--text-gray);
    font-size: 16px;
    display: block;
  }
  
  .clinic-doctor__review {
    background: var(--text-light);
    border-radius: var(--radius-md);
    padding: 25px;
    padding-bottom: 5px;
    position: relative;
  }
  
  .clinic-review__content {
    max-height: 277px;
    overflow: hidden;
    -webkit-transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .clinic-review__content.expanded {
    max-height: 1000px;
  }
  
  .clinic-review__content p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
  }
  
  .clinic-review__toggle {
    background: #5632d3;
    color: var(--text-light);
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    margin-top: 10px;
    cursor: pointer;
    display: none;
    font-size: 14px;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  
  .clinic-review__toggle.show {
    display: block;
  }
  
  .clinic-doctor__image {
    border-radius: var(--radius-md);
    -o-object-fit: cover;
    object-fit: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -o-object-position: top center;
    object-position: top center;
  }
  
  /* Адаптив */
  @media (max-width: 992px) {
    .clinic-doctor__main {
      gap: 30px;
    }
  
    .clinic-doctor__name {
      font-size: 24px;
    }
  
    .clinic-doctor__position {
      font-size: 18px;
    }
  }
  
  @media (max-width: 768px) {
    .clinic-doctor__main {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
      gap: 20px;
    }
  
    .clinic-doctor__photo-side {
      -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
      order: -1;
      -ms-flex-preferred-size: auto;
      flex-basis: auto;
      max-width: 300px;
      margin: 0 auto;
    }
  
    .clinic-doctor__image {
      height: 320px;
    }
    .clinic-doctor__info-wrap {
      padding: 10px 0;
    }
  
    .clinic-review__content {
      max-height: 120px;
    }
  }
  
  @media (max-width: 480px) {
    .clinic-doctor__main {
      padding: 0 10px;
      border-radius: 16px;
    }
  
    .clinic-doctor__name {
      font-size: 22px;
    }
  
    .clinic-doctor__position {
      font-size: 16px;
    }
  
    .clinic-doctor__review {
      padding: 20px;
    }
  
    .clinic-review__toggle {
      bottom: 10px;
      right: 10px;
      padding: 6px 16px;
    }
  }
  
  .treatment {
    padding: 60px 0;
    background-color: #f8f9ff;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .treatment__title {
    font-size: 36px;
    color: #27004d;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .treatment__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  
  .treatment__info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  
  .treatment__subtitle {
    font-size: 28px;
    color: #27004d;
    margin-bottom: 30px;
  }
  
  .treatment__block {
    margin-bottom: 30px;
  }
  
  .treatment__text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
  }
  
  .treatment__list-wrapper {
    margin-bottom: 30px;
  }
  
  .treatment__list {
    list-style: none;
    padding-left: 20px;
  }
  
  .treatment__list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
  }
  
  .treatment__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #8b00ff;
    border-radius: 50%;
  }
  
  .treatment__list--numbered {
    counter-reset: item;
  }
  
  .treatment__list--numbered li {
    counter-increment: item;
    padding-left: 30px;
  }
  
  .treatment__list--numbered li::before {
    content: counter(item);
    background: none;
    color: #8b00ff;
    font-weight: bold;
    width: auto;
    height: auto;
    top: 0;
  }
  
  .treatment__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 400px;
    flex: 0 0 400px;
    position: sticky;
    top: 20px;
  }
  
  .treatment__image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  @media (max-width: 992px) {
    .treatment__content {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
  
    .treatment__image {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      position: static;
      max-width: 500px;
      margin: 0 auto;
    }
  }
  
  @media (max-width: 768px) {
    .treatment {
      padding: 40px 0;
    }
  
    .treatment__title {
      font-size: 28px;
      margin-bottom: 30px;
    }
  
    .treatment__subtitle {
      font-size: 24px;
    }
  
    .treatment__block-title {
      font-size: 18px;
    }
  }
  
  @media (max-width: 576px) {
    .treatment__title {
      font-size: 24px;
    }
  
    .treatment__subtitle {
      font-size: 20px;
    }
  
    .treatment__text,
    .treatment__list li {
      font-size: 14px;
    }
  }
  
  .promo__wrapper {
    display: flex;
    gap: 85px;
  }
  
  .promo__picture {
    flex: 0 0 440px;
    align-self: flex-end;
    display: flex;
    align-items: flex-end;
  }
  .promo__img {
    object-fit: contein;
  }
  
  @media (max-width: 560px) {
    .promo__picture {
      flex: 0 0 262px;
    }
  }
  
  @media (max-width: 1024px) {
    .promo__wrapper {
      display: block;
    }
  
    .promo__picture {
      justify-content: center;
    }
  }
  
  .modal_city::before {
    content: none;
  }
  
  .getadvice-title_city,
  .getadvice-suptitle_city {
    text-align: center;
  }
  
  .getadvice-border_city {
    width: 100%;
  }
  
  .getadvice-input_city {
    margin-bottom: 20px;
  }
  
  .cityes-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .cityes-list a {
    color: #01120e;
    transition: color 0.6s;
  }
  
  .cityes-list a:hover {
    color: #5632d3;
  }
  
  .bottom-info__wrapper {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 500;
    color: #fff;
    font: inherit;
    background-color: rgba(0, 0, 0, 0.73);
    opacity: 0;
    transition: opacity 300ms;
  }
  
  .bottom-info__wrapper.active {
    opacity: 1;
  }
  
  .bottom-info__wrapper .bottom-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 15px 10px 20px;
  }
  
  @media screen and (max-width: 700px) {
    .bottom-info__wrapper .bottom-info {
      flex-direction: column;
    }
  }
  
  .bottom-info__wrapper .bottom-info__content {
    margin: 0 10px 0 0;
  }
  
  .bottom-info__content a {
    color: #52c5ff;
    text-decoration: underline;
    transition: color 300ms;
  }
  
  .bottom-info__content a:hover {
    color: #296de7;
  }
  
  @media screen and (max-width: 700px) {
    .bottom-info__wrapper .bottom-info__content {
      text-align: center;
      margin: 0 30px 0 0;
    }
  }
  
  .bottom-info__wrapper .bottom-info__action {
    display: flex;
  }
  
  @media screen and (max-width: 639px) {
    .bottom-info__wrapper .bottom-info__action {
      margin: 10px 0 0;
    }
  }
  
  .bottom-info__wrapper .bottom-info__button-agree {
    font-size: 14px;
    line-height: 2;
    font-weight: 500;
    color: #000;
    border-radius: 5px;
    padding: 2px 15px;
    text-transform: math-auto;
    display: block;
    background-color: #ffffffe8;
    border: none;
    cursor: pointer;
  }
  
  .bottom-info__wrapper .bottom-info__content {
    text-transform: math-auto;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    color: white;
  }
  @media (max-width: 900px) {
    .bottom-info__wrapper .bottom-info__content {
      text-transform: math-auto;
      font-size: 13px;
      font-weight: 500;
      line-height: 13px;
      color: white;
    }
  }
  .bottom-info__wrapper .bottom-info__button-cross {
    width: 28px;
    height: 28px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background-color: transparent;
    border: none;
    margin-inline-start: 12px;
    cursor: pointer;
  }
  
  @media screen and (max-width: 700px) {
    .bottom-info__wrapper .bottom-info__button-cross {
      position: absolute;
      top: 10px;
      right: 10px;
    }
  }
  
  .bottom-info__button-cross::after {
    content: "\00D7";
    color: #999;
    line-height: 1;
    transition: color 300ms;
  }
  
  .bottom-info__wrapper .bottom-info__button-cross:hover::after {
    color: #fff;
  }
  
  .search__items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
  }
  
  .search__items {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .search__item a {
    color: #0f3f2b;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.56;
  }
  
  .search__item a:hover {
    color: #1dd98b;
  }
  
  .search__page-title {
    padding: 20px 0 20px 0;
    font-family: "Manrope-Bold";
    font-size: 52px;
    line-height: 130%;
    text-align: center;
    color: #0f3f2b;
    margin: 0;
    font-size: 52px;
    line-height: 62px;
    margin-top: 0;
    margin-bottom: 10px;
  }
  
  .search-section {
    margin-bottom: 40px;
  }
  
  .search__form-btn:hover {
    background: #1a8289;
  }
  
  .search__form-btn {
    font-size: 18px;
    line-height: 140%;
    color: #ffffff;
    background: #43cdd7;
    border-radius: 10px;
    width: 175px;
    padding: 12px 0;
  }
  
  .search__form input {
    padding: 17px;
    border-radius: 9px;
    margin-right: 15px;
  }
  
  @media screen and (max-width: 640px) {
    .search__page-title {
      padding: 20px 0 0 0;
      font-size: 24px;
      line-height: 130%;
      text-align: center;
      color: #200f3f;
      margin-bottom: 20px;
    }
  
    .search-section {
      margin-bottom: 20px;
    }
  }
  
  @media screen and (max-width: 500px) {
    form.search__form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
  
    button.btn.search__form-btn.bg-green {
      width: 100%;
      padding: 9px;
    }
  
    input.input {
      padding: 14px;
      width: 100%;
    }
  }
  
  .header-telegram-mob {
    display: none;
  }
  
  @media (max-width: 850px) {
    .header-telegram-mob {
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }
  
  .header-link-tg {
    margin: auto 0;
  }
  
  .header-mob-wrap {
    display: flex;
    gap: 10px;
    margin-right: 60px;
  }
  
  .section-offset {
    padding: 60px 0 120px 0;
  }
  
  .installment {
    position: relative;
  }
  
  .installment::before {
    content: "";
    position: absolute;
    top: 168px;
    width: 563px;
    height: 563px;
    left: -144px;
    background: url(../images/decor1.png) 100% no-repeat;
    z-index: -1;
  }
  .installment::after:not(.installment-service) {
    content: "";
    position: absolute;
    top: -315px;
    width: 563px;
    height: 563px;
    right: -133px;
    background: url(../images/decor2.png) 100% no-repeat;
    z-index: -1;
  }
  
  .installment__content {
    background: linear-gradient(
      45deg,
      rgba(85, 49, 210, 1) 0%,
      rgba(146, 115, 228, 1) 56%,
      rgba(231, 205, 252, 1) 100%
    );
    color: #ffffff;
    border-radius: 32px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    overflow: hidden;
    padding-left: 52px;
    overflow: visible;
    gap: 40px;
    position: relative;
  }
  
  .installment__text {
    padding: 45px 0;
    max-width: 707px;
  }
  
  .installment__phone {
    text-decoration: none;
    color: #fff;
    border-radius: 10px;
    border: 1px solid #43cdd7;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    max-width: fit-content;
    background: transparent;
    transition: all 0.3s ease;
    gap: 5px;
  }
  
  .installment__phone:hover {
    color: #ffffff;
    background: #43cdd7;
  }
  .installment__title {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
    margin-top: 0;
    color: white;
  }
  
  .installment__title span {
    font-weight: 700;
  }
  
  .installment__description {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0;
    margin-bottom: 24px;
  }
  
  .installment__bottom {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .installment__features {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
  }
  
  .installment__feature {
    font-size: 16px;
    text-align: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
  }
  
  .installment__feature:nth-child(3) .installment__feature-value {
    align-items: end;
  }
  
  .installment__feature-value {
    font-size: 60px;
    display: flex;
    align-items: baseline;
    line-height: 1;
  }
  
  .installment__feature-value span {
    font-size: 32px;
    opacity: 0.6;
    padding-left: 5px;
  }
  
  .installment__feature-label {
    font-size: 14px;
    opacity: 0.9;
  }
  
  .installment__button {
    background-color: #43cdd7;
    color: #ffffff;
    border-radius: 10px;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: 0.3s linear;
    border: 1px solid transparent;
    cursor: pointer;
  }
  
  .installment__button:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
  }
  
  .installment__picture {
    position: absolute;
    width: 100%;
    max-width: 400px;
    right: 0;
    bottom: 0;
    height: auto;
  }
  .installment__picture img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    display: block;
  }
  
  /* Адаптивность */
  
  @media (max-width: 1380px) {
    .installment__content {
      flex-direction: column;
      gap: 20px;
    }
    .installment__picture {
      max-width: 100%;
      overflow: visible;
      position: static;
    }
  
    .installment__picture:before {
      width: 110%;
      height: 90%;
    }
  
    .installment__text {
      padding: 40px 0 0 0;
      max-width: 100%;
    }
  
    .installment__picture img {
      max-height: 400px;
    }
  }
  @media (max-width: 1213px) {
    .installment__content {
      flex-direction: column;
    }
    .installment__content > * {
      flex-basis: 100%;
    }
  
    .installment__image-inner {
      width: 100%;
      max-width: 500px;
    }
    .installment__image-inner .decor,
    .installment__image .installment__image-inner {
      position: static;
    }
  
    .installment__image img {
      width: 100%;
    }
    .installment__image {
      bottom: 0;
      right: 50px;
    }
    .installment__image-inner .decor {
      transform: none;
    }
  
    .installment__content {
      padding: 0 60px;
    }
  
    .installment__text {
      width: 100%;
    }
  
    .installment__image-inner {
      max-width: 571px;
    }
  
    .installment__features > * {
      flex-basis: calc(33.333% - 13.3333px);
    }
    .section-offset {
      padding: 40px 0 80px 0;
    }
  }
  
  @media (max-width: 768px) {
    .installment__content {
      padding: 0 20px;
    }
    .installment__image-inner {
      max-width: 400px;
      min-height: 363px;
    }
    .installment__feature {
      padding-right: 0;
      margin-right: 0;
      margin-bottom: 12px;
      padding-bottom: 12px;
    }
  
    .installment__text {
      padding-top: 20px;
    }
    .installment__text h2 {
      color: white;
    }
  
    .installment__features {
      flex-direction: column;
      gap: 0;
    }
  
    .installment__features > * {
      flex-basis: 100%;
      width: 100%;
    }
  
    .installment__button {
      width: 100%;
    }
    .installment__phone {
      max-width: 100%;
      width: 100%;
      justify-content: center;
    }
  
    .installment__title {
      font-size: 24px;
    }
  
    .installment__button {
      font-size: 14px;
    }
    .installment {
      padding: 40px 0 80px 0;
    }
  
    .section-offset {
      padding: 30px 0 60px 0;
    }
  }
  
  @media (max-width: 480px) {
    .installment__feature-value {
      font-size: 52px;
    }
  
    .installment__text {
      padding: 0;
    }
    .installment__content {
      padding: 20px 20px 0 20px;
      border-radius: 10px;
    }
  
    .installment__title {
      margin-bottom: 10px;
    }
    .installment__description {
      margin-bottom: 18px;
    }
  
    .installment__picture:before {
      width: 120%;
      height: 95%;
    }
  
    .installment__features {
      gap: 12px;
      margin-bottom: 12px;
    }
  
    .installment__image {
      right: 0;
    }
  
    .installment {
      padding: 30px 0 60px 0;
    }
  }
  @media (max-width: 380px) {
    .installment__picture {
      min-height: 300px;
    }
  
    .installment__picture:before {
      width: 123%;
      height: 70%;
    }
  }
  .reviews .titleblock {
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 35px;
    color: #432a72;
    text-align: left;
    margin: 0;
    margin-bottom: 40px;
    margin-top: 40px;
  }
  .installment__content .titleblock {
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 35px;
    margin-bottom: 12px;
  }
  
  @media (max-width: 900px) {
    .installment__content .titleblock {
      font-weight: 700;
      font-size: 24px;
      line-height: 28px;
      text-align: center;
      color: white;
    }
    .reviews .titleblock {
      font-weight: 700;
      font-size: 24px;
      line-height: 28px;
      color: #200f3f;
      text-align: center;
    }
  }
  
  @media (max-width: 850px) {
    header,
    header2 {
      height: 110px;
    }
    .header-logo.mob {
      display: contents;
    }
    .header-logo p {
      color: #e7cdfc;
      font-size: 12px;
    }
    .header-logo a {
      color: #fff;
      font-size: 16px;
    }
  }
  .no-scroll {
    overflow: hidden;
  }
  .mobile-only {
    display: none;
  }
  .burger i:nth-child(2) {
    display: none;
  }
  .burger.active i:nth-child(1) {
    display: none;
  }
  .burger.active i:nth-child(2) {
    display: block;
  }
  .header-navigation-container .header-top,
  .header-navigation-container .header-bottom {
    display: block;
  }
  .header-navigation-container .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-top .header-logo {
    width: auto;
    flex: 0 1 auto;
  }
  .header-top-ul {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  @media (max-width: 850px) {
    .mobile-only {
      display: block;
    }
    .header-navigation-container {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: #5531d2;
      z-index: 2000;
      padding: 100px 20px 40px;
      overflow-y: auto;
    }
    .header-navigation-container.nav-open {
      display: block !important;
    }
    .header-middle {
      display: flex !important;
      flex-direction: row !important;
      flex-wrap: nowrap !important;
      justify-content: space-between !important;
      align-items: center !important;
      position: relative;
      z-index: 999;
      padding: 10px 0 !important;
    }
    .header-logo.mob {
      display: flex !important;
      flex-direction: row !important;
      align-items: center !important;
      gap: 12px;
      order: 1;
      flex: 1;
      margin: 0 !important;
    }
    .header-logo.mob p {
      margin: 0;
      font-size: 11px;
      line-height: 1.2;
      color: #e7cdfc;
    }
    .header__top-phone {
      display: inline !important;
      color: inherit !important;
      font-weight: 700;
      text-decoration: none;
    }
    .header-block__mobile-phones {
      display: flex !important;
      order: 2;
      margin: 0 15px 0 0 !important;
      align-self: center;
    }
    .header-mob-wrap {
      margin: 0 !important;
      padding: 0 !important;
      display: flex !important;
      align-items: center;
    }
    .burger {
      display: flex !important;
      position: relative !important;
      order: 3;
      margin: 0 !important;
      align-self: center !important;
      cursor: pointer;
      z-index: 2002;
      transform: translateY(-30px);
    }
    .burger i {
      display: flex;
      align-items: center;
      height: 100%;
    }
    .header-navigation-container .header-top {
      display: block !important;
    }
    .header-top-ul,
    .header-bottom-ul {
      display: flex !important;
      flex-direction: column !important;
      gap: 15px !important;
      padding: 0 !important;
    }
    .burger-li,
    .header-bottom-li {
      display: block !important;
      width: 100%;
    }
    .burger-li a,
    .header-bottom-li a {
      font-size: 18px !important;
      color: #fff !important;
      text-decoration: none !important;
      display: flex !important;
      align-items: center;
      justify-content: space-between;
    }
    .burger-title {
      font-size: 18px;
      font-weight: 700;
      color: #43cdd7;
      margin: 25px 0 10px;
    }
    .header-block,
    .header-top .header-logo {
      display: none !important;
    }
    .header-bottom-ul .header-absolute {
      display: none;
      position: static;
      width: 100%;
      padding: 10px 0;
      background: transparent;
    }
    .header-bottom-li.is-open .header-absolute {
      display: block !important;
    }
    .header-bottom-li.is-open a svg {
      transform: rotate(180deg);
    }
  }
  @media (min-width: 851px) {
    .header-navigation-container {
      display: block !important;
    }
    .header-bottom-li:hover .header-absolute {
      display: block;
      z-index: 2;
    }
  }
  @media (max-width: 850px) {
    body.no-scroll .header-middle {
      background: #5531d2 !important;
    }
  }
  
  .facts {
    background-color: #f0f4ff;
    padding: 60px 20px;
  }
  
  .facts__title {
    color: #432a72;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 48px auto;
    max-width: 1200px;
  }
  
  .facts__container {
    display: flex;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
  }
  
  .facts__item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 32px;
    flex: 0 1 384px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
  }
  
  .facts__content {
    margin-bottom: 40px;
  }
  
  .facts__name {
    color: #000000;
    font-size: 24px;
    line-height: 1.3;
    margin: 0 0 24px 0;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 24px;
  }
  
  .facts__accent {
    color: #432a72;
    font-weight: 700;
  }
  
  .facts__description {
    color: #333333;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
  }
  
  .facts__source-wrapper {
    color: #888888;
    font-size: 14px;
    margin: 0;
  }
  
  .facts__link {
    color: inherit;
    text-decoration: underline;
  }
  
  @media (max-width: 1024px) {
    .facts__item {
      flex: 1;
    }
  }
  
  @media (max-width: 768px) {
    .facts {
      padding: 40px 0;
    }
  
    .facts__title {
      text-align: center;
      font-size: 28px;
      margin-bottom: 32px;
      padding: 0 16px;
    }
  
    .facts__container {
      justify-content: flex-start;
      overflow-x: auto;
      padding: 0 16px 20px 16px;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
  
    .facts__container::-webkit-scrollbar {
      display: none;
    }
  
    .facts__item {
      min-width: 280px;
      width: 85%;
      flex: 0 0 auto;
      scroll-snap-align: center;
      padding: 24px;
    }
  
    .facts__name {
      font-size: 20px;
      padding-bottom: 20px;
      margin-bottom: 20px;
    }
  
    .facts__source-wrapper::before {
      content: "«";
    }
  
    .facts__source-wrapper::after {
      content: "»";
    }
  }
  .reviews__item-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
  }
  
  .reviews__item-user {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .reviews__item-service {
    font-size: 14px;
    line-height: 1.2;
    text-align: right;
    max-width: 200px;
  }
  
  .reviews__item-service a {
    color: rgb(67, 205, 215);
    text-decoration: underline;
  }
  
  .reviews__item-block2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgb(205, 213, 235);
    margin-top: auto;
    padding-top: 20px;
  }
  
  .rating-result {
    width: auto !important;
    margin: 0 !important;
    display: flex;
  }
  
  .rating-result span.active {
    color: rgb(67, 205, 215) !important;
  }
  
  @media (max-width: 900px) {
    .reviews__item-info {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
    .reviews__item-service {
      text-align: left;
      font-size: 12px;
    }
    .reviews__item-user {
      gap: 10px;
    }
  }
  
  .facts__accent {
    color: #5531d2;
  }
  .blockquote-block {
    padding: 40px;
    border-radius: 20px;
    background: #e7ecfb;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px;
    color: #200f3f;
    font-size: 22px;
    font-weight: 500;
    line-height: 130%;
  }

  @media (max-width: 850px) {
    .blockquote-block {
        padding: 20px;
        margin-bottom: 30px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        font-size: 18px;
    }

}
