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

html {
    font-family: var(--font-primary), sans-serif;
    color: #222;
    font-size: 1em;
    line-height: 1.5;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html * {
    max-height: 1000000px;
}

body {
    margin: 0;
    position: relative;
    background: #fff;
    min-width: 320px;
}

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

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

mark {
    background: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

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

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
    border-radius: 0;
    -webkit-appearance: none;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

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

input {
    line-height: normal;
    border-radius: 0;
    -webkit-appearance: none;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"] {
    -webkit-appearance: textfield;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

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

td,
th {
    padding: 0;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #aeadad;
    opacity: 1;
    transition: all 0.2s ease-out;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #aeadad;
    opacity: 1;
    transition: all 0.2s ease-out;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #aeadad;
    opacity: 1;
    transition: all 0.2s ease-out;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #aeadad;
    opacity: 1;
    transition: all 0.2s ease-out;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
    color: transparent;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
    color: transparent;
}

/* ==========================================================================
   HELPER CLASSES
   ========================================================================== */
.container {
    margin: auto;
    width: 1200px;
    padding: 0 15px;
}

.hidden {
    display: none;
}

.unselectable {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

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

.clearfix:after {
    clear: both;
}

/*body::after{
	position:absolute;
	width:0;
	height:0;
	overflow:hidden;
	z-index:-1;
	content:
		url(img/youtube-hover.svg)
		url(img/telegram-hover.svg)
		url(img/whatsapp-hover.svg);
}*/

:root {
    --color-primary: #947aff;
}

.caption {
    color: #959595;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.title {
    color: #141414;
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 29px;
}

.more {
    display: inline-block;
    position: relative;
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.more span {
    position: absolute;
    right: 23px;
    top: 50%;
    transform: translate(0, -50%);
    white-space: nowrap;
    background: #fff;
    color: var(--color-primary);
    font-size: 13px;
    line-height: 10px;
    padding-bottom: 3px;
    transition: all 0.2s ease-out;
}

.more svg {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translate(0, -50%);
    fill: var(--color-primary);
    width: 9px;
    height: 9px;
    transition: all 0.2s ease-out;
}

.more:hover span {
    color: #232323;
}

.more:hover svg {
    fill: #232323;
}

.big-more {
    display: inline-flex;
    gap: 24px;
    align-items: center;
    text-decoration: none;
}

.big-more__text {
    font-size: 15px;
    font-weight: bold;
    line-height: 1.2;
    color: var(--color-primary);
    transition: all 0.2s ease-out;
}

.big-more__icon {
    position: relative;
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid var(--color-primary);
}

.big-more__icon span {
    position: absolute;
    width: 26px;
    height: 16px;
    top: 50%;
    right: 12px;
    transform: translate(0, -50%);
    background: #fff;
    transition: all 0.2s ease-out;
}

.big-more__icon span svg {
    position: absolute;
    right: -9px;
    top: 50%;
    transform: translate(0, -50%);
    width: 52px;
    height: 52px;
    stroke: var(--color-primary);
    transition: all 0.2s ease-out;
}

.big-more:hover .big-more__text {
    color: #232323;
}

.big-more:hover .big-more__icon svg {
    stroke: #232323;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    padding: 25px 0 82px;
}

.header__row {
    display: flex;
    align-items: center;
}

.header__logo {
    color: #262627;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    text-decoration: none;
}

.header__logo svg {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.header__logo svg path {
    fill: var(--color-primary);
}

.header__description {
    color: #141414;
    margin-left: 26px;
    font-size: var(--font-size-base);
    line-height: 1.2;
}

.header__phone {
    white-space: nowrap;
    color: #131313;
    font-size: 17px;
    font-weight: bold;
    line-height: 1.412;
    margin-left: auto;
}

.header__phone a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease-out;
}

.header__phone a:hover {
    color: #959595;
}

.header__buttons {
    margin-left: 31px;
    display: flex;
    gap: 4px;
}

.header__button-outline {
    height: 35px;
    display: inline-flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid var(--color-primary);
    border-radius: 15px;
    text-decoration: none;
    color: #0e0e0e;
    font-size: var(--font-size-base);
    line-height: 1;
    padding-bottom: 3px;
    white-space: nowrap;
    transition: all 0.2s ease-out;
}

.header__button-outline:hover {
    background: var(--color-primary);
    color: #fff;
}

.header__button-fill {
    min-width: 150px;
    height: 35px;
    display: inline-flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    font-size: var(--font-size-base);
    line-height: 1;
    padding-bottom: 3px;
    white-space: nowrap;
    transition: all 0.2s ease-out;
}

.header__button-fill:hover {
    background: transparent;
    color: #0e0e0e;
}

.header__icons {
    gap: 16px;
    margin-left: 80px;
    display: flex;
    align-items: center;
}

.header__icon {
    position: relative;
}

.header__icon svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.header__icon-phone {
    width: 21px;
    height: 21px;
    /*background: url(img/icon-max.webp) no-repeat center;*/
    /*background-size: 100% auto;*/
    display: none;
}

.header__icon-phone svg {
    fill: #959494;
}

/*.header__icon-visually-impaired {*/
/*    width: 27px;*/
/*    height: 18px;*/
/*    background: url(img/icon-visually-impaired.webp) no-repeat center/cover;*/
/*}*/

/*.header__icon-visually-impaired svg {*/
/*    display: none;*/
/*}*/

.header__icon-visually-impaired {
    width: 31px;
    height: 31px;
}

.header__icon-visually-impaired svg path {
    fill: #959494;
    transition: all 0.2s ease-out;
}

.header__icon-visually-impaired:hover svg path {
    fill: #000;
}

.header__icon-search {
    width: 24px;
    height: 24px;
    margin-right: 2px;
}

.header__icon-search svg path {
    fill: #959494;
    transition: all 0.2s ease-out;
}

.header__icon-search:hover svg path {
    fill: #000;
}

.header__icon-profile {
    width: 19px;
    height: 22px;
}

.header__icon-profile svg path {
    fill: var(--color-primary);
    transition: all 0.2s ease-out;
}

.header__icon-profile:hover svg path {
    fill: #000;
}

.header__nav {
    position: absolute;
    top: 93px;
    left: 0;
    right: 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    background: #fff;
    box-shadow: 0 9px 29px 0 rgba(0, 0, 0, 0.1);
    font-size: 17px;
    color: #141414;
    line-height: 1.412;
}

.header__nav a {
    text-decoration: none;
    color: inherit;
    height: 56px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease-out;
}

.header__nav a:hover {
    color: var(--color-primary);
}

.header__nav ul {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.header__nav li.parent > a svg {
    margin-left: 6px;
    margin-top: 4px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    transition: all 0.2s ease-out;
}

.header__nav li.parent:hover > a svg {
    transform: rotate(180deg);
}

.header__nav li.parent {
    position: relative;
}

.header__nav li.parent:hover > a {
    color: var(--color-primary);
}

.header__nav li.parent ul {
    white-space: nowrap;
    display: block;
    position: absolute;
    z-index: 3;
    left: -26px;
    top: 56px;
    background: #fff;
    box-shadow: 0 6px 15.52px 0.48px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8e8e8;
    font-size: 17px;
    line-height: 1.2;
    color: #1e1e1e;
    border-radius: 0 0 10px 10px;
    padding: 15px 0 18px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-out;
}

.header__nav li.parent:hover ul {
    opacity: 1;
    visibility: visible;
}

.header__nav li.parent ul li + li {
    margin-top: 11px;
}

.header__nav li.parent ul a {
    height: auto;
    padding: 0 40px;
    position: relative;
}

.header__nav li.parent ul a svg {
    position: absolute;
    left: 18px;
    top: 4px;
    width: 13px;
    height: 13px;
    transition: all 0.2s ease-out;
    opacity: 0;
    fill: var(--color-primary);
}

.header__nav li.parent ul a:hover svg {
    opacity: 1;
}

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    box-shadow: -0.105px -1.997px 8.55px 0.45px rgba(0, 0, 0, 0.13);
    border-radius: 10px 10px 0 0;
}

.nav__item {
    flex-grow: 1;
    height: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    color: #333;
    font-size: 11px;
    line-height: 1;
}

.nav__item svg {
    height: 18px;
    width: auto;
    fill: #787878;
}

.nav__item.active svg {
    fill: var(--color-primary);
}

/* ==========================================================================
   MAIN
   ========================================================================== */
.main {
    padding: 11px 0 29px;
}

.main__columns {
    display: flex;
    gap: 9px;
}

.main__column-left {
    width: 700px;
    flex-shrink: 0;
}

.main__column-right {
    flex-grow: 1;
}

.main__slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.main__slide {
    min-height: 500px;
    position: relative;
    padding: 74px 380px 100px 36px;
    background: #d9e4f7 no-repeat center/cover;
}

.main__label {
    position: absolute;
    top: 38px;
    right: 17px;
    font-size: 18px;
    color: #121212;
    line-height: 1.2;
    border-radius: 15px;
    background: #fcfcfe;
    height: 35px;
    display: flex;
    align-items: center;
    padding: 0 27px 3px;
}

.main__title {
    font-size: 40px;
    color: #212121;
    font-weight: bold;
    line-height: 1.2;
}

.main__title span {
    color: #fff;
}

.main__text {
    margin-top: 27px;
    color: #0d0d0d;
    font-size: 20px;
    line-height: 1.2;
}

.main__nav {
    position: absolute;
    z-index: 1;
    left: 82px;
    bottom: 43px;
    display: flex;
    gap: 27px;
}

.main__prev,
.main__next {
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.502);
    width: 51px;
    height: 51px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease-out;
}

.main__prev:before,
.main__next:before {
    content: '';
    position: absolute;
    background: no-repeat center/cover;
    width: 32px;
    height: 32px;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

.main__prev:before {
    background-image: url(img/icon-prev.svg);
    transform: translate(-2px, 0);
}

.main__next:before {
    background-image: url(img/icon-next.svg);
    transform: translate(2px, 0);
}

.main__prev:hover,
.main__next:hover {
    background-color: var(--color-primary)
}

.main__images {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;   
}

.main__image {
    flex-grow: 1;
    border-radius: 20px;
    background: no-repeat center/cover;
}

.main__items {
    margin-top: 32px;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, 1fr);
}

.main__item {
    border: 1px solid #d1d1d1;
    border-radius: 20px;
    padding: 18px 50px 16px 70px;
}

.main__caption {
    font-size: 45px;
    color: rgb(10, 10, 10);
    line-height: 30px;
    margin-bottom: 10px;
    position: relative;
    display: flex;
    gap: 12px;
}

.main__caption span,
.main__caption i {
    display: inline-block;
    vertical-align: top;
    font-size: 36px;
    color: var(--color-primary);
    font-weight: bold;
    line-height: 1;
    position: relative;
    top: -18px;
}

.main__caption i {
    font-style: normal;
    font-size: 24px;
    top: -13px;
}

.main__description {
    font-size: var(--font-size-base);
    color: #131313;
    line-height: 1.2;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services {
    padding: 30px 0 32px;
    background: #f2f6fc;
}

.services.services_inner {
    background: none;
    padding-top: 40px;
}

.services__section-tabs {
    display: flex;
    background: #fff;
    border-radius: 15px;
    gap: 4px;
}

.services__section-tab {
    color: #0b0b0b;
    font-size: 17px;
    line-height: 1.412;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    border-radius: 15px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease-out;
}

.services__section-tab:hover {
    background: var(--color-primary);
    color: #fff;
}

.services__section-tab.active {
    background: var(--color-primary);
    color: #fff;
    cursor: default;
}

.services__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.services__category-tabs {
    display: flex;
    background: #fff;
    border-radius: 15px;
}

.services__category-tab {
    color: #959595;
    font-size: 17px;
    line-height: 1.412;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    border-radius: 15px;
    background: #fff;
    padding: 0 30px;
    border: 1px solid #fff;
    cursor: pointer;
    transition: all 0.2s ease-out;
}

.services__category-tab.active {
    cursor: default;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.services__category-tab:hover {
    color: var(--color-primary);
}

.services__wrapper {
    padding: 23px 21px;
    background: #fff;
    border-radius: 15px;
}

.services__form {
    margin-bottom: 22px;
}

.services__input {
    display: block;
    width: 100%;
    height: 45px;
    border: 1px solid #a2a2a2;
    background: #fff url(img/icon-search.svg) no-repeat 28px center;
    background-size: 22px 22px;
    border-radius: 23px;
    padding: 0 23px 0 64px;
    outline: none;
}

.services__block {
    display: none;
}

.services__block.active {
    display: block;
}

.services__columns {
    display: grid;
    gap: 22px 50px;
    grid-template-columns: 1fr 1fr 1fr;
}

.services__box {
    display: flex;
}

.services__letter {
    width: 43px;
    flex-shrink: 0;
    margin-right: 20px;
    color: var(--color-primary);
    border-right: 1px dashed var(--color-primary);
    font-size: 18px;
    font-weight: bold;
    line-height: 1.333;
    padding-left: 8px;
}

.services__block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 17px;
    color: rgb(20, 20, 20);
    line-height: 1.24;
}

.services__block ul a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease-out;
}

.services__block ul a:hover {
    color: var(--color-primary);
}

.services__box + .services__box {
    margin-top: 22px;
}

/* ==========================================================================
   DIRECTIONS
   ========================================================================== */
.directions {
    padding: 46px 0 36px;
}

.directions.directions_inner {
    padding-top: 0;
}

.directions__title .title {
    margin-bottom: 0;
}

.directions__top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 44px;
    gap: 10px;
}

.directions__all {
    font-size: 15px;
    font-weight: bold;
    line-height: 1.6;
    white-space: nowrap;
}

.directions__all a {
    text-decoration: none;
    color: var(--color-primary);
    transition: all 0.2s ease-out;
}

.directions__all a:hover {
    color: #959595;
}

.directions__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px 12px;
}

.direction-preview {
    position: relative;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 9px 29px 0 rgba(0, 0, 0, 0.1);
    padding: 11px 70px 19px 15px;
    text-decoration: none;
    transition: all 0.2s ease-out;
}

.direction-preview:hover {
    box-shadow: 0 11px 15.3px 2.7px rgba(0, 0, 0, 0.09);
}

.direction-preview__arrow {
    display: block;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid #959595;
    margin-bottom: 26px;
    /*background: url(img/icon-arrow.webp) no-repeat center;*/
    background: url(img/icon-arrow.svg) no-repeat center;
    background-size: 22px 22px;
    transform: rotate(51deg);
    transition: all 0.2s ease-out;
}

.direction-preview:hover .direction-preview__arrow {
    background-color: var(--color-primary);
    background-image: url(img/icon-arrow-white.svg);
}

.direction-preview__icon {
    top: 15px;
    right: 9px;
    width: 72px;
    position: absolute;
}

.direction-preview__icon img {
    display: block;
    width: 100%;
    height: auto;
}

.direction-preview__name {
    color: #141414;
    font-size: 22px;
    line-height: 1;
    margin-bottom: 12px;
    transition: all 0.2s ease-out;
}

.direction-preview__description {
    color: #817f7f;
    font-size: 15px;
    line-height: 1.2;
}

.direction-preview__num {
    position: absolute;
    right: 15px;
    bottom: 15px;
    font-size: 15px;
    line-height: 1.2;
    color: var(--color-primary);
}

/* ==========================================================================
   SPECIALISTS
   ========================================================================== */
.specialists {
    padding: 30px 0 40px;
}

.specialists.specialists_inner {
    padding-bottom: 0;
}

.specialists__carousel .swiper {
    padding: 17px;
    margin: -17px;
}

.specialists__carousel .swiper-slide {
    height: auto;
}

.specialist-preview {
    display: flex;
    height: 100%;
    flex-direction: column;
    text-decoration: none;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid #ddd;
    transition: all 0.2s ease-out;
}

.specialist-preview:hover {
    box-shadow: 0 0 17px rgba(0, 0, 0, 0.17);
}

.specialist-preview__img {
    margin-bottom: -10px;
    padding-top: 71.5%;
    position: relative;
}

.specialist-preview__img img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.specialist-preview__block {
    padding: 10px 14px 17px;
    border-radius: 10px;
    background-color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.specialist-preview__name {
    color: #131313;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 8px;
}

.specialist-preview__description {
    font-size: 15px;
    line-height: 1.2;
    color: #181818;
    flex-grow: 1;
}

.specialist-preview__row {
    margin-top: 6px;
    display: flex;
    justify-content: space-between;
}

.specialist-preview__experience {
    color: #959595;
    font-size: 15px;
    line-height: 1.2;
}

.specialist-preview__price {
    font-size: 15px;
    color: #1a1a1a;
    line-height: 1.2;
}

.specialist-preview__button {
    font-size: 15px;
    color: #fff;
    line-height: 1.2;
    text-align: center;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 15px;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    text-decoration: none;
    margin-top: 13px;
    transition: all 0.2s ease-out;
}

.specialist-preview__button:hover {
    background-color: #fff;
    color: #101010;
}

.carousel-control {
    display: flex;
    align-items: center;
    gap: 23px;
}

.specialists .carousel-control {
    margin-top: 32px;
}

.carousel-control__dots {
    flex-grow: 1;
}

.carousel-control__caption {
    font-size: 15px;
    font-weight: bold;
    line-height: 1.6;
    white-space: nowrap;
}

.carousel-control__caption a {
    text-decoration: none;
    color: var(--color-primary);
    transition: all 0.2s ease-out;
}

.carousel-control__caption a:hover {
    color: #959595;
}

.carousel-control__nav {
    display: flex;
    gap: 19px;
}

.carousel-control__prev,
.carousel-control__next {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #858585;
    background: url(img/icon-arrow.svg) no-repeat center;
    background-size: 22px 22px;
    cursor: pointer;
    transition: all 0.2s ease-out;
}

.carousel-control__prev.swiper-button-disabled,
.carousel-control__next.swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
}

.carousel-control__next {
    transform: rotate(-180deg);
}

.carousel-control__prev:not(.swiper-button-disabled):hover,
.carousel-control__next:not(.swiper-button-disabled):hover {
    background-image: url(img/icon-arrow-white.svg);
    background-color: var(--color-primary);
}

.carousel-control__scrollbar {
    flex-grow: 1;
    position: relative;
    height: 3px;
}

.carousel-control__scrollbar:before {
    content: '';
    position: absolute;
    top: 1px;
    height: 1px;
    left: 0;
    right: 0;
    background: #efefef;
}

.carousel-control .carousel-control__scrollbar .swiper-scrollbar-horizontal {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
}

.carousel-control .carousel-control__scrollbar .swiper-scrollbar-drag {
    background-color: var(--color-primary);
    border-radius: 0;
    height: 3px;
    cursor: pointer;
}

.carousel-control .carousel-control__pagination.swiper-pagination-bullets {
    display: flex;
    gap: 0;
    position: relative;
    flex-grow: 1;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
}

.carousel-control__pagination:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 1px;
    height: 1px;
    background: #d1d1d1;
}

.carousel-control .carousel-control__pagination .swiper-pagination-bullet {
    flex-grow: 1;
    height: 3px;
    width: auto;
    background: transparent;
    opacity: 1;
    border-radius: 0;
    margin: 0 !important;
    position: relative;
}

.carousel-control .carousel-control__pagination .swiper-pagination-bullet-active {
    background: var(--color-primary);
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about {
    border-top: 1px solid #d1d1d1;
    border-bottom: 1px solid #d1d1d1;
    padding: 47px 0 72px;
}

.about__wrapper {
    padding-left: 17px;
}

.about__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.about__top .caption {
    margin-bottom: 0;
}

.about .title {
    font-weight: bold;
}

.about__img {
    padding-top: 60%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about__img img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__column-left {
    width: 447px;
    flex-shrink: 0;
}

.about__column-right {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.about__columns {
    display: flex;
    gap: 80px;
}

.about__text {
    color: #0e0e0e;
    font-size: 15px;
    line-height: 1.6;
    max-width: 581px;
}

.about__items {
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr 1fr;
    margin-top: 32px;
}

.about__item {
    border-radius: 25px;
}

.about__item_fill {
    padding: 36px;
    background: var(--color-primary);
}

.about__item_outline {
    padding: 28px 18px 21px 21px;
    border: 1px solid var(--color-primary);
}

.about__num {
    font-size: 80px;
    color: #fff;
    line-height: 55px;
    margin-bottom: 29px;
}

.about__description {
    color: #0e0e0e;
    font-size: 17px;
    line-height: 1.2;
}

.about__item_fill .about__description {
    color: #fff;
}

.about__caption {
    font-size: 30px;
    color: #0e0e0e;
    line-height: 1.2;
    margin-bottom: 19px;
}

/* ==========================================================================
   NEWS
   ========================================================================== */
.news {
    padding: 45px 0 18px;
}

.news .title {
    max-width: 670px;
}

.news .swiper {
    padding: 23px;
    margin: -23px;
}

.news .swiper-slide {
    height: auto;
}

.novelty-preview {
    display: block;
    text-decoration: none;
    border-radius: 20px;
    background: #fff;
    transition: all 0.2s ease-out;
}

.novelty-preview:hover {
    box-shadow: 0 0 23px rgba(0, 0, 0, 0.17);
}

.novelty-preview__cover {
    position: relative;
}

.novelty-preview__img {
    padding-top: 56%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.novelty-preview__img img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.novelty-preview__date {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 15px;
    bottom: 9px;
    height: 29px;
    padding: 0 14px;
    border-radius: 15px;
    font-size: 14px;
    color: #191919;
    line-height: 1.714;
    background-color: rgba(254, 254, 254, 0.749);
}

.novelty-preview__block {
    padding: 25px 5px 15px;
    position: relative;
}

.novelty-preview__block:before {
    content: '';
    position: absolute;
    top: 24px;
    right: 5px;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #959595;
    margin-bottom: 26px;
    background: url(img/icon-arrow.svg) no-repeat center;
    background-size: 22px 22px;
    transform: rotate(-40deg);
    transition: all 0.2s ease-out;
}

.novelty-preview:hover .novelty-preview__block:before {
    background-image: url(img/icon-arrow-white.svg);
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    transform: rotate(140deg);
}

.novelty-preview__name {
    font-size: 20px;
    color: #141414;
    line-height: 1.2;
    padding-right: 60px;
}

.novelty-preview__description {
    color: #8d8c8c;
    font-size: var(--font-size-base);
    line-height: 1.2;
    margin-top: 18px;
}

.news .carousel-control {
    margin-top: 21px;
}

/* ==========================================================================
   STOCKS
   ========================================================================== */
.stocks {
    padding: 45px 0 29px;
}

.stocks.stocks_inner {
    padding: 15px 0 50px;
}

.stocks__top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px;
}

.stocks__top .title {
    margin-bottom: 0;
}

.stocks__items {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(4, 1fr);
}

.stock-big-preview {
    text-decoration: none;
    background: no-repeat center/cover;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 23px 25px 35px 20px;
    transition: all 0.2s ease-out;
}

.stock-big-preview:hover {
    box-shadow: 0 3px 24.5px 0.5px rgba(0, 0, 0, 0.17);
}

.stocks__items .stock-big-preview {
    grid-column: span 2;
}

.stock-big-preview__date {
    padding: 0 13px;
    font-size: 15px;
    color: #0f0f0f;
    line-height: 1.2;
    text-decoration: none;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 20px;
    margin-bottom: 30px;
}

.stock-big-preview__name {
    font-size: 24px;
    color: #060606;
    line-height: 1.2;
    max-width: 295px;
    margin-bottom: 25px;
}

.stock-big-preview__description {
    max-width: 295px;
    color: #060606;
    font-size: 18px;
    line-height: 1.2;
}

.stock-big-preview__more {
    margin-top: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
    border-radius: 15px;
    font-size: 18px;
    color: #fff;
    line-height: 1.2;
    padding: 0 26px 3px;
    transition: all 0.2s ease-out;
}

.stock-big-preview:hover .stock-big-preview__more {
    color: #151515;
    background: transparent;
}

.stock-mini-preview {
    display: block;
    text-decoration: none;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #ddd;
    transition: all 0.2s ease-out;
}

.stock-mini-preview:hover {
    box-shadow: 0 3px 24.5px 0.5px rgba(0, 0, 0, 0.17);
}

.stock-mini-preview__cover {
    position: relative;
}

.stock-mini-preview__discount {
    position: absolute;
    left: 9px;
    bottom: 4px;
    font-size: var(--font-size-base);
    font-weight: bold;
    line-height: 1.2;
    color: #090909;
    height: 23px;
    padding: 1px 11px 0;
    background: #eada04;
    border-radius: 5px;
}

.stock-mini-preview__img {
    padding-top: 63.5%;
    position: relative;
    overflow: hidden;
}

.stock-mini-preview__img img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stock-mini-preview__block {
    padding: 20px 9px 21px;
    position: relative;
}

.stock-mini-preview__block:before {
    content: '';
    position: absolute;
    top: 5px;
    right: 12px;
    display: block;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    border: 1px solid #959595;
    margin-bottom: 26px;
    background: url(img/icon-arrow.svg) no-repeat center;
    background-size: 17px 17px;
    transform: rotate(-40deg);
    transition: all 0.2s ease-out;
}

.stock-mini-preview:hover .stock-mini-preview__block:before {
    background-image: url(img/icon-arrow-white.svg);
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    transform: rotate(140deg);
}

.stock-mini-preview__date {
    color: #959595;
    font-size: 15px;
    line-height: 1.2;
    margin-bottom: 15px;
    padding-right: 50px;
}

.stock-mini-preview__name {
    color: #1c1c1c;
    font-size: 20px;
    line-height: 1.1;
    margin-bottom: 6px;
}

.stock-mini-preview__description {
    color: #959595;
    font-size: var(--font-size-base);
    line-height: 1.2;
}

.stocks__all {
    font-size: 15px;
    font-weight: bold;
    line-height: 1.6;
    white-space: nowrap;
}

.stocks__all a {
    text-decoration: none;
    color: var(--color-primary);
    transition: all 0.2s ease-out;
}

.stocks__all a:hover {
    color: #959595;
}

/* ==========================================================================
   STOCK
   ========================================================================== */
.stock {
    padding: 30px 0;
}

.stock__wrapper {
    border-radius: 20px;
    background: no-repeat center/cover;
    padding: 55px 24px 66px;
}

.stock .title {
    font-weight: bold;
    margin-bottom: 25px;
}

.stock__term {
    color: #0f0f0f;
    font-size: 15px;
    line-height: 1.2;
    padding: 11px;
    background: #fff;
    border-radius: 20px;
    margin-bottom: 25px;
}

.stock__description {
    color: #959595;
    font-size: 18px;
    line-height: 1.2;
}

.stock__content {
    max-width: 584px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stock__text {
    padding: 40px 24px 0;
    font-size: 17px;
    color: #090909;
    line-height: 1.2;
}

.stock__text > *:first-child {
    margin-top: 0;
}

.stock__text > *:first-child {
    margin-bottom: 0;
}

.stock__text ul li::marker {
    color: var(--color-primary);
}

/* ==========================================================================
   RATING
   ========================================================================== */
.rating {
    padding: 45px 0 33px;
}

.rating__items {
    display: flex;
    gap: 14px;
}

.rating__item {
    flex-shrink: 0;
    border: 1px solid #c6c6c6;
    border-radius: 5px;
    padding: 0 12px;
    height: 80px;
    display: flex;
    align-items: center;
    gap: 17px;
}

.rating__value {
    color: #151515;
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
}

.rating__logo {
    position: relative;
    top: 2px;
}

.rating__logo img {
    display: block;
    max-width: 100%;
    height: auto;
}

.rating__wrapper {
    overflow-y: auto;
}

.rating__carousel .carousel-control {
    margin-top: 25px;
}

.rating .rating__scrollbar .swiper-scrollbar-horizontal {
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
}

.rating .rating__scrollbar .swiper-scrollbar-drag {
    background: #e8e8e8;
    cursor: pointer;
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews {
    padding: 45px 0 59px;
}

.review-preview {
    height: 100%;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 13px 20px 26px 21px;
}

.review-preview__top {
    gap: 17px;
    display: flex;
    align-items: center;
    margin-bottom: 17px;
}

.review-preview__logo {
    max-width: 114px;
    position: relative;
    top: 2px;
}

.review-preview__logo img {
    display: block;
    max-width: 100%;
    height: auto;
}

.review-preview__name {
    color: #060606;
    font-size: var(--font-size-base);
    line-height: 1.5;
}

.review-preview__rating {
    display: flex;
    gap: 2px;
    margin-left: auto;
}

.review-preview__rating i {
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    background: url(img/icon-star.svg) no-repeat center/cover;
}

.review-preview__text {
    color: #171717;
    font-size: 15px;
    line-height: 1.2;
}

.review-preview__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 108px;
    margin-top: 35px;
}

.review-preview__name {
    color: #0f0f0f;
    font-size: var(--font-size-base);
    font-weight: bold;
    line-height: 1.2;
}

.review-preview__staff {
    color: #959595;
    font-size: 14px;
    line-height: 1.2;
}

.reviews__carousel .carousel-control {
    margin-top: 32px;
}

.reviews__carousel .swiper-slide {
    height: auto;
}

/* ==========================================================================
   LICENSES
   ========================================================================== */
.licenses {
    background: #e5f0f5;
    padding: 25px 0 35px;
}

.licenses__columns {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.licenses__column-left {
    width: 565px;
    flex-shrink: 0;
}

.licenses__column-right {
    display: flex;
    gap: 225px;
}

.licenses .more span {
    background-color: #e5f0f5;
}

.licenses__caption {
    color: #141414;
    font-size: 20px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 9px;
}

.licenses__text {
    color: #959595;
    font-size: 15px;
    line-height: 1.2;
}

/* ==========================================================================
   CONTACTS
   ========================================================================== */
.contacts {
    padding: 60px 0 35px;
}

.contacts__wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 460px;
}

.contacts__items {
    position: absolute;
    z-index: 1;
    width: 387px;
    top: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #ddd;
}

.contacts__item {
    cursor: pointer;
    padding: 14px 8px 20.5px;
    position: relative;
    transition: all 0.2s ease-out;
}

.contacts__icon {
    position: absolute;
    top: 11px;
    right: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    /*border: 1px solid var(--color-primary);*/
    transition: all 0.2s ease-out;
}

.contacts__item:hover .contacts__icon {
    background: var(--color-primary);
}

.contacts__icon span {
    position: absolute;
    width: 29px;
    height: 13px;
    top: 50%;
    right: 11px;
    transform: translate(0, -50%);
    transition: all 0.2s ease-out;
}

.contacts__item:hover .contacts__icon span {
    background: transparent;
}

.contacts__icon i svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    stroke: var(--color-primary);
}

.contacts__icon span svg {
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translate(0, -50%);
    width: 42px;
    height: 42px;
    stroke: var(--color-primary);
    transition: all 0.2s ease-out;
}

.contacts__item:hover .contacts__icon span svg {
    stroke: #fff;
}

.contacts__item + .contacts__item {
    border-top: 1px solid #ddd;
}

.contacts__item:hover {
    background: #e8e8e8;
}

.contacts__map {
    position: absolute;
    width: 809px;
    right: 0;
    top: 0;
    bottom: 0;
    background: #ccc;
}

.contacts__caption {
    color: #060606;
    font-size: var(--font-size-base);
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 10px;
}

.contacts__text {
    color: #060606;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 2px;
}

.contacts__phone {
    color: #959595;
    font-size: 15px;
    line-height: 1.6;
}

.contacts__phone a {
    color: #959595;
    text-decoration: none;
}

.contacts__blocks {
    position: absolute;
    z-index: 1;
    left: 0;
    width: 387px;
    height: 100%;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    display: none;
}

.contacts__block {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #ddd;
}

.contacts__title {
    color: #060606;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    border-bottom: 1px solid #ddd;
    padding: 20px 30px;
    margin-bottom: 23px;
}

.contacts__content {
    padding: 0 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.contacts__label {
    color: #959595;
    font-size: 14px;
    line-height: 1.2;
}

.contacts__address {
    color: #060606;
    font-size: var(--font-size-base);
    line-height: 1.2;
}

.contacts__section + .contacts__section {
    margin-top: 24px;
}

.contacts__shedule {
    color: #060606;
    font-size: var(--font-size-base);
    line-height: 1.2;
}

.contacts__shedule table {
    margin-top: -1px;
}

.contacts__shedule td {
    padding-left: 29px;
    padding-top: 4px;
}

.contacts__shedule td:first-child {
    padding-left: 0;
}

.contacts__phone {
    color: #060606;
    font-size: var(--font-size-base);
    line-height: 1.2;
    font-weight: bold;
}

.contacts__phone a {
    text-decoration: none;
    color: var(--color-primary);
}

.contacts__email {
    color: #060606;
    font-size: var(--font-size-base);
    line-height: 1.2;
}

.contacts__email a {
    color: inherit;
    text-decoration: none;
}

.contacts__back {
    padding-top: 24px;
    margin-top: auto;
    color: #676767;
    font-size: 14px;
    line-height: 1.2;
}

.contacts__back a {
    text-decoration: none;
    color: inherit;
    padding-left: 21px;
    position: relative;
}

.contacts__back a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 10px;
    height: 10px;
    background: url(img/icon-arrow.svg) no-repeat center/cover;
    transform: rotate(180deg);
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery {
    padding: 50px 0 70px;
}

.gallery__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 33px;
}

.gallery__top .title {
    margin-bottom: 0;
}

.gallery__items {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, 1fr);
}

.gallery__img {
    display: block;
    padding-top: 95%;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.gallery__img img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.2s ease-out;
}

.gallery__img:hover img {
    transform: scale(1.1);
}

.gallery__item_increased {
    grid-column: span 2;
}

.gallery__item_increased .gallery__img {
    padding-top: 46.1%;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: #e5f0f5;
}

.footer__top {
    padding: 40px 0;
    display: flex;
    align-items: center;
}

.footer__socialize {
    margin-left: auto;
}

.footer__phone {
    color: #121212;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
}

.footer__phone a {
    color: inherit;
    text-decoration: none;
}

.footer__buttons {
    margin-left: 22px;
    display: flex;
    gap: 15px;
}

.footer__button-outline {
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 36px 2px;
    border-radius: 15px;
    border: 1px solid var(--color-primary);
    text-decoration: none;
    color: #121212;
    line-height: 1.2;
    transition: all 0.2s ease-out;
}

.footer__button-outline:hover {
    background: var(--color-primary);
    color: #fff;
}

.footer__button-fill {
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 36px 2px;
    border-radius: 15px;
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
    text-decoration: none;
    color: #fff;
    line-height: 1.2;
    transition: all 0.2s ease-out;
}

.footer__button-fill:hover {
    background-color: transparent;
    color: #121212;
}

.socialize {
    display: flex;
    gap: 17px;
}

.socialize__item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-primary);
    position: relative;
    transition: all 0.2s ease-out;
}

.socialize__item:hover {
    background-color: var(--color-primary);
}

.socialize__item svg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    fill: var(--color-primary);
    transition: all 0.2s ease-out;
}

