:root {
  --color-light: #f6f6f6;
  --color-black: #493636;
  --color-medium: #c1b5b5;
  --color-white: #fff;
  --color-hover: rgba(73, 54, 54, 0.1);
  --color-hover2: rgba(74, 48, 44, 0.2);
  --color-grey: #959595;
  --color-transparent: rgba(255, 255, 255, 0.5);
  --color-svet: rgba(172, 97, 66, 0.5);
  --color-ten: rgba(73, 54, 54, 0.5);
}

@keyframes glow {
  0% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.6;
  }

  100% {
    opacity: 0.4;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}
* {
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

body {
  width: 100%;
  height: 100%;
  font-size: 16px;
}
html.no-scroll,
body.no-scroll {
  overflow: hidden;
  height: 100%;
  position: relative;
}
a {
  text-decoration: none;
  color: var(--color-black);
}

a:hover,
a:focus {
  text-decoration: none;
}

h1,
h2 {
  font-size: 64px;
  font-family: 'Finlandica', sans-serif;
  font-weight: 500;
  color: var(--color-black);
  text-transform: uppercase;
  margin: 0;
}
button,
a {
  transition: 0.3s all ease-in-out;
}

.container_zagolovok {
  background-color: var(--color-black);
}

.container_zagolovok .container {
  display: flex;
  justify-content: center;
}

.container_zagolovok h1 {
  color: var(--color-white);
  margin-bottom: 0;
  padding: 10px 0;
  line-height: 1;
}

header {
  background-color: var(--color-light);
  color: var(--color-black);
  height: 140px;
  width: 100%;
  font-family: 'Onest', sans-serif;
  -webkit-box-shadow: 0px -5px 5px -5px var(--color-ten) inset;
  -moz-box-shadow: 0px -5px 5px -5px var(--color-ten) inset;
  box-shadow: 0px -5px 5px -5px var(--color-ten) inset;
  position: relative;
}

.mobile_header {
  display: none;
  position: relative;
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  z-index: 1000;
}
.mobile_header.fixed {
  position: fixed;
}
.desktop_header {
  display: block;
  position: relative;
  transition: all 0.6s ease-in-out;
  height: 140px;
}
header.active-header-scroll {
  padding-top: 140px;
}
.active-header-scroll .desktop_header {
  height: 140px;
  position: fixed;
  top: -140px;
  background: var(--color-light);
  width: 100%;
  -webkit-box-shadow:
    0 7px 8px -4px rgba(0, 0, 0, 0.16),
    0 7px 8px -4px rgba(0, 0, 0, 0.23);
  box-shadow:
    0 7px 8px -4px rgba(0, 0, 0, 0.16),
    0 7px 8px -4px rgba(0, 0, 0, 0.23);
  transform: translateY(140px);
  z-index: 1000;
  display: flex;
  align-items: center;
}

ul.top-menu a:hover,
ul.top-menu a:active {
  background: var(--color-hover2);
  color: var(--color-white);
  opacity: 0.5;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.logo a {
  width: 100%;
  height: 100%;
  display: block;
}

.logo a img {
  width: auto;
  height: 100%;
}

.top-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin: 0.5em auto;
}

.content_phone {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: start;
}

.desktop_header .row {
  align-items: center;
}

.desktop_header .content_phone i {
  margin-top: 5px;
  margin-right: 5px;
}

.mobile_header .content_phone i {
  margin-top: 12px;
}

.active-header-scroll .desktop_header .content_phone i {
  margin-top: 0;
}

.content_phone .phone_wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: start;
}

.content_phone {
  font-size: 0.7em;
}

.active-header-scroll .desktop_header .content_phone {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  cursor: pointer;
  height: 40px;
}

.active-header-scroll .desktop_header .phone_wrap {
  position: relative;
  display: flex;
  flex-direction: column;
}

.active-header-scroll .desktop_header .tel {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-white);
  padding: 8px 12px;
  width: max-content;
}

