@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

@font-face {
  font-family: "Impact";
  src: url("../../font/impact.woff") format("woff"), url("../../font/unicode.impact.woff") format("woff"), url("../../font/Impacted.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: black;
  background-color: #faf9eb;
}

.text-linet {
  text-decoration: line-through;
}

.big-box {
  display: flex;
  justify-content: center;
}
@media (max-width: 400px) {
  .big-box {
    display: block;
  }
}

.site-header {
  width: 100%;
  height: 150px;
  background-image: url("../img/header-background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-header__container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0 64px;
  width: 100%;
  height: 100%;
}
.site-header__text {
  font-family: "Impact", Arial, sans-serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 1.22em;
  color: #343434;
  margin: 0;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.site-header__text--highlight {
  font-size: 60.89px;
  color: #00af12;
}

/* Artykuł */
.article {
  max-width: 652px;
  margin: 0 auto;
  padding: 20px 20px;
  font-family: "Times New Roman", serif;
  border: 1px solid #8e8e8e;
  margin-top: 24px;
  background-color: #fff;
}
.article__header {
  margin-bottom: 30px;
}
.article__title {
  font-size: 44px;
  font-weight: 400;
  line-height: 1.15em;
  margin: 0 0 15px 0;
  color: #343434;
}
.article__title span {
  color: #cf0000;
  font-weight: bold;
}
.article__subtitle {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 15px 0;
  color: #343434;
}
.article__subtitle span {
  color: #00af12;
  font-weight: bold;
}
.article__divider {
  width: 100%;
  height: 1px;
  background-color: #e5e5e5;
  border: none;
  margin: 0;
}
.article__content {
  margin-top: 30px;
}
.article__text {
  font-size: 16px;
  line-height: 1.625em;
  margin: 0 0 5px 0;
}
.article__text--highlighted {
  font-weight: 700;
  font-size: 18px;
  padding: 15px;
  background-color: #ffff7f;
  margin: 30px 0;
}
.article__list {
  margin: 0 0 20px 20px;
  padding: 0;
}
.article__list-item {
  font-size: 16px;
  line-height: 1.625em;
  font-weight: bold;
}
.article__figure {
  margin: 30px 0;
  text-align: left;
  position: relative;
}
.article__image {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.article__caption {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4em;
  color: #ffffff;
  padding: 8px;
  position: absolute;
  bottom: 10px;
  background-color: #343434;
  font-style: italic;
}
@media (max-width: 500px) {
  .article__caption {
    font-size: 10px;
  }
}
.article__subtitle-h2 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.44em;
  margin: 30px 0 20px;
}

/* Testimoniale */
.testimonials {
  margin: 30px 0;
}

.testimonial {
  display: flex;
  gap: 16px;
  padding: 16px;
  background-color: #ffff7f;
  margin-bottom: 20px;
}
.testimonial__image-container {
  flex-shrink: 0;
  width: 64px;
  height: 69px;
  overflow: hidden;
}
.testimonial__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.625em;
  margin: 0;
}
.testimonial__text {
  font-size: 16px;
  font-style: italic;
  line-height: 1.625em;
  margin: 0;
}
.testimonial__author {
  font-size: 16px;
  line-height: 1.625em;
  margin: 0;
  text-align: right;
}
.testimonial__author span {
  font-weight: bold;
}

.red {
  color: #cf0000;
  font-weight: bold;
}

.green {
  font-weight: bold;
  color: #00af12;
}

/* Sekcja przed/po */
.before-after {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;
  padding: 20px 16px 13px;
  background-color: #e5e5e5;
  margin: 30px 0;
  max-width: 652px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.before-after__images {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 0 16px;
}
.before-after__image-container {
  flex: 1;
  position: relative;
  background-color: #f1f1f1;
  border: 2px solid #8e8e8e;
  padding-top: 0;
  text-align: center;
  height: 320px;
}
.before-after__image {
  max-width: 270px;
  height: auto;
  margin-top: -2px;
}
.before-after__test-card {
  position: absolute;
  width: 137px;
  height: 105px;
  -o-object-fit: cover;
     object-fit: cover;
}
.before-after__test-card--before {
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.before-after__test-card--after {
  bottom: -50px;
  right: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.before-after__description {
  width: 100%;
}
.before-after__text {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.4em;
  margin: 0 0 5px 0;
  color: #000000;
  font-style: italic;
}

/* Notatka z flagą */
.notice {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 12px 20px;
  margin: 30px 0;
}
.notice__flag {
  flex-shrink: 0;
  width: 78px;
  height: 102px;
}
.notice__flag-image {
  width: 100%;
  height: auto;
}
.notice__text {
  font-size: 16px;
  line-height: 1.625em;
  margin: 0;
}

/* Bullet points */
.bullet-points {
  margin: 30px 0;
}
.bullet-points__header {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.625em;
  margin: 0 0 8px 0;
}
.bullet-points__list {
  list-style: none;
  padding: 0 0 0 24px;
  margin: 0 0 8px 0;
}
.bullet-points__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}
.bullet-points__icon {
  display: inline-block;
  width: 34px;
  height: 27.52px;
  background-image: url("../img/arrow-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.bullet-points__text {
  font-size: 16px;
  line-height: 1.625em;
  margin: 0;
}
.bullet-points__footer {
  font-size: 16px;
  line-height: 1.625em;
  margin: 0;
}

/* CTA */
.cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 30px 0;
  text-align: center;
}
.cta__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5em;
  text-transform: uppercase;
  margin: 0;
}
.cta__subtitle {
  font-size: 18px;
  line-height: 1.44em;
  margin: 0;
}
.cta__price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin: 10px 0;
}
.cta__price-normal {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.44em;
  margin: 0;
}
.cta__price-special {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.44em;
  margin: 0;
}

/* Warning */
.promo-warning {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 12px 20px;
  background-color: #ffff7f;
  margin: 30px 0;
}
.promo-warning__icon {
  flex-shrink: 0;
  width: 72px;
  height: 69px;
  background-image: url("../img/alert-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.promo-warning__text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.44em;
  color: #000000;
  margin: 0;
}

/* CTA Button */
.cta-button {
  display: block;
  max-width: 100%;
  margin: 30px auto;
  padding: 15px 20px;
  color: #0000ff;
  font-family: "Open Sans", sans-serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.4em;
  text-align: left;
  text-decoration: none;
  border-radius: 5px;
  text-decoration: underline;
}
.cta-button:first-of-type {
  padding-left: 0;
}

/* Callpage (sekcja z refundacją) */
.callpage {
  max-width: 964px;
  margin: 0 auto;
  padding: 20px 0px 10px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  border: 1px solid #8e8e8e;
  margin-top: 24px;
  background-color: #fff;
}
.callpage__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.callpage__title {
  font-family: "Times New Roman", serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 1.15em;
  text-align: center;
  color: #343434;
  margin: 0;
}
.callpage__visual {
  max-width: 400px;
}
.callpage__content {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 750px;
}
.callpage__text {
  font-family: "Times New Roman", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3em;
  text-align: center;
  color: #343434;
  margin: 0;
}
.callpage__link {
  display: block;
  max-width: 100%;
  color: #0000ff;
  font-family: "Open Sans", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4em;
  text-align: center;
  text-decoration: underline;
}
.callpage__hours {
  font-family: "Times New Roman", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.625em;
  text-align: center;
  color: #343434;
  margin: 0;
}

.callpage-note {
  max-width: 100%;
  width: 100%;
  background-color: #e5e5e5;
  padding: 24px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}
.callpage-note__text {
  max-width: 652px;
  margin: 0 20px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.5714285714em;
  color: #343434;
  text-align: center;
}

.comment-form {
  max-width: 768px;
  margin: 0 auto;
  padding: 10px 20px;
}
.comment-form__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.comment-form__field {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #e5e5e5;
  border: none;
  border-radius: 4px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
}
.comment-form__field--message {
  height: 120px;
  resize: vertical;
  margin: 16px 0;
}
.comment-form__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.comment-form__button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.comment-form__button--primary {
  background-color: #e79a16;
  color: #ffffff;
}
.comment-form__button--primary:hover {
  background-color: #b87b12;
}
.comment-form__button--ghost {
  background-color: #8e8e8e;
  color: #ffffff;
}
.comment-form__button--ghost:hover {
  background-color: #757575;
}
.comment-form__error {
  color: #cf0000;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  display: none;
}
.comment-form__error--visible {
  display: block;
}

.comments-divider {
  width: 100%;
  height: 1px;
  background-color: #e5e5e5;
  margin: 0;
  border: none;
}

.comments-list {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 20px 40px;
}
@media (max-width: 400px) {
  .comments-list {
    padding-left: 0;
    padding-right: 0;
  }
}

.comment-wrap {
  display: flex;
  gap: 16px;
  padding: 30px 20px;
  border-bottom: 1px solid #e5e5e5;
  width: 100%;
}
.comment-wrap__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #e5e5e5;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.comment-wrap__avatar-placeholder {
  width: 100%;
  height: 100%;
  background-color: #8e8e8e;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 20px;
}
.comment-wrap__content {
  flex: 1;
}
.comment-wrap__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.comment-wrap__author {
  font-weight: 700;
  font-size: 16px;
}
.comment-wrap__date {
  color: #8e8e8e;
  font-size: 14px;
}
.comment-wrap__text {
  margin: 0;
  line-height: 1.5;
}

.footer {
  padding: 20px 0;
  font-size: 12px;
  color: #666;
  text-align: center;
}
.footer .container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer .copyright {
  margin-bottom: 10px;
}
.footer .attachments {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}
@media (max-width: 400px) {
  .footer .attachments {
    flex-direction: column;
    gap: 10px;
  }
}
.footer__text {
  margin: 0 0 5px;
  font-size: 12px;
  color: #666;
  text-decoration: none;
}
.footer__text:hover {
  text-decoration: underline;
}

.body-container {
  max-width: 1200px;
  margin: 0 auto;
}

.main-content {
  display: flex;
  padding: 0 20px;
  gap: 30px;
}
@media (max-width: 500px) {
  .main-content {
    padding: 0 0;
    margin: 10px;
  }
}

.comments-container {
  max-width: 656px;
  margin: 0 auto;
  padding: 0 10px;
  border: 1px solid #8e8e8e;
  margin-top: 30px;
  background-color: #fff;
}

.banner {
  width: 300px;
  max-height: -moz-fit-content;
  max-height: fit-content;
  border: 1px solid #8e8e8e;
  background-color: #ebebeb;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1px 0;
  margin-top: 25px;
  flex-shrink: 0;
}
.banner a {
  text-decoration: none;
}
.banner__header {
  background-color: #00af12;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 9px 4px;
  box-sizing: border-box;
}
.banner__fire-icon {
  font-size: 28px;
}
.banner__title {
  font-family: "Times New Roman", serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 0.9285714286em;
  text-transform: uppercase;
  color: #ffff7f;
  margin: 0;
  text-align: center;
}
.banner__text {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.15em;
  text-align: center;
  color: #000000;
  margin: 8px 20px;
  box-sizing: border-box;
}
.banner__visual {
  width: 288px;
  height: 198px;
  background-image: url("../img/banner-visual-2f704b.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 8px 0;
}
.banner__button {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15em;
  color: #0000ff;
  text-decoration: none;
  padding: 5px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
  margin-bottom: auto;
  text-decoration: underline !important;
  padding-bottom: 16px;
}
.banner__button:hover {
  text-decoration: underline;
}

@media (max-width: 1000px) {
  .banner {
    display: none;
  }
}
@media (max-width: 1160px) {
  .body-container {
    width: 768px;
  }
  .site-header__container {
    padding: 0 40px;
  }
  .site-header__text {
    font-size: 42px;
    text-align: center;
  }
  .site-header__text--highlight {
    font-size: 56px;
  }
  .cta__price {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .body-container {
    width: 500px;
  }
  .site-header__container {
    padding: 0 30px;
    gap: 10px;
  }
  .site-header__text {
    font-size: 36px;
  }
  .site-header__text--highlight {
    font-size: 48px;
  }
  .article {
    max-width: 500px;
  }
  .article__title {
    font-size: 36px;
  }
  .article__subtitle {
    font-size: 18px;
  }
  .testimonial {
    flex-direction: column;
    align-items: center;
  }
  .testimonial__image-container {
    width: 80px;
    height: 80px;
  }
  .before-after__images {
    flex-direction: column;
    gap: 55px;
  }
  .before-after__test-card {
    width: 100px;
    height: 76px;
  }
  .notice {
    flex-direction: column;
  }
  .cta__title {
    font-size: 20px;
  }
  .cta__price {
    flex-direction: column;
    gap: 10px;
  }
  .cta-button {
    width: 100%;
    font-size: 22px;
  }
  .comment-form__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .comment-form__button {
    width: 100%;
  }
  .callpage__title {
    font-size: 36px;
  }
  .callpage__link {
    width: 100%;
    font-size: 32px;
  }
}
@media (max-width: 500px) {
  .body-container {
    width: 100%;
  }
  .site-header {
    height: auto;
    padding: 20px 0;
  }
  .site-header__container {
    flex-direction: column;
    padding: 0 20px;
    gap: 5px;
  }
  .site-header__text {
    font-size: 32px;
  }
  .site-header__text--highlight {
    font-size: 42px;
  }
  .article {
    max-width: 100%;
    padding: 20px 10px;
  }
  .article__title {
    font-size: 30px;
  }
  .before-after__test-card {
    width: 80px;
    height: 61px;
  }
  .comments-section {
    max-width: 100%;
    padding: 20px 16px 40px;
  }
  .comment-wrap {
    padding: 20px 10px;
  }
  .comment-wrap__avatar {
    width: 40px;
    height: 40px;
  }
  .callpage {
    padding: 20px 10px 10px;
    margin: 20px;
    margin-top: 24px;
  }
  .callpage__title {
    font-size: 30px;
  }
  .callpage__visual {
    max-width: 100%;
  }
  .callpage__link {
    font-size: 32px;
  }
}
@media (max-width: 400px) {
  .comments-container {
    max-width: 100%;
    padding: 0 5px;
  }
  .body-container {
    max-width: 100%;
  }
  .main-content {
    padding: 0 5px;
    display: block;
  }
  .article {
    padding: 15px 8px;
  }
  .article__title {
    font-size: 26px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .article__text {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .testimonial {
    padding: 12px 8px;
  }
  .testimonial__image-container {
    width: 50px;
    height: 50px;
  }
  .testimonial__text {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .before-after {
    padding: 15px 8px 10px;
  }
  .before-after__images {
    padding: 0 8px;
  }
  .before-after__test-card {
    width: 60px;
    height: 46px;
  }
  .before-after__text {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .bullet-points__icon {
    width: 25px;
    height: 20px;
  }
  .bullet-points__text {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .notice {
    padding: 8px 12px;
  }
  .notice__text {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .promo-warning {
    padding: 8px 12px;
  }
  .promo-warning__text {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .comment-wrap {
    gap: 8px;
    padding: 15px 8px;
  }
  .comment-wrap__avatar {
    width: 35px;
    height: 35px;
  }
  .comment-wrap__text {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .comment-form {
    padding: 10px 8px;
  }
  .comment-form__field {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .cta-button {
    padding: 12px 15px;
    font-size: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .callpage__title {
    font-size: 26px;
  }
  .callpage__link {
    font-size: 32px;
  }
}
@media (max-width: 320px) {
  .article {
    padding: 10px 5px;
  }
  .article__title {
    font-size: 24px;
    line-height: 1.1em;
  }
  .article__subtitle {
    font-size: 16px;
  }
  .testimonial {
    padding: 10px 5px;
  }
  .testimonial__image-container {
    width: 45px;
    height: 45px;
  }
  .testimonial__title {
    font-size: 14px;
  }
  .testimonial__text {
    font-size: 14px;
  }
  .testimonial__author {
    font-size: 14px;
  }
  .before-after {
    padding: 12px 5px 8px;
  }
  .before-after__test-card {
    width: 50px;
    height: 38px;
  }
  .comment-wrap {
    padding: 12px 5px;
  }
  .comment-wrap__avatar {
    width: 30px;
    height: 30px;
  }
  .comment-form {
    padding: 8px 5px;
  }
  .site-header__text {
    font-size: 28px;
  }
  .site-header__text--highlight {
    font-size: 36px;
  }
  .cta-button {
    padding: 10px 12px;
    font-size: 18px;
  }
  .comments-container {
    padding: 0 2px;
  }
  .main-content {
    padding: 0 2px;
  }
  .callpage__title {
    font-size: 24px;
  }
  .callpage__link {
    font-size: 18px;
  }
}/*# sourceMappingURL=style.css.map */