.socialize__item:hover svg {
    fill: #fff;
}

.socialize__item_ok svg {
    width: 28px;
    height: 28px;
}

.socialize__item_dz svg {
    width: 27px;
    height: 27px;
}

.socialize__item_vk svg {
    width: 32px;
    height: 32px;
}

.socialize__item_tg svg {
    width: 28px;
    height: 28px;
}

.socialize__item_mx svg {
    width: 25px;
    height: 25px;
}

.footer__middle {
    padding: 30px 0;
    box-shadow: 0 2px 20.37px 0.63px rgba(0, 0, 0, 0.05);
}

.footer__columns {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

.footer__caption {
    color: #010101;
    font-size: 18px;
    line-height: 1.2;
}

.footer__caption a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease-out;
}

.footer__caption a:hover {
    color: var(--color-primary);
}

.footer__caption + .footer__caption {
    margin-top: 7px;
}

.footer__nav {
    color: #696868;
    font-size: var(--font-size-base);
    line-height: 1.2;
}

.footer__caption + .footer__nav {
    margin-top: 9px;
}

.footer__nav ul {
    display: block;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

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

.footer__nav a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease-out;
}

.footer__nav a:hover {
    color: var(--color-primary);
}

.footer__bottom {
    padding: 25px 0;
}