.active-header-scroll .desktop_header .tel:first-child {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  background-color: transparent;
}

.active-header-scroll .desktop_header .content_phone:hover .phone_wrap {
  z-index: 100;
  background-color: var(--color-white);
}

.active-header-scroll .desktop_header .content_phone:hover .tel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
  width: 195px;
}

.active-header-scroll .desktop_header .content_phone:hover .tel:not(:first-child) {
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.active-header-scroll .desktop_header .content_phone:hover .tel:last-child {
  top: 200%;
}

.active-header-scroll .desktop_header .content_phone:hover .tel:first-child {
  position: relative;
}

.mobile_header .content_phone {
  display: flex;
  align-items: start;
  position: relative;
  cursor: pointer;
  height: 40px;
  color: var(--color-white);
}

.mobile_header .phone_wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.mobile_header .tel {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-black);
  padding: 8px 12px;
  width: max-content;
}

.mobile_header .tel:first-child {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  background-color: transparent;
}

.mobile_header .content_phone:hover .phone_wrap {
  z-index: 100;
  background-color: var(--color-black);
}

.mobile_header .content_phone:hover .tel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}

.mobile_headerr .content_phone:hover .tel:not(:first-child) {
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile_header .content_phone:hover .tel:first-child {
  position: relative;
}

.top_bottom {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.phone_wrap .phone_top {
  font-size: 24px;
}

.button_black a {
  background-color: var(--color-black);
  color: var(--color-white);
  width: 248px;
  height: 54px;
  font-size: 18px;
  position: relative;
  border-radius: 0;
  border: 1px solid var(--color-black);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Finlandica', sans-serif;
}

.button_black i {
  margin-right: 10px;
}

.button_black p {
  margin: 0;
}

.button_black a:hover {
  background: var(--color-hover2);
  color: var(--color-black);
  border: 1px solid var(--color-black);
}

#section_top {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  color: var(--color-white);
}

#section_top .container,
#section_top .row {
  height: 100%;
}

.header_img_back {
  background: url(/include/images/main-background.webp);
  height: 100%;
  position: absolute;
  background-size: cover;
  z-index: -100;
}

.header_about_back {
  background-color: var(--color-black);
  height: 100%;
  position: absolute;
  background-size: cover;
  z-index: -100;
}

.header_about_back::before {
  content: '';
  position: absolute;
  top: 60%;
  left: 30%;
  width: 70%;
  height: 80%;
  background: var(--color-svet);
  border-radius: 50%;
  filter: blur(100px);
  transform: translate(-50%, -50%);
  animation: glow 3.5s infinite;
}

.header_img {
  position: relative;
}

.header_img img {
  position: absolute;
  bottom: 0;
  right: -100px;
  width: 550px;
  height: auto;
}

.header_about .top_title {
  margin-top: 50px;
  font-size: 64px;
  font-family: 'Finlandica', sans-serif;
  font-weight: 500;
  line-height: 100%;
}

.header_about .top_title span {
  text-transform: uppercase;
}

.header_about .top_title2 {
  font-size: 32px;
  font-family: 'Finlandica', sans-serif;
  font-weight: 400;
  margin-top: 20px;
  line-height: 100%;
}

.header_about .top_about ul {
  list-style: none;
}
.header_about .top_about ul li {
  position: relative;
}
.header_about .top_about ul li::before {
  position: absolute;
  content: '';
  top: 5px;
  left: -25px;
  width: 17px;
  height: 15px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='15' viewBox='0 0 17 15'%3E%3Cpath d='M16.7071 8.07107C17.0976 7.68055 17.0976 7.04739 16.7071 6.65686L10.3431 0.2929C9.95262 -0.0976243 9.31946 -0.0976243 8.92893 0.2929C8.53841 0.683424 8.53841 1.31659 8.92893 1.70711L14.5858 7.36397L8.92893 13.0208C8.53841 13.4113 8.53841 14.0445 8.92893 14.435C9.31946 14.8256 9.95262 14.8256 10.3431 14.435L16.7071 8.07107ZM0 7.36397V8.36397H16V7.36397V6.36397H0V7.36397Z' fill='white'/%3E%3C/svg%3E")
    no-repeat center;
}

