/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Allura&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.heading {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 700;
  color: white;
  font-family: "Helvetica Neue", sans-serif;
  margin-bottom: 2rem;
}
@media (min-width: 996px) {
  .heading {
    font-size: 4rem;
  }
}

.title {
  font-size: 2.6rem;
  font-weight: 700;
  color: white;
  background-color: #008736;
  padding: 0.5rem 2rem;
  text-align: center;
  font-family: "Georgia", sans-serif;
}

.lead {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 400;
  font-family: "Helvetica Neue", sans-serif;
}
@media (min-width: 996px) {
  .lead {
    font-size: 2.6rem;
  }
}

.box__title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin: 1rem 0 2rem;
}

.paragraph__roboto {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.paragraph__georgia {
  font-family: "Georgia", sans-serif;
  font-size: 1.6rem;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.paragraph__red {
  font-family: "Georgia", sans-serif;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 600;
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
  color: red;
  text-align: center;
  background-color: #feecee;
}

.text-underline {
  text-decoration: underline;
}

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

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

.text-white {
  color: white;
}

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

.bg-gray {
  background-color: #feecee;
}

.bg-blue {
  background-color: #e4f8ec;
}

.bg-red {
  background-color: #d45815;
}

.bg-purple {
  background-color: #7a0db8;
}

.bg-purple-light {
  background-color: #dd16f7;
}

.bg-blue-light {
  background-color: #0ab6f7;
}

.bg-green-light {
  background-color: #13bab4;
}

.text-red {
  color: #ff0000;
}

.text-green {
  color: #0fe800;
}

.text-darkGreen {
  color: #008000;
}

.site-wrapper {
  width: 100%;
  background-color: #dcdcdc;
  position: relative;
}

.img-wrapper {
  max-width: 60rem;
  margin: 0 auto 1.5rem;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 958px;
  background-color: white;
}

.btn {
  display: block;
  box-shadow: inset 0px 1px 0px 0px #ffffff;
  border: none;
  width: 100%;
  border-radius: 5px;
  font-size: 22px;
  font-weight: 700;
  line-height: 25px;
  color: #fff;
  text-shadow: 0px -1px 1px #64799e;
  text-decoration: underline;
  padding: 12px 10px;
  cursor: pointer;
  background-color: #0083b2;
}
@media (min-width: 996px) {
  .btn {
    font-size: 20px;
    width: auto;
  }
}

.timer_hidden_aside {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  font-weight: 600;
  background-color: #d50414;
  color: white;
  z-index: 2;
}

.display_on {
  display: flex;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth !important;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  color: #000;
  min-width: 360px;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 38px;
  margin-top: 20px;
  padding: 5px auto;
}

h2 {
  font-size: 32px;
  line-height: 38px;
}

h3 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
  line-height: 28px;
}

h4 {
  font-size: 18px;
  line-height: 23px;
}

.regular-text {
  text-align: left;
  margin-top: 20px;
  font-size: 14px;
  line-height: 24px;
}
.regular-text b {
  font-weight: bold;
}

.regular-href {
  font-size: 18px;
  color: #0dbe00;
  font-size: 18px;
  font-weight: 600;
  line-height: 36px;
}

.special-offert {
  font-size: 16px;
  line-height: 24px;
  color: red;
  margin: 20px 0;
}

.font-1 {
  font-family: "Abril Fatface", cursive;
  color: #9b2226;
  letter-spacing: 7px;
}

.font-2 {
  font-family: "Allura", cursive;
  color: #000;
  letter-spacing: 3px;
}

.formWrapper {
  max-width: 660px;
  width: 100%;
  position: relative;
  padding: 40px 0px;
  text-align: left;
}
.formWrapper .partnersWrapper {
  margin: 1rem 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.formWrapper .partnersWrapper .partnersIcon {
  max-width: 100%;
  width: auto;
  margin: 0 4px;
}
.formWrapper__title {
  width: auto;
  text-align: left;
  font-size: 30px;
  font-weight: 700;
  color: #0083b2;
  position: absolute;
  top: -14px;
  left: 20px;
  z-index: 0;
  padding: 0;
  margin: 0;
}
.formWrapper__title::before {
  content: "";
  width: 100%;
  height: 50%;
  display: block;
  position: inherit;
  background: #ffffff;
  top: 0;
  left: 0;
  z-index: -1;
}
.formWrapper .form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Poppins", sans-serif;
}
.formWrapper .form__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.formWrapper .form__row {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 1rem;
}
@media (min-width: 996px) {
  .formWrapper .form__row {
    max-width: 50rem;
    flex-direction: row;
  }
}
.formWrapper .form__column {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
@media (min-width: 996px) {
  .formWrapper .form__column {
    max-width: 24rem;
  }
}
.formWrapper .form__split {
  padding: 0 0.5rem;
}
.formWrapper .form__gridWrapper {
  display: grid;
  grid-template-columns: 20% 80%;
}
.formWrapper .form__control {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}
@media (min-width: 996px) {
  .formWrapper .form__control {
    max-width: 24rem;
  }
}
.formWrapper .form #charNum {
  position: absolute;
  right: 5px;
  font-size: 12px;
  color: gray;
  bottom: 2px;
}
.formWrapper .form__controlCheckbox {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (min-width: 996px) {
  .formWrapper .form__controlCheckbox {
    display: block;
    max-width: 28rem;
  }
}
.formWrapper .form__label {
  font-size: 1.4rem;
  font-weight: 700;
}
@media (min-width: 996px) {
  .formWrapper .form__label {
    width: 100%;
    max-width: 18rem;
    text-align: right;
    margin-right: 1rem;
    font-size: 1.6rem;
  }
}
.formWrapper .form__select {
  background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+) no-repeat 95% 50%;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 24px;
  border: 1px solid #737373;
  font-size: 16px;
  color: black;
  background-color: #fff;
  padding: 0 5px;
}
.formWrapper .form__textarea {
  width: 100%;
  height: 100px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  padding: 5px;
  resize: none;
}
.formWrapper .form__label.required {
  position: relative;
}
.formWrapper .form__label.required::before {
  content: "*";
  color: #ff0000;
}
.formWrapper .form__input {
  width: 100%;
  height: 2.4rem;
  font-size: 1.6rem;
  padding: 0 5px;
  outline: 0;
}
.formWrapper .form__phoneSelect {
  background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+) no-repeat 95% 50%;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 2.4rem;
  color: black;
  width: 8rem;
  text-align: center;
  border: 1px solid #737373;
  font-size: 16px;
  background-color: #fff;
  padding: 0 5px;
}
.formWrapper .form__phoneInput {
  padding: 0 5px;
  width: calc(100% - 90px);
  margin-left: auto;
}
.formWrapper .form #regulation__checkbox {
  width: 20px;
  height: 20px;
  margin: 0 5px 0 0;
  flex-shrink: 0;
  float: left;
}
.formWrapper .form__checkbox {
  color: #3d3d3d;
  font-size: 14px;
  line-height: 20px;
  margin: 2px 0 0;
}
.formWrapper .form__error {
  color: red;
  display: none;
}