.footer__block {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

.footer__right {
    width: 630px;
    flex-shrink: 0;
}

.footer__info {
    color: #696868;
    font-size: var(--font-size-base);
    line-height: 1.2;
}

.footer__visually-impaired {
    color: #333;
    font-size: var(--font-size-base);
    line-height: 1.2;
    margin-bottom: 10px
}

.footer__visually-impaired a {
    color: inherit;
    text-decoration: none;
}

.footer__copyright {
    margin-top: 13px;
    color: #333;
    font-size: var(--font-size-base);
    line-height: 1.2;
}

.footer__policy {
    color: #333;
    font-size: var(--font-size-base);
    line-height: 1.2;
}

.footer__policy a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    transition: all 0.2s ease-out;
}

.footer__policy a:hover {
    text-decoration-color: transparent;
}

/* ==========================================================================
   POPUP
   ========================================================================== */
.popups {
    display: none;
}

.popup {
    background: #fff;
    position: relative;
    max-width: 480px;
    margin: 32px auto;
    border-radius: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.popup__close {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 20px;
    right: 20px;
    overflow: hidden;
    cursor: pointer;
}

.popup__close svg {
    position: absolute;
    width: 28px;
    height: 28px;
    left: 50%;
    top: 50%;
    margin-left: -14px;
    margin-top: -14px;
}

.popup__close svg line {
    stroke: var(--color-primary);
    transition: all 0.2s ease-out;
}

.popup__close:hover svg line {
    stroke: #000;
}

.popup button.mfp-close {
    display: none;
}

.popup__title {
    padding: 50px 0 20px;
    color: #959595;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    border-bottom: 1px solid #dcdcdc;
    margin-bottom: 25px;
}

.popup__block {
    padding: 0 26px 35px;
}

.popup__description {
    color: #101010;
    font-size: 17px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 43px;
}

.popup__label {
    color: #6c6c6d;
    font-size: var(--font-size-base);
    line-height: 1.2;
    margin-bottom: 4px;
}

.popup__field + .popup__field {
    margin-top: 24px;
}

.popup__input {
    display: block;
    width: 100%;
    height: 40px;
    border-radius: 20px;
    border: 1px solid #d0d0d0;
    padding: 0 20px;
    outline: none;
    color: #000;
    font-size: var(--font-size-base);
    line-height: 1.2;
}

.popup__agree {
    margin-top: 20px;
    display: flex;
    gap: 7px;
}

.popup__agree input {
    display: none;
}

.popup__agree i {
    flex-shrink: 0;
    border-radius: 2px;
    width: 15px;
    height: 15px;
    border: 1px solid #959595;
    position: relative;
    top: 2px;
    cursor: pointer;
}

.popup__agree input:checked + i {
    background: var(--color-primary) url(img/icon-check.svg) no-repeat center;
    background-position: -1.5px -2.5px;
    background-size: 18px 18px;
}

.popup__agree span {
    color: #959595;
    font-size: var(--font-size-base);
    line-height: 1.2;
}

.popup__agree a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.2s ease-out;
}

