* {
  box-sizing: border-box;
}

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

a:hover,
button:hover {
  transition: 0.3s;
}

body {
  margin: 0;
  background: #fff;
  font-family: "Montserrat-Regular", monospace;
}

img {
  max-width: 100%;
}

.narkolog-pd .narkolog-suptitle img {
  float: right;
  border-radius: 20px;
}

input:focus {
  outline: none;
}

input {
  border: none;
}

button {
  padding: 0;
  cursor: pointer;
  border: none;
  background: none;
}

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

.clear {
  clear: both;
}

.container {
  padding: 0 20px;
  max-width: 1336px;
  margin: 0 auto;
}

.pricelist-titile.active img {
  transform: rotate(180deg);
  transition: all 0.3s;
}

.workbg {
  padding: 0 0 0 0;
  background: #ecf2f9;
}

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

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

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

.section-offset {
  margin-bottom: 160px;
}

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

.sticker {
  padding: 10px 14px;
  border-radius: 10px;
  background-color: rgba(150, 132, 252, 0.2);
}

.sticker__text {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  color: rgb(28, 28, 28);
}

.content-body h3 {
  font-family: "Montserrat-Bold", monospace;
  font-size: 24px;
  line-height: 30px;
  color: #6950af;
  margin-top: 0;
  margin-bottom: 20px;
}

.content-body h3:last-child {
  margin-bottom: 0;
}

.content-body ul {
  margin-bottom: 20px;
}

.content-body ul:last-child {
  margin-bottom: 0;
}

.content-body ul li {
  list-style: none;
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 15px;
}

.content-body ul li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: rgb(150, 132, 252);
  border-radius: 50%;
}

.content-body ul li:last-child {
  margin-bottom: 0;
}

.content-body ol {
  padding: 0;
  margin: 0;
  list-style-type: none;
  counter-reset: my-counter;
  margin-bottom: 15px;
}

.content-body ol>li {
  position: relative;
  padding-left: 65px;
  min-height: 50px;
  color: #4d4d4d;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 20px;
}

.content-body ol>li:last-child {
  margin-bottom: 0;
}

.content-body ol>li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  position: absolute;
  top: 0;
  left: 0;
  color: rgb(105, 80, 175);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgb(105, 80, 175);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.content-body p {
  font-size: 16px;
  line-height: 25px;
  margin-top: 0;
  margin-bottom: 15px;
}

.content-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 550px) {
  .workbg {
    background: none !important;
  }
}

/*header*/

.librekon-btn-mobile {
  display: none;
}

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

.header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  margin-block-end: 32px;
}

.header-city {
  align-items: flex-end;
  display: flex;
}

.header-city-title {
  font-family: "Montserrat-ExtraLight", monospace;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}

.header-city-button {
  padding: 0 0 0 3px;
}

.header-city-button button {
  font-family: "Montserrat-Bold", monospace;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}

.header-city-button button:hover {
  text-decoration: underline;
}

.header-adress {
  padding: 9px 0 0 0;
}

.header-adress button {
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}

.header-link {
  padding: 0 0 5px 0;
  display: flex;
  flex-direction: column;
}

.header-link a {
  text-decoration: none;
  font-size: 17px;
  line-height: 21px;
  color: #000000;
}

.header-link a span {
  font-family: "Montserrat-Bold", monospace;
}

.header-link a:hover span {
  text-decoration: underline;
}

.header-links-title {
  font-size: 14px;
  line-height: 17px;
  color: #999999;
}

.header-social-ul {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-social-li {
  flex-shrink: 0;
  width: 40px;
}

.header-social-li a {
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-social-li a img {
  height: 100%;
}

.header-social-li a:hover svg path {
  fill: #9684fc;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-button button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: initial;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  padding: 20px 18px;
  background: #9684fc;
  border-radius: 10px;
}

.header-button button:hover {
  background: #d4b9ff;
}

.header-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: initial;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  padding: 20px 18px;
  background: #9684fc;
  border-radius: 10px;
}

.header-button a:hover {
  background: #d4b9ff;
}

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

.header-ul {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  width: 100%;
}

.header-li {
  position: relative;
}

.header-li:last-child {
  padding: 0;
}

.header-nav {
  position: relative;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #000000;
  text-decoration: none;
  display: flex;
  align-items: center;
  outline: none;
  padding-block: 18px 20px;
}

.header-nav img {
  margin: 0 0 0 8px;
}

.header-nav:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 3px;
  width: 0;
  background: #9684fc;
  transition: 0.4s;
}

.header-li:hover .header-nav:after {
  width: 100%;
}

.header-li:hover .header-nav img {
  transition: 0.4s;
  transform: rotate(-180deg);
}

.header-nav>span {
  visibility: hidden;
}

.header-nav::before {
  content: attr(data-title);
  position: absolute;
  left: 0;
}

.header-li:hover .header-absolute {
  display: block;
}

.header-absolute {
  z-index: 12;
  padding: 0 0 20px 0;
  position: absolute;
  top: 55px;
  left: 0;
  width: 300px;
  background: #e0dbff;
  border-radius: 10px;
  display: none;
}

.header-absolute-li {
  position: relative;
  padding: 15px 20px 0 20px;
}

.header-absolute-li2 {
  position: relative;
  padding: 15px 20px 0 20px;
}

.header-absolute-nav {
  color: #6950af;
  font-size: 14px;
  line-height: 17px;
  text-decoration: none;
}

.header-absolute-nav2 {
  color: #6950af;
  font-size: 14px;
  line-height: 17px;
  text-decoration: none;
}

.header-absolute-li:hover .header-absolute-nav {
  color: #fff;
}

.header-absolute-li2:hover .header-absolute-nav2 {
  color: #fff;
}

.header-absolute2 {
  z-index: 12;
  padding: 0 0 20px 0;
  position: absolute;
  top: 0;
  left: 100%;
  width: 300px;
  background: #e0dbff;
  border-radius: 10px;
  display: none;
}

.header-absolute-li:hover .header-absolute2 {
  display: block;
}

.header-search {
  display: flex;
  align-items: center;
}

.header-search .header-input {
  max-width: 243px;
}

.img-str {
  position: absolute;
  left: 110%;
  top: 42%;
}

.header-li:hover .img-str {
  transition: 0.4s;
  transform: rotate(-180deg);
}

.accordion2 .item2.open2~.hidden-box2 {
  display: block;
  font-size: 16px;
  line-height: 150%;
  color: #1e3301;
}

.burger-li2 {
  position: relative;
}

.accordion2 .item2 {
  position: absolute;
  top: 0;
  right: 65%;
}

[data-title="Услуги"]~.item2 {
  right: 76%;
}

.burger-li {
  position: relative;
}

.accordion2 .item2level2 {
  left: -30px;
  top: -7px;
  width: 40px;
}

.modal-button input {
  font-family: "Montserrat-Bold";
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
  padding: 12px 40px;
  background: #6950af;
  border: 1px solid #a795be;
  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
  cursor: pointer;
}

.otzivsaection-img2 {
  text-align: right;
  margin: -38px 0 0 0;
}

.otzivsaection-img2 img {
  width: 87px;
}

@media screen and (max-width: 768px) {
  .otzivsaection-text {
    padding: 21px 10px 0px 10px;
    font-size: 14px;
    line-height: 17px;
    color: #8c8c8c;
  }

  .otzivsaection-img2 {
    margin: -35px 0 0 0;
  }

  .workbg {
    padding: 0;
  }
}

.work-buttton {
  text-decoration: none;
}

.header-link-oko {
  display: none;
}

.dn {
  display: none;
}

@media screen and (max-width: 992px) {
  .header {
    padding: 20px 0;
    z-index: 3333;
    position: relative;
    background: #fff;
  }

  .mt-mobile {
    overflow: auto;
    padding: 210px 20px 20px 20px;
  }
}

.popup__search {
  margin-bottom: 16px;
}

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

.modal .header-input input {
  width: 100%;
  background: url("../images/header-input.svg") 10px 50% no-repeat;
}

.header-input input {
  width: 100%;
  font-size: 16px;
  line-height: 28px;
  margin: 0 0 0 0;
  color: rgba(0, 0, 0, 0.51);
  padding: 0 0 0 35px;
  height: 45px;
  background: url("../images/header-input.svg") 10px 50% no-repeat;
  border: 1px solid #d0d0d0;
  border-radius: 10px;
}

.header-input input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.51);
}

.header-input input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.51);
}

.header-input input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.51);
}

.header-input input::placeholder {
  color: rgba(0, 0, 0, 0.51);
}

.header-search-button {
  padding: 0 0 0 17px;
}

.header-search-button button {
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  padding: 12px 38px;
  background: #735df8;
  border-radius: 10px;
}

.header-right {
  padding: 0 0 0 0;
  display: flex;
  align-items: center;
}

/*work*/

.work {
  padding: 20px 0 0 0;
}

.work-container {
  max-width: 1550px;
  padding: 0 120px 0 20px;
}

.work-wrap {
  display: flex;
}

.work-block {
  width: 50%;
}

.work-img {
  background: url(/netcat_template/template/toksikolog-clinic.ru/images/work-img.png);
  background-size: cover;
  width: 100%;
  height: 100%;
}

@media (max-width: 550px) {
  .work-img {
    background: none !important;
  }
}

.work-block2 {
  padding: 12px 0 0 60px;
  width: 50%;
}

.work-title {
  font-family: "Montserrat-ExtraBold", monospace;
  font-weight: 700;
  font-size: 48px;
  line-height: 59px;
  color: #6950af;
}

.work-title span {
  font-family: "Montserrat-Regular", monospace;
  font-size: 48px;
  line-height: 59px;
  color: rgba(0, 0, 0, 1);
}

.work-suptitle {
  padding: 30px 0 0 0;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}

.work-ul {
  padding: 60px 0 0 0;
}

.work-li {
  background: url(../images/work-li.svg) 0 50% no-repeat;
  padding: 0 0 0 24px;
  margin: 0 0 15px 0;
  display: flex;
  align-items: flex-start;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}

.work-buttons {
  display: flex;
  align-items: center;
  padding: 30px 0 0 0;
}

.work-button {
  padding: 0 23px 0 0;
}

.work-button:last-child {
  padding: 0;
}

.work-buttton {
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  padding: 20px 20px;
  background-color: #9684fc !important;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
}

.work-buttton:hover {
  background: #d4b9ff !important;
}

.plashka_top {
  padding: 1px 1em;
  padding-bottom: 41px;
  background: #40338a;
  color: #fff;
  font-size: 1.1em;
  position: relative;
  z-index: 1111;
  min-height: 50px;
  text-align: center;
}

.hide {
  display: none;
}

/*pricelist*/

.pricelist {
  padding: 80px 0 0 0;
}

.pricelist-titile {
  font-family: "Montserrat-Bold", monospace;
  font-weight: 700;
  font-size: 40px;
  line-height: 49px;
  color: #6950af;
  margin: 0;
  user-select: none;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .pricelist-titile {
    flex-direction: column;
  }
}

.pricelist-accordion {
  padding: 40px 0 0 0;
}

.expand {
  float: right;
  display: inline;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  margin: 0 10px;
}

.sidebar-1 {
  /* these are the styles for the container around the menu */
  width: 100%;
  padding: 0px;
  display: inline-block;
}

.sidebar-menu {
  margin: 15px 0 0 0;
  /*this style impacts the look of the heading containers. */
  cursor: pointer;
  padding: 26px 50px 26px 86px;
  position: relative;
  color: $maincolor;
  background: #f7f7f7;
  border-radius: 10px;
  font-size: 24px;
  line-height: 29px;
  color: #595353;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.5px;
}

.sidebar-menu:before {
  content: "";
  width: 4px;
  height: 30px;
  background: #9684fc;
  position: absolute;
  right: 33px;
  top: calc(37px - 12.5px);
  transition: all 0.2s ease;
}

.sidebar-menu:after {
  content: "";
  width: 4px;
  height: 30px;
  background: #9684fc;
  position: absolute;
  right: 33px;
  top: calc(37px - 12.5px);
  transition: all 0.2s ease;
}

.sidebar-menu:after {
  transform: rotate(90deg);
}

.open {
  background: #d4b9ff !important;
  color: #fff;
}

.open:before {
  background: #fff;
  animation: turn-plus;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.open:after {
  background: #fff;
  animation: turn-crossbar;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

@keyframes turn-plus {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(90deg);
  }
}

@keyframes turn-crossbar {
  0% {
    transform: none;
    transform: rotate(90deg);
  }

  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(90deg);
  }
}

.sub-menu {
  /*this style is for the sub-menu box*/
  color: darken($maincolor, 30%);
  padding: 0 0 15px 0;
  font-size: 1em;
  display: none;
  overflow: hidden;
  max-height: 2500px;
  transition: max-height 800ms cubic-bezier(0.7, 0, 0.47, 0.57);

  &:last-child {
    border-bottom: 0;
  }
}

.pricelist-wrap {
  padding: 9px 0 9px 86px;
  border-bottom: 1px solid #ededed;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricelist-suptitle {
  font-size: 20px;
  line-height: 24px;
  color: #8c8c8c;
}

.pricelist-right {
  display: flex;
  align-items: center;
}

.pricelist-price {
  font-family: "Montserrat-Bold", monospace;
  font-size: 20px;
  line-height: 24px;
  color: #595353;
}

.pricelist-button {
  padding: 0 0 0 20px;
}

.pricelist-button button {
  font-size: 16px;
  line-height: 20px;
  color: #9684fc;
  padding: 18px 63px;
  border: 1px solid #9684fc;
  border-radius: 10px;
}

.pricelist-button button:hover {
  background: #9684fc;
  color: #fff;
}

/*onashey*/

.onashey {
  padding: 100px 0 135px 0;
}

.onashey-wrap {
  display: flex;
}

.onashey-block {
  width: 31%;
  padding: 0 12px 0 0;
}

.onashey-block2 {
  width: 42%;
  padding: 0 12px;
}

.onashey-block3 {
  width: 27%;
  padding: 0 0 0 18px;
}

.onashey-suptitle {
  padding: 40px 0 0 0;
  font-size: 16px;
  line-height: 20px;
  color: #636363;
}

.onashey-button {
  padding: 40px 0 0 0;
}

.onashey-button button {
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  padding: 10px 63px;
  background: #9684fc;
  border-radius: 10px;
}

.onashey-button button img {
  margin: 0 15px 0 0;
}

.onashey-button button:hover {
  background: #d4b9ff;
}

.onashey-title {
  font-family: "Montserrat-Bold", monospace;
  font-size: 25px;
  line-height: 30px;
  color: #5c5c5c;
}

.onashey-inner {
  display: flex;
  padding: 20px 0 0 0;
}

.onashey-inner-block {
  width: 50%;
}

.onashey-inner-li {
  padding: 20px 0 0 0;
}