.page-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  margin-left: -20px;
  margin-right: -20px;
}
.page-footer p,
.page-footer a {
  color: #aaa;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  text-align: center;
  font-family: "Roboto", sans-serif;
}
.page-footer a {
  text-decoration: underline;
  padding: 0 5px;
}
.page-footer .links {
  padding: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 576px) {
  .page-footer .links {
    flex-direction: row;
  }
}
.page-footer .footer-row {
  padding: 20px 20px;
}
.page-footer .footer-bibliography {
  text-align: left;
  padding: 20px;
}
.page-footer .footer-bibliography-heading {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  color: #aaa;
  font-size: 12px;
  line-height: 1.4em;
  text-align: left;
  margin-bottom: 5px;
}
.page-footer .footer-bibliography-list {
  font-size: 12px;
  padding-left: 20px;
}
.page-footer .footer-bibliography-list > li {
  list-style: decimal;
  font-weight: 400;
  line-height: 1.4em;
  font-family: "Roboto", sans-serif;
  color: #aaa;
  margin-bottom: 3px;
}
@media (max-width: 768px) {
  .page-footer {
    background-color: #051923;
  }
  .page-footer .footer-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .page-footer .footer-links a {
    margin-bottom: 10px;
  }
}
.page-footer .footer-bottom {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: #031117;
  margin: 40px 0 0;
  padding: 20px;
}
@media (min-width: 996px) {
  .page-footer .footer-bottom {
    display: none;
  }
}
.page-footer .footer-bottom .scroll-up {
  width: 45px;
  height: 45px;
  cursor: pointer;
  background: url("../img/arrow_top.png");
  background-position: right center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin: 0;
}

.section-mobile {
  font-family: "Roboto", sans-serif;
  display: none;
}

.section-desktop {
  display: block;
}

.mobile-counter {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 20px 15px;
  border: 1px solid #dddee3;
  margin: 15px 0;
}
.mobile-counter__title {
  margin: 0 5px 0 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}
.mobile-counter__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-counter__box {
  background-color: #d4d5da;
  display: block;
  width: 27px;
  padding: 0 5px;
  height: 44px;
  margin: 1px;
  color: #000;
  font-size: 22px;
  font-weight: 700;
  line-height: 44px;
  text-align: center;
}

