@charset "UTF-8";
:root {
  /* Brand colors */
  --color-primary: #012e40;
  --color-secondary: #023859;
  --color-grey: #f2f2f2;
  --color-red: #ff0000;
  --color-green: #28ac00;
  --color-links: #0000ff;
  --color-yellow: #ecf23d;
  --color-light-green: #75c73d;
  --color-text-grey: #939292;
  /* Fonts */
  --font-main: "Roboto", sans-serif;
}

*,
*::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%;
  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: var(--font-main);
  background-color: var(--color-grey);
  color: #000000;
  line-height: 1.5;
}

.header {
  width: 100%;
  background-color: var(--color-primary);
}

.header__container {
  max-width: 1161px;
  width: 100%;
  margin: 0 auto;
  padding: 22px 16px;
}

.header__logo {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__container--center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__logo img {
  width: 35px;
  height: auto;
}
@media (min-width: 768px) {
  .header__logo img {
    width: 47px;
  }
}

.header__title {
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  padding-top: 16px;
}

.container {
  max-width: 1161px;
  width: 100%;
  margin: 20px auto clamp(40px, 6.5104166667vw, 80px);
}
@media (min-width: 1200px) {
  .container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    justify-content: space-between;
  }
}

.sidebar {
  display: none;
}
@media (min-width: 1200px) {
  .sidebar {
    display: block;
    min-width: 300px;
    width: 300px;
    flex-shrink: 0;
  }
}

.main__image {
  display: block;
  max-width: 750px;
  margin: 0 auto;
  width: 100%;
  height: auto;
}

.main__content {
  margin-bottom: 23px;
  background-color: #ffffff;
  font-size: 18px;
  border-radius: 10px;
  padding: clamp(30px, 4.5572916667vw, 40px) clamp(16px, 3.125vw, 36px);
}

.main__comments {
  background-color: #ffffff;
  padding: clamp(40px, 5.859375vw, 50px) clamp(16px, 3.125vw, 36px) clamp(30px, 4.5572916667vw, 40px);
}

.hero {
  margin-bottom: clamp(35px, 5.859375vw, 53px);
  text-align: center;
}

.hero__heading {
  font-size: clamp(32px, 3vw, 45px);
  font-weight: 700;
  color: var(--color-red);
  line-height: 1.1;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .hero__heading {
    font-size: clamp(28px, 8vw, 45px);
  }
}

.hero__description {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .hero__description {
    font-size: clamp(14px, 4vw, 18px);
  }
}

