/* Views/www_webpack/pages/uhod_za_mebelyu/uhod_za_mebelyu.css */
#furnitureOperation {
  padding: 20px clamp(20px, 5vw, 10vw);
  font-size: 1em;
}
#furnitureOperation h1 {
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}
#furnitureOperation h3 {
  font-weight: normal;
  text-transform: uppercase;
}
.furniture_operation__container {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 50px;
  margin-top: 20px;
}
.furniture_operation__content {
  display: grid;
  gap: 20px;
}
.furniture_operation__content ol {
  display: inline-grid;
  gap: 10px;
}
.furniture_operation__content ol > li {
  font-size: 1em;
}
.furniture_operation__content ol > li::before {
  margin-right: 0.5em;
  color: var(--color-green);
  font-size: 1em;
  content: "➥";
}
.furniture_operation__content ol p {
  margin-top: 10px;
}
.furniture_operation__content ul {
  display: grid;
  padding-left: 50px;
}
.furniture_operation__content ul > li {
  font-size: 1em;
}
.furniture_operation__content ul > li::before {
  margin-right: 0.5em;
  color: var(--color-green);
  font-size: 1em;
  content: "●";
}
.furniture_operation__dual {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
}
.furniture_operation__img {
  flex: 1;
  float: left;
  width: 100%;
  min-width: 830px;
  height: auto;
  max-height: 550px;
  object-fit: cover;
  aspect-ratio: 841 / 460;
}
.furniture_operation__description {
  flex: 1;
  min-width: 570px;
}
.furniture_operation__menu {
  position: relative;
  display: grid;
  min-width: 350px;
  background: var(--color-grey);
  border-radius: 8px;
  box-shadow: rgb(0 0 0 / 15%) 0 2px 8px;
}
.furniture_operation__menu li:first-child {
  border-radius: 6px 6px 0 0;
}
.furniture_operation__menu li:last-child {
  border-radius: 0 0 6px 6px;
}
.furniture_operation__menu::after {
  position: absolute;
  top: -2px;
  left: -2px;
  z-index: -1;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background-image: linear-gradient(to right, rgb(14 174 87 / 60%) 0%, rgb(12 116 117 / 70%) 41%, rgb(14 174 87 / 60%) 120%);
  background-size: 200% auto;
  border-radius: 10px;
  content: "";
}
.furniture_operation_item {
  display: flex;
  align-items: center;
  height: 60px;
  cursor: pointer;
}
.furniture_operation_item.active,
.furniture_operation_item:hover {
  color: var(--color-white);
  background-image: linear-gradient(to right, rgb(14 174 87 / 60%) 0%, rgb(12 116 117 / 70%) 41%, rgb(14 174 87 / 60%) 120%);
  background-size: 200% auto;
}
.furniture_operation_item .icon {
  width: 100%;
  max-width: 45px;
  height: 45px;
  margin: 0 10px;
}
@media screen and (max-width: 1050px) {
  .furniture_operation__container {
    display: flex;
    flex-direction: column;
  }
  #menuBody {
    flex-direction: column;
  }
}