.text-wrapper {
  color: #000;
}
.text-wrapper .mobile-heading {
  color: #000;
  font-size: 24px;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.text-wrapper .mobile-paragraph {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
}
.text-wrapper .text-green {
  color: green;
}

.product-mobile {
  background-color: #146388;
  margin: 60px -20px 0;
  padding-top: 50px;
  min-height: 150px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.product-mobile .product-mobile-img {
  max-width: 280px;
}
.product-mobile .product-mobile-price {
  width: 125px;
  height: 125px;
  background-color: #f02049;
  border: 5px solid #fff;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  right: 55%;
  top: 0;
  margin: -40px 0 0 -5px;
}
.product-mobile .price-top {
  width: 115px;
  height: 57.5px;
  background-color: #000;
  color: #e6e6e6;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  text-decoration: line-through;
  min-height: 30px;
  border-top-left-radius: 110px;
  border-top-right-radius: 110px;
  padding: 10px;
  border-bottom: 20px solid #f02049;
}
.product-mobile .price-new {
  color: #e6e6e6;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-top: -5px;
  line-height: 30px;
}

.form-wrapper {
  width: 100%;
  background-color: #f0f0f3;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #707070;
}
.form-wrapper h1 {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  margin: 0 auto !important;
  background: transparent !important;
  max-width: 100% !important;
  padding-bottom: 30px;
}
.form-wrapper .steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.form-wrapper .steps__wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-wrapper .steps__inner {
  text-align: center;
  width: 100px;
}
.form-wrapper .steps__text {
  color: #8a8a8a;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
}
.form-wrapper .progress {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 40px 0;
}
.form-wrapper .progress__dot {
  max-width: 15px;
  width: 100%;
  height: 15px;
  border-radius: 100%;
  border: 2px solid #afafb1;
  background-color: white;
}
.form-wrapper .progress__dot--first {
  border-color: green;
}
.form-wrapper .progress__bar {
  width: 96%;
  border-bottom: 2px dashed #a6a6a6;
}
.form-wrapper .form-mobile {
  margin-top: 25px;
}
.form-wrapper .form-error {
  display: none;
  color: #ff0000;
  text-align: center;
  font-size: 14px;
  margin-top: 3px;
}
.form-wrapper .form-row {
  margin-bottom: 5px;
}
.form-wrapper .form-control {
  position: relative;
  width: 100%;
}
.form-wrapper .form-control-phone {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.form-wrapper .form-control .form-input {
  max-width: 100%;
  width: 100%;
  height: 46px;
  background-color: #fff;
  border: 1px solid #afb0b4;
  border-radius: 3px;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  padding: 10px 0 0 10px;
}
.form-wrapper .form-control .form-input-phone {
  width: calc(100% - 90px);
  margin-left: auto;
}
.form-wrapper .form-control .form-label, .form-wrapper .form-control .form-label-phone {
  pointer-events: none;
  width: auto;
  position: absolute;
  display: inline-block;
  top: 12px;
  left: 10px;
  color: #656565;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  transition: 0.2s;
  padding: 0;
}
.form-wrapper .form-control .form-input:focus + .form-label, .form-wrapper .form-control .form-input:focus + .form-label-phone,
.form-wrapper .form-control .form-input:valid + .form-label,
.form-wrapper .form-control .form-input:valid + .form-label-phone {
  top: 0;
  font-size: 12px;
}
.form-wrapper .form-control .form-label-phone {
  left: 100px;
}
.form-wrapper .form-select-phone {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 46px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s;
  border: 1px solid #afb0b4;
  margin-right: 10px;
  padding: 5px;
}
.form-wrapper .form-select {
  max-width: 100%;
  width: 100%;
  height: 46px;
  border: 1px solid #afb0b4;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  padding: 0 0 0 10px;
}
.form-wrapper .form-textarea {
  width: 100%;
  resize: none;
  padding: 10px 0 0 10px;
  font-size: 14px;
}
.form-wrapper .label-static {
  color: #000;
  font-size: 12px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
}
.form-wrapper .form-inner > input {
  width: 20px;
  height: 20px;
  float: left;
  margin: 0 5px 0 0;
}
.form-wrapper .form-inner > p {
  font-size: 14px;
  line-height: 20px;
}
.form-wrapper .form-button {
  margin-top: 20px;
  width: 100%;
  background-color: #0077cc;
  border-radius: 2px;
  text-decoration: none;
  border: none;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  color: #fff;
  padding: 12px 10px;
  cursor: pointer;
}
.form-wrapper .form-step-2 {
  display: none;
}
.form-wrapper .description-wrapper {
  margin-top: 20px;
  text-align: center;
}
.form-wrapper .description-wrapper .form-description {
  font-size: 14px;
}

.page-container {
  width: 100%;
  min-height: 100vh;
  background-color: #ccdeec;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.page-container .container {
  max-width: 1075px;
  min-height: 100vh;
  width: 100%;
  background-color: #ffffff;
  padding: 0;
  margin: 0;
}
@media (min-width: 996px) {
  .page-container .container {
    padding: 0;
    margin: 25px 0;
  }
}

.header-mobile {
  padding: 27px 20px 0;
  display: flex;
  flex-direction: column;
}
.header-mobile-title {
  font-size: 33px;
  line-height: 35px;
}
.header-mobile-subtitle {
  font-size: 12px;
  font-style: italic;
}
.header-mobile-image {
  width: 75px;
  height: 66px;
}
.header-mobile-top {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.header-mobile-press {
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto 12px;
  font-family: "Roboto", sans-serif;
}
.header-mobile-info {
  background-color: #af0000;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: white;
  padding: 6px;
  margin: 0 -20px 14px;
}
.header-mobile-details {
  color: #5a5858;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.header-mobile-publication {
  font-weight: bold;
}
.header-mobile-publication span {
  font-weight: 500;
}
@media (min-width: 996px) {
  .header-mobile {
    display: none;
  }
}

.header-mobile-subpages {
  border-bottom: 4px solid #c7b785;
}

.social-icons {
  position: absolute;
  left: -50px;
  top: 0;
  display: none;
}
@media (min-width: 1200px) {
  .social-icons {
    display: block;
  }
}
.social-icons .social-icons-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  position: fixed;
  top: 300px;
}
.social-icons .social-icon {
  width: 3rem;
  height: auto;
}

.container-wrapper {
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.container-wrapper .x-CTA-medical {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 10px;
  background-color: #fff;
  border-top: 2px solid #0000ff;
  display: none;
  z-index: 1;
  max-height: 100px;
  font-size: 18px;
  font-family: "Roboto";
  line-height: 1.4em;
  text-decoration: underline;
}
.container-wrapper .x-CTA-medical a {
  color: #0000ff !important;
  font-weight: 700;
}
@media (min-width: 525px) {
  .container-wrapper .x-CTA-medical {
    display: none !important;
  }
}
.container-wrapper .left-area {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.container-wrapper .left-area .main-top-link {
  margin-top: -10px;
}
.container-wrapper .left-area .main-top-link a {
  text-decoration: underline;
  color: #257ec0;
  font-size: 12px;
  line-height: 18px;
  text-align: left;
  margin: 0;
}
.container-wrapper .left-area .main-title {
  font-size: 35px;
  color: #142f83;
  line-height: 42px;
}
.container-wrapper .left-area .main-title span {
  color: #ff0000;
}
.container-wrapper .left-area .x-article-medical {
  margin: 0 auto;
}
.container-wrapper .left-area .x-article-medical a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-wrapper .left-area .x-article-medical a .article-text {
  color: #000000;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
}
.container-wrapper .left-area .title-span-bold {
  font-weight: bold;
  font-size: 3.6rem;
  letter-spacing: -1.08px;
}
.container-wrapper .left-area .main-image-wrapper {
  display: flex;
  flex-direction: column;
}
.container-wrapper .left-area .main-image-wrapper img {
  max-width: 100%;
  width: auto;
  margin-top: 20px;
  margin-bottom: 0;
}
.container-wrapper .left-area .main-image-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.container-wrapper .left-area .main-image-btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  margin-bottom: 20px;
}
.container-wrapper .left-area .main-image-btn {
  width: 220px;
  padding: 7px 0;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  background-color: #b31a1a;
}
.container-wrapper .left-area .main-image-btn-green {
  background-color: #0ec15c;
}
.container-wrapper .left-area .main-image-desc {
  font-size: 26px;
  line-height: 35px;
  color: #ff0000;
  font-weight: bold;
  padding-top: 15px;
}
.container-wrapper .left-area .main-image-author {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
}
.container-wrapper .left-area .main-image-author span {
  font-weight: 400;
}
.container-wrapper .left-area .main-image-desc-1 {
  font-size: 1.8rem;
  line-height: 25px;
  color: #000000;
  font-weight: bold;
  padding: 3px 0;
  background-color: rgba(255, 0, 0, 0.1411764706);
}
.container-wrapper .left-area .main-image-desc-span {
  padding: 3px;
  background-color: #ff0000;
  color: #ffffff;
  font-weight: bold;
}
.container-wrapper .left-area .article {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 15px;
}
.container-wrapper .left-area .article__paragraph {
  font-weight: bold;
  margin-bottom: 5px;
}
.container-wrapper .left-area .article__paragraph-black {
  color: #000;
  font-weight: bold;
  margin-bottom: 10px;
}
.container-wrapper .left-area .article__span {
  color: red;
  font-weight: bold;
  letter-spacing: -0.18px;
}
.container-wrapper .left-area .article__text {
  display: flex;
  gap: 12px;
  align-items: center;
}
.container-wrapper .left-area .article__info {
  margin-bottom: 30px;
  line-height: 1.6;
}
.container-wrapper .left-area .article__info:nth-of-type(2) {
  margin-bottom: 15px;
}
.container-wrapper .left-area .article__text-arrows {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  line-height: 24px;
}
.container-wrapper .left-area .article__text-arrow {
  display: flex;
  align-items: start;
  margin-left: 11px;
}
.container-wrapper .left-area .article__icon {
  margin-right: 10px;
  max-width: 25px;
}
.container-wrapper .left-area .article__glasses {
  margin-top: 20px;
  padding: 10px;
  margin-bottom: 32px;
  background-color: rgba(63, 159, 148, 0.168627451);
}
.container-wrapper .left-area .article__glasses-img {
  width: 100%;
}
.container-wrapper .left-area .article__glasses-text {
  font-weight: bold;
  text-align: center;
  padding: 10px 0 7px;
  color: #000;
}
.container-wrapper .left-area .float-img-text .float-img-wrapper {
  display: flex;
  justify-content: center;
}
.container-wrapper .left-area .float-img-text .float-img-wrapper img {
  width: 100%;
  max-width: 300px;
  margin: 20px auto;
}
.container-wrapper .left-area .float-img-text .float-img-text .regular-text {
  margin-top: 0;
}
.container-wrapper .left-area .regular-text-container {
  border: 1px solid #707070;
  padding: 20px 20px 30px;
  margin: 20px 0 10px;
}
.container-wrapper .left-area .quote-img {
  position: relative;
  z-index: 1;
}
.container-wrapper .left-area .regular-path-img {
  max-width: 172px;
  position: absolute;
  top: -15px;
  right: -10px;
  z-index: -1;
}
.container-wrapper .left-area .ul-list {
  margin-top: 10px;
  padding-left: 30px;
  list-style: decimal;
}
.container-wrapper .left-area .ul-list .list-item {
  margin-bottom: 15px;
  line-height: 21px;
}
.container-wrapper .left-area .ul-list .list-item b {
  font-weight: bold;
}
.container-wrapper .left-area .ul-list .list-item:last-child {
  margin-bottom: 0;
}
.container-wrapper .left-area .chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 25px;
}
.container-wrapper .left-area .chart .chart-row1 {
  max-width: 545px;
  width: 100%;
  display: flex;
  border: 3px solid #000;
  border-top: none;
  border-right: none;
}
.container-wrapper .left-area .chart .chart-row1 .chart-column {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.container-wrapper .left-area .chart .chart-row1 .chart-column .chart-text {
  font-size: 13px;
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  padding: 10px;
  text-align: center;
}
.container-wrapper .left-area .chart .chart-row1 .chart-column .chart-post {
  background-color: #33665f;
  width: 40%;
}
.container-wrapper .left-area .chart .chart-row1 .chart-column-1 {
  background-color: #f4f9fb;
}
.container-wrapper .left-area .chart .chart-row1 .chart-column-1 .chart-post {
  height: 150px;
}
.container-wrapper .left-area .chart .chart-row1 .chart-column-2 {
  background-color: #e3eef2;
}
.container-wrapper .left-area .chart .chart-row1 .chart-column-2 .chart-post {
  height: 175px;
}
.container-wrapper .left-area .chart .chart-row1 .chart-column-3 {
  background-color: #d3e4e8;
}
.container-wrapper .left-area .chart .chart-row1 .chart-column-3 .chart-post {
  height: 200px;
}
.container-wrapper .left-area .chart .chart-row1 .chart-column-4 {
  background-color: #c2dae1;
}
.container-wrapper .left-area .chart .chart-row1 .chart-column-4 .chart-post {
  height: 250px;
}
.container-wrapper .left-area .chart .chart-row2 {
  max-width: 545px;
  width: 100%;
  display: flex;
  margin-bottom: 20px;
}
.container-wrapper .left-area .chart .chart-row2 .chart-signature {
  width: 25%;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
  margin: 5px 0;
}
.container-wrapper .right-area-sidebar {
  display: none;
}
@media (min-width: 992px) {
  .container-wrapper .left-area {
    width: 65%;
  }
  .container-wrapper .right-area-sidebar {
    width: 100%;
    max-width: 316px;
    display: flex;
    flex-direction: column;
  }
  .container-wrapper .right-area-sidebar .booked-wzs-160-275_in .booked-wzs-160-275-data {
    position: relative !important;
    width: 100% !important;
    height: 85px !important;
    overflow: hidden !important;
  }
  .container-wrapper .right-area-sidebar .weather-container {
    width: 100%;
    margin-bottom: 10px;
  }
  .container-wrapper .right-area-sidebar .weather-container #m-booked-bl-simple-week-vertical-16435 {
    display: flex;
  }
  .container-wrapper .right-area-sidebar .weather-container #m-booked-bl-simple-week-vertical-16435 .weather-customize {
    border: 1px solid red;
    width: 100% !important;
  }
  .container-wrapper .right-area-sidebar h4 {
    margin: 15px 0;
    padding: 5px 20px;
    font-size: 15px;
    align-items: start;
    font-weight: bold;
    color: #000000;
  }
  .container-wrapper .right-area-sidebar .most-popular-articles .single-article {
    margin-bottom: 20px;
    display: flex;
    font-family: "Poppins";
    align-items: center;
  }
  .container-wrapper .right-area-sidebar .most-popular-articles .single-article p {
    color: #000000;
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
  }
  .container-wrapper .right-area-sidebar .most-popular-articles .single-article img {
    margin: 0 20px;
    width: 6.4rem;
    height: 6.4rem;
  }
  .container-wrapper .right-area-sidebar .special-offer-wrapper {
    width: 100%;
    margin: 0 20px;
    padding: 20px 0;
    background: linear-gradient(to bottom, #ebd50c 0%, #795e8e 100%);
  }
  .container-wrapper .right-area-sidebar .special-offer-wrapper a {
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: center;
  }
  .container-wrapper .right-area-sidebar .special-offer-wrapper .special-offer-row {
    width: 100%;
  }
  .container-wrapper .right-area-sidebar .special-offer-wrapper .special-offer-text {
    padding: 15px;
    background-color: #3454b9;
  }
  .container-wrapper .right-area-sidebar .special-offer-wrapper .special-offer-text p {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
  }
  .container-wrapper .right-area-sidebar .special-offer-wrapper .special-offer-image {
    display: flex;
    margin-top: 10px;
  }
  .container-wrapper .right-area-sidebar .special-offer-wrapper .special-offer-image img {
    max-height: 300px;
    height: auto;
    width: auto;
    margin: 0 auto;
  }
  .container-wrapper .right-area-sidebar .special-offer-wrapper .special-offer-btn p {
    max-width: 200px;
    width: 100%;
    text-decoration: none;
    cursor: pointer;
    border: none;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
    border-radius: 10px;
    background: linear-gradient(0deg, #0056ba 0%, #4494f1 100%);
    box-shadow: 0 1px 6.96px 1.04px rgb(0, 0, 0);
    padding: 10px 0;
    margin: 10px auto 0;
  }
}

@media (max-width: 768px) {
  .hide-on-mobile {
    display: none;
  }
}

.hide-on-desktop {
  display: none !important;
}
@media (max-width: 768px) {
  .hide-on-desktop {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .center-on-mobile {
    text-align: center;
  }
}

.x-testimonial_mobile-medical {
  margin: 10px auto;
  font-family: "Roboto";
  max-width: 375px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 0 40px;
  background-image: url("../img/quote.png");
  background-repeat: no-repeat;
  background-position: right 10px bottom 10px;
  background-color: #125b7d;
}
.x-testimonial_mobile-medical .testimonial-text {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  padding: 0 15px 15px;
}
@media only screen and (max-width: 415px) {
  .x-testimonial_mobile-medical .x-testimonial_mobile-medical {
    max-width: 100%;
    width: auto;
    margin: 0 20px;
  }
}
.x-testimonial_mobile-medical .testimonial__header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0076cd;
  margin: 0 0 15px;
}
.x-testimonial_mobile-medical .testimonial__header .testimonial__header--img {
  max-width: 125px;
  width: 100%;
  height: auto;
}
.x-testimonial_mobile-medical .testimonial__header article {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  margin: 0;
  padding: 10px;
  position: relative;
}
.x-testimonial_mobile-medical .testimonial__header article .testimonial__header--signature {
  font-weight: 700;
}
.x-testimonial_mobile-medical .testimonial__header article .info {
  position: absolute;
  border-radius: 50%;
  background-color: #ffc000;
  width: 18px;
  height: 18px;
  font-size: 14px;
  right: 10px;
  top: 10px;
  line-height: 20px;
  text-align: center;
  color: #000000;
  font-weight: 900;
  font-family: serif;
}

.medical-examination {
  margin-top: 30px;
  padding: 3rem 4.5rem;
  background-color: #f0fff3;
  border: 2px solid #108124;
}
.medical-examination b {
  font-weight: bold;
}
.medical-examination p {
  font-size: 17px;
  margin-bottom: 13px;
  line-height: 24px;
}

.booked-wzs-160-275_in .booked-wzs-160-275-data {
  position: relative !important;
  width: 100% !important;
  height: 85px !important;
  overflow: hidden !important;
}

.summary-wrapper {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
}
.summary-wrapper .summary-title {
  font-family: "Open Sans", sans-serif;
  font-size: 2.8rem;
  line-height: 4rem;
  font-weight: bold;
  color: #19ae30;
  text-align: center;
  letter-spacing: 3.6px;
  margin: 2rem auto 2.5rem;
  padding-bottom: 10px;
  position: relative;
}
.summary-wrapper .summary-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 25rem;
  height: 2px;
  background-color: #19ae30;
}
@media (min-width: 992px) {
  .summary-wrapper .summary-title {
    font-size: 3.6rem;
    line-height: 4.8rem;
  }
  .summary-wrapper .summary-title::before {
    width: 44rem;
  }
}
.summary-wrapper .summary-text {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 20px;
  font-family: "Open Sans", sans-serif;
}
.summary-wrapper .summary-text b {
  font-weight: 700;
}
.summary-wrapper .summary-text--green {
  color: #19ae30;
}
.summary-wrapper .summary-text--orange {
  color: #ff8800;
}
.summary-wrapper .summary-text-small {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #de2c2c;
  margin-bottom: 20px;
  font-family: "Open Sans", sans-serif;
}
.summary-wrapper .summary-text-small b {
  font-weight: 700;
}
.summary-wrapper .summary-lead {
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 20px;
  font-family: "Open Sans", sans-serif;
}
.summary-wrapper .summary-lead b {
  font-weight: 700;
}
.summary-wrapper .summary-lead--green {
  color: #19ae30;
}
.summary-wrapper .summary-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 50rem;
  font-size: 1.9rem;
  line-height: 2.6rem;
  font-weight: 600;
  padding: 1.3rem 0rem;
  margin: 0 auto 2rem;
  text-align: center;
  color: white;
  background-color: #19ae30;
  border: 1px solid #19ae30;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2392156863);
  border-radius: 0.3rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.summary-wrapper .summary-button-hidden {
  display: none;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  width: 100%;
  max-width: 46rem;
  font-size: 2.4rem;
  line-height: 3rem;
  font-weight: 700;
  padding: 0.9rem 2rem;
  margin: 0 auto 2rem;
  text-align: center;
  color: #19ae30;
  border: 1px solid #19ae30;
  background-color: white;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2392156863);
  border-radius: 0.3rem;
}
@media (min-width: 992px) {
  .summary-wrapper .summary-button-hidden {
    font-size: 3.6rem;
    line-height: 4rem;
  }
}
.summary-wrapper .summary-button-hidden-icon {
  width: 2.7rem;
  height: 2.7rem;
}
.summary-wrapper .summary-icons-wrapper {
  text-align: center;
  margin-bottom: 25px;
}
.summary-wrapper .summary-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 50rem;
  font-size: 1.9rem;
  line-height: 2.6rem;
  font-weight: 600;
  padding: 1.3rem 0rem;
  margin: 0 auto 2rem;
  text-align: center;
  color: white;
  background-color: #19ae30;
  border: 1px solid #19ae30;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2392156863);
  border-radius: 0.3rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.summary-wrapper .summary-button-hidden {
  display: none;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  width: 100%;
  max-width: 46rem;
  font-size: 2.4rem;
  line-height: 3rem;
  font-weight: 700;
  padding: 0.9rem 2rem;
  margin: 0 auto 2rem;
  text-align: center;
  color: #19ae30;
  border: 1px solid #19ae30;
  background-color: white;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2392156863);
  border-radius: 0.3rem;
}
@media (min-width: 992px) {
  .summary-wrapper .summary-button-hidden {
    font-size: 3.6rem;
    line-height: 4rem;
  }
}
.summary-wrapper .summary-button-hidden-icon {
  width: 2.7rem;
  height: 2.7rem;
}
.summary-wrapper .summary-icons-wrapper {
  text-align: center;
  margin-bottom: 25px;
}
.summary-wrapper .green {
  background-color: #19ae30;
  color: white;
}
.summary-wrapper .text-center {
  text-align: center;
}
.summary-wrapper .link-green {
  font-size: 31px;
  font-weight: bold;
  background-color: #9b2226;
  color: white;
  border-radius: 10px;
  padding: 16px 20px;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}
.summary-wrapper .phone-link {
  padding: 15px 0;
  font-size: 45px;
  font-weight: bold;
  border: 3px solid #bd261b;
  max-width: 445px;
  width: 100%;
  text-align: center;
  margin: 30px 0 30px;
  color: black;
}
.summary-wrapper .hr {
  width: 100%;
  height: 3px;
  background-color: #d6d7d8;
  margin-bottom: 25px;
}
.summary-wrapper .calls .paragraph-small {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 20px;
}
.summary-wrapper .attention {
  margin-bottom: 25px;
}

#btnScrollToTop {
  position: fixed;
  bottom: 10px;
  right: 30px;
  width: 40px;
  display: none;
}
@media (min-width: 1400px) {
  #btnScrollToTop {
    right: 25%;
  }
}