.popup__agree a:hover {
    color: #000;
}

.popup__button {
    margin-top: 36px;
    display: flex;
    justify-content: center;
}

.popup__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 40px;
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
    font-size: 17px;
    color: #fff;
    line-height: 1.2;
    border-radius: 20px;
    padding: 0 29px 3px;
    transition: all 0.2s ease-out;
}

.popup__submit:hover {
    background-color: transparent;
    color: #121212;
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.breadcrumbs {
    color: #151515;
    font-size: 15px;
    line-height: 1.6;
    padding: 15px 0;
}

.breadcrumbs a {
    text-decoration: none;
    color: #959595;
}

.breadcrumbs i {
    font-style: normal;
    color: #959595;
    margin: 0 5px;
}

/* ==========================================================================
   DIRECTION
   ========================================================================== */
.direction {
    background: #eef2f3;
    padding: 18px 0 42px;
}

.direction .breadcrumbs {
    margin-bottom: 29px;
}

.direction__title {
    color: #959595;
    font-size: 34px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 32px;
}

.direction__wrapper {
    padding: 0 40px;
}

.direction__tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.direction__tags a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 39px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid #bababa;
    color: #0d0d0d;
    font-size: 18px;
    line-height: 1;
    padding: 0 19px 3px;
    transition: all 0.2s ease-out;
}

.direction__tags a:hover {
    color: #fff;
    border-color: var(--color-primary);
    background: var(--color-primary);
}

.direction__text {
    color: #0d0d0d;
    font-size: var(--font-size-base);
    line-height: 1.688;
    max-width: 997px;
}

.direction__buttons {
    display: flex;
    margin-top: 45px;
    gap: 15px 30px;
    flex-wrap: wrap;
}

.direction__button-fill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    height: 40px;
    border-radius: 20px;
    text-decoration: none;
    padding: 0 36px 3px;
    transition: all 0.2s ease-out;
}

.direction__button-fill:hover {
    color: #101010;
    background: transparent;
}

.direction__button-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #101010;
    background: transparent;
    border: 1px solid var(--color-primary);
    height: 40px;
    border-radius: 20px;
    text-decoration: none;
    padding: 0 26px 3px 49px;
    position: relative;
    transition: all 0.2s ease-out;
}

.direction__button-outline span + span {
    display: none;
}

.direction__button-outline svg {
    position: absolute;
    left: 18px;
    top: 7px;
    width: 22px;
    height: 22px;
    fill: var(--color-primary);
    transition: all 0.2s ease-out;
}

.direction__button-outline:hover {
    background: var(--color-primary);
    color: #fff;
}

.direction__button-outline:hover svg {
    fill: #fff;
}


/* ==========================================================================
   PRICE
   ========================================================================== */
.price {

}

.price__caption {
    color: var(--color-primary);
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 20px;
    padding: 0 40px;
}

.table-price__table {
    border: 2px solid #eceeef;
    border-radius: 10px;
}

.table-price table {
    width: 100%;
    color: #121212;
    font-size: 18px;
    line-height: 1.333;
}

.table-price td:last-child {
    font-size: 19px;
}

.table-price td {
    padding: 17px 40px;
}

.table-price tr:nth-child(even) td {
    background: #eceeef;
}

.table-price__more {
    margin-top: 25px;
    display: flex;
    padding: 0 40px;
}

.button-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    color: #121212;
    border: 1px solid #947aff;
    height: 42px;
    border-radius: 21px;
    font-size: 17px;
    line-height: 1;
    text-decoration: none;
    padding: 0 30px 2px 35px;
}

.button-more i {
    content: '';
    position: relative;
    top: 1px;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    background: var(--color-primary);
}

.button-more i svg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 14px;
    height: 14px;
}

.button-more i svg path {
    fill: #fff;
    stroke: #fff;
}

.price__block + .price__block {
    margin-top: 40px;
}

.table-price:not(.active) .table-price__hidden {
    display: none;
}

/* ==========================================================================
   STEXT
   ========================================================================== */
.stext {
    color: #141414;
    font-size: 17px;
    line-height: 24px;
    padding: 20px 0 10px;
}

.stext .container > *:first-child {
    margin-top: 0;
}

.stext .container > *:last-child {
    margin-bottom: 0;
}

.stext h2 {
    font-size: 34px;
    line-height: 1;
    margin: 40px 0 20px;
}

/* ==========================================================================
   TEXT
   ========================================================================== */
.text {
    padding: 40px 0 0;
    color: #141414;
    font-size: 17px;
    line-height: 24px;
}

.text__wrapper > *:first-child {
    margin-top: 0;
}

.text__wrapper > *:last-child {
    margin-bottom: 0;
}

