:root {
  --yellow: rgba(255, 251, 150, 1);
  --back-black: rgba(43, 44, 37, 1);
  --opacity-white: rgba(255, 255, 255, 0.1);
  --opacity-gray: rgba(43, 44, 37, 0.6);
  --opacity-gray1: rgba(43, 44, 37, 0.1);
  --opacity-yellow: rgba(255, 251, 150, 0.1);
  --light-gray: rgba(243, 242, 239, 1);
  --border-color: rgba(0, 0, 0, 0.2);
  --main-text: rgba(0, 0, 0, 1);
  --back-white: #ebebeb;
  --caption-color: rgba(43, 44, 37, 1);
  --intro-color: #fefef1;
}

/* fonts */
@font-face {
  font-family: "Mulish";
  src:
    url("/assets/fonts/Mulish.ttf") format("truetype"),
    url("/assets/fonts/Mulish.woff2") format("woff2"),
    url("/assets/fonts/inter/Mulish.woff") format("woff");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

/* reset styles */
* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:focus,
:active {
  outline: none;
}
a:focus,
a:active {
  outline: none;
}
nav,
footer,
header,
aside {
  display: block;
}
html,
body {
  width: 100%;
  line-height: 1;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  overflow-x: hidden;
}
input,
button,
textarea {
  font-family: inherit;
}
textarea {
  resize: none;
}
input::-ms-clear {
  display: none;
}
input::-moz-placeholder {
  color: var(--main-text);
}
input::-webkit-input-placeholder {
  color: var(--main-text);
}
textarea::-moz-placeholder {
  color: var(--main-text);
}
textarea::-webkit-input-placeholder {
  color: var(--main-text);
}
button {
  cursor: pointer;
  background-color: transparent;
}
.header__button.btn.tg__button {
  padding: 12px 15px;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
a,
a:visited {
  text-decoration: none;
  color: var(--main-text);
  cursor: pointer;
}
ul li {
  list-style: none;
}
img {
  vertical-align: top;
  max-width: 100%;
  max-height: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
  margin: 0;
}
picture {
  display: block;
}
[type="submit"] {
  transition: opacity 0.2s ease;
}

/* glob */

body {
  font-family: Mulish, sans-serif;
  font-weight: 400;
  color: var(--main-text);
  line-height: 1.25;
  font-size: 16px;
  background-color: var(--intro-color);
}
body.lock {
  overflow: hidden;
  height: 100vh;
}
.container {
  padding: 0 20px;
  margin: auto;
}
@media (max-width: 1024px) {
  .desctop {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  .mobile {
    display: none !important;
  }
}
a,
p,
div,
span,
li,
label,
input,
textarea {
  font-family: Mulish, sans-serif;
  font-size: 16px;
  color: var(--main-text);
  line-height: 1.25;
}

input,
textarea {
  color: var(--main-text);
  background: var(--back-gray);
  padding: 15px 20px;
  font-size: 14px;
  border-radius: 30px;
  font-family: "Inter";
  cursor: pointer;
  border: 1px transparent solid;
  transition: 0.2s ease;
}

input:hover,
textarea:hover {
  border-color: var(--yellow);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-gray);
  opacity: 1;
  font-family: Mulish, sans-serif;
  font-size: 14px;
  opacity: 0.7;
}

.textarea {
  background-color: var(--light-gray);
  min-height: 180px;
}

h1 {
  font-size: 32px;
  font-weight: 600;
}

.btn {
  width: fit-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 30px;
  white-space: nowrap;
  flex-wrap: nowrap;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn.btn--black {
  background-color: var(--back-black);
  color: white;
}
.btn.btn--black:hover {
  background-color: var(--yellow);
  color: var(--back-black);
}

.btn.btn--black:hover svg {
  transform: rotate(45deg);
}

.btn svg {
  transition: 0.3s ease;
}
.intro__callback-block {
  display: flex;
  align-items: center;
  gap: 16px;
}
.intro__price {
  font-size: 24px;
  font-weight: 600;
}
.btn.btn--svg {
  padding: 5px 5px 5px 20px;
}

.btn.btn--svg:hover svg {
  transform: rotate(45deg);
}

.header__bottom.mobile .btn {
  width: 100%;
}

.btn--yellow {
  background-color: var(--yellow);
}

.btn--yellow:hover {
  background-color: rgba(50, 53, 32, 1);
  color: var(--yellow);
}

.intro__breadcrumbs {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.intro__breadcrumbs a {
  opacity: 0.55;
}

li.breadcrumbs__link {
  list-style: none;
}

li.breadcrumbs__link a:hover {
  font-weight: 600;
}

li.breadcrumbs__link::before {
  content: "•";
  margin-right: 20px;
  opacity: 0.55;
}

li.breadcrumbs__link:first-child::before {
  content: "";
  margin: 0;
}

li.breadcrumbs__link:last-child a {
  opacity: 1;
}

.intro--others .intro__main {
  gap: 20px;
  margin-top: 20px;
}

.icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

.icon,
.icon svg,
.icon path,
.icon-arrow {
  transition: 0.2s ease;
}
.icon.icon--black {
  background-color: var(--back-black);
}
.icon.icon--black:hover {
  background-color: var(--yellow);
}
.icon.icon--black:hover svg path {
  fill: var(--back-black);
  stroke: var(--back-black);
}
.icon.icon--black:hover svg circle {
  stroke: var(--back-black);
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

ul li::before {
  content: "•";
  margin-right: 10px;
}

form.form input.input {
  width: 100%;
  background-color: var(--opacity-white);
  color: white;
}

.form__agreed {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.form__btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

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

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

.formblock__phone {
  width: 100%;
  background-color: var(--opacity-white);
  padding: 0 20px 0 0;
  justify-content: center;
}

.formblock__phone-icon {
  background-color: white;
  border-radius: 50%;
  padding: 10px;
  width: 40px;
  height: 40px;
  margin-right: auto;
}

.form__agreed-text a {
  text-decoration: underline;
}

.form__agreed-text,
.form__agreed-text a {
  font-size: 12px;
}

h2.section__title span {
  font-weight: 600;
  font-size: 24px;
  color: var(--yellow);
}

table {
  display: block;
  overflow-x: auto;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #000 transparent;
}
*::-webkit-scrollbar {
  width: 4px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}
*::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 2px;
}
*::-webkit-scrollbar-thumb:hover {
  background: #333;
}

/*header*/

main {
  margin-top: 100px;
}

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

.header__left {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  gap: 10px;
  position: fixed;
  height: 100px;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--intro-color);
  z-index: 99;
}

.header__right {
  position: fixed;
  top: 100px;
  padding: 20px;
  left: 0;
  background-color: var(--intro-color);
  width: 100%;
  z-index: 99;
  overflow-y: auto;
  height: calc(100vh - 100px);
  transform: translatex(-100%);
  transition: 0.5s ease;
}

.opened .header__right {
  transform: none;
}

.header__logo.logo {
  margin-right: auto;
}

.header__burger-mobile,
.header__phone-mobile {
  position: relative;
  width: 40px;
  height: 40px;
}

.header__burger-mobile.mobile .icon-filled {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s ease;
}

.burger__open,
.opened .burger__close {
  opacity: 1;
}

.burger__close,
.opened .burger__open {
  opacity: 0;
}

.search__input {
  background-color: white;
  padding-right: 50px;
  width: 100%;
  box-sizing: border-box;
}

.search__line {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.search {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 10px;
}

.search--icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translatey(-50%);
}

.search__results {
  border-radius: 30px;
  background-color: white;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: 0.5s ease;
}

.active.search .search__results {
  padding: 20px;
  max-height: 500px;
  overflow-y: auto;
  visibility: visible;
}

.search__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 200px;
  overflow: auto;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu__item.menu__item--level1 {
  padding: 20px 0;
  border-bottom: 1px white solid;
  border-color: var(--border-color);
}

.menu__link {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
}

.menu__subs.menu__subs--level3 {
  padding-left: 20px;
}

.menu__item.menu__item--level1 > .menu__link {
  font-size: 18px;
  font-weight: 600;
  padding: 10px 0;
}

.menu__item.menu__item--level2 > .menu__link {
  font-size: 14px;
  padding: 10px 0;
  width: max-content;
}

.menu__item.menu__item--level3 > .menu__link {
  font-size: 14px;
  padding: 5px 0;
}

.menu__subs {
  max-height: 0;
  overflow: hidden;
  transition:
    opacity 0.5s ease 0.1s,
    transform 0.5s ease 0.1s,
    max-height 0.5s ease 0.1s;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
}

.active.menu__item--level1 .menu__subs.menu__subs--level2 {
  max-height: 500px;
  overflow-y: auto;
  visibility: visible;
  z-index: 9;
  opacity: 1;
}

.active.menu__item--level2 .menu__subs.menu__subs--level3 {
  max-height: 500px;
  overflow-y: auto;
  visibility: visible;
  z-index: 10;
  opacity: 1;
}

.header__bottom {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.header__contacts {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header__bottom-phone {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.caption {
  font-size: 14px;
  color: var(--caption-color);
}

.header__bottom-phone a {
  font-size: 18px;
}

.header__socials.socials .socials__icon {
  background-color: var(--opacity-gray1);
}

.socials {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.socials__icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
}

.section {
  margin-bottom: 40px;
}
.menu__item.menu__item--level2 {
  position: relative;
}
.menu__item.menu__item--level2::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid black;
  border-right: 2px solid black;
  transform: rotate(45deg);
  transition: all 0.2s linear;
  position: absolute;
  right: 10px;
  top: 5px;
}
.menu__item.menu__item--level2.active::after {
  transform: rotate(-45deg);
}

/* glod-adaptation*/
@media (min-width: 1250px) {
  a,
  p,
  div,
  span,
  li,
  label,
  input,
  textarea {
    font-size: 18px;
  }
  .section {
    margin-bottom: 100px;
  }
}

@media (min-width: 1025px) and (max-width: 1350px) {
  .header__phone.desctop {
    display: none;
  }

  .section {
    margin-bottom: 80px;
  }
}

/*header-desc*/

@media (min-width: 1025px) {
  main {
    margin-top: 0px;
  }

  .container {
    max-width: 1600px;
    padding: 0 100px;
  }

  .header {
    position: absolute;
    width: 100%;
    background-color: transparent;
  }

  .header__left,
  .header__right {
    position: relative;
    height: unset;
    top: unset;
    left: unset;
    padding: 0;
    width: fit-content;
    overflow: unset;
    transform: none;
    background-color: transparent;
  }

  .header__wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
    padding: 20px 0;
    background-color: transparent;
  }

  .header__logo.logo {
    margin-right: 30px;
    min-width: 167px;
  }

  .header__right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .header__menublock {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    background-color: white;
    border-radius: 30px;
    padding: 0 20px;
    width: 100%;
  }

  .menu {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
  }

  .menu__item.menu__item--level1 {
    width: fit-content;
    position: relative;
    padding: 0;
    border: none;
  }

  .menu__subs.menu__subs--level2 {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translatey(100%);
  }

  .menu__item.menu__item--level1 > .menu__link {
    font-weight: 400;
    gap: 5px;
  }

  .menu__subs {
    transition:
      opacity 0.5s ease 0.1s,
      transform 0.5s ease 0.1s;
  }

  .header__phone {
    white-space: nowrap;
    padding-left: 20px;
    margin-left: 20px;
    border-left: 1px white solid;
    border-color: var(--border-color);
  }

  .header__phone a {
    font-weight: 500;
  }

  .menu__item.menu__item--level1,
  .menu__link {
    position: relative;
  }

  .menu__link::after {
    content: "";
    width: 100%;
    position: absolute;
    height: 2px;
    background-color: var(--yellow);
    bottom: 5px;
    transition: 0.1s ease;
    opacity: 0;
  }
  .menu__link:hover::after {
    opacity: 1;
  }

  .menu__item.menu__item--level2::before {
    content: "";
    width: 100%;
    position: absolute;
    height: 2px;
    background-color: var(--yellow);
    bottom: 5px;
    transition: 0.1s ease;
    opacity: 0;
  }
  .menu__item.menu__item--level2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    padding-right: 10px;
  }
  .menu__item.menu__item--level2::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid black;
    border-right: 2px solid black;
    transform: rotate(45deg);
    transition: all 0.2s linear;
  }
  .menu__item.menu__item--level2.active::after {
    transform: rotate(-45deg);
  }
  .menu__item.menu__item--level2:hover::before {
    opacity: 1;
  }

  .active.menu__item--level1 .menu__subs.menu__subs--level2 {
    background-color: white;
    padding: 20px;
    bottom: -10px;
    border-radius: 30px;
    min-width: 350px;
    overflow: visible;
    max-height: 800px;
    transform: translate(-10px, 100%);
  }

  .active.menu__item--level2 .menu__subs.menu__subs--level3 {
    max-height: 500px;
    overflow-y: auto;
    visibility: visible;
    background-color: white;
    box-shadow: 1px 1px 5px #80808066;
    transform: translate(100%, -24px);
  }

  .menu__item.menu__item--level2 {
    position: relative;
  }

  .menu__subs.menu__subs--level3 {
    padding: 20px;
    border-radius: 30px;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(100%, -10px);
  }

  .menu__item.active > .menu__link {
    font-weight: 600;
  }
  .menu__item.active .icon-arrow {
    transform: rotate(180deg);
  }
  .menu__item.menu__item--level1 > .menu__link {
    font-size: 16px;
  }
  @media (min-width: 1350px) {
    .menu__item.menu__item--level1 > .menu__link {
      font-size: 16px;
    }
  }
  @media (min-width: 1025px) and (max-width: 1150px) {
    button.btn.btn--black.desctop {
      display: none;
    }
  }
}

/* intro */

.intro__subtitle {
  font-size: 16px;
}

.intro__main,
.intro__main-text {
  position: relative;
  /*padding-bottom: 100px;*/
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section.intro.intro--services .intro__backimg {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  height: 100%;
  width: 100%;
}

.section.intro.intro--services .intro__main {
  position: relative;
}

.section.intro.intro--services .intro__main-text {
  margin-top: 40px;
}

.intro__servimg {
  overflow: hidden;
}

.intro__servimg img {
  margin: 0 auto;
  display: block;
  width: auto;
  height: auto;
}

.intro__backimg {
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  margin-top: -250px;
}

.intro__backimg img {
  object-position: bottom;
}

.intro__formblock,
.intro__advs,
.intro__main > *:not(picture) {
  margin: 0 20px;
  width: calc(100% - 40px);
}

.section.intro .container {
  padding: 0;
}

.intro__wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.intro__advs-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  background-color: var(--light-gray);
}

.intro__advs-item:first-child {
  background-color: var(--yellow);
}

.intro__formblock {
  padding: 20px;
  border-radius: 20px;
  background-color: var(--back-black);
}

.formblock__title {
  font-size: 18px;
  font-weight: 400;
  color: white;
  display: block;
}

.formblock__subtitle {
  font-size: 14px;
  opacity: 0.8;
  color: white;
}

.intro__formblock a,
.intro__formblock span,
.intro__formblock p {
  color: white;
}

.intro__formblock .checkmark {
  background-color: var(--yellow);
}

.intro__formblock
  .custom-checkbox
  input:checked
  + .intro__formblock
  .checkmark {
  background-color: var(--yellow);
  border-color: var(--back-black);
}

.intro__formblock .checkmark:after {
  border-color: var(--back-black);
}

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

.intro__formblock .form__agreed-text a:hover {
  color: var(--yellow);
}

.section.intro.intro--others .intro__backimg {
  display: none;
}

.intro.intro--articles .intro__backimg {
  position: relative;
  margin-top: 10px;
  z-index: 1;
  margin-bottom: 40px;
}

.intro.intro--articles .intro__backimg img {
  margin-right: 20px;
  margin-left: 20px;
  width: calc(100% - 40px);
  border-radius: 20px 20px 0 0;
}

.section.intro.intro--articles .container {
  background-color: var(--back-black);
  padding-bottom: 20px;
  border-radius: 0 0 20px 20px;
  padding-top: 20px;
}

.section.intro.intro--articles h1.intro__title.section-title {
  color: white;
}

.intro__minis-item {
  padding: 20px;
  border-radius: 20px;
  background-color: var(--yellow);
}

.intro__minis,
.intro__detailes,
.intro__authors.author {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.intro__detailes {
  padding: 0 20px;
}

.author__item {
  padding: 20px;
  border-radius: 20px;
  background: var(--light-gray);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.author__top {
  padding-bottom: 10px;
  border-bottom: 1px transparent solid;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-color: var(--border-color);
}

.author__wrap {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
}

.author__detailes {
  width: 65%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.author__img {
  border-radius: 20px;
  overflow: hidden;
  width: 35%;
}

.author__name {
  font-size: 16px;
  font-weight: 600;
}

.author__date.caption {
  padding: 10px;
  background-color: white;
  border-radius: 5px;
  margin-top: auto;
}

.author__link:hover {
  font-weight: 600;
}
.author__link span {
  display: none;
}
.authors-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 48px 0;
}
.authors-block .author__wrap {
  justify-content: flex-start;
}
@media (min-width: 1025px) {
  .authors-block {
    flex-direction: row;
  }

  .author__link span {
    display: inline;
  }

  .author__img {
    max-width: 129px;
  }
}

.intro__backimg {
  position: relative;
}
.intro.intro--articles .intro__backimg::before {
  content: "";
  background: linear-gradient(
    179deg,
    rgba(0, 0, 0, 0),
    rgba(43, 44, 37, 60),
    rgba(43, 44, 37, 1)
  );
  position: absolute;
  bottom: -36px;
  left: 0;
  width: 120%;
  height: 50%;
  z-index: 4;
  filter: blur(8px);
}

.section.intro.intro--doctor {
  background-color: var(--light-gray);
  border-radius: 30px;
}

.section.intro.intro--doctor .intro__wrap {
  max-width: unset;
}

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

.docpage__stajblock {
  position: absolute;
  bottom: 0;
  /*border-radius: 20px;*/
  background-color: var(--opacity-gray);
  padding: 20px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.docpage .intro__breadcrumbs {
  margin: 40px 0;
}

.docpage .docpage__shedule table {
  background-color: white;
}

.docpage__shedule-title {
  font-size: 18px;
}

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

.docpage__staj {
  color: var(--yellow);
}

.docpage__main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 20px;
  margin-bottom: 40px;
}

.docpage__role {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background-color: white;
  padding: 10px 20px;
  border-radius: 20px;
}

.docpage__stajblock .caption {
  color: white;
  opacity: 0.65;
}

@media (min-width: 1025px) {
  .intro.intro--others {
    position: relative;
  }
  .section.intro.intro--doctor .intro__wrap {
    max-width: unset;
  }
  .section.intro.intro--others .intro__backimg {
    display: flex;
  }

  .docpage .intro__wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }
  .docpage__main {
    width: calc(100% - 370px);
  }

  .docpage__img-block {
    min-width: 350px;
  }

  .docpage__role {
    width: fit-content;
  }

  .docpage__shedule table td {
    white-space: nowrap;
  }

  .intro__backimg::before {
    display: none;
  }

  .intro.intro--others::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(
      45deg,
      rgb(255, 255, 255, 1),
      rgb(255, 255, 255, 0)
    );
    z-index: 1;
  }

  .intro__wrap.intro--others {
    z-index: 2;
    position: relative;
  }
}

@media (min-width: 550px) and (max-width: 649px) {
  .intro__backimg {
    margin-top: -350px;
  }
}
@media (min-width: 650px) and (max-width: 768px) {
  .intro__backimg {
    margin-top: -450px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .intro__backimg {
    margin-top: -50px;
    border-radius: 20px;
  }
}

@media (min-width: 1025px) {
  .intro {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .section.intro.intro--articles h1.intro__title.section-title {
    color: var(--back-black);
  }

  h1 {
    font-size: 43px;
  }

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

  .intro__formblock {
    position: absolute;
    max-width: 350px;
    right: 20px;
    bottom: 20px;
    transform: translatey(20%);
  }

  .intro__advs-item {
    flex-direction: row;
  }

  .intro__wrap {
    max-width: 60%;
  }

  .intro__advs-title {
    font-size: 14px;
  }

  .section.intro .container {
    padding: 0 100px;
  }

  .intro__call.btn {
    max-width: 300px;
  }

  h1.intro__title.section-title {
    margin-top: 40px;
  }

  .formblock__phone.btn {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0;
    padding: 0;
    gap: 0;
  }

  .formblock {
    max-width: 250px;
    width: 250px;
  }

  .section.intro {
    margin-bottom: 100px;
    position: relative;
  }

  .intro__call.btn.btn--black.btn--svg {
    min-width: 250px;
  }

  .intro__formblock,
  .intro__advs,
  .intro__main > *:not(picture) {
    margin: 0 20px;
    width: calc(100% - 40px);
  }

  .section.intro.intro--services .intro__wrap,
  .section.intro.intro--services .intro__main {
    width: 100%;
    max-width: 100%;
  }

  .section.intro.intro--services .intro__main {
    position: unset;
    flex-direction: row;
    align-items: flex-start;
  }

  .intro__servimg {
    max-width: 370px;
    max-height: unset;
    margin-top: auto;
  }

  .section.intro.intro--services .intro__wrap {
    flex-direction: row;
    align-items: center;
  }

  .section.intro.intro--services .intro__main-text {
    margin-bottom: 40px;
  }

  .intro.intro--services {
    padding-bottom: 0px;
    position: relative;
  }

  .section.intro.intro--services .intro__advs {
    flex-direction: column;
    max-width: 300px;
  }

  .formblock__phone-icon:hover {
    background-color: var(--yellow);
  }

  .intro.intro--articles .intro__backimg {
    position: absolute;
    margin: 0;
    height: 80%;
  }

  .intro.intro--articles .intro__backimg img {
    margin: 0;
    width: 100%;
    border-radius: 0 0 20px 20px;
  }

  .intro.intro--articles .intro__wrap {
    max-width: 100%;
    z-index: 4;
    position: relative;
  }

  .intro.intro--articles::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 0.5),
      rgba(255, 255, 255, 0)
    );
    z-index: 2;
    height: 80%;
    border-radius: 0 0 20px 20px;
  }

  .intro.intro--articles .intro__main {
    max-width: 60%;
  }

  .intro__detailes,
  .intro__authors.author {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }

  .section.intro.intro--articles .container {
    background-color: transparent;
  }

  .intro__minis {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .intro__minis-item {
    min-width: 110px;
    display: flex;
    flex-direction: column;
  }

  .intro.intro--others .intro__wrap {
    max-width: 60%;
    z-index: 3;
    position: relative;
  }
}
@media (min-width: 1250px) {
  .intro__minis {
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }

  .intro__minis-item {
    min-width: 200px;
  }
}

@media (min-width: 1250px) {
  .intro__formblock {
    right: 100px;
  }
  .intro.intro--others .intro__wrap {
    max-width: 75%;
    z-index: 3;
    position: relative;
  }
  .intro__wrap {
    max-width: 60%;
  }
}
@media (min-width: 1250px) {
  .intro__advs {
    flex-direction: row;
  }
  .intro__advs-item {
    flex-direction: column;
  }
}
@media (min-width: 1250px) {
  h1 {
    font-size: 53px;
  }
}
@media (min-width: 769px) and (max-width: 1349px) {
  .intro__servimg {
    display: none;
  }
}

/* articles */
.articles .selector__option {
  color: var(--back-black);
  border-radius: 20px;
}

.articles .selector__name.btn {
  background-color: var(--back-black);
}

.articles__list.active {
  margin-top: 20px;
  transform: none;
  transition: 0.5s ease;
  opacity: 1;
}

.articles__item {
  padding: 20px;
  background-color: var(--back-black);
  border-radius: 20px;
  display: none;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}

.articles__item.active {
  display: flex;
}

.articles__title {
  font-size: 18px;
  color: white;
}

.articles__item:hover .articles__title {
  font-size: 18px;
  color: var(--yellow);
}

.articles .caption {
  color: #939393;
}

.articles__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateY(-10px);
  opacity: 0;
}

@media (min-width: 969px) {
  .articles__selector.selector {
    margin: 0;
    margin-left: 30px;
  }

  .articles .selector__name.btn {
    background-color: transparent;
  }

  .articles__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .articles .selector__list {
    position: relative;
    opacity: 1;
    max-height: unset;
    top: unset;
    bottom: unset;
    left: unset;
    right: unset;
    visibility: visible;
    transform: none;
    flex-direction: row;
    width: fit-content;
    background-color: transparent;
    gap: 10px;
    margin-bottom: 20px;
  }

  .articles .selector__option {
    background-color: var(--light-gray);
  }
}

/* publics */
.publics__item {
  padding: 20px;
  border-radius: 20px;
  background-color: var(--light-gray);
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}

.publics__wrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.publics__more.btn.btn--black {
  margin: auto;
  margin-top: 20px;
}

.publics .articles__title {
  color: var(--back-black);
  font-weight: 600;
}

.publics__item:hover {
  background-color: var(--back-black);
}

.publics__item:hover .articles__title {
  color: var(--yellow);
}

.publics__item:hover .articles__date.caption,
.publics__item:hover .articles__descr.caption {
  color: white;
  opacity: 0.65;
}

@media (min-width: 969px) {
  .publics__wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1250px) {
  .publics__wrap {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* docall liceall photoall revsall*/
.docsall__wrapper,
.liceall__wrapper,
.revsall__wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.docsall .doctors__item {
  border: 2px transparent solid;
  transition: 0.3s ease;
}

.docsall .doctors__item:hover {
  border-color: var(--yellow);
}

.photoall h2.section-title {
  font-size: 24px;
}

.photo__slider-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.photoall__wrapper > * {
  width: 100%;
}

.photoall__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

@media (min-width: 969px) {
  .docsall__wrapper,
  .liceall__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1250px) {
  .docsall__wrapper,
  .liceall__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1250px) {
  .revsall__wrapper {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
}

/* services */
h2.section__title,
h2.section__title span {
  font-weight: 600;
  font-size: 24px;
}

.section__top {
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.services__title {
  background-color: rgba(43, 44, 37, 0.8);
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  z-index: 2;
}

.services__item:first-child .services__title {
  border-radius: 30px 30px 0 0;
}

.services__name {
  text-transform: uppercase;
  color: white;
}

.spoiler {
  width: 20px;
  height: 20px;
  display: flex;
  position: relative;
  z-index: 2;
}

span.h,
span.v {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
  background-color: var(--yellow);
}

span.h {
  width: 100%;
  height: 2px;
}

.spoiler.active span.h {
  background-color: white;
}

.spoiler.active span.v {
  height: 0;
}

span.v {
  width: 2px;
  height: 100%;
}

.services__item {
  position: relative;
}

.services__descr {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;
  position: relative;
  z-index: 2;
}

.services__descr a.btn.btn--yellow {
  margin-top: 250px;
}

.services__detailes-wrap {
  background-color: var(--back-black);
  padding: 20px;
}

.services__detailes {
  position: relative;
}

.services__decor {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

/*.services__decor img {
  height: 250px;
}*/

.services__descr .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.services__descr p {
  color: white;
}

.services__item:last-child .services__detailes-wrap {
  border-radius: 0 0 30px 30px;
}

.services__detailes {
  max-height: 0;
  overflow: hidden;
  transition: 0.5s ease-in-out;
}

.services__item.active .services__detailes {
  max-height: 900px;
}

.services__item:nth-child(2) .services__title {
  background-color: rgba(43, 44, 37, 0.85);
}
.services__item:nth-child(3) .services__title {
  background-color: rgba(43, 44, 37, 0.9);
}
.services__item:nth-child(4) .services__title {
  background-color: rgba(43, 44, 37, 0.95);
}
.services__item:nth-child(5) .services__title {
  background-color: rgba(43, 44, 37, 1);
}

@media (min-width: 769px) {
  .services__descr {
    gap: 20px;
    max-width: 500px;
    width: 50%;
  }

  picture.services__backimg {
    max-height: 100%;
  }

  .services__descr a.btn.btn--yellow {
    margin-top: 0px;
  }

  h2.section__title,
  h2.section__title span {
    font-size: 36px;
  }

  .services__name {
    font-size: 20px;
  }

  .services__descr .btn {
    width: fit-content;
    text-align: center;
    justify-content: center;
  }

  .services__detailes-wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .services__detailes,
  .services__detailes-wrap {
    position: relative;
  }

  .services__item {
    position: relative;
    overflow: hidden;
  }

  .services__detailes-wrap {
    min-height: 189px;
  }

  .services__item.active .services__decor {
    opacity: 1;
  }

  .services__decor {
    opacity: 0;
    transition: 0.3s ease;
    z-index: 1;
    right: 44px;
  }

  .services__backimg img {
    object-fit: contain !important;
    max-height: 350px;
    overflow: hidden;
    max-width: 400px;
  }
}

/* whyus*/
.section--black {
  background-color: var(--back-black);
  border-radius: 30px;
  margin-right: 10px;
  margin-left: 10px;
}

.whyus .section__top {
  flex-direction: column;
  gap: 20px;
}

.section--gray {
  background-color: var(--light-gray);
  border-radius: 30px;
  margin-right: 10px;
  margin-left: 10px;
}

.section--back {
  position: relative;
  border-radius: 30px;
  margin-right: 10px;
  margin-left: 10px;
}

.section--black p,
.section--black span,
.section--black h2 {
  color: white;
}

.whyus__wrap {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.whyus__list,
.whyus__column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.whyus .section__title,
.whyus .section__subtitle {
  text-align: center;
}

.whyus__item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.text-right {
  text-align: right;
}

.whyus__backimg {
  display: none;
}

@media (min-width: 1025px) {
  .whyus__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px;
    column-gap: 220px;
    justify-content: space-between;
  }

  .section.whyus {
    position: relative;
  }

  .whyus__backimg {
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 450px;
  }

  .whyus__item {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .whyus__backimg img {
    object-fit: contain;
  }

  .whyus__item {
    padding: 10px 20px;
    gap: 20px;
  }

  .whyus__column {
    gap: 20px;
  }

  .whyus__wrap {
    padding: 60px 0;
  }

  .section__top {
    margin-bottom: 40px;
  }
}

/* text */
.text__content--title {
  font-size: 18px;
  font-weight: 600;
}

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

.text__nav {
  padding: 20px;
  background-color: var(--light-gray);
  border-radius: 20px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.text__content ul li.ancor-h3 {
  content: "-";
}

li.ancor-h3::before {
  padding-left: 20px;
  opacity: 0.65;
}

.text__nav-title {
  font-size: 18px;
  font-weight: 600;
}

.text__content h2 {
  font-size: 24px;
  font-weight: 600;
}
.text__content h3 {
  font-size: 22px;
}
.text__content h4 {
  font-size: 18px;
}

blockquote {
  padding: 30px;
  border-radius: 20px;
  background-color: var(--light-gray);
}

.spesialquote {
  padding: 30px;
  border-radius: 20px;
  background-color: var(--light-gray);
}

.spesialquote > p {
  font-style: italic;
}

.spesialquote__authorblock {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.spesialquote__caption,
.spesialquote__author,
.spesialquote__author span {
  font-style: italic;
  color: #696969;
}

.spesialquote__author {
  font-weight: 600;
}

.spesialquote__author span {
  font-weight: 400;
}

.text__content img {
  border-radius: 20px;
  margin: 20px 0;
}

.text__content table,
.docpage table {
  border-collapse: collapse;
  padding: 10px 20px;
  background-color: rgba(243, 242, 239, 1);
  display: block;
  border-radius: 20px;
}

.text__content td,
.docpage td {
  padding: 20px;
  border-right: 1px transparent solid;
  border-color: rgb(141 141 141 / 20%);
}

tr {
  border-bottom: 1px transparent solid;
  border-color: rgb(141 141 141 / 20%);
}

tr:first-child td,
td:last-child {
  border: none;
}

tr:first-child td {
  border: none;
  font-weight: 600;
  color: #8080806e;
}

ol {
  list-style: none;
  counter-reset: custom-counter;
  padding: 0;
  margin: 0;
}

ol li {
  counter-increment: custom-counter;
  margin-bottom: 10px;
  position: relative;
  display: block;
  flex-direction: row;
  align-items: center;
  padding-inline-start: 26px;
}

ol li::before {
  content: counter(custom-counter);
  background: var(--yellow);
  width: 20px;
  height: 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 8px;
  box-sizing: border-box;
  position: absolute;
  left: -8px;
}

ol li > ol {
  margin-inline-start: 8px;
  margin-block-start: 10px;
}

@media (min-width: 1025px) {
  .text__content--title {
    font-size: 22px;
    font-weight: 600;
  }

  .section.text.text--article .text__wrap {
    display: flex;
    flex-direction: row;
    gap: 40px;
  }

  .text__nav {
    width: 350px;
    min-width: 350px;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 20px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .section.text.text--article .text__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: calc(100% - 350px);
    margin-left: auto;
  }
}

/* callback testadv*/
.callback__wrap,
.testadv__wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: var(--back-black);
  padding: 40px;
  border-radius: 30px;
}

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

.callback__title,
.callback__subtitle1,
.callback__subtitle2,
.testadv__title {
  color: white;
}

.callback__subtitle1 {
  padding-bottom: 20px;
  border-bottom: 1px #414141 solid;
}

.callback__main p,
.testadv__subtitle {
  opacity: 0.8;
}

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

.callback__item {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  background-color: var(--opacity-white);
  padding: 20px;
  border-radius: 20px;
}

.callback-icon {
  height: 30px;
  width: 30px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  max-width: 30px;
  min-width: 30px;
}

.callback__item p {
  color: white;
}

.testadv__backimg {
  display: none;
}

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

.testadv__subtitle {
  color: white;
}

.testadv .btn {
  width: 100%;
}

.testadv__btn:hover svg {
  transform: rotate(45deg);
}

.callback.callback--yellow .callback__form {
  padding: 20px;
  min-width: 350px;
  background-color: var(--back-black);
  border-radius: 20px;
  z-index: 2;
  position: relative;
}

.callback.callback--yellow .callback__wrap {
  background-color: var(--yellow);
  overflow: hidden;
}

.callback.callback--yellow .form__agreed-text,
.callback.callback--yellow .form__agreed-text a {
  color: white;
  opacity: 0.65;
}

.callback.callback--yellow .callback__wrap::before {
  content: "";
  width: 250px;
  height: 250px;
  position: absolute;
  top: 0;
  border-radius: 100%;
  transform: translatey(-50%);
  box-shadow: 0 0 38px #ffffffb8 inset;
  z-index: 1;
  right: 28%;
}

.callback.callback--yellow .callback__wrap::after {
  content: "";
  width: 190px;
  height: 190px;
  position: absolute;
  bottom: 0;
  border-radius: 100%;
  transform: translatey(50%);
  box-shadow: 0 0 38px #ffffffb8 inset;
  z-index: 1;
  left: 28%;
}

.callback.callback--yellow::before {
  display: none;
}

.callback.callback--yellow .section__title.callback__title,
.callback.callback--yellow .callback__subtitle2 {
  color: var(--back-black);
}

.callback__main {
  position: relative;
  z-index: 2;
}

@media (min-width: 969px) {
  .callback__wrap {
    flex-direction: row;
    gap: 40px;
  }
  .callback {
    position: relative;
  }

  .callback__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    z-index: 2;
  }

  .callback__item {
    flex-direction: column;
  }

  .callback .btn {
    width: fit-content;
  }

  .callback::before {
    content: "";
    width: 250px;
    height: 250px;
    position: absolute;
    top: 0;
    right: 21%;
    box-shadow: 0 0 38px #ffffff08 inset;
    border-radius: 100%;
    transform: translatey(-50%);
    z-index: 1;
  }

  .testadv__wrap {
    padding: 0;
  }
  .testadv__main {
    padding: 40px;
  }

  .testadv__backimg {
    display: flex;
    border-radius: 30px;
    overflow: hidden;
  }

  .testadv__wrap {
    flex-direction: row;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
  }

  .testadv__btn.btn {
    width: 275px;
  }
}

.callback .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* code rehab*/
.code__wrap {
  padding: 40px 0;
}

.code__item {
  border-radius: 20px;
  background-color: var(--back-black);
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.code__backimg {
  border-radius: 20px;
  overflow: hidden;
  max-height: 280px;
}

.code__title {
  font-size: 18px;
  color: var(--yellow);
}

.code__item p,
.code__title,
.code__bottom {
  padding: 0 20px;
}

.code__bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.code__item p {
  color: white;
  opacity: 0.65;
}

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

.rehab .section__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.rehab__subtitle {
  font-size: 18px;
  font-weight: 600;
}

picture.rehab__backimg {
  display: none;
}

.rehab__item {
  padding: 20px;
  background-color: var(--back-black);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.rehab__item-text {
  color: white;
  opacity: 0.65;
  margin-top: auto;
}

.rehab__item-name {
  color: var(--yellow);
}

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

@media (min-width: 1025px) {
  .code__wrap {
    padding: 60px 0;
  }

  .code__item p,
  .code__title,
  .code__bottom {
    padding: 0 30px;
  }

  .code__item {
    padding-bottom: 30px;
  }

  .code__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: stretch;
  }

  picture.rehab__backimg {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    min-width: 350px;
  }

  .rehab__item {
    padding: 20px;
    background-color: var(--back-black);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
  }
  .rehab__wrap {
    display: flex;
    flex-direction: row;
    gap: 40px;
  }

  .rehab__item:nth-child(1)::before {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    top: -8px;
    border-radius: 100%;
    transform: translatey(-50%);
    box-shadow: 0 0 38px #d6c56938 inset;
    z-index: 1;
    right: -31%;
  }
  .rehab__item:nth-child(2)::before {
    content: "";
    width: 230px;
    height: 230px;
    position: absolute;
    bottom: 0;
    border-radius: 100%;
    transform: translatey(50%);
    box-shadow: 0 0 38px #d6c56938 inset;
    z-index: 1;
    right: -97px;
  }
  .rehab__item:nth-child(3)::before {
    content: "";
    width: 120px;
    height: 120px;
    position: absolute;
    top: 19px;
    border-radius: 100%;
    transform: translatey(-50%);
    box-shadow: 0 0 38px #d6c56938 inset;
    z-index: 1;
    left: -35px;
  }
  .rehab__item:nth-child(4)::before {
    content: "";
    width: 250px;
    height: 250px;
    position: absolute;
    top: 0;
    border-radius: 100%;
    transform: translatey(-50%);
    box-shadow: 0 0 38px #d6c56938 inset;
    z-index: 1;
    right: 28%;
  }
}

@media (min-width: 1250px) {
  .rehab__list {
    flex-direction: row;
    overflow: hidden;
  }
}

/* codetable */
table.codetable__table tr td:first-child {
  display: none;
}

table.codetable__table tr {
  border: none !important;
}

table.codetable__table {
  padding: 20px;
  background-color: var(--light-gray);
  border-radius: 20px;
  border-collapse: separate;
  border-spacing: 10px;
}

td:not(tr:first-child td) {
  background-color: rgba(255, 255, 255, 0.822);
}

.codetable__first-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.822);
  border-radius: 20px 20px 0 0;
  padding: 10px 20px;
}

.codetable__other-column {
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.codetable__caption {
  color: gray;
}

.codetable__other-column {
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 350px;
}

/* tr.codetable__tr:not(tr:first-child) {
    background-color: #ffffffde;
} */

table.codetable__table * {
  font-size: 14px;
}

@media (min-width: 1350px) {
  table.codetable__table tr td:first-child {
    display: flex;
    padding: 10px 20px;
    height: 100%;
    min-height: 100%;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    min-width: 171px;
    border-radius: 20px 0 0 20px;
    min-height: 90px;
  }

  .codetable__first-row {
    min-height: 90px;
  }
}

/* equip */
.equip__dockimg,
.equip__backimg {
  display: none;
}

.equip__wrap {
  padding: 20px 0;
}

.equip .section__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

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

.equip__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background-color: var(--opacity-white);
  border-radius: 20px;
  align-items: center;
  text-align: center;
}

.equip__item-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.equip__item-name {
  font-size: 18px;
}

.equip__subtitle,
.equip__item-sub {
  opacity: 0.65;
}

span.equip__item-sub {
  font-size: 14px;
}

@media (min-width: 1025px) {
  .equip__wrap {
    padding: 60px 0 0 0;
    max-width: calc(100% - 450px);
  }

  .equip .section__top,
  .equip .section__top > * {
    text-align: left;
    width: 100%;
  }

  .equip__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .equip__item {
    flex-direction: row;
    align-items: flex-start;
  }

  .equip__item-sub,
  .equip__item-name {
    width: 100%;
    text-align: left;
  }

  .equip__item {
    gap: 20px;
  }

  .equip__list {
    position: relative;
    z-index: 3;
    padding-bottom: 60px;
  }

  .equip {
    position: relative;
  }

  .equip__backimg {
    position: absolute;
    top: 50%;
    right: 0;
    display: flex;
    transform: translateY(-50%);
    height: 80%;
    z-index: 1;
  }
}
@media (min-width: 1250px) {
  .equip__dockimg {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    max-width: 530px;
    z-index: 2;
    transform: translateX(84%);
  }
}

/* programs */
.programs__item {
  padding: 20px;
  border-radius: 20px;
  background-color: var(--back-black);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.programs__item-top {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px transparent solid;
  border-color: var(--opacity-white);
}

.programs__name {
  font-size: 24px;
  color: white;
}

.programs__cost {
  color: white;
  opacity: 0.65;
}

.programs__item-line {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.programs__item-line span {
  color: white;
  opacity: 0.65;
  font-size: 14px;
}

.programs__item-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 80%;
}

.programs__choice {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-right: 20px;
  background-color: var(--opacity-white);
  border-radius: 20px;
}

.programs__choice span {
  color: white;
}

.programs .swiper-slide {
  overflow: hidden;
}

.programs .swiper-slide:nth-child(1)::before {
  content: "";
  width: 250px;
  height: 250px;
  position: absolute;
  top: 0;
  right: -73px;
  box-shadow: 0 0 38px #ffffff12 inset;
  border-radius: 100%;
  transform: translatey(-39%);
  z-index: 1;
}

.programs .swiper-slide:nth-child(2)::before {
  content: "";
  width: 300px;
  height: 300px;
  position: absolute;
  top: 17%;
  right: 0;
  box-shadow: 0 0 38px #ffffff12 inset;
  border-radius: 100%;
  transform: translatex(50%);
  z-index: 1;
}

.programs .swiper-slide:nth-child(3)::before {
  content: "";
  width: 200px;
  height: 200px;
  position: absolute;
  top: 0;
  right: 6%;
  box-shadow: 0 0 38px #ffffff12 inset;
  border-radius: 100%;
  transform: translatey(-59%);
  z-index: 1;
}

.programs .swiper-slide:nth-child(1)::after {
  content: "";
  width: 200px;
  height: 200px;
  position: absolute;
  top: 50%;
  left: 0;
  box-shadow: 0 0 38px #ffffff12 inset;
  border-radius: 100%;
  transform: translatex(-50%);
  z-index: 1;
}

.programs .swiper-slide:nth-child(2)::after {
  content: "";
  width: 220px;
  height: 220px;
  position: absolute;
  top: 45%;
  left: 0;
  box-shadow: 0 0 38px #ffffff12 inset;
  border-radius: 100%;
  transform: translatex(-50%);
  z-index: 1;
}

.programs .swiper-slide:nth-child(3)::after {
  content: "";
  width: 250px;
  height: 250px;
  position: absolute;
  bottom: 0;
  right: -73px;
  box-shadow: 0 0 38px #ffffff12 inset;
  border-radius: 100%;
  transform: translatey(39%);
  z-index: 1;
}

.programs__item-line.programs__item-line--false svg path {
  fill: gray;
}

@media (min-width: 1025px) {
  .swiper-slide:nth-child(1) .programs__item,
  .swiper-slide:nth-child(3) .programs__item {
    margin-top: 10px;
  }
}

/* price */
.price__wrap {
  padding: 40px 0;
}

.price .selector__name.btn {
  background-color: var(--yellow);
}

.price .selector__icon path {
  stroke: var(--back-black);
}

.price .selector .selector__value {
  color: var(--back-black);
}

.price__selector.selector {
  margin-bottom: 20px;
}

.price__titles {
  display: none;
}

.price__list-wrap {
  position: relative;
}

.price__item {
  display: grid;
  grid-template-areas:
    "name name"
    "cost btn";
  gap: 5px;
  align-items: center;
  padding: 20px;
  border-radius: 20px;
}

.price__name {
  grid-area: name;
  margin-right: auto;
}
.price__cost {
  grid-area: cost;
}
.price__btn {
  grid-area: btn;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.price__list .price__item:nth-child(odd) {
  background-color: white;
}

.price__list .price__item:nth-child(even) {
  background-color: #f3f2ef;
}

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

.price__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: 0.5s ease;
  transform: translatey(-20px);
  max-height: 0;
  overflow: hidden;
}

.price__list.active {
  transform: none;
  max-height: 900px;
}

.pay__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.pay__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pay {
  background-color: white;
  padding: 20px;
  margin-top: 40px;
  border-radius: 20px;
}

.pay__title {
  padding-bottom: 20px;
  border-bottom: 1px transparent solid;
  border-color: var(--border-color);
  margin-bottom: 20px;
}

.pay__title span {
  font-size: 18px;
}

.price--services .price__backimg {
  display: none;
}

.price--services .price__maintable {
  padding: 20px;
  background-color: var(--back-black);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price--services .price__detailes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price--services .price__detailes-subtitle {
  color: white;
  opacity: 0.7;
}

.price--services .price__detailes-title {
  font-size: 18px;
  color: white;
  text-transform: uppercase;
}

.price--services .price__list .price__item:nth-child(odd) {
  background-color: var(--opacity-white);
}

.price--services .price__list .price__item:nth-child(even) {
  background-color: rgb(52 53 49 / 60%);
}

.price--services .price__item > * {
  color: white;
  opacity: 0.9;
}

@media (min-width: 969px) {
  .price__list-wrap {
    padding: 20px;
    background-color: white;
    border-radius: 30px;
  }

  .price__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    padding: 10px 20px;
  }

  .pay {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
  }

  .pay__title {
    margin: 0;
    padding: 0;
    border-bottom: none;
    border-right: 1px transparent solid;
    border-color: var(--border-color);
    height: 60px;
    display: flex;
    align-items: center;
    padding-right: 40px;
    min-width: 300px;
  }

  .pay__item {
    padding: 0;
  }

  .pay__list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
    width: 100%;
  }

  .price__selector.selector {
    margin: 0;
    margin-left: 30px;
  }

  .price__cost {
    grid-area: cost;
    margin-left: 40px;
    white-space: nowrap;
    text-align: left;
    margin-right: 40px;
  }

  .price .selector__list {
    position: relative;
    opacity: 1;
    max-height: unset;
    top: unset;
    bottom: unset;
    left: unset;
    right: unset;
    visibility: visible;
    transform: none;
    flex-direction: row;
    width: fit-content;
    background-color: transparent;
    gap: 10px;
  }

  .selector__name.btn:not(.calcul-btn) {
    display: none;
  }

  .selector__option.active {
    background-color: var(--yellow);
  }

  .selector__option {
    padding: 10px 20px;
    border-radius: 10px 10px 0 0;
    background-color: white;
    font-size: 14px;
  }

  .price__btn:hover path {
    stroke: var(--back-black);
  }

  .price__btn:hover rect {
    fill: var(--yellow);
  }

  .price--services .price__list .price__item:nth-child(odd) {
    background-color: var(--opacity-white);
  }

  .price--services .price__list .price__item:nth-child(even) {
    background-color: rgb(52 53 49 / 60%);
  }

  .price--services .price__item > * {
    color: white;
    opacity: 0.9;
  }

  .price--services .price__maintable {
    padding: 20px;
    background-color: var(--back-black);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .price.price--services .price__list-wrap {
    background-color: #363730;
  }

  .price.price--services .price__list .price__item:nth-child(even) {
    background-color: rgb(62 63 61 / 60%);
  }

  .price.price--services .price__btn rect {
    fill: var(--yellow);
  }

  .price.price--services .price__btn path {
    stroke: var(--back-black);
  }

  .price.price--services .price__btn:hover rect {
    fill: var(--back-black);
  }

  .price.price--services .price__btn:hover path {
    stroke: var(--yellow);
  }

  .price.price--services .price__detailes-title {
    font-size: 24px;
  }

  .price.price--services .price__pay.pay {
    background-color: var(--light-gray);
  }
}

/* faq */
.faq .section__top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__wrap {
  padding: 60px 0;
}

.faq .selector__option {
  color: var(--back-blac);
  border-radius: 20px;
}

.faq__item {
  padding: 20px;
  border-radius: 20px;
  background-color: white;
  display: none;
  flex-direction: column;
  border: 2px transparent solid;
  transition: 0.3s ease;
}

.faqall.faq .selector__name.btn {
  background-color: var(--back-black);
}

.faq__item.active {
  display: flex;
}

.faq .faq__question,
.faq .faq__answer p {
  color: var(--back-black);
}

.faq__question-block {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 1px transparent solid;
  transition: 0.3s;
  cursor: pointer;
  gap: 30px;
}

.faq__table {
  margin-top: 20px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(-10px);
}

.faq__list.active {
  opacity: 1;
  transition: 0.5s ease;
  transform: none;
}

.faq__answer-block {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}

.faq__item.opened .faq__answer-block {
  max-height: 900px;
}

.faq__item .faq__answer-block svg {
  transition: 0.3s ease;
}

.faq__item.opened .faq__answer-block svg {
  transform: rotate(180deg);
}

.faq__answer {
  padding: 20px;
  background-color: var(--light-gray);
  border-radius: 20px;
  margin-top: 10px;
}

.faq__item:hover {
  border-color: var(--yellow);
}

.faq__item:hover svg rect {
  fill: var(--back-black);
}

.faq__item:hover svg path {
  stroke: var(--yellow);
}

.faqall .faq__wrapper {
  background-color: var(--light-gray);
  padding: 20px;
  border-radius: 20px;
}

@media (min-width: 969px) {
  .faq__selector.selector {
    margin: 0;
    margin-left: 30px;
  }

  .section.faq {
    z-index: 3;
    position: relative;
  }

  .faq .selector__name.btn {
    background-color: transparent;
  }

  .faq .selector__list {
    position: relative;
    opacity: 1;
    max-height: unset;
    top: unset;
    bottom: unset;
    left: unset;
    right: unset;
    visibility: visible;
    transform: none;
    flex-direction: row;
    width: fit-content;
    background-color: transparent;
    gap: 10px;
    margin-bottom: 20px;
  }

  .faq__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    align-items: start;
  }
}
/* starting */
.swiper-btn.swiper-button-prev,
.swiper-btn.swiper-button-next {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: 0;
}

.swiper-btn.swiper-button-prev {
  transform: rotate(180deg);
}

.swiper-btn.swiper-button-prev::after,
.swiper-btn.swiper-button-next::after {
  display: none;
}

.swiper__navigation {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  height: 30px;
}

.starting__item-sub {
  font-size: 14px;
  color: white;
  transition: 0.3s ease;
  z-index: 2;
  opacity: 0;
}

.starting__item {
  position: relative;
}

.starting__backimg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 1;
  transition: 0.3s ease;
}

.starting__item-name {
  color: white;
  position: relative;
  z-index: 2;
  font-size: 18px;
}

.starting__item {
  position: relative;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  gap: 20px;
  cursor: pointer;
  transition: 0.3s ease;
  height: 100%;
  text-align: start;
  justify-content: space-between;
}

.starting__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--back-black);
  z-index: 2;
  opacity: 1;
  transition: 0.3s ease;
}
.starting .swiper-slide {
  height: auto;
}

.starting .swiper-slide-active .starting__item:before {
  opacity: 0.8;
}
.starting .swiper-slide-active .starting__item-sub {
  opacity: 1;
}

.starting__item:hover:before {
  opacity: 0.8;
}

.starting__item:hover .starting__item-sub {
  opacity: 1;
}

.starting__item:hover .starting__item-btn rect {
  fill: var(--back-black);
}

.starting__item:hover .starting__item-btn {
  border-color: var(--yellow);
}

.starting__item:hover .starting__item-btn path {
  stroke: var(--yellow);
}

.starting__item-btn {
  position: relative;
  z-index: 2;
  margin-left: auto;
  border-radius: 100%;
  border: 2px transparent solid;
}

/* @media(min-width: 1025px){
    .swiper-slide:not(.swiper-slide-active) .starting__backimg,
    .swiper-slide:not(.swiper-slide-active) .starting__item-sub {
        opacity: 0;
    }
} */

/* how */
.how__item {
  padding: 20px;
  background-color: var(--opacity-white);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.how__wrap {
  padding: 60px 0;
}

.how__wrap::before {
  content: "";
  width: 300px;
  height: 300px;
  position: absolute;
  top: 0;
  right: -92px;
  box-shadow: 0 0 38px #ffffff12 inset;
  border-radius: 100%;
  transform: translatey(-41%);
  z-index: 0;
}

.how__wrap::after {
  content: "";
  width: 200px;
  height: 200px;
  position: absolute;
  top: 50%;
  left: 0;
  box-shadow: 0 0 38px #ffffff12 inset;
  border-radius: 100%;
  transform: translatex(-50%);
  z-index: 1;
}

.how .how__item {
  position: relative;
}

.how__nexticon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(82%, -50%);
  height: 20px;
  width: 38px;
}

.how__main {
  position: relative;
  z-index: 2;
}

/* process */
.process__counter-block {
  display: none;
}

.process__slider {
  padding: 20px;
  background-color: var(--light-gray);
  border-radius: 20px;
  max-width: 100%;
}

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

.process__item {
  padding: 20px;
}

.process .swiper__navigation {
  display: flex;
}

.process__item-name {
  font-size: 18px;
  font-weight: 600;
}

.process .swiper__navigation {
  justify-content: space-between;
  width: 100%;
  margin: auto;
  margin-bottom: 20px;
  padding: 0 20px;
}

.swiper__pagination {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

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

.process__list .process__item {
  padding: 20px;
  background-color: var(--light-gray);
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.process__item-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.process__main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.process__item-icon svg {
  width: 40px;
  height: 40px;
}

@media (min-width: 769px) {
  .process__main {
    flex-direction: row;
    gap: 20px;
  }

  .process__counter {
    width: 50%;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 20px;
  }

  .process__item-icon svg {
    width: 60px;
    height: 60px;
  }

  .process__list .process__item {
    gap: 20px;
  }

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

  .process__counter-block {
    display: flex;
    width: 193px;
    height: 350px;
    position: relative;
    margin: auto;
  }

  .counter1,
  .counter2,
  .counter3,
  .counter4,
  .counter5,
  .counter6,
  .counter7 {
    position: absolute;
    opacity: 0.4;
  }
  .counter1.active,
  .counter2.active,
  .counter3.active,
  .counter4.active,
  .counter5.active,
  .counter6.active,
  .counter7.active {
    opacity: 1;
  }
  .counter1 {
    top: 0;
    left: 12px;
  }
  .counter2 {
    top: 12px;
    left: 0px;
  }
  .counter3 {
    top: 12px;
    left: 146px;
  }
  .counter4 {
    top: 149px;
    left: 34px;
  }
  .counter5 {
    top: 184px;
    left: 0px;
  }
  .counter6 {
    top: 184px;
    left: 146px;
  }
  .counter7 {
    top: 302px;
    left: 10px;
  }

  .process .swiper-wrapper {
    height: unset;
  }
}

@media (min-width: 1025px) {
  .process__main {
    flex-direction: row;
    gap: 20px;
  }

  .process__counter {
    width: 50%;
  }
}

@media (min-width: 1250px) {
  .process__counter {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    justify-content: space-between;
  }

  .process__slider {
    height: 100%;
    width: calc(100% - 213px);
  }

  .process .swiper-wrapper {
    min-height: 330px;
  }

  .swiper__pagination.process__pagination {
    width: fit-content;
  }

  .process .swiper__navigation {
    justify-content: flex-start;
    gap: 20px;
  }
}

/* facts */
.facts__wrap {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.facts__text,
.facts__title {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.facts__disclaimer-icon {
  padding: 5px;
  height: 20px;
  width: 20px;
  background-color: white;
  border-radius: 100%;
}

.facts__backimg {
  border-radius: 20px;
  overflow: hidden;
}

.facts__disclaimer {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  background-color: var(--opacity-white);
  border-radius: 20px;
}

.facts__title span {
  font-size: 20px;
  font-weight: 600;
}

@media (min-width: 1025px) {
  .facts__wrap {
    display: grid;
    grid-template-areas:
      "text img"
      "dis dis";
    gap: 20px;
  }

  .facts__text {
    grid-area: text;
  }
  .facts__backimg {
    grid-area: img;
  }
  .facts__disclaimer {
    grid-area: dis;
  }

  .facts__title {
    flex-direction: row;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px transparent solid;
    border-color: var(--opacity-white);
  }

  .facts__disclaimer {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  .facts__disclaimer-icon {
    min-height: 20px;
    min-width: 20px;
  }

  .facts__disclaimer p {
    max-width: 450px;
  }

  .facts__disclaimer .btn {
    margin-left: auto;
  }

  .facts__wrap {
    padding: 60px 0;
  }

  .facts.section {
    margin-bottom: 0;
  }
}

/* garants */
.garants__backimg {
  display: none;
}

.garants__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background-color: var(--back-black);
  border-radius: 20px;
}

.garants__icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  background-color: var(--opacity-white);
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 24px;
  color: white;
}

.garants__item {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 10px;
}

.garants__text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}

.garants__item-name {
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.garants__item-sub {
  color: white;
}

.garants__icon svg {
  position: absolute;
  top: -5px;
  right: -8px;
}

.garants__section-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.garants .section__top {
  margin-bottom: 10px;
}

@media (min-width: 1025px) {
  .garants__wrap {
    flex-direction: row;
    padding: 60px 0;
  }

  .garants__section-text {
    flex-basis: 50%;
    position: relative;
    z-index: 2;
  }
  .garants__section-text > * {
    position: relative;
    z-index: 2;
  }

  .garants__section-text:before {
    content: "";
    background-color: white;
    filter: blur(34px);
    width: 116%;
    height: 77%;
    position: absolute;
    top: 0;
    left: -13%;
    z-index: 1;
  }

  .garants__list {
    flex-basis: 50%;
    position: relative;
    z-index: 3;
  }

  .garants__backimg {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .section.garants {
    margin-bottom: 0;
  }
}
/* doctors */

.doctors__item {
  display: flex;
  flex-direction: column;
  background-color: var(--back-black);
  padding: 20px;
  border-radius: 20px;
  border: 1px transparent solid;
  cursor: pointer;
  margin: 2px;
}

.doctors__item:hover {
  border-color: var(--yellow);
}

.doctors__img-block {
  position: relative;
}

.doctors__img {
  border-radius: 20px;
  overflow: hidden;
}

.doctors__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  border-radius: 0 0 20px 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  background-color: var(--opacity-gray);
}

.doctors__caption span,
.doctors__role {
  color: white;
  opacity: 0.8;
}

.doctors__details {
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.doctors__name {
  color: var(--yellow);
  font-weight: 600;
  font-size: 18px;
}

.doctors__wrap {
  padding: 20px 0;
}

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

.doctors__subtitle1 {
  font-size: 18px;
}

@media (min-width: 1025px) {
  .doctors .section__top {
    gap: 100px;
    align-items: flex-end;
  }

  .doctors__wrap {
    padding: 60px 0;
  }

  p.doctors__subtitle1 {
    font-weight: 600;
  }
}

/* photo */
.photo__img {
  border-radius: 20px;
  overflow: hidden;
}

/* revs */
.revs__item {
  padding: 20px;
  border-radius: 20px;
  background-color: var(--back-black);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.revs__item-top {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.revs__author {
  font-size: 18px;
  color: white;
}

.revs__rating {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  justify-content: space-around;
  font-size: 18px;
  color: white;
}

.revs__item-text p {
  color: white;
  opacity: 0.7;
  font-weight: 400;
}

.revs__item-more {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.revs__item-more svg {
  transition: 0.3s ease;
  transform: rotate(180deg);
}
.revs__item-more.spoilered svg {
  transform: rotate(0deg);
}

.revs__item-more span {
  color: var(--yellow);
}

.revs__item-details {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding-top: 10px;
  border-top: 1px transparent solid;
  border-color: var(--opacity-white);
  gap: 10px;
  flex-wrap: wrap;
}

.revs__city {
  padding: 10px 15px;
  background-color: var(--opacity-white);
  border-radius: 20px;
  color: white;
}

.revs__date {
  padding: 10px 15px;
  background-color: var(--opacity-white);
  border-radius: 20px;
  color: white;
}

.revs__service {
  padding: 10px 15px;
  background-color: var(--opacity-white);
  border-radius: 20px;
  color: var(--yellow);
}

.revs__item-more:hover svg path {
  stroke: white;
}

.revs__item {
  transition: 0.5s ease-in-out;
  max-height: 900px;
}

.revs__item-text.spoilered {
  max-height: 143px;
  overflow: hidden;
}

@media (min-width: 1025px) {
  .revs__item-details {
    flex-wrap: nowrap;
  }
  .revs__service {
    margin-left: auto;
  }
  .revs__item {
    gap: 20px;
    padding: 30px;
  }

  .revs__item-more {
    cursor: pointer;
  }
}

/* licence */
.licence__subtitle1 {
  font-size: 18px;
}

.licence__item {
  position: relative;
  cursor: pointer;
}

.licence__overlay {
  display: none;
}

.licence__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  border-radius: 20px;
  background-color: var(--light-gray);
  width: 100%;
  z-index: 5;
  transition: 0.3s ease;
}

@media (min-width: 1025px) {
  .licence .section__top {
    align-items: flex-end;
    gap: 80px;
  }

  .licence__overlay {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--opacity-gray);
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    z-index: 4;
    opacity: 0;
    transition: 0.3s ease;
    visibility: hidden;
  }

  .licence__item:hover .licence__caption {
    background-color: var(--back-black);
  }

  .licence__item:hover .licence__caption p {
    color: white;
  }

  .licence__item:hover .licence__overlay {
    visibility: visible;
    opacity: 1;
  }
}

/* karta */
.karta__wrap,
.uslugas__wrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}

.karta__item,
.uslugas__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: var(--light-gray);
  padding: 20px;
  border-radius: 20px;
}

.karta__item-title,
.uslugas__item-title {
  margin-bottom: 10px;
  display: block;
  font-weight: 600;
}

.karta__item-line:hover,
.uslugas__item-line:hover {
  font-weight: 600;
}

@media (min-width: 1025px) {
  .karta__wrap,
  .uslugas__wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 404 */
.error__wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

/* contacts */
.contacts__wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacts__main {
  padding: 30px;
  border-radius: 20px;
  background-color: var(--light-gray);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.contacts_contact {
  font-size: 20px;
}

.socials.contacts__socials .socials__icon {
  background-color: var(--back-black);
}

.socials.contacts__socials .socials__icon:hover {
  background-color: var(--yellow);
}

.socials.contacts__socials .socials__icon:hover path {
  fill: var(--back-black);
}

.contacts__main,
.contacts__map {
  width: 100%;
}

.contacts__map {
  overflow: hidden;
  position: relative;
  max-height: 720px;
  border-radius: 20px;
}

.contacts__map #map {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.contacts__map img,
.contacts__map picture {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.contacts__main .btn {
  margin-top: 40px;
  width: 100%;
}

.contacts__map svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.section.intro.intro--others.intro--contacts::before {
  display: none;
}

.intro__value {
  font-weight: 600;
}

@media (min-width: 1025px) {
  .contacts__wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

/* footer */
.footer {
  background-color: var(--back-black);
  padding: 40px;
  margin-left: 10px;
  margin-right: 10px;
  border-radius: 30px;
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer__logo.logo {
  padding-bottom: 10px;
  border-bottom: 1px white solid;
  border-color: rgba(255, 255, 255, 0.2);
  display: block;
}

.footer__block.footer__block--bottom {
  padding-top: 10px;
  border-top: 1px white solid;
  border-color: rgba(255, 255, 255, 0.2);
  display: block;
}

.footer__block.footer__block--list,
.footer__contacts {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}

.footer .caption {
  color: #ffffff91;
}
.footer a,
.footer p,
.footer div,
.footer span,
.footer li {
  color: white;
}

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__contact-phone,
.footer__contact-email {
  font-size: 20px;
  font-weight: 600;
}

.footer__socials .socials__icon {
  background-color: var(--opacity-white);
}

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

.footer .links__title {
  margin-bottom: 10px;
  color: rgb(164 160 157);
}

.links__item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

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

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

.footer__last-links,
.footer__details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.footer__logo.logo picture {
  max-width: 300px;
}

/* footer--desctop*/

@media (min-width: 769px) {
  .footer__decor svg {
    position: absolute;
    bottom: -40px;
    z-index: 0;
  }

  .footer__wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-areas:
      "aside list list"
      "bot bot bot";
    gap: 40px;
  }

  .footer__block.footer__block--aside {
    grid-area: aside;
  }
  .footer__block.footer__block--list {
    grid-area: list;
  }
  .footer__block.footer__block--bottom {
    grid-area: bot;
  }

  .footer__block.footer__block--list {
    flex-direction: column;
    gap: 60px;
  }

  .footer__links.links,
  .footer__contacts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer__block.footer__block--aside {
    max-width: 300px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .footer__caption.caption.desctop {
    margin-top: auto;
  }

  .footer__block.footer__block--bottom {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    padding-top: 40px;
  }

  .footer__details .caption {
    max-width: 336px;
  }

  .footer__logo.logo {
    border-bottom: none;
  }

  svg.footer__decor-left {
    left: 0;
  }

  svg.footer__decor-right {
    right: 0;
  }

  .footer__caption.caption.mobile {
    display: none;
  }

  .footer__caption.caption.desctop {
    display: block !important;
  }
}

@media (min-width: 1125px) {
  .footer__links.links,
  .footer__contacts {
    grid-template-columns: repeat(3, 1fr);
  }
}

.toTop path {
  stroke: var(--back-black);
}

.toTop {
  background-color: var(--yellow);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 130px;
  right: 40px;
  cursor: pointer;
  z-index: 999;
  border: 1px transparent solid;
}

.toTop:hover {
  background-color: var(--back-black);
  border-color: var(--yellow);
}

.toTop:hover path {
  stroke: var(--yellow);
}

/* popups */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  visibility: hidden;
  transition: 0.3s ease;
  opacity: 0;
}

.popup.open {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  visibility: visible;
  opacity: 1;
}

.response-popup.open {
  z-index: 9999;
}

.popup__body {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #000000c7;
}

.popup__content {
  max-width: 800px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 30px;
  width: calc(100% - 100px);
  max-height: 455px;
}

.popup__close.close-popup {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: var(--opacity-white);
  border-radius: 50%;
}

.popup__img {
  display: none;
}

.popup__formblock {
  padding: 20px;
}

.popup:not(.calculator-popup) .btn.form__btn.btn--yellow {
  background-color: rgba(50, 53, 32, 1);
  color: var(--yellow);
}

.popup:not(.calculator-popup) .btn.form__btn.btn--yellow:hover {
  background-color: var(--yellow);
  color: var(--back-black);
}

.popup .form .input {
  background-color: var(--light-gray);
  color: var(--back-black);
}

.popup .formblock .formblock__title {
  font-size: 18px;
  color: var(--back-black);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.popup__close.close-popup:hover {
  background-color: var(--back-black);
}

.popup__close.close-popup:hover path {
  stroke: var(--yellow);
}

/* checkbox */

.custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: Arial, sans-serif;
  gap: 10px;
}

.custom-checkbox input {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  background-color: rgba(50, 53, 32, 1);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.custom-checkbox input:checked + .checkmark {
  background-color: rgba(50, 53, 32, 1);
  border-color: var(--yellow);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #ffd700; /* Желтая галочка */
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  border-color: var(--yellow);
}

.custom-checkbox input:checked + .checkmark:after {
  display: block;
}

/* city search */

.select-popup .popup__content {
  padding: 20px;
  justify-content: flex-start;
}

.select-popup .popup__search-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.select-popup a.popup__search-title {
  padding-left: 20px;
  border-left: 1px white solid;
  border-color: var(--border-color);
  text-decoration: underline;
}

.select-popup .popup__search-title {
  font-size: 24px;
}

.select-popup .popup__block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.select-popup input.search__input {
  background-color: var(--light-gray);
}

.select-popup .search__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.search__link:hover {
  font-weight: 600;
}

/* calculator */

.calculator {
  background-color: var(--back-black);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 30px;
  padding: 20px;
}

.calculator__inputs,
.calculator__outputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calculator .btn:not(.btn--yellow),
.selector__name.btn {
  background-color: var(--opacity-white);
  width: 100%;
  color: white;
  font-size: 14px;
}

.selector {
  position: relative;
}

.selector__list {
  padding: 0 20px;
  background-color: white;
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  position: absolute;
  bottom: 10px;
  transform: translateY(100%);
  gap: 20px;
  width: 100%;
  z-index: 6;
}

.selector.opened .selector__list {
  max-height: 500px;
  padding-bottom: 20px;
  padding-top: 20px;
}

.calculator .calculator__output.btn {
  background-color: white;
  color: var(--back-black);
}

.selector__option {
  cursor: pointer;
}

.selector__name {
  cursor: pointer;
  border: 1px transparent solid;
}

.selector__name:hover {
  border-color: var(--yellow);
}

span.selector__value {
  color: white;
  cursor: pointer;
}

.selector__option:hover {
  font-weight: 600;
}

.selector span.selector__value {
  color: white;
}

.calculator__inputs,
.calculator__outputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.selector.opened svg {
  transform: rotate(180deg);
}

.btn span {
  font-size: 14px;
  color: var(--back-black);
}

.select-popup.popup.open.calculator-popup .popup__content {
  height: unset;
}

/* test */
.test__question {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.test-popup .popup__content {
  height: unset;
  max-height: unset;
}

.test-popup .popup__block,
.test,
.test__wrap {
  position: relative;
  height: 100%;
}

.test__question {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
}

.test__question.active {
  visibility: visible;
  opacity: 1;
  position: relative;
}

.test__answer-block {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  width: 20px;
  padding: 5px 10px;
  padding-left: 20px;
  min-width: 100%;
  background-color: var(--light-gray);
  border-radius: 5px;
  border: 1px transparent solid;
  cursor: pointer;
}

.test__answer-block:hover {
  border-color: var(--yellow);
}

.test__answer-block .custom-checkbox {
  background-color: white;
  padding: 15px;
  border-radius: 5px;
}

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

.test__slide-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.test__btn-next,
.test__btn-prev {
  padding: 10px 10px;
  height: 65px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-radius: 5px;
  cursor: pointer;
  gap: 20px;
}

.test__btn-next {
  background-color: var(--back-black);
  color: white;
  padding-left: 20px;
}

.test__btn-next:hover,
.test__btn-prev:hover {
  background-color: rgba(50, 53, 32, 1);
  color: var(--yellow);
}

.test__btn-prev {
  background-color: rgba(43, 44, 37, 0.1);
}

.test__slide-btns svg {
  height: 50px;
  width: 50px;
}

.test-popup .popup__search-title {
  width: 100%;
}

.test__question.test__result .test__slide-btns {
  margin-top: auto;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1025px) {
  .test__wrap {
    min-height: 500px;
  }

  .test__slide-btns {
    flex-direction: row;
  }

  .test-popup .popup__search-title {
    font-size: 36px;
    font-weight: 600;
  }

  .test-popup .test__slide-title {
    font-size: 22px;
  }

  .test__btn-next {
    width: 100%;
  }

  .test__btn-prev {
    width: 200px;
    justify-content: center;
    text-align: center;
  }

  .test__question.test__result .test__slide-btns {
    margin-top: auto;
  }

  .test__question.test__result {
    height: 480px;
  }

  .popup__img,
  .popup__img img {
    display: block;
    border-radius: 30px 0 0 30px;
    min-width: 412px;
  }

  .popup__block {
    display: flex;
    flex-direction: row;
    min-height: 100%;
  }

  .popup__formblock {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-left: 30px;
  }

  .popup .formblock .formblock__title {
    font-size: 24px;
  }

  .popup .formblock {
    max-width: unset;
    width: calc(100% - 40px);
  }

  .popup__formblock::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-102%, -49%);
    background: white;
    width: 110px;
    height: calc(100% - 22px);
    border-radius: 100% 0 0 100%;
    filter: blur(11px);
    z-index: 0;
    opacity: 0.7;
  }

  .popup__close.close-popup {
    right: -50px;
  }

  .popup__formblock::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-78%, -50%);
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 1) 70%,
      rgba(255, 255, 255, 1) 100%
    );
    width: 110px;
    height: calc(100% - 2px);
    border-radius: 89px 0 0 89px;
    z-index: 0;
  }

  .popup__content {
    width: 800px;
    height: 455px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .popup__title.popup__result {
    text-align: center;
    font-weight: 600;
    opacity: 0.8;
    font-size: 24px;
  }

  .calculator {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .calculator .btn {
    height: 50px;
  }
}

.swiper__navigation {
  display: none;
}
@media (min-width: 1025px) {
  table:not(.docpage__shedule-list) {
    overflow-x: unset;
  }
}
@media (min-width: 769px) {
  .swiper__navigation {
    display: flex;
  }
}

.text__content a {
  color: #3360cd;
  text-decoration: underline;
}

.yure {
  display: none;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  background-color: rgb(43 44 37 / 84%);
  transition: 0.5s ease;
}
.yure.active {
  display: block;
}
.yure.closed {
  transform: translatey(200%);
}

.yure a {
  border-bottom: 1px #d40000 solid;
}
.yure__btn {
  background-color: var(--yellow);
  width: fit-content;
  padding: 10px;
  border-radius: 5px;
  white-space: nowrap;
  cursor: pointer;
  color: black;
}
.yure__close {
  padding: 5px 10px;
  background-color: var(--yellow);
  cursor: pointer;
  border-radius: 5px;
  line-height: 1;
  height: 38px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 30px;
}

.yure__close span {
  transform: translate(-50%, -50%) rotate(45deg);
  font-size: 35px;
  line-height: 1;
  display: block;
  color: black;
  position: absolute;
  top: 47%;
  left: 50%;
  margin-left: 1px;
}
.yure__wrap {
  position: relative;
  padding: 10px;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  .yure__wrap {
    flex-direction: column;
  }
}
.yure__btns {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.yure__wrap a {
  color: var(--yellow);
  border-color: var(--yellow);
  font-size: 10px;
}

.yure__wrap p {
  color: white;
  font-size: 10px;
}

.stock {
  margin-bottom: 120px;
}

.stock__items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.stock__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
  border-radius: 24px;
  padding: 24px;
  flex: 0 0 calc((100% - 60px)/4);
  position: relative;
  overflow: hidden;
}

.stock__item-title {
  font-size: 20px;
  line-height: 110%;
  color: #fff;
  margin-bottom: 10px;
}

.stock__item-desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #fff;
}

.stock__item-date {
  display: flex;
  gap: 8.5px;
  align-items: center;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 60px;
  padding: 7px 16px 7px 10px;
}

.stock__item-date p {
  font-size: 12px;
  line-height: 130%;
  text-transform: uppercase;
  color: #fff;
}

.stock__item-date img {
  width: 28px;
}

.stock__item-top {
  position: relative;
  z-index: 2;
}

.stock__item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.stock__item-picture {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 0;
}

.stock__item-picture::before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.356);
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
}

@media (width <=1300px) {
  .stock__item {
    flex: 0 0 calc((100% - 40px)/3);
  }
}

@media (width <=1024px) {
  .stock {
    margin-bottom: 60px;
  }

  .stock__items {
    gap: 12px;
  }

  .stock__item {
    padding: 20px;
    gap: 44px;
  }

  .stock__item-title {
    font-size: 18px;
  }

  .stock__item-desc {
    font-size: 14px;
  }

  .stock__item-date {
    padding: 6px 12px 6px 8px;
  }

  .stock__item-date p {
    font-size: 12px;
  }

  .stock__item-date img {
    width: 24px;
  }
}

@media (width <=800px) {
  .stock__item {
    flex: 0 0 calc((100% - 20px)/2);
  }
}

@media (width <=600px) {
  .stock__item {
    flex: 0 0 100%;
  }
}

.starting__item:before {
    opacity: 0.6;
}

.starting__item-sub {
    opacity: 1;
}

.stages-treatment {
  margin-bottom: 80px;
}

.stages-treatment__title {
  font-weight: 600;
  font-size: 48px;
  line-height: 110%;
  color: #2b2c25;
  margin-bottom: 40px;
}

.stages-treatment__items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.stages-treatment__item {
  display: flex;
  gap: 20px;
  flex: 0 0 calc((100% - 20px)/2);
  border-radius: 24px;
  padding: 12px 12px 12px 28px;
  background: #2b2c25;
}

.stages-treatment__item-text {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 71px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.stages-treatment__item-nums {
  display: flex;
  gap: 4px;
  align-items: center;
}

.stages-treatment__item-num {
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 110%;
  color: #2b2c25;
  width: 32px;
  height: 32px;
  background: #fffb96;
  opacity: 0.1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stages-treatment__item-num.active {
  background: #fffb96;
  opacity: 1;
}

.stages-treatment__item-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 110%;
  color: #fffb96;
}

.stages-treatment__item-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: rgba(255, 255, 255, 0.8);
}

.stages-treatment__item-picture {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
}

.stages-treatment__item-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stages-treatment__item-img {
  display: flex;
  flex-shrink: 0;
}

@media (width < 1390px) {
  .stages-treatment__item {
    flex: 0 0 100%;
  }
}

@media (width < 769px) {
  .stages-treatment__item {
    flex-direction: column;
    padding: 8px;
    max-width: 264px;
    width: 100%;
    flex-shrink: 0;
  }

  .stages-treatment__item-picture {
    max-width: 100%;
    max-height: 180px;
  }

  .stages-treatment__item-text {
    padding-left: 8px;
    padding-right: 8px;
    gap: 16px;
    margin-bottom: 0;
  }

  .stages-treatment__title {
    font-size: 24px;
    margin-bottom: 20px;
  }


  .stages-treatment__item-num {
    border-radius: 6px;
    padding: 0;
    width: 28px;
    height: 28px;
    font-weight: 700;
    font-size: 14px;
    color: #2b2c25;
  }

  .stages-treatment__item-title {
    font-size: 20px;
  }

  .stages-treatment__item-desc {
    font-size: 14px;
  }

  .stages-treatment__wrapper {
    overflow-x: auto;
  }

  .stages-treatment__items {
    width: fit-content;
    flex-wrap: nowrap;
    gap: 8px;
  }
}

.stages-treatment__item-title {
    margin-bottom: 8px;
}