#btnScrollToTop:hover {
  cursor: pointer;
}

.box {
  border: none;
  position: relative;
  margin: 3rem 0 2rem;
}
.box__badge {
  display: none;
  width: 12.5rem;
  height: 12.5rem;
  position: absolute;
  top: -5rem;
  right: -5rem;
}
@media (min-width: 768px) {
  .box__badge {
    display: block;
  }
}
.box__title {
  font-size: 2.5rem;
  line-height: 4rem;
  color: #000;
  text-align: left;
  text-transform: uppercase;
  font-weight: 900;
}
.box__title--subtitle {
  font-size: 2rem;
  line-height: 4rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: lowercase;
}
.box__top {
  padding: 1rem 0;
}
.box__inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.box__inner:last-of-type {
  margin-bottom: 0;
}
.box__number {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 1.2em;
  line-height: 4rem;
  color: #000;
}
.box__text {
  font-size: 1.8rem;
  line-height: 2.5rem;
  color: black;
  display: inline-block;
  padding-top: 8px;
}
.box__text b {
  font-weight: 700;
}

.comment-title-h2 {
  font-size: 30px;
  color: #000000;
}

.product {
  margin: 1rem 0;
  text-align: center;
}
.product__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.product__imgWrapper {
  position: relative;
  max-width: 24rem;
}
.product__imgBadge {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -5px;
  right: -10px;
}
.product__img {
  max-width: 280px;
  margin-left: auto;
}
.product__contentWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 15rem;
  text-align: center;
}
.product__counterDescription {
  margin-bottom: 2rem;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #3d3d3d;
  font-weight: 600;
  font-family: "Georgia", sans-serif;
}
.product__counter {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product__counterBox {
  font-size: 25px;
  color: #3d3d3d;
  padding: 0 5px;
  font-weight: 700;
  font-family: "Georgia", sans-serif;
  border: 1px solid black;
  border-radius: 5px;
  margin: 0 2px;
  background: linear-gradient(to bottom, #666666 0%, #e5e5e5 37%, #e5e5e5 59%, #666666 98%);
}
@media (min-width: 996px) {
  .product__counterBox {
    font-size: 45px;
  }
}
.product__price {
  margin-bottom: 2rem;
  font-family: "Georgia", sans-serif;
}
.product__price .price-old {
  margin-right: 0.6rem;
  text-decoration: line-through;
}

.comment {
  padding: 3rem 4.5rem;
  border: 2px solid black;
  margin-top: 24px;
}
.comment-title {
  font-weight: bold;
  margin-bottom: 20px;
}
.comment-content {
  margin-bottom: 13px;
  font-size: 17px;
  font-style: italic;
  line-height: 23px;
}
.comment-author {
  font-weight: bold;
  text-align: right;
}

.testimonials {
  margin-top: 20px;
}
.testimonials__title {
  text-align: center;
  margin-bottom: 25px;
  color: #000;
}
.testimonials__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  border: 1px solid grey;
  padding: 30px;
}
.testimonials__img {
  width: 140px;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials__name {
  margin-bottom: 25px;
  font-weight: bold;
}
.testimonials__signature {
  text-align: right;
  color: #9b2226;
  font-weight: bold;
  margin-top: 30px;
}
.testimonials__text {
  line-height: 24px;
  font-family: "Orpheus Pro";
  line-height: 24px;
  letter-spacing: 1.5;
}

@media (min-width: 500px) {
  .testimonials__wrapper {
    flex-direction: row;
    align-items: start;
  }
}
.product__wrapper {
  display: flex;
  gap: 50px;
}

.box-shadow {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1725490196);
  padding: 20px;
  border-radius: 20px;
  margin: 20px 0 0;
  background-color: #fafafa;
}
@media (min-width: 768px) {
  .box-shadow {
    flex-direction: row;
    padding: 20px 20px 20px 0;
    margin: 30px 0 10px 20px;
  }
}
.box-shadow img {
  width: 135px;
  height: 135px;
}
.box-shadow p {
  max-width: 409px;
  margin: 0;
}

.shadow-text {
  max-width: 614px;
  margin: 10px auto 0;
  padding: 20px;
  background-color: #fafafa;
  border-radius: 21px;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2588235294);
}