.header_about .top_about {
  margin-left: 80px;
  font-family: 'Onest', sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin-top: 25px;
}
.header_about .banner_social span {
  line-height: 1;
}
.header_about .banner_social .social_wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.header_about .banner_social .row_social {
  display: flex;
  gap: 25px;
}
.header_about .banner_social .row_social img {
  transition: filter 0.3s ease;
  filter: grayscale(1) brightness(135%) sepia(10%) saturate(150%);
}

.header_about .banner_social .row_social img:hover {
  filter: none;
}
.header_about .banner_social {
  margin-top: 50px;
}
#pd_widget_column {
  width: 200px;
  height: 90px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.pd-placeholder {
  background: #eee;
  background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
  border-radius: 4px;
  background-size: 200% 100%;
  animation: shine 1.5s linear infinite;
}
#pd_widget_column:not([data-is-initialization='true']) {
  filter: grayscale(1); /* Скелет будет серым */
}
@keyframes shine {
  to {
    background-position-x: -200%;
  }
}
.pd-skeleton-wrapper {
  padding-bottom: 12px;
  padding-right: 54px;
}
.pd-skeleton-logo {
  width: 100px;
  height: 20px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.pd-skeleton-stars {
  width: 108px;
  height: 16px;
  margin-bottom: 10px;
}

.pd-skeleton-text {
  width: 50px;
  height: 13px;
}

#pd_widget_column[data-is-initialization='true'] .pd-skeleton-wrapper {
  display: none;
}

.banner_social {
  display: flex;
  gap: 25px;
}
.banner_form {
  padding: 25px 0;
}

.banner_form input.phoneform {
  border: 1px solid #fff;
  height: 60px;
  font-size: 20px;
  text-align: left;
  color: #fff;
  width: 50%;
  background-color: transparent;
}

.banner_form input.phoneform:focus, .banner_form input.phoneform:active {
  outline: none;
  box-shadow: 0 0 5px 10px #ffffff07;
}
.banner_form  button.button-fb {
margin: 0;
width: 50%;
  height: 60px;
    font-size: 20px;
}

.banner_form #form_sect {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  padding: 0;
  margin-top: 15px;
}
.banner_form label.soglasie {
padding: 15px 0;
font-size: 16px;
}
.banner_form label.soglasie a {
color: #fff;
}
a.button_light {
  background-color: transparent;
  color: var(--color-white);
  width: 248px;
  height: 54px;
  font-size: 18px;
  position: relative;
  border-radius: 0%;
  border: 1px solid var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
}

#section_top a.button_light {
  margin-top: 25px;
}

a.button_light i {
  margin-left: 10px;
}

a.button_light:hover {
  background: #fff;
  color: var(--color-black);
  border: 1px solid var(--color-black);
}

#main_catalog {
  background-color: var(--color-light);
  position: relative;
  padding: 50px 0;
}


.owl-carousel .owl-stage {
  display: flex;
  align-items: center;
  justify-content: center;
}


#main_catalog,
#doiposle {
  background-color: var(--color-light);
  position: relative;
  padding-bottom: 50px;
}

#doiposle li.nav-item {
  padding: 5px;
  position: relative;
}

#doiposle .nav-tabs {
  margin-top: 50px;
}

#doiposle li.nav-item button {
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  border: none;
  display: block;
  color: var(--color-black);
  border-radius: 0%;
  background-color: var(--color-transparent);
    position: relative;
}
#doiposle button:after {
  content: '';
  position: absolute;
  bottom: -8px;
  height: 4px;
  width: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-black);
  transition: .3s cubic-bezier(0.165, 0.84, 0.44, 1) all;
}
#doiposle button.active:after {
  width: 100%;
}
#doiposle li.nav-item:first-child {
  padding-left: 0;
}

