*,
*::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);
  }
}

.btn {
  display: none;
  background-color: var(--color-bg-btn);
  border-radius: 47px;
  border: 2px solid var(--color-border-btn);
  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) {
  .btn {
    display: block;
  }
}

.btn:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}

:root {
  --color-text: #000;
  --color-text-light: #fff;
  --color-accent: #431F1A;
  --color-accent2: #AE9168;
  --color-accent3: #A3A3A3;
  --color-bg-counter: #ececec;
  --color-bg-info: rgba(255, 255, 255, 0.80);
  --color-bg-btn: #142CFF;
  --color-border-btn: #5F6FFF;
  --color-text-counter: #E2010F;
  --color-text-price: #00A44F;
  --color-bg-comparison: #EBEAE0;
  --color-bullet: #BCBCBC;
  --color-faq-border: #d9d9d9;
  --color-hero-list: rgba(226, 255, 164, 0.70);
  --color-hero-list--border: rgba(0, 164, 79, 0.33);
}

body {
  font-family: Roboto, 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,
li {
  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;
  }
}

.header {
  background-color: var(--color-accent);
  color: var(--color-text-light);
}

.header__wrapper {
  display: flex;
  justify-content: space-between;
  padding-block: 8px;
  padding-inline: 16px;
  align-items: center;
}

@media (width >=43.75em) {
  .header__wrapper {
    padding-block: 16px;
    justify-content: center;
    gap: 61px;
  }
}

.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.5795454545rem + 0.7272727273vw, 1.125rem);
  text-transform: lowercase;
}

@media (width >=43.75em) {
  .header__element>h3 {
    text-transform: uppercase;
  }
}

.header__element--hide {
  display: none;
}

@media (width >=43.75em) {
  .header__element--hide {
    display: flex;
  }
}

.header__search {
  width: 13px;
  height: 14px;
}

@media (width >=43.75em) {
  .header__search {
    display: none;
  }
}

.hero {
  background: url(../images/bg-hero.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero__wrapper {
  display: grid;
  justify-items: center;
  padding-block: 25px;
  gap: 20px;
  width: min(100%, 93.75rem);
}

@media (width >=93.75em) {
  .hero__wrapper {
    grid-template-columns: 1fr 400px 400px;
    align-content: center;
    gap: 18px;
    padding-block-start: 0;
  }
}

.hero__form {
  background-color: var(--color-text-light);
  z-index: 999;
  margin-top: 50px;
  position: relative;
  border-radius: 8px;
  width: 100%;
  display: grid;
  justify-items: center;
}

.hero__picture {
  display: block;
}

@media (width >=93.75em) {
  .hero__picture {
    display: none;
  }
}

.hero__picture--desktop {
  display: none;
  z-index: 1;
}

@media (width >=93.75em) {
  .hero__picture--desktop {
    max-width: 730px;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}

@media (width >=112.5em) {
  .hero__picture--desktop {
    max-width: 787px;
  }
}

.hero__advantages {
  display: grid;
  gap: 16px;
  width: 100%;
  z-index: 999;
}

.hero__advantage {
  background-color: var(--color-hero-list);
  border: 1px solid var(--color-hero-list--border);
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
}

.hero__advantage p {
  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("../images/checked2.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.offer {
  display: grid;
  justify-items: center;
  gap: 16px;
  align-self: center;
}

@media (width >=75em) {
  .offer {
    align-content: start;
  }
}

.offer__title {
  z-index: 999;
  display: grid;
  justify-items: center;
  width: 100%;
}

.offer__title p,
.offer__title h2 {
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 0.7272727273rem + 1.696969697vw, 2rem);
}

@media (width >=75em) {

  .offer__title p,
  .offer__title h2 {
    text-align: center;
    justify-self: center;
    color: var(--color-accent);
  }
}

.offer__title p {
  font-size: 1.6875rem;
  font-size: clamp(1.6875rem, 1.375rem + 1.3333333333vw, 2.375rem);
  color: var(--color-accent2);
}

.offer__prices {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding-inline: 16px;
  margin-top: -40px;
}

.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-accent3);
}

.offer__counting {
  border-radius: 10px;
  border: 2px dashed var(--color-text-counter);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 8px;
  background-color: var(--color-text-light);
  padding-block: 16px;
  z-index: 999;
}

@media (width >=75em) {
  .offer__counting {
    gap: 16px;
  }
}

.offer__counting>p {
  padding-inline: 23px;
  font-weight: 700;
  max-width: 276px;
  text-align: center;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 0.9545454545rem + 0.7272727273vw, 1.5rem);
  font-weight: 700;
}