.box-blue {
  border: 2px solid #142f83;
  border-radius: 31px;
  padding: 20px 25px 30px;
  margin: 30px 0 10px;
}
.box-blue ul {
  list-style: disc;
  color: #142f83;
  margin-left: 20px;
}
.box-blue ul li {
  line-height: 22px;
}
.box-blue ul li span {
  font-weight: bold;
}

.box-blue-title {
  font-size: 22px;
  color: #142f83;
  font-weight: bold;
  max-width: 548px;
  line-height: 30px;
  margin-bottom: 15px;
}
.box-blue-title span {
  color: #ff0000;
}

.box-list {
  border: 2px solid #142f83;
  border-radius: 31px;
  padding: 20px 15px 20px 20px;
  margin-top: 20px;
}
.box-list p {
  font-size: 22px;
  color: #142f83;
  font-weight: bold;
  line-height: 30px;
  margin-bottom: 30px;
}
.box-list p span {
  color: #ff0000;
}

.box-list-flex {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .box-list-flex {
    flex-direction: row;
  }
}

.box-flex {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.box-flex img {
  width: 39px;
  height: 39px;
}

.box-photo {
  display: flex;
  align-items: center;
  gap: 20px;
}
.box-photo span {
  line-height: 22px;
  color: #142f83;
  font-size: 13px;
}

.box-border {
  border: 1px solid #707070;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 614px;
  margin: 20px auto 0;
}
.box-border p {
  font-size: 22px;
  font-weight: bold;
  line-height: 22px;
  margin-bottom: 15px;
}

.border-box {
  display: flex;
  gap: 10px;
  align-items: start;
}
.border-box span {
  line-height: 22px;
}
.border-box span b {
  font-weight: bold;
}
.border-box img {
  width: 14px;
  margin-top: 3px;
}

.product-box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 768px) {
  .product-box {
    flex-direction: row;
  }
}
.product-box .product-with-badge {
  margin: 0 auto;
}