.nav-li {
  font-size: 16px;
  line-height: 20px;
  color: #8c8c8c;
  margin: 0 0;
  padding: 0 10px;
  outline: none;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

.nav-li>span {
  visibility: hidden;
}

.nav-li::before {
  content: attr(data-title);
  position: absolute;
  left: 0;
}

.nav-li:hover {
  color: #9684fc;
}

.nav-li:hover::before {
  font-family: "Montserrat-Bold";
}

.onashey-suptitle2 {
  padding: 64px 0 0 0;
  font-size: 16px;
  line-height: 20px;
  color: #8c8c8c;
}

/*besplatno*/
.besplatno-container {
  padding: 0;
  max-width: 1470px;
}

.besplatno-border {
  background: linear-gradient(360deg, #e0dbff 40%, rgba(191, 184, 234, 0) 100%);
  border-radius: 10px;
  padding: 39px 89px 50px 94px;
  position: relative;
}

.besplatno-width {
  position: relative;
  z-index: 1;
  width: 100%;
}

.besplatno-wrap {
  display: flex;
  align-items: center;
  padding: 60px 0 0 0;
}

.besplatno-input input {
  font-size: 16px;
  line-height: 20px;
  margin: 0 0 0 0;
  width: 100%;
  color: #888686;
  padding: 0 0 0 30px;
  height: 61px;
  background: #fff;
  border-radius: 10px;
}

.besplatno-input input::-webkit-input-placeholder {
  color: #6950af;
}

.besplatno-input input::-moz-placeholder {
  color: #6950af;
}

.besplatno-input input:-ms-input-placeholder {
  color: #6950af;
}

.besplatno-input input::placeholder {
  color: #6950af;
}

.besplatno-input {
  padding: 0 24px 0 0;
  width: 38%;
}

.besplatno-button {
  width: 24%;
}

.besplatno-button button {
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  padding: 20px 0;
  width: 100%;
  background: #735df8;
  border-radius: 10px;
}

.besplatno-title {
  padding: 40px 0 0 0;
  font-size: 20px;
  line-height: 24px;
  color: #888686;
}

.besplatno-link {
  padding: 20px 0 0 0;
}

.besplatno-link a {
  font-family: "Montserrat-Bold";
  text-decoration: none;
  font-size: 48px;
  line-height: 24px;
  color: #6950af;
}

.besplatno-link a:hover {
  color: #8b64fa;
}

.besplatno-absolute {
  position: absolute;
  width: 397px;
  right: 89px;
  bottom: -4px;
}

.besplatno__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.besplatno__img {
  flex: 0 0 300px;
  width: 300px;
  height: 300px;
  object-fit: cover;
}

/*akciisection*/

.akciisection {
  padding: 85px 0 0 0;
}

.akciisection-slayder {
  padding: 40px 0 0 0;
}

.akciisection-link {
  padding: 35px 0 0 0;
}

.akciisection-link {
  text-decoration: none;
  font-family: "Montserrat-Bold";
  font-size: 36px;
  line-height: 44px;
  color: #9684fc;
}

.akciilink:hover .akciisection-link {
  color: #6950af;
}

.akciilink {
  display: block;
  text-decoration: none;
}

.akciisection-suptitle {
  padding: 20px 0 0 0;
  font-size: 20px;
  line-height: 24px;
  color: #5a5252;
}

.akciisection-container {
  padding: 0 8px;
}

/*nashprem*/

.nashprem {
  padding: 80px 0 0 0;
}

.nashprem-border {
  padding: 48px 94px 70px 94px;
  background: linear-gradient(360deg, #f3f3f3 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 10px;
}

.nashprem-wrap {
  display: flex;
  justify-content: space-between;
  padding: 50px 0 0 0;
}

.nashprem-img {
  height: 92px;
}

.nashprem-block {
  width: 20%;
}

.nashprem-title {
  padding: 20px 0 0 0;
  font-size: 18px;
  line-height: 22px;
  color: #323232;
}

/*novostisection*/

.novostisection {
  padding: 50px 0 0 0;
}

.novostisection-container {
  padding: 0 20px;
}

.novostisection-wrap {
  display: flex;
  padding: 40px 0 0 0;
}

.novostisection-block {
  width: 33.3333333%;
  padding: 0 12px;
}

.novostisection-suptitle {
  padding: 50px 0 0 0;
  font-size: 16px;
  line-height: 20px;
  color: #8c8c8c;
}

.novostisection-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0 0 0;
}

.novostisection-data {
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}

.novostisection-link a {
  font-family: "Montserrat-Bold";
  text-decoration: none;
  font-size: 16px;
  line-height: 20px;
  color: #6950af;
}

.novostisection-link a:hover {
  text-decoration: underline;
}

.novostisection .akciiboth {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.novostisection .akciisection-link {
  flex-grow: 1;
}

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

/*vrachsection*/

.vrachsection {
  padding: 100px 0 0 0;
}

.vrachsection-container {
  padding: 0 8px;
}

.vrachsection-wrap {
  display: flex;
  padding: 40px 0 0 0;
}

.vrachsection-block {
  width: 25%;
  padding: 0 12px;
}

.vrachsection-name {
  padding: 40px 0 0 0;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
  text-align: center;
}

.vrachsection-button {
  text-align: center;
  padding: 20px 0 0 0;
}

.vrachsection-button button {
  font-size: 16px;
  line-height: 20px;
  color: #9684fc;
  padding: 20px 45px;
  border: 1px solid #9684fc;
  border-radius: 10px;
}

.vrachsection-button button:hover {
  background: #9684fc;
  color: #fff;
}

/*garant*/

.garant-wrap {
  display: flex;
  padding: 70px 0 0 0;
}

.garant-block {
  width: 25%;
}

.garant-img {
  height: 84px;
}

.garant-title {
  padding: 29px 0 0 0;
  font-size: 18px;
  line-height: 22px;
  color: #323232;
}

/*otvet*/

.sub-text {
  padding: 40px 50px 10px 89px;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}

/*otzivsaection*/

.otzivsaection {
  padding: 80px 0 0 0;
}

.otzivsaection-container {
  padding: 0 8px;
}

.otzivsaection-wrap {
  display: flex;
  padding: 60px 0 0 0;
}

.otzivsaection-block {
  width: 25%;
  padding: 0 12px;
}

.otzivsaection-img2 {
  text-align: right;
  margin: -44px 0 -15px 0;
}

.otzivsaection-name {
  font-family: "Montserrat-Medium";
  font-size: 20px;
  line-height: 24px;
  color: #606060;
}

.otzivsaection-text {
  padding: 20px 0 0 0;
  font-size: 16px;
  line-height: 20px;
  color: #8c8c8c;
}

/*fotosection*/

.fotosection {
  padding: 70px 0 0 0;
}

.fotosection-slayder {
  padding: 50px 0 0 0;
}

.fotosection-wrap {
  display: flex;
}

.fotosection-block {
  padding: 0 12px 0 0;
}

.fotosection-img {
  cursor: pointer;
}

.fotosection-block2 {
  padding: 0 0 0 12px;
}

.fotosection-inner {
  display: flex;
}

.fotosection-inner-block {
  padding: 0 12px 0 0;
}

.fotosection-inner-block2 {
  padding: 0 0 0 12px;
}

.fotosection-block-pd {
  padding: 24px 0 0 0;
}

/*licenziyasection*/

.licenziyasection {
  padding: 120px 0 0 0;
}

.licenziyasection-slayder {
  padding: 50px 0 0 0;
}

.licenziyasection-border {
  padding: 43px 69px 57px 83px;
  background: linear-gradient(360deg, #f3f3f3 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 10px;
}

.licenziyasection-pd {
  padding: 0 0 0 11px;
}

/*mapsection*/

.mapsection {
  padding: 70px 0 0 0;
}

.mapsection-map {
  border-radius: 20px;
  padding: 40px 0 0 0;
}

/*besplatno2*/

.besplatno2 {
  padding: 200px 0 80px 0;
}

.besplatno-right {
  display: flex;
  justify-content: flex-end;
}

.besplatno-absolute2 {
  position: absolute;
  width: 397px;
  left: 67px;
  bottom: -4px;
}

.besplatno-border2 {
  background: linear-gradient(360deg, #e0dbff 40%, rgba(191, 184, 234, 0) 100%);
  border-radius: 10px;
  padding: 39px 94px 50px 94px;
  position: relative;
}

/*footer*/

.footer {
  padding: 80px 0;
  border-top: 1px solid #dadada;
}

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

.footer-title {
  padding: 30px 0 0 0;
  font-family: "Montserrat-Bold", monospace;
  font-size: 14px;
  line-height: 17px;
  color: #000000;
}

.footer-link {
  padding: 20px 0 0 0;
}

.footer-link a {
  font-size: 15px;
  line-height: 18px;
  color: #000000;
  text-decoration: none;
}

.footer-link a:hover {
  text-decoration: underline;
}

.footer-suptitle {
  padding: 20px 0 0 0;
  font-size: 12px;
  line-height: 15px;
  color: #535353;
}

.footer-block-flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-li {
  padding: 0 0 10px 0;
}

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

.footer-li a:visited {
  text-decoration: none;
  color: inherit;
}

.footer-li a:hover {
  color: #6950af;
}

.footer-li2 {
  padding: 20px 0 0 0;
}

.footer-li2 a {
  font-size: 15px;
  line-height: 18px;
  color: #000000;
  text-decoration: none;
}

.footer-li2 a:hover {
  text-decoration: underline;
}

.footer-link2 a {
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  text-decoration: none;
}

.footer-link2 a:hover {
  text-decoration: underline;
}

.footer-pd {
  padding: 30px 0 0 0;
}

.footer-tel {
  padding: 0 0 5px 0;
}

.footer-tel a {
  font-size: 17px;
  line-height: 21px;
  color: #000000;
  text-decoration: none;
}

.footer-tel a span {
  font-family: "Montserrat-Bold";
}

.footer-tel a:hover span {
  text-decoration: underline;
}

.footer-tel-title {
  padding: 5px 0 0 0;
  font-size: 14px;
  line-height: 17px;
  color: #999999;
}

.footer-email {
  padding: 20px 0 0 0;
}

.footer-email a {
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  text-decoration: none;
}

.footer-email a:hover {
  text-decoration: underline;
}

.footer-right {
  display: flex;
  justify-content: space-between;
  column-gap: 10px;
  row-gap: 25px;
}

.footer-link-title {
  font-family: "Montserrat-Bold";
  text-decoration: none;
  font-size: 14px;
  line-height: 17px;
  color: #000000;
}

.footer-list_flex {
  display: flex;
  justify-content: space-between;
}

.footer-partner-title {
  font-family: "Montserrat-Bold";
  font-size: 14px;
  line-height: 17px;
  color: #000000;
}

.footer-partner-ul {
  margin: 0 0 0 -15px;
  display: flex;
  align-items: center;
  padding: 10px 0 0 0;
}

.footer-partner-li {
  padding: 0 10px 0 0;
}

.footer-partner-li:last-child {
  padding: 0;
}

.footer-oplata-title {
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}

.footer-oplata-img {
  padding: 20px 0 0 0;
}

.footer-middle {
  padding: 15px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-middle-wrap {
  display: flex;
  align-items: center;
}

.footer-input input {
  font-size: 16px;
  line-height: 28px;
  margin: 0 0 0 0;
  width: 243px;
  color: rgba(0, 0, 0, 0.51);
  padding: 0 0 0 35px;
  height: 61px;
  background: none;
  border: 1px solid #d0d0d0;
  border-radius: 10px;
}

.footer-input input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.51);
}

.footer-input input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.51);
}

.footer-input input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.51);
}

.footer-input input::placeholder {
  color: rgba(0, 0, 0, 0.51);
}

.footer-button {
  padding: 0 0 0 16px;
}

.footer-button button {
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  padding: 20px 38px;
  background: #735df8;
  border-radius: 10px;
}

.footer-button button:hover {
  background: #d4b9ff;
}

.footer-supsuptitle {
  font-size: 12px;
  line-height: 15px;
  color: #000000;
}

.footer-middle-block {
  padding-right: 15px;
}

.footer-middle-block2 {
  padding-right: 15px;
}