.text h2 {
    font-size: 34px;
    line-height: 1;
    margin: 40px 0 20px;
}

.text ul li::marker {
    color: var(--color-primary);
}

.text__wrapper {
    padding: 0 20px;
}

/* ==========================================================================
   INFO
   ========================================================================== */
.info {
    padding: 40px 0;
}

.info__tabs {
    display: flex;
    color: #959595;
    font-size: 17px;
    line-height: 1;
    padding-bottom: 16px;
    border-bottom: 1px solid #bababa;
    margin-bottom: 30px;
    overflow-x: auto;
}

.info__tab + .info__tab {
    margin-left: 25px;
    padding-left: 25px;
    border-left: 2px solid #aeaeae;
}

.info__tab {
    cursor: pointer;
}

.info__tab.active {
    cursor: default;
    font-weight: bold;
    color: var(--color-primary);
}

.info__right {
    width: 435px;
    flex-shrink: 0;
    margin-top: 9px;
}

.info__img {
    padding-top: 60%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.info__img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info__columns {
    display: flex;
    gap: 20px;
}

.info__text {
    color: #121212;
    font-size: 17px;
    line-height: 1.588;
}

.info__block {
    display: none;
}

.info__block.active {
    display: block;
}

/* ==========================================================================
   ANALYZES
   ========================================================================== */
.analyzes {

}

.analyzes__top {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
}

.analyzes__search {
    width: 646px;
    flex-shrink: 0;
}

.analyzes__input {
    display: block;
    width: 100%;
    height: 45px;
    border: 1px solid var(--color-primary);
    background: #fff url(img/icon-search.svg) no-repeat 28px center;
    background-size: 22px 22px;
    border-radius: 23px;
    padding: 0 23px 0 64px;
    outline: none;
    color: #000;
    font-size: 18px;
    line-height: 1;
}

.analyzes__download {
    display: flex;
}

.button-download {
    border-radius: 25px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: center;
    border: 1px solid #7c7c7c;
    padding: 0 40px 3px;
    text-decoration: none;
    color: #101010;
}

.button-download svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.button-download svg path {
    stroke: #959595;
}

.analyzes__columns {
    display: flex;
    gap: 8px;
}

.analyzes__column-left {
    width: 460px;
    flex-shrink: 0;
}

.analyzes__column-right {
    flex-grow: 1;
}

.analyzes__caption {
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    line-height: 1;
    padding: 15px 30px 15px 46px;
    border-radius: 10px;
    background: var(--color-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
}

.analyzes__caption:after {
    content: '';
    display: block;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #959595;
    background: #eef2f3 url(img/icon-arrow.svg) no-repeat center;
    background-size: 17px 17px;
    transform: rotate(130deg);
    transition: all 0.2s ease-out;
}

.analyzes__nav {
    margin: -10px 6px 0;
    border: 1px solid #7c7c7c;
    border-radius: 10px;
    color: #686767;
    font-size: 20px;
    line-height: 1.2;
    padding: 32px 30px 32px 40px;
}

.analyzes__nav a {
    color: inherit;
    text-decoration: none;
}

.analyzes__nav li + li {
    margin-top: 20px;
}

.analyzes__nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.analyzes__nav li > a {
    display: block;
    padding-right: 30px;
    position: relative;
}

.analyzes__nav li.parent > a svg {
    position: absolute;
    right: 0;
    top: 2px;
    color: #4c4c4d;
    transition: all 0.2s ease-out;
}

.analyzes__nav li.parent > a:hover svg {
    fill: var(--color-primary);
}

.analyzes__nav ul ul.active {
    display: block;
}

.analyzes__nav ul ul {
    font-size: 17px;
    line-height: 1.2;
    color: #0a0a0a;
    padding: 20px 0 5px;
}

.analyzes__nav ul ul li + li {
    margin-top: 10px;
}

.analyzes__nav a.active {
    font-weight: bold;
}

.analyzes__nav a.active svg {
    transform: rotate(180deg);
}

.analyzes__nav ul ul a:not(.active):hover {
    color: var(--color-primary);
}

.analyzes__title {
    color: #959595;
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    padding: 0 30px;
    margin-bottom: 8px;
}

.analyzes__table {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
}

.analyzes__table table {
    width: 100%;
    color: #0a0a0a;
    font-size: 17px;
    line-height: 1.2;
}

.analyzes__table table td {
    padding: 27px 10px;
}

.analyzes__table table tr:nth-child(even) {
    background: #ebedee;
}

.analyzes__more {
    margin-top: 16px;
    display: flex;
    justify-content: center;
}

.analyzes__more a {
    height: 40px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-primary);
    text-decoration: none;
    padding: 0 32px 3px;
    color: #0a0a0a;
    font-size: 17px;
    line-height: 1;
    transition: all 0.2s ease-out;
}

.analyzes__more a:hover {
    background: var(--color-primary);
    color: #fff;
}

.analyzes__table:not(.active) .analyzes__hidden {
    display: none;
}

/* ==========================================================================
   DESCRIPTION
   ========================================================================== */
.description {
    padding: 60px 0;
    color: #0a0a0a;
    font-size: 17px;
    line-height: 1.412;
}

.description__wrapper > *:first-child {
    margin-top: 0;
}

.description__wrapper > *:last-child {
    margin-bottom: 0;
}

.description h2 {
    color: #959595;
    font-size: 30px;
    line-height: 1;
    margin: 40px 0 25px;
}

.description h3 {
    font-size: 24px;
    line-height: 1;
    color: var(--color-primary);
    margin: 25px 0 5px;
}

.description h3 + p {
    margin-top: 0;
}

.description ul li::marker {
    color: var(--color-primary);
}

.description ul li + li {
    margin-top: 15px;
}

/* ==========================================================================
   SPECIALIST
   ========================================================================== */
.specialist {
    padding: 20px 0 0;
}

.specialist__columns {
    display: flex;
    gap: 67px;
}

.specialist__column-left {
    width: 400px;
    flex-shrink: 0;
}

.specialist__img {
    padding-top: 71%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.specialist__img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.specialist__column-right {
    flex-grow: 1;
}

.specialist__top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
}

.specialist__name {
    color: #131313;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
}

.specialist__rating {
    display: flex;
    gap: 2px;
    margin-left: auto;
}

.specialist__rating i {
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    background: url(img/icon-star.svg) no-repeat center / cover;
}

.specialist__reviews {
    font-size: 15px;
    color: #131313;
    line-height: 1;
}

.specialist__reviews a {
    display: inline-block;
    color: #3a58f0;
    text-decoration: none;
    border-bottom: 1px dotted #3a58f0;
}

.specialist__tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 15px;
    line-height: 1;
    color: #181818;
    margin-bottom: 15px;
}

.specialist__tags span {
    padding: 7px 19px 10px;
    background: #e8eef1;
    border: 1px solid #ddd;
    border-radius: 20px;
}

.specialist__labels {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 34px;
    color: var(--color-primary);
    line-height: 1;
    font-size: 17px;
    margin-bottom: 18px;
}

.specialist__labels span {
    position: relative;
    padding-left: 18px;
}

.specialist__labels span:before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid var(--color-primary);
}

.specialist__text {
    color: #1a1a1a;
    font-size: var(--font-size-base);
    line-height: 1.2;
}

.specialist__more {
    color: #1a1a1a;
    font-size: 17px;
    line-height: 1.2;
    margin-top: 2px;
}

.specialist__more a {
    text-decoration: none;
    color: #3a58f0;
}

/* ==========================================================================
   RECORD
   ========================================================================== */
.record {
    padding: 25px 0 0;
}

.record_doctor .record__columns + .record__columns {
    margin-top: 25px;
}

.record_doctor .record__field + .record__field {
    margin-top: 30px;
}

.record_doctor .record__columns {
    gap: 32px;
}

.record_doctor.record {
    padding: 24px 20px 24px 169px;
    border: 1px solid #d1d1d1;
    border-radius: 10px;
}

.record_doctor .record__caption {
    padding: 0;
    font-weight: 400;
}

.record__doctor {
    position: relative;
}

.record__rating {
    display: flex;
    gap: 2px;
    margin-top: 9px;
}

.record__profile {
    position: absolute;
    left: -148px;
    top: 0;
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.record__rating i {
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    background: url(img/icon-star.svg) no-repeat center / cover;
}

.record__reviews {
    font-size: 15px;
    color: #131313;
    line-height: 1;
    text-align: center;
    margin-top: 14px;
}

.record__reviews a {
    display: inline-block;
    color: #3a58f0;
    text-decoration: none;
    border-bottom: 1px dotted #3a58f0;
}

.record__ava {
    width: 100%;
    padding-top: 100%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.record__ava img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.record__name {
    color: #131313;
    font-size: 18px;
    line-height: 1.2;
    font-weight: bold;
}

.record__staff {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 20px;
    font-size: 15px;
    line-height: 1.2;
    color: #181818;
    margin-top: 10px;
}

.record__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 10px;
    font-size: 15px;
    line-height: 1.2;
    color: #959595;
    margin-top: 10px;
}

.record__caption {
    color: #161616;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 5px;
    padding: 0 25px;
}

.record__caption_hide {
    color: transparent;
}

.record__columns {
    display: flex;
    gap: 170px;
}

.record__column-left {
    width: 473px;
}

.record__column-right {
    width: 465px;
}

.radio {
    padding: 15px 11px;
    border-radius: 10px;
    border: 1px solid #c3c6c6;
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.radio__item {
    color: #828181;
    font-size: 15px;
    line-height: 1.2;
    flex-grow: 1;
    cursor: pointer;
}

.radio__item.active {
    cursor: default;
}

.radio__item span {
    padding: 8px 20px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    user-select: none;
}

.radio__item input {
    display: none;
}

.radio__item input:checked + span {
    background: #e5f0f5;
    border-color: #e5f0f5;
    color: #353535;
}

.record__field + .record__field {
    margin-top: 15px;
}

.select {
    position: relative;
}

.select__items {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #c3c6c6;
    max-height: 250px;
    overflow-y: auto;
    display: none;
}

.select__current {
    padding: 11px 55px 11px 10px;
    position: relative;
    border-radius: 10px;
    border: 1px solid #c3c6c6;
    cursor: pointer;
    user-select: none;
}

.select__item {
    padding: 10px;
    cursor: pointer;
}

.select__item + .select__item {
    border-top: 1px solid #c3c6c6;
}

.select__value {
    color: #161616;
    font-size: 15px;
    line-height: 1.2;
    transition: all 0.2s ease-out;
}

.select__price {
    color: #4d4d4d;
    font-size: 17px;
    line-height: 1.2;
    margin-top: 5px;
    transition: all 0.2s ease-out;
}

.select__flex {
    display: flex;
    align-items: center;
    gap: 5px 10px;
    justify-content: space-between;
}

.select__flex .select__price {
    margin-top: 0;
    white-space: nowrap;
}

.select__item:hover .select__value,
.select__item:hover .select__price {
    color: var(--color-primary);
}

.select__current svg {
    position: absolute;
    top: 50%;
    right: 18px;
    margin-top: -10px;
    width: 20px;
    height: 20px;
    stroke: #c3c6c6;
}

.select__current.active svg {
    transform: rotate(180deg);
}

.record__button {
    margin-top: 21px;
}

.record__submit {
    height: 45px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 20px;
    line-height: 1;
    border-radius: 10px;
    border: none;
    padding: 0 0 3px;
    background: var(--color-primary);
    color: #fff;
}

.record__submit[disabled] {
    background: #eaebeb;
    color: #9a9898;
}

.calendar {
    position: relative;
}

.calendar__days-carousel {
    user-select: none;
    margin-bottom: -1px;
}

.calendar__prev {
    cursor: pointer;
    position: absolute;
    z-index: 1;
    right: 0;
    top: 10px;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--color-primary);
}

.calendar__prev.swiper-button-disabled {
    display: none;
}

.calendar__next {
    cursor: pointer;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 10px;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--color-primary);
}