.product-with-badge {
  position: relative;
}
.product-with-badge img {
  width: 320px;
  height: auto;
  max-width: 350px;
  min-width: 320px;
}
@media (min-width: 400px) {
  .product-with-badge img {
    width: 350px;
  }
}

.product-with-badge-text {
  position: absolute;
  z-index: 2;
  width: 140px;
  padding: 10px;
  top: 32px;
  right: 18px;
}
@media (min-width: 400px) {
  .product-with-badge-text {
    top: 40px;
    right: 32px;
  }
}
.product-with-badge-text span {
  display: block;
}
.product-with-badge-text span.product-with-badge-text-1 {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.36px;
  transform-origin: center;
  transform: skewX(-6deg) rotate(-6deg);
}
@media (min-width: 400px) {
  .product-with-badge-text span.product-with-badge-text-1 {
    font-size: 17px;
  }
}
.product-with-badge-text span.product-with-badge-text-2 {
  margin-top: 2px;
  color: var(--color-red-50, #f00);
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  transform-origin: center;
  transform: skewX(-6deg) rotate(-6deg);
}
@media (min-width: 400px) {
  .product-with-badge-text span.product-with-badge-text-2 {
    font-size: 21px;
  }
}

.product-box-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .product-box-content {
    justify-content: start;
    align-items: start;
  }
}

.product-box-title {
  color: #ff0000;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 5px;
}

.product-box-text {
  line-height: 20px;
  margin-top: 10px;
}
.product-box-text span {
  color: #0090ff;
  font-weight: bold;
}

.product-box-color {
  margin-top: 10px;
  background-color: #eeff00;
  padding: 5px;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.3;
}

.counter {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  text-align: center;
  align-items: center;
  line-height: 1.4;
  max-width: 300px;
}
.counter .counter__text {
  text-align: end;
}
.counter .counter__number {
  font-weight: 700;
  font-size: 30px;
}

.pricesBlock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 15px;
}
.pricesBlock p {
  font-size: 18px;
}
.pricesBlock .green {
  color: #008000;
  font-weight: 700;
}
.pricesBlock .red {
  color: #ff0000;
  text-decoration: line-through;
}

.banner-2 {
  margin-top: 60px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.banner-img {
  width: 100%;
}

#page-footer {
  margin: 90px auto 60px;
  padding: 0 20px;
  max-width: 540px;
}
#page-footer .text-gray {
  font-size: 12px;
  color: gray;
  text-align: center;
}
#page-footer .copyright {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 15px;
}
#page-footer .attachments {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
}
#page-footer .attachments a {
  text-decoration: underline;
}

