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

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

body {
  margin: 0;
  padding: 0;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: black;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

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

.text-green {
  color: #19ae30;
}

.text-padding {
  padding: 0 0.5rem;
}

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

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

.text-red {
  color: #e70000;
}

.text-green {
  color: #1eb336;
}

.text-gray {
  font-size: 1.2rem;
  color: #aaaaaa;
}

.text-gray {
  color: #a7a7a7;
}

.text-white {
  color: white;
}

.text-bg-green {
  background-color: #19ae30;
}

.text-bg-red {
  background-color: #cf0000;
}

.text-bg-yellow {
  background-color: #f2cc0f;
}

.image-wrapper {
  margin: 2.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.summary-button {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #009f20;
  padding: 1.5rem;
  border: 1px solid #009f20;
  color: white;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  border-radius: 1rem;
  margin: 1.5rem auto;
  transition: all 0.35s ease-in-out;
}
.summary-button:hover {
  cursor: pointer;
  background-color: white;
  color: #009f20;
}

.image-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 50% 50%;
  margin: 2.5rem 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

ul {
  padding-left: 3rem;
  margin: 0;
}
ul li {
  font-size: 1.6rem;
  line-height: 2.6rem;
}
@media (max-width: 768px) {
  ul li {
    font-size: 14px;
  }
}

.btn {
  background-color: #0090fe;
  font-weight: 500;
  color: #fff;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.2509803922);
  border: 2px solid #ffffff;
  border-radius: 33px;
  margin: 0 auto 16px;
  display: block;
  text-align: center;
  max-width: 600px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: all 0.2s;
}
@media (min-width: 768px) {
  .btn {
    font-size: 30px;
    padding: 16px;
    margin: 0 auto 32px;
  }
}
.btn:hover {
  box-shadow: unset;
}

.center-text {
  text-align: center;
  font-size: 14px;
  line-height: 22px;
}
@media (min-width: 768px) {
  .center-text {
    text-align: unset;
    line-height: 28px;
  }
}

.btn-small {
  font-size: 32px;
  padding: 10px 0;
}
@media (max-width: 768px) {
  .btn-small {
    font-size: 16px;
  }
}

.btn--active {
  background-color: #30b71d;
  font-size: 62px;
  border: none;
  padding-bottom: 25px;
}
@media (max-width: 768px) {
  .btn--active {
    font-size: 28px;
  }
}

.link-blue {
  background-color: #0090fe;
  width: 100%;
  display: block;
  font-size: 30px;
  color: #ffffff;
  text-align: center;
  line-height: 35px;
  padding: 3px 5px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .link-blue {
    display: none;
  }
}

header {
  width: 100%;
  display: flex;
  background: url("../images/TOP_BAR_BG.jpg");
  background-repeat: no-repeat;
  margin-bottom: 16px;
}
header .headerBox {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  header .headerBox {
    justify-content: space-between;
    margin: 0 15px;
  }
}
header .headerBox p {
  font-size: 45px;
  line-height: 52px;
  color: #ffffff;
  font-weight: bold;
  padding: 11px 0 8px 0;
}
header .headerBox a {
  display: none;
}
@media (min-width: 768px) {
  header .headerBox a {
    display: block;
    background-color: #0090fe;
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.2509803922);
    border: 2px solid #ffffff;
    border-radius: 25px;
    font-size: 30px;
    padding: 5px 24px 8px 24px;
    color: #ffffff;
    font-weight: 500;
  }
}
header .headerBox a:hover {
  border: 2px solid #0090fe;
}
@media (min-width: 991px) {
  header {
    margin-bottom: 0;
  }
}

.container {
  width: 100%;
  max-width: 116rem;
  margin-left: auto;
  margin-right: auto;
}

.textWithImage {
  padding: 25px 15px 20px;
  border: 1px solid #c2e5d8;
  margin-bottom: 15px;
}
.textWithImage .paragraph {
  margin: 0;
  font-weight: 500;
}

.summary-content {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
  padding: 3.2rem 0rem 0rem 0rem;
}
@media (min-width: 768px) {
  .summary-content {
    padding: 6rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .summary-content {
    grid-template-columns: repeat(1, 96rem);
  }
}

.site-content {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
  margin: 2.5rem auto 0;
  padding: 0 1.6rem;
  max-width: 1072px;
}
@media (min-width: 768px) {
  .site-content {
    padding: 0 2rem;
  }
}

.main-top,
.main-bottom,
.main-summary {
  background-color: white;
  padding: 1.8rem 1.8rem 5px 1.8rem;
}
@media (max-width: 768px) {
  .main-top,
  .main-bottom,
  .main-summary {
    padding: 0;
  }
}

.main-summary {
  border-radius: 10px;
  padding: 0px 16px;
}
@media (min-width: 996px) {
  .main-summary {
    background-color: #f2f2f2;
    padding-top: 62px;
  }
}

main .summary-title {
  font-size: 37px;
  text-align: center;
  color: #f59300;
  margin-bottom: 32px;
}
@media (min-width: 360px) {
  main .summary-title {
    font-size: 40px;
  }
}
@media (min-width: 768px) {
  main .summary-title {
    font-size: 50px;
  }
}
main .main-lead {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 4rem;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  main .main-lead {
    font-size: 3.4rem;
  }
}
main .main-subtitle {
  font-weight: bold;
  margin-bottom: 3.2rem;
  font-size: 20px;
  line-height: 26px;
}
@media (min-width: 768px) {
  main .main-subtitle {
    font-size: 3rem;
    line-height: 40px;
  }
}
main .main-paragraph-big {
  font-size: 1.8rem;
  line-height: 2.4rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  main .main-paragraph-big {
    font-size: 16px;
  }
}
main .paragraph {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 32px;
}
main .paragraph-small {
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  main .paragraph-small {
    font-size: 16px;
  }
}
main .paragraph-bottom {
  font-size: 1.8rem;
  line-height: 28px;
  margin-bottom: 20px;
}

.main-title {
  font-size: 4.2rem;
  line-height: 5rem;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 400px) {
  .main-title {
    font-size: 4.8rem;
    line-height: 5.5rem;
  }
}
@media (min-width: 768px) {
  .main-title {
    font-size: 72px;
    line-height: 75px;
    margin-bottom: 16px;
  }
}
@media (min-width: 996px) {
  .main-title {
    text-align: left;
  }
}

.main-top {
  margin-bottom: 4rem;
}
.main-top .main-article-date {
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.8rem;
  color: #808080;
  margin-bottom: 1.9rem;
}
.main-top .list {
  margin-bottom: 1.6rem;
}
.main-top .green-box {
  background-color: #c2e5d8;
  padding: 2.2rem 1.5rem 1rem;
  margin-bottom: 15px;
}
.main-top .guarantee-subtitle {
  margin-bottom: 2.6rem;
  margin-top: 2.2rem;
}
.main-top .product-promotion-details {
  margin-top: 2.3rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3.1rem;
}
.main-top .product-promotion-details .text-red {
  text-decoration: line-through;
}
.main-top .product-promotion-details .text-red,
.main-top .product-promotion-details .text-green {
  font-weight: bold;
}
.main-top .product-image {
  max-width: -moz-max-content;
  max-width: max-content;
  width: 80%;
  max-width: 392px;
  height: auto;
}

.main-bottom .comments-title {
  font-size: 2.6rem;
  font-weight: bold;
  padding-top: 2.6rem;
  margin-bottom: 26px;
}
@media (min-width: 768px) {
  .main-bottom .comments-title {
    text-align: start;
    font-size: 30px;
  }
}
.main-bottom .form-add-comment {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .main-bottom .form-add-comment {
    margin-bottom: 80px;
  }
}
.main-bottom .form-add-comment input {
  margin-bottom: 0.8rem;
}
.main-bottom .form-add-comment textarea {
  resize: none;
  min-height: 14.5rem;
  border: none;
  background-color: #f2f2f2;
}
.main-bottom .form-add-comment input {
  resize: none;
  border: none;
  background-color: #f2f2f2;
}
.main-bottom .form-add-comment input,
.main-bottom .form-add-comment textarea {
  padding: 2.5rem;
  outline: none;
  font-family: "Ubuntu";
  font-size: 1.6rem;
  line-height: 2.1rem;
}
.main-bottom .form-add-comment input::-moz-placeholder, .main-bottom .form-add-comment textarea::-moz-placeholder {
  font-size: 1.6rem;
  line-height: 2.1rem;
  color: #000000;
}
.main-bottom .form-add-comment input::placeholder,
.main-bottom .form-add-comment textarea::placeholder {
  font-size: 1.6rem;
  line-height: 2.1rem;
  color: #000000;
}
@media (min-width: 768px) {
  .main-bottom .form-add-comment input::-moz-placeholder, .main-bottom .form-add-comment textarea::-moz-placeholder {
    font-size: 1.8rem;
  }
  .main-bottom .form-add-comment input::placeholder,
  .main-bottom .form-add-comment textarea::placeholder {
    font-size: 1.8rem;
  }
}
.main-bottom .form-add-comment .form-buttons {
  display: flex;
  background-color: #f2f2f2;
  justify-content: space-between;
}
.main-bottom .form-add-comment .form-buttons .form-buttons-wrap {
  display: flex;
  gap: 12px;
  padding: 0 0 10px 10px;
}
.main-bottom .form-add-comment .form-buttons .form-buttons-wrap p {
  color: #808080;
  font-size: 23px;
}
.main-bottom .form-add-comment .form-buttons .form-buttons-wrap img {
  max-width: 50px;
}
@media (min-width: 768px) {
  .main-bottom .form-add-comment .form-buttons .form-buttons-wrap img {
    max-width: 60px;
  }
}
@media (min-width: 768px) {
  .main-bottom .form-add-comment .form-buttons .form-buttons-wrap {
    align-items: center;
    padding: 0 0 10px 25px;
  }
}
.main-bottom .form-add-comment .form-buttons .form-btn {
  padding: 1rem;
  color: white;
  background-color: #808080;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease-in-out;
}
@media (min-width: 768px) {
  .main-bottom .form-add-comment .form-buttons .form-btn {
    font-size: 18px;
    margin-bottom: 10px;
    margin-right: 10px;
  }
}
.main-bottom .form-add-comment .form-buttons .form-btn:hover {
  background-color: #5f6468;
}
.main-bottom .comments-wrapper {
  margin-bottom: 50px;
}
.main-bottom .comments-wrapper .comment,
.main-bottom .added-comments .comment {
  display: flex;
  margin-bottom: 2.3rem;
}
.main-bottom .comments-wrapper .comment .comment-avatar,
.main-bottom .added-comments .comment .comment-avatar {
  width: 48px;
  height: 48px;
  margin-right: 2rem;
}
.main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-row,
.main-bottom .added-comments .comment .comment-content-wrapper .comment-row {
  display: flex;
}
.main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-row-image,
.main-bottom .added-comments .comment .comment-content-wrapper .comment-row-image {
  display: flex;
  flex-direction: column;
}
.main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-author,
.main-bottom .added-comments .comment .comment-content-wrapper .comment-author {
  font-size: 1.6rem;
  font-weight: 500;
  color: #000000;
  margin-right: 0.9rem;
  margin-bottom: 0.8rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-author,
  .main-bottom .added-comments .comment .comment-content-wrapper .comment-author {
    font-size: 1.8rem;
  }
}
.main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-date,
.main-bottom .added-comments .comment .comment-content-wrapper .comment-date {
  color: #808080;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-date,
  .main-bottom .added-comments .comment .comment-content-wrapper .comment-date {
    font-size: 1.4rem;
    margin-top: 2px;
  }
}
.main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-content,
.main-bottom .added-comments .comment .comment-content-wrapper .comment-content {
  margin-bottom: 1.1rem;
  font-size: 16px;
}
@media (min-width: 768px) {
  .main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-content,
  .main-bottom .added-comments .comment .comment-content-wrapper .comment-content {
    font-size: 1.8rem;
  }
}
.main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-attachment,
.main-bottom .added-comments .comment .comment-content-wrapper .comment-attachment {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 20rem;
  margin-bottom: 1.8rem;
}

.picture-error {
  color: red;
  font-size: 10px;
  margin-bottom: 2.6rem;
}

.comment-div {
  width: 50px;
  height: 50px;
  color: white;
  font-size: 36px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  text-transform: uppercase;
  margin-right: 20px;
}

.picture-error {
  color: red;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.telephone-box {
  border: 0.2rem solid #cf0000;
  max-width: 50rem;
  color: black;
  margin: 2rem auto 4rem;
  font-size: 2rem;
  line-height: 4.2rem;
  padding: 0.5rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}
@media (min-width: 525px) {
  .telephone-box {
    font-size: 3.5rem;
  }
}
@media (min-width: 768px) {
  .telephone-box {
    font-size: 4.5rem;
  }
}
.telephone-box::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15%;
  width: 2.6rem;
  height: 2.6rem;
  background-image: url("../images/icon-phone.svg");
  background-size: 100% 100%;
}

.hr {
  width: 100%;
  height: 0.1rem;
  margin: 1.5rem 0;
  background-color: #707070;
}

aside {
  display: none;
}
@media (min-width: 768px) {
  aside {
    display: block;
  }
}

.aside__item {
  margin-top: 1.4rem;
}
.aside__item .covid--title {
  background-color: #9f0202;
  font-size: 1.6rem;
  color: #fff;
  font-weight: bold;
  padding: 0.9rem 0.8rem;
}
.aside__item .covid_wrapper {
  padding: 1.5rem 1.3rem;
  background-image: url("../images/covid-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.aside__item .covid_wrapper .inner {
  color: #fff;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 0.3rem;
  margin-bottom: 1.5rem;
}
.aside__item .covid_wrapper .inner_data {
  font-weight: bold;
}
.aside__item .covid_wrapper .inner:last-of-type {
  margin-bottom: 5rem;
}

.phone__title {
  font-size: 40px;
  color: red;
  text-align: center;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .phone__title {
    font-size: 24px;
  }
}

footer {
  margin-top: 3.2rem;
}
footer .text-gray {
  text-align: center;
}
footer .container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 55.6rem;
}
footer .copyright {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 5px;
}
footer .attachments {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 8px;
}
footer .attachments .text-gray {
  text-decoration: underline;
}
footer .company-address {
  margin-top: 2.3rem;
  margin-bottom: 1.8rem;
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.col {
  width: 50%;
  text-align: center;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .col {
    padding: 0 2.5rem;
  }
}
.col__title {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
}
.col__title--green {
  color: #5faf5c;
}
.col__title--red {
  color: #820000;
}
.col__text {
  font-size: 1.6rem;
  line-height: 2.5rem;
}

.picture-error {
  color: red;
  font-size: 10px;
  margin-bottom: 2.6rem;
}

.picture-error-desk {
  display: none;
}

@media (min-width: 768px) {
  .picture-error {
    display: none;
  }
  .picture-error-desk {
    display: block;
    color: #ee0000;
    font-size: 14px;
  }
}
.image-wrapper-bgc {
  margin-top: -80px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.image-wrapper-bgc img {
  width: 100%;
}
@media (min-width: 600px) {
  .image-wrapper-bgc {
    display: none;
  }
}

.product-image {
  display: block;
  width: 500px;
  height: auto;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 525px) {
  .product-image {
    width: 350px;
  }
}

.product-image-container {
  margin: 0 auto;
  background: url(../images/CTA_BG.jpg);
  background-position: center -70px;
  background-size: 200%;
  width: 100%;
  background-repeat: no-repeat;
  width: 100%;
}
@media (min-width: 525px) {
  .product-image-container {
    background: url("../images/CTA_BG.jpg");
    background-position: center;
    width: 100%;
  }
}

@media (min-width: 1500px) {
  .summary-bgc {
    background: url("../images/HERO_GB.jpg");
    background-repeat: no-repeat;
  }
}

.main-bgc-img {
  height: auto;
  height: 100%;
  background-size: cover;
  justify-content: center;
  align-items: center;
}
@media (min-width: 996px) {
  .main-bgc-img {
    background: url("../images/HERO_GB.jpg");
    background-repeat: no-repeat;
    display: flex;
  }
}

.hero-img-bg-mobile {
  margin: 0 auto;
  background: url("../images/CTA_BG.jpg");
  background-position: center -70px;
  background-size: 200%;
  width: 100%;
  background-repeat: no-repeat;
  width: 100%;
}
@media (min-width: 991px) {
  .hero-img-bg-mobile {
    background: none;
  }
}

@media (min-width: 700px) {
  .hero-img-tablet {
    max-width: 500px;
    margin: 0 auto;
  }
}

.main-bgc-content {
  display: flex;
  flex-direction: column;
}
@media (min-width: 996px) {
  .main-bgc-content {
    flex-direction: row;
    padding: 0 20px;
    margin-top: 80px;
  }
}
.main-bgc-content a {
  color: white;
  background-color: #30b71d;
  border-radius: 10px;
  max-width: 360px;
  margin: 0 auto;
  display: block;
  text-align: center;
  font-size: 26px;
  line-height: 35px;
  padding: 8px;
  margin-bottom: 16px;
}
@media (min-width: 356px) {
  .main-bgc-content a {
    font-size: 30px;
  }
}
@media (min-width: 996px) {
  .main-bgc-content a {
    max-width: 441px;
    margin: unset;
  }
}

.main-bgc-box {
  padding: 0 16px;
}
@media (min-width: 996px) {
  .main-bgc-box {
    padding: unset;
  }
}
.main-bgc-box p {
  font-size: 18px;
  display: flex;
  flex-direction: column;
  font-weight: 500;
  line-height: 26px;
  text-align: center;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .main-bgc-box p {
    font-size: 36px;
    line-height: 45px;
  }
}
@media (min-width: 996px) {
  .main-bgc-box p {
    text-align: left;
  }
}
.main-bgc-box p span {
  color: #8a0c17;
  font-weight: bold;
}

.photos {
  display: none;
  gap: 12px;
  margin-top: 16px;
}
@media (min-width: 996px) {
  .photos {
    display: flex;
  }
}

.photos-mobile {
  display: flex;
  gap: 12px;
  margin: 0 auto;
}
@media (min-width: 996px) {
  .photos-mobile {
    display: none;
    margin-top: 16px;
  }
}

.photos-box {
  background-color: #9ccef5;
  box-shadow: 0px 0px 6px rgba(170, 107, 107, 0.4);
  border-radius: 10px;
  max-width: 101px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 15px 5px;
}
@media (min-width: 500px) {
  .photos-box {
    max-width: 150px;
  }
}
.photos-box p {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #0b4977;
  line-height: 21px;
}
@media (min-width: 500px) {
  .photos-box p {
    font-size: 18px;
  }
}

.photos-box-2 {
  background-color: #5fa5d9;
}
.photos-box-2 p {
  color: #ffffff;
}

.photos-box-3 {
  background-color: #386a8f;
}
.photos-box-3 p {
  color: #ffffff;
}

.paragraph-bold {
  font-weight: bold;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 32px;
  border-left: 8px solid #8a0c17;
  padding-left: 16px;
}
@media (min-width: 768px) {
  .paragraph-bold {
    font-size: 30px;
    line-height: 32px;
  }
}

.paragraph-bold-1 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 36px;
}
@media (min-width: 768px) {
  .paragraph-bold-1 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 32px;
  }
}

input[type=checkbox] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #007bff;
  margin-right: 13px;
}

label {
  font-size: 18px;
  margin-right: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  margin-right: 20px;
}

.list-bgc {
  border: 1px solid #9ccef5;
  background-color: #e4f7fe;
  border-radius: 12px;
  padding: 12px 8px;
}
@media (min-width: 1200px) {
  .list-bgc {
    background: url("../images/RAMKA_BG.png");
    background-size: cover;
    width: 100%;
    padding: 22px 0px 16px 22px;
    border-radius: 10px 10px 0px 10px;
  }
}

.list-title {
  color: #c24654;
  font-weight: bold;
  margin-bottom: 16px;
}

.list-box-answer-mb {
  margin-bottom: 32px;
}

.list-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 12px;
}
@media (min-width: 1200px) {
  .list-container {
    gap: 3px;
  }
}