#doiposle li.nav-item button:hover {
  background-color: var(--color-hover);
}

#doiposle .slider .item {
  margin: 10px auto;
}

#doiposle .slider .img-gallery {
  width: 100%;
  height: 100%;
}
.tab-content {
  margin-top: 25px;
}
.index-map .container_contacts {
  margin-top: 100px;
}
#container_form_sect {
  background-color: var(--color-black);
  position: relative;
  display: flex;
  align-items: baseline;
  overflow: hidden;
  padding: 50px 0;
}

#container_form_sect .container {
  z-index: 10;
  align-self: center;
}

#container_form_sect h2 {
  font-size: 36px;
  color: var(--color-white);
}

#container_form_sect img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  opacity: 0.4;
  width: 50%;
  height: 200%;
}

#form_sect {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

#container_form_sect input.phoneform {
  border: none;
  height: 80px;
  font-size: 28px;
  text-align: center;
  color: var(--color-grey);
  width: 370px;
}

.container_form_sect_text {
  margin-top: 50px;
}

.button-fb {
  background-color: var(--color-light);
  color: var(--color-black);
  font-size: 18px;
  border-radius: 0%;
  border: 1px solid var(--color-light);
  height: 80px;
  margin-left: 30px;
  font-size: 28px;
  width: 290px;
}

.button-fb:hover {
  background-color: var(--color-medium);
}

.container_form_sect_text .soglasie {
  color: var(--color-white);
  font-size: 18px;
  margin-left: 5px;
  width: fit-content;
  max-width: 620px;
  display: flex;
  flex-direction: row;
}

.container_form_sect_text .soglasie input {
  margin: 5px 5px 5px 0px;
  height: 20px;
  width: 20px;
}

.container_form_sect_text .soglasie a {
  color: var(--color-white);
  font-size: 18px;
  border-bottom: 1px solid;
  transition: all 0.5s ease-in-out;
}

.container_form_sect_text .soglasie a:hover {
  border-bottom: 1px dotted;
}


#price {
  background-color: var(--color-black);
  position: relative;
  height: 590px;
  display: flex;
}
#catalog_page .opisanie-uslugi {
  padding: 50px 0;
  background-color: var(--color-white);
  position: relative;
}
#catalog_page .opisanie-uslugi .row {
  margin-top: 30px;
  font-family: 'Onest', sans-serif;
  font-size: 20px;
  font-weight: 400;
}
#catalog_page #price {
  height: auto;
  padding-bottom: 50px;
}

#price .container {
  z-index: 10;
}

.price_container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

#price::before {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  width: 100%;
  height: 80%;
  background: var(--color-svet);
  border-radius: 50%;
  filter: blur(100px);
  transform: translate(-50%, -50%);
  opacity: 0.5;
  animation: glow 3.5s infinite;
}

#price h2 {
  color: var(--color-white);
  margin: 50px 0;
  z-index: 10;
}

#price h2 a {
  color: var(--color-white);
}

#price .label {
  color: var(--color-white);
  font-size: 16px;
  line-height: 25px;
  margin-top: 70px;
  position: relative;
}

#price_index {
  background-color: var(--color-white);
  padding-bottom: 15px;
}

.price_page #price_index {
  background-color: transparent;
  padding-bottom: 0;
}

.price_page #price {
  height: auto;
  padding-bottom: 30px;
}

#price_index .container {
  padding: 0;
}

#price .item_first {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  font-size: 36px;
  font-family: 'Finlandica', sans-serif;
  font-weight: 400;
  background-color: var(--color-medium);
  width: 100%;
  height: 70px;
  color: var(--color-white);
}

#price .item_first div:first-child {
  padding-left: 40px;
  width: 80%;
}

#price .item_first div:last-child {
  width: 20%;
  text-align: right;
  margin: 0 10px;
  padding-right: 10px;
}

