@charset "UTF-8";
.pageStomatology-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.pageStomatology-header h2 {
  font-weight: 700;
  font-size: 48px;
  text-transform: uppercase;
  color: #333;
  margin: 0;
  letter-spacing: -0.02em;
}
.pageStomatology-listCategory__item {
  background: #f8f8f8;
  padding: 30px;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 12px;
  transition: 0.3s;
}
@media (max-width: 576px) {
  .pageStomatology-listCategory__item {
    min-height: 155px;
  }
}
.pageStomatology-listCategory__item-button {
  display: none;
}
@media (max-width: 576px) {
  .pageStomatology-listCategory__item-button {
    max-width: 105px;
    display: inline-block;
    position: relative;
    color: #0086c1;
  }
  .pageStomatology-listCategory__item-button::before {
    content: "";
    display: block;
    right: 1px;
    top: 50%;
    margin-top: 0px;
    position: absolute;
    width: 12px;
    height: 2px;
    background: #0086c1;
    transition: 0.3s;
  }
  .pageStomatology-listCategory__item-button::after {
    content: "";
    display: block;
    right: 0;
    top: 50%;
    margin-top: -2px;
    position: absolute;
    width: 6px;
    height: 6px;
    border-top: 2px solid #0086c1;
    border-right: 2px solid #0086c1;
    transform: rotate(45deg);
    transition: 0.3s;
  }
}
.pageStomatology-listCategory__item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.pageStomatology-listCategory__item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
  transition: opacity 0.5s ease, height 0.5s ease, margin-bottom 0.5s ease;
  overflow: hidden;
}
.pageStomatology-listCategory__item-number {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: #5f6877;
}
@media (max-width: 767px) {
  .pageStomatology-listCategory__item-number {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 576px) {
  .pageStomatology-listCategory__item-number {
    display: none;
  }
}
.pageStomatology-listCategory__item-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  flex-shrink: 0;
}
.pageStomatology-listCategory__item-icon img {
  width: 100%;
  height: 100%;
}
@media (max-width: 576px) {
  .pageStomatology-listCategory__item-icon {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 30px;
    top: 55px;
  }
  .pageStomatology-listCategory__item-icon img {
    transform: scale(83.333%);
    transform-origin: center;
  }
}
.pageStomatology-listCategory__item-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.2;
}
.pageStomatology-listCategory__item-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #404557;
  margin-bottom: 20px;
  line-height: 1.25;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .pageStomatology-listCategory__item-link {
    display: inline-block;
    max-width: 188px;
  }
}
.pageStomatology-listCategory__item-tags {
  min-height: 100px;
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .pageStomatology-listCategory__item-tags {
    display: none;
  }
}
.pageStomatology-listCategory__item-tags a {
  text-decoration: none;
  color: #0086c1;
  font-size: 15px;
  line-height: 30px;
  display: inline;
  margin-right: 10px;
  transition: color 0.3s;
  padding-bottom: 3px;
}
.pageStomatology-listCategory__item-tags a:hover {
  color: #0fa1ef;
  text-decoration: underline;
}
.pageStomatology-listCategory__item-tags a:not(:last-child):after {
  content: ",";
  color: #0086c1;
}
.pageStomatology-headerSection {
  background: #f8f8f8;
  padding: 60px 0;
}
.pageStomatology-headerSection__wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
}
.pageStomatology-headerSection__wrapper-left {
  flex: 1 1 55%;
}
.pageStomatology-headerSection__wrapper-right {
  flex: 0 0 45%;
}
.pageStomatology-headerSection__image {
  position: relative;
  width: 100%;
  height: 480px;
  text-align: center;
}
.pageStomatology-headerSection__image--horizontal img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.pageStomatology-headerSection__image--vertical img {
  border-radius: 8px;
  width: auto;
  height: 100%;
}
.pageStomatology-headerSection__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.pageStomatology-headerSection__tags-item {
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  background-color: #DA2C23;
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
@media (max-width: 767px) {
  .pageStomatology-headerSection__tags-item {
    font-size: 10px;
    line-height: 15px;
  }
}
.pageStomatology-headerSection__tags-item_primary {
  background-color: #0086c1;
}
.pageStomatology-headerSection__title.block-title {
  margin-bottom: 20px;
}
.pageStomatology-headerSection__content {
  margin-bottom: 60px;
}
.pageStomatology-headerSection__content .block-text:not(:last-child) {
  margin-bottom: 15px;
}
.pageStomatology-headerSection__advantages-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}
@media (max-width: 767px) {
  .pageStomatology-headerSection__advantages-item {
    font-size: 16px;
    line-height: 25px;
  }
}
.pageStomatology-headerSection__advantages-item:not(:last-child) {
  margin-bottom: 15px;
}
.pageStomatology-headerSection__advantages-item:before {
  content: "";
  flex: none;
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(/res/test/advantages-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.pageStomatology-headerSection__action {
  display: flex;
  align-items: center;
  gap: 30px;
}
.pageStomatology-headerSection__price-name {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .pageStomatology-headerSection__price-name {
    font-size: 10px;
    line-height: 15px;
  }
}
.pageStomatology-headerSection__price-value {
  color: #404557;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
@media (max-width: 767px) {
  .pageStomatology-headerSection__price-value {
    font-size: 18px;
    line-height: 30px;
  }
}
@media (max-width: 1200px) {
  .pageStomatology-headerSection__wrapper {
    gap: 15px;
  }
  .pageStomatology-headerSection__wrapper-right {
    flex: 0 0 50%;
  }
  .pageStomatology-headerSection__image {
    height: 440px;
  }
  .pageStomatology-headerSection__tags {
    margin-bottom: 15px;
  }
  .pageStomatology-headerSection__title.block-title {
    margin-bottom: 15px;
  }
  .pageStomatology-headerSection__content {
    margin-bottom: 40px;
  }
  .pageStomatology-headerSection__content .block-text:not(:last-child) {
    margin-bottom: 10px;
  }
  .pageStomatology-headerSection__advantages-item:not(:last-child) {
    margin-bottom: 10px;
  }
  .pageStomatology-headerSection__action {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .pageStomatology-headerSection__wrapper {
    flex-wrap: wrap;
    gap: 40px;
  }
  .pageStomatology-headerSection__wrapper-left {
    flex: 0 0 100%;
  }
  .pageStomatology-headerSection__wrapper-right {
    flex: 0 0 100%;
  }
  .pageStomatology-headerSection__image {
    height: auto;
  }
  .pageStomatology-headerSection__image--horizontal {
    padding-top: 74%;
  }
  .pageStomatology-headerSection__image--vertical img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 767px) {
  .pageStomatology-headerSection {
    padding: 30px 0;
  }
  .pageStomatology-headerSection__wrapper {
    gap: 30px;
  }
  .pageStomatology-headerSection__content {
    margin-bottom: 30px;
  }
  .pageStomatology-headerSection__advantages-item {
    align-items: flex-start;
  }
  .pageStomatology-headerSection__advantages-item:before {
    width: 16px;
    height: 16px;
    margin-top: 4px;
  }
}
.pageStomatology-listSection__head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.pageStomatology-listSection__head-icon {
  flex: none;
  width: 80px;
  height: 80px;
  position: relative;
}
.pageStomatology-listSection__head-icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pageStomatology-listSection__head-title.block-title {
  margin-bottom: 10px;
}
.pageStomatology-listSection__list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  column-count: 3;
}
.pageStomatology-listSection__list ul li {
  margin-bottom: 20px;
  padding: 0;
}
.pageStomatology-listSection__list ul li:before {
  display: none;
}
.pageStomatology-listSection__list ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: #5f6877;
  text-decoration: none;
}
@media (max-width: 767px) {
  .pageStomatology-listSection__list ul li a {
    font-size: 14px;
    line-height: 22px;
  }
}
.pageStomatology-listSection__list ul li a:before {
  content: "";
  flex: none;
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #DA2C23;
}
.pageStomatology-listSection__list ul li a:hover {
  color: #0086c1;
}
.pageStomatology-listSection__list ul li a:hover:before {
  background: #0086c1;
}
@media (max-width: 1200px) {
  .pageStomatology-listSection__head {
    gap: 16px;
    margin-bottom: 30px;
  }
  .pageStomatology-listSection__list ul li {
    margin-bottom: 15px;
  }
}
@media (max-width: 991px) {
  .pageStomatology-listSection__list ul {
    column-count: 2;
  }
}
@media (max-width: 767px) {
  .pageStomatology-listSection__list ul {
    column-count: 1;
  }
  .pageStomatology-listSection__head-icon {
    width: 60px;
    height: 60px;
  }
  .pageStomatology-listSection__head-title.block-title {
    margin-bottom: 5px;
  }
}

/* Стили потом перенесены будут */
.block-title_readmore .btn-all-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background-color: #0086c1;
  color: #fff !important;
  border: none;
  padding: 12px 24px;
  padding-right: 48px !important;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s;
}
.block-title_readmore .btn-all-main:hover {
  background-color: #0fa1ef;
  color: #fff;
}
.block-title_readmore .btn-all-main::after {
  border-top: 2px solid #fff !important;
  border-right: 2px solid #fff !important;
  right: 22px;
}
.block-title_readmore .btn-all-main::before {
  background: #fff !important;
  right: 24px;
}

/*# sourceMappingURL=stomatology.css.map */
