*,
*::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 {
  position: relative;
  min-width: 320px;
  -webkit-tap-highlight-color: transparent;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1rem, 2.0833333333vw, 1.25rem);
  background-color: #fff;
  color: #000;
  line-height: 1.5;
  min-height: 100vh;
}
@supports (min-height: 100svh) {
  body {
    min-height: 100svh;
  }
}

.max-width {
  max-width: 75rem;
  width: calc(100% - clamp(0.5rem, 2.6041666667vw, 2.5rem) * 2);
  margin: 0 auto;
  height: 100%;
}

.p-inline {
  padding-left: clamp(0.5rem, 2.6041666667vw, 2.5rem);
  padding-right: clamp(0.5rem, 2.6041666667vw, 2.5rem);
}

.bold {
  font-weight: 700;
}

.uppercase {
  text-transform: uppercase;
}

.green {
  color: #348f22;
}

.red {
  color: #ff0000;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 5px 0;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.1);
  z-index: 100;
}
.header p {
  text-align: center;
  color: #3b3b3b;
  letter-spacing: 1px;
  font-weight: 500;
}

.footer {
  padding: 100px 16px 47px;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.75rem;
  color: #707070;
}
.footer__links {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  row-gap: 10px;
}
.footer__links a {
  line-height: 1;
  padding: 0 5px;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.footer__links a:not(:last-child) {
  border-right: 1px solid #707070;
}
.footer__links a:hover {
  color: #000;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translateX(0px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0px) scale(1);
  }
}
.hero {
  position: relative;
  padding: 54px 0 0;
}
@media (min-width: 900px) {
  .hero {
    background-image: url("../img/WZM_2010_hero.webp");
    background-position: center top;
    background-size: cover;
    padding: clamp(60px, 11.75vw, 141px) 0 clamp(60px, 10vw, 90px);
  }
}
@media (min-width: 900px) and (min-width: 1200px) {
  .hero {
    padding: 141px 0 60px;
  }
}
.hero .hero__header {
  background-image: url("../img/WZM_2010_hero_mobile.webp");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-clip: padding-box;
  margin-bottom: clamp(105px, 37.5vw, 150px);
}
@media (min-width: 600px) {
  .hero .hero__header {
    margin-bottom: 85px;
  }
}
@media (min-width: 900px) {
  .hero .hero__header {
    background-image: none;
    margin-bottom: 0;
  }
}
.hero header {
  padding-bottom: clamp(280px, 75vw, 600px);
}
@media (min-width: 900px) {
  .hero header {
    padding-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .hero header {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 700ms ease 500ms forwards;
  }
}
.hero h1 {
  font-size: clamp(23px, 4.1666666667vw, 48px);
  margin-bottom: clamp(20px, 2.8645833333vw, 22px);
  max-width: 712px;
  line-height: 1.35;
}
.hero p {
  font-size: clamp(16px, 2.6041666667vw, 22px);
  max-width: 590px;
}
.hero .product--desktop {
  display: none;
}
@media (min-width: 900px) {
  .hero .product--desktop {
    display: block;
    position: absolute;
    z-index: 5;
    max-width: 828px;
    width: 100%;
    height: auto;
    bottom: -250px;
    left: 54%;
    max-width: clamp(600px, 69vw, 828px);
  }
}
@media (min-width: 900px) and (min-width: 1200px) {
  .hero .product--desktop {
    bottom: -150px;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInScale 700ms ease 500ms forwards;
  }
}
.hero .product--mobile {
  display: block;
  z-index: 5;
  width: 100%;
  height: auto;
  max-width: 500px;
  margin: 100px auto 0;
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 900px) {
  .hero .product--mobile {
    display: none;
  }
}

.product-description {
  background-color: #e7e5f8;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 900px) {
  .product-description {
    padding-top: 250px;
    padding-bottom: 45px;
    background-image: url("../img/sound_wave.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}
@media (min-width: 1200px) {
  .product-description {
    padding-top: 120px;
    padding-bottom: 45px;
  }
}
.product-description p {
  margin: 0 auto;
  max-width: 956px;
}
.product-description .product--desktop {
  display: none;
}

@media (min-width: 1200px) {
  main.animate-init .product-description p {
    opacity: 0;
    transform: translateX(-30px);
  }
  main.animate-init .product-description.in-view p {
    animation: fadeInLeft 600ms ease 100ms forwards;
  }
}
.two-boxes {
  padding: clamp(50px, 8.4635416667vw, 80px) 0;
  display: flex;
  flex-direction: column;
  gap: 65px;
}
.two-boxes .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2rem;
}
@media (min-width: 1200px) {
  .two-boxes .box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.two-boxes .box__content {
  max-width: 750px;
}
@media (min-width: 1200px) {
  .two-boxes .box__content {
    max-width: 590px;
  }
}
.two-boxes .box__content h2 {
  font-size: clamp(28px, 4.1666666667vw, 32px);
}
.two-boxes .box__content p {
  margin-top: 20px;
}
.two-boxes img {
  border-radius: 35px;
  border: 5px solid #e2e2e2;
  max-width: 468px;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.two-boxes .box:last-child img {
  order: 1;
}
@media (min-width: 1200px) {
  .two-boxes .box:last-child img {
    order: 2;
  }
}
.two-boxes .box:last-child .box__content {
  order: 2;
}
@media (min-width: 1200px) {
  .two-boxes .box:last-child .box__content {
    order: 1;
  }
}

@media (min-width: 1000px) {
  main.animate-init .two-boxes .box img {
    opacity: 0;
    transform: scale(0.9);
  }
  main.animate-init .two-boxes .box .box__content {
    opacity: 0;
    transform: translateX(30px);
  }
  main.animate-init .two-boxes .box:last-child .box__content {
    opacity: 0;
    transform: translateX(-30px);
  }
  main.animate-init .two-boxes .box.in-view img {
    animation: fadeInScale 600ms ease 100ms forwards;
  }
  main.animate-init .two-boxes .box.in-view .box__content {
    animation: fadeInRight 600ms ease 100ms forwards;
  }
  main.animate-init .two-boxes .box.in-view:last-child .box__content {
    animation: fadeInLeft 600ms ease 100ms forwards;
  }
}
.features {
  text-align: center;
  background-color: #fff5e9;
  padding: 40px 0;
}
.features h2 {
  font-size: clamp(32px, 5.2083333333vw, 50px);
  line-height: 1.3;
  max-width: 840px;
  margin: 0 auto;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.features h2 span {
  background-color: #348f22;
  color: #fff;
  padding: 0 8px;
  border-radius: 10px;
}
.features .small-text {
  color: #3b3b3b;
  font-size: 16px;
}
.features .features__content {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: clamp(30px, 5.859375vw, 60px);
  -moz-column-gap: clamp(40px, 7.8125vw, 80px);
       column-gap: clamp(40px, 7.8125vw, 80px);
}
.features .features__item {
  max-width: 346px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  text-align: left;
  align-items: center;
  background-color: #fce8b0;
  border-radius: 30px;
  overflow: hidden;
}
.features .features__item img {
  width: 140px;
}
.features .features__item p {
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
}

@media (min-width: 1000px) {
  main.animate-init .features__content .features__item {
    opacity: 0;
    transform: scale(0.9);
  }
  main.animate-init .features__content.in-view .features__item:nth-child(1) {
    animation: fadeInScale 600ms ease 100ms forwards;
  }
  main.animate-init .features__content.in-view .features__item:nth-child(2) {
    animation: fadeInScale 600ms ease 200ms forwards;
  }
  main.animate-init .features__content.in-view .features__item:nth-child(3) {
    animation: fadeInScale 600ms ease 300ms forwards;
  }
  main.animate-init .features__content.in-view .features__item:nth-child(4) {
    animation: fadeInScale 600ms ease 400ms forwards;
  }
  main.animate-init .features__content.in-view .features__item:nth-child(5) {
    animation: fadeInScale 600ms ease 500ms forwards;
  }
}
.button__content {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3.90625vw, 30px);
}
.button__content .text {
  color: #000fff;
  text-decoration: underline;
  font-weight: 700;
  font-size: clamp(24px, 4.1666666667vw, 32px);
  line-height: 1.3;
}
.button__content .hand-icon-left,
.button__content .hand-icon-right {
  display: none;
}
@media (min-width: 560px) {
  .button__content .hand-icon-left,
  .button__content .hand-icon-right {
    display: block;
  }
}
.button__content .hand-icon-right {
  position: relative;
}
.button__content .hand-icon-right img:first-child {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
  transform: translateX(-12px);
}
.button__content .hand-icon-right img:last-child {
  position: absolute;
  left: 0;
  opacity: 0.53;
  filter: blur(2px);
  transform: translateX(0);
  z-index: 1;
  transition: transform 0.3s ease;
}
.button__content .hand-icon-left {
  position: relative;
}
.button__content .hand-icon-left img:first-child {
  position: relative;
  z-index: 2;
  transform: translateX(12px);
  transition: transform 0.3s ease;
}
.button__content .hand-icon-left img:last-child {
  position: absolute;
  left: 0;
  transform: translateX(0);
  opacity: 0.53;
  filter: blur(2px);
  z-index: 1;
  transition: transform 0.3s ease;
}

.features__button {
  display: inline-block;
  margin-top: 82px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
}

.features__button:hover .hand-icon-left img:first-child,
.cta_button:hover .hand-icon-left img:first-child {
  transform: translateX(16px);
}
.features__button:hover .hand-icon-left img:last-child,
.cta_button:hover .hand-icon-left img:last-child {
  transform: translateX(20px);
}
.features__button:hover .hand-icon-right img:first-child,
.cta_button:hover .hand-icon-right img:first-child {
  transform: translateX(-16px);
}
.features__button:hover .hand-icon-right img:last-child,
.cta_button:hover .hand-icon-right img:last-child {
  transform: translateX(-20px);
}

.details {
  padding: clamp(60px, 10.4166666667vw, 80px) 0;
  position: relative;
}
.details h2 {
  font-size: clamp(28px, 4.1666666667vw, 32px);
  line-height: 1.3;
  margin-bottom: 40px;
  max-width: 840px;
}
.details ul {
  max-width: 480px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 1200px) {
  .details ul {
    max-width: 960px;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.details li {
  font-weight: 600;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 20px;
  align-items: start;
}
.details .details__image {
  margin: 32px 0 0 auto;
  position: relative;
  max-width: 450px;
}
@media (min-width: 850px) {
  .details .details__image {
    position: absolute;
    bottom: 0;
    right: 0;
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .details .details__image {
    right: -130px;
    bottom: -50px;
  }
}
.details .details__image .arrow {
  position: absolute;
  width: 59px;
  top: -55px;
  right: -20px;
  display: none;
}
@media (min-width: 360px) {
  .details .details__image .arrow {
    display: block;
  }
}
.details .details__image img {
  max-width: 420px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.details .details__image span {
  position: absolute;
  bottom: 4px;
  right: 0;
  width: 75%;
  text-align: center;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  font-size: 12px;
}
.details .details__image p {
  color: #fff;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  background-color: #000;
  border-radius: 10px;
  font-size: clamp(12px, 2.0833333333vw, 15px);
  font-weight: 500;
  padding: 10px 25px;
  text-align: center;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  position: absolute;
  bottom: 40px;
  left: 0px;
}
@media (min-width: 360px) {
  .details .details__image p {
    width: 75%;
  }
}

@media (min-width: 1000px) {
  main.animate-init .details .details__image {
    opacity: 0;
    transform: translateX(30px);
  }
  main.animate-init .details.in-view .details__image {
    animation: fadeInScale 600ms ease 100ms forwards;
  }
}
.cta-box {
  margin-top: clamp(50px, 8.4635416667vw, 100px);
  background-color: #d6eef3;
  border: 1px solid #2d7e8e;
  border-radius: 30px;
  padding: 0 0 37px;
  overflow: hidden;
  text-align: center;
}
.cta-box h2 {
  color: #fff;
  font-size: clamp(32px, 5.2083333333vw, 50px);
  text-transform: uppercase;
  padding: 27px 20px;
  border-radius: 30px;
  background: radial-gradient(closest-side at 50% 50%, #348f22 0%, #266e17 100%);
}
.cta-box p {
  padding: 0 20px;
  margin-top: 32px;
}
.cta-box a.cta_button {
  display: inline-block;
  margin: 32px auto 0;
  border-radius: 30px;
  background-color: #ffffff;
  width: calc(100% - 40px);
  display: grid;
  place-items: center;
  padding: 30px 8px;
  box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}

.summary > div {
  padding: clamp(60px, 9.765625vw, 98px) 0 0;
  text-align: center;
}
.summary > div > h2 {
  margin-top: clamp(20px, 3.90625vw, 40px);
  font-size: clamp(24px, 3.6458333333vw, 32px);
  margin-bottom: 30px;
}

.summary__small-text {
  font-weight: 500;
  font-size: 1rem;
  margin: 20px 0;
}

.summary__icon {
  width: 73px;
  height: 73px;
  display: block;
  margin: 0 auto clamp(20px, 3.90625vw, 40px);
}

@media (min-width: 1200px) {
  .summary_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
  }
}
.summary_header img {
  max-width: 439px;
  width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto;
}
@media (min-width: 1200px) {
  .summary_header img {
    margin: 0;
    order: 1;
  }
}
.summary_header header {
  max-width: 834px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .summary_header header {
    order: 2;
    text-align: left;
  }
}
.summary_header h1 {
  font-size: clamp(32px, 5.2083333333vw, 50px);
  line-height: 1.3;
}
.summary_header h2 {
  font-size: clamp(24px, 3.6458333333vw, 30px);
  margin-bottom: clamp(30px, 5.859375vw, 55px);
  line-height: 1.3;
  margin-top: 8px;
}
.summary_header p {
  font-weight: 500;
  font-size: clamp(20px, 2.6041666667vw, 22px);
}

.summary__box {
  border: 1px solid #2d7e8e;
  background-color: #d6eef3;
  border-radius: 30px;
  padding: 10px;
  max-width: 956px;
  margin: 0 auto;
}
.summary__box > p {
  font-size: 18px;
  margin-bottom: 10px;
}

.summary__phone {
  position: relative;
  background-color: white;
  border-radius: 30px;
  box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  overflow: hidden;
}
@media (min-width: 980px) {
  .summary__phone {
    min-height: 104px;
  }
}

.phone-button {
  background-color: red;
  display: block;
  padding: 4px 6px;
  background-color: #348f22;
  font-weight: 700;
  font-size: clamp(24px, 4.1666666667vw, 32px);
  width: 100%;
}
@media (min-width: 980px) {
  .phone-button {
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background-color: transparent;
  }
}
.phone-button.hidden {
  display: none;
}
@media (min-width: 980px) {
  .phone-button.hidden {
    display: block;
  }
  .phone-button.hidden .button_icon {
    pointer-events: none;
  }
  .phone-button.hidden .button_text {
    transform: scaleX(0);
  }
}
.phone-button .button_icon {
  display: none;
}
@media (min-width: 980px) {
  .phone-button .button_icon {
    display: block;
    width: 214px;
    background-color: #348f22;
    border-radius: 30px;
    position: absolute;
    z-index: 2;
    inset: 0 auto 0 0;
    display: grid;
    place-items: center;
  }
  .phone-button .button_icon img {
    width: 80px;
    height: 80px;
  }
}
.phone-button .button_text {
  color: #fff;
}
@media (min-width: 980px) {
  .phone-button .button_text {
    position: absolute;
    border-radius: 30px;
    background-color: #348f22;
    z-index: 1;
    display: grid;
    place-items: center;
    inset: 0;
    padding-left: 214px;
    transition: transform 250ms ease;
    transform-origin: left center;
  }
}

.phone-link {
  color: #ff7700;
  font-size: clamp(32px, 6.5104166667vw, 70px);
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px;
  display: block;
}
@media (min-width: 980px) {
  .phone-link {
    position: absolute;
    inset: 0;
    padding-left: 214px;
    display: grid;
    place-items: center;
    line-height: 1.3;
  }
}
.phone-link.hidden {
  display: none;
}
@media (min-width: 980px) {
  .phone-link.hidden {
    display: block;
  }
}/*# sourceMappingURL=styles.css.map */