#price .item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-family: 'Onest', sans-serif;
  font-weight: 400;
  background-color: var(--color-white);
  width: 100%;
  height: 70px;
  color: var(--color-black);
}

#price .prices_visible .item:nth-child(2n) {
  background-color: var(--color-light);
}

#price .prices_invisible .item:nth-child(2n + 1) {
  background-color: var(--color-light);
}

.price_page #price_index .item:nth-child(2n) {
  background-color: var(--color-light);
}

#price .item span:first-child {
  padding-left: 40px;
  width: 80%;
}

#catalog_page #price_index {
  padding: 0;
}

#catalog_page #price .price_list .item:nth-child(2n) {
  background-color: var(--color-light);
}

#price .item span:last-child {
  width: 20%;
  text-align: right;
  margin: 0 10px;
  padding-right: 10px;
}

.prices_toggle {
  background-color: var(--color-black);
  color: var(--color-white);
  width: 210px;
  height: 55px;
  font-size: 18px;
  position: relative;
  border-radius: 0%;
  border: 1px solid var(--color-black);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  z-index: 10;
  cursor: pointer;
  margin: auto;
  margin-top: 15px;
}

.prices_toggle:hover {
  background: var(--color-hover2);
  color: var(--color-black);
  border: 1px solid var(--color-black);
}

.prices_invisible {
  transition: all 0.1s ease-in-out;
  overflow: hidden;
}

.prices_visible {
  background-color: var(--color-white);
}

.flag {
  display: none;
  position: absolute;
  width: 25px;
  height: 54px;
  top: -70px;
  background: var(--color-medium);
  clip-path: polygon(
    0% 0%,
    /* верхний-левый угол */ 100% 0%,
    /* верхний-правый угол */ 100% 100%,
    /* правый край выемки */ 50% 80%,
    /* центр выреза */ 0% 100% /* левый край выемки */
  );
  opacity: 0.5;
}

.price_page #price .label {
  color: var(--color-white);
  background-color: transparent;
  font-size: 16px;
  line-height: 25px;
  margin-top: 0;
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 80%;
  margin: 0 10%;
  align-items: center;
}

.price_page #price .label .flag {
  position: relative;
  top: 0;
}

.price_page #price .label p {
  margin-left: 15px;
}

#map {
  background-color: var(--color-light);
  padding-top: 50px;
}

#map h2 {
  color: var(--color-black);
  font-size: 48px;
  text-align: center;
}
.container_contacts .row {
  margin-top: 50px;
}
#map .contact_wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  font-size: 24px;
  color: var(--color-black);
  justify-content: start;
}
#map-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
}
#map .container_contacts .row .contact_wrap:nth-child(2n),
#map .container_contacts .row .contact_wrap:last-child {
  display: flex;
  align-items: center;
}

#map .contact_wrap i {
  width: 24px;
  margin-right: 5px;
  text-align: center;
  margin-top: 8px;
}

#map .contact_wrap .content_wrap {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
#map .contact_wrap a {
  margin-left: 6px;
}

#map .contact_wrap .social_wrap {
  text-align: center;
  flex-direction: column;
}
#map .contact_wrap .email_wrap i {
  margin-top: 9px;
}
#map .content_phone {
  justify-content: start;
}

#map .content_phone {
  font-size: 24px;
}

#map .row_social {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

#map .button_black {
  padding: 0;
  width: 370px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#map .row_social a {
  padding: 0 5px;
  display: block;
}

#map .desktop {
  margin-top: 50px;
}

#map .mobile {
  display: none;
}

footer {
  background-color: var(--color-black);
  color: var(--color-white);
  min-height: 330px;
  padding: 35px 0;
}
footer .policy a.privacy {
  line-height: 1.2;
}
footer .info {
  text-align: center;
  margin-top: 25px;
}

footer .copyright {
  font-size: 20px;
  line-height: 30px;
}