.conditions {
  margin-bottom: clamp(35px, 5.859375vw, 50px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 18px;
  color: #000000;
  line-height: 1.4;
}

.conditions__heading {
  font-weight: 700;
}

.conditions__list li {
  margin-bottom: 5px;
  padding-left: 27px;
  position: relative;
}

.conditions__list li::before {
  content: "•";
  position: absolute;
  left: 10px;
  font-weight: 700;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px;
}
@media (max-width: 650px) {
  .before-after {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
  }
}

.before-after__item img {
  max-width: 365px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0 auto;
}

.before-after__label {
  text-align: center;
  font-size: clamp(22px, 1.9vw, 29.124px);
  font-weight: 700;
  margin: 30px 0 10px;
}

.before-after__label--before {
  color: var(--color-red);
}

.before-after__label--after {
  color: var(--color-green);
}

.before-after__description {
  text-align: center;
  width: 100%;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.5;
}

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

.why-free__heading {
  font-size: clamp(20px, 3.2552083333vw, 30px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.why-free__highlight {
  color: #28ac00;
}

.why-free__subheading {
  font-size: clamp(20px, 3.2552083333vw, 30px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
}

.why-free__text {
  margin-bottom: 20px;
}

.why-free__price-old {
  font-weight: 400;
  color: var(--color-red);
  text-decoration: line-through;
  line-height: 1.4;
  margin-bottom: 10px;
}

.why-free__price-new {
  font-size: 47.116px;
  font-weight: 700;
  color: var(--color-green);
  line-height: 1;
  margin-bottom: clamp(20px, 3.2552083333vw, 30px);
}

.why-free__cta {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: var(--color-links);
  text-decoration: underline;
  line-height: 1.3;
  margin-bottom: 20px;
  cursor: pointer;
}

.why-free__important .why-free__highlight {
  font-weight: 700;
}

.comments__heading {
  font-size: clamp(20px, 3.2552083333vw, 30px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.comments__form {
  margin-bottom: 37px;
}

.comments__input {
  width: 100%;
  height: 42px;
  background-color: var(--color-grey);
  border-radius: 5px;
  padding: 0 20px;
  font-size: clamp(14px, 2.0833333333vw, 18px);
  font-weight: 400;
  color: #000000;
  line-height: 2.2;
  margin-bottom: 10px;
  border: none;
}

.comments__textarea {
  width: 100%;
  height: 132px;
  resize: none;
  background-color: var(--color-grey);
  border-radius: 5px;
  padding: 12px 20px;
  font-size: clamp(14px, 2.0833333333vw, 18px);
  font-weight: 400;
  color: #000000;
  line-height: 1.4;
  margin-bottom: 10px;
  border: none;
}

.comments__actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.comments__button {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 5px 16px;
  border-radius: 5px;
  font-size: clamp(14px, 2.0833333333vw, 18px);
  font-weight: 400;
  line-height: 1.4;
  border: none;
  cursor: pointer;
  opacity: 0.95;
  transition: opacity 200ms ease;
}
.comments__button:hover {
  opacity: 1;
}

.comments__error {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-red);
}

.comments__list {
  margin-bottom: 30px;
}

.comments__item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 650px) {
  .comments__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

.comments__avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 650px) {
  .comments__avatar {
    width: 60px;
    height: 60px;
  }
}

.comments__content {
  flex: 1;
}

.comments__header {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 9px;
}
@media (max-width: 650px) {
  .comments__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

.comments__author {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  line-height: 1.3;
}

.comments__date {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-grey);
  line-height: 1.2;
}

.comments__text {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  line-height: 1.5;
}

.comments__cta {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: var(--color-links);
  text-align: center;
  text-decoration: underline;
  line-height: 1.3;
  margin-top: 40px;
  cursor: pointer;
}

.hero__product {
  display: block;
  overflow: hidden;
  width: 300px;
  height: 400px;
  border-radius: 10px;
  background-image: url("../img/baner.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: grid;
  align-content: space-between;
  justify-content: stretch;
  padding: 20px 10px;
  cursor: pointer;
}

.hero__header {
  padding: 0 10px;
  width: 100%;
}

.hero__badge {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-secondary);
  text-align: center;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero__highlight-main {
  color: #75c73d;
  text-align: center;
  font-family: var(--font-main);
  font-size: 36px;
  font-weight: 700;
  line-height: 0.72;
  text-transform: uppercase;
}

.hero__highlight-sub {
  color: #fff;
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  background-color: #75c73d;
  text-transform: uppercase;
  text-align: center;
  margin-top: 5px;
}

.hero__cta {
  min-height: 45px;
  background-color: var(--color-red);
  border-radius: 100vmax;
  font-size: 22px;
  font-weight: 900;
  color: var(--color-yellow);
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.75);
  border: none;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 200ms ease;
}
.hero__cta:hover {
  background-color: rgb(231, 0, 0);
}

.footer {
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  padding: 0 16px 120px;
  font-size: 14px;
  font-family: var(--font-main);
  line-height: normal;
  opacity: 0.8;
}

.footer__text {
  margin-bottom: 16px;
}

.footer__links {
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  row-gap: 10px;
}
@media (max-width: 550px) {
  .footer__links {
    flex-direction: column;
  }
}
.footer__links a {
  padding: 0 6px;
  line-height: 1;
  opacity: 0.9;
  transition: opacity 200ms;
}
.footer__links a:not(:last-child) {
  border-right: 1px solid #000;
}
@media (max-width: 550px) {
  .footer__links a:not(:last-child) {
    border: none;
  }
}
.footer__links a:hover {
  opacity: 1;
}

.summary {
  background: #fff;
  width: 100%;
  max-width: 821px;
  margin: 20px auto 60px;
  padding: 40px clamp(20px, 3.6458333333vw, 36px) 30px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-size: 18px;
}

.summary__image {
  max-width: 202px;
  height: auto;
  width: 100%;
  margin: 0 auto;
}

.summary__heading {
  color: var(--Promo, #28ac00);
  font-size: 45px;
  font-weight: 700;
  line-height: normal;
}

.summary__intro {
  font-weight: 700;
}

.red {
  color: #f00;
}

.green {
  color: #28ac00;
}

.summary__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.summary__cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e68f03;
  color: #fff;
  border-radius: 20px;
  min-height: 90px;
  padding: 10px clamp(16px, 2.6041666667vw, 28px);
  text-align: center;
  font-size: clamp(25px, 3.90625vw, 35px);
  font-weight: 700;
  line-height: normal;
  transition: background-color 200ms ease;
}
.summary__cta:hover {
  background-color: #e3670f;
}

.summary__phone {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  line-height: normal;
  border-radius: 20px;
  border: 5px solid #28ac00;
  background: rgba(255, 255, 255, 0);
  color: var(--Promo, #28ac00);
  text-align: center;
  font-family: Roboto;
  font-size: clamp(35px, 6.5104166667vw, 65px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.hidden {
  display: none;
}/*# sourceMappingURL=styles.css.map */