.header-desktop {
  flex-direction: column;
  position: relative;
}
@media (min-width: 996px) {
  .header-desktop {
    margin-bottom: 40px;
  }
}
.header-desktop .header-desktop-date {
  position: absolute;
  padding: 10px;
  font-size: 13px;
  right: 0;
}
.header-desktop .header-desktop-image-wrapper {
  display: flex;
}
.header-desktop .header-desktop-image-wrapper img {
  width: 100%;
  display: block;
}
@media (min-width: 996px) {
  .header-desktop .header-desktop-image-wrapper img {
    height: 204px;
  }
}
.header-desktop .header-desktop-image-wrapper img:first-child {
  padding: 20px 20px 0 20px;
  max-width: 600px;
  width: 100%;
}
@media (min-width: 996px) {
  .header-desktop .header-desktop-image-wrapper img:first-child {
    margin-left: 20px;
    padding: 20px;
    max-width: 650px;
  }
}
.header-desktop .header-desktop-image-wrapper img:last-child {
  display: none;
}
@media (min-width: 996px) {
  .header-desktop .header-desktop-image-wrapper img:last-child {
    display: block;
  }
}
.header-desktop .header-desktop-banner {
  min-height: 150px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-desktop .header-desktop-title-wrapper {
  display: flex;
  gap: 120px;
}
.header-desktop .title-box {
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: center;
}
.header-desktop .title-logo {
  max-width: 80px;
  width: 100%;
}
@media (min-width: 506px) {
  .header-desktop .title-logo {
    max-width: 131px;
  }
}
.header-desktop .title-bgc {
  width: 100%;
  height: 204px;
  display: none;
}
@media (min-width: 996px) {
  .header-desktop .title-bgc {
    display: block;
  }
}
.header-desktop .title-1 {
  color: #142f83;
  font-size: 40px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .header-desktop .title-1 {
    font-size: 70px;
  }
}
.header-desktop .title-1 span {
  color: #257ec0;
}
.header-desktop .title-2 {
  color: #339c13;
  font-size: 12px;
  font-weight: 500;
}
.header-desktop .header-desktop-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #9b2226;
  padding: 7px 0;
}
.header-desktop .header-desktop-bar .header-destkop-bar-image-wrapper {
  max-width: 120px;
}
.header-desktop .header-desktop-bar .header-destkop-bar-image-wrapper img {
  max-width: 100%;
  margin: 10px;
  max-height: 50px;
}
.header-desktop .nav-menu {
  width: 100%;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  display: none;
}
@media (min-width: 996px) {
  .header-desktop .nav-menu {
    display: block;
  }
}
.header-desktop .nav-menu .nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.header-desktop .nav-menu .nav-wrapper .nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-desktop .nav-menu .nav-wrapper .nav-list li {
  padding: 10px;
  display: inline-block;
  font-size: 15px;
  position: relative;
}
.header-desktop .nav-menu .nav-wrapper .nav-list li a {
  text-decoration: none;
  color: #000000;
  position: relative;
}
@media (min-width: 996px) {
  .header-desktop {
    display: block;
  }
}

.nav-list li a::after {
  content: "|";
  position: absolute;
  right: -30px;
  top: 0;
}

.nav-list li:last-child a::after {
  content: "";
}