footer .policy,
footer .copyright {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

footer .privacy {
  color: var(--color-white);
  font-size: 16px;
  line-height: 30px;
  text-decoration: underline;
}

.rp a,
.rp p {
  color: var(--color-white);
  font-weight: 400;
  font-size: 18px;
}

footer .news-menu a {
  color: var(--color-white);
  font-size: 22px;
  line-height: 50px;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
}

footer .news-menu ul {
  list-style: none;
  padding: 0;
}

footer .news-menu a.selected,
footer .menu-item-selected,
footer .news-menu a:hover {
  opacity: 0.5;
}

#about #section_top .top_title {
  margin-top: 80px;
}

#about_page .header_img_back,
#about_page .header_about_back {
  display: none;
}

#about_page .breadcrumb .bx-breadcrumb-item-link {
  border-bottom: none;
  color: var(--color-black);
}

#about_page .top_title,
#about_page .header_about .top_title2,
#about_page .header_about .top_about {
  color: var(--color-black);
}

#about_page .header_img img {
  position: absolute;
  bottom: 0;
  right: -100px;
  width: 100%;
  height: auto;
}

#about_page #section_top {
  height: auto;
}

#catalog_page {
  background-color: var(--color-light);
}

#catalog_page .news_page .item h3 {
  font-size: 2em;
  padding-top: 40%;
}

.news_page {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 50px 0;
}

.news_page .item {
  position: relative;
  background-color: var(--color-black) !important;
  margin: 10px 10px;
  aspect-ratio: 1/1;
  width: calc(33% - 20px);
}

.news_page .item img {
  opacity: 0.5;
  width: 100%;
  height: 100%;
  transition: all 0.8s ease-in-out;
}

.news_page .item:hover img {
  opacity: 0.35;
}

.news_page .item h3 {
  position: absolute;
  border: 1px solid var(--color-white);
  text-transform: uppercase;
  font-size: 1.5em;
  font-family: 'Finlandica', sans-serif;
  font-weight: 400;
  margin: 22px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  color: var(--color-white);
  text-align: center;
  padding-top: 140px;
  transition: all 0.5s ease-in-out;
}

.news_page .item:hover h3 {
  transform: scale(0.95);
}

#catalog_page .pagetitle {
  margin-top: 50px;
}

#introduction {
  position: relative;
  width: 100%;
  height: 630px;
  overflow: hidden;
  color: var(--color-white);
  background: url(/include/images/main-background.webp);
  background-size: 100% 100%;
  background: cover;
}

#introduction .row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

#introduction .header_about_back {
  background-color: var(--color-black);
  height: 600px;
  z-index: 0;
}

#introduction .header_about {
  margin-top: 50px;
  z-index: 10;
}

#introduction .header_img {
  margin-top: 50px;
  position: relative;
}

#introduction .header_img .img_wrap {
  position: absolute;
  width: 480px;
  height: 480px;
  top: 0;
  right: 0px;
  background: var(--color-black);
}

#introduction .header_img img {
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  right: 0;
}

#introduction .header_img .img_border {
  position: absolute;
  top: 0;
  right: 0px;
  width: 450px;
  height: 450px;
  margin: 15px;
  border: 1px solid var(--color-white);
}

#introduction .header_about .top_title,
#introduction .header_about .top_about {
  margin-top: 0;
  margin-left: 160px;
  width: fit-content;
  max-width: 600px;
}

#introduction .header_about .top_title h1 {
  color: var(--color-white);
}

#catalog_page .images_slider {
  background-color: var(--color-light);
  position: relative;
}
#catalog_page .introduction_header {
  margin-top: 50px;
}
.images_slider .introduction_header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

#catalog_page .owl-carousel {
  margin-top: 50px;
}

#catalog_page .owl-carousel .owl-nav {
  position: absolute;
  right: 0;
  text-align: end;
  top: -115px;
}

#catalog_page .owl-item {
  cursor: pointer;
}

