*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0 auto;
  width: min(100%, 120rem);
  color: var(--color-text);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.achtung {
  color: var(--color-text-counter);
}

.fade-in {
  opacity: 0;
  transform: scale(0.95);
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.cta {
  background: #E52929;
  box-shadow: 0 0 27px 0 #F00;
  border-radius: 47px;
  border: 1px solid #700;
  text-align: center;
  color: var(--color-text-light);
  padding-block: 16px;
  padding-inline: 32px;
  min-width: 170px;
  text-transform: uppercase;
  text-decoration: underline;
  font-weight: 700;
}

.good {
  color: #00CE30 !important;
}

:root {
  --color-text: #000;
  --color-text-light: #fff;
  --color-text-price: #00A465;
  --color-accent: #000;
  --color-accent2: #8D8D8D;
  --color-accent3: #A3A3A3;
  --color-bg-header: #000;
  --color-bg-counter: #ececec;
  --color-bg-info: rgba(255, 255, 255, 0.80);
  --color-bg-btn: #142CFF;
  --color-text-counter: #FF2F2F;
  --color-bg-testi: #EAF7FF;
  --color-bullet: hsl(206, 59%, 64%, 0.8);
  --color-faq-border: #d9d9d9;
  --color-achtung: #E52929;
}

/* lato-regular - latin_latin-ext */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/lato-v24-latin_latin-ext-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-700 - latin_latin-ext */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/lato-v24-latin_latin-ext-700.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-900 - latin_latin-ext */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Lato";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/lato-v24-latin_latin-ext-900.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
body {
  font-family: Lato, sans-serif;
  font-size: 1rem;
  font-size: clamp(1rem, 0.9431818182rem + 0.2424242424vw, 1.125rem);
}

h1 {
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 1.2727272727rem + 0.9696969697vw, 2rem);
}

h2 {
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 1.2727272727rem + 0.9696969697vw, 2rem);
}

h3 {
  font-size: 1rem;
  font-size: clamp(1rem, 0.7727272727rem + 0.9696969697vw, 1.5rem);
}

h4,
p {
  font-size: 1rem;
}

header,
section {
  width: 100%;
  display: grid;
  justify-items: center;
}

.wrapper {
  display: grid;
  justify-items: center;
  width: min(100%, 73.125rem);
  padding-inline: 14px;
}
@media (width >= 75em) {
  .wrapper {
    padding-inline: 0;
  }
}

