*,
*::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: Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  background-color: #efefef;
  color: #343434;
  letter-spacing: 0;
  line-height: 1.57;
  min-height: 100vh;
}
@supports (min-height: 100svh) {
  body {
    min-height: 100svh;
  }
}

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

.bold {
  font-weight: 700;
}

.red {
  color: #ff0000;
}

.green {
  color: #038110;
}

.yellow {
  color: #f7ff00;
}

.header {
  background-color: #fff;
  padding: 0.4375rem 0;
}
.header .logo {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3.3854166667vw, 1.625rem);
}
.header .logo img {
  width: clamp(60px, 10.0260416667vw, 77px);
  height: auto;
}
.header .logo div p:first-child {
  font-size: clamp(1.25rem, 3.125vw, 1.8125rem);
  text-transform: uppercase;
  line-height: 1.1;
}
.header .logo div p:first-child span {
  font-weight: 900;
}
.header .logo div p:last-child {
  font-size: clamp(1.15rem, 2.6041666667vw, 1.5625rem);
  line-height: 1.1;
  font-family: "Times New Roman", serif;
  font-style: italic;
}

.footer {
  background-color: #343434;
  color: #fff;
  font-size: 13px;
  padding: clamp(2rem, 5.2083333333vw, 2.5rem) 0 clamp(2.5rem, 6.25vw, 3rem);
}
.footer__copyright {
  max-width: 750px;
  text-align: center;
  line-height: 1.42;
}
.footer__copyright p:not(.footer__text),
.footer__copyright .footer__links {
  margin-bottom: 1rem;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  row-gap: 0.5rem;
}
.footer__links a {
  padding: 0 6px;
  line-height: 1;
  color: #efefef;
  transition: color 150ms ease-in-out;
}
.footer__links a:not(:last-child) {
  border-right: 1px solid #fff;
}
.footer__links a:hover {
  color: #fff;
}
.footer__text {
  margin-bottom: 0.75rem;
}

.main {
  margin: clamp(1rem, 3.125vw, 1.875rem) auto 0;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 992px) {
  .main {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 61.5rem;
    width: calc(100% - clamp(0.5rem, 2.6041666667vw, 2.5rem) * 2);
    margin: clamp(1rem, 3.125vw, 1.875rem) auto clamp(3rem, 8.0729166667vw, 4.75rem);
  }
}
.main .aside {
  display: none;
}
@media (min-width: 992px) {
  .main .aside {
    display: block;
    min-width: 312px;
    background-color: #fff;
    border: 2px solid #c1c1c1;
    text-align: center;
  }
}
@media (min-height: 615px) {
  .main .aside {
    position: sticky;
    top: 30px;
  }
}
.main .aside__content {
  padding: 1.25rem 1.125rem 1.125rem;
  display: block;
}
.main .aside__content p {
  color: #000cb5;
  margin-bottom: 0.75rem;
  font-size: 1.1875rem;
  line-height: 1.26;
}
.main .aside__content span {
  font-weight: 900;
  font-size: 1.1875rem;
  line-height: 1.26;
  margin-bottom: 0.5rem;
  display: block;
}
.main .aside__content .aside__before img,
.main .aside__content .aside__after img {
  width: 100%;
  height: auto;
  display: block;
}
.main .aside__content .aside__after {
  margin: 1.25rem 0 0.75rem;
}
.main .aside__content .arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.625rem;
}
.main .aside__content .arrows img {
  animation: bounceDown 900ms infinite ease-in-out;
}
.main .aside__content .arrows img:nth-child(1) {
  animation-delay: 0ms;
}
.main .aside__content .arrows img:nth-child(2) {
  animation-delay: 300ms;
}
.main .aside__content .arrows img:nth-child(3) {
  animation-delay: 600ms;
}
@keyframes bounceDown {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
}
.main .aside__link {
  display: block;
  width: 100%;
  background-color: #f7ff00;
  color: #c70000;
  font-size: 1.1875rem;
  line-height: 1.15;
  font-weight: 700;
  padding: 1rem 1.25rem;
  opacity: 0.85;
  transition: opacity 150ms ease-in-out;
}
.main .aside__link:hover {
  opacity: 1;
}
.main .aside:hover .aside__link {
  opacity: 1;
}

.main__wrapper {
  background-color: #fff;
  padding: 0.625rem 0.625rem clamp(1.5rem, 4.1666666667vw, 2.5rem);
}
.main__wrapper > p {
  margin-top: clamp(1rem, 2.6041666667vw, 1.5rem);
  max-width: 700px;
}
.main__wrapper h1 {
  color: #000;
  font-weight: 900;
  font-size: clamp(1.5rem, 3.90625vw, 2.1875rem);
  line-height: 1.3;
  max-width: 882px;
}
.main__wrapper h1 span {
  color: #c80000;
}