.calendar__next.swiper-button-disabled {
    display: none;
}

.calendar__prev svg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    stroke: var(--color-primary);
    width: 16px;
    height: 16px;
    transform: rotate(-90deg);
}

.calendar__next svg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    stroke: var(--color-primary);
    width: 16px;
    height: 16px;
    transform: rotate(90deg);
}

.calendar__next:hover,
.calendar__prev:hover {
    background: var(--color-primary);
}

.calendar__next:hover svg,
.calendar__prev:hover svg {
    stroke: #fff;
    fill: #fff;
}

.calendar__block {
    display: none;
}

.calendar__block.active {
    display: block;
}

.calendar__times {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
}

.calendar__time {
    width: 65px;
    height: 38px;
    background: #e5f0f5;
    border: 1px solid #e5f0f5;
    font-weight: bold;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    color: #4d4d4d;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease-out;
}

.calendar__time:hover,
.calendar__time.active {
    background: #fff;
    border: 1px solid #aeaeae;
    color: #4d4d4d;
}

.calendar__days {
    display: flex;
    margin-bottom: -1px;
    user-select: none;
}

.calendar__day {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
    padding: 6px;
    cursor: pointer;
    user-select: none;
}

.calendar__day span {
    color: #494949;
    font-size: 17px;
    line-height: 1;
}

.calendar__day b {
    font-size: 15px;
    line-height: 1;
    color: #494949;
    font-weight: 400;
}

.calendar__day.active {
    border: 1px solid #c3c6c6;
    border-bottom-color: #fff;
    border-radius: 10px 10px 0 0;
    cursor: default;
}

.calendar__day.active b {
    font-weight: bold;
    color: var(--color-primary);
}

.calendar__day.active span {
    color: var(--color-primary);
}

.calendar__blocks {
    padding: 12px;
    border: 1px solid #c3c6c6;
}

/* ==========================================================================
   DATA
   ========================================================================== */
.data {
    padding: 40px 0;
}

.data__columns {
    display: flex;
    gap: 50px;
}

.data__column-left {
    width: 330px;
    flex-shrink: 0;
}

.data__column-right {
    flex-grow: 1;
}

.data__nav ul {
    display: block;
    margin: 0;
    padding: 0;
    list-style-type: none;
    color: #151515;
    font-size: 20px;
    line-height: 1.2;
    background: #e8eef1;
}

.data__nav a {
    color: inherit;
    text-decoration: none;
    display: block;
    margin-right: -5px;
    padding: 15px 90px 27px 13px;
    border-radius: 0 25px 25px 0;
    position: relative;
    transition: all 0.2s ease-out;
}

.data__nav a:not(.active):hover {
    color: var(--color-primary);
}

.data__nav a.active {
    color: #fff;
    background: var(--color-primary);
}

.data__nav a.active:after {
    content: '';
    position: absolute;
    top: 9px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #fff;
    margin-bottom: 26px;
    background: url(img/icon-arrow-white.svg) no-repeat center;
    background-size: 22px 22px;
    transform: rotate(51deg);
    transition: all 0.2s ease-out;
}

.data__text {
    color: #1a1a1a;
    font-size: var(--font-size-base);
    line-height: 1.2;
}

.data__text > .data__block:first-child {
    margin-top: -35px;
}

.data__block {
    padding-top: 35px;
}

.data__text > *:first-child,
.data__block > *:first-child {
    margin-top: 0;
}

.data__text > *:last-child,
.data__block > *:last-child {
    margin-bottom: 0;
}

.data__text h2 {
    margin: 35px 0 15px;
    font-size: 20px;
    line-height: 1;
}

.data__text ul {
    display: block;
    margin: 0;
    padding: 0;
    list-style-type: none;
    position: relative;
}

.data__text ul:before {
    content: '';
    position: absolute;
    width: 1px;
    left: 31px;
    top: 0;
    bottom: 0;
    background: var(--color-primary);
}

.data__text li:first-child:after {
    content: '';
    position: absolute;
    width: 1px;
    left: 31px;
    top: 0;
    height: 4px;
    background: #fff;
}

.data__text li:last-child:after {
    content: '';
    position: absolute;
    width: 1px;
    left: 31px;
    top: 15px;
    bottom: 0;
    background: #fff;
}

.data__text li {
    padding-left: 47px;
    position: relative;
}

.data__text li + li {
    margin-top: 20px;
}

.data__text li:before {
    content: '';
    position: absolute;
    left: 26px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: var(--color-primary);
}

.data__text ul b {
    color: var(--color-primary);
}

.data__text ul strong {
    display: block;
    font-weight: 400;
    color: #959595;
}

.data__docs {
    display: grid;
    gap: 54px;
    grid-template-columns: 1fr 1fr;
}

.data__doc {
    padding-left: 80px;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.data__doc svg {
    position: absolute;
    left: 22px;
    top: 1px;
    width: 38px;
    height: 38px;
    stroke: var(--color-primary);
}

.doc__caption-doc {
    padding-left: 27px;
    position: relative;
}

.doc__caption-doc:before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 17px;
    height: 17px;
    background: url(img/icon-data-doc.webp) no-repeat center/cover;
}

.doc__caption-qualification {
    padding-left: 27px;
    position: relative;
}

.doc__caption-qualification:before {
    content: '';
    position: absolute;
    left: 2px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: url(img/icon-data-qualification.webp) no-repeat center/cover;
}

.doc__caption-experience {
    padding-left: 27px;
    position: relative;
}

.doc__caption-experience:before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 15px;
    background: url(img/icon-data-experience.webp) no-repeat center/cover;
}

.doc__caption-education {
    padding-left: 27px;
    position: relative;
}

.doc__caption-education:before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 17px;
    height: 15px;
    background: url(img/icon-data-education.webp) no-repeat center/cover;
}

/* ==========================================================================
   DOCS
   ========================================================================== */
.docs {
    padding-bottom: 50px;
}