@media (width >=75em) {
  .offer__counting>p {
    max-width: 449px;
  }
}

.offer__trust {
  border-radius: 32px;
  background-color: var(--color-text-light);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  padding: 10px 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: contents;
  text-align: center;
}

@media (width >=43.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__summary {
  font-size: 0.75rem;
  display: block;
}

@media (width >=43.75em) {
  .offer__summary {
    display: inline;
  }
}

.offer__stars {
  display: flex;
  gap: 2px;
  margin-left: 5px;
}

.offer__stars>img {
  width: 16px;
  height: 16px;
}

@media (width >=43.75em) {
  .offer__stars>img {
    width: 24px;
    height: 24px;
  }
}

.counter {
  display: grid;
  justify-items: center;
  gap: 8px;
}

@media (width >=75em) {
  .counter {
    gap: 6px;
  }
}

.counter__numbers {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 700;
}

.counter__numbers>p {
  font-size: 1.5rem;
}

@media (width >=75em) {
  .counter__numbers>p {
    font-size: 2rem;
  }
}

.counter__subtitles {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.counter__number {
  padding: 8px;
  border-radius: 8px;
  color: var(--color-text-counter);
}

@media (width >=75em) {
  .counter__colon {
    display: none;
  }
}

.intro {
  padding-block: 32px;
}

@media (width >=75em) {
  .intro {
    padding-block: 80px;
  }
}

.intro__wrapper {
  gap: 24px;
  justify-items: center;
}

@media (width >=75em) {
  .intro__wrapper {
    gap: 32px;
    display: flex;
  }
}

.intro__header {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 24px;
  text-align: left;
  max-width: 930px;
}

.intro__header>h1 {
  text-transform: uppercase;
}

.intro img {
  border-radius: 8px;
}

.comparison {
  background: var(--color-bg-comparison);
  padding-block: 24px;
}

@media (width >=75em) {
  .comparison {
    padding-block: 60px;
  }
}

.comparison__wrapper {
  gap: 24px;
  justify-items: center;
  max-width: 918px;
}

@media (width >=75em) {
  .comparison__wrapper {
    gap: 32px;
  }
}

.comparison__title {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.comparison__imgs {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 2px;
}

@media (width >=75em) {
  .comparison__imgs {
    gap: 32px;
    justify-content: space-between;
  }
}

.comparison__header {
  width: 166px;
  height: auto;
  display: grid;
  gap: 8px;
}

@media (width >=43.75em) {
  .comparison__header {
    width: 340px;
    height: auto;
  }
}

.comparison__imgs h3 {
  text-align: center;
}

.comparison__prod {
  position: relative;
}

.comparison__product {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 80%;
}

.comparison__vs {
  align-self: center;
  width: 60px;
  height: 54px;
}

@media (width >=75em) {
  .comparison__vs {
    width: 174px;
    height: 156px;
  }
}

.comparison__features {
  display: grid;
  justify-items: center;
  gap: 12px;
  border-radius: 8px;
  background-color: var(--color-text-light);
  padding-block: 10px;
}

.comparison__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (width >=75em) {
  .comparison__row {
    gap: 32px;
  }
}

.comparison__element {
  padding-bottom: 6px;
  border-bottom: none;
  display: flex;
  gap: 6px;
}

@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 {
  justify-self: end;
  text-align: end;
}

.ingredients {
  padding-block: 32px;
}

@media (width >=43.75em) {
  .ingredients {
    padding-block: 80px;
  }
}

.ingredients__wrapper {
  display: grid;
  justify-items: center;
  gap: 32px;
}

.ingredients__before-after {
  display: grid;
  place-items: center;
  gap: 32px;
}

@media (width >=75em) {
  .ingredients__before-after {
    grid-auto-flow: column;
  }
}

.ingredients__title {
  display: grid;
  padding-inline: 14px;
  justify-items: center;
  gap: 24px;
  text-align: center;
  width: min(100%, 73.125rem);
}

.ingredients__title h2 {
  text-transform: uppercase;
}

.ingredients__imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (width >=43.75em) {
  .ingredients__imgs {
    display: flex;
    flex: 1;
    gap: 50px;
  }
}

.ingredients__advantage {
  display: grid;
  justify-items: center;
  gap: 24px;
}

@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);
  }
}

@media (width >=43.75em) {
  .ingredients__element {
    max-width: 320px;
  }
}

.ingredients__img {
  position: relative;
}

.ingredients__img>img {
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
}