.info-box {
  background-color: #060606;
  color: #fff;
  padding: 0.375rem 0.75rem;
  font-weight: 700;
  max-width: 636px;
  margin-top: 0.875rem;
}
.info-box p {
  font-size: clamp(1.2rem, 3.125vw, 1.5rem);
  line-height: 1.3;
}
.info-box span {
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .info-box span {
    display: block;
  }
}

.features {
  margin-top: clamp(1rem, 2.6041666667vw, 1.5rem);
  font-weight: 700;
}
.features h2 {
  font-size: 0.875rem;
  line-height: 1.57;
  margin-bottom: 0.5rem;
}
.features ul li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.features ul li img {
  width: 24px;
  height: auto;
}
.features ul li:not(:last-child) {
  margin-bottom: 0.25rem;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  max-width: 587px;
  margin-top: clamp(1.5rem, 4.1666666667vw, 2rem);
}
.testimonials__item {
  background-color: #fffff1;
  padding: 1.25rem 1.125rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.125rem;
}
@media (min-width: 550px) {
  .testimonials__item {
    flex-direction: row;
  }
}
.testimonials__item > div {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.6041666667vw, 1.375rem);
}
.testimonials__item > div h3 {
  font-weight: 900;
  font-size: 0.875rem;
}
.testimonials__item > div img {
  max-width: 295px;
}
.testimonials__item > div p:last-child {
  text-align: right;
  font-weight: 900;
}
.testimonials__item > img {
  width: 109px;
  height: auto;
}

.features-box {
  margin: clamp(1rem, 2.6041666667vw, 1.5rem) 0 0.375rem;
  max-width: 554px;
  background-color: #e3ffef;
  padding: 1rem 1rem 1.25rem;
}
.features-box h2,
.features-box p {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 900;
}
.features-box ul {
  margin: 0.375rem 0 1.125rem;
}
.features-box ul li {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.features-box ul li span {
  line-height: 22px;
  padding-top: 1px;
}
.features-box ul li img {
  width: 22px;
  height: 22px;
}
.features-box ul li:not(:last-child) {
  margin-bottom: 0.375rem;
}

.before-after {
  max-width: 600px;
  margin: 1rem 0 0.625rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1rem;
  -moz-column-gap: 0.7rem;
       column-gap: 0.7rem;
}
@media (min-width: 550px) {
  .before-after {
    flex-direction: row;
    align-items: stretch;
  }
}
.before-after img {
  max-width: 230px;
  height: auto;
  width: 100%;
  margin-bottom: 0.5rem;
}
.before-after h3 {
  font-weight: 900;
  font-size: 0.875rem;
  margin-bottom: 2px;
  max-width: 235px;
}
.before-after ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
}
.before-after ul li:not(:last-child) {
  margin-bottom: 0.375rem;
}
.before-after ul li .icon {
  width: 10px;
  height: 14px;
  background-color: #ff0000;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
  transform: translateY(3px);
}
.before-after ul li .text {
  line-height: 1.4;
}
.before-after .before,
.before-after .after {
  padding: 1rem;
  width: 280px;
  min-width: 280px;
}
.before-after .before {
  border: 3px solid #ff0000;
  background-color: #ffe3e3;
}
.before-after .after {
  border: 3px solid #30ae27;
  background-color: #e5ffe3;
}
.before-after .after .icon {
  background-color: #30ae27;
}

.price-info {
  margin-top: clamp(1rem, 2.6041666667vw, 1.5rem);
  font-weight: 900;
}
.price-info p:last-child {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 1.75rem;
       column-gap: 1.75rem;
  row-gap: 0.5rem;
}
.price-info span {
  text-transform: uppercase;
}

.alert-box {
  max-width: 636px;
  border: 2px solid #000;
  background-color: #fcfcfc;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 1rem 1.375rem 1rem;
  margin-top: 1.75rem;
}
.alert-box img {
  max-width: 50px;
  min-width: 50px;
  width: 100%;
  height: auto;
}
.alert-box p span {
  color: #b90000;
  font-weight: 900;
}