#catalog_page .custom-prev,
#catalog_page .custom-next {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  color: var(--color-black);
  border: 1px solid var(--color-black);
  margin: 0 5px;
  font-size: 18px;
  cursor: pointer;
}

#catalog_page .custom-prev:hover,
#catalog_page .custom-next:hover {
  opacity: 0.5;
}

.operation_info h2 {
  margin-top: 50px;
}

.operation_info .container_operation {
  margin: 50px auto;
}
.operation_info .oper_block {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.operation_info .oper_item {
  background-color: var(--color-white);
  color: var(--color-black);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  -webkit-box-shadow: 2px 4px 10px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 2px 4px 10px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 4px 10px 1px rgba(0, 0, 0, 0.25);
  margin: 0 10px;
  width: calc(33.33333333% - 20px);
  position: relative;
  display: block;
}

.operation_info .oper_item_header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin: 0 50px;
  border-bottom: 2px solid var(--color-black);
  position: relative;
  height: 155px;
}

.operation_info .oper_item_header img {
  width: 54px;
  height: 54px;
  top: 57px;
  position: absolute;
}

.operation_info .oper_item_header h3 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  font-family: 'Finlandica', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  margin-left: 75px;
  margin-top: 30px;
  align-items: center;
}

.operation_info .opisanie_procedury {
  margin: 40px 50px;
  font-family: 'Finlandica', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
}

.operation_info .opisanie_procedury ul {
  padding: 0;
}

.operation_info2 {
  padding: 50px 0;
  background-color: var(--color-white);
  min-height: 580px;
}

.operation_info2 .row,
.reabilitation_info .row {
  margin-top: 50px;
  flex-wrap: nowrap;
}

.operation_info2 img,
.reabilitation_info img {
  width: 370px;
  height: 370px;
}

.operation_info2 .oper_block2,
.reabilitation_info .reabilitation_block {
  padding-left: 45px;
    font-family: 'Onest', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-black);
}



.reabilitation_info {
  padding: 50px 0;
  min-height: 580px;
}

.doiposle_page #doiposle .nav-tabs {
  margin-top: 0;
  padding-top: 45px;
}


.recaptcha-block {
  display: none;
}

#popupModal .modal-content {
  min-height: 200px;
  box-shadow: 0px 4px 4px 0px #00000040;
  border: none;
  border-radius: 0%;
}

#popupModal .modal-header {
  background-color: var(--color-light);
  font-size: 24px;
  border: none;
  border-radius: 0%;
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 0;
}

#popupModal .modal-body {
  background-color: var(--color-light);
  border: none;
  border-radius: 0%;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

#popupModal .modal-body #popup_form {
  padding-bottom: 40px;
}

#popupModal .modal-header button {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--color-black);
  font-size: 20px;
  z-index: 20;
}

#popupModal .modal-header h5 {
  color: var(--color-black);
  font-family: 'Finlandica', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 100%;
  padding: 40px 0;
}

#popupModal .button_black {
  background-color: var(--color-black);
  color: var(--color-white);
  width: 70%;
  height: 54px;
  font-size: 18px;
  position: relative;
  border-radius: 0%;
  border: 1px solid var(--color-black);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 15% 10px;
}

#popupModal .form-control::placeholder {
  color: var(--color-white);
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  font-family: 'Finlandica', sans-serif;
}

#popupModal .form-control {
  text-align: center;
  background-color: rgba(193, 181, 181, 0.4);
  color: var(--color-white);
  border: none;
  font-family: 'Finlandica', sans-serif;
  font-weight: 400;
  font-size: 24px;
  border-radius: 0%;
  margin: 0 15%;
  width: 70%;
  margin-bottom: 30px;
}

#popupModal .soglasie {
  width: 70%;
  margin: 0 15%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: start;
}

.soglasie input[type='checkbox'] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.soglasie span {
  position: relative;
  padding-left: 30px;
  display: inline-block;
}

