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

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

a {
  text-decoration: none;
  color: inherit;
}

label {
  display: block;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

::-moz-placeholder {
  color: inherit;
}

::placeholder {
  color: inherit;
}

textarea {
  display: block;
}

input,
textarea,
button,
select {
  font: inherit;
  color: inherit;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
}

ul,
ol {
  list-style-type: none;
}

picture,
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 1.5px solid #333333;
  outline-offset: 0px;
}

html,
body {
  overflow-x: clip;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
@media (prefers-reduced-motion) {
  html {
    scroll-behavior: none;
  }
}

body {
  min-width: 320px;
  -webkit-tap-highlight-color: transparent;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1rem, 2.0833333333vw, 1.25rem);
  background-color: #e3f0f1;
  color: #000;
  letter-spacing: 0;
  line-height: 1.6;
  min-height: 100vh;
}
@supports (min-height: 100svh) {
  body {
    min-height: 100svh;
  }
}

.max-width {
  max-width: 64.25rem;
  padding-left: clamp(0.5rem, 2.6041666667vw, 2.5rem);
  padding-right: clamp(0.5rem, 2.6041666667vw, 2.5rem);
  margin: 0 auto;
  height: 100%;
}

.text-bold {
  font-weight: 700;
}

.text-red {
  color: #f00;
}

.text-green {
  color: #067014;
}

.text-blue {
  color: #096ab4;
}

.text-purple {
  color: #8d09b4;
}

.text-center {
  text-align: center;
}

.text-small {
  font-size: clamp(0.75rem, 2.0833333333vw, 1rem);
}

.text-italic {
  font-style: italic;
}