.header-desktop-searcher-wrapper {
  border: 1px solid #000000;
  height: 24px;
  max-width: 208px;
  width: 100%;
  display: flex;
  padding-right: 10px;
  align-items: center;
  margin-right: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.header-desktop-searcher-wrapper input {
  border: none;
  outline: none;
  padding-left: 10px;
}

.header_input-search {
  width: 15px;
  background: url("../img/LUPA.png") no-repeat;
  background-position: center 50%;
  background-size: 100% 100%;
  background-size: contain;
}

.header_input-search::before {
  content: "";
  display: block;
  width: 1px;
  height: 22px;
  background-color: black;
  margin-left: -10px;
}

.container__wrapper--comments {
  max-width: 700px;
  margin-top: 50px;
  padding: 0 20px;
}
.container__wrapper--comments h2 {
  font-size: 25px;
}
.container__wrapper--comments .x-h2-medical {
  margin-bottom: 30px;
}
.container__wrapper--comments .x-comment-medical {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0;
  font-family: "Poppins";
  margin-bottom: 20px;
}
.container__wrapper--comments .x-comment-medical .comment-img {
  width: 41px;
  height: 41px;
  margin-right: 15px;
  margin-top: -20px;
}
.container__wrapper--comments .x-comment-medical .comment-box {
  width: 100%;
  margin: 0px 0 22px;
}
.container__wrapper--comments .x-comment-medical .comment-box .comment-signature {
  color: #000000;
  font-size: 14px;
  font-weight: 900;
  text-align: left;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.container__wrapper--comments .x-comment-medical .comment-box .comment-signature .comment-date {
  color: #000000;
  font-size: 12px;
  font-weight: 400;
  text-align: right;
}
.container__wrapper--comments .x-comment-medical .comment-box .comment-signature .comment-text {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .container__wrapper--comments .x-comment-medical {
    position: relative;
  }
  .container__wrapper--comments .comment-img {
    top: 0;
    left: 0;
  }
  .container__wrapper--comments .comment-signature {
    flex-direction: column;
  }
  .container__wrapper--comments .x-comment-medical .comment-box .comment-signature .comment-date {
    margin-top: 5px;
    text-align: left;
  }
}

.comment-date {
  display: none;
}

.comment-text {
  line-height: 22px;
}

.comment-container {
  margin-bottom: 30px;
  display: flex;
  gap: 10px;
  align-items: start;
}

.comment-signature {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #111111;
  color: white;
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner .cookie-banner-content {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cookie-banner .cookie-banner-text {
  flex: 1;
  font-size: 13px;
  line-height: 20px;
}
.cookie-banner .cookie-banner-text p {
  margin: 0;
  color: white;
}
.cookie-banner .cookie-banner-text a {
  color: #85ccb1;
  text-decoration: underline;
}
.cookie-banner .cookie-banner-text a:hover {
  color: #85a9b3;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-buttons {
    justify-content: flex-end;
    flex-shrink: 0;
  }
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.cookie-btn-accept {
  background-color: #19ae30;
  color: white;
}
.cookie-btn-accept:hover {
  background-color: #158026;
}
.cookie-btn-essential {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-essential:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.cookie-btn-settings {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.cookie-modal-overlay.show {
  opacity: 1;
}

.cookie-modal {
  background-color: white;
  color: #333;
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  font-family: "Roboto", sans-serif;
}
.cookie-modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-header h2 {
  margin: 0;
  font-size: 20px;
  color: #2e3641;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #999;
}
.cookie-modal-close:hover {
  color: #333;
}
.cookie-modal-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}
.cookie-modal-body p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}
.cookie-modal-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5f5f5;
}
.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.cookie-category-title {
  font-weight: 700;
  font-size: 16px;
  color: #2e3641;
}
.cookie-category-desc {
  font-size: 13px;
  line-height: 18px;
  color: #777;
  margin: 0;
}

/* Switch Styles */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch input:checked + .cookie-slider {
  background-color: #19ae30;
}
.cookie-switch input:focus + .cookie-slider {
  box-shadow: 0 0 1px #19ae30;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.cookie-switch input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.terms {
  margin-top: 16px;
  font-size: 14px;
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}
.terms label {
  cursor: pointer;
}
.terms input[type=checkbox] {
  margin-top: 2px;
  margin-left: 0px;
  cursor: pointer;
  flex-shrink: 0;
}
.terms a {
  color: #7f919e;
  text-decoration: underline;
}
.terms .terms-error {
  color: #e70000;
  font-size: 14px;
  margin: 8px 0;
  display: none;
}
.terms .terms-error.show {
  display: block;
}

.clause {
  font-size: 14px;
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}
.clause a {
  color: #7f919e;
  text-decoration: underline;
}
.clause a:hover {
  color: #7f919e;
}

.disclaimer {
  font-size: 14px;
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}

.banner {
  position: relative;
  width: 316px;
  height: auto;
  min-height: 463px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.banner > * {
  position: relative;
  z-index: 1;
}
.banner h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1;
  margin: 0 !important;
  padding: 0;
}
.banner h2 .banner-title-1 {
  color: #426480;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}
.banner h2 .banner-title-2 {
  display: block;
  color: #0bf;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

.banner-button {
  border-radius: 100vmax;
  display: flex;
  padding: 12px 20px;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--color-white-solid, #fff);
  background-color: #ff951c;
  color: var(--color-white-solid, #fff);
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  transform: scale(1);
  transform-origin: center;
}
.banner-button:active {
  transform: scale(0.98);
}
.banner-button:hover {
  border-color: #ff8d28;
  background-color: #ff8d28;
  box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.25);
}

.link-summary {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #0dbe00;
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.44;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin-top: 20px;
  transition: all 0.2s ease-in-out;
}
.link-summary:hover {
  color: rgba(13, 189, 0, 0.7607843137);
}

.banner-2 {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: 20px 0;
}

.banner-2-bg {
  width: 100%;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  display: none;
}
@media (min-width: 650px) {
  .banner-2-bg {
    display: block;
  }
}

.banner-2-bg--mobile {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
@media (min-width: 650px) {
  .banner-2-bg--mobile {
    display: none;
  }
}

.banner-2-content {
  position: relative;
  z-index: 3;
  padding: 30px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 650px) {
  .banner-2-content {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0 clamp(24px, 3vw, 36px);
  }
}
.banner-2-content header {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: clamp(18px, 6.4vw, 32px);
}
@media (min-width: 650px) {
  .banner-2-content header {
    padding: 30px 0;
    text-align: left;
    align-items: flex-start;
    max-width: 400px;
    gap: 20px;
  }
}
.banner-2-content .banner-2-content-intro {
  color: #fff;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(16px, 4.8vw, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 16px */
  text-transform: uppercase;
}
@media (min-width: 650px) {
  .banner-2-content .banner-2-content-intro {
    text-align: left;
    font-size: 32px;
    font-weight: 300;
  }
}
.banner-2-content .banner-2-content-title {
  margin: 0;
  color: #fcff00;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 9.6vw, 48px);
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 32px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media (min-width: 650px) {
  .banner-2-content .banner-2-content-title {
    text-align: left;
    font-size: 48px;
  }
}

.banner-button-2 {
  border-radius: 100vmax;
  display: flex;
  padding: 15px 25px;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 50px;
  border: 2px solid var(--color-white-solid, #fff);
  background: var(--color-green-25, #008000);
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  transform: scale(1);
  transform-origin: center;
}
.banner-button-2:active {
  transform: scale(0.98);
}
.banner-button-2:hover {
  border-color: #009a00;
  background-color: #009a00;
  box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.25);
}
@media (min-width: 650px) {
  .banner-button-2 {
    margin-top: 26px;
  }
}

.banner-2-product.product-with-badge {
  margin-top: 20px;
}
@media (min-width: 650px) {
  .banner-2-product.product-with-badge {
    margin-top: -30px;
  }
}

.banner-2-product.product-with-badge .product-with-badge-text {
  width: 125px;
  padding: 10px;
  top: 85px;
  right: 40px;
}
@media (min-width: 400px) {
  .banner-2-product.product-with-badge .product-with-badge-text {
    width: 135px;
    top: 93px;
    right: 45px;
  }
}
.banner-2-product.product-with-badge .product-with-badge-text span {
  display: block;
}
.banner-2-product.product-with-badge .product-with-badge-text span.product-with-badge-text-1 {
  font-size: 13px;
}
@media (min-width: 400px) {
  .banner-2-product.product-with-badge .product-with-badge-text span.product-with-badge-text-1 {
    font-size: 14px;
  }
}
.banner-2-product.product-with-badge .product-with-badge-text span.product-with-badge-text-2 {
  font-size: 16px;
}
@media (min-width: 400px) {
  .banner-2-product.product-with-badge .product-with-badge-text span.product-with-badge-text-2 {
    font-size: 17px;
  }
}

.summary__container {
  padding: clamp(16px, 2.6041666667vw, 20px);
}

.summary__container h1 {
  margin-top: 20px;
  color: #008000;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: clamp(28px, 4.5572916667vw, 35px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.summary-large-text {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  color: #000;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: clamp(20px, 3.3854166667vw, 26px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.34;
}

.summary-text {
  color: #000;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3; /* 130% */
  margin: 0 auto 15px;
  max-width: 856px;
}

.summary-product-box {
  position: relative;
  max-width: 960px;
  margin: 30px auto 20px;
  padding: 0px clamp(20px, 3.90625vw, 30px) clamp(20px, 3.90625vw, 30px);
}
.summary-product-box > * {
  position: relative;
  z-index: 1;
}
.summary-product-box::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 173px;
  width: 100%;
  z-index: 0;
  border-radius: 20px;
  background: #fafafa;
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.17);
}
.summary-product-box .summary-large-text {
  max-width: 820px;
  margin: 0 auto 20px;
}

.summary-product-img {
  max-width: 360px;
  margin: 0 auto 20px;
}
.summary-product-img img {
  width: 100%;
  height: auto;
}

.summary-product-info {
  max-width: 856px;
  margin: 20px auto 0;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.summary-small-text {
  color: #000;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.14;
}

.summary-cta {
  border-radius: 100vmax;
  border: 2px solid #fff;
  background: #ff8d28;
  box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.25);
  display: flex;
  padding: 15px 45px;
  align-items: center;
  gap: 15px;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  margin: 0 auto;
  transform-origin: center;
  transition: all 0.2s ease-in-out;
}
.summary-cta:active {
  transform: scale(0.98);
}
.summary-cta:hover {
  border-color: #ff8d28;
  background-color: #ff8d28;
  box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.25);
}
.summary-cta .icon {
  display: none;
}
@media (min-width: 650px) {
  .summary-cta .icon {
    display: block;
  }
}
.summary-cta.hidden {
  display: none;
}

.summary-phone-link {
  border-radius: 100vmax;
  border: 2px solid #ff8d28;
  background: #fff;
  box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.25);
  display: flex;
  width: 100%;
  max-width: 549px;
  min-height: 60px;
  padding: 15px 45px;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 0 auto;
  color: #000;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: clamp(24px, 4.1666666667vw, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  transform-origin: center;
  transition: all 0.2s ease-in-out;
}
.summary-phone-link:active {
  transform: scale(0.98);
}
.summary-phone-link:hover {
  border-color: #ff8d28;
}
.summary-phone-link.hidden {
  display: none;
}/*# sourceMappingURL=main.css.map */