.floating-bar {
  z-index: 9999;
  position: fixed;
  top: 0;
  background-color: var(--color-accent);
  color: var(--color-text-light);
  display: grid;
  place-items: center;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media (width >= 43.75em) {
  .floating-bar {
    top: auto;
    bottom: 0;
  }
}
.floating-bar.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.floating-bar__wrapper {
  display: grid;
  place-items: center;
  padding-block: 8px;
  padding-inline: 16px;
  align-items: center;
  width: min(100%, 81.25rem);
  padding-inline: 14px;
}
@media (width >= 43.75em) {
  .floating-bar__wrapper {
    padding-block: 16px;
    gap: 10px;
    display: flex;
    justify-content: space-between;
  }
}
@media (width >= 75em) {
  .floating-bar__wrapper {
    padding-inline: 0;
  }
}
.floating-bar__title {
  display: none;
}
@media (width >= 43.75em) {
  .floating-bar__title {
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 700;
  }
}
.floating-bar__discount {
  position: relative;
}
.floating-bar__percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.floating-bar__counting.counting {
  padding-block: 8px;
}
.floating-bar__cta {
  width: 100%;
}
@media (width >= 43.75em) {
  .floating-bar__cta {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.header {
  background-color: var(--color-bg-header);
  color: var(--color-text-light);
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  padding-block: 8px;
  padding-inline: 16px;
  align-items: center;
  width: min(100%, 81.25rem);
  padding-inline: 14px;
}
@media (width >= 43.75em) {
  .header__wrapper {
    padding-block: 16px;
    gap: 10px;
  }
}
@media (width >= 75em) {
  .header__wrapper {
    padding-inline: 0;
  }
}
.header__shipping {
  display: flex;
  justify-content: start;
  gap: 24px;
}
.header__element {
  display: flex;
  gap: 6px;
  align-items: center;
}
@media (width >= 43.75em) {
  .header__element {
    gap: 16px;
  }
}
.header__element > img {
  width: 16px;
  height: 16px;
}
@media (width >= 43.75em) {
  .header__element > img {
    width: 32px;
    height: 32px;
  }
}
.header__element > h3 {
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6363636364rem + 0.4848484848vw, 1rem);
  text-transform: lowercase;
}
@media (width >= 43.75em) {
  .header__element > h3::first-letter {
    text-transform: uppercase;
  }
}
.header__element--hide {
  display: none;
}
@media (width >= 43.75em) {
  .header__element--hide {
    display: flex;
  }
}
.header__counting.counting {
  display: none;
}
@media (width >= 75em) {
  .header__counting.counting {
    display: flex;
  }
}
.header__search {
  width: 13px;
  height: 14px;
}
@media (width >= 43.75em) {
  .header__search {
    display: none;
  }
}

.hero {
  background: url(../img/bg-ingredients.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (width >= 75em) {
  .hero {
    background: url(../img/bg-hero.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
.hero__wrapper {
  display: grid;
  justify-items: center;
  padding-block: 25px;
  gap: 20px;
}
@media (width >= 75em) {
  .hero__wrapper {
    grid-template-columns: 472px 1fr 348px;
    align-content: start;
    gap: 24px;
    padding-block: 80px;
  }
}
.hero__gallery--wrapper {
  display: grid;
  place-items: center;
  gap: 16px;
  align-content: start;
}
.hero__form {
  background-color: var(--color-text-light);
  z-index: 999;
  position: relative;
  border-radius: 8px;
  width: 100%;
  max-width: 450px;
  display: grid;
  justify-items: center;
}
.hero__advantages {
  color: var(--color-text-light);
  display: grid;
  gap: 16px;
  width: 100%;
  z-index: 999;
}
.hero__advantage {
  background-color: rgba(0, 0, 0, 0.61);
  border-bottom: 4px solid var(--color-achtung);
  border-right: 4px solid var(--color-achtung);
  padding: 12px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.16);
  font-weight: 700;
  transform: skew(-18deg);
}
.hero__advantage p {
  transform: skew(18deg);
  text-transform: uppercase;
  position: relative;
  padding-left: 32px;
}
.hero__advantage p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../img/checked2.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (width >= 75em) {
  .hero__counting.counting {
    display: none;
  }
}

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (width >= 75em) {
  .gallery {
    align-content: start;
    gap: 16px;
  }
}
.gallery__current {
  border-radius: 5.188px;
  width: 100%;
  height: auto;
}
.gallery__current img {
  width: 100%;
  border-radius: 7.853px;
}
.gallery__thumbnails {
  cursor: pointer;
  display: flex;
  gap: 6px;
}
@media (width >= 75em) {
  .gallery__thumbnails {
    gap: 8px;
  }
}
.gallery__thumbnail {
  width: 77px;
  height: 77px;
}
@media (width >= 75em) {
  .gallery__thumbnail {
    width: 115px;
    height: 115px;
  }
}
.gallery__thumbnail > img {
  border-radius: 8px;
}
.gallery__thumbnail--penultimate {
  position: relative;
}
.gallery__thumbnail--penultimate > img {
  filter: brightness(0.46);
}
.gallery__thumbnail--penultimate > p {
  position: absolute;
  color: var(--color-text-light);
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  font-size: 1.5rem;
}
.gallery__thumbnail--last {
  display: none;
}

.offer {
  display: grid;
  justify-items: center;
  gap: 16px;
}
@media (width >= 75em) {
  .offer {
    align-content: start;
  }
}
.offer__title {
  display: grid;
  gap: 7px;
  justify-items: center;
  width: 100%;
  color: var(--color-text-light);
  text-align: center;
}
@media (width >= 75em) {
  .offer__title {
    gap: 32px;
  }
}
.offer h2 {
  font-size: 2.25rem;
  font-size: clamp(2.25rem, 2.0227272727rem + 0.9696969697vw, 2.75rem);
  line-height: 120%;
}
@media (width >= 75em) {
  .offer h2 {
    text-transform: uppercase;
    text-align: center;
  }
}
.offer__title p {
  font-size: 1.625rem;
  font-size: clamp(1.625rem, 1.4545454545rem + 0.7272727273vw, 2rem);
  width: 100%;
  text-align: center;
  padding-block: 12px;
  font-weight: 800;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
@media (width >= 75em) {
  .offer__title p {
    text-align: center;
    justify-self: center;
  }
}
.offer__prices {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding-inline: 16px;
  margin-top: -30px;
}
@media (width >= 43.75em) {
  .offer__prices {
    display: grid;
    justify-content: start;
    align-items: start;
    gap: 4px;
  }
}
.offer__price {
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.0227272727rem + 0.9696969697vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-price);
}
.offer__price--before {
  text-decoration: line-through;
  color: var(--color-text-counter);
}
.offer__trust {
  background-color: var(--color-text-light);
  box-shadow: 4px 4px 0 0 #E52929;
  padding: 8px 12px;
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 12px;
  z-index: 999;
}
.offer__badges {
  display: flex;
  justify-content: center;
  position: relative;
  top: 0;
  transform: translateY(-50%);
  gap: 24px;
}
.offer__badge {
  width: 60px;
  height: 60px;
}
@media (width >= 75em) {
  .offer__badge {
    width: 94px;
    height: 94px;
  }
}
.offer__rates {
  width: 100%;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
@media (width >= 75em) {
  .offer__rates {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.offer__rates > p {
  font-weight: 700;
}
.offer__rate {
  display: flex;
  gap: 8px;
  align-items: center;
}
.offer__grades {
  display: grid;
}
.offer__total {
  font-size: 0.75rem;
}
.offer__summary {
  font-size: 0.75rem;
  display: block;
}
@media (width >= 43.75em) {
  .offer__summary {
    display: inline;
  }
}
.offer__stars {
  display: flex;
  gap: 2px;
}
.offer__stars > img {
  width: 16px;
  height: 16px;
}
@media (width >= 43.75em) {
  .offer__stars > img {
    width: 24px;
    height: 24px;
  }
}

.counting {
  color: var(--color-text-light);
  width: 100%;
  max-width: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding-block: 16px;
}
@media (width >= 75em) {
  .counting {
    gap: 16px;
  }
}
.counting > p {
  font-weight: 900;
  max-width: 276px;
  text-align: left;
  text-transform: uppercase;
}
@media (width >= 75em) {
  .counting > p {
    max-width: 449px;
  }
}

.counter {
  display: grid;
  justify-items: center;
  gap: 8px;
}
@media (width >= 75em) {
  .counter {
    gap: 6px;
  }
}
.counter__numbers {
  display: flex;
  gap: 2px;
  align-items: center;
}
.counter__numbers > p {
  font-size: 1.5rem;
}
@media (width >= 75em) {
  .counter__numbers > p {
    font-size: 2rem;
  }
}
.counter__number {
  padding-block: 8px;
  padding-inline: 4px;
  border-radius: 8px;
  border: 2px solid var(--color-text-counter);
}
@media (width >= 75em) {
  .counter__number {
    background: transparent;
  }
}

.intro {
  padding-block: 32px;
  background: url(../img/bg-ingredients.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-text-light);
}
@media (width >= 75em) {
  .intro {
    background: url(../img/background.png);
    padding-block: 80px;
  }
}
.intro__wrapper {
  gap: 24px;
  justify-items: center;
}
@media (width >= 75em) {
  .intro__wrapper {
    gap: 80px;
  }
}
.intro__header {
  display: grid;
  justify-items: center;
  gap: 24px;
  text-align: center;
}
@media (width >= 75em) {
  .intro__header {
    max-width: 796px;
  }
}
.intro__header > h1 {
  text-transform: uppercase;
  text-align: center;
}
.intro__header > p {
  text-align: center;
}
@media (width >= 75em) {
  .intro__texts {
    text-align: start;
  }
}
@media (width >= 75em) {
  .intro__picture {
    grid-area: picture;
  }
}
.intro__pros {
  display: grid;
  gap: 24px;
  justify-items: center;
}
@media (width >= 75em) {
  .intro__pros {
    gap: 46px;
  }
}
.intro__pros > h2 {
  text-align: center;
  text-transform: uppercase;
}
.intro__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  gap: 16px;
}
@media (width >= 75em) {
  .intro__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.intro__element {
  display: grid;
  justify-items: center;
  gap: 16px;
}
@media (width >= 75em) {
  .intro__element {
    max-width: 219px;
  }
}
.intro__element > img {
  width: 100%;
  height: 100%;
}
@media (width >= 75em) {
  .intro__element > img {
    width: 219px;
    height: 160px;
  }
}
.intro__element > p {
  font-weight: 700;
  text-align: center;
}

.comparison {
  background: url(../img/bg-comparison.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-block: 24px;
}
@media (width >= 75em) {
  .comparison {
    padding-block: 60px;
  }
}
.comparison.comparison2 {
  background: url(../img/bg-comparison2.png);
}
.comparison__wrapper {
  gap: 24px;
  justify-items: center;
  background: rgba(0, 0, 0, 0.48);
  box-shadow: 0 0 60px 0 #E52929;
  color: var(--color-text-light);
  width: min(100%, 57.25rem);
  padding-block: 24px;
}
@media (width >= 75em) {
  .comparison__wrapper {
    gap: 32px;
  }
}
.comparison__title {
  display: grid;
  justify-items: center;
  gap: 8px;
}
.comparison__names {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  font-weight: 700;
}
.comparison__imgs {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
}
@media (width >= 43.75em) {
  .comparison__imgs {
    gap: 48px;
  }
}
.comparison__product {
  justify-self: end;
}
.comparison__competitor {
  justify-self: start;
  min-height: 113.5px;
}
@media (width >= 75em) {
  .comparison__competitor {
    max-width: 408px;
  }
}
.comparison__vs {
  position: absolute;
  width: 73.335px;
  height: 65.748px;
  top: 50%;
  transform: translateY(-50%);
}
@media (width >= 75em) {
  .comparison__vs {
    width: 119.252px;
    height: 140px;
  }
}
.comparison__features {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: 100%;
}
.comparison__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: min(100%, 864px);
}
@media (width >= 75em) {
  .comparison__row {
    gap: 48px;
  }
}
.comparison__element {
  padding-bottom: 6px;
  padding-inline: 8px;
  border-bottom: 1px solid #E3E3E3;
  display: flex;
  gap: 6px;
  width: 100%;
  max-width: 408px;
  background: linear-gradient(90deg, #000 0%, #12893E 100%);
}
@media (width >= 75em) {
  .comparison__element {
    padding-bottom: 0;
    align-items: center;
    border-bottom: none;
    gap: 12px;
  }
}
.comparison__element > img {
  width: 16px;
  height: 16px;
}
@media (width >= 75em) {
  .comparison__element > img {
    width: 30px;
    height: 30px;
    margin-block: 12px;
  }
}
.comparison__left {
  display: flex;
  justify-content: end;
  justify-self: end;
  text-align: end;
}
.comparison__right {
  background: linear-gradient(90deg, #560000 0%, #000 100%);
}
.comparison__right--checked {
  background: linear-gradient(90deg, #12893E 0%, #000 100%);
}

.ingredients {
  padding-block: 32px;
  background: url(../img/bg-ingredients.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (width >= 43.75em) {
  .ingredients {
    padding-block: 80px;
  }
}
.ingredients__wrapper {
  display: grid;
  justify-items: center;
  gap: 32px;
  color: var(--color-text-light);
}
.ingredients__title {
  display: grid;
  padding-inline: 14px;
  justify-items: center;
  gap: 24px;
  text-align: center;
  width: min(100%, 73.125rem);
  max-width: 994px;
}
.ingredients__title h2 {
  text-transform: uppercase;
}
.ingredients__title p {
  font-size: 1.5rem;
}
.ingredients__imgs {
  display: flex;
  justify-content: center;
  gap: 24px;
}
@media (width >= 43.75em) {
  .ingredients__imgs {
    gap: 50px;
  }
}
.ingredients__imgs > img {
  max-width: 30%;
}
@media (width >= 43.75em) {
  .ingredients__list.splide__list {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (width >= 75em) {
  .ingredients__list.splide__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.ingredients__element {
  color: var(--color-text);
}
@media (width >= 43.75em) {
  .ingredients__element {
    max-width: 320px;
  }
}
.ingredients__img {
  position: relative;
}
.ingredients__img > img {
  border-radius: 8px 8px 0 0;
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
}
.ingredients__ingredient {
  padding-inline: 8px;
  padding-block-start: 8px;
  padding-block-end: 24px;
  display: grid;
  justify-items: start;
  gap: 16px;
  background-color: var(--color-text-light);
  border-radius: 0 0 8px 8px;
}
@media (width >= 43.75em) {
  .ingredients__ingredient {
    padding-block-start: 24px;
    padding-inline: 16px;
    padding-block-end: 32px;
  }
}
.ingredients__ingredient h3 {
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 0.9545454545rem + 0.7272727273vw, 1.5rem);
}
@media (width >= 43.75em) {
  .ingredients__ingredient h3 {
    text-align: center;
    width: 100%;
  }
}
@media (width >= 43.75em) {
  .ingredients__ingredient details {
    width: 100%;
    text-align: right;
  }
}
.ingredients__ingredient summary {
  cursor: pointer;
  text-decoration-line: underline;
  text-underline-offset: 6px;
}
.ingredients__info {
  font-weight: 700;
}
@media (width >= 43.75em) {
  .ingredients__info {
    display: none;
  }
}
.ingredients__info--desktop {
  display: none;
}
@media (width >= 43.75em) {
  .ingredients__info--desktop {
    width: 100%;
    max-width: 273px;
    display: grid;
    position: absolute;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0.08%, rgba(52, 0, 1, 0.7) 79.75%, rgba(0, 0, 0, 0.7) 99.91%);
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    text-align: center;
    padding: 10px;
    padding-block: 24px;
    font-weight: 700;
    color: var(--color-text-light);
    text-transform: uppercase;
    border-bottom: 4px solid var(--color-achtung);
    border-right: 4px solid var(--color-achtung);
    transform: skew(-15deg) translateX(-55%) translateY(-50%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
}
.ingredients__info--desktop p {
  transform: skew(18deg);
}
.ingredients__info--desktop p::before {
  content: url(../img/man-symbol.png);
  display: block;
  gap: 8px;
}
.ingredients__img:hover .ingredients__info--desktop {
  opacity: 1;
}
.ingredients__description {
  padding-top: 16px;
  display: grid;
  gap: 16px;
  text-align: left;
}
.ingredients__list--ingredient > li {
  list-style: disc;
  list-style-position: outside;
  margin-left: 16px;
  font-size: 1rem;
}
.ingredients .splide__pagination__page.is-active {
  background-color: #ccc;
  border: 0.2px solid #ccc;
}
.ingredients .splide__pagination {
  bottom: -1.5em;
}
.ingredients .splide__arrow {
  transform: translateY(0);
  top: 150px;
}

.ingredients .splide.is-initialized:not(.is-active) .splide__list {
  display: grid;
}

#slider1 {
  max-width: 100vw;
}

.bar {
  padding-block: 4px;
  background-color: var(--color-accent);
}
@media (width >= 43.75em) {
  .bar {
    padding-block: 16px;
  }
}
.bar__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width >= 43.75em) {
  .bar__wrapper {
    gap: 42px;
  }
}
.bar__btn {
  display: none;
  background-color: var(--color-achtung);
  border-radius: 47px;
  padding-block: 16px;
  width: 100%;
  max-width: 312px;
  text-align: center;
  color: var(--color-text-light);
  text-transform: uppercase;
  font-weight: 700;
}
@media (width >= 43.75em) {
  .bar__btn {
    display: block;
  }
}
.bar__btn:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.bar__prices {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 16px;
}
@media (width >= 43.75em) {
  .bar__prices {
    justify-content: center;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.bar__price {
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 0.9090909091rem + 1.4545454545vw, 2rem);
  color: var(--color-text-light);
  font-weight: 700;
}
.bar__price--old {
  color: var(--color-accent3);
  text-decoration-line: line-through;
}
@media (width >= 43.75em) {
  .bar__cart {
    display: none;
  }
}

.testimonials {
  background: url(../img/bg-testimonials.png);
  padding-block: 24px;
  color: var(--color-text-light);
}
@media (width >= 43.75em) {
  .testimonials {
    padding-block: 80px;
  }
}
.testimonials__star {
  height: 18px;
  width: 18px;
}
.testimonials__wrapper {
  display: grid;
  gap: 30px;
}
@media (width >= 43.75em) {
  .testimonials__wrapper {
    gap: 42px;
  }
}
.testimonials__title {
  display: grid;
  justify-items: start;
  gap: 16px;
  padding-inline: 14px;
}
@media (width >= 43.75em) {
  .testimonials__title {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
}
.testimonials__summary {
  display: grid;
  gap: 8px;
  align-content: start;
}
.testimonials__summary h3 {
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 1.2727272727rem + 0.9696969697vw, 2rem);
  text-transform: uppercase;
}
.testimonials__scores {
  display: grid;
  grid-auto-flow: column;
  gap: 8px;
}
@media (width >= 43.75em) {
  .testimonials__scores {
    grid-template-areas: "stars bars scores";
  }
}
.testimonials__quantities, .testimonials__bars, .testimonials__stars {
  display: grid;
  align-items: center;
  gap: 8px;
}
@media (width >= 43.75em) {
  .testimonials__stars {
    grid-area: stars;
  }
  .testimonials__bars {
    grid-area: bars;
  }
  .testimonials__quantities {
    grid-area: scores;
  }
}
.testimonials__stars > li {
  display: flex;
  justify-content: end;
}
.testimonials__testimonial {
  display: flex;
  justify-content: start;
  flex-direction: column;
  color: var(--color-text);
  background: #FFF;
  padding-block: 16px;
  padding-inline: 12px;
  gap: 12px;
  height: 100%;
}
.testimonials__opinion {
  display: grid;
  gap: 12px;
}
.testimonials__header {
  display: grid;
  gap: 8px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.testimonials__rate {
  display: flex;
  align-items: center;
}
.testimonials__rate > img {
  width: 16px;
  height: 16px;
}
.testimonials__confirmed {
  display: flex;
  align-items: center;
  gap: 4px;
}
.testimonials__confirmed > img {
  width: 13px;
  height: 13px;
}
.testimonials__confirmed > p {
  font-weight: 400;
  color: #686868;
}
.testimonials__content {
  font-style: italic;
}
.testimonials__sign {
  text-align: end;
}
.testimonials .splide__pagination__page {
  background-color: #fff;
}
.testimonials .splide__pagination__page.is-active {
  background-color: var(--color-achtung);
  border: 0.2px solid var(--color-achtung);
}
.testimonials .splide__pagination {
  bottom: -2em;
}

#slider2 {
  max-width: 100vw;
}
@media (width >= 75em) {
  #slider2 {
    max-width: 990px;
  }
}
@media (width >= 75em) {
  #slider2 .splide__arrow {
    background-color: transparent;
  }
  #slider2 .splide__arrow svg {
    fill: #FFF;
    height: 32px;
    width: 32px;
  }
  #slider2 .splide__arrow--prev {
    left: -35px;
  }
  #slider2 .splide__arrow--next {
    right: -35px;
  }
}

.faq {
  padding-block: 24px;
  background: url(../img/bg-faq.png);
  color: var(--color-text-light);
}
@media (width >= 43.75em) {
  .faq {
    padding-block: 80px;
  }
}
.faq__wrapper {
  gap: 24px;
}
@media (width >= 43.75em) {
  .faq__wrapper {
    gap: 42px;
  }
}
.faq__wrapper > h2 {
  text-align: center;
  text-transform: uppercase;
}
.faq__list {
  width: 100%;
  display: grid;
  gap: 8px;
}
@media (width >= 43.75em) {
  .faq__list {
    gap: 16px;
  }
}
.faq__content {
  background-color: transparent;
}
.faq__element details {
  width: 100%;
}
.faq__element summary {
  display: flex;
  justify-content: space-between;
  padding-block: 19px;
  padding-inline: 19px;
  cursor: pointer;
  background: linear-gradient(90deg, #000 0.08%, #340001 79.75%, #000 99.91%), #000;
  border-right: 4px solid var(--color-achtung);
  border-bottom: 4px solid var(--color-achtung);
  transform: skew(-18deg);
}
.faq__title > h4, .faq__title > img {
  transform: skew(18deg);
}
.faq__title > img {
  width: 20px;
  height: 20px;
}
.faq__element details[open] .faq__content {
  display: grid;
  gap: 24px;
  font-size: 1rem;
  background-color: #fff;
  color: var(--color-text);
  padding: 12px;
  position: relative;
  left: -10px;
}
.faq__element details[open] .faq__content ul {
  display: grid;
  gap: 24px;
  list-style: disc;
}
.faq__element details[open] .faq__content li {
  list-style: disc;
  list-style-position: inside;
}
.faq__element details[open] .faq__title > img {
  transform: rotate(180deg) skew(18deg);
}

.questionnaire {
  background: url(../img/bg-questionnaire.png);
  padding-block: 24px;
}
@media (width >= 43.75em) {
  .questionnaire {
    padding-block: 82px;
  }
}
.questionnaire__wrapper {
  background: rgba(0, 0, 0, 0.48);
  box-shadow: 0 0 60px 0 #E52929;
  gap: 24px;
  color: var(--color-text-light);
  padding-block: 24px;
  padding-inline: 16px;
}
@media (width >= 43.75em) {
  .questionnaire__wrapper {
    gap: 46px;
    padding-block: 80px;
    padding-inline: 32px;
  }
}
.questionnaire__wrapper h2 {
  text-transform: uppercase;
  text-align: center;
  font-weight: 900;
  max-width: 989px;
}
.questionnaire__results {
  display: grid;
  justify-items: center;
  gap: 16px;
}
@media (width >= 43.75em) {
  .questionnaire__results {
    width: 100%;
    gap: 19px;
  }
}
.questionnaire__result {
  display: flex;
  gap: 6px;
}
@media (width >= 43.75em) {
  .questionnaire__result {
    width: 100%;
    max-width: 989px;
    justify-content: space-between;
    align-items: center;
  }
}
.questionnaire__img {
  display: none;
}
@media (width >= 43.75em) {
  .questionnaire__img {
    display: block;
    width: 389px;
    height: 36px;
  }
}
.questionnaire__percent {
  font-size: 1.5rem;
  background-color: #00CE30;
  color: var(--color-text-light);
  border-radius: 23px;
  font-weight: 700;
  padding-block: 3px;
  text-align: center;
  min-width: 83px;
  max-height: 35px;
}
@media (width >= 43.75em) {
  .questionnaire__percent {
    background-color: transparent;
    color: #00CE30;
    font-size: 3.375rem;
    padding-block: 0;
    min-width: none;
    max-height: none;
  }
}
@media (width >= 43.75em) {
  .questionnaire__result > p {
    max-width: 389px;
  }
}
.questionnaire__btn {
  text-transform: uppercase;
  background-color: var(--color-achtung);
  color: var(--color-text-light);
  padding-block: 16px;
  border-radius: 47px;
  width: 100%;
  max-width: 247px;
  text-align: center;
  font-weight: 700;
}
.questionnaire__btn:hover {
  text-decoration-line: underline;
  text-underline-offset: 6px;
}

.footer {
  background-color: var(--color-text);
  padding-block: 46px;
  display: grid;
  justify-items: center;
}
@media (width >= 43.75em) {
  .footer {
    padding-block: 75px;
  }
}
.footer___wrapper {
  gap: 16px;
  justify-items: center;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.footer__links a {
  color: var(--color-text-light);
  font-size: 0.75rem;
}/*# sourceMappingURL=style.css.map */