.promotion {
  margin-top: clamp(1rem, 2.6041666667vw, 1.5rem);
  text-align: center;
  max-width: 636px;
}
.promotion h3 {
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.link__wrapper {
  max-width: 636px;
}

.link {
  position: relative;
  display: block;
  margin: 1.75rem auto 0;
  max-width: 386px;
  text-align: center;
  font-weight: 900;
  color: #ff0000;
  background-color: #ffff00;
  outline: 1px dashed #ff0000;
  outline-offset: -8px;
  border: 4px solid #d4d400;
  padding: 1rem 1.5rem;
  opacity: 0.8;
  transition: opacity 200ms ease-in-out;
}
@media (min-width: 420px) {
  .link {
    border: 4px solid transparent;
    -o-border-image: linear-gradient(-12.1deg, #969600 0, #969600 50%, #d4d400 0, #d4d400 100%) 1;
       border-image: linear-gradient(-12.1deg, #969600 0, #969600 50%, #d4d400 0, #d4d400 100%) 1;
  }
}
.link:hover {
  opacity: 1;
}

.comments {
  margin-top: clamp(3rem, 8.3333333333vw, 4rem);
  max-width: 636px;
}
.comments h2 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}
.comments form {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  border-bottom: 1px solid #e5e5e5;
}
.comments textarea {
  height: 76px;
}
.comments input,
.comments textarea {
  padding: 0.625rem;
  background-color: #e5e5e5;
  color: #000;
  resize: none;
  font-size: 0.875rem;
  font-weight: 600;
}
.comments input::-moz-placeholder, .comments textarea::-moz-placeholder {
  font-weight: 400;
}
.comments input::placeholder,
.comments textarea::placeholder {
  font-weight: 400;
}
.comments .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.comments .buttons button {
  padding: 0.625rem 1.875rem;
  font-size: 0.875rem;
  opacity: 0.85;
  transition: opacity 150ms ease-in-out;
}
.comments .buttons button:hover {
  opacity: 1;
}
.comments .buttons button[type=submit] {
  background-color: #000;
  color: #fff;
}
.comments .buttons button[type=button] {
  background-color: #8e8e8e;
  color: #fff;
}
.comments .picture-error {
  color: #cf0000;
  font-size: 0.75rem;
  opacity: 1;
  margin-bottom: 0.375rem;
  transition: opacity 150ms ease-in-out;
}
.comments .picture-error.hidden {
  opacity: 0;
}

.comments__content {
  margin-top: 1.875rem;
}
.comments__content .comment {
  display: flex;
  align-items: flex-start;
  gap: clamp(1rem, 2.6041666667vw, 1.25rem);
}
.comments__content .comment img {
  min-width: clamp(40px, 6.5104166667vw, 50px);
  max-width: clamp(40px, 6.5104166667vw, 50px);
  width: clamp(40px, 6.5104166667vw, 50px);
}
.comments__content .comment h3 {
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
  line-height: 1.1;
}
.comments__content .comments-wrapper .comment:not(:last-child) {
  margin-bottom: clamp(1.25rem, 3.125vw, 1.5rem);
}
.comments__content .added-comments .comment {
  margin-bottom: clamp(1.25rem, 3.125vw, 1.5rem);
}

/*------------------- SUMMARY ---------------------*/
.summary {
  margin: clamp(1rem, 3.125vw, 1.875rem) auto 0;
  width: 100%;
  max-width: 100%;
  background-color: #fff;
}
@media (min-width: 992px) {
  .summary {
    max-width: 61.5rem;
    width: calc(100% - clamp(0.5rem, 2.6041666667vw, 2.5rem) * 2);
    margin: clamp(1rem, 3.125vw, 1.875rem) auto clamp(3rem, 8.0729166667vw, 4.75rem);
  }
}

.summary__content {
  max-width: 636px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(1.5rem, 4.1666666667vw, 2.25rem) 1rem clamp(2rem, 4.9479166667vw, 2.625rem);
  text-align: center;
}
.summary__content h1 {
  color: #000cb5;
  font-size: clamp(1.75rem, 4.4270833333vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.summary__content .img-product {
  display: block;
  max-width: 300px;
  width: 100%;
  height: auto;
  margin: 1.25rem auto 1.5rem;
}
.summary__content > p:not(:first-of-type) {
  margin-top: 1.25rem;
}

.cta {
  border: 3px solid #910000;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 636px;
  display: block;
  margin: 0 auto;
  min-height: 58px;
  height: auto;
  display: grid;
  place-items: center;
  font-weight: bold;
  padding: 0.3rem 1rem;
  line-height: 1.2;
}
.cta span {
  pointer-events: none;
}

.cta--btn {
  color: #ff0000;
  font-size: clamp(1.5rem, 3.6458333333vw, 1.75rem);
  transition: color 150ms ease-in-out;
}
.cta--btn:hover {
  color: #910000;
}

.cta--link {
  color: #910000;
  font-size: 2rem;
  opacity: 0.85;
  transition: opacity 150ms ease-in-out;
}
.cta--link:hover {
  opacity: 1;
}
@media (min-width: 500px) {
  .cta--link {
    min-width: 400px;
  }
}/*# sourceMappingURL=styles.css.map */