@charset "UTF-8";
*,
*:before,
*:after {
    box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
sub,
sup,
tt,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    text-size-adjust: none;
}

footer,
header,
nav,
section,
main {
    display: block;
}

button {
    background-color: initial;
    border: none;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

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

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

input {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    background: transparent;
    color: inherit;
    font: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}

@font-face {
    font-family: HelveticaNeue;
    src: url('../fonts/HelveticaNeueUltraLight.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: HelveticaNeue;
    src: url('../fonts/HelveticaNeueThin.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: HelveticaNeue;
    src: url('../fonts/HelveticaNeueLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: HelveticaNeue;
    src: url('../fonts/HelveticaNeueRoman.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: HelveticaNeue;
    src: url('../fonts/HelveticaNeueMedium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: HelveticaNeue;
    src: url('../fonts/HelveticaNeueMediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: HelveticaNeue;
    src: url('../fonts/HelveticaNeueBold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body,
html {
    height: 100%;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

main {
    flex: 1 1 auto;
}

body {
    margin: 0;
    color: #fff;

    font-family: HelveticaNeue, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../img/main_shadow_4.webp');
}
body::after {
    content: '';
    display: block;
    position: fixed;
    z-index: -1;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    background: #161616;
    background: linear-gradient(190deg, rgb(22, 22, 22) 0%, rgb(57, 37, 70) 100%);
}
body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    border-style: none;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

p {
    margin: 0;
}

button,
input,
textarea {
    font: inherit;
}

button {
    color: inherit;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: button;
    appearance: button;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.form-field {
    position: relative;
    width: 100%;
    padding-bottom: 20px;
}
.form-field__error {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 16px;
    min-height: 16px;
    color: #ffb8c0;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}
.form-field.has-error input,
.form-field.has-error textarea,
.form-field.has-error select {
    border-color: #ff7d8c;
}
.form-field.is-valid input,
.form-field.is-valid textarea,
.form-field.is-valid select {
    border-color: rgba(221, 169, 255, 0.7);
}

.btn_hover_bg {
    position: relative;
    overflow: hidden;
}
.btn_hover_bg::before {
    content: '';
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
}
.btn_hover_bg:hover::before {
    background: rgba(0, 0, 0, 0.2);
}

.soc_btn_hover,
.heading__link {
    transition: all 0.3s ease;
}

.soc_btn_hover:hover,
.heading__link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.form__spam-trap {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    white-space: nowrap;
}
.form .button:disabled {
    cursor: wait;
    opacity: 0.65;
}
.form__status {
    min-height: 20px;
    margin-top: 12px;
    font-size: 13px;
    line-height: 20px;
}
.form__status.is-success {
    color: #dda9ff;
}
.form__status.is-error {
    color: #ffb8c0;
}

.dote__style {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eed4ff1a;
}
.dote__style::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dda9ff;
}

.container {
    width: calc(100% - 48px);
    max-width: 1368px;
    width: min(100% - 48px, 1368px);
    margin-inline: auto;
    margin-left: auto;
    margin-right: auto;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    margin-bottom: 0;
    font-weight: 300;
    line-height: 0.94;
}

h1 {
    font-size: clamp(48px, 6.4vw, 64px);
}

h1 strong {
    color: #b88dd2;
    font-weight: 700;
}

.social__link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.social__link img {
    width: 24px;
    height: 24px;
}

.button {
    justify-content: center;
    padding: 0 20px;
    border-radius: 28px;
    color: #460665;
    background: #eed4ff;
    background: linear-gradient(90deg, rgba(238, 212, 255, 0.7) 0%, rgb(221, 169, 255) 100%);
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    gap: 0;
    align-items: center;
    min-height: 50px;
    display: inline-flex;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}
.button--small {
    min-height: 44px;
    padding: 13px 20px;
    font-size: 14px;
}

a.button::after {
    content: '';
    display: block;
    width: 0;
    height: 20px;
    flex: 0 0 0;
    margin-left: 0;
    background: url('../../img/icon/arrowUpColor.svg') center/contain no-repeat;
    opacity: 0;
    overflow: hidden;
    transform: translate3d(-6px, 6px, 0) scale(0.85);
    transition:
        width 0.28s ease,
        flex-basis 0.28s ease,
        margin-left 0.28s ease,
        opacity 0.28s ease,
        transform 0.28s ease;
}
a.button > img {
    display: none;
}
a.button:has(> img)::after {
    display: none;
}
a.button:has(> img) > img {
    display: block;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    margin-left: 8px;
    opacity: 1;
    transform: none;
}
a.button:hover::after,
a.button:focus-visible::after {
    width: 20px;
    flex-basis: 20px;
    margin-left: 8px;
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}
.button-hover-wrap {
    position: relative;
    display: inline-block;
    height: 50px;
    vertical-align: top;
}
.button-hover-wrap > .button {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
}
.button-hover-wrap--small {
    width: 148px;
    height: 44px;
}
.button-hover-wrap--appointment {
    width: 242px;
}

.header {
    --header-height: 80px;
    --header-surface-bg: rgba(0, 0, 0, 0.4);
    --header-surface-blur: blur(4px);
    position: fixed;
    z-index: 10050;
    isolation: isolate;
    top: 0;
    right: 0;
    left: 0;
    padding: 12px 0;
    transform: translate3d(0, 0, 0);
    transition:
        transform 0.35s ease,
        background-color 0.35s ease,
        -webkit-backdrop-filter 0.35s ease;
    transition:
        transform 0.35s ease,
        background-color 0.35s ease,
        backdrop-filter 0.35s ease;
    transition:
        transform 0.35s ease,
        background-color 0.35s ease,
        backdrop-filter 0.35s ease,
        -webkit-backdrop-filter 0.35s ease;
}
.header::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    left: 0;
    height: calc(var(--header-height) + 50px);
    opacity: 0;
    background: var(--header-surface-bg);
    -webkit-backdrop-filter: var(--header-surface-blur);
    backdrop-filter: var(--header-surface-blur);
    transition:
        height 0.25s ease,
        opacity 0.25s ease;
}
.header.is-scroll-hidden {
    pointer-events: none;
    transform: translate3d(0, calc(-100% - 1px), 0);
}
.header.is-scroll-visible {
    transform: translate3d(0, 0, 0);
}
.header.is-scroll-visible::before {
    height: var(--header-height);
    opacity: 1;
}
body.search-open .header::before {
    height: var(--header-height);
    opacity: 1;
}
.header__inner,
.header__actions,
.header .nav {
    display: flex;
    align-items: center;
}
.header__inner {
    position: relative;
    z-index: 2;
    justify-content: space-between;
}
.header__actions {
    gap: 16px;
}
.header__geo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.header__geo img {
    max-width: 24px;
    width: 100%;
    height: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 48px;
    height: 56px;
}

.nav {
    gap: 30px;
    font-size: 14px;
    font-weight: 300;
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    transform: translate(-50%, -50%);
}
.nav a {
    transition: color 0.2s ease;
    line-height: 18px;
}
.nav a:hover,
.nav a.is-active {
    color: #b88dd2;
}

.header__search {
    position: relative;
}
.header__search-toggle {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    background: transparent;
}
.header__search-panel {
    position: fixed;
    z-index: 1;
    top: var(--header-height);
    right: 0;
    left: 0;
    max-height: calc(100vh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    overflow: hidden;
    padding: 0 0 14px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    background: var(--header-surface-bg);
    -webkit-backdrop-filter: var(--header-surface-blur);
    backdrop-filter: var(--header-surface-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
    transform: translateY(-8px);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}
.header__search-panel::before {
    content: none;
}
.header__search.is-open .header__search-panel {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
}
.header__search-container {
    position: relative;
    z-index: 1;
    padding-bottom: 0;
}
.header__search-form {
    position: relative;
    width: 100%;
}
.header__search-input {
    width: 100%;
    height: 42px;
    padding: 0 52px 10px 16px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 0;
    outline: none;
    color: #fff;
    background: transparent;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
}
.header__search-input::-webkit-search-decoration,
.header__search-input::-webkit-search-cancel-button {
    display: none;
}
.header__search-input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.48);
}
.header__search-input::placeholder {
    color: rgba(255, 255, 255, 0.48);
}
.header__search-clear {
    position: absolute;
    top: 2px;
    right: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}
.header__search-clear[hidden] {
    display: none;
}
.header__search-clear:hover,
.header__search-clear:focus-visible {
    color: #dda9ff;
    background: rgba(255, 255, 255, 0.08);
}
.header__search-clear:focus-visible {
    outline: 1px solid rgba(221, 169, 255, 0.7);
    outline-offset: 1px;
}
.header__search-results {
    max-height: calc(100vh - var(--header-height) - 56px);
    max-height: calc(100dvh - var(--header-height) - 56px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-top: 12px;
    scrollbar-color: rgba(255, 255, 255, 0.26) transparent;
    scrollbar-width: thin;
}
.header__search-results[hidden] {
    display: none;
}
.header__search-result {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding: 15px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #fff;
    text-align: left;
    background: transparent;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}
.header__search-result:hover,
.header__search-result:focus-visible {
    color: #dda9ff;
    background: rgba(49, 36, 57, 0.88);
    transform: translateX(3px);
}
.header__search-result:focus-visible {
    outline: 1px solid rgba(221, 169, 255, 0.7);
    outline-offset: -1px;
}
.header__search-result-title {
    min-width: 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.35;
}
.header__search-result-title mark,
.service-search-highlight {
    color: #dda9ff;
    background: transparent;
}
.header__search-result-price {
    flex: 0 0 auto;
    padding: 8px 13px;
    border-radius: 20px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}
.header__search-empty {
    padding: 18px 16px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.4;
}
.services_main .price__item.is-search-target {
    background: rgba(221, 169, 255, 0.08);
}

.menu-toggle {
    display: none;
    width: 24px;
    height: 24px;
    padding: 6px 4px;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    height: 2px;
    transition: transform 0.2s ease;
}
.menu-toggle span:nth-child(1) {
    width: 10px;
    margin-left: auto;
}
.menu-toggle span:nth-child(2) {
    width: 16px;
}
.menu-toggle span:nth-child(3) {
    width: 10px;
}

.hero {
    position: relative;
    min-height: 900px;
    padding: 16px 0 72px;
    margin-top: 80px;
    overflow: hidden;
}
.hero__glow {
    position: absolute;
    top: 38%;
    left: 46%;
    isolation: isolate;
    width: min(100%, 900px);
    height: 900px;
    background: linear-gradient(180deg, rgba(50, 35, 60, 0) 58%, rgb(50, 35, 60) 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.hero__glow::before {
    position: absolute;
    z-index: -1;
    inset: -10px;
    border-radius: inherit;
    background: inherit;
    filter: blur(10px);
    content: '';
}
.hero__inner {
    position: relative;
    display: flex;
    min-height: 650px;
    align-items: flex-start;
}
.hero__copy {
    position: relative;
    z-index: 3;
    padding-top: 40px;
    max-width: 645px;
    display: flex;
    flex-direction: column;
}
.hero__copy h1 {
    font-weight: 100;
    letter-spacing: -1px;
}
.hero__copy h1 span:first-child {
    display: block;
    text-align: center;
    font-weight: 100;
}
.hero__copy h1 span {
    font-weight: 500;
}
.hero__copy > .button-hover-wrap {
    margin: 22px auto 0;
}
.hero__visual {
    --orbit-height: 22%;
    --orbit-top: 61%;
    --orbit-left: 43%;
    --orbit-width: 100%;
    --orbit-angle: -5deg;
    --orbit-counter-angle: 5deg;
    --orbit-marker-size: clamp(20px, 2.4vw, 28px);
    position: absolute;
    z-index: 2;
    top: 20%;
    left: 50%;
    width: min(45vw, 500px);
    aspect-ratio: 500/646;
    transform: translateX(-50%);
}
.hero__visual .tooth-img {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    max-height: 646px;
    max-width: 500px;
    -o-object-fit: contain;
    object-fit: contain;
    filter: drop-shadow(0 35px 55px rgba(0, 0, 0, 0.42));
}
.hero__visual .circle__wrap {
    position: absolute;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    pointer-events: none;
}
.hero__visual .circle__box {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    order: 1;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: none;
}
.hero__visual .circle--one {
    top: 80%;
    left: 17px;
    transform: translate(-50%, -50%) rotate(0deg);
    z-index: 100;
}
.hero__visual .circle--two {
    top: 64%;
    right: 15px;
    flex-direction: column-reverse;
    align-items: end;
    transform: translate(-50%, -50%);
    z-index: 100;
}
.hero__visual .circle__text {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    order: 2;
    font-size: clamp(10px, 1.15vw, 14px);
    font-weight: 300;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
    padding: 8px;

    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 8px;
}
.hero__visual .circle--one .circle__text {
    transform-origin: center top;
}
.hero__visual .circle--two .circle__text {
    transform-origin: center top;
}
.hero__orbit {
    position: absolute;
    top: 70%;
    left: 37%;
    display: block;
    width: var(--orbit-width);
    max-width: 500px;
    height: var(--orbit-height);
    border: 1px solid #dda9ff;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%) rotate(var(--orbit-angle));
}
.hero__orbit--back {
    z-index: 1;
    -webkit-clip-path: inset(0 0 50% 0);
    clip-path: inset(0 0 50% 0);
}
.hero__orbit--front {
    z-index: 4;
    -webkit-clip-path: inset(50% 0 0 0);
    clip-path: inset(50% 0 0 0);
}
.hero__caption {
    position: absolute;
    z-index: 4;
    right: 8%;
    bottom: 60px;
    font-size: 64px;
    text-align: end;
    font-weight: 100;
    line-height: 68px;
}
.hero__caption strong {
    font-weight: 500;
}
.hero__caption span {
    font-weight: 200;
}
.hero__socials {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.spark {
    position: absolute;
    z-index: 4;
}
.spark--one {
    top: 55%;
    left: 10%;
    max-width: 32px !important;
    height: 32px;
}
.spark--two {
    top: 11%;
    right: 15%;
    max-width: 40px !important;
    height: 40px;
}

.stats {
    padding: 72px 0;
}
.stats__inner {
    display: flex;
    flex-direction: column;
    gap: 144px;
}
.stats .stats__inner__item {
    display: flex;
    gap: 144px;
}

.stats .stats__inner__item .stat__number {
    font-size: 208px;
}

.stats .__item_two .stat__number {
    font-size: 176px;
}
.stats .stats__inner__item .stats__inner_title h2 {
    font-size: clamp(28px, 28px + 20 * (100vw - 390px) / 1122, 48px);
    font-weight: 100;
    line-height: 100%;
}
.stats .stats__inner__item .stats__inner_title h2 span {
    font-weight: 600;
}
.stats .__item_two {
    justify-content: flex-end;
}

.stat {
    display: flex;
    align-items: flex-end;
}
.stat__number {
    font-weight: 700;
    line-height: 0.6;
    letter-spacing: 0px;
}
.stat p {
    margin: 0;
    color: #bdb3c3;
    font-size: 13px;
}
.stat p strong {
    color: #fff;
}

.section-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 20px;
}
.section-heading .heading__title h2 {
    font-weight: 100;
    line-height: 100%;
}
.section-heading .heading__title h2 span {
    font-weight: 500;
}
.section-heading .heading__title h2 .color {
    font-weight: 100;
    color: #dda9ff;
}
.section-heading .heading__link {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dda9ff;
    max-width: 151px;
    width: 100%;
    height: 44px;
    border-radius: 28px;
    gap: 8px;
}
.section-heading .heading__link::after {
    content: '';
    background: url('../../img/icon/arrowLeft.svg');
    display: block;
    width: 24px;
    height: 24px;
}
.section-heading--row {
    align-items: center;
}

.services {
    padding: 72px 0;
}
.services__content {
    display: flex;
    align-items: stretch;
    gap: 64px;
}
.services .heading__title h2 {
    font-size: 48px;
    font-weight: 100;
}
.services .heading__title h2 strong {
    font-weight: 500;
}
.services .heading__title h2 span {
    color: #dda9ff;
}
.services__featured {
    width: 53%;
}
.services__list {
    display: flex;
    width: 47%;
    flex-direction: column;
    justify-content: center;
}

.service-accordion {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 16px;
}
.service-accordion h3 {
    margin: 0;
}
.service-accordion__trigger {
    display: flex;
    width: 100%;
    min-height: 72px;
    align-items: flex-start;
    gap: 18px;
    padding: 0;
    border: 0;
    color: #fff;
    background: transparent;
    font-size: 18px;
    text-align: left;
    cursor: pointer;
    justify-content: space-between;
    transition:
        color 0.2s ease,
        padding 0.2s ease;
}
.service-accordion__trigger .service-accordion__title_wrap {
    display: flex;
    gap: 16px;
    align-items: center;
    width: 100%;
}
.service-accordion__trigger .service-accordion__title_wrap .present_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 109px;
    width: 100%;
    height: 32px;
    border-radius: 16px;
    background-color: rgba(221, 169, 255, 0.4);
}
.service-accordion__trigger .service-accordion__title_wrap .present_wrap span {
    font-size: 14px;
    font-weight: 500;
}
.service-accordion__trigger .service-accordion__title_wrap .service-accordion__img {
    max-width: 60px;
    width: 100%;
    height: 60px;
    border-radius: 8px;
}
.service-accordion__trigger .service-accordion__title_wrap .service-accordion__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.service-accordion__trigger .service-accordion__title_wrap .service-accordion__text .service-accordion__title {
    font-size: 32px;
    font-weight: 300;
}
.service-accordion__trigger .service-accordion__title_wrap .service-accordion__text .service-accordion__text {
    font-size: 16px;
    font-weight: 300;
}
.service-accordion__title {
    flex: 1 1 auto;
}
.service-accordion__icon {
    position: relative;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}
.service-accordion__panel {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}
.service-accordion__panel[hidden] {
    display: block;
}
.service-accordion__content {
    padding: 16px 0 0 76px;
}
.service-accordion__content p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
}
.service-accordion__content a {
    color: #b88dd2;
    font-size: 12px;
    font-weight: 700;
}
.service-accordion.is-open .service-accordion__icon {
    transform: rotate(90deg);
}

.services__featured_wrap {
    display: flex;
    flex-direction: column;
}
.services__featured_wrap .button {
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
}
.services__featured_wrap .button-hover-wrap {
    align-self: flex-start;
    margin-top: 40px;
}

.media-card {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
    background: #100b15;
    max-width: 600px;
    height: 336px;
    width: 100%;
}
.media-card__video {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.media-card::after {
    position: absolute;
    inset: 35% 0 0;
    background: linear-gradient(transparent, rgba(12, 7, 16, 0.88));
    content: '';
    bottom: 0;
}
.media-card figcaption {
    position: absolute;
    z-index: 2;
    right: 90px;
    bottom: 22px;
    left: 24px;
    margin: 0;
    font-size: 15px;
    pointer-events: none;
}
.media-card__play {
    position: absolute;
    z-index: 3;
    right: 24px;
    bottom: 18px;
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    background: rgba(16, 11, 21, 0.22);
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}
.media-card__play:hover {
    background: rgba(231, 166, 255, 0.24);
    transform: scale(1.05);
}
.media-card__play:focus-visible {
    outline: 2px solid #b88dd2;
    outline-offset: 3px;
}
.media-card__play span {
    width: 0;
    height: 0;
    margin-left: 3px;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid currentcolor;
}
.media-card__play.is-playing span {
    width: 11px;
    height: 14px;
    margin-left: 0;
    border: 0;
    border-right: 4px solid currentcolor;
    border-left: 4px solid currentcolor;
}

.reviews {
    padding: 72px 0;
}
.reviews .slick__contant {
    overflow: hidden;
}
.reviews .slick__contant .reviews__slider:not(.slick-initialized) {
    display: flex;
    gap: 24px;
}
.reviews .slick__contant .slick-list {
    overflow: visible;
}
.reviews .slick__contant .slick-track {
    display: flex;
    align-items: stretch;
}
.reviews .slick__contant .slick-slide {
    width: 287px;
    flex: 0 0 287px;
    height: auto;
    margin-right: 24px;
}
.reviews .slick__contant .slick-slide > div {
    height: 100%;
}
.reviews .slick__contant .slick-slide:last-child {
    margin-right: 0;
}
.reviews .slick__contant .slick_img_wrap {
    width: 287px;
    max-width: none;
    height: 502px;
    border-radius: 16px;
    overflow: hidden;
}
.reviews .slick__contant .slick_img_wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.reviews__appointment-mobile {
    display: none;
}

.section-heading--row {
    margin-bottom: 32px;
}
.section-heading--row h2 {
    font-size: 48px;
    font-weight: 100;
}
.section-heading--row h2 strong {
    font-weight: 500;
    color: #fff;
}
.section-heading--row h2 span {
    color: #dda9ff;
    font-weight: 500;
}
.section-heading--row .link_wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.section-heading--row .link_wrap p {
    font-size: 24px;
    font-weight: 100;
    margin-bottom: 0;
}
.section-heading--row .link_wrap .button--ghost_wrap {
    display: flex;
    gap: 16px;
}
.section-heading--row .link_wrap .button--ghost_wrap .button {
    min-height: 44px;
    height: 100%;
}

.content_btn_mob {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    min-height: 44px;
}

.team {
    padding: 72px 0;
    position: relative;
}
.team .team__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
}
.team .team__header .team__title {
    display: inline-flex;
    align-items: flex-end;
    gap: 50px;
}
.team .team__header .team__title::after {
    content: '';
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url('../../img/icon/rhombus.svg');
    background-repeat: no-repeat;
    margin-bottom: 12px;
}
.team .team__header .team__title h2 {
    font-size: 48px;
    line-height: 52px;
    letter-spacing: 0%;
    font-weight: 100;
}
.team .team__header .team__title h2 strong {
    font-weight: 400;
}
.team .team__slider {
    overflow: hidden;
}
.team .team__slider [data-slick-slider='team']:not(.slick-initialized) {
    display: flex;
    gap: 24px;
}
.team .team__slider .slick-list {
    overflow: visible;
}
.team .team__slider .slick-track {
    display: flex;
}
.team .team__slider .slick-slide {
    width: 305px;
    height: auto;
    margin-right: 24px;
}
.team .team__slider .slick-slide > div {
    height: 100%;
}
.team .team__slider .slick-slide:last-child {
    margin-right: 0;
}
.team .team__slider .team__slider_item {
    max-width: 305px;
    width: 100%;
    height: 431px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}
.team .team__slider .team__slider_item::after {
    content: '';
    display: block;
    width: 100%;
    height: 120px;
    background: rgba(23, 23, 23, 0);
    background: linear-gradient(180deg, rgba(23, 23, 23, 0) 0%, rgb(23, 23, 23) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 5;
}
.team .team__slider .team__slider_item ._item__contant {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 10;
}
.team .team__slider .team__slider_item ._item__contant .user_profession {
    display: inline;
    padding: 8px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 14px;
    font-weight: 500;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.team .team__slider .team__slider_item ._item__contant .user_name {
    font-size: 48px;
    font-weight: 100;
    line-height: 52px;
    letter-spacing: 0%;
    margin-top: 8px;
}
.team .team__slider .team__slider_item img {
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.nav__link {
    transition: all 0.3s ease;
}

.nav__link:hover,
.nav__link.is-active {
    color: #dda9ff;
}

.slider-controls {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 22px;
}
.slider-controls button {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        opacity 0.2s ease;
}
.slider-controls button img {
    width: 24px;
    height: 24px;
}
.slider-controls button:hover:not(:disabled, .slick-disabled) {
    background: rgba(255, 255, 255, 0.1);
}
.slider-controls button:disabled,
.slider-controls button.slick-disabled {
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.28);
    background: transparent;
    cursor: default;
    opacity: 0.65;
}
.slider-controls button:focus-visible {
    outline: 2px solid #b88dd2;
    outline-offset: 3px;
}

.technology {
    min-height: 590px;
}
.technology__inner {
    position: relative;
    display: flex;
    min-height: 960px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.technology__inner .technology__list .technology__item {
    border-radius: 16px;
    overflow: hidden;
    position: absolute;
}
.technology__inner .technology__list .technology__item img {
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 16px;
    height: 100%;
}
.technology__inner .technology__list .__item_1 {
    max-width: 160px;
    width: 100%;
    height: 160px;
    top: 96px;
    left: 72px;
}
.technology__inner .technology__list .__item_2 {
    max-width: 176px;
    width: 100%;
    height: 104px;
    top: 152px;
    left: 414px;
}
.technology__inner .technology__list .__item_3 {
    max-width: 160px;
    width: 100%;
    height: 160px;
    top: 120px;
    right: 414px;
}
.technology__inner .technology__list .__item_4 {
    max-width: 104px;
    width: 100%;
    height: 169px;
    top: 72px;
    right: 24px;
}
.technology__inner .technology__list .__item_5 {
    max-width: 104px;
    width: 100%;
    height: 104px;
    top: 351px;
    right: 162px;
}
.technology__inner .technology__list .__item_6 {
    max-width: 160px;
    width: 100%;
    height: 160px;
    bottom: 241px;
    right: 39px;
}
.technology__inner .technology__list .__item_7 {
    max-width: 104px;
    width: 100%;
    height: 104px;
    bottom: 72px;
    right: 318px;
}
.technology__inner .technology__list .__item_8 {
    max-width: 160px;
    width: 100%;
    height: 160px;
    bottom: 193px;
    right: 540px;
}
.technology__inner .technology__list .__item_9 {
    max-width: 104px;
    width: 100%;
    height: 104px;
    bottom: 189px;
    left: 265px;
}
.technology__inner .technology__list .__item_10 {
    max-width: 116px;
    width: 100%;
    height: 200px;
    bottom: 328px;
    left: 14px;
}
.technology__inner h2 {
    display: flex;
    flex-direction: column;
    font-weight: 100;
    font-size: 48px;
    text-align: center;
    max-width: 463px;
    width: 100%;
}
.technology__inner h2 strong {
    color: #fff;
    font-weight: 500;
    text-align: left;
}
.technology__inner h2 span {
    font-weight: 200;
    text-align: center;
}

.microscope {
    background: rgba(23, 23, 23, 0.5019607843);
    padding: 72px 0;
}
.microscope .microscope__slick_item {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    min-height: 608px;
}
.microscope .microscope__slick_item .microscope__media {
    max-width: 518px;
    max-height: 608px;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}
.microscope .microscope__slick_item .microscope__media img {
    -o-object-fit: cover;
    object-fit: cover;
    max-height: 608px;
}
.microscope__slider-wrap {
    min-width: 0;
    width: 100%;
}
.microscope__slider {
    width: 100%;
}
.microscope__slider .slick-list {
    margin-inline: -8px;
}
.microscope__slider .slick-track {
    display: flex;
}
.microscope__slider .slick-slide {
    height: 608px;
    padding-inline: 8px;
}
.microscope__slider .slick-slide > div {
    width: 100%;
    height: 100%;
}
.microscope__slider .slick-slide > div > div {
    width: 100%;
    height: 100%;
}
.microscope__slider-controls {
    position: relative;
    z-index: 2;
    margin-top: 24px;
    transition: margin-top 0.28s ease;
}
.microscope__more-link {
    display: none;
}
.microscope__media {
    width: 58%;
}
.microscope__media img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 14px;
    -o-object-fit: cover;
    object-fit: cover;
}
.microscope__copy {
    max-width: 778px;
}
.microscope__copy h2 {
    font-weight: 100;
    font-size: 48px;
    margin-bottom: 40px;
}
.microscope__copy h2 strong {
    font-weight: 300;
    color: #fff;
}
.microscope__copy .microscope__copy_info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 72px;
    width: 100%;
}
.microscope__copy .microscope__copy_info .info__gallery {
    width: 100%;
    max-width: 281px;
}
.microscope__copy .microscope__copy_info .info__gallery .__gallery_img {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
.microscope__copy .microscope__copy_info .info__gallery .__gallery_img img {
    max-width: 281px;
    width: 100%;
    height: 224px;
    border-radius: 16px;
    -o-object-fit: cover;
    object-fit: cover;
}
.microscope__copy .microscope__copy_info .info__item {
    width: 100%;
}
.microscope__copy .microscope__copy_info .info__item .__dote {
    margin-bottom: 16px;
}
.microscope__copy .microscope__copy_info .info__item .__title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
}
.microscope__copy .microscope__copy_info .info__item .__text {
    opacity: 0.7;
}

.home_main .microscope__slider .diagnostics {
    padding: 0px;
}

.home_main .microscope {
    --microscope-slide-height: 824px;
}
.home_main .microscope__slider .diagnostics,
.home_main .microscope__slider .whitening,
.home_main .microscope__slider .planning {
    box-sizing: border-box;
    width: 100%;

    background: none;
}

.home_main .microscope__slider .microscope__media img {
    height: 100%;
    min-height: 608px;
}

.home_main .microscope__slider .whitening .whitening_box .whitening_item {
    height: 608px;
    min-height: 0;
}
.home_main .microscope__more-link--card {
    display: none;
}

.case {
    padding: 72px 0;
    background: rgba(23, 23, 23, 0.5019607843);
}
.case .case_slick_wrap {
    min-width: 0;
}
.case .case_slick_wrap .case__slider {
    width: 100%;
}
.case .case_slick_wrap .case__slider .slick-list {
    margin-inline: -8px;
}
.case .case_slick_wrap .case__slider .slick-slide {
    padding-inline: 8px;
}
.case .case_slick_wrap .case__slider-controls {
    position: relative;
    z-index: 2;
}
.case .case_slick_wrap .case_slick_item .case-item-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
}
.case .case_slick_wrap .case_slick_item .case-item-box {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
}

.case .case_slick_wrap .case_slick_item .case-item-box .case-item_link {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dda9ff;
    min-width: 180px;
    height: 44px;
    border-radius: 28px;
    gap: 8px;
    transition: all 0.3s ease;
    margin-left: auto;
}

.case .case_slick_wrap .case_slick_item .case-item-box .case-item_link::after {
    content: '';
    background: url('../../img/icon/arrowLeft.svg');
    display: block;
    width: 24px;
    height: 24px;
}
.case .case_slick_wrap .case_slick_item .case-item-box .case-item_link:hover {
    background: rgba(255, 255, 255, 0.1);
}
.case .case_slick_wrap .case_slick_item .case-item-heading .case_slick_tilte h2 {
    font-size: 48px;
    font-weight: 100;
}
.case .case_slick_wrap .case_slick_item .case-item-heading .case_slick_tilte h2 strong {
    font-weight: 400;
}
.case .case_slick_wrap .case_slick_item .case-item-heading .case_slick_setting_list {
    display: flex;
    gap: 8px;
    align-items: center;
}
.case .case_slick_wrap .case_slick_item .case-item-heading .case_slick_setting_list span {
    font-size: 14px;
    font-weight: 300;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0 12px;
    height: 32px;
}
.case .case_slick_wrap .case_slick_item .case__content_wrap {
    display: flex;
    justify-content: space-between;
    gap: 72px;
    margin-bottom: 40px;
}
.case .case_slick_wrap .case_slick_item .case__content_wrap .case__content_item {
    padding: 24px 0 0;
    width: 100%;
    max-width: 424px;
}
.case .case_slick_wrap .case_slick_item .case__content_wrap .case__content_item .case__content_title {
    font-weight: 100;
    margin-bottom: 16px;
    font-size: 28px;
}
.case .case_slick_wrap .case_slick_item .case__content_wrap .case__content_item .case__content_title strong {
    font-weight: 300;
}
.case .case_slick_wrap .case_slick_item .case__content_wrap .case__content_item .case__content_footer_text {
    font-size: 32px;
    font-weight: 100;
}
.case .case_slick_wrap .case_slick_item .case__content_wrap .case__content_item .case__content_footer_text strong {
    font-weight: 200;
}
.case .case_slick_wrap .case_slick_item .case__content_wrap .case__result {
    display: flex;
    align-items: stretch;
    max-width: 872px;
    width: 100%;
    height: 568px;
    border-radius: 16px;
    overflow: hidden;
}
.case .case_slick_wrap .case_slick_item .case__content_wrap .case__result img {
    display: block;
    flex: 1 1 50%;
    min-width: 0;
    width: 50%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.case .case_slick_wrap .case_slick_item .case__footer_list {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    min-height: 128px;
}
.case .case_slick_wrap .case_slick_item .case__footer_list .footer_item {
    flex: 1 1 25%;
    padding: 16px;
    width: 25%;
    min-height: 128px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.case .case_slick_wrap .case_slick_item .case__footer_list .footer_item .footer_item_title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 28px;
}
.case .case_slick_wrap .case_slick_item .case__footer_list .footer_item .footer_item_title span {
    color: #dda9ff;
}
.case .case_slick_wrap .case_slick_item .case__footer_list .footer_item .footer_item_text {
    font-weight: 300;
    line-height: 20px;
}

.case__steps {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 140px;
}
.case__steps li {
    display: flex;
    flex-direction: column;
    padding: 12px 0;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 300;
    line-height: 20px;
}
.case__steps span {
    color: #dda9ff;
    font-weight: 500;
    font-style: italic;
    font-size: 24px;
    line-height: 28px;
}
.case__result {
    width: 62%;
    margin: 0;
}
.case__result figcaption {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: #bdb3c3;
    font-size: 11px;
    text-transform: uppercase;
}

/* Home cases: fixed service list with before/after slider */
.case {
    padding: 72px 0px;
    background: #201a24;
}
.case .case__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}
.case .case__heading h2 {
    margin: 0;
    font-size: 48px;
    /* line-height: 1.08; */
    font-weight: 100;
}
.case .case__heading h2 strong {
    font-weight: 400;
}
.case .case-item_link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 44px;
    padding: 0 18px;
    border: 1px solid #dda9ff;
    border-radius: 28px;
    gap: 8px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}
.case .case-item_link::after {
    content: '';
    width: 20px;
    height: 20px;
    background: url('../../img/icon/arrowLeft.svg') center / contain no-repeat;
}
.case .case-item_link:hover {
    background: rgba(255, 255, 255, 0.08);
}
.case .case__layout {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}
.case .case__nav {
    display: flex;
    flex: 0 1 465px;
    flex-direction: column;
    max-width: 465px;
    min-width: 260px;
    width: 100%;
}
.case .case__nav-item {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 104px;
    padding: 16px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    background: transparent;
    color: #fff;
    gap: 16px;
    font: inherit;
    font-size: 32px;
    font-weight: 300;
    text-align: left;
    cursor: pointer;
    transition:
        background-color 0.25s ease,
        border-radius 0.25s ease;
}
.case .case__nav-item.is-active {
    border-bottom-color: transparent;
    border-radius: 8px;
    background: rgba(221, 169, 255, 0.07);
}
.case .case__nav-thumb {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}
.case .case__nav-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.case .case__visual {
    flex: 1 1 0;
    min-width: 0;
}
.case .case_slick_wrap .case__slider .slick-list,
.case .case_slick_wrap .case__slider .slick-slide {
    margin: 0;
    padding: 0;
}
.case .case__comparison {
    width: 100%;
    height: 524px;
    border-radius: 16px;
}
.case .case__comparison > img,
.case .case__comparison > div:first-child > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.case .case__comparison .cocoen-drag {
    background: #dda9ff;
}
.case .case__comparison .cocoen-drag::before {
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 5px solid #dda9ff;
    border-radius: 50%;
    background: #fff;
}
.case .case__slider-controls {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

@media (max-width: 900px) {
    .case .case__layout {
        flex-direction: column;
    }
    .case .case__nav {
        display: grid;
        flex: none;
        max-width: none;
        min-width: 0;
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .case .case__visual {
        width: 100%;
    }

    .case .case__slider-controls {
        margin-left: auto;
    }
}

@media (max-width: 600px) {
    .case {
        padding: 40px 0 64px;
    }
    .case .case__heading {
        align-items: center;
        flex-direction: row;
        gap: 24px;
        margin-bottom: 24px;
    }
    .case .case__heading h2 {
        flex: 1 1 auto;
        font-size: 28px;
    }
    .case .case-item_link {
        min-width: 157px;
        height: 36px;
        padding: 10px 12px;
        font-size: 14px;
    }
    .case .case-item_link::after {
        width: 16px;
        height: 16px;
    }
    .case .case__layout {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .case .case__visual {
        display: contents;
    }
    .case .case__slider {
        order: 1;
    }
    .case .case__nav {
        display: flex;
        order: 2;
        overflow: visible;
        flex-direction: column;
        padding: 0;
    }
    .case .case__nav-item {
        flex: none;
        width: 100%;
        min-height: 58px;
        padding: 12px 16px;
        font-size: 20px;
    }
    .case .case__nav-thumb {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
    }
    .case .case__comparison {
        height: auto;
        aspect-ratio: 1.37 / 1;
        border-radius: 12px;
    }
    .case .case__slider-controls {
        margin-top: 14px;
    }
}

.contacts {
    padding: 72px 0;
}
.contacts .contacts_body {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 72px;
}
.contacts .contacts_body .contacts__item h2 {
    font-size: 56px;
    font-weight: 100;
    line-height: 60px;
    margin-bottom: 32px;
}
.contacts .contacts_body .contacts__item h2 strong {
    font-weight: 300;
}
.contacts .contacts_body .contacts__item .contacts__soc_list {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}
.contacts .contacts_body .contacts__item .contacts_connection_list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.contacts .contacts_body .contacts__item .contacts_connection_list .contacts_connection__item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.contacts .contacts_body .contacts__item .contacts_connection_list .contacts_connection__item .__item_wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.contacts .contacts_body .contacts__item .contacts_connection_list .contacts_connection__item .__item_wrap ._title {
    font-weight: 700;
    line-height: 20px;
}
.contacts .contacts_body .contacts__item .contacts_connection_list .contacts_connection__item .__item_wrap ._text {
    font-weight: 300;
    line-height: 20px;
}
.contacts .contacts_body .contacts__item {
    width: 100%;
}
.contacts .contacts_body .contacts__form_wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 663px;
}
.contacts .contacts_body .contacts__form_wrap .form__title {
    font-size: 28px;
    font-weight: 100;
    line-height: 32px;
    display: block;
    max-width: 481px;
}
.contacts .contacts_body .contacts__form_wrap .form .form__input_wrap {
    margin-bottom: 40px;
}
.contacts .contacts_body .contacts__form_wrap .form .form__input_wrap .form_contact_info {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 16px;
}
.contacts .contacts_body .contacts__form_wrap .form .form__input_wrap input:not([type='checkbox']) {
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    padding: 8px 16px;
    width: 100%;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}
.contacts .contacts_body .contacts__form_wrap .form .form__input_wrap input:not([type='checkbox'])::-moz-placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    font-weight: 300;
}
.contacts .contacts_body .contacts__form_wrap .form .form__input_wrap input:not([type='checkbox'])::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    font-weight: 300;
}
.contacts .contacts_body .contacts__form_wrap .form .form__input_wrap input:not([type='checkbox']):focus-visible {
    border-color: #dda9ff;
    box-shadow: 0 1px 0 #dda9ff;
}
.contacts .contacts_body .contacts__form_wrap .form .form__input_wrap .form__checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;

    color: #fff;
    cursor: pointer;
}
.contacts .contacts_body .contacts__form_wrap .form .form__input_wrap .form__checkbox input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.contacts .contacts_body .contacts__form_wrap .form .form__input_wrap .form__checkbox_mark {
    position: relative;
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-radius: 5px;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}
.contacts .contacts_body .contacts__form_wrap .form .form__input_wrap .form__checkbox_mark::after {
    position: absolute;
    left: 3px;
    top: 0px;
    width: 7px;
    height: 10px;
    border: solid #271336;
    border-width: 0 2px 2px 0;
    opacity: 0;
    transform: rotate(45deg);
    content: '';
}
.contacts .contacts_body .contacts__form_wrap .form .form__input_wrap .form__checkbox_text {
    font-size: 14px;
    font-weight: 300;
}
.contacts
    .contacts_body
    .contacts__form_wrap
    .form
    .form__input_wrap
    .form__checkbox
    input:checked
    + .form__checkbox_mark {
    background: #fff;
}
.contacts
    .contacts_body
    .contacts__form_wrap
    .form
    .form__input_wrap
    .form__checkbox
    input:checked
    + .form__checkbox_mark::after {
    opacity: 1;
}
.contacts
    .contacts_body
    .contacts__form_wrap
    .form
    .form__input_wrap
    .form__checkbox
    input:focus-visible
    + .form__checkbox_mark {
    box-shadow: 0 0 0 3px rgba(221, 169, 255, 0.35);
}
.contacts .map_wrap {
    position: relative;
    width: 100%;
    height: 354px;
    overflow: hidden;
    background: #d0d0d0;
    border-radius: 16px;
}
.contacts .map_wrap::after {
    position: absolute;
    z-index: 500;
    inset: 0;
    background: rgba(210, 210, 210, 0.16);
    pointer-events: none;
    content: '';
}
.contacts .map_wrap .map {
    width: 100%;
    height: 100%;
    background: #d0d0d0;
}
.contacts .map_wrap .leaflet-tile-pane {
    filter: grayscale(1) saturate(0) contrast(0.78) brightness(1.03);
}
.contacts .map_wrap .leaflet-control-attribution {
    margin: 0;
    padding: 2px 5px;
    background: rgba(210, 210, 210, 0.72);
    color: #8c8c8c;
    font-size: 8px;
}
.contacts .map_wrap .leaflet-control-attribution a {
    color: inherit;
}
.contacts .map_wrap .clinic-map-marker {
    border: 0;
    background: transparent;
}
.contacts .map_wrap .clinic-map-marker__dot {
    position: relative;
    display: block;
    width: 36px;
    height: 36px;
    border: 3px solid #fff;
    border-radius: 50% 50% 50% 0;
    background: #ba67dc;
    box-shadow: 0 6px 16px rgba(23, 16, 29, 0.28);
    transform: rotate(-45deg);
}
.contacts .map_wrap .clinic-map-marker__dot::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    content: '';
    transform: translate(-50%, -50%);
}

.footer {
    padding: 72px 0 16px;
}
.footer .footer__nav_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}
.footer .footer__nav_wrap .footer__nav__item {
    display: flex;
}
.footer .footer__nav_wrap .footer__contact-column {
    display: contents;
}
.footer .footer__nav_wrap .footer_list_navigation {
    display: flex;
    gap: 180px;
}
.footer .footer__nav_wrap .footer_list_navigation .footer_nav_list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer .footer__nav_wrap .footer_list_navigation .footer_nav_list .footer_nav_item .nav_item_link {
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    transition: color 0.2s ease;
}
.footer .footer__nav_wrap .footer_list_navigation .footer_nav_list .footer_nav_item .nav_item_link:hover,
.footer .footer__nav_wrap .footer_list_navigation .footer_nav_list .footer_nav_item .nav_item_link.is-active {
    color: #b88dd2;
}
.footer .footer__nav_wrap .footer_list_social {
    display: flex;
    gap: 24px;
    align-items: center;
}
.footer .footer__nav_wrap .footer_list_connection {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer .footer__nav_wrap .footer_list_connection .phone_wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer .footer__nav_wrap .footer_list_connection .phone_wrap p {
    font-weight: 300;
    line-height: 20px;
}
.footer .footer__nav_wrap .footer_list_connection .button {
    max-width: 148px;
}
.footer .footer__nav_wrap .footer_list_connection .button span {
    color: #460665;
}
.footer .footer__nav_wrap .footer_list_connection .button img {
    width: 24px;
    height: 24px;
}
.footer .footer__logo {
    margin-bottom: 32px;
    padding: 24px 0;
}
.footer .footer_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.footer .footer_bottom .date {
    font-size: 12px;
}
.footer .footer_bottom .logo {
    width: 43px;
    height: 40px;
}
.footer .footer_bottom .autor {
    font-size: 12px;
}

.content__item_nav--fixed {
    display: none;
}

body.search-open {
    --header-search-panel-height: 42px;
}

.services_main .hero__section {
    position: relative;
    height: 100vh;
    height: 100svh;
    margin-bottom: 72px;
}
.services_main .hero__section .hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.services_main .hero__section .hero__bg picture {
    display: block;
    height: 100%;
}
.services_main .hero__section .hero__bg img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.services_main .hero__section .hero__bg::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(22, 22, 22, 0.1);
    background: linear-gradient(180deg, rgba(22, 22, 22, 0.7) 0%, rgba(57, 37, 70, 0.7) 100%);
}
.services_main .hero__section .services_container {
    display: flex;
    height: 100%;
}
.services_main .hero__section .services_container .hero__content_wrap {
    position: relative;
    z-index: 100;
    padding: 80px 0 63px;
    margin-top: auto;
    display: flex;
    flex-direction: column;

    width: 100%;
}
.services_main .hero__section .services_container .hero__content_wrap .hero__content__item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 144px;
}
.services_main .hero__section .services_container .hero__content_wrap .hero__content__item .content__item_title h2 {
    font-size: 64px;
    font-weight: 100;
    margin-bottom: 4px;
}
.services_main
    .hero__section
    .services_container
    .hero__content_wrap
    .hero__content__item
    .content__item_title
    h2
    strong {
    font-weight: 200;
}
.services_main .hero__section .services_container .hero__content_wrap .hero__content__item .content__item_text {
    max-width: 459px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.services_main .hero__section .services_container .hero__content_wrap .hero__content__item .content__item_text p {
    font-weight: 300;
    padding: 0 28px;
}
.services_main .hero__section .services_container .hero__content_wrap .content__item_nav {
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 0px;
}
.services_main .hero__section .services_container .hero__content_wrap .content__item_nav .nav_list {
    max-width: 1050px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.services_main .hero__section .services_container .hero__content_wrap .content__item_nav .nav_list .nav__link {
    border: 1px solid #dda9ff;
    border-radius: 28px;
    font-size: 14px;
    font-weight: 300;
    padding: 8px 12px;
}
.services_main .hero__section .services_container .hero__content_wrap .content__item_nav .nav__text {
    font-size: 14px;
    font-weight: 200;
}
.services_main .section_price {
    padding: 72px 0;
    width: 100%;
    scroll-margin-top: 96px;
}
.services_main .section_price .price__content {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}
.services_main .section_price .price__content .content_item {
    max-width: 380px;
    width: 100%;
}
.services_main .section_price .price__content .content_item h2 {
    font-size: 48px;
    font-weight: 100;
    margin-bottom: 40px;
}
.services_main .section_price .price__content .content_item h2 strong {
    font-weight: 300;
}
.services_main .section_price .price__content .content_item .content__text {
    display: flex;
    gap: 13px;
}
.services_main .section_price .price__content .content_item .content__text p {
    font-size: 14px;
    font-weight: 300;
    width: 100%;
}
.services_main .section_price .price__content .content_item_img {
    max-width: 824px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    height: 461px;
}
.services_main .section_price .price__content .content_item_img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.services_main .section_price .price__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.services_main .section_price .price__list .price__item {
    width: calc(50% - 40px);
    display: flex;
    justify-content: space-between;
    padding: 20px 16px;
    align-items: center;
    gap: 32px;
    min-height: 72px;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
}
.services_main .section_price .price__list .price__item .price__name {
    font-weight: 300;
    line-height: 20px;
}
.services_main .section_price .price__list .price__item .price {
    padding: 8px;
    border-radius: 16px;
    max-width: 100px;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    min-width: 100px;
    display: flex;
    justify-content: center;
}
.services_main .section_price .price__btn {
    display: none;
    gap: 8px;
    align-items: center;
    padding: 10px 12px;
    margin-left: auto;
    cursor: pointer;
    transition: opacity 0.25s ease;
}
.services_main .section_price .price__btn span {
    font-size: 14px;
    font-weight: 400;
}
.services_main .section_price .price__btn img {
    width: 20px;
    height: 20px;
    transition: transform 0.35s ease;
}

.result__main .hero__section {
    position: relative;
    height: 100vh;
    height: 100svh;
    margin-bottom: 72px;
}
.result__main .hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.result__main .hero__bg picture {
    display: block;
    height: 100%;
}
.result__main .hero__bg img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.result__main .hero__bg::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(22, 22, 22, 0.1);
    background: linear-gradient(180deg, rgba(22, 22, 22, 0.7) 0%, rgba(57, 37, 70, 0.7) 100%);
}
.result__main .result_container {
    display: flex;
    height: 100%;
}
.result__main .result_container .hero__content_wrap {
    position: relative;
    z-index: 100;
    padding: 80px 0 63px;
    margin-top: auto;
    display: flex;
    flex-direction: column;

    width: 100%;
}
.result__main .result_container .hero__content_wrap .hero__content__item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 144px;
}
.result__main .result_container .hero__content_wrap .hero__content__item .content__item_title h2 {
    font-size: 64px;
    font-weight: 100;
    margin-bottom: 4px;
}
.result__main .result_container .hero__content_wrap .hero__content__item .content__item_title h2 strong {
    font-weight: 200;
}
.result__main .result_container .hero__content_wrap .hero__content__item .content__item_text {
    max-width: 459px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.result__main .result_container .hero__content_wrap .hero__content__item .content__item_text p {
    font-weight: 300;
    padding: 0 28px;
}
.result__main .result_container .hero__content_wrap .content__item_nav {
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 0%;
}
.result__main .result_container .hero__content_wrap .content__item_nav .nav_list {
    max-width: 610px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.result__main .result_container .hero__content_wrap .content__item_nav .nav_list .nav__link {
    border: 1px solid #dda9ff;
    border-radius: 28px;
    font-size: 14px;
    font-weight: 300;
    padding: 8px 12px;
}
.result__main .result_container .hero__content_wrap .content__item_nav .nav__text {
    font-size: 14px;
    font-weight: 200;
}
.result__main .result_list_section {
    padding: 72px 0;
    scroll-margin-top: 96px;
}
.result__main .result_list_section .result__title {
    font-weight: 200;
    font-size: 48px;
    margin-bottom: 8px;
}
.result__main .result_list_section .result__text {
    max-width: 624px;
    width: 100%;
    margin-bottom: 40px;
}
.result__main .result_list_section .result__text p {
    font-size: 14px;
    font-weight: 300;
}
.result__main .result_list_section .result__list {
    display: flex;
    gap: 24px;
    align-items: center;
}
.result__main .result_list_section .result__list .result__item {
    position: relative;
    display: block;
    width: calc(33.33% - 24px);
    height: 288px;
    border-radius: 16px;
    overflow: hidden;
}
.result__main .result_list_section .result__list .result__item .item_bg {
    height: 100%;
}
.result__main .result_list_section .result__list .result__item .item_bg picture {
    display: block;
    height: 100%;
}
.result__main .result_list_section .result__list .result__item .item_bg img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}
.result__main .result_list_section .result__list .result__item .item__content {
    position: absolute;
    left: 0;
    padding: 16px;
    bottom: 0;
    width: 100%;
    z-index: 100;
    background: #171717;
    background: linear-gradient(0deg, rgb(23, 23, 23) 0%, rgba(23, 23, 23, 0) 100%);
}
.result__main .result_list_section .result__list .result__item .item__content .content__title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
}
.result__main .result_list_section .result__list .result__item .item__content .item__content_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.result__main .result_list_section .result__list .result__item .item__content .item__content_info .info_list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.result__main .result_list_section .result__list .result__item .item__content .item__content_info .info_list span {
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    height: 32px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border-radius: 16px;
}
.result__main .result_list_section .result__list .result__item .item__content .item__content_info .info__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 36px;
    max-width: 129px;
    font-size: 14px;
    width: 100%;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.result__main .result_list_section .result__list .result__item .item__content .item__content_info .info__link span {
    font-size: 14px;
    font-weight: 500;
}
.result__main .result_list_section .result__list .result__item .item__content .item__content_info .info__link img {
    width: 24px;
    height: 24px;
}

.service-page_main .hero_section {
    padding: 145px 0 168px;
    margin-top: 80px;
    position: relative;
}
.service-page_main .hero_section::before {
    content: '';
    display: block;
    width: 100%;
    max-width: 1368px;
    height: 1px;
    background-color: rgba(221, 169, 255, 0.1);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 72px;
}
.service-page_main .hero_section .hero_section_tilte_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 694px;
    width: 100%;
    margin: 0 auto 96px;
}
.service-page_main .hero_section .hero_section_tilte_wrap h2 {
    font-weight: 100;
    font-size: 64px;
}
.service-page_main .hero_section .hero_section_tilte_wrap h2 strong {
    font-weight: 200;
}
.service-page_main .hero_section .hero_section_tilte_wrap .contant_wrap {
    display: flex;
    gap: 16px;
}
.service-page_main .hero_section .hero_section_tilte_wrap .contant_wrap p {
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    width: 100%;
}
.service-page_main .hero_section .hero_services_list {
    display: flex;
    gap: 72px;
    margin-bottom: 96px;
    flex-wrap: wrap;
}
.service-page_main .hero_section .hero_services_list .services_item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 288px;
    flex: 0 0 auto;
    width: calc((100% - 216px) / 4);
}
.service-page_main .hero_section .hero_services_list .services_item ._item_title {
    padding: 0 0 16px;
    border-bottom: 1px solid rgba(221, 169, 255, 0.5);
}
.service-page_main .hero_section .hero_services_list .services_item ._item_text_wrap p {
    font-size: 36px;
    font-weight: 300;
}
.service-page_main .hero_section .hero_section_slick {
    overflow: hidden;
}
.service-page_main .hero_section .hero_section_slick .content {
    width: min(100% - 48px, 1368px);
    margin: 0 auto;
}
.service-page_main .hero_section .hero_section_slick [data-hero-service-slider]:not(.slick-initialized) {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}
.service-page_main .hero_section .hero_section_slick .slick-list {
    margin: 0 -12px;
}
.service-page_main .hero_section .hero_section_slick .slick-slide {
    padding: 0 12px;
}
.service-page_main .hero_section .hero_section_slick .slick-initialized .img_wrap {
    max-width: none;
}
.service-page_main .hero_section .hero_section_slick .img_wrap {
    overflow: hidden;
    max-width: 394px;
    width: 100%;
    aspect-ratio: 394/216;
    border-radius: 8px;
}
.service-page_main .hero_section .hero_section_slick .img_wrap img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.service-page_main .hero_section .hero_section_slick .hero-section-slider-controls {
    width: min(100% - 48px, 1368px);
    margin: 32px auto 0;
}
.service-page_main .section__problem {
    padding: 72px 0 128px;
    position: relative;
}
.service-page_main .section__problem::before {
    content: '';
    display: block;
    width: 100%;
    max-width: 1368px;
    height: 1px;
    background-color: rgba(221, 169, 255, 0.1);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 72px;
}
.service-page_main .section__problem .problem__title {
    font-weight: 100;
    font-size: 48px;
    text-align: center;
    margin-bottom: 56px;
}
.service-page_main .section__problem .problem__title strong {
    font-weight: 200;
}
.service-page_main .section__problem .problem__list {
    display: flex;
    gap: 32px;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.service-page_main .section__problem .problem__list .problem__item {
    max-width: 318px;
    width: calc((100% - 96px) / 4);
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service-page_main .section__problem .problem__list .problem__item .item_num {
    margin-bottom: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 25, 0.1);
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
}
.service-page_main .section__problem .problem__list .problem__item .item__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 8px;
    text-align: center;
}
.service-page_main .section__problem .problem__list .problem__item .item__text {
    font-weight: 300;
    line-height: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}
.service-page_main .section__problem .problem_content {
    max-width: 904px;
    width: 100%;
    margin: 0 auto 56px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.service-page_main .section__problem .problem_content p {
    font-size: 14px;
    font-weight: 300;
    width: 100%;
}
.service-page_main .section__problem .problem_example_list {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    max-width: 904px;
    width: 100%;
    margin: 0 auto;
}
.service-page_main .section__problem .problem_example_list .problem_example_item {
    border-radius: 8px;
    overflow: hidden;
}
.service-page_main .section__problem .problem_example_list .problem_example_item img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.service-page_main .sectioni__diagnostics {
    padding: 72px 0 128px;
    position: relative;
}
.service-page_main .sectioni__diagnostics::before {
    content: '';
    display: block;
    width: 100%;
    max-width: 1368px;
    height: 1px;
    background-color: rgba(221, 169, 255, 0.1);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 72px;
}
.service-page_main .sectioni__diagnostics .diagnostics__title {
    font-weight: 100;
    font-size: 48px;
    line-height: 52px;
    margin-bottom: 56px;
    text-align: center;
}
.service-page_main .sectioni__diagnostics .diagnostics__title strong {
    font-weight: 200;
}
.service-page_main .sectioni__diagnostics .diagnostics__list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 904px;
    width: 100%;
    margin: 0 auto 56px;
}
.service-page_main .sectioni__diagnostics .diagnostics__list .diagnostics__item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}
.service-page_main .sectioni__diagnostics .diagnostics__list .diagnostics__item .diagnostics__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
.service-page_main .sectioni__diagnostics .diagnostics__list .diagnostics__item .diagnostics__content .title {
    font-size: 32px;
    font-weight: 200;
    line-height: 36px;
}
.service-page_main .sectioni__diagnostics .diagnostics__list .diagnostics__item .diagnostics__content .text {
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
}
.service-page_main .sectioni__diagnostics .diagnostics_img_list {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.service-page_main .sectioni__diagnostics .diagnostics_img_list .diagnostics_img_item {
    max-width: 290px;
    width: calc((100% - 32px) / 3);
    flex: 0 0 auto;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
}
.service-page_main .sectioni__diagnostics .diagnostics_img_list .diagnostics_img_item img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.service-page_main .section_plan {
    padding: 72px 0 128px;
    position: relative;
}
.service-page_main .section_plan::before {
    content: '';
    display: block;
    width: 100%;
    max-width: 1368px;
    height: 1px;
    background-color: rgba(221, 169, 255, 0.1);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 72px;
}
.service-page_main .section_plan .plan__title {
    font-weight: 100;
    font-size: 48px;
    line-height: 52px;
    margin-bottom: 56px;
    text-align: center;
}
.service-page_main .section_plan .plan__title strong {
    font-weight: 200;
}
.service-page_main .section_plan .stage__list {
    display: flex;
    gap: 32px;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.service-page_main .section_plan .stage__list .stage__item {
    max-width: 434px;
    width: calc((100% - 64px) / 3);
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}
.service-page_main .section_plan .stage__list .stage__item .stage__num {
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-page_main .section_plan .stage__list .stage__item .stage__title {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
}
.service-page_main .section_plan .stage__list .stage__item .stage__text {
    text-align: center;
    font-weight: 300;
    line-height: 20px;
}
.service-page_main .section_plan .plan__list {
    max-width: 904px;
    width: 100%;
    margin: 0 auto 56px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.service-page_main .section_plan .plan__list .plan__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.service-page_main .section_plan .plan__list .plan__item .item__content {
    width: 100%;
}
.service-page_main .section_plan .plan__list .plan__item .item__content .title {
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 200;
    line-height: 36px;
}
.service-page_main .section_plan .plan__list .plan__item .item__content .text {
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 300;
    line-height: 20px;
}
.service-page_main .section_plan .comparison_wrap {
    max-width: 721px;
    width: 100%;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
}
.service-page_main .section_plan .cocoen-drag {
    background: #dda9ff;
}
.service-page_main .section_plan .cocoen-drag::before {
    border: none;
    content: '<';
    color: #e4e4e4;
    background: #dda9ff;
    display: flex;
    height: 20px;
    left: 0%;
    font-size: 12px;
    font-weight: 500;
    margin-left: -14px;
    margin-top: 0;
    transform: translateY(-50%);
    border-radius: 8px 0 0 8px;
    position: absolute;
    top: 50%;
    width: 14px;
    justify-content: center;
    align-items: center;
}
.service-page_main .section_plan .cocoen-drag::after {
    border: none;
    content: '>';
    color: #e4e4e4;
    background: #dda9ff;
    display: flex;
    height: 20px;
    right: 0%;
    font-size: 12px;
    font-weight: 500;
    margin-right: -14px;
    margin-top: 0;
    transform: translateY(-50%);
    border-radius: 0 8px 8px 0;
    position: absolute;
    top: 50%;
    width: 14px;
    justify-content: center;
    align-items: center;
}
.service-page_main .section_plan .plan_img_list {
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
}
.service-page_main .section_plan .list_1 {
    margin-bottom: 56px;
}
.service-page_main .section_plan .list_1 .plan_img_item {
    max-width: 444px;
    width: calc((100% - 16px) / 2);
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
}
.service-page_main .section_plan .list_1 .plan_img_item img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.service-page_main .section_plan .list_2 .plan_img_item {
    max-width: 390px;
    width: calc((100% - 32px) / 3);
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
}
.service-page_main .section_plan .list_2 .plan_img_item img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.service-page_main .result__section {
    padding: 72px 0;
    margin-top: 0;
}
.service-page_main .result__section::before {
    display: none;
}
.service-page_main .result__section .hero_section_tilte_wrap {
    margin: 0 auto 56px;
}
.service-page_main .result__section .hero_section_tilte_wrap h2 {
    font-size: 48px;
}
.service-page_main .result__section .hero_services_list {
    margin-bottom: 56px;
}
.service-page_main .result__section .result__list {
    max-width: 904px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.service-page_main .result__section .result__list .result__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 26px 16px;
    gap: 32px;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
}

.service-page_main .result__section .result__list .result__item:last-child .price {
    background: #dda9ff66;
}
.service-page_main .result__section .result__list .result__item .text {
    font-weight: 300;
    line-height: 20px;
}
.service-page_main .result__section .result__list .result__item .price {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    max-width: 88px;
    height: 32px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    width: 100%;
}

.service-page_main #contacts,
.service-page_main #appointment,
.service-page_main #clinic-address {
    scroll-margin-top: 104px;
}

.about_main .hero__section {
    position: relative;
    height: 100svh;
}
.about_main .hero__section .hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.about_main .hero__section .hero__bg picture {
    display: block;
    height: 100%;
}
.about_main .hero__section .hero__bg img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.about_main .hero__section .hero__bg::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #161616;
    background: linear-gradient(190deg, rgba(22, 22, 22, 0.7) 0%, rgb(34, 25, 38) 100%);
}
.about_main .hero__section .about_container {
    display: flex;
    height: 100%;
    position: relative;
    padding: 0px 16px;
}
.about_main .hero__section .about_container .hero__content_wrap {
    position: relative;
    z-index: 100;
    padding: 80px 0 72px;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 144px;
    width: 100%;
}
.about_main .hero__section .about_container .hero__content_wrap .hero__content__item {
    display: flex;
    justify-content: space-between;
}
.about_main .hero__section .about_container .hero__content_wrap .hero__content__item .content__item_title h2 {
    font-size: 64px;
    font-weight: 100;
    margin-bottom: 24px;
}
.about_main .hero__section .about_container .hero__content_wrap .hero__content__item .content__item_title h2 strong {
    font-weight: 200;
}
.about_main
    .hero__section
    .about_container
    .hero__content_wrap
    .hero__content__item
    .content__item_title
    .about_hero_link_wrap {
    display: flex;
    align-items: center;
    gap: 55px;
}
.about_main
    .hero__section
    .about_container
    .hero__content_wrap
    .hero__content__item
    .content__item_title
    .about_hero_link_wrap
    .about_hero__socials {
    display: flex;
    gap: 50px;
    align-items: center;
}
.about_main .hero__section .about_container .hero__content_wrap .content__item_nav {
    align-items: flex-end;
    justify-content: space-between;
}
.about_main .hero__section .about_container .hero__content_wrap .content__item_nav .nav_list {
    max-width: 610px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.about_main .hero__section .about_container .hero__content_wrap .content__item_nav .nav_list .nav__link {
    border: 1px solid #dda9ff;
    border-radius: 28px;
    font-size: 14px;
    font-weight: 300;
    padding: 8px 12px;
}
.about_main .hero__section .about_container .hero__content_wrap .content__item_nav .nav__text {
    font-size: 14px;
    font-weight: 200;
}
.about_main .hero__section .about_container .content__item_text {
    max-width: 459px;
    position: absolute;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    top: 280px;
}
.about_main .hero__section .about_container .content__item_text p {
    font-weight: 300;
    padding: 0 28px;
}
.about_main .summary_section {
    padding: 72px 0;
}
.about_main .summary_section .summary__list {
    display: flex;
    align-items: stretch;
    gap: 72px;
    width: 100%;
    margin-bottom: 72px;
}
.about_main .summary_section .summary__list .summary__item {
    display: flex;
    flex-direction: column;
    max-width: 288px;
    width: calc((100% - 288px) / 4);
}
.about_main .summary_section .summary__list .summary__item .item_header {
    flex: 1 1 auto;
    font-weight: 300;
    padding: 0 0 16px;
    line-height: 20px;
    border-bottom: 1px solid #dda9ff;
}
.about_main .summary_section .summary__list .summary__item .number {
    padding: 16px 0 0;
    font-size: 96px;
    font-weight: 500;
    line-height: 132px;
}
.about_main .summary_section .summary_info {
    max-width: 648px;
    width: 100%;
    margin-left: auto;
}
.about_main .summary_section .summary_info p {
    font-size: 28px;
    font-weight: 200;
    line-height: 32px;
}
.about_main .about__banner {
    width: 100%;
    overflow: hidden;
    padding: 72px 0;
}
.about_main .about__banner-track {
    width: -moz-max-content;
    width: max-content;
}
.about_main .about__banner img {
    width: max(200vw, 1800px);
    max-width: none;
    height: auto;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.about_main .section__approach .approach__title {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    align-items: end;
    margin-bottom: 64px;
}
.about_main .section__approach .approach__title .title_before {
    display: flex;
    align-items: center;
    gap: 8px;
}
.about_main .section__approach .approach__title .title_before span {
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
}
.about_main .section__approach .approach__title h2 {
    font-weight: 100;
    font-size: 48px;
}
.about_main .section__approach .approach__title h2 strong {
    font-weight: 300;
}
.about_main .section__approach .approach__list {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
    flex-wrap: wrap;
    align-items: stretch;
}
.about_main .section__approach .approach__list .approach__item {
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px;
    max-width: 318px;
    width: calc((100% - 96px) / 4);
}
.about_main .section__approach .approach__list .approach__item .item__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.about_main .section__approach .approach__list .approach__item .item__icon img {
    width: 28px;
    height: 28px;
}
.about_main .section__approach .approach__list .approach__item .item__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 12px;
}
.about_main .section__approach .approach__list .approach__item .item__text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 20px;
}

.diagnostics {
    padding: 72px 0;
    background: rgba(23, 23, 23, 0.502);
}
.diagnostics .diagnostics_header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 24px;
}
.diagnostics .diagnostics_header h2 {
    font-size: 48px;
    font-weight: 100;
    max-width: 678px;
    width: 100%;
}
.diagnostics .diagnostics_header h2 strong {
    font-weight: 300;
}
.diagnostics .diagnostics_header .diagnostics_header_text {
    max-width: 499px;
    width: 100%;
    display: flex;
    align-items: start;
    gap: 16px;
}
.diagnostics .diagnostics_header .diagnostics_header_text p {
    line-height: 20px;
    width: 100%;
}
.diagnostics .diagnostics_body {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
}
.diagnostics .diagnostics_body .body__list {
    max-width: 435px;
    width: 100%;
    flex: 0 1 435px;
    display: flex;
    flex-direction: column;
}
.diagnostics .diagnostics_body .body__list .body__item {
    display: flex;
    align-items: start;
    gap: 24px;
    padding: 20px 0;
}
.diagnostics .diagnostics_body .body__list .body__item .item_icon {
    max-width: 48px;
    width: 100%;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.diagnostics .diagnostics_body .body__list .body__item .item_icon img {
    width: 28px;
    height: 28px;
}
.diagnostics .diagnostics_body .body__list .body__item .item__text .__title {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
}
.diagnostics .diagnostics_body .body__list .body__item .item__text .__text {
    line-height: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}
.diagnostics .diagnostics_body .body__img {
    display: flex;
    gap: 20px;
    flex: 1 1 0;
    justify-content: flex-end;
    min-width: 0;
}
.diagnostics .diagnostics_body .body__img img {
    border-radius: 16px;
    display: block;
    flex: 1 1 0;
    min-width: 0;
    height: 473px;
    max-width: 398px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.home_main .microscope__slider .whitening {
    padding: 0px;
}

.home_main .microscope__slider .planning {
    padding: 0px;
}

.home_main .microscope__slider .planning .planning_box .planning__header {
    margin-bottom: 41px;
}

.home_main .microscope__slider .planning .planning_box .planning__list {
    margin-bottom: 41px;
}

.whitening {
    padding: 72px 0;
    background: rgba(23, 23, 23, 0.502);
}
.whitening .whitening_box {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 32px;
    width: 100%;
    height: 100%;
}
.whitening .whitening_box .whitening_item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc((100% - 64px) / 3);
    height: 100%;
    min-height: 676px;
    gap: 60px;
}
.whitening .whitening_box .whitening_item h2 {
    font-size: 48px;
    font-weight: 100;
    line-height: 100%;
}
.whitening .whitening_box .whitening_item h2 strong {
    font-weight: 300;
}
.whitening .whitening_box .whitening_item .whitening_item_list {
    display: flex;
    flex-direction: column;
}
.whitening .whitening_box .whitening_item .whitening_item_list .whitening_item_item {
    display: flex;
    gap: 24px;
    padding: 20px 0;
}
.whitening .whitening_box .whitening_item .whitening_item_list .whitening_item_item .item_list_icon {
    max-width: 48px;
    width: 100%;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.whitening .whitening_box .whitening_item .whitening_item_list .whitening_item_item .item_list_icon img {
    width: 28px;
    height: 28px;
}
.whitening .whitening_box .whitening_item .whitening_item_list .whitening_item_item .item_list_content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.whitening .whitening_box .whitening_item .whitening_item_list .whitening_item_item .item_list_content .__title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
}
.whitening .whitening_box .whitening_item .whitening_item_list .whitening_item_item .item_list_content .__text {
    font-weight: 300;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.7);
}
.whitening .whitening_box .whitening_item .item__content_header .dote__style {
    margin-bottom: 16px;
}
.whitening .whitening_box .whitening_item .item__content_header p {
    line-height: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}
.whitening .whitening_box .whitening_item .item__content_footer {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    padding: 16px;
    display: flex;
    gap: 24px;
    align-items: center;
}
.whitening .whitening_box .whitening_item .item__content_footer .content_footer_img {
    max-width: 167px;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
}
.whitening .whitening_box .whitening_item .item__content_footer .content_footer_img img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}
.whitening .whitening_box .whitening_item .item__content_footer .content_footer_text {
    display: flex;
    flex-direction: column;
}
.whitening .whitening_box .whitening_item .item__content_footer .content_footer_text .__tilte {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 12px;
}
.whitening .whitening_box .whitening_item .item__content_footer .content_footer_text .__text {
    font-weight: 300;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.7);
}
.whitening .whitening_box .item_img_wrap {
    position: relative;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}
.whitening .whitening_box .item_img_wrap::after {
    content: '';
    display: block;
    width: 100%;
    position: absolute;
    height: 100%;
    background: rgba(22, 22, 22, 0.1019607843);
    background: linear-gradient(180deg, rgba(22, 22, 22, 0.1) 60%, rgba(57, 37, 70, 0.4) 100%);
    top: 0;
    left: 0;
}
.whitening .whitening_box .item_img_wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}

.planning {
    padding: 72px 0;
    background: rgba(23, 23, 23, 0.502);
}
.planning .planning_box .planning__header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 75px;
}
.planning .planning_box .planning__header h2 {
    max-width: 585px;
    width: 100%;
    font-weight: 100;
    font-size: 48px;
}
.planning .planning_box .planning__header h2 strong {
    font-weight: 400;
}
.planning .planning_box .planning__header .header__text {
    display: flex;
    gap: 16px;
    align-items: start;
    max-width: 585px;
    width: 100%;
}
.planning .planning_box .planning__header .header__text p {
    line-height: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    width: 100%;
}
.planning .planning_box .planning__list {
    display: flex;
    gap: 32px;
    margin-bottom: 75px;
    flex-wrap: wrap;
}
.planning .planning_box .planning__list .planning__item {
    max-width: 434px;
    width: 100%;
    flex: 1 0 360px;
    display: flex;
    gap: 24px;
    padding: 20px 0;
}
.planning .planning_box .planning__list .planning__item .item__icon {
    max-width: 48px;
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.planning .planning_box .planning__list .planning__item .item__icon img {
    width: 24px;
    height: 24px;
}
.planning .planning_box .planning__list .planning__item .item__text .__title {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 500;
    line-height: 24px;
}
.planning .planning_box .planning__list .planning__item .item__text .__text {
    line-height: 20px;
    color: rgba(255, 255, 255, 0.7);
}
.planning .planning_box .planning__img_list {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.planning .planning_box .planning__img_list .planning__img_item {
    width: calc((100% - 96px) / 4);
    max-width: 318px;

    height: 258px;
    border-radius: 16px;
    overflow: hidden;
    background: #eed4ff;
    background: linear-gradient(90deg, rgb(238, 212, 255) 0%, rgb(221, 169, 255) 100%);
}
.planning .planning_box .planning__img_list .planning__img_item .item__text {
    padding: clamp(12px, 12px + 20 * (100vw - 980px) / 532, 64px);
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}
.planning .planning_box .planning__img_list .planning__img_item .item__text .__number {
    color: #460665;
    font-size: clamp(40px, 40px + 24 * (100vw - 980px) / 532, 64px);
    line-height: 40px;
    font-weight: 400;
}
.planning .planning_box .planning__img_list .planning__img_item .item__text .__text {
    font-weight: 400;
    line-height: 20px;
    color: rgba(70, 6, 101, 0.6);
}
.planning .planning_box .planning__img_list .planning__img_item img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.contact_main {
    padding: 72px 0 0;
}
.contact_main h2 {
    font-size: clamp(36px, 36px + 92 * (100vw - 768px) / 744, 128px);
    margin-bottom: 72px;
}
.contact_main h2 strong {
    font-weight: 200;
}
.contact_main .contacts_body {
    align-items: end;
}
.contact_main .contacts_body .contacts__item {
    padding: 0 0 32px;
}

.about_main .microscope .microscope__slick_item {
    align-items: stretch;
}
.about_main .microscope .microscope__media {
    align-self: stretch;
    height: auto;
    max-height: none;
}
.about_main .microscope .microscope__media img {
    display: block;
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
}

@media screen and (max-width: 1240px) {
    .about_main .section__approach .approach__list .approach__item {
        width: calc((100% - 64px) / 3);
        max-width: 374px;
    }
}

@media screen and (max-width: 1180px) {
    .hero {
        min-height: 820px;
        padding: 56px 0;
        margin-top: 80px;
    }
    .hero__inner {
        min-height: 650px;
    }
    .hero__copy h1 {
        font-size: clamp(44px, 5.4vw, 58px);
    }
    .hero__visual {
        top: 19%;
        width: min(48vw, 520px);
    }
    .hero__caption {
        right: 7%;
        font-size: clamp(44px, 5vw, 58px);
    }
    .hero__socials {
        gap: 28px;
    }

    .stats__inner {
        gap: clamp(88px, 10vw, 128px);
    }
    .stats .stats__inner__item {
        gap: clamp(56px, 8vw, 112px);
    }
    .stat__number {
        font-size: clamp(96px, 12vw, 144px);
    }

    .services__content {
        gap: clamp(32px, 4vw, 52px);
    }
    .services .heading__title h2 {
        font-size: clamp(40px, 4.2vw, 48px);
    }
    .service-accordion__trigger .service-accordion__title_wrap .service-accordion__title {
        font-size: clamp(24px, 2.5vw, 30px);
    }
    .service-accordion__trigger .service-accordion__title_wrap .service-accordion__text {
        font-size: 14px;
    }

    .reviews .section-heading--row h2 {
        font-size: clamp(40px, 4.2vw, 48px);
    }
    .reviews .section-heading--row .link_wrap p {
        font-size: clamp(20px, 2.2vw, 24px);
    }
    .reviews .slick__contant .slick_img_wrap {
        width: clamp(250px, 25vw, 287px);
        height: auto;
        aspect-ratio: 287/502;
    }
    .reviews .slick__contant .slick-slide {
        width: clamp(250px, 25vw, 287px);
        flex-basis: clamp(250px, 25vw, 287px);
    }

    .team .team__header .team__title {
        gap: 32px;
    }
    .team .team__header .team__title h2 {
        font-size: clamp(40px, 4.2vw, 48px);
        line-height: 1.08;
    }
    .team .team__slider .slick-slide {
        width: clamp(260px, 27vw, 305px);
    }
    .team .team__slider .team__slider_item {
        height: auto;
        aspect-ratio: 305/431;
    }

    .technology__inner {
        min-height: 900px;
    }
    .technology__inner .technology__list .__item_1 {
        top: 80px;
        left: 4%;
        width: 140px;
        height: 140px;
    }
    .technology__inner .technology__list .__item_2 {
        top: 132px;
        left: 31%;
        width: 154px;
        height: 95px;
    }
    .technology__inner .technology__list .__item_3 {
        top: 104px;
        right: 27%;
        width: 142px;
        height: 142px;
    }
    .technology__inner .technology__list .__item_4 {
        top: 62px;
        right: 1%;
        width: 94px;
        height: 154px;
    }
    .technology__inner .technology__list .__item_5 {
        top: 328px;
        right: 10%;
        width: 94px;
        height: 94px;
    }
    .technology__inner .technology__list .__item_6 {
        right: 2%;
        bottom: 218px;
        width: 142px;
        height: 142px;
    }
    .technology__inner .technology__list .__item_7 {
        right: 23%;
        bottom: 58px;
        width: 94px;
        height: 94px;
    }
    .technology__inner .technology__list .__item_8 {
        right: 39%;
        bottom: 168px;
        width: 142px;
        height: 142px;
    }
    .technology__inner .technology__list .__item_9 {
        bottom: 164px;
        left: 15%;
        width: 94px;
        height: 94px;
    }
    .technology__inner .technology__list .__item_10 {
        bottom: 294px;
        left: 0;
        width: 104px;
        height: 180px;
    }
    .technology__inner h2 {
        font-size: clamp(40px, 4.4vw, 48px);
    }

    .microscope .microscope__slick_item .microscope__media {
        max-width: 44%;
    }
    .microscope__copy h2 {
        font-size: clamp(38px, 4vw, 48px);
    }
    .microscope__copy .microscope__copy_info {
        gap: clamp(32px, 4vw, 56px);
    }

    .contacts .contacts_body {
        align-items: flex-start;
        gap: clamp(48px, 7vw, 80px);
    }
    .contacts .contacts_body .contacts__item h2 {
        font-size: clamp(44px, 4.8vw, 56px);
    }
    .contacts .contacts_body .contacts__form_wrap {
        width: 100%;
    }

    .footer .footer__nav_wrap {
        display: flex;
        flex-wrap: wrap;
        gap: 36px 48px;
    }
    .footer .footer__nav_wrap .footer_list_navigation {
        flex: 1 1 620px;
        gap: clamp(48px, 8vw, 112px);
    }
    .footer .footer__nav_wrap .footer__contact-column {
        display: flex;
        flex: 0 1 auto;
        align-items: flex-start;
        gap: 36px;
    }
}

@media screen and (max-width: 980px) {
    .header__inner {
        position: relative;
        z-index: 30;
    }
    .header__search-panel {
        z-index: 1;
        top: var(--header-height);
        padding-top: 0;
    }
    .header .nav {
        position: fixed;
        z-index: -1;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-start;
        gap: 4px;
        padding: calc(var(--header-height) + 32px) 24px 40px;
        overflow-y: auto;
        background: #161616;
        background: linear-gradient(190deg, rgb(22, 22, 22) 0%, rgb(57, 37, 70) 100%);
        opacity: 0;
        pointer-events: none;
        transform: translateX(-100%);
        visibility: hidden;
        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;
    }
    .header .nav a {
        width: 100%;
        padding: 12px 0;
        border-radius: 0;
        font-size: 14px;
        line-height: 18px;
        text-align: left;
    }

    .header .nav.is-open {
        z-index: -1;
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
        visibility: visible;
    }
    .menu-toggle {
        position: relative;
        z-index: 22;
        display: flex;
        gap: 3px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }
    .menu-toggle span {
        width: 24px;
        height: 2px;
        border-radius: 2px;
        background: #fff;
        transform-origin: center;
        transition:
            width 0.2s ease,
            opacity 0.2s ease,
            transform 0.2s ease;
    }
    .menu-toggle.is-open span {
        width: 24px;
    }
    .menu-toggle.is-open span:first-child {
        transform: translateY(4px) rotate(45deg);
    }
    .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .menu-toggle:focus-visible {
        outline: 2px solid #dda9ff;
        outline-offset: 2px;
    }
    .case .case_slick_wrap .case_slick_item .case-item-heading {
        align-items: start;
    }
    .case .case_slick_wrap .case_slick_item .case-item-box {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        column-gap: 24px;
        row-gap: 24px;
    }
    .case .case_slick_wrap .case_slick_item .case-item-heading .case-item-box .case_slick_tilte {
        order: 1;
        flex: 0 1 auto;
    }
    .case .case_slick_wrap .case_slick_item .case-item-box .case-item_link {
        order: 2;
        align-self: center;
        margin-left: auto;
    }
    .case .case_slick_wrap .case_slick_item .case-item-heading .case_slick_tilte h2 {
        font-size: 28px !important;
        line-height: 32px;
    }
    .case .case_slick_wrap .case_slick_item .case-item-heading .case-item-box .case_slick_setting_list {
        order: 3;
        flex: 0 0 100%;
    }
    .case .case_slick_wrap .case_slick_item .case__content_wrap {
        flex-direction: column-reverse;
    }
    .case .case_slick_wrap .case_slick_item .case__content_wrap .case__content_item {
        max-width: 100% !important;
    }
    .case .case_slick_wrap .case_slick_item .case__content_wrap .case__content_item .case__content_footer_text {
        text-align: center;
    }
    .case .case_slick_wrap .case_slick_item .case__footer_list {
        flex-direction: column;
    }
    .case .case_slick_wrap .case_slick_item .case__footer_list .footer_item {
        width: 100% !important;
        padding: 12px 0px;
        border-left: none;
        min-height: 100%;
    }

    .services_main .hero__section .services_container .hero__content_wrap .hero__content__item {
        flex-direction: column;
        margin-bottom: 48px;
    }
    .services_main .hero__section .services_container .hero__content_wrap .content__item_nav {
        margin-bottom: 0;
    }
    .services_main .hero__section .services_container .hero__content_wrap {
        justify-content: flex-end;
    }
    .services_main .hero__section .services_container .hero__content_wrap .content__item_nav {
        display: flex;
        gap: 16px;
        align-items: flex-start;
        width: 100%;
        margin-top: 0;
    }
    .services_main .hero__section .services_container .hero__content_wrap .content__item_nav .nav_list {
        max-width: 100%;
        flex-wrap: nowrap;
        gap: 8px;
        overflow: auto hidden;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
    }
    .services_main
        .hero__section
        .services_container
        .hero__content_wrap
        .content__item_nav
        .nav_list::-webkit-scrollbar {
        display: none;
    }
    .services_main .hero__section .services_container .hero__content_wrap .content__item_nav .nav__link {
        flex: 0 0 auto;
        white-space: nowrap;
    }
    .services_main .hero__section .services_container .hero__content_wrap .content__item_nav .nav__text {
        opacity: 0.7;
    }
    .services_main .hero__section .services_container .hero__content_wrap .hero__content__item .content__item_title h2 {
        margin-bottom: 16px;
    }
    .services_main .hero__section .services_container .hero__content_wrap .hero__content__item .content__item_title {
        margin-bottom: 32px;
    }
    .services_main .hero__section .services_container .hero__content_wrap .hero__content__item .content__item_text {
        gap: 16px;
    }
    .services_main .hero__section .services_container .hero__content_wrap .hero__content__item .content__item_text p {
        padding: 0;
    }
    .services_main .hero__section .services_container .hero__content_wrap {
        padding: 120px 0 40px;
        margin-top: 0;
    }
    .services_main .hero__section {
        height: auto;
        min-height: 100vh;
        min-height: 100svh;
    }
    .services_main .hero__section .services_container {
        min-height: 100vh;
        min-height: 100svh;
    }
    .services_main .section_price .price__content {
        flex-direction: column;
    }
    .services_main .section_price .price__content .content_item:not(.content_item_img) {
        display: contents;
    }
    .services_main .section_price .price__content .content_item h2 {
        width: 100%;
        max-width: 380px;
        margin-bottom: 0;
        order: 1;
    }
    .services_main .section_price .price__content .content_item .content__text {
        width: 100%;
        max-width: 100%;
        order: 3;
        flex-direction: column;
        gap: 8px;
    }
    .services_main .section_price .price__content .content_item_img {
        order: 2;
    }
    .services_main .section_price .price__list {
        flex-direction: column;
    }
    .services_main .section_price .price__list .price__item {
        width: 100%;
    }
    .services_main .section_price .price__list .price__item.is-price-extra {
        min-height: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
        overflow: hidden;
        border-color: transparent;
        opacity: 0;
        pointer-events: none;
        transition:
            max-height 0.4s ease,
            padding 0.4s ease,
            border-color 0.3s ease,
            opacity 0.25s ease;
    }
    .services_main .section_price .price__list .price__item.is-price-extra.is-price-hidden {
        display: none;
    }
    .services_main .section_price .price__list .price__item.is-price-extra.is-price-visible {
        min-height: 72px;
        max-height: 320px;
        padding-top: 20px;
        padding-bottom: 20px;
        border-color: rgba(255, 255, 255, 0.1);
        opacity: 1;
        pointer-events: auto;
    }
    .services_main .section_price .price__btn {
        display: flex;
    }
    .services_main .section_price .price__btn:disabled {
        cursor: default;
        opacity: 0.4;
    }
    .services_main .section_price.is-price-expanded .price__btn img {
        transform: rotate(180deg);
    }
    .case {
        padding: 32px 0;
    }

    .result__main .hero__section .result_container .hero__content_wrap .hero__content__item {
        flex-direction: column;
        margin-bottom: 32px;
    }
    .result__main .hero__section .result_container .hero__content_wrap .content__item_nav {
        display: flex;
        gap: 16px;
        align-items: flex-start;
        width: 100%;
        margin-top: 0;
        margin-bottom: 0px;
    }
    .result__main .result_container .hero__content_wrap {
        justify-content: flex-end;
    }
    .result__main .hero__section .result_container .hero__content_wrap .content__item_nav .nav_list {
        max-width: 100%;
        flex-wrap: nowrap;
        gap: 8px;
        overflow: auto hidden;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
    }
    .result__main .hero__section .result_container .hero__content_wrap .content__item_nav .nav_list::-webkit-scrollbar {
        display: none;
    }
    .result__main .hero__section .result_container .hero__content_wrap .content__item_nav .nav__link {
        flex: 0 0 auto;
        white-space: nowrap;
    }
    .result__main .hero__section .result_container .hero__content_wrap .content__item_nav .nav__text {
        opacity: 0.7;
    }
    .result__main .hero__section .result_container .hero__content_wrap .hero__content__item .content__item_title h2 {
        margin-bottom: 16px;
    }
    .result__main .hero__section .result_container .hero__content_wrap .hero__content__item .content__item_title {
        margin-bottom: 32px;
    }
    .result__main .hero__section .result_container .hero__content_wrap .hero__content__item .content__item_text {
        gap: 16px;
    }
    .result__main .hero__section .result_container .hero__content_wrap .hero__content__item .content__item_text p {
        padding: 0;
    }
    .result__main .hero__section .result_container .hero__content_wrap {
        padding: 120px 0 40px;
        margin-top: 0;
    }
    .result__main .hero__section {
        height: auto;
        min-height: 100vh;
        min-height: 100svh;
    }
    .result__main .hero__section .result_container {
        min-height: 100vh;
        min-height: 100svh;
    }
    .result__main .result_list_section .result__list {
        flex-direction: column;
    }
    .result__main .result_list_section .result__list .result__item {
        width: 100%;
    }

    .service-page_main #clinic-address {
        scroll-margin-top: 220px;
    }
    .service-page_main .hero_section {
        padding: 120px 0 40px;
    }
    .service-page_main .hero_section .hero_section_tilte_wrap h2 {
        font-size: 36px;
        line-height: 40px;
    }
    .service-page_main .hero_section .hero_section_tilte_wrap {
        margin: 0 auto 40px;
    }
    .service-page_main .hero_section .hero_services_list .services_item {
        width: 100%;
        max-width: 100%;
    }
    .service-page_main .hero_section .hero_services_list .services_item ._item_text_wrap p {
        font-size: 32px;
    }
    .service-page_main .hero_section .hero_services_list {
        gap: 40px;
        margin-bottom: 40px;
    }
    .service-page_main .hero_section .hero_section_slick [data-hero-service-slider]:not(.slick-initialized) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .service-page_main .section__problem .problem__title {
        font-size: 28px;
        margin-bottom: 40px;
        line-height: 32px;
    }
    .service-page_main .section__problem .problem__list .problem__item .item__title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .service-page_main .section__problem .problem__list .problem__item .item__text {
        font-size: 14px;
    }
    .service-page_main .section__problem .problem__list .problem__item .item_num {
        margin-bottom: 8px;
    }
    .service-page_main .section__problem .problem__list {
        flex-direction: column;
    }
    .service-page_main .section__problem .problem__list .problem__item {
        max-width: 100%;
        width: 100%;
    }
    .service-page_main .section_plan .plan__title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    .service-page_main .section_plan .stage__list {
        flex-direction: column;
    }
    .service-page_main .section_plan .stage__list .stage__item .stage__num {
        margin-bottom: 8px;
    }

    .about_main .summary_section .summary__list {
        flex-direction: column;
        gap: 48px;
    }
    .about_main .summary_section .summary__list .summary__item {
        width: 100%;
        max-width: 100%;
    }
    .about_main .summary_section .summary_info {
        margin-left: 0;
    }
    .about_main .summary_section .summary__list .summary__item .number {
        line-height: 90px;
    }
    .about_main .summary_section .summary__list .summary__item .number {
        padding: 20px 0 0;
    }
    .about_main .section__approach .approach__list .approach__item {
        width: calc((100% - 32px) / 2);
        max-width: 449px;
    }
    .about_main .microscope .microscope__slick_item {
        display: grid;
        grid-template-columns: 1fr;
    }
    .about_main .microscope .microscope__media {
        order: 2;
        max-width: 100%;
        width: 100%;
        margin-bottom: 32px;
        height: 214px;
        min-height: 214px;
    }
    .about_main .microscope .microscope__copy {
        display: contents;
    }
    .about_main .microscope .microscope__copy h2 {
        order: 1;
        margin-bottom: 24px;
        font-size: 28px;
        line-height: 32px;
    }
    .about_main .microscope .microscope__copy .microscope__copy_info {
        order: 3;
        gap: 24px;
    }
    .about_main .microscope__copy .microscope__copy_info {
        flex-direction: column-reverse;
    }
    .about_main .microscope__copy .microscope__copy_info .info__gallery {
        max-width: 100%;
    }
    .about_main .microscope__copy .microscope__copy_info .info__gallery .__gallery_img img {
        max-width: 100%;
    }
    .about_main .microscope .microscope__slick_item .microscope__media img {
        min-height: 100%;
        height: 214px;
    }
    .about_main .microscope .microscope__slick_item {
        gap: 0;
    }
    .about_main .microscope .microscope__media {
        margin-bottom: 16px;
    }
    .microscope .microscope__slick_item {
        min-height: auto;
    }
    .about_main .microscope__copy .microscope__copy_info .info__gallery {
        display: none;
    }
    .about_main .microscope .microscope__copy .microscope__copy_info {
        display: flex;
        flex-direction: column-reverse;
    }
    .about_main .microscope__copy .microscope__copy_info .info__item .__title {
        font-size: 20px;
        line-height: 24px;
    }
    .about_main .microscope__copy .microscope__copy_info .info__item .__text {
        line-height: 20px;
    }
    .about_main .diagnostics .diagnostics_header {
        flex-direction: column;
    }
    .about_main .diagnostics .diagnostics_body {
        flex-direction: column-reverse;
    }
    .about_main .diagnostics .diagnostics_body .body__img {
        justify-content: space-between;
        width: 100%;
    }
    .about_main .diagnostics .diagnostics_body .body__list {
        width: 100%;
        max-width: 100%;
    }
    .about_main .diagnostics .diagnostics_body .body__list {
        flex: 0 1 100%;
    }
    .about_main .whitening .whitening_box {
        flex-direction: column;
        align-items: stretch;
    }
    .about_main .whitening .whitening_box .whitening_item:not(.item_img_wrap) {
        display: contents;
    }
    .about_main .whitening .whitening_box .item_img_wrap {
        order: 3;
        width: 100%;
        min-height: 500px;
    }
    .about_main .whitening .whitening_box .whitening_item h2 {
        order: 1;
    }
    .about_main .whitening .whitening_box .item__content_header {
        order: 2;
    }
    .about_main .whitening .whitening_box .whitening_item_list {
        order: 4;
    }
    .about_main .whitening .whitening_box .item__content_footer {
        order: 5;
    }
    .about_main .whitening .whitening_box {
        gap: 16px;
    }
    .about_main .whitening {
        padding: 72px 0 0;
    }
    .about_main .planning .planning_box .planning__header {
        flex-direction: column;
        gap: 16px;
    }
    .about_main .planning .planning_box {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }
    .about_main .planning .planning_box .planning__header {
        order: 1;
        margin-bottom: 0;
    }
    .about_main .planning .planning_box .planning__img_list {
        order: 2;
    }
    .about_main .planning .planning_box .planning__list {
        order: 3;
        margin-bottom: 0;
        flex-direction: column;
    }
    .about_main .planning .planning_box .planning__header h2 {
        max-width: 100%;
    }
    .about_main .planning .planning_box .planning__header .header__text {
        max-width: 100%;
    }
    .about_main .planning .planning_box .planning__img_list .planning__img_item {
        width: calc((100% - 64px) / 2);
        max-width: 425px;
    }
    .about_main .planning .planning_box .planning__list .planning__item {
        flex: 1 0 auto;
        max-width: 100%;
    }
}

@media screen and (max-width: 900px) {
    .hero {
        min-height: 760px;
        padding-top: 48px;
    }
    .hero__inner {
        min-height: 610px;
    }
    .hero__copy h1 {
        font-size: clamp(40px, 5.7vw, 50px);
    }
    .hero__visual {
        top: 22%;
        width: min(50vw, 450px);
    }
    .hero__caption {
        right: 8%;
        font-size: 44px;
    }
    .hero__socials {
        right: 4px;
    }

    .stats .stats__inner__item {
        justify-content: space-between;
        gap: 36px;
    }

    .services__content {
        flex-direction: column;
    }
    .services__featured,
    .services__list {
        width: 100%;
    }
    .services__featured_wrap {
        align-items: flex-start;
    }
    .media-card {
        max-width: none;
        aspect-ratio: 16/9;
        height: auto;
    }

    .team .team__header .team__title {
        gap: 20px;
    }
    .team .team__slider .slick-slide {
        width: 250px;
    }

    .technology__inner {
        min-height: 850px;
    }
    .technology__inner .technology__list .__item_2 {
        left: 28%;
    }
    .technology__inner .technology__list .__item_3 {
        right: 24%;
    }
    .technology__inner .technology__list .__item_8 {
        right: 36%;
    }

    .microscope .microscope__slick_item .microscope__media {
        min-height: 520px;
    }
    .microscope .microscope__slick_item .microscope__media img {
        min-height: 520px;
    }
    .microscope__copy .microscope__copy_info .info__gallery {
        max-width: 210px;
    }
    .microscope__copy .microscope__copy_info .info__gallery .__gallery_img img {
        height: 180px;
    }

    .footer .footer__nav_wrap .footer_list_navigation {
        width: 100%;
        flex-basis: 100%;
        justify-content: space-between;
    }
    .footer .footer__nav_wrap .footer__contact-column {
        width: 100%;
        justify-content: space-between;
    }
}

@media screen and (max-width: 980px) {
    .microscope {
        padding: 32px 0;
    }
    .microscope__slider-wrap {
        width: 100%;
    }
    .microscope__slider > div:not(:first-child) {
        display: none;
    }
    .microscope .microscope__slick_item {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .microscope .microscope__slick_item .microscope__media {
        order: 2;
        width: 100%;
        max-width: none;
        min-height: 0;
        margin-bottom: 24px;
        aspect-ratio: 322/276;
        border-radius: 14px;
    }
    .microscope .microscope__slick_item .microscope__media img {
        width: 100%;
        height: 100%;
        min-height: 0;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
    }
    .microscope__copy {
        display: contents;
    }
    .microscope__copy h2 {
        order: 1;
        margin-bottom: 24px;
        font-size: 28px;
        font-weight: 100;
        line-height: 1.08;
        letter-spacing: -0.6px;
    }
    .microscope__copy h2 br {
        display: none;
    }
    .microscope__copy h2 strong {
        font-weight: 300;
    }
    .microscope__copy .microscope__copy_info {
        display: block;
        order: 3;
    }
    .microscope__copy .microscope__copy_info .info__gallery {
        display: none;
    }
    .microscope__copy .microscope__copy_info .info__item .__dote {
        margin-bottom: 16px;
    }
    .microscope__copy .microscope__copy_info .info__item .__title {
        margin-bottom: 8px;
        font-size: 24px;
        font-weight: 500;
        line-height: 1.12;
    }
    .microscope__copy .microscope__copy_info .info__item .__text {
        font-size: 16px;
        line-height: 1.35;
        opacity: 0.7;
    }
    .microscope__slider-controls {
        display: none;
    }
    .microscope__more-link {
        display: inline-flex;
        min-height: 44px;
        align-items: center;
        gap: 14px;
        margin-top: 24px;
        padding: 8px 10px;
        font-size: 16px;
        font-weight: 400;
    }
    .microscope__more-link span {
        font-size: 24px;
        line-height: 1;
    }
    .microscope__more-link:focus-visible {
        outline: 2px solid #dda9ff;
        outline-offset: 2px;
    }

    .home_main .microscope {
        --microscope-slide-height: auto;
    }
    .home_main .microscope .microscope__slider {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .home_main .microscope .microscope__slider > div:first-child {
        display: flex;
        width: 100%;
        flex-direction: column;
    }
    .home_main .microscope .microscope__slick_item {
        display: flex;
        flex-direction: column;
        gap: 0;
        min-height: 0;
    }
    .home_main .microscope .microscope__slick_item .microscope__more-link--card {
        order: 4;
    }
    .home_main .microscope .microscope__media {
        min-height: 0;
    }
    .home_main .microscope .microscope__media img {
        min-height: 0;
    }
    .home_main .microscope .microscope__more-link--main,
    .home_main .microscope .microscope__slider-controls {
        display: none;
    }
    .home_main .microscope .microscope__more-link--card {
        display: inline-flex;
        width: -moz-fit-content;
        width: fit-content;
        min-height: 44px;
        align-items: center;
        gap: 14px;
        margin-top: 24px;
        padding: 8px 10px;
        font-size: 16px;
        font-weight: 400;
    }
    .home_main .microscope .microscope__more-link--card span {
        font-size: 24px;
        line-height: 1;
    }
}

@media screen and (max-width: 768px) {
    .header {
        --header-height: 80px;
        padding: 12px 0;
    }
    .header__inner {
        position: relative;
        width: min(100% - 32px, 1368px);
        min-height: 56px;
    }
    .header .logo {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 48px;
        height: 56px;
        transform: translate(-50%, -50%);
    }
    .header__actions {
        width: 100%;
        justify-content: flex-end;
    }
    .header__search {
        position: absolute;
        top: 12px;
        left: 56px;
        margin-right: 0;
        transform: none;
    }
    .header__search-toggle {
        width: 32px;
        height: 32px;
        border: 0;
    }
    body.menu-open .header__search-toggle {
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }
    .header__search-toggle svg {
        width: 22px;
        height: 22px;
    }
    .header__search-panel {
        top: var(--header-height);
        padding-top: 0;
    }
    .header__search-container {
        width: min(100% - 32px, 1368px);
    }
    .header__search-input {
        height: 42px;
        padding: 0 52px 10px 16px;
        font-size: 14px;
        line-height: 20px;
    }
    .header__search-result {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
        padding: 14px 12px;
    }
    .header__search-result-price {
        justify-self: start;
    }
    .header__geo {
        display: none;
    }
    .header .button-hover-wrap--small {
        width: 100px;
        height: 32px;
    }
    .header .button--small {
        width: 100px;
        min-height: 32px;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 14px;
        line-height: 1;
    }
    .header .nav a {
        width: 100%;
        padding: 15px 0;
        border-radius: 0;
        font-size: 14px;
        line-height: 18px;
        text-align: left;
        border-bottom: 1px solid #392546;
    }

    .header .nav.is-open {
        z-index: -1;
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
        visibility: visible;
    }
    .menu-toggle {
        position: absolute;
        top: 12px;
        left: 16px;
        transform: none;
    }

    .hero {
        min-height: clamp(774px, 115vw, 900px);
        padding: 0;
        margin-top: 80px;
    }
    .hero__glow {
        top: 48%;
        left: 50%;
        width: 560px;
        height: 680px;
        background:
            radial-gradient(circle at 50% 52%, rgba(93, 62, 111, 0.3), transparent 46%),
            linear-gradient(180deg, rgba(23, 16, 29, 0) 54%, rgba(50, 35, 60, 0.72) 100%);
    }
    .hero__inner {
        display: block;
        width: min(100% - 32px, 480px);
        min-height: clamp(774px, 115vw, 900px);
    }
    .hero__copy {
        position: static;
        width: 100%;
        max-width: 376px;
        margin: 0 auto;
        padding-top: 0;
    }
    .hero__copy h1 {
        position: relative;
        z-index: 6;
        width: 100%;
        font-size: clamp(29px, 8.2vw, 36px);
        font-weight: 100;
        line-height: 1.1;
        letter-spacing: -0.8px;
    }
    .hero__copy h1 span:first-child {
        line-height: 1.05;
    }
    .hero__copy h1 span {
        font-weight: 600;
    }
    .hero__copy h1 strong {
        font-weight: 600;
    }
    .hero__copy > .button-hover-wrap {
        position: absolute;
        z-index: 7;
        bottom: 75px;
        left: 50%;
        width: 214px;
        height: 50px;
        margin: 0;
        transform: translateX(-50%);
    }
    .hero__copy > .button-hover-wrap > .button {
        width: 214px;
        max-width: none;
        min-height: 50px;
        margin: 0;
        padding-inline: 16px;
    }
    .hero__visual {
        --orbit-height: 18%;
        --orbit-top: 63%;
        --orbit-left: 50%;
        --orbit-width: 104%;
        --orbit-angle: -6deg;
        --orbit-counter-angle: 6deg;
        --orbit-marker-size: 24px;
        top: 132px;
        left: 60%;
        width: clamp(300px, 50vw, 390px);
        transform: translateX(-50%);
    }
    .hero__visual .tooth-img {
        max-width: none;
        max-height: none;
        filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.35));
    }
    .hero__visual .circle__text {
        font-size: 14px;
        line-height: 1.18;
    }
    .hero__orbit {
        max-width: none;
    }
    .case .case_slick_wrap .case_slick_item .case__footer_list .footer_item .footer_item_title {
        font-size: 16px;
    }
    .case .case_slick_wrap .case_slick_item .case__footer_list .footer_item .footer_item_text {
        font-size: 14px;
    }
    .hero__caption {
        top: clamp(545px, 84vw, 680px);
        right: 16px;
        bottom: auto;
        font-size: clamp(32px, 9vw, 39px);
        line-height: 1.05;
    }
    .hero__socials {
        position: absolute;
        z-index: 7;
        inset: auto auto 0 50%;
        flex-direction: row;
        gap: 32px;
        transform: translateX(-50%);
    }
    .hero .spark--one {
        top: clamp(520px, 82vw, 650px);
        left: 9%;
        width: 40px;
        max-width: 40px !important;
        height: 40px;
    }
    .hero .spark--two {
        top: 118px;
        right: 3%;
        width: 38px;
        max-width: 38px !important;
        height: 38px;
    }
    .case .case_slick_wrap .case_slick_item .case__content_wrap .case__result {
        height: 240px;
    }

    .stats {
        position: relative;
        min-height: 664px;
        padding: 96px 0;
        overflow: hidden;
    }

    .case .case_slick_wrap .case_slick_item .case__content_wrap {
        gap: 24px;
        margin-bottom: 16px;
    }
    .case .case_slick_wrap .case_slick_item .case__content_wrap .case__content_item {
        padding: 0;
    }
    .case .case_slick_wrap .case_slick_item .case__content_wrap .case__content_item .case__content_title {
        margin-bottom: 0px;
        font-size: 20px;
        text-align: center;
    }
    .case__steps li {
        font-size: 14px;
    }
    .case__steps {
        margin-bottom: 24px;
    }
    .case .case_slick_wrap .case_slick_item .case__content_wrap .case__content_item .case__content_footer_text {
        font-size: 20px;
    }

    .stats__inner {
        width: min(100% - 40px, 520px);
        gap: 48px;
    }
    .stats .stats__inner__item {
        display: flex;
        width: 100%;
        align-items: stretch;
        flex-direction: column;
        gap: 28px;
    }
    .case .case_slick_wrap .case_slick_item .case__footer_list .footer_item .footer_item_title {
        font-size: 16px;
        margin-bottom: 4px;
    }
    .case .case_slick_wrap .case_slick_item .case__footer_list .footer_item .footer_item_text {
        font-size: 14px;
    }
    .stats .__item_two {
        gap: 32px;
    }
    .stats .__item_two .stats__inner_title {
        order: -1;
    }
    .stat {
        position: relative;
        width: 100%;
        min-height: 126px;
        align-items: flex-end;
        justify-content: flex-end;
    }
    .stat__number {
        font-size: 104px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0;
        white-space: nowrap;
    }
    .stats .stats__inner__item .stat__number {
        font-size: 104px;
        line-height: 0.6;
    }
    .stat p {
        margin: 0 12px 4px 0;
        color: #fff;
        font-size: 14px;
        font-weight: 300;
        line-height: 1.2;
        white-space: nowrap;
    }
    .stats .__item_two .stat {
        min-height: 118px;
    }
    .stats .__item_two .stat .stat__number {
        font-size: 104px;
        letter-spacing: 0;
    }

    .services_wrap .services_main .hero__section .hero__content__item .__dote {
        display: none;
    }

    .services {
        padding: 0;
    }
    .services .section-heading {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 24px;
        margin-bottom: 20px;
    }
    .services .section-heading .heading__title {
        width: 100%;
        flex: 0 0 100%;
    }
    .services .section-heading .heading__title h2 {
        font-size: clamp(28px, 8vw, 36px);
        line-height: 1.08;
        letter-spacing: -0.7px;
    }
    .services .section-heading .heading__link {
        margin-left: auto;
        width: 120px;
        height: 36px;
        font-size: 14px;
    }
    .services .section-heading .heading__link::after {
        width: 18px;
        height: 18px;
        background-size: contain;
    }
    .services__content {
        gap: 20px;
    }
    .services__featured_wrap {
        width: 100%;
    }
    .services__featured_wrap > .button-hover-wrap {
        display: none;
    }
    .services__featured {
        width: 100%;
    }
    .services__list {
        width: 100%;
    }
    .media-card {
        width: 100%;
        max-width: none;
        aspect-ratio: 345/194;
        border-radius: 14px;
    }
    .media-card figcaption {
        right: 64px;
        bottom: 18px;
        left: 16px;
        font-size: 16px;
        padding: 8px 0;
    }
    .media-card__play {
        right: 16px;
        bottom: 14px;
        width: 42px;
        height: 42px;
    }
    .service-accordion {
        min-height: 70px;
        padding: 8px 4px 8px 0;
    }
    .service-accordion__trigger {
        min-height: 54px;
        align-items: center;
        gap: 8px;
    }
    .service-accordion__trigger .service-accordion__title_wrap {
        min-width: 0;
        gap: 14px;
    }
    .service-accordion__trigger .service-accordion__title_wrap .service-accordion__img {
        width: 60px;
        height: 60px;
        flex: 0 0 60px;
        border-radius: 8px;
        -o-object-fit: cover;
        object-fit: cover;
    }
    .service-accordion__trigger .service-accordion__title_wrap .service-accordion__text {
        min-width: 0;
        gap: 2px;
    }
    .service-accordion__trigger .service-accordion__title_wrap .service-accordion__text .service-accordion__title {
        overflow: hidden;
        font-size: 20px;
        font-weight: 300;
        line-height: 1.15;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .service-accordion__trigger .service-accordion__title_wrap .service-accordion__text .service-accordion__text {
        overflow: hidden;
        font-size: 14px;
        line-height: 1.3;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .service-accordion__trigger .service-accordion__title_wrap .present_wrap {
        width: auto;
        max-width: none;
        height: 20px;
        flex: 0 0 auto;
        margin-left: -8px;
        padding: 0 8px;
    }
    .service-accordion__trigger .service-accordion__title_wrap .present_wrap span {
        font-size: 11px;
        font-weight: 300;
        white-space: nowrap;
    }
    .service-accordion__icon {
        width: 20px;
        height: 20px;
        flex: 0 0 20px;
    }
    .service-accordion__content {
        padding: 8px 0 4px 70px;
    }
    .service-accordion.is-open .service-accordion__trigger {
        color: #fff;
    }

    .reviews {
        position: relative;
        padding: 96px 0;
        overflow: hidden;
    }
    .reviews .section-heading--row {
        display: contents;
    }
    .reviews .section-heading--row h2 {
        width: 100%;
        flex: 0 0 100%;
        margin-bottom: 16px;
        font-size: 28px;
        line-height: 1.08;
        letter-spacing: -0.7px;
    }
    .reviews .section-heading--row h2 br {
        display: none;
    }
    .reviews .section-heading--row h2 span {
        display: block;
    }
    .reviews .section-heading--row .link_wrap {
        display: flex;
        align-items: center;
        flex-direction: row;
        margin-bottom: 16px;
    }
    .reviews .section-heading--row .link_wrap p {
        min-width: 0;
        flex: 1 1 auto;
        font-size: clamp(20px, 5.6vw, 25px);
        line-height: 1.15;
        white-space: nowrap;
    }
    .reviews .section-heading--row .link_wrap .button--ghost_wrap {
        display: contents;
    }
    .reviews .section-heading--row .link_wrap .button--ghost_wrap .social__link {
        width: 48px;
        height: 48px;
    }
    .reviews .section-heading--row .link_wrap .button--ghost_wrap .button {
        display: none;
    }
    .reviews .slick__contant {
        width: 100%;
        flex: 0 0 100%;
        margin-bottom: 16px;
        overflow: visible;
    }
    .reviews .slick__contant .reviews__slider:not(.slick-initialized) {
        gap: 20px;
    }
    .reviews .slick__contant .slick-slide {
        width: min(77vw, 230px);
        flex-basis: min(77vw, 230px);
        margin-right: 20px;
    }
    .reviews .slick__contant .slick_img_wrap {
        width: min(77vw, 230px);
        height: 400px;
        border-radius: 16px;
    }
    .hero__visual .circle--one {
        top: 82%;
        left: 25px;
    }

    .hero__visual .circle--two {
        top: 59%;
        right: -20px;
    }

    .reviews .slider-controls {
        position: static;
        align-self: center;
        flex: 0 0 100%;
        gap: 10px;
        margin: 0;
        align-items: center;
    }
    .reviews .slider-controls .reviews__appointment-mobile {
        display: inline-block;
        width: clamp(156px, calc(100% - 116px), 214px);
        height: 48px;
        margin-right: auto;
    }

    .reviews__appointment-desctop {
        display: none !important;
    }
    .reviews .slider-controls .reviews__appointment-mobile .button {
        width: 100%;
        min-height: 48px;
        padding-inline: 12px;
        font-size: 14px;
        white-space: nowrap;
        max-width: 181px;
    }
    .reviews .slider-controls button {
        width: 48px;
        height: 48px;
    }
    .reviews .slider-controls button img {
        width: 22px;
        height: 22px;
    }

    .team {
        padding: 96px 0;
        overflow: hidden;
    }
    .team .team__header {
        position: relative;
        display: block;
        margin-bottom: 24px;
        padding-bottom: 0;
    }
    .team .team__header .team__title {
        position: static;
        display: block;
    }
    .team .team__header .team__title::after {
        position: absolute;
        bottom: 7px;
        left: 0;
        width: 28px;
        height: 28px;
        margin: 0;
        background-size: contain;
    }
    .team .team__header .team__title h2 {
        max-width: 330px;
        font-size: 28px;
        line-height: 1.08;
        letter-spacing: -0.7px;
        margin-top: 16px;
        margin-bottom: 12px;
    }
    .team .team__header .team__title h2 br {
        display: none;
    }
    .team .team__header .team__title h2 strong {
        display: block;
        font-weight: 400;
    }
    .team .team__header > .button-hover-wrap {
        width: 100%;
        margin-left: auto;
        height: 38px;
    }
    .container {
        width: 100%;
        padding: 0px 16px;
    }
    .team .team__header > .button-hover-wrap > .button {
        max-width: none;
        min-height: 38px;
        padding-inline: 14px;
        border-radius: 21px;
        font-size: 14px;
        white-space: nowrap;
        left: auto;
        right: 0;
    }
    .team .team__slider {
        overflow: visible;
    }
    .team .team__slider [data-slick-slider='team']:not(.slick-initialized) {
        gap: 13px;
    }
    .team .team__slider .slick-slide {
        width: min(59vw, 230px);
        margin-right: 13px;
    }
    .team .team__slider .team__slider_item {
        width: 100%;
        max-width: none;
        height: auto;
        aspect-ratio: 230/348;
        border-radius: 7px;
    }
    .team .team__slider .team__slider_item::after {
        height: 110px;
    }
    .team .team__slider .team__slider_item ._item__contant {
        right: 12px;
        bottom: 12px;
        left: 12px;
    }
    .team .team__slider .team__slider_item ._item__contant .user_profession {
        padding: 8px 12px;
        font-size: 14px;
    }
    .team .team__slider .team__slider_item ._item__contant .user_name {
        overflow: hidden;
        font-size: 48px;
        line-height: 1.05;
        text-overflow: ellipsis;
        white-space: nowrap;
        margin-top: 8px;
    }
    .team .slider-controls {
        position: absolute;
        right: 16px;
        bottom: 16px;
        gap: 8px;
        margin: 0;
    }
    .team .slider-controls button {
        width: 48px;
        height: 48px;
    }
    .team .slider-controls button img {
        width: 18px;
        height: 18px;
    }

    .technology {
        min-height: 573px;
        height: 573px;

        margin-bottom: 96px;
    }
    .technology__inner {
        width: min(100%, 520px);
        min-height: 573px;
        padding: 0;
    }
    .technology__inner .technology__list {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }
    .technology__inner .technology__list .technology__item {
        border-radius: 15px;
    }
    .technology__inner .technology__list .technology__item img {
        border-radius: inherit;
    }
    .technology__inner .technology__list .__item_1 {
        top: 6px;
        left: 64px;
        width: 134px;
        height: 134px;
    }
    .technology__inner .technology__list .__item_2 {
        top: -25px;
        right: 64px;
        left: auto;
        width: 87px;
        height: 52px;
        opacity: 0.72;
    }
    .technology__inner .technology__list .__item_3 {
        top: auto;
        bottom: 165px;
        left: auto;
        right: 80px;
        width: 52px;
        height: 52px;
    }

    .technology__inner .technology__list .__item_3::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.3);

        display: block;
        width: 100%;
        height: 100%;
    }
    .technology__inner .technology__list .__item_4 {
        top: 76px;
        right: 10px;
        width: 101px;
        height: 161px;
    }
    .technology__inner .technology__list .__item_5 {
        inset: auto 81px 158px auto;
        width: 52px;
        height: 52px;
        top: auto;
        bottom: -70px;
        right: auto;
        left: 80px;
    }
    .technology__inner .technology__list .__item_6 {
        right: 40px;
        bottom: -20px;
        left: auto;
        width: 135px;
        height: 135px;
    }
    .technology__inner .technology__list .__item_7 {
        left: 94px;
        right: auto;
        bottom: 0;
        width: 51px;
        height: 51px;
        display: none;
    }
    .technology__inner .technology__list .__item_8 {
        right: auto;
        bottom: 70px;
        left: 40px;
        width: 133px;
        height: 133px;
    }
    .technology__inner .technology__list .__item_9 {
        display: none;
    }
    .technology__inner .technology__list .__item_10 {
        top: 151px;
        bottom: auto;
        left: -20px;
        width: 58px;
        height: 99px;
    }
    .technology__inner h2 {
        position: relative;
        z-index: 2;
        max-width: 360px;
        margin-top: 4px;
        font-size: 28px;
        line-height: 1.08;
    }
    .technology__inner h2 strong,
    .technology__inner h2 span {
        text-align: center;
    }
    .technology__inner h2 strong {
        font-weight: 500;
    }

    .microscope {
        padding: 32px 0;
    }
    .microscope__slider-wrap {
        width: 100%;
    }
    .microscope__slider > div:not(:first-child) {
        display: none;
    }
    .microscope .microscope__slick_item {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .microscope .microscope__slick_item .microscope__media {
        order: 2;
        width: 100%;
        max-width: none;
        min-height: 0;
        margin-bottom: 24px;
        aspect-ratio: 322/276;
        border-radius: 14px;
    }
    .microscope .microscope__slick_item .microscope__media img {
        width: 100%;
        height: 100%;
        min-height: 0;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
    }
    .microscope__copy {
        display: contents;
    }
    .microscope__copy h2 {
        order: 1;
        margin-bottom: 24px;
        font-size: 28px;
        font-weight: 100;
        line-height: 1.08;
        letter-spacing: -0.6px;
    }
    .microscope__copy h2 br {
        display: none;
    }
    .microscope__copy h2 strong {
        font-weight: 300;
    }
    .microscope__copy .microscope__copy_info {
        display: block;
        order: 3;
    }
    .microscope__copy .microscope__copy_info .info__gallery {
        display: none;
    }
    .microscope__copy .microscope__copy_info .info__item .__dote {
        margin-bottom: 16px;
    }
    .microscope__copy .microscope__copy_info .info__item .__title {
        margin-bottom: 8px;
        font-size: 24px;
        font-weight: 500;
        line-height: 1.12;
    }
    .microscope__copy .microscope__copy_info .info__item .__text {
        font-size: 16px;
        line-height: 1.35;
        opacity: 0.7;
    }
    .microscope__slider-controls {
        display: none;
    }
    .microscope__more-link {
        display: inline-flex;
        min-height: 44px;
        align-items: center;
        gap: 14px;
        margin-top: 24px;
        padding: 8px 10px;
        font-size: 16px;
        font-weight: 400;
    }
    .microscope__more-link span {
        font-size: 24px;
        line-height: 1;
    }
    .microscope__more-link:focus-visible {
        outline: 2px solid #dda9ff;
        outline-offset: 2px;
    }

    .home_main .microscope {
        --microscope-slide-height: auto;
    }
    .home_main .microscope .microscope__slider {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .home_main .microscope .microscope__slider > div:first-child {
        display: flex;
        width: 100%;
        flex-direction: column;
    }
    .home_main .microscope .microscope__slider > div > .container,
    .home_main .microscope .microscope__slider .diagnostics > .container,
    .home_main .microscope .microscope__slider .whitening > .container,
    .home_main .microscope .microscope__slider .planning > .container {
        width: 100%;
        max-width: none;
    }
    .home_main .microscope .microscope__slick_item {
        display: flex;
        flex-direction: column;
        gap: 0;
        min-height: 0;
    }
    .home_main .microscope .microscope__slick_item .microscope__more-link--card {
        order: 4;
    }
    .home_main .microscope .microscope__media {
        min-height: 0;
    }
    .home_main .microscope .microscope__media img {
        min-height: 0;
    }
    .home_main .microscope .microscope__more-link--main,
    .home_main .microscope .microscope__slider-controls {
        display: none;
    }
    .home_main .microscope .microscope__more-link--card {
        display: inline-flex;
        width: -moz-fit-content;
        width: fit-content;
        min-height: 44px;
        align-items: center;
        gap: 14px;
        margin-top: 24px;
        padding: 8px 10px;
        font-size: 16px;
        font-weight: 400;
    }
    .home_main .microscope .microscope__more-link--card span {
        font-size: 24px;
        line-height: 1;
    }
    .home_main .microscope .diagnostics {
        min-height: 0;
        padding: 0;
    }
    .home_main .microscope .diagnostics .diagnostics_header {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }
    .home_main .microscope .diagnostics .diagnostics_header h2 {
        font-size: 28px;
        line-height: 32px;
    }
    .home_main .microscope .diagnostics .diagnostics_header .diagnostics_header_text {
        max-width: 100%;
        flex-direction: column;
    }
    .home_main .microscope .diagnostics .diagnostics_body {
        flex-direction: column-reverse;
    }
    .home_main .microscope .diagnostics .diagnostics_body .body__img {
        width: 100%;
        flex-direction: column;
        justify-content: space-between;
    }
    .home_main .microscope .diagnostics .diagnostics_body .body__img img {
        height: 185px;
        max-width: 100%;
    }
    .home_main .microscope .diagnostics .diagnostics_body .body__list {
        width: 100%;
        max-width: 100%;
        flex: 0 1 100%;
        gap: 8px;
    }
    .home_main .microscope .diagnostics .diagnostics_body .body__list .body__item {
        gap: 16px;
        padding: 8px;
    }
    .home_main .microscope .diagnostics .diagnostics_body .body__list .body__item .item__text .__title {
        margin-bottom: 4px;
        font-size: 16px;
        line-height: 20px;
    }
    .home_main .microscope .whitening {
        min-height: 0;
        padding: 0;
    }
    .home_main .microscope .whitening .whitening_box {
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    .home_main .microscope .whitening .whitening_box .whitening_item:not(.item_img_wrap) {
        display: contents;
    }
    .home_main .microscope .whitening .whitening_box .whitening_item {
        width: 100%;
        min-height: 0;
        gap: 0;
    }
    .home_main .microscope .whitening .whitening_box .whitening_item h2 {
        order: 1;
        font-size: 28px;
        line-height: 32px;
    }
    .home_main .microscope .whitening .whitening_box .whitening_item .whitening_item_list {
        order: 4;
    }
    .home_main .microscope .whitening .whitening_box .whitening_item .whitening_item_list .whitening_item_item {
        padding: 8px 0;
    }
    .home_main
        .microscope
        .whitening
        .whitening_box
        .whitening_item
        .whitening_item_list
        .whitening_item_item
        .item_list_content
        .__title {
        margin-bottom: 4px;
        font-size: 16px;
        line-height: 20px;
    }
    .home_main .microscope .whitening .whitening_box .whitening_item .item__content_footer {
        order: 5;
    }
    .home_main .microscope .whitening .whitening_box .whitening_item .item__content_footer .content_footer_img {
        max-width: 108px;
    }
    .home_main .microscope .whitening .whitening_box .item__content_header {
        order: 2;
    }
    .home_main .microscope .whitening .whitening_box .item_img_wrap {
        order: 3;
        width: 100%;
        min-height: 272px;
    }
    .home_main .microscope .planning {
        min-height: 0;
        padding: 0;
    }
    .home_main .microscope .planning .planning_box {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .home_main .microscope .planning .planning_box .planning__header {
        order: 1;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 0;
    }
    .home_main .microscope .planning .planning_box .planning__header h2 {
        max-width: 100%;
        font-size: 28px;
        line-height: 32px;
    }
    .home_main .microscope .planning .planning_box .planning__header .header__text {
        max-width: 100%;
        flex-direction: column;
    }
    .home_main .microscope .planning .planning_box .planning__img_list {
        order: 2;
        flex-direction: column;
    }
    .home_main .microscope .planning .planning_box .planning__img_list .planning__img_item {
        width: 100%;
        height: 192px;
        max-width: 100%;
    }
    .home_main .microscope .planning .planning_box .planning__list {
        order: 3;
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }
    .home_main .microscope .planning .planning_box .planning__list .planning__item {
        max-width: 100%;
        flex: 1 0 auto;
        padding: 8px 0;
    }
    .home_main .microscope .planning .planning_box .planning__list .planning__item .item__text .__title {
        margin-bottom: 4px;
        font-size: 16px;
        line-height: 20px;
    }

    .contacts {
        padding: 72px 0 96px;
    }
    .contacts .contacts_body {
        display: flex;
        flex-direction: column;
        margin-bottom: 24px;
        gap: 0;
    }
    .contacts .contacts_body .contacts__item {
        display: contents;
    }
    .contacts .contacts_body .contacts__item h2 {
        order: 1;
        margin-bottom: 40px;
        font-size: 28px;
        font-weight: 100;
        line-height: 1.08;
        letter-spacing: -0.5px;
    }
    .contacts .contacts_body .contacts__item h2 br {
        display: none;
    }
    .contacts .contacts_body .contacts__item h2 strong {
        font-weight: 400;
    }
    .contacts .contacts_body .contacts__item .contacts__soc_list {
        display: none;
    }
    .contacts .contacts_body .contacts__item .contacts_connection_list {
        order: 3;
        gap: 24px;
        width: 100%;
    }
    .contacts .contacts_body .contacts__item .contacts_connection_list .contacts_connection__item {
        gap: 12px;
    }
    .contacts .contacts_body .contacts__item .contacts_connection_list .contacts_connection__item .social__link {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
    }
    .contacts .contacts_body .contacts__item .contacts_connection_list .contacts_connection__item .social__link img {
        width: 20px;
        height: 20px;
    }
    .contacts .contacts_body .contacts__item .contacts_connection_list .contacts_connection__item .__item_wrap {
        min-width: 0;
        gap: 2px;
    }
    .contacts .contacts_body .contacts__item .contacts_connection_list .contacts_connection__item .__item_wrap ._title {
        font-size: 16px;
        line-height: 1.25;
    }
    .contacts .contacts_body .contacts__item .contacts_connection_list .contacts_connection__item .__item_wrap ._text {
        font-size: 16px;
        line-height: 1.35;
    }
    .contacts .contacts_body .contacts__form_wrap {
        order: 2;
        gap: 24px;
        margin-bottom: 34px;
    }
    .contacts .contacts_body .contacts__form_wrap .form__title {
        max-width: 360px;
        font-size: 20px;
        line-height: 1.25;
    }
    .contacts .contacts_body .contacts__form_wrap .form .form__input_wrap {
        margin-bottom: 24px;
    }
    .contacts .contacts_body .contacts__form_wrap .form .form__input_wrap .form_contact_info {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }
    .contacts .contacts_body .contacts__form_wrap .form .form__input_wrap .form-field {
        padding-bottom: 16px;
    }
    .contacts .contacts_body .contacts__form_wrap .form .form__input_wrap input:not([type='checkbox']) {
        min-height: 46px;
        padding: 8px 16px;
        font-size: 14px;
    }
    .contacts
        .contacts_body
        .contacts__form_wrap
        .form
        .form__input_wrap
        input:not([type='checkbox'])::-moz-placeholder {
        font-size: 13px;
    }
    .contacts .contacts_body .contacts__form_wrap .form .form__input_wrap input:not([type='checkbox'])::placeholder {
        font-size: 13px;
    }
    .contacts .contacts_body .contacts__form_wrap .form .form__input_wrap .form__checkbox {
        gap: 8px;
        margin-top: 8px;
    }

    .contacts .contacts_body .contacts__form_wrap .form > .button {
        width: 105px;
        min-height: 40px;
        margin-inline: auto;
        padding-inline: 14px;
        border-radius: 22px;
        font-size: 13px;
        margin: 0 auto;
        display: flex;
    }
    .contacts .contacts_body .contacts__form_wrap .form .form__status {
        text-align: center;
    }
    .contacts .map_wrap {
        height: 166px;
        border-radius: 14px;
    }

    .footer {
        padding: 16px 0 32px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    }
    .footer .footer__nav_wrap {
        display: flex;
        align-items: flex-start;
        flex-wrap: nowrap;
        gap: 0px;
        margin-bottom: 24px;
    }
    .footer .footer__nav_wrap .footer_list_navigation {
        display: flex;
        width: 42%;
        flex: 0 0 42%;
        flex-direction: column;
        gap: 38px;
    }
    .footer .footer__nav_wrap .footer_list_navigation .footer_nav_list {
        gap: 16px;
    }
    .footer .footer__nav_wrap .footer_list_navigation .footer_nav_list:nth-child(3) {
        margin-top: 6px;
    }
    .footer .footer__nav_wrap .footer_list_navigation .footer_nav_list .footer_nav_item .nav_item_link {
        font-size: 12px;
        line-height: 1.35;
    }
    .footer .footer__nav_wrap .footer__contact-column {
        display: flex;
        min-width: 0;
        flex: 1 1 auto;
        flex-direction: column;
        gap: 14px;
    }
    .footer .footer__nav_wrap .footer__contact-column .footer_list_social {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }
    .footer .footer__nav_wrap .footer__contact-column .footer_list_social .social__link {
        width: 48px;
        height: 48px;
    }
    .footer .footer__nav_wrap .footer__contact-column .footer_list_social .social__link img {
        width: 20px;
        height: 20px;
    }
    .footer .footer__nav_wrap .footer__contact-column .footer_list_connection {
        width: 100%;
        gap: 14px;
    }
    .footer .footer__nav_wrap .footer__contact-column .footer_list_connection .phone_wrap {
        gap: 8px;
        white-space: nowrap;
    }
    .footer .footer__nav_wrap .footer__contact-column .footer_list_connection .phone_wrap .social__link {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
    }
    .footer .footer__nav_wrap .footer__contact-column .footer_list_connection .phone_wrap .social__link img {
        width: 20px;
        height: 20px;
    }
    .footer .footer__nav_wrap .footer__contact-column .footer_list_connection .phone_wrap p {
        font-size: 14px;
    }
    .footer .footer__nav_wrap .footer__contact-column .footer_list_connection .button {
        width: 129px;
        max-width: none;
        min-height: 44px;
        padding-inline: 18px;
        border-radius: 24px;
        font-size: 14px;
    }
    .footer .footer__nav_wrap .footer__contact-column .footer_list_connection .button img {
        width: 20px;
        height: 20px;
    }
    .footer .footer__logo {
        margin-bottom: 16px;
        padding: 10px 0;
    }
    .footer .footer__logo img {
        width: 100%;
        height: auto;
    }
    .footer .footer_bottom {
        height: 72px;
        display: flex;
        justify-content: space-between;
        gap: 12px;
    }
    .footer .footer_bottom .date,
    .footer .footer_bottom .autor {
        font-size: 10px;
        white-space: nowrap;
    }
    .footer .footer_bottom .logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 43px;
        height: 40px;
    }

    .services_main .hero__section .services_container .hero__content_wrap .hero__content__item .content__item_title h2 {
        font-size: 36px;
    }
    .services_main
        .hero__section
        .services_container
        .hero__content_wrap
        .hero__content__item:not(.content__item_nav)
        .content__item_title {
        display: contents;
        margin-bottom: 0;
    }
    .services_main
        .hero__section
        .services_container
        .hero__content_wrap
        .hero__content__item:not(.content__item_nav)
        .content__item_title
        h2 {
        order: 1;
        margin-bottom: 0px;
    }
    .services_main
        .hero__section
        .services_container
        .hero__content_wrap
        .hero__content__item:not(.content__item_nav)
        .content__item_text {
        order: 2;
        margin-bottom: 24px;
    }
    .services_main
        .hero__section
        .services_container
        .hero__content_wrap
        .hero__content__item:not(.content__item_nav)
        .button-hover-wrap--appointment {
        order: 3;
    }
    .services_main
        .hero__section
        .services_container
        .hero__content_wrap
        .hero__content__item
        .content__item_title
        .button-hover-wrap {
        width: 181px;
        height: 44px;
    }
    .services_main
        .hero__section
        .services_container
        .hero__content_wrap
        .hero__content__item
        .content__item_title
        .button {
        font-size: 14px;
        max-width: 181px;
        min-height: 44px;
    }
    .services_main .hero__section .services_container .hero__content_wrap .hero__content__item .content__item_text p {
        font-size: 14px;
    }

    .services_main .hero__section {
        margin-bottom: 43px;
    }
    .services_main .hero__section .services_container .hero__content_wrap .content__item_nav {
        gap: 12px;
        margin-top: 0;
        width: 110%;
    }
    .services_main .hero__section .services_container .hero__content_wrap .content__item_nav .nav_list {
        width: 100vw;
        margin-left: -16px;
        padding: 0 0 0 16px;
    }
    .services_main .hero__section .services_container .hero__content_wrap .content__item_nav .nav__link {
        padding: 7px 10px;
        font-size: 13px;
    }
    .services_main .hero__section .services_container .hero__content_wrap .content__item_nav .nav__text {
        font-size: 13px;
        display: none;
    }

    .result__main .hero__section .content__item_text .__dote {
        display: none;
    }
    .services_main .section_price {
        padding: 16px 0;
        margin-bottom: 32px;
    }
    .services_main .section_price .price__content .content_item h2 {
        font-size: 28px;
    }
    .services_main .section_price .price__content {
        gap: 16px;
    }

    .services_main .section_price .price__content .content_item_img {
        height: 200px;
    }
    .services_main .section_price .price__content {
        margin-bottom: 24px;
    }
    .services_main .section_price .price__list .price__item {
        padding: 6px 0;
    }
    .services_main .section_price .price__list .price__item.is-price-extra.is-price-visible {
        padding-top: 16px;
        padding-bottom: 16px;
    }
    .services_main .section_price .price__list {
        margin-bottom: 32px;
        gap: 8px;
    }

    .result__main .result_list_section {
        padding: 48px 0;
    }
    .result__main .hero__section .result_container .hero__content_wrap .hero__content__item .content__item_title h2 {
        font-size: 36px;
    }
    .result__main
        .hero__section
        .result_container
        .hero__content_wrap
        .hero__content__item:not(.content__item_nav)
        .content__item_title {
        display: contents;
        margin-bottom: 0;
    }
    .result__main
        .hero__section
        .result_container
        .hero__content_wrap
        .hero__content__item:not(.content__item_nav)
        .content__item_title
        h2 {
        order: 1;
        margin-bottom: 0px;
    }
    .result__main
        .hero__section
        .result_container
        .hero__content_wrap
        .hero__content__item:not(.content__item_nav)
        .content__item_text {
        order: 2;
        margin-bottom: 16px;
    }
    .result__main
        .hero__section
        .result_container
        .hero__content_wrap
        .hero__content__item:not(.content__item_nav)
        .button-hover-wrap--appointment {
        order: 3;
    }
    .result__main
        .hero__section
        .result_container
        .hero__content_wrap
        .hero__content__item
        .content__item_title
        .button-hover-wrap {
        width: 181px;
        height: 44px;
    }
    .result__main
        .hero__section
        .result_container
        .hero__content_wrap
        .hero__content__item
        .content__item_title
        .button {
        font-size: 14px;
        max-width: 181px;
        min-height: 44px;
    }
    .result__main .hero__section .result_container .hero__content_wrap .hero__content__item .content__item_text p {
        font-size: 14px;
    }

    .result__main .hero__section {
        margin-bottom: 48px;
    }
    .result__main .hero__section .result_container .hero__content_wrap .content__item_nav {
        gap: 12px;
        margin-top: 0;
    }
    .result__main .hero__section .result_container .hero__content_wrap .content__item_nav .nav_list {
        width: 100vw;
        margin-left: -16px;
        padding: 0 0 0 16px;
    }
    .result__main .result_list_section .result__list .result__item .item__content .item__content_info {
        align-items: end;
    }
    .result__main .hero__section .result_container .hero__content_wrap .content__item_nav .nav__link {
        padding: 7px 10px;
        font-size: 13px;
    }
    .result__main .hero__section .result_container .hero__content_wrap .content__item_nav .nav__text {
        display: none;
    }
    .result__main .result_list_section .result__title {
        font-size: 28px;
        margin-bottom: 8px;
    }
    .result__main .result_list_section .result__text {
        margin-bottom: 24px;
    }
    .result__main .result_list_section .result__list .result__item .item__content .content__title {
        margin-bottom: 8px;
        font-size: 20px;
        line-height: 24px;
    }
    .whitening .whitening_box .whitening_item .whitening_item_list .whitening_item_item .item_list_content {
        gap: 0px;
    }
    .whitening .whitening_box .whitening_item .whitening_item_list .whitening_item_item {
        gap: 16px;
    }
    .contact_main .contacts {
        padding: 88px 0;
    }
    .contact_main h2 {
        margin-bottom: 96px;
        text-align: center;
    }
    .contact_main .contacts .button {
        margin: 0 auto;
    }
    .team .team__header .team__title::after {
        display: none;
    }
    .service-page_main #clinic-address {
        scroll-margin-top: 260px;
    }
    .service-page_main .hero_section .hero_section_slick {
        overflow: hidden;
    }
    .service-page_main .hero_section .hero_section_slick .content {
        width: 100%;
        margin: 0;
        padding-left: 24px;
    }
    .service-page_main .hero_section .hero_section_slick .slick-list {
        margin: 0;
        overflow: visible;
    }
    .service-page_main .hero_section .hero_section_slick .slick-track {
        display: flex;
    }
    .service-page_main .hero_section .hero_section_slick .slick-slide {
        width: min(82vw, 394px);
        padding: 0;
        margin-right: 24px;
    }
    .service-page_main .hero_section .hero_section_slick .img_wrap {
        max-width: none;
        aspect-ratio: 394/216;
    }
    .service-page_main .hero_section .hero_section_slick .hero-section-slider-controls {
        width: auto;
        margin: 24px 32px 0;
    }
    .service-page_main .hero_section .hero_section_slick .hero-section-slider-controls button {
        width: 48px;
        height: 48px;
    }
    .service-page_main .hero_section {
        margin-top: 80px;
    }
    .service-page_main .hero_section .hero_section_tilte_wrap {
        gap: 0;
    }
    .service-page_main .hero_section .hero_section_tilte_wrap h2 {
        text-align: center;
    }
    .service-page_main .hero_section .hero_section_tilte_wrap .contant_wrap {
        flex-direction: column;
    }
    .service-page_main .hero_section .hero_services_list .services_item ._item_title {
        line-height: 20px;
    }
    .service-page_main .hero_section .hero_services_list .services_item ._item_text_wrap p {
        line-height: 36px;
    }
    .service-page_main .hero_section::before {
        bottom: 0;
    }
    .service-page_main .section__problem {
        padding: 96px 0 40px;
    }
    .service-page_main .section__problem .problem__title {
        text-align: left;
    }
    .service-page_main .section__problem .problem__list .problem__item {
        align-items: flex-start;
        padding: 20px 0;
    }
    .service-page_main .section__problem .problem__list .problem__item .item__title {
        line-height: 20px;
    }
    .service-page_main .section__problem .problem__list .problem__item .item__text {
        text-align: left;
    }
    .service-page_main .section__problem .problem__list {
        gap: 0;
        margin-bottom: 40px;
    }
    .service-page_main .section__problem .problem_content {
        flex-direction: column;
    }
    .service-page_main .section__problem .problem_content p {
        line-height: 20px;
    }
    .service-page_main .section__problem .problem_content {
        margin: 0 auto 40px;
    }
    .service-page_main .section__problem .problem_example_list {
        flex-direction: column;
    }
    .service-page_main .section__problem::before {
        bottom: 0;
    }
    .service-page_main .sectioni__diagnostics {
        padding: 96px 0 40px;
    }
    .service-page_main .sectioni__diagnostics::before {
        bottom: 0;
    }
    .service-page_main .sectioni__diagnostics .diagnostics__title {
        font-size: 28px;
        line-height: 32px;
        text-align: left;
        margin-bottom: 40px;
    }
    .service-page_main .sectioni__diagnostics .diagnostics__list .diagnostics__item {
        flex-direction: column;
    }
    .service-page_main .sectioni__diagnostics .diagnostics__list .diagnostics__item .diagnostics__content .title {
        display: flex;
        gap: 16px;
        align-items: center;
        position: relative;
        font-size: 20px;
        line-height: 24px;
    }
    .service-page_main
        .sectioni__diagnostics
        .diagnostics__list
        .diagnostics__item
        .diagnostics__content
        .title::before {
        content: '';
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(238, 212, 255, 0.102);
    }
    .service-page_main
        .sectioni__diagnostics
        .diagnostics__list
        .diagnostics__item
        .diagnostics__content
        .title::after {
        content: '';
        width: 12px;
        height: 12px;
        border-radius: 50%;
        position: absolute;
        left: 8px;
        top: 50%;
        transform: translateY(-50%);
        background: #dda9ff;
    }
    .sectioni__diagnostics .dote__style {
        display: none;
    }
    .service-page_main .sectioni__diagnostics .diagnostics__list .diagnostics__item .diagnostics__content {
        gap: 16px;
    }
    .service-page_main .sectioni__diagnostics .diagnostics__list {
        gap: 40px;
    }
    .service-page_main .sectioni__diagnostics .diagnostics_img_list {
        flex-direction: column;
    }
    .service-page_main .sectioni__diagnostics .diagnostics_img_list .diagnostics_img_item {
        height: 200px;
        max-width: 370px;
        width: 100%;
    }
    .service-page_main .section_plan {
        padding: 96px 0 40px;
    }
    .service-page_main .section_plan::before {
        bottom: 0;
    }
    .service-page_main .section_plan .plan__title {
        line-height: 32px;
        text-align: left;
    }
    .service-page_main .section_plan .stage__list {
        align-items: flex-start;
        gap: 0;
        margin-bottom: 40px;
    }
    .service-page_main .section_plan .stage__list .stage__item {
        width: 100%;
        max-width: 100%;
        align-items: flex-start;
    }
    .service-page_main .section_plan .stage__list .stage__item .stage__text {
        text-align: left;
    }
    .service-page_main .section_plan .plan__list .dote__style {
        display: none;
    }
    .service-page_main .section_plan .plan__list .plan__item .item__content .title {
        margin-bottom: 16px;
        font-size: 20px;
        line-height: 24px;
        position: relative;
        display: flex;
        gap: 16px;
    }
    .service-page_main .section_plan .plan__list .plan__item .item__content .title::before {
        content: '';
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(238, 212, 255, 0.102);
    }
    .service-page_main .section_plan .plan__list .plan__item .item__content .title::after {
        content: '';
        width: 12px;
        height: 12px;
        border-radius: 50%;
        position: absolute;
        left: 8px;
        top: 50%;
        transform: translateY(-50%);
        background: #dda9ff;
    }
    .service-page_main .section_plan .plan__list {
        gap: 40px;
    }
    .service-page_main .section_plan .plan__list {
        margin: 0 auto 40px;
    }
    .service-page_main .section_plan .plan_img_list {
        margin-bottom: 40px;
        flex-direction: column;
    }
    .service-page_main .section_plan .list_1 .plan_img_item {
        max-width: 370px;
        width: 100%;
        height: 200px;
    }
    .service-page_main .section_plan .plan__list .plan__item .item__content .text {
        margin-bottom: 0;
    }
    .service-page_main .section_plan .list_2 .plan_img_item {
        max-width: 370px;
        width: 100%;
        height: 200px;
    }
    .service-page_main .result__section {
        margin-top: 0;
        padding: 96px 0 40px;
    }
    .service-page_main .result__section .hero_section_tilte_wrap h2 {
        font-size: 28px;
        line-height: 32px;
        text-align: left;
    }
    .service-page_main .result__section .result__list .result__item {
        padding: 20px 16px;
    }

    .content__item_nav--fixed {
        height: 44px;
        min-height: 44px;
        padding: 6px 16px;
    }
    .content__item_nav--fixed .nav_list {
        gap: 6px;
    }
    .content__item_nav--fixed .nav__link {
        height: 30px;
        padding: 5px 9px;
        font-size: 12px;
        line-height: 15px;
    }

    .about_main .hero__section {
        height: auto;
        min-height: 100svh;
    }
    .about_main .hero__section .about_container {
        min-height: 100svh;
        height: auto;
        flex-direction: column;
        justify-content: flex-end;
        padding: 120px 16px 40px;
    }

    .about_wrap .about_main .hero__section .content__item_text .__dote {
        display: none;
    }
    .about_main .hero__section .about_container .hero__content_wrap {
        display: contents;
    }
    .about_main .hero__section .about_container .hero__content_wrap .hero__content__item,
    .about_main .hero__section .about_container .hero__content_wrap .hero__content__item .content__item_title,
    .about_main
        .hero__section
        .about_container
        .hero__content_wrap
        .hero__content__item
        .content__item_title
        .about_hero_link_wrap {
        display: contents;
    }
    .about_main .hero__section .about_container .hero__content_wrap .hero__content__item .content__item_title h2 {
        order: 1;
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 16px;
    }
    .about_main .hero__section .about_container .content__item_text {
        order: 2;
        position: static;
        z-index: 100;
        max-width: 100%;
        margin-top: 0;
        margin-bottom: 16px;
        gap: 16px;
    }
    .about_main .hero__section .button-hover-wrap .button {
        max-width: 212px;
        width: 100%;
        min-height: 44px;
    }
    .about_main .hero__section .about_container .button-hover-wrap--appointment {
        order: 3;
        margin-bottom: 40px;
    }
    .about_main .hero__section .about_container .about_hero__socials {
        order: 4;
        width: 100%;
        justify-content: space-between;
    }
    .about_main .hero__section .about_container .content__item_text p {
        padding: 0;
        font-size: 14px;
        line-height: 20px;
    }
    .about_main .section__approach .approach__list {
        flex-direction: column;
    }
    .about_main .section__approach .approach__list .approach__item {
        width: 100%;
        max-width: 100%;
    }
    .about_main .section__approach .approach__title {
        margin-bottom: 24px;
    }
    .about_main .section__approach .approach__title h2 {
        font-size: 28px;
        line-height: 32px;
    }
    .about_main .section__approach .approach__list .approach__item {
        padding: 16px;
    }
    .about_main .section__approach .approach__list .approach__item .item__title {
        font-size: 20px;
        line-height: 24px;
    }
    .about_main .microscope {
        padding: 24px 0 0;
    }
    .about_main .diagnostics .diagnostics_header h2 {
        font-size: 28px;
        line-height: 32px;
        gap: 16px;
    }
    .about_main .diagnostics .diagnostics_header .diagnostics_header_text {
        flex-direction: column;
        max-width: 100%;
    }
    .about_main .diagnostics .diagnostics_header {
        margin-bottom: 24px;
    }
    .about_main .diagnostics .diagnostics_body .body__img {
        flex-direction: column;
    }
    .about_main .diagnostics .diagnostics_body .body__img img {
        height: 185px;
        max-width: 100%;
    }
    .about_main .diagnostics .diagnostics_body .body__list .body__item {
        gap: 16px;
    }
    .about_main .diagnostics .diagnostics_body .body__list .body__item .item__text .__title {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 4px;
    }

    .planning .planning_box .planning__list .planning__item {
        gap: 16px;
    }

    .about_main .diagnostics .diagnostics_body .body__list {
        gap: 8px;
    }
    .about_main .diagnostics .diagnostics_body .body__list .body__item {
        padding: 8px 0px;
    }
    .about_main .whitening .whitening_box .whitening_item h2 {
        font-size: 28px;
        line-height: 32px;
    }
    .about_main .whitening .whitening_box .whitening_item .whitening_item_list .whitening_item_item {
        padding: 8px 0;
    }
    .about_main .whitening {
        padding: 0;
    }
    .about_main .whitening .whitening_box .item_img_wrap {
        min-height: 272px;
    }
    .about_main
        .whitening
        .whitening_box
        .whitening_item
        .whitening_item_list
        .whitening_item_item
        .item_list_content
        .__title {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 4px;
    }
    .about_main .whitening .whitening_box .whitening_item .item__content_footer .content_footer_img {
        max-width: 108px;
    }
    .about_main .planning .planning_box .planning__header h2 {
        font-size: 28px;
        line-height: 32px;
    }
    .about_main .planning .planning_box .planning__header .header__text {
        flex-direction: column;
    }
    .about_main .planning .planning_box {
        gap: 24px;
    }
    .about_main .planning .planning_box .planning__img_list {
        flex-direction: column;
    }
    .about_main .planning .planning_box .planning__img_list .planning__img_item {
        width: 100%;
        height: 192px;
        max-width: 100%;
    }
    .about_main .planning .planning_box .planning__list .planning__item .item__text .__title {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 4px;
    }
    .about_main .planning .planning_box .planning__list .planning__item {
        padding: 8px 0;
    }
    .about_main .planning .planning_box .planning__list {
        gap: 0;
    }

    .about_main .about__banner img {
        width: max(260vw, 1100px);
    }

    .case .case_slick_wrap .case_slick_item .case-item-box .case-item_link {
        margin-left: auto;
        width: 120px;
        height: 36px;
        font-size: 14px;
    }
    .case .case_slick_wrap .case_slick_item .case-item-box .case-item_link {
        min-width: 157px;
    }
}

@media screen and (max-width: 540px) {
    .case .case_slick_wrap .case_slick_item .case-item-heading .case-item-box .case_slick_tilte {
        max-width: 128px;
    }
}

@media screen {
    .content-nav-sentinel {
        display: block;
        width: 100%;
        height: 0;
        pointer-events: none;
        visibility: hidden;
    }
    .content__item_nav--fixed {
        position: fixed;
        z-index: 9000;
        top: 0;
        right: 0;
        left: 0;
        display: flex;
        width: 100%;
        height: 48px;
        min-height: 48px;
        box-sizing: border-box;
        padding: 0px 0px 0px 16px;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);

        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
        background: rgba(0, 0, 0, 0.4);

        opacity: 0;
        pointer-events: none;
        contain: layout paint;
        backface-visibility: hidden;
        isolation: isolate;
        transform: translate3d(
            0,
            calc(var(--fixed-content-nav-offset, 0px) + var(--header-search-panel-height, 0px) - 100%),
            0
        );
        will-change: transform, opacity;
        transition:
            opacity 0.28s ease,
            transform 0.35s ease,
            background-color 0.35s ease,
            -webkit-backdrop-filter 0.35s ease;
        transition:
            opacity 0.28s ease,
            transform 0.35s ease,
            background-color 0.35s ease,
            backdrop-filter 0.35s ease;
        transition:
            opacity 0.28s ease,
            transform 0.35s ease,
            background-color 0.35s ease,
            backdrop-filter 0.35s ease,
            -webkit-backdrop-filter 0.35s ease;
    }
    .content__item_nav--fixed .nav_list {
        max-width: none;
        width: 100vw;
        height: 100%;
        display: flex;
        flex-wrap: nowrap;
        gap: 6px;
        align-items: center;
        justify-content: flex-start;
        min-width: 0;
        overflow: auto hidden;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
    }
    .content__item_nav--fixed .nav_list::-webkit-scrollbar {
        display: none;
    }
    .content__item_nav--fixed .nav__link {
        flex: 0 0 auto;
        display: inline-flex;
        height: 32px;
        align-items: center;
        padding: 6px 10px;
        border: 1px solid #dda9ff;
        border-radius: 28px;
        background: rgba(255, 255, 255, 0.04);
        font-size: 13px;
        font-weight: 300;
        line-height: 16px;
        white-space: nowrap;
        transition:
            background-color 0.25s ease,
            border-color 0.25s ease,
            color 0.25s ease,
            transform 0.25s ease;
    }
    .content__item_nav--fixed .nav__link:hover,
    .content__item_nav--fixed .nav__link.is-active {
        border-color: rgba(221, 169, 255, 0.7);
        background: rgba(221, 169, 255, 0.12);
        transform: translateY(-1px);
    }
    .content__item_nav--fixed .nav__text {
        display: none;
    }
    .content__item_nav--fixed.is-content-nav-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translate3d(
            0,
            calc(var(--fixed-content-nav-offset, 0px) + var(--header-search-panel-height, 0px)),
            0
        );
    }
    body.menu-open .content__item_nav--fixed,
    body.menu-open .content__item_nav--fixed.is-content-nav-visible,
    body.search-open .content__item_nav--fixed,
    body.search-open .content__item_nav--fixed.is-content-nav-visible {
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }
    @supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
        .content__item_nav--fixed {
            background: rgba(18, 18, 18, 0.96);
        }
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@supports not selector(:focus-visible) {
    a:focus,
    button:focus,
    input:focus,
    textarea:focus {
        outline: 2px solid rgba(221, 169, 255, 0.75);
        outline-offset: 3px;
    }
}

@media (hover: none) {
    a.button::after {
        width: 0;
        flex-basis: 0;
        margin-left: 0;
        opacity: 0;
        transform: translate3d(-6px, 6px, 0) scale(0.85);
    }
    a.button:hover::after {
        width: 0;
        flex-basis: 0;
        margin-left: 0;
        opacity: 0;
        transform: translate3d(-6px, 6px, 0) scale(0.85);
    }
}

/* Privacy policy page */
.privacy-policy {
    padding: clamp(150px, 15vw, 230px) 32px clamp(90px, 9vw, 140px);
}

.privacy-policy__container {
    min-width: 0;
    max-width: 1160px;
}

.privacy-policy__title {
    margin: 0px 0px 56px 0px;
    text-align: center;
    font-size: 48px;
    font-weight: 200;
}

.privacy-policy__intro {
    min-width: 0;
    max-width: 940px;
    margin: 0 auto clamp(38px, 4vw, 60px);
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.55;
}

.privacy-policy__intro p,
.privacy-policy__content p {
    margin: 0 0 14px;
}

.privacy-policy__content p {
    font-weight: 300;
}

.privacy-policy__intro p:last-child,
.privacy-policy__content p:last-child {
    margin-bottom: 0;
}

.privacy-policy__sections {
    min-width: 0;
    max-width: 940px;
    margin: 0 auto;
}

.privacy-policy__section {
    position: relative;
    max-width: 860px;
    margin: 0 auto 32px;
}

.privacy-policy__section:last-child {
    margin-bottom: 0;
}

.privacy-policy__section h2 {
    position: relative;
    margin: 0 0 12px;
    font-size: 32px;
    font-weight: 200;
}

.privacy-policy__section h2::before {
    content: '';
    position: absolute;
    top: 8px;
    left: -40px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dda9ff;
    box-shadow: 0 0 0 9px rgba(221, 169, 255, 0.12);
}

.privacy-policy__content {
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 300;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.privacy-policy__content ul,
.privacy-policy__content ol {
    margin: 14px 0;
    padding-left: 24px;
}

.privacy-policy__content a {
    color: #dda9ff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.privacy-policy_main::after {
    content: '';
    display: block;
    width: calc(100% - 80px);
    max-width: 1372px;
    height: 1px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 130px 0 80px;
    }

    .privacy-policy__title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .privacy-policy__section h2 {
        margin: 0 0 16px;
        font-size: 20px;
    }

    .privacy-policy__intro,
    .privacy-policy__sections {
        width: 100%;
        padding-left: 26px;
    }

    .privacy-policy__section h2::before {
        left: -26px;
        width: 9px;
        height: 9px;
        box-shadow: 0 0 0 6px rgba(221, 169, 255, 0.12);
    }

    .privacy-policy_main::after {
        width: calc(100% - 32px);
    }
}

/* 404 page */
.error-404_main {
    display: flex;
    min-height: clamp(640px, 72vw, 980px);
}

.error-404 {
    display: flex;
    width: 100%;
    padding: clamp(110px, 12vw, 190px) 0 clamp(90px, 10vw, 150px);
}

.error-404__container {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error-404__code {
    max-width: 100%;
    margin: 0;
    color: #dda9ff;
    font-family: 'Dela Gothic One', HelveticaNeue, Arial, sans-serif;
    font-size: 256px;
    font-weight: 400;
    letter-spacing: -0.075em;
    line-height: 1;
    white-space: nowrap;
    transform: translateX(-0.035em);
}

.error-404__title {
    max-width: 618px;
    margin-top: 48px;
    font-size: 20px;
    font-weight: 300;
}

.error-404__text {
    max-width: 618px;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 300;
    /* line-height: 1.5; */
}

.error-404__text p {
    margin: 0;
}

.error-404__spark {
    position: absolute;
    width: 40px;
    height: 40px;
    aspect-ratio: 1;
}

.error-404__spark--top {
    top: 4%;
    left: 66%;
}

.error-404__spark--bottom {
    bottom: 23%;
    left: 23%;
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .error-404_main {
        min-height: 620px;
    }

    .error-404__spark {
        display: none;
    }

    .error-404 {
        padding: 140px 0 100px;
    }

    .error-404__code {
        font-size: clamp(96px, 32vw, 128px);
    }

    .error-404__title {
        margin-top: 48px;
    }

    .privacy-policy__section {
        margin: 0 auto 40px;
    }
}

@media (max-width: 480px) {
    .footer .footer__nav_wrap {
        flex-wrap: wrap;
        row-gap: 32px;
    }

    .footer .footer__nav_wrap .footer_list_navigation,
    .footer .footer__nav_wrap .footer__contact-column {
        width: 100%;
        flex: 0 0 100%;
    }

    .footer .footer__nav_wrap .footer_list_navigation {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 20px;
    }

    .footer .footer__nav_wrap .footer__contact-column .footer_list_social {
        justify-content: flex-start;
    }

    .footer .footer__nav_wrap .footer__contact-column .footer_list_connection .phone_wrap {
        white-space: normal;
    }
}