/* Кастомная коробка чекбокса */
.soglasie span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border: 1px solid #999;
  background-color: #fff;
  border-radius: 4px;
  transition:
    background-color 0.2s,
    border-color 0.2s;
}

/* Галочка */
.soglasie span::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 9px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s;
}

/* Когда чекбокс выбран — заливка + галочка */
.soglasie input[type='checkbox']:checked + span::before {
  background-color: var(--color-black);
  border-color: var(--color-black);
}

.soglasie input[type='checkbox']:checked + span::after {
  opacity: 1;
}

#popupModal a {
  border-bottom: 1px solid;
  transition: all 0.5s ease-in-out;
}

#popupModal a:hover {
  border-bottom: 1px dotted;
}

#popupModal .logo {
  margin-bottom: 30px;
}

#popupModal .logo a {
  border-bottom: none;
  border-top: 1px solid var(--color-black);
  width: 90%;
  margin: 0 5%;
  padding-top: 35px;
}

#popupModal .logo a img {
  width: 60%;
  margin: 0 20%;
}

.personal {
  position: relative;
  z-index: 15;
  top: 20px;
  left: 10%;
  right: 10%;
  width: 80%;
  color: var(--color-light);
}

div#popupModal .personal {
  font-family: 'Finlandica', sans-serif;
}

.hamburger-menu {
  cursor: pointer;
  padding: 15px;
  display: none;
}

.hamburger-icon {
  position: relative;
  width: 30px;
  height: 28px;
  cursor: pointer;
  z-index: 1001;
  display: none;
}

.hamburger-line {
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--color-black);
  left: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.top {
  top: 0;
}

.middle {
  top: 50%;
  transform: translateY(-50%);
}

.bottom {
  bottom: 0;
}

/* Анимация крестика */
.hamburger-icon.active .top {
  transform: translateY(12.5px) /* 14px (центр) - 1.5px (половина линии) */ rotate(45deg);
}

.hamburger-icon.active .middle {
  opacity: 0;
}

.hamburger-icon.active .bottom {
  transform: translateY(-12.5px) /* -(14px - 1.5px) */ rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

.desktop-view {
  display: block;
}

.mobile-view {
  display: none;
}

.container_policy {
  padding-top: 40px;
}

/*сообщение про куки*/
.cc_banner-wrapper {
  z-index: 9001;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cc_banner-wrapper.active {
  transform: translateY(0);
  opacity: 1;
}

.cc_container {
  background: var(--color-light);
  box-shadow:
    0 7px 8px 4px rgba(0, 0, 0, 0.16),
    0 7px 8px 4px rgba(0, 0, 0, 0.23);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  margin: 0 auto;
}

.cc_btn_accept_all {
  background: var(--color-black);
  color: var(--color-light) !important;
  padding: 10px 60px !important;
  font-weight: 600 !important;
  transition: all 0.2s ease-in-out;
}

.cc_btn_accept_all:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cc_message {
  color: var(--color-black);
  font-size: 18px;
  line-height: 1.4;
  margin-right: 30px;
}

.cc_message a {
  color: var(--color-black);
  text-decoration: underline;
}

.body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.body-overlay.active {
  opacity: 1;
  visibility: visible;
}

.adress_wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: start;
}

.adress_wrap i {
  margin-top: 7px;
}

.return {
  display: none;
}
.social_wrap a img {
  width: 50px;
  height: 50px;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.bx-pagination .bx-pagination-container ul li {
  margin: 0 !important;
}
.bx-pagination .bx-pagination-container ul li a, .bx-pagination .bx-pagination-container ul li span {
  border-radius: 4px !important;
}
.bx-pagination .bx-pagination-container ul li.bx-active span {
  background-color: var(--color-black) !important;
}
.modal-content {
  border-radius: 4px;
  border: none;
}
/*для Файрфокс, чтоб не ехала верстка когда залогинен*/
div[id^='bx_incl_area_'] {
  display: contents !important;
}