.footer-bottom {
  padding-block: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom-title {
  font-size: 14px;
  line-height: 17px;
  color: #000000;
}

/*BURGER*/

.mt-munu-mb {
  padding: 0 0 0 0;
  padding-block-start: 138px;
}

@media screen and (width<=482px) {
  .mt-munu-mb {
    padding-block-start: 175px;
  }
}

.burger {
  position: absolute;
  top: 14px;
  right: 0;
  display: none !important;
  color: #23f0ff;
  cursor: pointer;
  z-index: 12;
  display: flex;
}

.burger i:nth-of-type(1) {
  display: block;
}

.burger i:nth-of-type(2) {
  display: none;
}

.burger.burger-open {
  color: #2a3255;
}

.burger.burger-open i:nth-of-type(1) {
  display: none;
}

.burger.burger-open i:nth-of-type(2) {
  display: block;
}

.body-open {
  overflow: hidden;
}

.mt-mobile {
  position: absolute;
  top: 0;
  z-index: 11;
  right: 0;
  height: 100vh;
  width: 100%;
  padding: 80px 20px 20px 20px;
  background-color: #ffffff;
  transition: 0.5s ease all;
  clip-path: circle(100%);
}

.mt-mobile.nav-open {
  clip-path: circle(0px at 100% 0px);
}

/*ACCARDION2*/

.accordion2 {
  padding: 0 0 0 0;
  margin: 0 0 0 0;
}

.accordion2 .item2 {
  padding: 16px 0 0 0;
  cursor: pointer;

  grid-template-columns: auto 1fr auto;
  column-gap: 24px;
  row-gap: 32px;
  align-items: center;
  transition: border-top 0.3s;
}

.accordion2 .item2.open2 .hidden-box2 {
  display: block;
  font-size: 16px;
  line-height: 150%;
  color: #1e3301;
}

.accordion2 .text2 {
  position: relative;
  padding: 0 0 0 0;
  width: 100%;
  display: flex;

  align-items: center;

  font-size: 16px;
  line-height: 150%;
  color: #1e3301;
  margin: 0;
}

.accordion2 .item2.open2 .text2 {
  transition: color 0.3s;
}

.accordion2 .icon2 {
  top: 0;
  right: 0;
  width: auto;
  height: auto;
  margin: 0 0 0 14px;
  transition: transform 0.2s ease-in;
}

.accordion2 .item2.open2 .icon2 {
  transform: rotate(-90deg);
}

.accordion2 .hidden-box2 {
  grid-column: 1;
  display: none;
  transition: display 0.2 ease-in;
}

.hidden-box2 {
  padding: 0 0 0 0;
}

.burger-ul {
  padding: 0 0 0 20px;
}

.burger-li {
  padding: 10px 0 0 0;
}

.burger-li a {
  text-decoration: none;
  font-size: 16px;
  line-height: 150%;
  color: #1e3301;
}

.burger-li2 {
  padding: 16px 0 0 0;
}

.burger-li2 a {
  text-decoration: none;
  font-size: 16px;
  line-height: 150%;
  color: #1e3301;
}

.header-social-ul-pd {
  padding: 20px 0 0 0;
}

.novostisection-slayder {
  padding: 40px 0 0 0;
}

.novostisection-slayder2 {
  padding: 60px 0 0 0;
}

.modal {
  position: fixed;
  top: 0px;
  z-index: 10000;
  height: 100vh;
  width: 100%;
}

.js-modal {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.js-modal .modal__inner {
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s ease-in-out 0.1s;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
}

.js-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.js-modal.is-open .modal__inner {
  opacity: 1;
  transform: translateY(0);
}

.modal {
  background: rgba(0, 0, 0, 0.23);
}

.modal-border {
  background: #ffffff;
  border: 1px solid #2809da;
  width: 852px;
  margin: 5% auto 0 auto;
  padding: 53px 116px 35px 116px;
}

.modal-title {
  font-family: "Montserrat-Bold";
  text-align: center;
  font-size: 40px;
  line-height: 49px;
  color: #6950af;
}

.modal-title_mb {
  margin-bottom: 16px;
}

.modal-form {
  padding: 20px 0 0 0;
}

.modal-input {
  padding: 30px 0 0 0;
}

.modal-input input {
  font-size: 20px;
  line-height: 24px;
  color: #6850af;
  margin: 0 0 0 0;
  width: 100%;
  padding: 0 0 0 10px;
  height: 70px;
  background: rgba(199, 169, 237, 0.23);
  border: 1px solid #6950af;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.modal-input input::-webkit-input-placeholder {
  color: #6850af;
}

.modal-input input::-moz-placeholder {
  color: #6850af;
}

.modal-input input:-ms-input-placeholder {
  color: #6850af;
}

.modal-input input::placeholder {
  color: #6850af;
}

.modal-button {
  text-align: center;
  padding: 40px 0 0 0;
}

.modal-button button {
  font-family: "Montserrat-Bold";
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
  padding: 12px 40px;
  background: #6950af;
  border: 1px solid #a795be;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.modal-border2 {
  background: #ffffff;
  border: 1px solid #2809da;
  width: 852px;
  margin: 5% auto 0 auto;
  padding: 70px 30px 75px 30px;
}

.modal-title2 {
  font-family: "Montserrat-Bold";
  text-align: center;
  font-size: 32px;
  line-height: 64px;
  color: #6850af;
}

.modal-suptitle {
  padding: 20px 0 0 0;
  font-family: "Montserrat-Bold";
  text-align: center;
  font-size: 24px;
  line-height: 64px;
  color: #6850af;
}

.modal-border3 {
  border-radius: 20px;
  width: 852px;
  margin: 30px auto 0 auto;
  padding: 0 0 0 0;
}

.modal-border4 {
  border-radius: 20px;
  width: 400px;
  margin: 30px auto 0 auto;
  padding: 0 0 0 0;
}

.modal-border5 {
  border-radius: 20px;
  width: 852px;
  margin: 30px auto 0 auto;
  padding: 0 0 0 0;
}

.modal-img img {
  width: 100%;
}

/*Oklinike*/

/*work2*/

.work2 {
  padding: 15px 0 0 0;
}

.work-suptitle2 {
  padding: 30px 0 0 0;
  font-family: "Montserrat-Medium";
  font-size: 35px;
  line-height: 43px;
  color: #000000;
}

.work2-block {
  width: 50%;
}

.work2-block2 {
  width: 50%;
  padding: 0 0 0 105px;
}

.onashey-block4 {
  width: 65%;
  padding: 0 0 0 12px;
}

.onashey-newsuptitle {
  padding: 20px 0 0 0;
  font-size: 16px;
  line-height: 20px;
  color: #8c8c8c;
  display: flex;
  justify-content: flex-end;
}

.onashey-block5 {
  width: 35%;
  padding: 0 35px 0 0;
}

/*popular*/

.popular {
  padding: 0 0 0 0;
}

.popular-container {
  padding: 0 8px;
}

.popular-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0 0 0;
}

.popular-block {
  width: 25%;
  padding: 30px 12px 0 12px;
}

.popular-button {
  margin: -35px 0 0 0;
  display: flex;
  justify-content: flex-end;
}

.popular-border {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  width: 234px;
  height: 61px;
  background: #9684fc;
  border-radius: 10px;
  padding: 0 22px;
}

/**/

.narkolog {
  padding: 100px 0 0 0;
}

.narkolog-title {
  font-size: 40px;
  line-height: 49px;
  color: #6950af;
}

.narkolog-pd {
  padding: 40px 0 0 0;
}

.narkolog-suptitle {
  font-size: 15px;
  line-height: 30px;
  color: #5c5c5c;
}

.narkolog-suptitle ol li ul li {
  list-style-type: none;
}

.narkolog-ul {
  padding: 30px 0 30px 0;
}

.narkolog-li {
  padding: 0 0 0 10px;
  display: flex;
  font-size: 15px;
  line-height: 30px;
  color: #5c5c5c;
}

.narkolog-elipse {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #9684fc;
  margin: 12px 11px 0 0;
}

.narkolog-li-text {
  width: 95%;
}

.narkolog-li2 {
  list-style-type: decimal;
  font-size: 15px;
  line-height: 30px;
  color: #5c5c5c;
}

.narkolog-ul2 {
  padding: 30px 0 30px 20px;
}

.narkolog-wrap {
  display: flex;
}

.narkolog-block {
  width: 50%;
  padding: 0 12px 0 0;
}

.narkolog-block2 {
  width: 50%;
  padding: 0 0 0 12px;
}

.narkolog-podpis {
  padding: 15px 0 0 0;
  font-size: 20px;
  line-height: 30px;
  color: #626262;
  text-align: right;
}

.narkolog table {
  margin-bottom: 15px;
  width: 100%;
  border-collapse: collapse;
}

.narkolog th,
td {
  padding: 9px;
  border: 1px solid #e0dbff;
}

/*lechenie*/

.lechenie {
  padding: 80px 0 0 0;
}

.lechenie-wrap {
  display: flex;
  padding: 40px 0 0 0;
}

.lechenie-block {
  width: 67%;
  padding: 0 12px 0 0;
}

.lechenie-title {
  font-size: 15px;
  line-height: 22px;
  color: #5a5a5a;
}

.lechenie-border {
  margin: 30px 0 0 0;
  padding: 40px 35px;
  font-size: 15px;
  line-height: 22px;
  color: #5a5a5a;
  background: rgba(150, 132, 252, 0.2);
  border-radius: 10px;
}

.lechenie-block2 {
  width: 33%;
  padding: 0 0 0 12px;
}

.lechenie-border2 {
  font-size: 25.8075px;
  line-height: 30px;
  color: #ffffff;
  padding: 27px 53px 60px 53px;
  background: rgba(150, 132, 252, 0.8);
  border-radius: 10px;
}

.lechenie-link {
  display: flex;
  justify-content: flex-end;
  margin: -40px 0 0 0;
}

.lechenie-link a {
  font-family: "Montserrat-Bold";
  text-decoration: none;
  display: block;
  padding: 50px 0;
  width: 348px;
  font-size: 29.4943px;
  line-height: 22px;
  background: #f1f1f1;
  border-radius: 10px;
  color: #6950af;
  text-align: center;
}

.lechenie-link a:hover {
  background: #d4b9ff;
}

.besplatno3 {
  padding: 150px 0 0 0;
}

.licenziyasection2 {
  padding: 20px 0 0 0;
}

/*Vnutrenyaya*/

.work3 {
  padding: 43px 0 78px 0;
}

.work2-block3 {
  padding: 20px 0 0 0;
  width: 50%;
  text-align: right;
}

/*Tekstovaya*/

.semechki {
  padding: 34px 0 30px 0;
}

.semechki-ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 0;
}

.semechki-li {
  padding: 0 20px 0 0;
  position: relative;
  font-size: 14px;
  line-height: 18px;
  color: #8a8a8a;
}

.semechki-li:last-child {
  padding: 0;
}

.semechki-li:last-child:before {
  display: none;
}

.semechki-li:before {
  position: absolute;
  content: "/";
  right: 7px;
  top: 0;
}

.semechki-li a {
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
  color: #434242;
}

.semechki-li a:hover {
  text-decoration: underline;
}

.semechki-li2 {
  padding: 0 10px;
  font-size: 15px;
  line-height: 18px;
  color: #8a8a8a;
}

.textsection-title {
  padding: 30px 0 0 0;
  font-size: 15px;
  line-height: 30px;
  color: #5c5c5c;
}

.textsod {
  padding: 50px 0 0 0;
}

.textsod-wrap {
  display: flex;
}

.textsod-block {
  width: 50%;
}

.textsod-ul {
  padding: 20px 0 0 20px;
  display: block;
}


.textsod-li {
  list-style: decimal;
}

.textsod-li a {
  font-size: 16px;
  line-height: 40px;
  text-decoration-line: underline;
  color: #636363;
}

.author-block {
  margin-top: 80px;
}

.textsod-block2 {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}

.author-block__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px;
  border: 1px solid #40338a;
  border-radius: 16px;
  max-width: fit-content;
  margin-right: auto;
}

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

.author-block__wrap a {
  transition: all 0.3s ease;
  font-weight: bold;
  color: #292d32;
}

.author-block__wrap a:hover {
  color: #40338a;
}

.textsod-inner {
  display: flex;
}

.textsod-inner-block2 {
  padding: 15px 0 0 32px;
}

.textsod-inner-title {
  font-family: "Montserrat-Medium", monospace;
  font-size: 16px;
  line-height: 16px;
  color: #292d32;
}

.textsod-inner-name {
  padding: 15px 0 0 0;
  font-family: "Montserrat-Bold", monospace;
  font-size: 18px;
  line-height: 20px;
  color: #292d32;
}

.textsod-inner-suptitle {
  padding: 15px 0 0 0;
  font-size: 16px;
  line-height: 16px;
  color: #a5a5a5;
}

.textsod-inner-data {
  padding: 20px 0 0 0;
  font-size: 14px;
  line-height: 16px;
  color: rgba(2, 2, 2, 0.48);
}

.textsod-inner-prod {
  padding: 20px 0 0 0;
}

.textsod-inner-img img {
  max-width: 225px;
}

.narkolog-center-img {
  padding: 10px 0 0 0;
  text-align: center;
}

/*Fotokliniki*/

.fotolist {
  padding: 60px 0 0 0;
}

.fotolist-container {
  padding: 0 8px;
}

.fotolist-wrap {
  display: flex;
  flex-wrap: wrap;
}

.fotolist-block {
  width: 41%;
  padding: 0 12px;
}

.fotolist-block2 {
  width: 59%;
  padding: 0 12px;
}

.fotolist-inner {
  display: flex;
}

.fotolist-inner-block {
  padding: 0 13px 0 0;
}

.fotolist-inner-block2 {
  padding: 0 0 0 13px;
}

.fotolist-inner-pd {
  padding: 20px 0 0 0;
}

.fotolist-block3 {
  width: 33.33333333%;
  padding: 30px 12px 0 12px;
}

.fotolist-button {
  padding: 40px 0 0 0;
  text-align: center;
}

.fotolist-button button {
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  padding: 20px 35px;
  background: #735df8;
  border-radius: 10px;
}

.fotolist-button button:hover {
  background: #d4b9ff;
}

/*Ceni*/

.raschet {
  padding: 90px 0 0 0;
}

.raschet-container {
  padding: 0 10px;
}

.raschet-wrap {
  padding: 25px 0 0 0;
  display: flex;
  flex-wrap: wrap;
}

.raschet-block {
  width: 25%;
  padding: 25px 10px 0 10px;
}

.raschet-input input {
  font-size: 16px;
  line-height: 20px;
  margin: 0 0 0 0;
  width: 100%;
  color: #6950af;
  padding: 0 0 0 30px;
  height: 61px;
  background: #f7f7f7;
  border-radius: 10px;
}

.raschet-input input::-webkit-input-placeholder {
  color: #888686;
}

.raschet-input input::-moz-placeholder {
  color: #888686;
}

.raschet-input input:-ms-input-placeholder {
  color: #888686;
}

.raschet-input input::placeholder {
  color: #888686;
}

.raschet-button {
  text-align: center;
  padding: 50px 0 0 0;
}

.raschet-button button {
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  padding: 20px 50px;
  background: #735df8;
  border-radius: 10px;
}

.raschet-button button:hover {
  background: #d4b9ff;
}

/*Akcii*/

.akciilist-container {
  padding: 0 8px;
}

.akciilist-wrap {
  display: flex;
  flex-wrap: wrap;
}

.akciilist-block {
  width: 50%;
  padding: 30px 12px 0 12px;
}

/*Otzivi*/

.ozivlist {
  padding: 30px 0 0 0;
}

.ozivlist-container {
  padding: 0 7px;
}

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

.ozivlist-block {
  padding: 10px;
}

.ozivlist-button {
  text-align: center;
  padding: 30px 0 0 0;
}

.ozivlist-button button {
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  padding: 20px 35px;
  background: #735df8;
  border-radius: 10px;
}

.ozivlist-button button:hover {
  background: #d4b9ff;
}

.ozivlist-input input {
  font-size: 16px;
  line-height: 20px;
  margin: 0 0 0 0;
  width: 100%;
  color: #6950af;
  padding: 0 0 0 30px;
  height: 61px;
  background: #f7f7f7;
  border-radius: 10px;
}

.ozivlist-input input::-webkit-input-placeholder {
  color: #888686;
}

.ozivlist-input input::-moz-placeholder {
  color: #888686;
}

.ozivlist-input input:-ms-input-placeholder {
  color: #888686;
}

.ozivlist-input input::placeholder {
  color: #888686;
}

.ozivlist-inner {
  display: flex;
  padding: 90px 0 0 0;
}

.ozivlist-inner-block {
  width: 50%;
}

.ozivlist-inputs {
  display: flex;
  padding: 40px 0 0 0;
}

.ozivlist-input-block {
  width: 50%;
  padding: 0 10px 0 0;
}

.ozivlist-input-block2 {
  width: 50%;
  padding: 0 0 0 10px;
}

.ozivlist-input2 {
  padding: 30px 0 0 0;
}

.ozivlist-input2 input {
  font-size: 16px;
  line-height: 20px;
  margin: 0 0 0 0;
  width: 100%;
  color: #6950af;
  padding: 0 0 30px 30px;
  height: 87px;
  background: #f7f7f7;
  border-radius: 10px;
}

.ozivlist-input2 input::-webkit-input-placeholder {
  color: #888686;
}

.ozivlist-input2 input::-moz-placeholder {
  color: #888686;
}

.ozivlist-input2 input:-ms-input-placeholder {
  color: #888686;
}

.ozivlist-input2 input::placeholder {
  color: #888686;
}

.ozivlist-button2 {
  padding: 30px 0 0 0;
  text-align: right;
}

.ozivlist-button2 button {
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  padding: 20px 50px;
  background: #735df8;
  border-radius: 10px;
}

.ozivlist-button2 button:hover {
  background: #d4b9ff;
}

.ozivlist-inner-block2 {
  width: 50%;
  padding: 15px 0 0 40px;
}

.ozivlist-inner-img {
  text-align: right;
}

.ozivlist-button-container {
  padding-block: 15px 30px;
  text-align: center;
}

.ozivlist-button-container button {
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  padding: 15px 40px;
  background: #735df8;
  border-radius: 10px;
}

/*Kontakt*/

.kontaktlist {
  padding: 50px 0 0 0;
}

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

.kontaktlist-link a {
  text-decoration: none;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}

.kontaktlist-link a:hover {
  text-decoration: underline;
}

/*Vrachi*/

.vrachilist-container {
  padding: 0 7px;
}

.vrachilist-wrap {
  display: flex;
  flex-wrap: wrap;
}

.vrachilist-block {
  width: 25%;
  padding: 70px 13px 0 13px;
}

.vrachilist-name {
  padding: 40px 0 0 0;
  text-align: center;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
}

.vrachilist-staj {
  text-align: center;
  padding: 20px 0 0 0;
  font-size: 14px;
  line-height: 17px;
  color: #7d7d7d;
}

.vrachilist-zvezdi {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 0 0;
}