.ingredients__ingredient {
  padding-inline: 8px;
  padding-block: 8px;
  display: grid;
  justify-items: start;
  gap: 16px;
}

@media (width >=43.75em) {
  .ingredients__ingredient {
    padding-block-start: 24px;
    padding-inline: 16px;
  }
}

.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: block;
    position: absolute;
    background: var(--color-bg-info);
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    text-align: center;
    padding: 10px;
    border-radius: 32px;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
}

.ingredients__img:hover .ingredients__info--desktop {
  opacity: 1;
}

.ingredients__description {
  display: grid;
  gap: 16px;
  text-align: left;
  padding-top: 16px;
}

.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: -0.5em;
}

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

.before-after__element {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  --position: 50%;
}

.before-after__wrapper {
  max-width: 530px;
  max-height: 560px;
}

.before-after__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left;
  object-position: left;
}

.before-after__before {
  position: absolute;
  inset: 0;
  width: var(--position);
}

.before-after__slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.before-after__slider:focus-visible~.before-after__slider-button {
  outline: 5px solid black;
  outline-offset: 3px;
}

.before-after__slider-line {
  position: absolute;
  inset: 0;
  width: 6px;
  height: 100%;
  background-color: var(--color-text-light);
  z-index: 10;
  left: var(--position);
  transform: translateX(-50%);
  pointer-events: none;
}

.before-after__slider-button {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: var(--color-text-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
  top: 50%;
  left: var(--position);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 100;
}

#slider1 {
  max-width: 500px;
}

@media (width >=43.75em) {
  #slider1 {
    max-width: 100%;
  }
}

#slider1 .splide__arrow {
  top: 195px !important;
}

.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__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-color: var(--color-bg-comparison);
  padding-block: 24px;
}

@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;
}

@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-wrapper {
  margin-left: 0;
}

.testimonials__testimonial {
  display: grid;
  justify-items: center;
  max-width: 348px;
}

.testimonials__opinion {
  bottom: 8px;
  width: 100%;
  min-height: 217px;
  height: 100%;
  background-color: var(--color-text-light);
  border-radius: 8px;
  padding-block: 16px;
  padding-inline: 8px;
  display: grid;
  gap: 12px;
}

.testimonials__header {
  display: flex;
  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: 700;
}

.testimonials__sign {
  text-align: end;
}

.testimonials .splide__pagination__page {
  background-color: var(--color-bullet);
}

.testimonials .splide__pagination__page.is-active {
  background-color: var(--color-accent);
  border: 0.2px solid var(--color-accent);
}

.testimonials .splide__pagination {
  bottom: -2em;
}

#slider2 {
  max-width: 348px;
}

@media (width >=43.75em) {
  #slider2 {
    max-width: 700px;
  }

  #slider2 .splide__arrow--prev {
    left: -2.5em;
  }

  #slider2 .splide__arrow--next {
    right: -2.5em;
  }
}

@media (width >=75em) {
  #slider2 {
    max-width: 990px;
  }
}

.faq {
  padding-block: 24px;
}

@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;
}

.faq__list {
  width: 100%;
  display: grid;
  gap: 8px;
}

@media (width >=43.75em) {
  .faq__list {
    gap: 16px;
  }
}

.faq__element details {
  width: 100%;
  padding: 16px;
  background-color: var(--color-bg-testi);
  border: 1px solid var(--color-faq-border);
  border-radius: 8px;
}

.faq__element summary {
  display: flex;
  justify-content: space-between;
  padding-bottom: 8px;
  cursor: pointer;
}

.faq__title>img {
  width: 20px;
  height: 20px;
}

.faq__element details[open] {
  background-color: transparent;
}

.faq__element details[open] .faq__title>img {
  transform: rotate(180deg);
}

.faq__content {
  display: grid;
  gap: 16px;
}

.faq__ul li {
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 16px;
}

.questionnaire {
  padding-bottom: 32px;
}

@media (width >=43.75em) {
  .questionnaire {
    padding-bottom: 80px;
  }
}

.questionnaire__wrapper {
  gap: 24px;
}

@media (width >=43.75em) {
  .questionnaire__wrapper {
    gap: 46px;
  }
}

.questionnaire__wrapper h2 {
  text-align: center;
}

.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: var(--color-bg-btn);
  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: var(--color-text);
    font-size: 3.375rem;
    padding-block: 0;
    min-width: none;
    max-height: none;
  }
}

@media (width >=43.75em) {
  .questionnaire__result>p {
    max-width: 250px;
  }
}

.questionnaire__btn.btn {
  display: block;
}

.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 */