.text-uppercase {
  text-transform: uppercase;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #fff;
  padding: 0.75rem 0;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.16);
}
.header > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.header__logo {
  width: 50px;
  height: 50px;
}
.header .overlay {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 5;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media (min-width: 48rem) {
  .header .overlay {
    display: none;
  }
}

.nav {
  position: fixed;
  z-index: 10;
  width: 100%;
  max-width: 360px;
  background-color: #fff;
  height: 100vh;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  padding: 6rem 1rem 3rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}
@media (min-width: 48rem) {
  .nav {
    position: relative;
    padding: 0;
    height: auto;
    max-width: none;
    box-shadow: none;
  }
}

.header[data-opened=true] .overlay {
  transition: visibility 0ms 0ms, pointer-events 0ms 0ms, opacity 200ms 1ms ease;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
@media (min-width: 48rem) {
  .header[data-opened=true] .overlay {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
}
.header[data-opened=true] .nav {
  transition: transform 200ms 1ms ease, opacity 200ms 1ms ease, visibility 0ms 0ms, pointer-events 0ms 0ms;
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header[data-opened=false] .overlay {
  transition: visibility 0ms 200ms, pointer-events 0ms 200ms, opacity 200ms 0ms ease;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.header[data-opened=false] .nav {
  transition: transform 200ms 0ms ease, opacity 200ms 0ms ease, visibility 0ms 200ms, pointer-events 0ms 200ms;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media (min-width: 48rem) {
  .header[data-opened=false] .nav {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.nav__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2.6041666667vw, 1.25rem);
}
@media (min-width: 48rem) {
  .nav__content {
    flex-direction: row;
    justify-content: flex-end;
  }
}
.nav__content .nav__link {
  line-height: normal;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-color: transparent;
  transition: text-decoration-color 300ms ease;
}
.nav__content .nav__link:hover:not(.nav__content .nav__link--active) {
  text-decoration-color: #e3f0f1;
}
.nav__content .nav__link--active {
  text-decoration-color: #096ab4;
}

.header__burger {
  position: relative;
  z-index: 100;
  width: 44px;
  height: 44px;
}
.header__burger span {
  display: block;
  width: 100%;
  border: 1px solid #000;
  background-color: #000;
  border-radius: 100vmax;
  transform-origin: center;
  transition: opacity 200ms ease, transform 200ms ease;
}
.header__burger span:first-child {
  transform: translateY(-10px);
}
.header__burger span:last-child {
  transform: translateY(10px);
}
.header__burger[aria-expanded=true] span:first-child {
  margin-top: 0;
  transform: rotate(45deg) scale(0.8) translateY(2px);
}
.header__burger[aria-expanded=true] span:last-child {
  margin-top: 0;
  transform: rotate(-45deg) scale(0.8) translateY(-2px);
}
.header__burger[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
@media (min-width: 48rem) {
  .header__burger {
    display: none;
  }
}

.footer {
  text-align: center;
  font-size: 0.875rem;
  padding: clamp(4rem, 9.375vw, 4.5rem) 0 clamp(4rem, 9.375vw, 5.625rem);
}
.footer__links {
  margin: clamp(1rem, 2.6041666667vw, 1.25rem) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 0.625rem;
}
.footer__links a {
  line-height: 1;
  text-decoration: underline;
  padding: 0 0.5rem;
  opacity: 0.8;
  transition: opacity 300ms ease;
}
.footer__links a:hover {
  opacity: 1;
}
.footer__links a:not(:last-child) {
  border-right: 1px solid #000;
}

.main {
  padding-top: clamp(0.5rem, 2.6041666667vw, 2.5rem);
  background-image: linear-gradient(to top, transparent 0 42px, white 42px 100%);
}

.main__title {
  line-height: normal;
  font-size: clamp(2rem, 4.6875vw, 2.625rem);
  margin-top: clamp(1.25rem, 3.90625vw, 1.875rem);
}

.main__subtitle {
  line-height: normal;
  font-size: clamp(1.25rem, 3.125vw, 1.625rem);
  margin-top: clamp(1rem, 2.6041666667vw, 1.25rem);
}

.main__text {
  margin-top: clamp(1rem, 2.6041666667vw, 1.25rem);
}

.main__list {
  margin-top: clamp(1rem, 2.6041666667vw, 1.25rem);
  list-style-type: disc;
  padding-left: 1.5rem;
}
.main__list li {
  margin-top: clamp(1rem, 2.6041666667vw, 1.25rem);
}

:where(.figure, .compare__images, .divider) + .main__text {
  margin-top: clamp(1.25rem, 3.90625vw, 1.875rem);
}

.figure {
  max-width: 45.8125rem;
  width: 100%;
  margin: clamp(1.25rem, 3.90625vw, 1.875rem) auto 0;
}
.figure img {
  width: 100%;
  height: auto;
}
.figure figcaption {
  margin-top: clamp(1rem, 2.6041666667vw, 1.25rem);
}
.figure--product {
  max-width: 32.0625rem;
}

.compare__images {
  max-width: 45.8125rem;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.6041666667vw, 1.25rem);
  margin: clamp(1.25rem, 3.90625vw, 1.875rem) auto 0;
}
@media (min-width: 48rem) {
  .compare__images {
    flex-direction: row;
  }
}
.compare__images .figure {
  max-width: 377px;
}

.promo-box {
  border: 1px solid #067014;
  background-color: #edffe9;
  padding: clamp(1.25rem, 3.90625vw, 1.875rem) clamp(2rem, 4.6875vw, 2.5rem);
  margin-top: clamp(1.25rem, 3.90625vw, 1.875rem);
}
.promo-box .main__subtitle {
  margin-top: 0;
}
.promo-box__list {
  margin-top: clamp(1rem, 2.6041666667vw, 1.25rem);
  list-style-type: disc;
  padding-left: 1.5rem;
}
.promo-box__list li {
  margin-top: clamp(1rem, 2.6041666667vw, 1.25rem);
}

.alert-box {
  border: 1px solid #f00;
  background-color: #fcf6e1;
  padding: clamp(1.25rem, 3.90625vw, 1.875rem) clamp(2rem, 4.6875vw, 2.5rem);
  margin-top: clamp(1.25rem, 3.90625vw, 1.875rem);
}

.game {
  position: relative;
  margin-top: clamp(1.25rem, 3.90625vw, 1.875rem);
}
.game p:first-child {
  max-width: 40.75rem;
  margin: 0 auto;
}
.game__badge {
  width: 100%;
  text-align: center;
  margin-top: clamp(1rem, 2.6041666667vw, 1.25rem);
  font-size: clamp(1.5rem, 3.6458333333vw, 1.875rem);
  color: #fff;
  background-color: #096ab4;
  border-radius: 100vmax;
  padding: clamp(1rem, 2.6041666667vw, 1.375rem) clamp(1.5rem, 3.6458333333vw, 2.0625rem);
  line-height: 1.2;
}
.game__controls {
  margin-top: clamp(1.25rem, 3.90625vw, 1.875rem);
  display: flex;
  gap: clamp(0.75rem, 2.0833333333vw, 1.25rem);
}
.game__controls a img {
  will-change: transform, filter;
  transition: transform 300ms ease, filter 300ms ease, box-shadow 300ms ease;
}
.game__controls a:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.game__box--done {
  width: 100%;
  max-width: 700px;
  display: none;
  position: absolute;
  background-color: #fff;
  border-radius: 0.5rem;
  padding: clamp(1.25rem, 3.125vw, 1.75rem);
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
}
.game__box--done h2 {
  font-size: clamp(1.75rem, 5.2083333333vw, 2.75rem);
}
.game__box--done p {
  font-size: clamp(1rem, 2.6041666667vw, 1.5rem);
}
.game__box--done a {
  margin-top: clamp(1rem, 2.6041666667vw, 1.25rem);
  display: block;
  width: 100%;
  background-color: #f00;
  color: #fff;
  padding: 1rem clamp(1.25rem, 3.125vw, 2rem);
  border-radius: 100vmax;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(1.25rem, 3.125vw, 2rem);
  transition: background-color 300ms ease;
}
@media (min-width: 28rem) {
  .game__box--done a {
    padding: 0.625rem clamp(1.25rem, 3.125vw, 2rem);
  }
}
.game__box--done a:hover {
  background-color: rgb(227, 0, 0);
}

.game--done .game__image {
  z-index: 0;
  filter: blur(4px);
  pointer-events: none;
}
.game--done .game__controls {
  position: relative;
}
.game--done .game__box--done {
  display: block;
}

.comments {
  margin-top: clamp(3.5rem, 8.3333333333vw, 4.5rem);
  background-color: #fff;
  padding-block: clamp(1.25rem, 3.90625vw, 1.875rem) clamp(2rem, 4.6875vw, 2.5rem);
}
.comments h2 {
  font-size: clamp(1.5rem, 3.6458333333vw, 2rem);
  line-height: 1;
}
.comments__content {
  margin: clamp(1.25rem, 3.90625vw, 1.875rem) 0 clamp(2.5rem, 5.859375vw, 3.125rem);
}
.comments__button {
  display: block;
  width: 100%;
  background-color: #f00;
  color: #fff;
  padding: 1rem clamp(1.25rem, 3.125vw, 2rem);
  border-radius: 100vmax;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(1.25rem, 3.125vw, 1.875rem);
  transition: background-color 300ms ease;
}
@media (min-width: 28rem) {
  .comments__button {
    padding: 0.625rem clamp(1.25rem, 3.125vw, 2rem);
  }
}
.comments__button:hover {
  background-color: rgb(227, 0, 0);
}

.comment {
  padding: clamp(1rem, 2.6041666667vw, 1.25rem) 0;
  border-bottom: 1px solid #707070;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
@media (min-width: 28rem) {
  .comment {
    flex-direction: row;
    -moz-column-gap: 0.9375rem;
         column-gap: 0.9375rem;
  }
}
.comment__avatar {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.comment__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 0.625rem;
}
.comment__content h3 {
  font-size: clamp(1rem, 2.0833333333vw, 1.25rem);
  font-weight: 700;
}
.comment__content img {
  max-width: 100%;
  max-height: 200px;
  width: auto;
  height: auto;
}
@media (min-width: 24rem) {
  .comment__content img {
    max-width: 307px;
  }
}

.summary__header {
  position: relative;
  z-index: 20;
  background-color: #014471;
  text-align: center;
}
.summary__header p {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 8.8541666667vw, 5.125rem);
}

.summary {
  background-color: #fff;
  padding-block: clamp(3rem, 7.8125vw, 3.75rem) 1.5rem;
}

.summary__title {
  display: flex;
  flex-direction: column;
  line-height: normal;
  font-size: clamp(2rem, 5.2083333333vw, 2.625rem);
}

.summary__text {
  margin-top: clamp(1rem, 2.6041666667vw, 1.25rem);
}

:where(.counter, .summary__cta) + .summary__text {
  margin-top: clamp(1.25rem, 3.90625vw, 1.875rem);
}

.summary__image {
  max-width: 337px;
  width: 100%;
  height: auto;
  margin: clamp(1rem, 2.6041666667vw, 1.25rem) auto 0;
}

.narrow {
  max-width: 602px;
  margin: clamp(1rem, 2.6041666667vw, 1.25rem) auto 0;
}

.counter {
  margin-top: clamp(1.25rem, 3.90625vw, 1.875rem);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 2.6041666667vw, 1.25rem);
}

.counter__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.counter__item p {
  color: #067014;
  font-weight: 700;
  line-height: normal;
  font-size: clamp(2.5rem, 10.6666666667vw, 3rem);
}
@media (min-width: 48rem) {
  .counter__item p {
    font-size: clamp(4rem, 6vw, 5rem);
  }
}
.counter__item span {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
}

.summary__cta {
  margin: clamp(1.25rem, 3.90625vw, 1.875rem) auto 0;
  min-height: 92px;
  width: 100%;
  background-color: #f00;
  color: #fff;
  padding: 0.6rem clamp(1rem, 2.6041666667vw, 1.75rem);
  border-radius: 100vmax;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(1.25rem, 3.125vw, 2rem);
  transition: background-color 300ms ease;
  border: 4px solid #f00;
  display: grid;
  place-items: center;
}
.summary__cta:hover {
  background-color: rgb(227, 0, 0);
}
.summary__cta--phone {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 300px;
  background-color: #fff;
  color: #f00;
  font-size: clamp(1.5rem, 3.90625vw, 2.5rem);
}
.summary__cta--phone:hover {
  background-color: #fff;
  color: rgb(227, 0, 0);
}
.summary__cta.hidden {
  display: none;
}/*# sourceMappingURL=style.css.map */