.list-item {
  display: flex;
  align-items: start;
  gap: 10px;
}
.list-item img {
  margin-top: 10px;
}

.blue-bgc {
  background-color: #386a8f;
  border-radius: 10px 10px 10px 10px;
  padding: 16px;
  color: white;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .blue-bgc {
    margin-bottom: 32px;
  }
}
@media (min-width: 1200px) {
  .blue-bgc {
    border-radius: 10px 0px 10px 10px;
  }
}

.blue-bgc-list-box {
  display: flex;
  gap: 16px;
}

.blue-bgc-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.img-flex {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  align-items: center;
}
.img-flex img {
  max-width: 482px;
  width: 100%;
  display: block;
}
@media (min-width: 1060px) {
  .img-flex {
    flex-direction: row;
    justify-content: center;
    margin-bottom: 32px;
  }
}

.before-after {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
@media (min-width: 996px) {
  .before-after {
    flex-direction: row;
    gap: 16px;
  }
}

.before-after-box {
  max-width: 474px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.before-after-box span {
  font-size: 22px;
  font-weight: bold;
  color: #8a0c17;
  margin: 16px 0 16px;
}
@media (min-width: 768px) {
  .before-after-box span {
    margin: 9px 0 16px;
  }
}
.before-after-box p {
  text-align: center;
}

.before-after-img {
  position: absolute;
  right: 0px;
  top: -15px;
}

.arrow {
  position: absolute;
  left: 77%;
  top: 8%;
  z-index: 999;
  display: none;
}
@media (min-width: 996px) {
  .arrow {
    display: block;
  }
}

.three-tears {
  margin: 32px 0 0 0px;
}
@media (min-width: 768px) {
  .three-tears {
    margin: 60px 0 0 20px;
  }
}

.tears-text {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .tears-text {
    margin-bottom: 24px;
  }
}

.tears-text-2 {
  margin: 16px 0;
}
@media (min-width: 768px) {
  .tears-text-2 {
    margin: 23px 0 32px 0px;
  }
}

.tear {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  margin: 8px 0 0 0;
  background: transparent linear-gradient(90deg, rgba(48, 183, 29, 0.1490196078) 0%, rgba(48, 183, 29, 0) 100%) 0% 0% no-repeat padding-box;
  padding: 10px 17px;
  margin-left: -16px;
}
@media (min-width: 996px) {
  .tear {
    margin-left: -20px;
  }
}

.drop {
  width: 18px;
  height: auto;
}

.stages {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .stages {
    flex-direction: row;
  }
}

.stage-one,
.stage-two,
.stage-three {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.stage-one-text,
.stage-two-text,
.stage-three-text {
  background-color: #0090fe;
  /* padding: 8px 125px 8px 125px; */
  width: 100%;
  text-align: center;
  padding: 8px;
  color: white;
  font-weight: bolder;
  margin-top: 15px;
  max-width: 328px;
}

.stage-one-text-under,
.stage-two-text-under,
.stage-three-text-under {
  display: flex;
  text-align: center;
  margin-top: 16px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 55px;
}
@media (min-width: 996px) {
  .testimonials {
    flex-direction: row;
    gap: 65px;
  }
}

.testimonial-container {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.0784313725);
  border: 1px solid #f2f2f2;
  border-radius: 20px;
  background-color: #fff7e1;
  padding: 16px;
  max-width: 278px;
}
@media (min-width: 996px) {
  .testimonial-container {
    height: 278px;
  }
}

.bgc-product-box {
  margin-top: -80px;
  display: flex;
  justify-content: center;
}
.bgc-product-box img {
  width: 100%;
  max-width: 600px;
}
@media (min-width: 600px) {
  .bgc-product-box {
    display: none;
  }
}

.testimonial-wrap {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-style: italic;
}

.product-title {
  color: #8a0c17;
  font-size: 37px;
  line-height: 47px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .product-title {
    font-size: 48px;
    margin-bottom: 33px;
  }
}

.product-subtitle {
  color: #0090fe;
  font-size: 18px;
  text-align: center;
  line-height: 26px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .product-subtitle {
    font-size: 25px;
    line-height: 40px;
  }
}

.product-text {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .product-text {
    font-size: 20px;
    line-height: 40px;
    margin-top: unset;
  }
}

.counter-container {
  display: inline-flex;
  gap: 5px;
}

.digit-box {
  display: inline-block;
  border: 1px solid #0b4977;
  border-radius: 5px;
  box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  font-weight: bold;
  font-size: 50px;
  color: #8a0c17;
  line-height: 55px;
  text-align: center;
}

.box {
  display: inline-block;
  border: 1px solid #0b4977;
  border-radius: 5px;
  box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  padding: 5px 10px;
  font-weight: bold;
  font-size: 30px;
  color: #8a0c17;
  text-align: center;
}

.summary-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: bold;
  text-align: center;
}

.summary-counter-box {
  display: flex;
  align-items: center;
  gap: 9px;
}

.btn-summary {
  background: #30b71d 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.2509803922);
  border: 2px solid #ffffff;
  border-radius: 50px;
  color: #f2f2f2;
  font-size: 18px;
  margin: 0 auto 32px;
  width: 100%;
  padding: 10px 20px;
  display: flex;
  font-weight: 500;
  max-width: 500px;
  text-align: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
@media (min-width: 768px) {
  .btn-summary {
    font-size: 26px;
    width: 80%;
    padding: 24px;
    max-width: unset;
  }
}

.btn-summary:hover {
  box-shadow: unset;
}

.phone-visible {
  border-radius: 50px;
  color: #30b71d;
  font-size: 37px;
  margin: 0 auto 32px;
  padding: 20px;
  width: 100%;
  max-width: 500px;
  font-weight: 500;
  box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border: 2px solid #30b71d;
  border-radius: 50px;
  text-align: center;
}
@media (min-width: 768px) {
  .phone-visible {
    font-size: 54px;
    line-height: 60px;
    width: 75%;
    padding: 24px;
    max-width: unset;
  }
}

.phone-box {
  display: flex;
  justify-content: center;
}/*# sourceMappingURL=styles.css.map */