/* Views/www_webpack/_components/breadcrumbs/breadcrumbs.css */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 0.6em 20px;
  border-bottom: 1.5px solid lightgray;
}
.breadcrumbs__back {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}
.breadcrumbs__back::before {
  display: block;
  width: clamp(10px, 20vw, 20px);
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 106 62'%3E%3Cpath d='M.88,21.1l16,16a2.9,2.9,0,0,0,4.2,0,2.9,2.9,0,0,0,0-4.2L10.18,22H83a17,17,0,0,1,0,34,3,3,0,0,0,0,6,23,23,0,0,0,0-46H10.18L21.08,5.1a2.9,2.9,0,0,0,0-4.2,2.9,2.9,0,0,0-4.2,0l-16,16A2.9,2.9,0,0,0,.88,21.1Z' transform='translate(0.02)' fill='%23444b54'/%3E%3Cpath d='M53,56a3,3,0,1,0,0,6H63a3,3,0,1,0,0-6Z' transform='translate(0.02)' fill='%23444b54'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  content: "";
}
.breadcrumbs__back:hover::before {
  transform: scale(1.1);
}
.breadcrumbs__back span {
  margin-left: 10px;
}
.breadcrumbs__item {
  display: flex;
  font-size: clamp(0.9em, 1.6vw, 1em);
  white-space: nowrap;
  cursor: pointer;
}
.breadcrumbs__item a {
  font-size: clamp(0.9rem, 1.6vw, 1rem);
}
.breadcrumbs__item span {
  margin-left: 10px;
}
.breadcrumbs__item.active {
  cursor: default;
  opacity: 0.7;
}
.breadcrumbs__link:hover {
  text-decoration: underline;
  cursor: pointer;
}

/* Views/www_webpack/_blocks/elements/element_6/element_6.css */
.element_6 {
  display: grid;
  grid-template: 1fr auto / 1fr auto;
  grid-template-areas: ". ." "bottom bottom";
  padding-top: 20px;
}
.element_6__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
}
.element_6__content h2 {
  position: relative;
}
.element_6__content h2::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 5px;
  background: var(--color-green-alpha);
  content: "";
}
.element_6__content h2 span {
  font-weight: normal;
  text-transform: uppercase;
}
.element_6__img_container {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  min-width: 500px;
  height: 100%;
}
.element_6__img {
  position: absolute;
  bottom: 0;
  width: auto;
  height: calc(100% + 100px);
}
.element_6__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.element_6__list_item {
  display: grid;
  flex: 1;
  grid-template: auto 1fr / auto 1fr;
  grid-template-areas: "img ." "img .";
  min-width: 300px;
  column-gap: 15px;
  row-gap: 5px;
}
.element_6__list_item .icon {
  grid-area: img;
  width: 40px;
  height: 40px;
}
.element_6__list_item p,
.element_6__list_item li,
.element_6__list_item div {
  font-size: 0.9em;
}
.element_6__list_item ul {
  display: flex;
  flex-direction: column;
}
.element_6__bottom {
  display: flex;
  flex-wrap: wrap;
  grid-area: bottom;
  gap: 20px;
  padding: 40px;
  background: var(--color-salad);
  border-radius: 10px;
}
.element_6__bottom_item {
  display: grid;
  flex: 1;
  grid-template: auto 1fr / auto 1fr;
  grid-template-areas: "img ." "img .";
  align-items: start;
  min-width: 300px;
  column-gap: 15px;
  row-gap: 10px;
}
.element_6__bottom_item .icon {
  grid-area: img;
  width: 60px;
  height: 60px;
}
.element_6__bottom_item p {
  font-size: 0.8em;
}
@media screen and (max-width: 910px) {
  .element_6 {
    display: flex;
    flex-direction: column;
  }
  .element_6__img {
    min-width: 300px;
  }
  .element_6__img img {
    position: static;
    max-width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .element_6__bottom {
    padding: 20px;
  }
  .element_6__bottom_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 250px;
  }
}

/* Views/www_webpack/_blocks/elements/element_7/element_7.css */
.element_7 {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
  max-width: 1250px;
}
.element_7__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 20px;
  min-width: 310px;
}
.element_7__content h2 {
  position: relative;
}
.element_7__content h2::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 5px;
  background: var(--color-green-alpha);
  content: "";
}
.element_7__content h2 span {
  font-weight: normal;
  text-transform: uppercase;
}
.element_7__content ul {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.element_7__img {
  flex: 1;
  width: 100%;
  min-width: 310px;
  height: 350px;
  object-fit: contain;
  border-radius: 40px;
}

/* Views/www_webpack/pages/zamer/zamer.css */
#zamer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px clamp(20px, 5vw, 10vw);
}
.zamer_blank {
  display: flex;
  align-items: center;
  height: clamp(35px, 8vw, 45px);
  margin-right: auto;
  padding: 0 2em;
  color: var(--color-white);
  background-image: linear-gradient(109.6deg, #e64e41, #b93335 41%, #e64e41 120%);
  background-size: 200%;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.zamer_blank:hover {
  background-position: 100%;
}
@media screen and (max-width: 910px) {
  .element_6__img {
    display: none;
  }
}