.docs__text {
    color: #444343;
    font-size: 17px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.docs__items {
    display: grid;
    gap: 15px 20px;
    grid-template-columns: 1fr 1fr;
}

.docs__item {
    border: 1px solid #ddd;
    color: #444343;
    font-size: 17px;
    line-height: 1.2;
    text-decoration: none;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 10px;
    transition: all 0.2s ease-out;
}

.docs__item:hover {
    color: var(--color-primary);
}

.docs__item svg {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    stroke: var(--color-primary);
}

.docs__block + .docs__block {
    margin-top: 50px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
    padding-bottom: 50px;
}

.faq__item {
    padding: 20px 0;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.faq__item + .faq__item {
    margin-top: 20px;
}

.faq__caption {
    color: #444343;
    font-size: 24px;
    line-height: 1.2;
    padding: 0 52px 0 20px;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.faq__content {
    color: #444343;
    font-size: 17px;
    line-height: 1.2;
    padding: 20px 20px 0;
    display: none;
}

.faq__content > *:first-child {
    margin-top: 0;
}

.faq__content > *:last-child {
    margin-bottom: 0;
}

.faq__icon {
    width: 34px;
    height: 34px;
    position: absolute;
    top: -2px;
    right: 13px;
}

.faq__icon svg {
    display: block;
    width: 100%;
    height: 100%;
    stroke: #389fb2;
}

.faq__icon svg + svg {
    display: none;
}

.faq__caption.active svg {
    display: none;
}

.faq__caption.active svg + svg {
    display: block;
}

/* ==========================================================================
   LEGAL
   ========================================================================== */
.legal {
    padding-bottom: 50px;
}

.legal__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.legal__item {
    min-height: 34px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #444343;
    font-size: 17px;
    line-height: 1.2;
    text-decoration: none;
    padding-left: 15px;
    transition: all 0.2s ease-out;
}

.legal__item svg {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    fill: var(--color-primary);
}

.legal__item:hover {
    color: var(--color-primary);
}

/* ==========================================================================
   CLINICS
   ========================================================================== */
.clinics {
    padding-bottom: 50px;
}

.clinic {
    display: flex;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 23.28px 0.72px rgba(50, 50, 50, 0.15);
    border: 1px solid rgb(232, 232, 232);
    overflow: hidden;
}

.clinic__content {
    width: 512px;
    flex-shrink: 0;
    padding: 20px 30px;
}

.clinic__map {
    flex-grow: 1;
    background: #ccc;
}

.clinic__name {
    color: #060606;
    font-size: 25px;
    line-height: 1;
    margin-bottom: 20px;
}

.clinic__label {
    color: #959595;
    font-size: 14px;
    line-height: 1.2;
}

.clinic__address {
    color: #060606;
    font-size: var(--font-size-base);
    line-height: 1.2;
}

.clinic__section + .clinic__section {
    margin-top: 15px;
}

.clinic__sections {
    display: flex;
    gap: 15px 55px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.clinic__sections .clinic__section + .clinic__section {
    margin-top: 0;
}

.clinic__shedule {
    color: #060606;
    font-size: var(--font-size-base);
    line-height: 1.2;
}

.clinic__shedule table {
    margin-top: -1px;
}

.clinic__shedule td {
    padding-left: 29px;
    padding-top: 4px;
}

.clinic__shedule td:first-child {
    padding-left: 0;
}

.clinic__phone {
    color: #060606;
    font-size: var(--font-size-base);
    line-height: 1.2;
    font-weight: bold;
}

.clinic__phone a {
    text-decoration: none;
    color: var(--color-primary);
}

.clinic__email {
    color: #060606;
    font-size: var(--font-size-base);
    line-height: 1.2;
}

.clinic__email a {
    color: inherit;
    text-decoration: none;
}

.clinic__socialize {
    margin-top: 15px;
}

.social {
    display: flex;
    gap: 22px;
}

.social__item {
    width: 27px;
    height: 27px;
    position: relative;
}

.social__item svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    fill: var(--color-primary);
}

.social__item_vk svg {
    width: 27px;
    height: 27px;
}

.social__item_tg svg {
    width: 25px;
    height: 25px;
}

.social__item_mx svg {
    width: 20px;
    height: 20px;
}

.clinic + .clinic {
    margin-top: 20px;
}

/* ==========================================================================
   DOCTORS
   ========================================================================== */
.doctors {
    padding-bottom: 50px;
}

.doctors__top {
    padding: 45px 0 35px;
    background: #f5f6fa;
    margin-bottom: 23px;
}

.doctors_record .title {
    text-align: center;
}

.doctors__filter {
    margin-bottom: 43px;
    display: flex;
    gap: 10px;
}

.doctors__top .doctors__filter {
    gap: 20px;
}

.doctors__top .doctors__filter {
    flex-wrap: wrap;
}

.doctors__top .doctors__input {
    width: 100%;
}

.doctors__input {
    width: 380px;
    flex-shrink: 0;
    height: 45px;
    border: 1px solid var(--color-primary);
    background: #fff url(img/icon-search.svg) no-repeat 28px center;
    background-size: 22px 22px;
    border-radius: 23px;
    padding: 0 10px 0 64px;
    outline: none;
    color: #000;
    font-size: 18px;
    line-height: 1;
}

.doctors__top .doctors__input {
    border-color: #e8e8e8;
}

.doctors__selects {
    flex-grow: 1;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr 1fr;
}

.doctors__top .doctors__selects {
    gap: 20px 40px;
}

.dselect__current {
    line-height: 43px;
    white-space: nowrap;
    text-overflow: ellipsis;
    height: 45px;
    background: #fff;
    border: 1px solid var(--color-primary);
    border-radius: 23px;
    padding: 0 43px 0 27px;
    display: block;
    width: 100%;
    cursor: pointer;
    font-size: 18px;
    color: #101010;
}

.doctors__top .dselect__current {
    border-color: #c6c6c6;
}

.dselect {
    position: relative;
}

.dselect svg {
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -9px;
    width: 18px;
    height: 18px;
    fill: #959595;
    transition: all 0.2s ease-out;
}

.dselect.active svg {
    transform: rotate(180deg);
}

.dselect__items {
    display: none;
    border-radius: 23px;
    position: absolute;
    z-index: 2;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 6px 15.52px 0.48px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8e8e8;
    overflow: hidden;
    max-height: 180px;
    overflow-y: auto;
}

.dselect__item {
    height: 43px;
    display: flex;
    align-items: center;
    padding: 5px 27px;
    cursor: pointer;
}

.dselect__item:hover {
    background: var(--color-primary);
    color: #fff;
}

.doctors__items {
    display: grid;
    gap: 12px 16px;
    grid-template-columns: repeat(4, 1fr);
}

/* ==========================================================================
   PROOF
   ========================================================================== */
.proof {
    padding: 29px 0 64px;
}

.proof__title {
    font-size: 30px;
    line-height: 1.2;
    color: #1f1f1f;
    text-align: center;
    margin-bottom: 30px;
}

.proof__wrapper {
    max-width: 714px;
    margin: 0 auto;
}

.proof__data {
    border-radius: 10px;
    border: 1px solid var(--color-primary);
    padding: 28px 14px;
}

.proof__block {
    padding: 0 18px;
}

.proof__item + .proof__item {
    margin-top: 15px;
}

.proof__block + .proof__block {
    border-top: 1px solid #c6c6c6;
    padding-top: 20px;
    margin-top: 20px;
}

.proof__columns {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.proof__columns .proof__item + .proof__item {
    margin-top: 0;
}

.proof__caption {
    color: #959595;
    font-size: 17px;
    line-height: 1.2;
}

.proof__text {
    color: #131313;
    font-size: 17px;
    line-height: 1.2;
}

.proof__price {
    color: #131313;
    font-size: 17px;
    line-height: 1.2;
}

.proof__form {
    margin-top: 30px;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 28px 30px;
}

.proof__label {
    color: #101010;
    font-size: 18px;
    line-height: 1.2;
    display: block;
    margin-bottom: 8px;
    padding: 0 10px;
}

.proof__label span {
    color: #f00
}

.proof__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
}

.input {
    display: block;
    width: 100%;
    height: 40px;
    border-radius: 20px;
    background: #f5f6fa;
    border: 1px solid #e8e8e8;
    outline: none;
    padding: 0 27px 3px;
    font-size: var(--font-size-base);
    color: #101010;
}

.input:focus {
    background: #fff;
}

.proof__agree {
    margin-top: 20px;
    display: flex;
    gap: 7px;
    user-select: none;
}

.proof__agree input {
    display: none;
}

.proof__agree i {
    flex-shrink: 0;
    border-radius: 2px;
    width: 15px;
    height: 15px;
    border: 1px solid #959595;
    position: relative;
    top: 2px;
    cursor: pointer;
}

.proof__agree input:checked + i {
    background: var(--color-primary) url(img/icon-check.svg) no-repeat center;
    background-position: -1.5px -2.5px;
    background-size: 18px 18px;
}

.proof__agree span {
    color: #959595;
    font-size: var(--font-size-base);
    line-height: 1.2;
}

.proof__agree a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.2s ease-out;
}

.proof__agree a:hover {
    color: #000;
}

.proof__submit {
    margin-top: 30px;
}

.submit {
    display: block;
    width: 100%;
    height: 45px;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #fff;
    border-radius: 25px;
    padding: 0 10px 3px;
    transition: all 0.2s ease-out;
}

.submit:hover {
    background: #fff;
    color: #121212;
}

.submit[disabled] {
    opacity: 0.6;
}

/* ==========================================================================
   MEDIA
   ========================================================================== */
@media only screen and (max-width: 1199.98px) {
    .container {
        width: 960px;
    }

    .header__icons {
        margin-left: 50px;
    }

    .header__description {
        display: none;
    }

    .main__item {
        padding-left: 30px;
        padding-right: 30px;
    }

    .services__columns {
        gap: 22px 32px;
    }

    .about__columns {
        gap: 32px;
    }

    .about__column-left {
        width: 350px;
    }

    .about__item_fill {
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .about__item_outline {
        padding: 20px;
    }

    .about__img {
        padding-top: 87%;
    }

    .stocks__items {
        gap: 23px;
    }

    .gallery__item_increased .gallery__img {
        padding-top: 45.6%;
    }

    .footer__right {
        width: 490px;
    }

    .licenses__column-right {
        gap: 160px;
    }

    .licenses__column-left {
        width: 450px;
    }

    .direction__wrapper {
        padding: 0;
    }

    .text__wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    .info__tab + .info__tab {
        padding-left: 15px;
        margin-left: 15px;
    }

    .info__right {
        width: 350px;
    }

    .info__img {
        padding-top: 90%;
    }

    .analyzes__column-left {
        width: 380px;
    }

    .analyzes__nav {
        padding-left: 20px;
        padding-right: 20px;
    }

    .specialist__columns {
        gap: 32px;
    }

    .record__columns {
        gap: 32px;
    }

    .data__column-left {
        width: 300px;
    }

    .data__docs {
        gap: 20px;
    }

    .stock__text {
        padding-left: 0;
        padding-right: 0;
    }

    .clinic__content {
        width: 450px;
    }

    .doctors__items {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .doctors__input {
        width: 300px;
    }

    .doctors__select {
        padding-left: 20px;
    }

    .record_doctor.record {
        padding: 24px 20px;
    }

    .record__profile {
        position: static;
        flex-shrink: 0;
    }

    .record__doctor {
        display: flex;
        gap: 20px;
    }

    .record__staff {
        gap: 5px 10px;
    }
}

@media only screen and (max-width: 991.98px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }

    .container {
        width: 720px;
    }

    .header__phone {
        display: none;
    }

    .main__item {
        padding: 20px 16px;
    }

    .main__items {
        gap: 16px;
    }

    .services__columns {
        display: block;
    }

    .services__column + .services__column {
        margin-top: 22px;
    }

    .services__column {
        display: grid;
        gap: 22px;
        grid-template-columns: 1fr 1fr;
    }

    .services__box + .services__box {
        margin-top: 0;
    }

    .about__columns {
        display: block;
    }

    .about__column-left {
        width: auto;
        margin-bottom: 32px;
    }

    .about__img {
        padding-top: 60%;
    }

    .stocks__items {
        grid-template-columns: 1fr 1fr;
    }

    .licenses__column-left {
        width: 320px;
    }

    .contacts__items {
        width: 342px;
    }

    .contacts__blocks {
        width: 349px;
    }

    .footer__top {
        flex-wrap: wrap;
    }

    .footer__socialize {
        width: 100%;
        margin-left: 0;
        margin-top: 32px;
    }

    .footer__right {
        width: 320px;
    }

    .header__icons {
        margin-left: 32px;
    }

    .main__columns {
        display: block;
    }

    .main__column-left {
        width: auto;
        margin-bottom: 9px;
    }

    .main__images {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .main__image {
        padding-top: 60%;
    }

    .main__slide {
        padding-left: 20px;
    }

    .main__nav {
        left: 62px;
    }

    .directions__items {
        grid-template-columns: 1fr 1fr;
        gap: 23px;
    }

    .about__wrapper {
        padding-left: 0;
    }

    .info__tabs {
        display: flex;
        color: #959595;
        font-size: 17px;
        line-height: 1;
        padding-bottom: 16px;
        border-bottom: 1px solid #bababa;
        margin-bottom: 30px;
    }

    .info__tabs::-webkit-scrollbar-thumb {
        height: 2px;
        border-radius: 0;
        background-color: var(--color-primary);
    }

    .info__tabs::-webkit-scrollbar {
        height: 2px;
        /*background: var(--color-primary);*/
        background: transparent;
    }

    .info__tab + .info__tab {
        margin-left: 18px;
        padding-left: 18px;
        border-left: 2px solid #aeaeae;
    }

    .info__tab {
        cursor: pointer;
    }

    .info__tab {
        white-space: nowrap;
    }

    .info__columns {
        display: block;
    }

    .info__right {
        width: auto;
        margin-top: 20px;
    }

    .info__img {
        padding-top: 60%;
    }

    .analyzes__columns {
        display: block;
    }

    .analyzes__column-left {
        width: auto;
        margin-bottom: 30px;
    }

    .analyzes__top {
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .analyzes__title {
        padding-left: 0;
        padding-right: 0;
    }

    .analyzes__search {
        width: 100%;
    }

    .specialist__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .specialist__rating {
        margin-left: 0;
    }

    .specialist__columns {
        display: block;
    }

    .specialist__column-left {
        width: auto;
        max-width: 400px;
        margin-bottom: 20px;
    }

    .record__columns {
        flex-direction: column;
        gap: 15px;
    }

    .record__column-left {
        width: auto;
        max-width: 473px;
    }

    .record__column-right {
        width: auto;
        max-width: 473px;
    }

    .data__columns {
        display: block;
    }

    .data__column-left {
        width: auto;
        margin-bottom: 20px;
    }

    .data__nav a {
        padding-top: 21px;
        padding-bottom: 21px;
    }

    .docs__items {
        grid-template-columns: 1fr;
    }

    .clinic {
        display: block;
    }

    .clinic__map {
        height: 300px;
    }

    .clinic__content {
        width: auto;
    }

    .doctors__items {
        grid-template-columns: 1fr 1fr;
    }

    .doctors__filter {
        flex-direction: column;
        gap: 10px;
    }

    .doctors__input {
        width: 100%;
    }
}

@media only screen and (max-width: 767.98px) {
    .container {
        width: 100%;
        padding: 0 10px;
    }

    .wrapper {
        overflow: hidden;
    }

    .header {
        padding: 0;
        border-bottom: 1px solid #dcdcdc;
    }

    .header__row {
        height: 60px;
    }

    .header__nav {
        display: none;
    }

    .header__buttons {
        display: none;
    }

    .main {
        padding: 5px 0 14px;
    }

    .main__items {
        padding: 0 10px;
        margin: 15px -10px 0;
        overflow-x: auto;
    }

    .main__items::-webkit-scrollbar {
        width: 0;
    }

    .main__items {
        -ms-overflow-style: none;
    }

    .main__items {
        overflow: -moz-scrollbars-none;
    }

    .main__title {
        font-size: 22px;
    }

    .main__text {
        font-size: 11px;
    }

    .caption {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .services {
        background: none;
        padding-top: 21px;
        border-top: 1px solid #dcdcdc;
    }

    .services__section-tabs {
        border: 1px solid #dcdcdc;
        border-radius: 10px;
    }

    .services__section-tab {
        margin: -1px;
        background: transparent;
        font-size: 14px;
        height: 36px;
        border-radius: 10px;
        padding: 0 20px;
    }

    .services__category-tabs {
        border-radius: 0;
    }

    .services__category-tab {
        height: auto;
        padding: 0 0 1px;
        border: none;
        border-radius: 0;
        line-height: 1;
        font-size: 14px;
    }

    .services__category-tab + .services__category-tab {
        margin-left: 10px;
        padding-left: 10px;
        border-left: 1px solid #3b3b3b;
    }

    .services__wrapper {
        background: none;
        padding: 0;
    }

    .main__slide {
        padding: 35px 202px 60px 16px;
        min-height: 268px;
        background-position: 10px center;
    }

    .main__label {
        font-size: 10px;
        height: 20px;
        padding-left: 14px;
        padding-right: 14px;
        top: 15px;
        right: 5px;
    }

    .main__nav {
        gap: 15px;
        bottom: 18px;
        left: 40px;
    }

    .main__prev,
    .main__next {
        width: 28px;
        height: 28px;
    }

    .main__prev:before,
    .main__next:before {
        width: 20px;
        height: 20px;
    }

    .main__images {
        gap: 3px;
    }

    .main__image {
        padding-top: 58%;
    }

    .main__items {
        display: flex;
        gap: 5px;
    }

    .main__item {
        width: 157px;
        flex-shrink: 0;
        padding: 14px 10px 6px 16px;
    }

    .main__description {
        font-size: 14px;
    }

    .main__caption span, .main__caption i {
        font-size: 20px;
        top: -13px;
    }

    .main__caption i {
        font-size: 18px;
    }

    .main__caption {
        font-size: 30px;
        gap: 6px;
        margin-bottom: 2px;
    }

    .header__logo {
        font-size: 18px;
        gap: 7px;
    }

    .header__logo svg {
        width: 26px;
        height: 26px;
    }

    .header__icons {
        margin-left: auto;
        gap: 20px;
    }

    .main__column-left {
        margin-bottom: 4px;
    }

    .services__top {
        display: block;
    }

    .services__section-tab {
        flex-grow: 1;
    }

    .services__column {
        display: block;
    }

    .directions__items {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .licenses__columns {
        display: block;
    }

    .footer__columns {
        display: grid;
        gap: 20px;
        grid-template-columns: 1fr 1fr;
    }

    .footer__block {
        display: block;
    }

    .footer__right {
        width: auto;
        margin-top: 20px;
    }

    .services__category-tabs {
        margin-top: 18px;
    }

    .footer__top {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer__socialize {
        display: flex;
        justify-content: center;
    }

    .footer__socialize {
        margin-top: 0;
    }

    .footer__buttons {
        margin-left: 0;
    }

    .footer__button-fill {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer__button-outline {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about__items {
        display: flex;
        flex-direction: column
    }

    .about__item_fill {
        align-items: center;
        text-align: center;
    }

    .about__item_outline {
        text-align: center;
    }

    .services__input {
        height: 35px;
        font-size: 14px;
        background-size: 18px 18px;
        background-position: 16px center;
        padding-left: 43px;
        border-radius: 14px;
    }

    .services__box + .services__box {
        margin-top: 22px;
    }

    .carousel-control .carousel-control__pagination.swiper-pagination-bullets {
        display: none;
    }

    .carousel-control__scrollbar {
        display: none;
    }

    .carousel-control {
        justify-content: space-between;
    }

    .stocks__items {
        display: flex;
        flex-direction: column;
        gap: 23px;
    }

    .licenses__column-right {
        padding-left: 66px;
        margin-top: 20px;
    }

    .gallery__items {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gallery__item_increased {
        grid-column: span 1;
    }

    .gallery__item .gallery__img {
        padding-top: 100%;
    }

    .contacts__wrapper {
        height: auto;
        border-radius: 0;
    }

    .contacts__items {
        position: static;
        height: 460px;
        width: auto;
    }

    .contacts__blocks {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 460px;
    }

    .contacts__map {
        width: auto;
        height: 300px;
        position: static;
        border-radius: 10px;
        margin-top: 10px;
    }

    .rating__items {
        gap: 10px;
    }

    .about__top {
        margin-bottom: 20px;
    }

    .directions__top {
        margin-bottom: 20px;
    }

    .specialists .title {
        margin-bottom: 20px;
    }

    .stocks__top {
        margin-bottom: 20px;
    }

    .header__icon-visually-impaired {
        display: none;
    }

    .footer__visually-impaired {
        display: none;
    }

    .services {
        padding-bottom: 20px;
    }

    .directions {
        padding: 20px 0;
    }

    .specialists {
        padding: 20px 0;
    }

    .about {
        padding: 20px 0;
    }

    .news {
        padding: 20px 0;
    }

    .stocks {
        padding: 20px 0;
    }

    .novelty-preview__block {
        padding-bottom: 0;
    }

    .news .carousel-control {
        margin-top: 10px;
    }

    .rating {
        padding: 20px 0;
    }

    .reviews {
        padding: 20px 0;
    }

    .reviews__carousel .carousel-control {
        margin-top: 10px;
    }

    .licenses {
        padding: 20px 0;
    }

    .contacts {
        padding: 20px 0;
    }

    .gallery {
        padding: 20px 0;
    }

    .footer__top {
        padding: 20px 0;
    }

    .footer__middle {
        padding: 20px 0;
    }

    .footer__bottom {
        padding: 20px 0 76px;
    }

    .gallery__top {
        margin-bottom: 20px;
    }

    .header__icon-profile {
        width: 18px;
        height: 21px;
    }

    .header__icon-phone {
        display: block;
    }

    .nav {
        display: flex;
    }

    .table-price td {
        padding: 10px;
    }

    .price__caption {
        padding: 0;
    }

    .price__caption {
        font-size: 24px;
    }

    .table-price table {
        font-size: 14px;
    }

    .table-price td:last-child {
        font-size: 15px;
    }

    .stext h2,
    .text h2 {
        font-size: 24px;
    }

    .stext,
    .text {
        font-size: 14px;
    }

    .info__text {
        font-size: 14px;
    }

    .direction__title {
        font-size: 24px;
    }

    .direction__tags {
        gap: 8px;
    }

    .direction__buttons {
        gap: 16px;
    }

    .direction__button-fill {
        padding-left: 24px;
        padding-right: 24px;
    }

    .direction__tags a {
        font-size: 14px;
        padding: 0 9px 3px;
        height: 34px;
    }

    .analyzes__title {
        font-size: 24px;
    }

    .description h2 {
        font-size: 24px;
    }

    .description {
        font-size: 14px;
    }

    .description h3 {
        font-size: 20px;
    }

    .analyzes__nav {
        font-size: var(--font-size-base);
    }

    .analyzes__nav li.parent > a svg {
        width: 20px;
        height: 20px;
        top: 1px;
    }

    .analyzes__nav ul ul {
        font-size: 14px;
    }

    .calendar__time {
        font-size: var(--font-size-base);
    }

    .data__docs {
        display: flex;
        flex-direction: column;
    }

    .data__doc {
        padding-left: 50px;
    }

    .data__doc svg {
        left: 0;
    }

    .stock__text {
        font-size: 14px;
    }

    .stock__description {
        font-size: 14px;
    }

    .faq__caption {
        font-size: var(--font-size-base);
    }

    .faq__content {
        font-size: 14px;
    }

    .faq__icon {
        width: 28px;
        height: 28px;
    }

    .docs__item {
        font-size: 14px;
        padding: 15px 10px;
        gap: 10px;
    }

    .docs__item svg {
        width: 32px;
        height: 32px;
    }

    .docs__text {
        font-size: 14px;
    }

    .legal__item {
        font-size: 14px;
        padding-left: 0;
    }

    .legal__item svg {
        width: 30px;
        height: 30px;
    }

    .footer__nav {
        font-size: 14px;
    }

    .footer__caption {
        font-size: var(--font-size-base);
    }

    .footer__info {
        font-size: 12px;
    }

    .footer__policy {
        font-size: 14px;
    }

    .footer__copyright {
        font-size: 14px;
    }

    .clinic__sections {
        flex-direction: column;
    }

    .clinic__content {
        padding: 20px;
    }

    .doctors__selects {
        display: flex;
        flex-direction: column;
    }

    .doctors__filter {
        margin-bottom: 20px;
    }

    .direction .breadcrumbs {
        margin-bottom: 10px;
    }

    .direction__buttons {
        flex-wrap: nowrap;
        margin-top: 30px;
    }

    .direction__buttons > * {
        flex-grow: 1;
        padding: 0 12px 3px;
        height: 38px;
        border-radius: 15px;
    }

    .direction__button-outline svg {
        display: none;
    }

    .direction__button-outline span {
        display: none;
    }

    .direction__button-outline span + span {
        display: inline;
    }
}

@media only screen and (max-width: 575.98px) {
    .container {
        width: 100%;
    }

    .doctors__items {
        grid-template-columns: 1fr;
    }

    .proof__fields {
        grid-template-columns: 1fr;
    }

    .proof__form {
        padding: 20px 10px;
    }

    .proof__data {
        padding: 20px 10px;
    }

    .proof__block {
        padding-left: 10px;
        padding-right: 10px;
    }

    .proof__title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .proof__caption,
    .proof__price,
    .proof__text {
        font-size: 14px;
    }

    .proof__columns {
        flex-direction: column;
    }

    .rating .carousel-control__scrollbar {
        display: flex;
    }
}

@media only screen and (max-width: 374.98px) {
    .reviews .title,
    .directions .title {
        font-size: 20px;
    }

    .directions__all {
        font-size: 14px;
    }

    .direction__tags a {
        font-size: 13px;
    }

    .direction__tags a {
        padding: 0 4px 3px;
        height: 30px;
    }

    .doctors__input {
        padding-left: 55px;
        background-position: 23px center;
    }
}

/*==========  Mobile First Method  ==========*/
@media only screen and (min-width: 576px) {

}

@media only screen and (min-width: 768px) {

}

@media only screen and (min-width: 992px) {

}

@media only screen and (min-width: 1200px) {

}