.vrachilist-inner {
  margin: -10px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vrachilist-kompany2 {
  margin: 0 -20px 0 0;
}

.vrachilist-link {
  padding: 0 0 0 0;
  text-align: right;
}

.vrachilist-link a {
  font-family: "Montserrat-Bold";
  text-decoration: none;
  font-size: 16px;
  line-height: 20px;
  color: #6950af;
}

.vrachilist-link a:hover {
  text-decoration: underline;
}

.vrachilist-button {
  padding: 20px 0 0 0;
  text-align: center;
}

.vrachilist-button button {
  font-size: 16px;
  line-height: 20px;
  color: #9684fc;
  padding: 20px 45px;
  border: 1px solid #9684fc;
  border-radius: 10px;
}

.vrachilist-button button:hover {
  background: #9684fc;
  color: #fff;
}

/*KartochkaVracha*/

.kartochka-wrap {
  padding: 50px 0 0 0;
  display: flex;
}

.kartochka-block {
  width: 41%;
  padding: 0 12px 0 0;
}

.kartochka-reputation {
  padding: 40px 0 0 0;
}

.kartochka-inner {
  padding: 40px 0 0 0;
  display: flex;
}

.kartochka-button {
  width: 40%;
  padding: 0 13px 0 0;
}

.kartochka-button button {
  font-size: 16px;
  line-height: 20px;
  color: #9684fc;
  padding: 20px 0;
  width: 100%;
  border: 1px solid #9684fc;
  border-radius: 10px;
}

.kartochka-button button:hover {
  background: #9684fc;
  color: #fff;
}

.kartochka-button2 {
  width: 60%;
  padding: 0 0 0 13px;
}

.kartochka-button2 button {
  padding: 20px 0;
  width: 100%;
  background: #735df8;
  border-radius: 10px;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
}

.kartochka-button2 button:hover {
  background: #d4b9ff;
}

.kartochka-block2 {
  width: 59%;
  padding: 30px 0 0 12px;
}

.kartochka-name {
  font-size: 24px;
  line-height: 29px;
  color: #000000;
}

.kartochka-pd {
  padding: 20px 0 0 0;
}

.kartochka-suptitle {
  padding: 15px 0 0 0;
  font-size: 16px;
  line-height: 20px;
  color: #4d4d4d;
}

.kartochka-ul {
  padding: 15px 0 0 20px;
}

.kartochka-li {
  list-style: decimal;
  font-size: 16px;
  line-height: 20px;
  color: #4d4d4d;
}

.kartochka-diplom {
  padding: 40px 0 0 0;
  font-family: "Montserrat-Bold";
  font-size: 16px;
  line-height: 20px;
  color: #6950af;
}

.kartochka-diplom-wrap {
  padding: 30px 0 0 0;
  display: flex;
}

.doctor-articles {
  margin-top: 80px;
}

/*fag*/

.fag-button button {
  font-size: 24px;
  line-height: 29px;
  color: #ffffff;
  padding: 16px 0;
  width: 375px;
  background: #d4b9ff;
  border-radius: 10px;
}

.pricelist2 {
  padding: 40px 0 0 0;
}

.pricelist-accordion2 {
  padding: 7px 0 0 0;
}

/*404*/

.nodone {
  padding: 60px 0 35px 0;
}

.nodone-wrap {
  display: flex;
}

.nodone-block {
  width: 50%;
}

.nodone-title {
  font-family: "Montserrat-Bold", monospace;
  font-size: 200px;
  line-height: 244px;
  color: #6950af;
}

.nodone-suptitle {
  padding: 20px 0 0 0;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}

.nodone-suptitle a {
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
  color: rgba(45, 13, 229, 1);
}

.nodone-suptitle a:hover {
  text-decoration: underline;
}

.nodone-li {
  padding: 20px 0 0 0;
}

.nodone-li a {
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
  color: rgba(45, 13, 229, 1);
}

.nodone-li a:hover {
  text-decoration: underline;
}

.nodone-block2 {
  padding: 79px 0 0 0;
  width: 50%;
}

h1 {
  margin: 0;
}

h2 {
  margin: 0;
}

.akciisection-block {
  cursor: pointer;
}

.js-modal.is-open {
  overflow: auto;
}

.popular-img a {
  display: block;
  text-decoration: none;
}

.kciilist-border {
  cursor: pointer;
}

.mapsection-karta {
  border-radius: 20px;
}

.akciiboth {
  position: relative;
}

.akciisection-link a {
  text-decoration: none;
  font-family: "Montserrat-Bold";
  font-size: 36px;
  line-height: 44px;
  color: #9684fc;
}

.akciisection-link a:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.akciisection-link a:hover {
  color: #6950af;
}

/* video */

.video {
  padding: 80px 0 80px 0;
}

.video-content {
  border-radius: 30px;
  background: #f7f7f7;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.12);
  padding: 45px 118px 27px 118px;
}

.video-content__wrap video {
  width: 100%;
}

.video__title {
  color: #6950af;
  font-weight: 700;
  font-size: 40px;
  line-height: 64px;
  text-align: center;
}

.video-content__wrap video {
  width: 100%;
  margin: 35px 0 12px 0;
  border-radius: 5px;
}

.video-descr__wrapper {
  display: flex;
  justify-content: space-around;
  gap: 10px;
}

.video-descr {
  display: flex;
  color: rgba(51, 51, 51, 0.45);
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}

.video-descr span {
  color: #333;
}

.video-descr img {
  margin: 18px 10px 18px 0;
  max-width: 20px;
  max-height: 20px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #9684fc !important;
}

.swiper,
swiper-container {
  padding-inline: 30px !important;
}

.vrachsection-img-link {
  display: flex;
  justify-content: center;
}

@media (max-width: 1600px) {
  /* video */

  .video-title {
    font-size: 42px;
    line-height: 48px;
  }

  .video-content__wrap video {
    margin: 20px 0;
  }

  .video-content {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  /* video */

  .video-title {
    padding-top: 30px;
    font-size: 32px;
    line-height: 42px;
  }

  .video-content {
    padding: 20px;
  }
}

@media (max-width: 790px) {
  .video-descr__wrapper {
    flex-wrap: wrap;
    justify-content: left;
  }
}

@media (max-width: 699px) {
  /* video */

  .video__title {
    font-size: 24px;
    line-height: 32px;
  }

  .video-descr>p {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .video-descr__wrapper {
    gap: 0;
  }

  .data-text {
    margin-top: 20px !important;
  }

  .video {
    padding: 34px 15px;
  }

  .video__container {
    padding: 0;
  }
}

.our-center {
  padding-top: 80px;
}

.our-center__slider {
  margin: 40px 0 0;
}

.our-center__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  padding: 10px 10px 25px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(90, 74, 68, 0.1098039216);
  box-shadow: 0px 0px 10px 0px rgba(90, 74, 68, 0.1098039216);
  border-radius: 20px;
  height: auto;
  margin: 0 20px;
}

.our-center__picture {
  width: 100%;
  height: 100%;
  max-height: 195px;
  overflow: hidden;
  display: block;
  margin-bottom: 15px;
}

.our-center__picture img {
  width: 100%;
  max-height: 195px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.our-center__city {
  font-size: 22px;
  font-weight: 600;
}

.our-center__address {
  font-size: 16px;
  display: block;
  font-weight: 400;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: 25px;
}

.our-center__cost {
  font-size: 22px;
  font-weight: 600;
  color: #5479d8;
  display: block;
  margin-bottom: 15px;
}

.our-center__btn {
  width: 100%;
  background: none;
  background-color: #735df8;
  color: #fff;
  border: 1px solid #735df8;
  -webkit-transition:
    background-color 0.3s ease,
    color 0.3s ease;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  padding: 15px 10px;
  text-align: center;
}

.our-center__btn:hover {
  color: #735df8;
  background: none;
  background-color: transparent;
}

.new-btns .slick-arrow {
  background: none;
  height: 40px;
  width: 40px;
  background-color: #735df8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  border-radius: 50%;
  align-items: center;
  border: 1px solid #735df8;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.new-btns .slick-arrow.slick-prev {
  left: 0;
}

.new-btns .slick-arrow.slick-next {
  right: 0;
}

.new-btns .slick-arrow::before {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

.new-btns .slick-prev::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.new-btns .slick-arrow:hover {
  background-color: #fff;
}

.new-btns .slick-arrow:hover::before {
  border-color: #735df8;
}

.new-btns .slick-list {
  max-width: calc(100% - 100px);
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1023px) {
  .our-center__container {
    padding: 0;
  }

  .our-center h2 {
    padding: 0 15px;
  }
}

@media (max-width: 600px) {

  .our-center__picture,
  .our-center__picture img {
    max-height: 170px;
  }

  .our-center__city {
    font-size: 18px;
    padding: 0 15px;
  }

  .our-center__address {
    font-size: 14px;
    padding: 0 15px;
  }

  .our-center__cost {
    font-size: 18px;
    color: #333;
    padding: 0 15px;
  }

  .our-center__btn {
    font-size: 14px;
    margin: 0 15px;
    max-width: calc(100% - 30px);
  }

  .our-center__item {
    padding: 5px 5px 20px;
    margin: 0 10px 10px;
  }

  .our-center__item:first-child {
    margin-left: 20px;
  }

  .our-center__item:last-child {
    margin-right: 20px;
  }
}

.new-form {
  padding: 60px 0 90px;
}

.new-form__inner {
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 0 60px;
  background: linear-gradient(92deg, #6950af 0%, #e0dbff 100%);
}

.new-form__inner * {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
}

.new-form__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3137254902);
}

.new-form__form>* {
  -ms-flex-preferred-size: calc((100% - 20px) / 2);
  flex-basis: calc((100% - 20px) / 2);
  max-width: calc((100% - 20px) / 2);
}

.new-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  padding: 50px 0;
}

p.header__lic-text {
  color: #3f3f3f;
  font-size: 14px;
}

.new-form__title {
  font-size: 34px;
  font-weight: 600;
}

.new-form__container {
  padding: 0 15px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.new-form__input {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  display: block;
  border: none;
  padding: 0 20px;
  height: 55px;
  outline: none;
  font-size: 16px;
  line-height: 1;
}

.new-form .new-form__form:focus {
  background: rgba(255, 255, 255, 0.2) !important;
}

.new-form__input::-webkit-input-placeholder {
  color: #fff;
}

.new-form__input::-moz-placeholder {
  color: #fff;
}

.new-form__input:-ms-input-placeholder {
  color: #fff;
}

.new-form__input::-ms-input-placeholder {
  color: #fff;
}

.new-form__input::placeholder {
  color: #fff;
}

.new-form__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  border-radius: 5px;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 55px;
  font-weight: 600;
  line-height: 1;
  font-size: 16px;
  white-space: nowrap;
  color: #6950af;
  background-color: #fff;
  border: 1px solid #fff;
  -webkit-transition:
    color 0.3s ease,
    background-color 0.3s ease;
  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}

.new-form__btn:hover {
  background-color: transparent;
  color: #fff;
}

.new-form__politic {
  display: block;
  font-size: 11px;
  font-weight: 500;
  align-self: center;
  margin-bottom: 0 !important;
}

.new-form__politic a {
  text-decoration: underline;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.new-form__politic a:hover {
  color: #333;
}

.new-form__call {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.new-form__call p {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 0 !important;
}

.new-form__call a {
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.3s ease;
}

.new-form__call a:hover {
  text-decoration-color: #fff;
}

.new-form__picture {
  margin-top: -25px;
  width: 100%;
  max-width: 365px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.new-form__picture img {
  width: 100%;
}

@media (max-width: 1100px) {
  .new-form__inner {
    padding: 0 20px;
  }

  .new-form__title {
    font-size: 28px;
  }

  .new-form__item {
    padding: 20px 0;
  }

  .new-form__call a {
    font-size: 24px;
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .new-form__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 25px;
    gap: 25px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .new-form__item {
    padding: 25px 0 0;
    gap: 20px;
    width: 100%;
  }

  .new-form__title {
    font-size: 18px;
  }

  .new-form__form {
    width: 100%;
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 20px;
  }

  .new-form__form>* {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    min-height: 50px;
  }

  .new-form__input {
    font-size: 14px;
  }

  .new-form__call {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-size: 14px;
  }

  .new-form__call a {
    font-size: 18px;
  }

  .new-form__picture {
    margin-top: 0;
  }

  .new-form {
    padding: 60px 0;
  }
}

.b_output_binge_big {
  padding: 80px 0 60px;
}

.about-service {
  margin: 80px 0 60px;
  background-color: #f2f0ff;
}

.about-service__container {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.about-service__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about-service__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
  padding: 40px 0;
  width: 100%;
  max-width: 678px;
}

.about-service__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
}

.about-service__text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.about-service__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 35px;
}

.about-service__btn {
  background: none;
  font-size: 16px;
  white-space: nowrap;
  font-weight: 600;
  border-radius: 10px;
  background-color: #735df8;
  border: 1px solid #735df8;
  color: #fff;
  text-transform: none;
  padding: 15px 50px;
  box-shadow: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.about-service__btn:hover {
  background: none;
  color: #735df8;
  background-color: transparent;
}

.about-service__picture {
  width: 100%;
  height: calc(100% + 60px);
  max-width: 400px;
  margin: -30px 0;
}

.about-service__picture img {
  height: 100%;
  width: 100%;
  max-width: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}

.about-service__cost {
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  color: #6950af;
}

@media (max-width: 960px) {
  .about-service__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding-bottom: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .about-service__picture {
    height: 100%;
    margin: -40px 0 0;
    max-height: 300px;
  }

  .about-service__picture img {
    max-height: 300px;
  }

  .about-service__title {
    font-size: 22px;
  }

  .about-service__item {
    gap: 15px;
    padding: 0;
    max-width: 100%;
  }

  .about-service__text {
    margin-bottom: 10px;
  }

  .about-service__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 20px;
  }

  .about-service__cost {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .about-service__btn {
    width: 100%;
  }

  .about-service__bottom {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.another-service__inner {
  margin-top: 40px;
}

.another-serivce__content {
  margin: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.another-service__picture {
  height: 100%;
  max-height: 250px;
  overflow: hidden;
}

.another-service__picture img {
  height: 100%;
  border-radius: 20px;
  width: 100%;
  min-height: 250px;
  max-height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
}

.another-service__name {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
  font-size: 22px;
  margin: 0;
  font-weight: 600;

  display: flex;
  height: 54px;
  align-items: center;
}

.another-service__btn {
  padding: 15px 5px;
  width: 100%;
  display: block;
  text-align: center;
  background-color: #735df8;
  border: 1px solid #735df8;
  text-decoration: none;
  color: #fff;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.another-service__btn:hover {
  background-color: transparent;
  color: #735df8;
}

@media (max-width: 1024px) {
  .another-service__inner {
    margin: 0;
    margin-top: 40px;
  }

  .new-btns .slick-list {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .another-service__container {
    padding: 0;
  }

  .another-service__picture img {
    max-height: 170px;
    min-height: 170px;
  }

  .another-serivce__content {
    gap: 20px;
    margin: 0;
  }

  .another-serivce__item {
    margin: 0 8px;
  }

  .another-serivce__item:first-child {
    margin-left: 15px;
  }

  .another-serivce__item:last-child {
    margin-right: 15px;
  }

  .another-service__name {
    font-size: 16px;
  }

  .another-service__container {
    padding: 0;
  }

  .another-service h2 {
    padding: 0 15px;
  }

  .another-service__btn {
    max-width: 100%;
  }
}

.indications {
  padding-top: 100px;
}

@media (max-width: 768px) {
  .indications {
    padding-top: 40px;
  }
}

.indications__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.indications__item {
  -ms-flex-preferred-size: calc((100% - 20px) / 2);
  flex-basis: calc((100% - 20px) / 2);
  padding: 35px 20px;
  border-radius: 30px;
  background-color: #f9f9f9;
}

.indications__item ul {
  display: -webkit-box;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.indications__item ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.indications__item ul li::before {
  display: block;
  content: "";
  width: 25px;
  height: 25px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: url(/netcat_template/images/indications_ok.svg) center center no-repeat;
  background-size: cover;
}

.indications__item_contraindications {
  background-color: transparent;
}

.indications__item_contraindications ul li::before {
  background: url(/netcat_template/images/indications_not_ok.svg) center center no-repeat;
  background-size: cover;
}

.pricelist-titile img {
  width: 32px;
  height: 32px;
}

@media (max-width: 920px) {
  .indications__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .indications__item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding: 20px 15px;
  }

  .indications__item ul {
    gap: 10px;
    font-size: 14px;
  }

  .indications__item ul li {
    gap: 10px;
  }

  .indications__item ul li::before {
    width: 20px;
    height: 20px;
  }
}

.header-mobile__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  padding-top: 5px;
}

.header__mobile {
  display: none;
}

@media (max-width: 992px) {
  .header-top {
    margin-bottom: 16px;
  }

  .header__mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .header__mobile .header-buttons {
    display: flex;
    gap: 16px;
  }

  .header__mobile .header-button {
    padding: 0;
  }

  .header__mobile .header-button:last-child {
    padding: 0;
  }

  .header__mobile .header-button button {
    padding: 10px;
  }

  .header__mobile-phone {
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    color: #9684fc;
  }
}

@media (max-width: 480px) {
  .header__mobile {
    flex-direction: column;
  }
}

.drugs__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
  margin-bottom: 120px;
}

.drugs__wrapper-item {
  padding: 20px;
  box-sizing: border-box;
  border-radius: 20px;
  background: #f7f7f7;
  display: flex;
  flex-direction: column;
  max-width: 309px;
  justify-content: flex-start;
  align-items: center;
  height: fit-content;
}

.drugs__wrapper-item-img {
  width: 145px;
  height: 145px;
  border-radius: 5px;
}

.drugs__wrapper-item-spn {
  color: #353535;
  text-align: center;
  font-family: "Montserrat-Bold";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  /* 125% */
  margin-top: 25px;
}

.drugs__wrapper-item-link {
  color: #6950af;
  text-align: center;
  font-family: "Montserrat-Bold";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  /* 156.25% */
  text-decoration-line: underline;
  margin-top: 15px;
}

.drugs .pricelist-titile {
  font-size: 35px;
}

.drugs .drugsss .besplatno-width {
  width: 70%;
}

.drugs__info-box {
  border-radius: 20px;
  background: #f7f7f7;
  padding: 15px 45px 15px 15px;
  box-sizing: border-box;
  display: flex;
  width: 100%;
  height: fit-content;
  gap: 45px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
}

.drugs__info-doc {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.rugs__info-descrp {
  width: 100%;
}

.drugs__info-doc-desc {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.drugs__info-doc_head {
  color: #5a5252;
  font-family: "Montserrat-Bold";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  /* 156.25% */
}

.drugs__info-doc_name {
  color: #6950af;
  font-family: "Montserrat-Bold";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  /* 113.636% */
}

.drugs__info-buttons {
  border-top: 1px solid #e7e7e7;
  width: 100%;
  padding: 30px 0 20px 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.drugs__info-buttons-doc {
  border-radius: 50px;
  background: rgba(105, 80, 175, 0.1);
  padding: 12px 44px;
  box-sizing: border-box;
  color: #6950af;
  font-family: "Montserrat-Bold";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  /* 156.25% */
}

.drugs__info-buttons-hosp {
  border-radius: 50px;
  background: #6950af;
  padding: 12px 44px;
  box-sizing: border-box;
  color: #fff;
  font-family: "Montserrat-Regular";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  /* 156.25% */
}

.drugs__info-doc-prodoc {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #fff;
  padding: 7px 25px 7px 25px;
  box-sizing: border-box;
}

.drugs__description {
  display: flex;
  gap: 20px;
  padding: 20px 25px;
  box-sizing: border-box;
  border-radius: 20px;
  background: #f7f7f7;
  margin-top: 15px;
}

.drugs__description-icon {
  color: #6950af;
  font-family: "Montserrat-Regular";
  font-size: 36px;
  font-style: normal;
  font-weight: 450;
  line-height: 40px;
  /* 111.111% */
  border-radius: 50px;
  background: #fff;
  padding: 5px 25px;
  box-sizing: border-box;
}

.drugs__description-des {
  color: #353535;
  font-family: "Montserrat-Regular";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  /* 156.25% */
}

.drugs__content-anchors {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: flex-start;
}

.drugs__content-anchors-heading {
  color: #0e213b;
  font-family: "Montserrat-Regular";
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  /* 113.636% */
}

.drugs__content-anchors-list-item a {
  color: #6950af;
  font-family: "Montserrat-Regular";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 133.333% */
}

.drugs__content-anchors-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drugs__wrapper__content {
  display: flex;
  flex-direction: column;

  gap: 60px;
  width: 70%;
}

.drugs__wrapper__content-bl {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.drugs__wrapper__content-header {
  color: #0e213b;
  font-family: "Montserrat-Regular";
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  /* 78.125% */
  text-align: left;
  margin: 0;
}

.drugs__wrapper__content-des {
  color: #353535;
  font-family: "Montserrat-Regular";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  /* 156.25% */
  text-align: left;
}

.drugs__content {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-top: 60px;
}

.drugsss .pricelist-titile {
  font-size: 35px;
}

.drugs .besplatno-width {
  width: 70%;
}

.drugsss .besplatno-width {
  width: 70%;
}

@media screen and (max-width: 1024px) {

  .drugs .besplatno-width,
  .drugs .drugsss .besplatno-width {
    width: 100%;
  }

  .drugs .pricelist-titile,
  .drugs .pricelist-titile {
    font-size: 24px;
  }

  .drugs__content {
    flex-direction: column;
  }

  .drugs__description {
    align-items: center;
  }

  .drugs__description-icon {
    display: flex;
    align-items: center;
  }

  .drugs__info-box,
  .drugs__info-doc {
    flex-direction: column;
    padding: 20px 25px 25px 25px;
  }

  .drugs__info-doc_head {
    color: #5a5252;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
  }

  .drugs__info-doc_name {
    color: #6950af;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    /* 138.889% */
  }

  .drugs__info-buttons {
    flex-direction: column;
  }

  .drugs__wrapper__content {
    width: 100%;
    margin-top: 35px;
  }

  .drugs .besplatno-width {
    width: 100%;
  }

  .drugs__info-doc-prodoc {
    margin-top: 15px;
  }

  .drugs__info-doc {
    margin-bottom: 0;
  }

  .drugs__info-buttons {
    border-top: none;
    padding: 0;
  }

  .drugs__info-box {
    gap: 0;
  }
}

.header-link__descr {
  font-size: 12px;
  font-weight: 600;
}

.header__mobile-phone {
  display: flex;
  flex-direction: column;
}

.header__mobile-phone__descr {
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.articles-tag-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.article-tag {
  background: #9684fc;
  border-radius: 10px;
  padding: 15px;
}

.article-tag a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
}

@media (max-width: 450px) {
  .articles-tag-list {
    gap: 5px;
  }

  .article-tag {
    padding: 7px;
  }

  .article-tag a {
    font-size: 12px;
  }
}

/* vacancies */
.vacancy {
  position: relative;
  padding: 30px;
  background-color: #f7f7f7;
  background-size: 344px 100%;
  border-radius: 10px;
  color: #6950af;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}

.vacancy__img {
  position: absolute;
  top: 0;
  right: 0;
  width: 344px;
  height: 100%;
}

.vacancy::after {
  content: "";
  background: linear-gradient(180deg,
      rgb(247, 247, 247) 11.988%,
      rgba(247, 247, 247, 0) 100%);
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.vacancy::before {
  content: "";
  background: linear-gradient(180deg,
      rgb(247, 247, 247) 11.988%,
      rgba(247, 247, 247, 0) 100%);
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.vacancy__title {
  font-family: "Montserrat-Bold";
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 38px;
  position: relative;
  z-index: 10;
}

.vacancy__info {
  margin-bottom: 70px;
  flex-grow: 1;
  font-size: 16px;
  line-height: 20px;
  color: #636363;
  position: relative;
  z-index: 10;
}

.vacancy__info-text {
  margin-top: 0;
  margin-bottom: 10px;
}

.vacancy__info-text:last-child {
  margin-bottom: 0;
}

.vacancy__btn {
  position: relative;
  z-index: 10;
}

/* cookies */
.container__cookies {
  display: none;
  position: fixed;
  left: 0;
  bottom: 15px;
  padding: 0 20px 0 20px;
  z-index: 999999;
}

.container__cookies.show {
  display: flex;
}

.cookies_wraper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  color: #000;
  background-color: #735df8;
  margin: 0 auto;
  width: 100%;
  max-width: 540px;
  padding: 10px 5px;
  border-radius: 20px;
  font-size: 16px;
}

.cookies__text {
  color: #fff;
  text-align: center;
}

.cookies__text a {
  color: #fff;
}

.cookies__button:hover {
  opacity: 0.7;
}

/* structure */
.structure {
  padding-top: 70px;
}

.structure__title {
  margin-bottom: 24px;
}

.structure__item {
  padding: 16px;
  background-color: #6950af;
}

.structure__item-role {
  margin-top: 0;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: #fff;
}

.structure__item-name {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: #fff;
}

/* timetable */
.timetable {
  padding-top: 70px;
}

.timetable__title {
  margin-bottom: 24px;
}

.timetable__wrappper {
  overflow-x: auto;
}

/* b_main_map */
.map-contacts {
  width: 100%;
  height: 600px;
}

.map__wrapper {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.map-contacts__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px);
  transition: opacity 0.2s ease;
}

.map__wrapper.active .map-contacts__img {
  opacity: 0;
  visibility: hidden;
}

.map-contacts__btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
  color: #fff;
  border: initial;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease;
}

.map__wrapper.active .map-contacts__btn {
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 1024px) {

  /* glob */
  .grid-2-24-24 {
    grid-template-columns: initial;
  }

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

  .content-body h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .content-body ul li {
    padding-left: 18px;
  }

  .content-body ul li::before {
    width: 8px;
    height: 8px;
    top: 6px;
  }

  /* besplatno */
  .besplatno__wrapper {
    flex-direction: column;
    justify-content: initial;
  }

  .besplatno__img {
    width: 100%;
  }
}

@media (max-width: 767px) {

  /* glob */
  .grid-3-24-24 {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  /* structure */
  .structure__wrapper div:first-child {
    display: none;
  }

  .structure__item:nth-child(2) {
    grid-column-start: 1;
    grid-column-end: 3;
  }

  .structure div:nth-child(3) {
    display: none;
  }

  .structure__item {
    padding: 8px;
  }
}

@media (max-width: 575px) {

  /* vacancies */
  .vacancy {
    padding: 180px 20px 20px;
  }

  .vacancy::before,
  .vacancy::after {
    display: none;
  }

  .vacancy__img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: top center;
  }

  .vacancy__title {
    font-size: 20px;
    line-height: 24px;
  }

  .vacancy__info {
    margin-bottom: 30px;
  }

  .vacancy__btn {
    width: 100%;
  }
}

.work-suptitle2 ul {
  padding: 60px 0 0 0;
}

@media screen and (max-width: 1200px) {
  .work-suptitle2 ul {
    padding: 40px 0 0 0;
  }
}

@media screen and (max-width: 1024px) {
  .work-suptitle2 ul {
    padding: 20px 0 0 0;
  }
}

.work-suptitle2 ul li {
  background: url(/netcat_template/template/toksikolog-clinic.ru/images/work-li.svg) 0 50% no-repeat;
  padding: 0 0 0 24px;
  margin: 0 0 15px 0;

  align-items: flex-start;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}

@media screen and (max-width: 480px) {
  .work-suptitle2 ul li {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
  }
}

@media screen and (max-width: 480px) {
  .work-suptitle2 ul li {
    margin: 0 0 10px 0;
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
  }
}

@media screen and (max-width: 1024px) {
  .work-suptitle2 ul li {
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    line-height: 18px;
    color: #000000;
  }
}

@media screen and (max-width: 1200px) {
  .work-suptitle2 ul li {
    display: flex;
    align-items: flex-start;
    font-size: 18px;
    line-height: 20px;
    color: #000000;
  }
}

.narkolog-suptitle ul {
  padding: 30px 0 30px 0;
}

.narkolog-suptitle ul li {
  padding: 0 0 0 10px;
  font-size: 15px;
  line-height: 30px;
  color: #5c5c5c;
  position: relative;
  width: 95%;
  padding-left: 30px;
}

.narkolog-suptitle ul li:before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #9684fc;
  margin: 12px 11px 0 0;
}

@media screen and (max-width: 768px) {
  .narkolog-suptitle ul {
    padding: 20px 0 20px 0;
  }

  .narkolog-suptitle ul li {
    padding: 0 0 0 10px;
    display: inline-block;
    font-size: 15px;
    line-height: 20px;
    color: #5c5c5c;
    padding-left: 30px;
  }

  .narkolog-suptitle ul li:before {
    top: -5px;
  }
}

.narkolog-suptitle ol {
  padding: 30px 0 30px 20px;
}

.narkolog-suptitle ol li {
  list-style-type: decimal;
  font-size: 15px;
  line-height: 30px;
  color: #5c5c5c;
}

@media screen and (max-width: 768px) {
  .narkolog-suptitle ol {
    padding: 20px 0 20px 20px;
  }

  .narkolog-suptitle ol li {
    list-style-type: decimal;
    font-size: 15px;
    line-height: 20px;
    color: #5c5c5c;
  }
}

.narkolog-suptitle blockquote {
  margin: 30px 0 0 0;
  padding: 40px 35px;
  font-size: 15px;
  line-height: 22px;
  color: #5a5a5a;
  background: rgba(150, 132, 252, 0.2);
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .narkolog-suptitle blockquote {
    margin: 20px 0 0 0;
    padding: 20px 20px;
    font-size: 15px;
    line-height: 22px;
    color: #5a5a5a;
    background: rgba(150, 132, 252, 0.2);
    border-radius: 10px;
  }
}

/* doctor-detail */
.doctor-detail__container {
  display: flex;
  gap: 80px;
}

.doctor-detail__preview {
  flex: 0 0 320px;
}

.doctor-detail__picture {
  display: block;
  background-color: #ecf2f9;
  overflow: hidden;
  margin-bottom: 20px;
}

.doctor-detail__img {
  border-radius: 20px;
}

.doctor-detail__btn-wrapper {
  width: 100%;
}

.doctor-detail__name {
  margin-bottom: 20px;
}

.doctor-detail__stickers {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 30px;
}

.doctor-detail__sticker {
  padding: 12px 18px;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  gap: 7px;
  align-items: center;
  background-color: #9684fc26;
  border-radius: 8px;
}

.doctor-detail__sticker-title {
  margin: 0;
  color: rgb(98, 92, 130);
}

.doctor-detail__sticker-text {
  margin: 0;
}

.doctor-detail__descr {
  margin-bottom: 60px;
}

.doctor-detail__descr:last-child {
  margin-bottom: 0;
}

.doctor-detail__descr:last-child {
  margin-bottom: 0;
}

.doctor-detail-block {
  padding: 30px 35px;
  border-radius: 20px;
  background-color: #f4f5f9;
}

.doctor-detail__schedule {
  margin-bottom: 60px;
}

.doctor-detail__schedule:last-child {
  margin-bottom: 0;
}

.schedule {
  padding: 25px 30px;
  border-radius: 10px;
  background-color: rgb(247, 247, 247);
}

.schedule__item {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px dashed #c0c6dd;
  margin-bottom: 15px;
}

.schedule__item-name {
  position: relative;
  bottom: -8px;
  padding-right: 5px;
  font-size: 16px;
  line-height: 25px;
  color: rgb(99, 99, 99);
  background-color: rgb(247, 247, 247);
  margin: 0;
}

.schedule__item-text {
  position: relative;
  bottom: -8px;
  padding-left: 5px;
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  color: rgb(28, 28, 28);
  background-color: rgb(247, 247, 247);
  margin: 0;
}

.doctor-detail__descr-title {
  color: rgb(28, 28, 28);
  font-size: 22px;
  font-weight: 600;
  line-height: 25px;
  margin-top: 0;
  margin-bottom: 20px;
}

.doctor-detail__documents {
  margin-bottom: 60px;
}

.doctor-detail__documents:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .doctor-detail__container {
    display: block;
  }

  .doctor-detail__preview {
    margin-bottom: 40px;
  }
}

.work-suptitle ul {
  padding: 60px 0 0 0;
}

.work-suptitle ul li {
  background: url(/netcat_template/template/toksikolog-clinic.ru/images/work-li.svg) 0 50% no-repeat;
  padding: 0 0 0 24px;
  margin: 0 0 15px 0;
  display: flex;
  align-items: flex-start;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}

@media screen and (max-width: 768px) {
  .work-suptitle ul {
    padding: 20px 0 20px 0;
  }

  .work-suptitle ul li {
    padding: 0 0 0 10px;
    display: flex;
    font-size: 15px;
    line-height: 20px;
    color: #5c5c5c;
    padding-left: 30px;
  }
}

@media screen and (max-width: 1024px) {
  .work-suptitle ul {
    padding: 20px 0 0 0;
  }
}

@media screen and (max-width: 1200px) {
  .work-suptitle ul {
    padding: 40px 0 0 0;
  }
}

@media screen and (max-width: 480px) {
  .work-suptitle ul li {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
  }
}

@media screen and (max-width: 480px) {
  .work-suptitle ul li {
    margin: 0 0 10px 0;
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
  }
}

@media screen and (max-width: 1024px) {
  .work-suptitle ul li {
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    line-height: 18px;
    color: #000000;
  }
}

@media screen and (max-width: 1200px) {
  .work-suptitle ul li {
    display: flex;
    align-items: flex-start;
    font-size: 18px;
    line-height: 20px;
    color: #000000;
  }
}

@media screen and (max-width: 480px) {
  .work-button:last-child {
    padding: 0 0px 20px 0;
  }
}

#map {
  height: 700px;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  #map {
    height: 500px;
  }
}

.tab-content__item {
  display: none;
}

.tab-content__item.active {
  display: block;
}

.plashka_bot {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #40338a;
  padding: 20px;
  transform: translateY(0);
  transition: height 0.5s;
  width: 70%;
  margin: auto;
  border-radius: 16px 16px 0 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 99;
}

.plashka_bot-button {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  background-color: #fffffc4d;
  border-radius: 50%;
  padding: 1px 5px;
  color: #fff;
}

.plashka_bot.closed {
  height: 15px;
}

.plashka_bot.closed .plashka_bot-item,
.plashka_bot.closed .plashka_bot-button {
  display: none;
}

.plashka_bot-item {
  display: flex;
  flex-direction: column;
  color: #fff;
  gap: 5px;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 20.8px;
  text-decoration: none;
}

@media (max-width: 900px) {
  .plashka_bot {
    width: 80%;
  }
}

@media (max-width: 600px) {
  .plashka_bot-item {
    font-size: 11px;
    font-weight: 500;
    line-height: 13.2px;
  }

  .plashka_bot {
    width: 90%;
    padding: 20px 10px;
    gap: 10px;
  }

  .plashka_bot-button {
    top: -5px;
    right: -5px;
    background-color: #9684fc;
  }
}

.service__footer .footer-li2 {
  padding: 5px 0 0 0;
}

@media screen and (width<=1200px) {
  .ozivlist-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (width<=900px) {
  .ozivlist-wrap {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
}

@media screen and (width<=767px) {
  .ozivlist-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

.textsection-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.textsection-columns a {
  width: 100%;
  max-width: calc(100% / 3 - 20px);
  color: #9684fc;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

.textsection-columns a:hover {
  text-decoration: underline;
}

.show-more {
  display: none;
}

@media (max-width: 860px) {
  .textsection-columns {
    max-height: 380px;
    gap: 12px;
    overflow: hidden;
    transition: all 0.3s linear;
    margin-bottom: 20px;
  }

  .textsection-columns a {
    max-width: calc(100% / 2 - 20px);
  }

  .show-more {
    display: flex;
    align-items: center;
    gap: 6px;
    gap: 10px;
    color: #6950af;
    font-size: 16px;
    font-weight: 600;
  }

  .show-more::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid #6950af;
    border-right: 1.5px solid #6950af;
    transform: rotate(135deg);
    margin-bottom: 4px;
    transition: all 0.3s ease;
  }

  .show-more.active::after {
    transform: rotate(315deg);
    margin-bottom: 0;
  }
}

@media (max-width: 340px) {
  .textsection-columns a {
    max-width: 100%;
  }
}

.links {
  margin-block: 60px 80px;
}

.links-group {
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #40338a5e;
  padding: 25px 35px;
}

.links-group ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  flex-wrap: wrap;
}

.links-group ul li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -o-linear-gradient(330deg, #715ce9de 40%, #ab9ff2e3 100%);
  background: linear-gradient(330deg, #715ce9de 40%, #ab9ff2e3 100%);
  z-index: -1;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  -o-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  z-index: 1;
}

.links-group ul li {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.links-group ul li:hover:after {
  opacity: 1;
}

.links-group a {
  display: block;
  padding: 10px 15px;
  position: relative;
  z-index: 2;
  text-align: center;
  text-decoration: none;
  transition: color 300ms ease-out;
  color: #40338a;
  font-weight: 500;
  font-size: 18px;
}

.links-group li:hover a {
  color: #fff;
}

.vrachsection-sl {
  margin-block-start: 30px;
}

@media screen and (width<=470px) {
  .links-group ul {
    flex-direction: column;
  }
}

.introNew {
  background: #f2f1f8;
  position: relative;
}

.introNew__content {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

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

.introNew__title {
  color: #6950af;
  font-size: 62px;
  font-weight: 700;
  font-family: "Montserrat-Bold";
}

.introNew__text {
  font-size: 16px;
  max-width: 750px;
  margin-bottom: 44px;
}

.introNew__content li {
  padding: 13px 0;
  border-bottom: 1px solid #d9d4f8;
  padding-right: 20px;
  padding-left: 29px;
  position: relative;
}

.introNew__content li::before {
  content: "";
  width: 17px;
  height: 16px;
  display: block;
  background: url("/netcat_template/template/toksikolog-clinic.ru/images/work-li.svg.svg");
  position: absolute;
  left: 0;
  top: 15px;
}

.introNew__content ul {
  margin-bottom: 36px;
  display: inline-block;
}

.introNew__button {
  display: block;
  padding: 20px 36px;
  background-color: #6950af;
  color: #fff;
  font-size: 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 300ms ease-in;
}

.introNew__button:hover {
  background-color: #8664e1;
}

@media (max-width: 1500px) {
  .introNew__bg {
    max-width: 600px;
  }
}

@media (max-width: 1200px) {
  .introNew__bg {
    max-width: 410px;
  }
}

@media (max-width: 965px) {
  .introNew__bg {
    max-width: 300px;
  }

  .introNew__title {
    font-size: 26px;
  }
}

@media screen and (max-width: 768px) {
  .workbg {
    padding: 0;
  }
}

@media (max-width: 650px) {
  .introNew__content {
    padding: 28px 0 40px 0;
  }

  .introNew__text {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .introNew__content li {
    font-size: 14px;
  }

  .introNew__bg {
    display: none;
  }

  .introNew__button {
    width: 100%;
  }
}

.raschet-input select {
  display: block;
  font-size: 16px;
  line-height: 20px;
  margin: 0 0 0 0;
  width: 100%;
  color: #6950af;
  padding: 0 0 0 15px;
  height: 61px;
  background: #f7f7f7;
  border-radius: 10px;
  border: none;
}

.raschet-input select option:first-child {
  color: #7d7d7d;
}

.kodirovanieAdvantages {
  margin-top: 20px;
}

.kodirovanieAdvantages__inner {
  display: flex;
  gap: 40px;
  padding: 40px;
  border-radius: 30px;
  background: #f5f3ff;
}

.kodirovanieAdvantages__bannerBlock {
  width: 40%;
}

.kodirovanieAdvantages__items {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kodirovanieAdvantages__item {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-radius: 12px;
  background: #fff;
}

.kodirovanieAdvantages__item p {
  margin: 0;
  font-size: 14px;
  color: #323232;
  font-weight: 400;
}

.kodirovanieAdvantages__title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 37px;
  color: #6950af;
}

.kodirovanieAdvantages__banner {
  border-radius: 20px;
  background: #9684fc;
  height: calc(100% - 80px);
}

.kodirovanieAdvantages__banner {
  padding: 50px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.kodirovanieAdvantages__banner img {
  max-width: 100%;
}

@media (max-width: 1100px) {
  .kodirovanieAdvantages__inner {
    flex-direction: column-reverse;
    gap: 22px;
    padding: 24px 20px;
  }

  .kodirovanieAdvantages__items {
    width: 100%;
  }

  .kodirovanieAdvantages__title {
    display: none;
  }

  .kodirovanieAdvantages__bannerBlock {
    width: 100%;
  }

  .kodirovanieAdvantages__item {
    padding: 14px 16px;
    gap: 10px;
    align-items: flex-start;
  }

  .kodirovanieAdvantages__item svg {
    flex-shrink: 0;
  }
}

.besplatno-banner {
  display: flex;
  margin: 15px 0;
}

.besplatno-banner__wrapper {
  width: 100%;
  background: linear-gradient(360deg, #e0dbff 40%, rgba(191, 184, 234, 0) 100%);
  display: flex;
  border-radius: 12px;
  max-width: 1152px;
}

@media (max-width: 1023px) {
  .besplatno-banner__wrapper {
    flex-direction: column;
    align-items: center;
  }
}

.besplatno-banner__left {
  width: 100%;
  max-width: 364px;
  padding: 20px 0 20px 20px;
}

@media (max-width: 1023px) {
  .besplatno-banner__left {
    padding: 20px 20px 0 20px;
  }
}

.besplatno-banner__wrapper-input .besplatno-input {
  width: 50%;
  padding: 0;
}

@media (max-width: 1023px) {
  .besplatno-banner__wrapper-input .besplatno-input {
    width: 100%;
  }
}

.besplatno-banner__wrapper-button .besplatno-button {
  width: 100%;
  max-width: 348px;
}

@media (max-width: 1023px) {
  .besplatno-banner__wrapper-button .besplatno-button {
    width: 100%;
    max-width: 100%;
  }
}

.besplatno-banner__wrapper-button a {
  color: #735df8;
  text-decoration: none;
}

.besplatno-banner__left-img {
  display: block;
  background-color: #ffffff;
}

.besplatno-banner__left img {
  padding: 149px 48px;
  background-color: #ffffff;
}

@media (max-width: 1023px) {
  .besplatno-banner__left img {
    padding: 43px 50px;
  }
}

.besplatno-banner__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 813px;
  padding: 40px;
  gap: 15px;
}

@media (max-width: 1023px) {
  .besplatno-banner__right {
    padding: 32px 20px;
    gap: 0;
  }
}

.besplatno-banner__right-text {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
}

@media (max-width: 1023px) {
  .besplatno-banner__right-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
  }
}

.besplatno-banner__wrapper-input {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

@media (max-width: 1023px) {
  .besplatno-banner__wrapper-input {
    flex-direction: column;
  }
}

.besplatno-banner__wrapper-button {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

@media (max-width: 1023px) {
  .besplatno-banner__wrapper-button {
    flex-direction: column;
  }
}

.header-bottom__eyes {
  margin: 0 20px;
}

.yakor {
  margin: 80px 0;
}

.yakor__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style-type: none;
  flex-wrap: wrap;
}

.yakor__link {
  text-decoration: none;
  color: #6950af;
  font-size: 20px;
}

.call-to-action-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 300px;
  padding: 10px 15px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.price-text {
  font-size: 16px;
  color: #444444;
  font-weight: 300;
}

.price-text strong {
  font-weight: 700;
  color: #333333;
  margin-left: 5px;
}

.order-button {
  color: #fff;
  padding: 12px 18px;
  background-color: #8664e1;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.order-button:hover {
  background-color: #5527d9;
}

@media (max-width: 650px) {
  .call-to-action-panel {
    width: 100%;
  }

  .order-button {
    padding: 10px 50px;
  }
}

.quote {
  padding-top: 60px;
}

.quote__img {
  content: "";
  position: absolute;
  background-image: url("/netcat_template/template/toksikolog-clinic.ru/images/quote/quote.png");
  background-repeat: no-repeat;
}

.quote__img-ellipse {
  content: "";
  position: absolute;
  background-image: url("/netcat_template/template/toksikolog-clinic.ru/images/quote/quote-ellipse.png");
  background-repeat: no-repeat;
}

.quote__main {
  border-radius: 20px;
  background-color: #735df8;
  padding: 32px 40px;
  position: relative;
}

.quote__text {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: white;
  margin-bottom: 24px;
  margin-right: 45px;
}

.quote__date {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: white;
  opacity: 0.8;
  padding: 10px 13px;
  width: fit-content;
}

.quote__date p {
  margin: 0;
}

.quote__img {
  right: 40px;
  top: 40px;
  width: 40px;
  height: 35px;
}

.quote__img-ellipse {
  right: 0;
  width: 357px;
  height: 357px;
  bottom: -137px;
}

@media (width <=1024px) {
  .quote__main {
    border-radius: 16px;
    padding: 24px 20px;
  }

  .quote {
    padding-top: 24px;
  }

  .quote__text {
    font-size: 16px;
    margin-bottom: 20px;
    margin-right: 0px;
  }

  .quote__date {
    font-size: 14px;
  }

  .quote__img {
    right: 20px;
    top: auto;
    bottom: 24px;
    width: 32px;
    height: 28px;
    background-size: 32px;
  }

  .quote__img-ellipse {
    display: none;
  }
}

.consult-popup-wrap {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  z-index: 99999;
}

.consult-popup-wrap.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.consult-popup {
  position: relative;
  width: 100%;
  max-width: 809px;
  box-sizing: border-box;
  padding: 40px;
  border-radius: 10px;
  background: #f2f1f8;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
}

.consult-popup * {
  box-sizing: border-box;
}

.consult-popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #9684fc33;
  color: #1c1c1c;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.consult-popup__content {
  width: 100%;
}

.consult-popup__title {
  margin: 0 0 16px;
  color: #6950af;
  font-size: 40px;
  line-height: 49px;
  font-weight: 700;
}

.consult-popup__text {
  margin: 0 0 24px;
  color: #636363;
  font-size: 16px;
  line-height: 20px;
}

.consult-popup__inner {
  display: flex;
  gap: 53px;
  align-items: stretch;
}

.consult-popup__timer {
  padding: 42px 30px 32px 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #6950af;
}

.consult-popup__timer-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #6950af;
}

.consult-popup__timer-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.consult-popup__timer-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background-color: #6950af;
  color: #ffffff;
  font-size: 40px;
  line-height: 140%;
  font-weight: 700;
}

.consult-popup__timer-sep {
  color: #6950af;
  font-size: 40px;
  line-height: 100%;
  font-weight: 700;
}

.consult-popup__form-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.consult-popup__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.consult-popup__input {
  width: 100%;
  height: 63px;
  padding: 20px 30px;
  border: none;
  outline: none;
  border-radius: 10px;
  background-color: #ffffff;
  color: #6950af;
  font-size: 16px;
}

.consult-popup__input::placeholder {
  color: #6950af;
  opacity: 1;
}

.consult-popup__submit {
  height: 60px;
  color: #fff;
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 10px;
  background: #735df8;
}

.consult-popup__policy {
  margin: 0;
  font-size: 13px;
  line-height: 130%;
}

.consult-popup__policy a {
  text-decoration: none;
  color: #6950af;
}

@media (max-width: 767px) {
  .consult-popup {
    padding: 40px 20px;
  }

  .consult-popup__close {
    top: 15px;
    right: 15;
    width: 28px;
    height: 28px;
  }

  .consult-popup__title {
    font-size: 24px;
    line-height: 32px;
  }

  .consult-popup__text {
    margin: 0 0 30px;
  }

  .consult-popup__inner {
    flex-direction: column;
    gap: 30px;
  }

  .consult-popup__timer {
    padding: 0;
    border-radius: 0;
    border: none;
  }

  .consult-popup__timer-list {
    gap: 5px;
  }

  .consult-popup__timer-item {
    width: 70px;
    height: 70px;
    font-size: 24px;
  }

  .consult-popup__timer-sep {
    font-size: 26px;
  }

  .consult-popup__form-block {
    gap: 16px;
  }

  .consult-popup__form {
    gap: 8px;
  }

  .consult-popup__policy {
    font-size: 12px;
  }
}

.article-banner__wrapper {
  padding: 60px 40px;
  display: flex;
  min-height: 328px;
  border-radius: 10px;
  background: linear-gradient(360deg, #e0dbff 40%, rgba(224, 219, 255, 0) 100%);
}

.article-banner__left {
  display: flex;
  flex-direction: column;
  max-width: 53%;
}

.article-banner__text {
  margin: 0;
  padding-right: 130px;
  font-size: 20px;
  line-height: 26px;
}

.article-banner__title {
  margin: 0;
  margin-bottom: auto;
  padding: 0;
  font-family: "Montserrat-Bold", monospace;
  font-size: 40px;
  line-height: 49px;
  font-weight: 700;
  color: #6950af;
}

.article-banner__form {
  margin-bottom: auto;
  padding-top: 46px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form__input {
  padding: 20px 30px;
  border-radius: 10px;
  background-color: #ffffff;
  flex-grow: 1;
  height: 61px;
  font-size: 15px;
}

.form__input::placeholder {
  font-size: 15px;
  color: #6950af;
}

.article-banner__btn {
  font-size: 15px;
  line-height: 20px;
  color: #ffffff;
  padding: 20px;
  background: #735df8;
  border-radius: 10px;
  min-width: calc(50% - 10px);
  flex-grow: 1;
  height: 61px;
}

.article-banner__form .form-policy {
  margin: 0;
  margin-top: 4px;
  width: 100%;
  line-height: 140%;
}

@media (max-width: 768px) {
  .article-banner__wrapper {
    padding: 40px 20px;
    flex-direction: column;
    gap: 44px;
    min-height: none;
    border-radius: 10px;
  }

  .article-banner__left {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    gap: 30px;
  }

  .article-banner__text {
    padding-right: 0;
    font-size: 18px;
    line-height: 24px;
  }

  .article-banner__title {
    margin-bottom: 0;
    font-size: 24px;
    line-height: 32px;
  }

  .article-banner__form {
    margin-bottom: 0;
    padding-top: 0;
    flex-direction: column;
    gap: 20px;
  }

  .article-banner__btn {
    width: 100%;
  }

  .article-banner__form .form-policy {
    margin-top: 0;
  }
}

.fact-block {
  margin-top: 50px;
}

.fact-block__wrap {
  background: linear-gradient(360deg, #e0dbff 40%, rgba(224, 219, 255, 0) 100%);
  border-radius: 12px;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
}

.fact-block__text {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid white;
  display: flex;
  flex-direction: column;
  font-size: 20px;
  gap: 24px;
}

.fact-block__text p {
  margin: 0;
}

.fact-block__text p b {
  margin-bottom: 16px;
  display: block;
  font-size: 24px;
  color: #6950af;
}

.fact-block__doc {
  display: flex;
  gap: 20px;
  align-items: center;
}

.fact-block__doc picture {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  flex-shrink: 0;
  overflow: hidden;
}

.fact-block__doc picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fact-block__doc-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fact-block__doc-content-title,
.fact-block__doc-content-post {
  font-size: 20px;
}

.fact-block__doc-content-name {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
}

.fact-block__doc-content-name a {
  text-decoration: none;
}

@media (max-width: 768px) {
  .fact-block {
    margin-top: 40px;
  }

  .fact-block__wrap {
    border-radius: 10px;
    padding: 40px 20px;
  }

  .fact-block__text {
    margin-bottom: 24px;
    padding-bottom: 24px;
    gap: 8px;
    font-size: 18px;
  }

  .fact-block__text p b {
    margin-bottom: 22px;
    font-size: 20px;
  }

  .fact-block__doc {
    flex-direction: column;
    align-items: flex-start;
  }

  .fact-block__doc-content-title,
  .fact-block__doc-content-post {
    font-size: 16px;
  }

  .fact-block__doc-content-name {
    font-size: 16px;
  }
}

/* АПП */
.app-block {
  margin: 80px 0;
}

.app-block__wrap {
  padding: 60px 40px;
  background: url(/netcat_template/template/toksikolog-clinic.ru/images/app-desk.png) center center no-repeat;
  background-size: cover;
  border-radius: 12px;
  display: flex;
  gap: 100px;
  align-items: center;
  justify-content: space-between;
}

.app-block__content-title {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 40px;
  color: #6950af;
  font-family: "Montserrat-Bold", monospace;
}

.app-block__content-text {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 24px;
}

.app-block__list {
  display: flex;
  gap: 5px;
}

.app-block__list-item {
  font-size: 20px;
  color: #000000;
  font-weight: 700;
}

.app-block-btn {
  width: 100%;
  transition: all 0.3s linear;
  justify-content: center;
  display: flex;
  align-items: center;
  background-color: #735df8;
  color: #ffffff;
  border-radius: 10px;
  padding: 20px 100px;
}

@media (max-width: 1200px) {
  .app-block__wrap {
    gap: 44px;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .app-block {
    margin: 30px 0;
  }

  .app-block__wrap {
    padding: 40px 20px;
    background: url(/netcat_template/template/toksikolog-clinic.ru/images/app-mob.png) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
  }

  .app-block__content-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .app-block__content-text {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .app-block__list {
    flex-direction: column;
    gap: 4px;
  }

  .app-block__list-item {
    max-width: fit-content;
    font-size: 18px;
  }
}

@media (max-width: 500px) {

  .app-block-btn,
  .app-block__btn-wrap {
    width: 100%;
  }
}

.warranty {
  margin: 60px 0;
}

.warranty__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background-color: #735df8;
  border-radius: 20px;
  color: #fff;
  padding: 12px 12px 12px 40px;
}

.warranty__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: calc(100% - 572px);
  z-index: 4;
}

.warranty__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
}

.warranty__picture {
  height: 100%;
  display: block;
  max-width: 564px;
  max-height: 268px;
  z-index: 3;
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
}

.warranty__picture img {
  width: 100%;
  height: 100%;
  max-height: 268px;
  object-fit: cover;
  clip-path: path("M574 258C574 263.523 569.523 268 564 268H82.1934C31.245 214.157 0 141.478 0 61.5C0 40.4226 2.17196 19.8525 6.30078 0H564C569.523 0 574 4.47715 574 10V258Z"
    );
}

.warranty__btn {
  padding: 16px 32px;
  border: 1px solid #735df8;
  border-radius: 10px;
  color: #735df8;
  background: #fff;
  transition: all 300ms ease-out;
  max-width: fit-content;
  border-radius: 10px;
}

.warranty__btn:hover {
  background-color: #735df8;
  color: #fff;
  border-color: #fff;
}

@media (max-width: 1460px) {
  .warranty__picture {
    width: 500px;
  }

  .warranty__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: calc(100% - 540px);
    z-index: 4;
  }

  .warranty__title {
    font-size: 32px;
  }
}

@media (max-width: 1024px) {
  .warranty__wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .warranty__content {
    padding: 0;
    max-width: 100%;
  }

  .warranty__wrapper {
    padding: 18px;
  }

  .warranty__picture {
    width: 100%;
    max-width: 100%;
    max-height: 296px;
    height: 296px;
    border-radius: 8px;
  }

  .warranty__picture img {
    height: 296px;
    max-height: 296px;
    clip-path: path("M160 0C197.375 0 232.695 8.80117 932 24.4424V288C264 292.418 260.418 296 256 296H7.99999C3.58171 296 0 292.418 0 288V63.6221C41.7368 24.1822 98.0441 0 160 0Z"
      );
  }

  .warranty {
    margin: 30px 0;
  }
}

@media (max-width: 768px) {
  .warranty__title {
    font-size: 24px;
  }

  .warranty__wrapper {
    border-radius: 16px;
    gap: 20px;
    padding: 16px 20px;
  }

  .warranty__picture img {
    clip-path: path("M160 0C197.375 0 232.695 8.80117 676 24.4424V288C264 292.418 260.418 296 256 296H7.99999C3.58171 296 0 292.418 0 288V63.6221C41.7368 24.1822 98.0441 0 160 0Z"
      );
  }

  .warranty__btn {
    max-width: 100%;
  }

  .warranty {
    margin: 0;
  }
}

@media (max-width: 380px) {
  .warranty__picture img {
    clip-path: path("M160 0C197.375 0 232.695 8.80117 264 24.4424V288C264 292.418 260.418 296 256 296H7.99999C3.58171 296 0 292.418 0 288V63.6221C41.7368 24.1822 98.0441 0 160 0Z"
      );
  }
}

.socials {
  display: flex;
  gap: 10px;
}

.socials--form {
  padding-left: 40px;
  border-left: 1px solid #888686;
}

.socials__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  min-width: 55px;
  height: 55px;
  border-radius: 10px;
  background-color: #735df8;
}

.socials__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.pricelist__bottom {
  margin-top: 15px;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  font-size: 24px;
  color: #595353;
  border-radius: 10px;
  background-color: #e0dbff;
}

.besplatno-link {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 1119px) {
  .socials__item {
    width: 36px;
    min-width: 36px;
    height: 36px;
    border-radius: 5px;
  }

  .socials__item svg {
    width: 20px;
  }
}

@media (max-width: 768px) {
  .socials--form {
    padding-left: 0;
    border-left: none;
  }

  .socials__item--mobile {
    display: none;
  }

  .pricelist__bottom {
    padding: 14px;
    flex-direction: column;
    gap: 20px;
    font-size: 16px;
  }

  .besplatno-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
}

.statistics {
  padding-top: 80px 0;
}

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

.statistics__item {
  padding: 30px 74px 30px 22px;
  background: #f7f7f7;
  border-radius: 10px;
}

.statistics__number {
  margin-bottom: 12px;
  display: block;
  font-family: "Montserrat-Bold", monospace;
  font-size: 40px;
  line-height: 49px;
  font-weight: 700;
  color: #6950af;
}

.statistics__label {
  margin: 0;
}

@media (max-width: 1023px) {
  .statistics__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .statistics__list {
    margin-top: 19px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .statistics__item {
    padding: 15px 12px;
  }

  .statistics__number {
    margin-bottom: 9px;
    font-size: 24px;
    line-height: 32px;
  }
}

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

.article__card {
  display: flex !important;
  flex-direction: column;
  text-decoration: none;
  position: relative;
  border-radius: 20px;
  border: 1px solid #9684FC;
}

.article__card-tag {
  position: absolute;
  top: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 100px;
  padding: 10px 15px;
  color: #6950AF;
  font-size: 16px;
  line-height: 20px;
}

.article__card-img {
  height: 300px;
  border-radius: 20px;
  object-fit: cover;
  width: 100%;
}

.article__card-body {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.article__card-header {
  text-decoration: none;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 20px;
  color: #6950AF;
}

.article__card-subheader {
  margin: 0px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  font-size: 16px;
  line-height: 24px;
  color: #595353;
  margin-bottom: 30px;
}

.article__card-date {
  margin-top: auto;
  background: #6950AF;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  padding: 10px 15px;
  border-radius: 10px;
  width: fit-content;
}

.novostisection-slayder {
  padding-bottom: 55px !important;
}

.novostisection-slayder .swiper-pagination {
  bottom: 0px;
  z-index: 1;
}

.swiper-pagination-bullet {
  background: rgba(199, 169, 237, 0.64) !important;
  height: 12px !important;
  width: 12px !important;
  transition: 0.3s all !important;
  margin: 0px 6px !important;
}

.swiper-pagination-bullet-active {
  background: #A699F2 !important;
}

.swiper-pagination-bullet:hover {
  opacity: 0.8;
  background: #A699F2 !important;
  transform: scale(1.2) !important;
}

@media screen and (max-width: 768px) {
  .articles__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .article__card {
    border-radius: 10px;
  }

  .article__card-tag {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 20px;
    top: 20px;
    left: 20px;
  }

  .article__card-img {
    height: 185px;
    border-radius: 10px;
  }

  .article__card-body {
    padding: 20px;
  }

  .article__card-header {
    font-size: 20px;
    line-height: 24px;
    -webkit-line-clamp: 3;
    margin-bottom: 15px;
  }

  .article__card-subheader {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
  }

  .article__card-date {
    padding: 8px 10px;
    font-size: 14px;
    line-height: 20px;
    border-radius: 8px;
  }

  .novostisection-slayder {
    padding-inline: 0px !important;
  }

  .novostisection-slayder .swiper-button-prev,
  .novostisection-slayder .swiper-button-next {
    top: unset !important;
    bottom: 0px !important;
    z-index: 2 !important;
  }

  .novostisection-slayder .swiper-button-next:after,
  .novostisection-slayder .swiper-button-prev:after {
    font-size: 25px !important;
  }
}

.cookie-policy__visible {
  z-index: 99999999999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  gap: 30px;
  background-color: #a989b6;
  color: white;
  border-radius: 20px;
  padding: 10px 15px;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translatex(-50%);
  width: 415px;
  box-sizing: border-box;
}

.cookie-policy__visible a {
  color: #ffffff;
  transition: 0.3s all;
}

.cookie-policy__visible a:hover {
  color: #6950af;
  transition: 0.3s all;
}

.cookie-policy,
.cookie-policy p {
  font-size: 14px;
  margin: 0;
  color: #ffffff;
}

.cookie-policy__title,
.cookie-policy__agreed {
  font-weight: 700;
}

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

.cookie-policy__agreed {
  cursor: pointer;
  color: #6950af;
  transition: 0.3s all;
}

.cookie-policy__agreed:hover {
  color: #ffffff;
}

.cookie-policy__subtitle:hover {
  color: #6950af;
}

.cookie-policy__subtitle {
  cursor: pointer;
  text-decoration: underline;
  opacity: 0.8
}

.cookie-policy__hidden {
  border: 1px solid #6950af;
  padding: 30px;
  border-radius: 30px;
  background-color: #ffffff;
  max-width: 415px;
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translate(-50%, 150%);
  box-sizing: border-box;
  width: 415px;
}

.cookie-policy__hidden.show {
  transform: translate(-50%, 0%);
  z-index: 99999999999;
}

.cookie-policy__close {
  padding: 5px 10px;
  background-color: #ebebeb;
  width: fit-content;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 14px;
  right: 14px;
  transition: background-color 0.5s;
}

.cookie-policy__close:hover {
  background-color: #e0dbff;
  transition: background-color 0.5s;
}

.cookie-policy__close span {
  transform: rotate(45deg);
  display: block;
}

.cookie-policy__inner {
  display: flex;
  flex-direction: column;
  gap: 11px;
  color: #062656;
}

.cookie-policy__hidden .cookie-policy__agreed {
  color: var(--white);
  background-color: #6950af;
  border: 1px solid #6950af;
  text-align: center;
  padding: 5px;
  border-radius: 20px;
  margin-top: 10px;
}

.cookie-policy__hidden .cookie-policy__agreed:hover {
  color: #6950af;
  background-color: #ffffff;
}

.cookie-policy>* {
  transition: transform 0.5s ease;
}

.closed.cookie-policy {
  display: none;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}

.cookie-policy__text a {
  color: #6950af;
  text-decoration: none;
  transition: color 0.5s;
}

.cookie-policy__text a:hover {
  color: #735df8;
  transition: color 0.5s;
}

@media (max-width: 600px) {

  .cookie-policy__visible,
  .cookie-policy__hidden {
    width: calc(100% - 5px);
  }

  .cookie-policy__hidden {
    padding: 15px;
  }
}




:root {
  --brand: #735df8;
  --brand-dark: #4b389e;
  --brand-soft: #f0eeff;
  --brand-border: #d9d3ff;
  --ink: #161b3b;
  --text: #555f7c;
  --muted: #8d94aa;
  --line: #e7e9f2;
  --surface: #ffffff;
  --page: #f6f6fb;
  --shadow: 0 16px 46px rgba(32, 28, 78, 0.1);
  --shell: 1280px;
  --content: 808px;
}

/* Блок: article-head */
.article-head {
  /* Корневой блок */
}

/* Элементы блока article-head */
.article-head__chips {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
}

.article-head__chip {
  width: fit-content;
  max-width: 100%;
  padding: 9px 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  background: linear-gradient(90deg, #f0eeff, #f7f6ff);
  border-radius: 999px;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 600;
  text-decoration: none;
}

.article-head__chip svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.article-head__title {
  margin: 23px 0 0;
  color: var(--ink);
  font-size: clamp(32px, 10vw, 42px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.article-head__meta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 10px;
  color: #5d6682;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 500;
}

.article-head__meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.article-head__meta svg {
  width: 18px;
  height: 18px;
  color: var(--brand-dark);
}

.article-head__meta i {
  color: #b2b5c6;
  font-style: normal;
}

.article-head__grid {
  margin-top: 30px;
}

.article-head__lead {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.68;
  letter-spacing: -0.012em;
}

.article-head__experts {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.article-head__expert {
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--brand-border);
  border-radius: 16px;
  background: linear-gradient(120deg, #fff 35%, #fbfaff 100%);
}

.article-head__expert-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 50%;
}

.article-head__expert-icon svg {
  width: 36px;
  height: 36px;
}

.article-head__expert-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.article-head__expert-label {
  color: #6e7590;
  font-size: 12px;
  line-height: 1.3;
}

.article-head__expert-name {
  color: #303650;
  font-size: 14px;
  line-height: 1.32;
  font-weight: 750;
  text-decoration: none;
}

.article-head__expert-name:hover {
  color: var(--brand);
}

.article-head__expert-role {
  color: #9298ad;
  font-size: 12px;
  line-height: 1.35;
}

/* Блок: article-head__toc (элемент-карточка оглавления) */
.article-head__toc {
  margin-top: 18px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 10px 34px rgba(30, 26, 73, 0.055);
}

.article-head__toc-heading {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.article-head__toc-heading .toc-title {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.article-head__toc-mobile-trigger {
  width: 32px;
  height: 32px;
  margin-left: auto;
  display: grid;
  place-items: center;
  color: var(--brand-dark);
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
}

.article-head__toc-mobile-trigger:hover,
.article-head__toc-mobile-trigger:focus-visible {
  background: var(--brand-soft);
  outline: none;
}

.article-head__toc-mobile-trigger svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.article-head__toc.is-mobile-open .article-head__toc-mobile-trigger svg {
  transform: rotate(180deg);
}

.article-head__toc-content {
  display: none;
  padding: 0 18px 14px;
}

.article-head__toc.is-mobile-open .article-head__toc-content {
  display: block;
}

.article-head__toc-heading-icon {
  display: none;
}

.article-head__toc-heading-icon svg {
  width: 21px;
  height: 21px;
}

.article-head__toc-list {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
}

.article-head__toc-list li {
  counter-increment: toc;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 59px;
  border-bottom: 1px solid var(--line);
}

.article-head__toc-list li::before {
  content: counter(toc);
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 50%;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.article-head__toc-list li:nth-child(3):not(.article-head__toc-extra) {
  border-bottom: 0;
}

.article-head__toc-list li:last-child {
  border-bottom: 0;
}

.article-head__toc-list a {
  padding: 12px 0;
  color: #56607b;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 520;
  text-decoration: none;
}

.article-head__toc-list a:hover {
  color: var(--brand);
}

.article-head__toc-extra {
  display: none !important;
}

.article-head__toc.is-expanded .article-head__toc-extra {
  display: grid !important;
}

.article-head__toc.is-expanded .article-head__toc-list li:nth-child(3) {
  border-bottom: 1px solid var(--line);
}

.article-head__toc-toggle {
  width: 100%;
  min-height: 48px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--brand);
  background: transparent;
  font-size: 14px;
  line-height: 1;
  font-weight: 650;
  cursor: pointer;
  border-radius: 12px;
}

.article-head__toc-toggle:hover,
.article-head__toc-toggle:focus-visible {
  background: var(--brand-soft);
  outline: none;
}

.article-head__toc-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.article-head__toc.is-expanded .article-head__toc-toggle svg {
  transform: rotate(180deg);
}

/* Адаптивность */
@media (min-width: 390px) {
  .article-head__meta {
    font-size: 13px;
  }

  .article-head__expert {
    padding: 17px;
  }

  .article-head__expert-name {
    font-size: 15px;
  }

  .article-head__toc-list a {
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  .article-head__title {
    margin-top: 26px;
    font-size: 50px;
  }

  .article-head__meta {
    margin-top: 24px;
    font-size: 14px;
  }

  .article-head__lead {
    font-size: 18px;
  }

  .article-head__expert {
    padding: 20px;
  }

  .article-head__expert-label,
  .article-head__expert-role {
    font-size: 14px;
  }

  .article-head__expert-name {
    font-size: 18px;
  }

  .article-head__toc {
    margin-top: 24px;
    padding: 25px 26px 18px;
  }

  .article-head__toc-heading {
    padding: 0;
  }

  .article-head__toc-heading .toc-title {
    font-size: 28px;
  }

  .article-head__toc-mobile-trigger {
    display: none;
  }

  .article-head__toc-heading-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    color: var(--brand);
    background: var(--brand-soft);
    border-radius: 11px;
  }

  .article-head__toc-content {
    display: block;
    padding: 0;
  }

  .article-head__toc-list li {
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 66px;
  }

  .article-head__toc-list li::before {
    width: 35px;
    height: 35px;
    font-size: 15px;
  }

  .article-head__toc-list a {
    font-size: 17px;
  }

  .article-head__toc-toggle {
    font-size: 16px;
  }
}

@media (min-width: 1200px) {
  .article-head__title {
    font-size: 56px;
  }

  .article-head__grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
    align-items: start;
    gap: 34px;
  }

  .article-head__summary {
    padding-top: 2px;
  }

  .article-head__lead {
    font-size: 19px;
    line-height: 1.72;
  }

  .article-head__experts {
    margin-top: 28px;
  }

  .article-head__toc {
    margin-top: 0;
  }
}

@media (min-width: 1600px) {
  .article-head__grid {
    gap: 48px;
  }
}




:root {
  --accent: #735DF8;
  --accent-dark: #6950af;
  --accent-soft: #f1efff;
  --ink: #111c3d;
  --text: #566079;
  --muted: #7f889f;
  --line: #e4e6ef;
  --success: #45a83a;
  --white: #fff;
}


.reviews-intro {
  padding: 54px 0 26px;
  background: #fff
}

.reviews-intro__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  align-items: center;
  gap: 60px
}

.reviews-intro__copy h1 {
  margin: 0;
  padding: 0;
}

.reviews-intro__copy p {
  margin: 18px 0 0;
  padding: 0;
}

.rating-summary {
  display: grid;
  grid-template-columns: 180px 1px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  padding: 24px 34px;
  border: 1px solid #e7e8f1;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(42, 50, 82, .09)
}

.rating-summary__score,
.rating-summary__reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}

.rating-summary__score strong {
  color: var(--accent-dark);
  font-size: 50px;
  line-height: 1
}

.rating-summary__score span,
.rating-summary__reviews>span:last-child {
  margin-top: 12px;
  color: #7b8499;
  font-size: 13px
}

.rating-summary__divider {
  width: 1px;
  height: 74px;
  background: #e1e3ec
}

.rating-summary__stars {
  color: #f5b800;
  font-size: 31px;
  line-height: 1;
  letter-spacing: 5px;
  white-space: nowrap
}


.reviews-filters {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 10px;
  margin: 30px 0;
}

.reviews-filter {
  flex-grow: 1;
  display: inline-flex;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border: 1px solid #dfe2ec;
  border-radius: 9px;
  color: #59627a;
  background: #fff;
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.2s ease;
}

.reviews-filter:hover {
  border-color: #bdb5ff;
  color: var(--accent-dark);
}

.reviews-filter.is-active {
  color: #fff;
  border-color: var(--accent-dark);
  background: linear-gradient(135deg, #735df8, #5d47e8);
  box-shadow: 0 8px 18px rgba(93, 71, 232, 0.18);
}

.reviews-mobile-filter {
  display: none;
}


.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
  margin-bottom: 40px;
}

.review-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 22px;
  border: 1px solid #e4e6ef;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 9px 28px rgba(42, 50, 82, 0.055);
  height: 100%;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.review-card:hover {
  border-color: #cdc6ff;
  box-shadow: 0 15px 36px rgba(42, 50, 82, 0.09);
}

.review-card[hidden] {
  display: none;
}

.review-card__swiper-slide.swiper-slide {
  height: auto;
}

.review-card__top {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}

.review-card__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__person {
  min-width: 0;
}

.review-card__person-name {
  margin: 0 0 5px;
  overflow: hidden;
  color: #303a59;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--success);
  font-size: 10.5px;
  font-weight: 650;
  white-space: nowrap;
}

.review-card__verified::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='8' fill='%23dff4dc' stroke='%2345a83a' stroke-width='1.1'/%3E%3Cpath d='m6.8 10.1 2 2 4.4-4.6' fill='none' stroke='%2345a83a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.review-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 8px;
  margin-top: 10px;
  color: #8a92a6;
  font-size: 12px;
  line-height: 1.35;
}

.review-card__meta>span[aria-hidden="true"] {
  color: #c4c8d3;
}

.review-card__rating {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 14px;
}

.review-card__rating b {
  color: #59627a;
  font-size: 12px;
}

.review-card__rating-stars {
  display: flex;
}

.review-card__rating span {
  color: #f5b800;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.5px;
}

.review-card__text {
  margin-top: 12px;
}

.review-card__text p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #566079;
  font-size: 12.8px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.review-card.is-expanded .review-card__text p {
  display: block;
  overflow: visible;
}

.review-card__more {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 5px;
  margin: 12px 0 0;
  padding: 0;
  color: var(--accent);
  background: transparent;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
}

.review-card__more svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}

.review-card__more[aria-expanded="true"] svg {
  transform: rotate(90deg);
}

.reviews-empty {
  margin: 48px 0;
  text-align: center;
  color: #7e879c;
}

.reviews-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.reviews-pagination button {
  display: grid;
  min-width: 40px;
  height: 40px;
  place-items: center;
  padding: 0 12px;
  border: 1px solid #dfe2ec;
  border-radius: 9px;
  color: #59627a;
  background: #fff;
  font-weight: 650;
  cursor: pointer;
}

.reviews-pagination button:hover {
  border-color: #bdb5ff;
  color: var(--accent-dark);
}

.reviews-pagination button.is-active {
  color: #fff;
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}

.reviews-pagination button:disabled {
  opacity: 0.4;
  cursor: default;
}

.reviews-note {
  display: flex;
  max-width: 840px;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  margin: 30px auto 0;
  color: #848ca1;
  font-size: 10px;
  line-height: 1.5;
}

.reviews-note>span {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #b7bdd0;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.reviews-note p {
  margin: 0;
}

.reviews-load-more__button {
  display: inline-flex;
  width: min(100%, 380px);
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid #735df8;
  border-radius: 10px;
  color: #654fe4;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.reviews-load-more__button:hover {
  color: #fff;
  background: #654fe4;
  box-shadow: 0 10px 24px rgba(101, 79, 228, 0.2);
  transform: translateY(-1px);
}

.reviews-load-more__button:focus-visible {
  outline: 3px solid rgba(115, 93, 248, 0.25);
  outline-offset: 3px;
}


@media (max-width: 1240px) {
  .reviews-intro__top {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 36px;
  }

  .rating-summary {
    grid-template-columns: 140px 1px minmax(0, 1fr);
    gap: 20px;
    padding-inline: 24px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .reviews-intro {
    padding-top: 36px;
  }

  .reviews-intro__top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .rating-summary {
    grid-template-columns: 1fr 1px 1fr;
    padding: 18px 22px;
  }

  .rating-summary__score strong {
    font-size: 40px;
  }

  .reviews-filters--desktop {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .reviews-filters--desktop::-webkit-scrollbar {
    display: none;
  }

  .reviews-filter {
    flex: 0 0 auto;
  }
}

@media (max-width: 767px) {
  .reviews-intro {
    padding: 28px 0 18px;
  }

  .reviews-intro__copy h1 {
    font-size: 34px;
  }

  .reviews-intro__copy p {
    margin-top: 12px;
    font-size: 13px;
  }

  .rating-summary {
    grid-template-columns: 1fr 1px 1fr;
    gap: 14px;
    padding: 18px 14px;
  }

  .rating-summary__score strong {
    font-size: 40px;
  }

  .rating-summary__score span,
  .rating-summary__reviews>span:last-child {
    margin-top: 9px;
    font-size: 10px;
  }

  .rating-summary__divider {
    height: 58px;
  }

  .rating-summary__stars {
    font-size: 22px;
    letter-spacing: 2px;
  }

  .reviews-filters--desktop {
    display: none;
  }

  .reviews-mobile-filter {
    display: block;
    margin-top: 14px;
    margin-bottom: 20px;
  }

  .reviews-mobile-filter__toggle {
    display: flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    padding: 7px 12px;
    border: 1px solid #dfe2ec;
    border-radius: 9px;
    color: #303a59;
    background: #fff;
    text-align: left;
  }

  .reviews-mobile-filter__toggle span {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 1px;
  }

  .reviews-mobile-filter__toggle small {
    color: #8a92a6;
    font-size: 8.5px;
    line-height: 1.1;
  }

  .reviews-mobile-filter__toggle b {
    overflow: hidden;
    font-size: 12px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .reviews-mobile-filter__toggle svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.8;
    transition: transform 0.2s;
  }

  .reviews-mobile-filter__toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
  }

  .reviews-mobile-filter__panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    margin-top: 6px;
    padding: 6px;
    border: 1px solid #e4e6ef;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(42, 50, 82, 0.09);
  }

  .reviews-mobile-filter__panel[hidden] {
    display: none;
  }

  .reviews-filter--mobile {
    width: 100%;
    min-height: 38px;
    padding: 6px 8px;
    border-radius: 7px;
    font-size: 10.5px;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
  }

  .reviews-list-section {
    padding: 26px 0 48px;
  }

  .reviews-list-section__head {
    align-items: center;
    margin-bottom: 16px;
  }

  .reviews-list-section__head h2 {
    font-size: 30px;
  }

  .reviews-list-section__head p {
    font-size: 10px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 25px;
  }

  .review-card {
    padding: 18px 17px;
  }

  .review-card:hover {
    transform: none;
  }

  .review-card__person-name {
    font-size: 14px;
  }

  .review-card__verified {
    font-size: 12px;
  }

  .review-card__meta {
    font-size: 12px;
  }

  .review-card__text p {
    font-size: 12.8px;
    -webkit-line-clamp: 5;
  }

  .reviews-pagination {
    margin-top: 24px;
  }

  .reviews-pagination button {
    min-width: 36px;
    height: 36px;
    padding-inline: 10px;
  }

  .reviews-load-more__button {
    width: 100%;
    min-height: 46px;
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .rating-summary {
    gap: 10px;
  }

  .rating-summary__score strong {
    font-size: 36px;
  }

  .rating-summary__stars {
    font-size: 22px;
  }

  .reviews-list-section__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

.open--active {
  max-height: 2500px;
  display: block;
}