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

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
  color: black;
  background-color: #efefef;
}

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

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

.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;
}

aside {
  display: none;
  background-color: white;
}
@media (min-width: 1185px) {
  aside {
    display: block;
  }
}

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

.image-wrapper-desktop {
  margin: 2.5rem 0 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (min-width: 768px) {
  .image-wrapper-desktop {
    display: block;
  }
}

.image-wrapper-mobile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.image-wrapper-mobile img {
  max-width: 350px;
  width: 100%;
}
@media (min-width: 768px) {
  .image-wrapper-mobile {
    display: none;
  }
}

.summary-button {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #62a620;
  padding: 1.5rem;
  border: 1px solid #62a620;
  color: white;
  text-align: center;
  font-size: 1.9rem;
  font-weight: 700;
  margin: 3rem auto 3rem;
  transition: all 0.35s ease-in-out;
  box-shadow: 0px 5px 0px #3a7402;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .summary-button {
    font-size: 2.5rem;
    width: 75%;
  }
}
.summary-button:hover {
  cursor: pointer;
  background-color: #53891d;
}

.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;
}

.btn {
  width: 100%;
  max-width: 50.8rem;
  border: 2px solid #19ae30;
  background-color: #19ae30;
  border-radius: 0.2rem;
  text-align: center;
  display: block;
  color: white;
  font-size: 2.4rem;
  font-weight: 700;
  padding: 2.1rem;
  margin: 0 auto 2rem;
  cursor: pointer;
  transition: all 0.35s ease-in-out;
}
.btn:hover {
  color: #19ae30;
  background-color: white;
  border: 2px solid #19ae30;
}

.decoration {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 0.5rem;
}
.decoration-1 {
  background-color: #f69087;
}
.decoration-2 {
  background-color: #85ccb1;
}
.decoration-3 {
  background-color: #85a9b3;
}
.decoration-4 {
  background-color: #b0cb7a;
}

header {
  width: 100%;
  background-color: #2e3641;
  display: flex;
  flex-direction: column;
}
header .header-title {
  font-size: 4.5rem;
  color: white;
  font-weight: 500;
  padding: 2.1rem 2.4rem;
}

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

.summary-content {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
  max-width: 1116px;
  padding: 0 2rem;
  margin: 0 auto;
}

.site-content {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
  margin-top: 1rem;
  padding: 0 2rem;
}
@media (min-width: 768px) {
  .site-content {
    grid-template-columns: 65% 31%;
  }
}
@media (min-width: 1240px) {
  .site-content {
    grid-template-columns: 82rem 30.4rem;
    grid-template-columns: 75rem 32.4rem;
  }
}

.main-top,
.main-bottom,
.main-summary {
  background-color: white;
  padding: 5rem 2rem;
}
@media (min-width: 768px) {
  .main-top,
  .main-bottom,
  .main-summary {
    padding: 7rem 3rem 4.7rem 3rem;
  }
}

@media (min-width: 768px) {
  .main-summary {
    max-width: 1116px;
    padding: 50px 120px;
  }
}

.main-bottom {
  padding-top: 3rem;
}
@media (min-width: 768px) {
  .main-bottom {
    padding: 0rem 3rem 4.1rem 3rem;
  }
}

main .summary-title {
  font-size: 3.5rem;
  line-height: 4rem;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  color: #ae1f1f;
  padding: 0.5rem 2rem;
  text-align: center;
  margin: 0 auto 2.5rem;
}
@media (min-width: 992px) {
  main .summary-title {
    font-size: 7rem;
  }
}
main .main-title {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  line-height: 3rem;
  color: #ae1f1f;
  margin-bottom: 3rem;
  max-width: 650px;
}
main .main-title span {
  font-size: 2rem;
}
@media (min-width: 500px) {
  main .main-title {
    font-size: 4rem;
    line-height: 4rem;
  }
  main .main-title span {
    font-size: 3rem;
  }
}
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;
  line-height: 2.6rem;
  margin-bottom: 1.2rem;
}
main .main-paragraph-big {
  font-size: 1.8rem;
  line-height: 2.4rem;
  margin-bottom: 1.5rem;
}
main .paragraph {
  font-size: 1.7rem;
  line-height: 2.5rem;
  margin-bottom: 2rem;
}

.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: 3rem;
}
.main-top .green-box {
  background-color: #c2e5d8;
  padding: 2.2rem 1.5rem 1rem;
  margin-bottom: 3.8rem;
}
.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: 20rem;
}
@media (min-width: 768px) {
  .main-top .product-image {
    max-width: 27rem;
  }
}

.main-bottom .comments-title {
  text-transform: uppercase;
  font-size: 2.6rem;
  font-weight: bold;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #d4d4d4;
}
.main-bottom .form-add-comment {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}
.main-bottom .form-add-comment input {
  margin-bottom: 0.8rem;
}
.main-bottom .form-add-comment textarea {
  margin-bottom: 2.2rem;
  resize: none;
  min-height: 10rem;
}
.main-bottom .form-add-comment input,
.main-bottom .form-add-comment textarea {
  padding: 0.4rem 0.7rem 0.5rem 0.5rem;
  outline: none;
  font-family: "Roboto", sans-serif;
  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-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  line-height: 2.1rem;
}
.main-bottom .form-add-comment input::placeholder,
.main-bottom .form-add-comment textarea::placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  line-height: 2.1rem;
}
.main-bottom .form-add-comment .form-buttons {
  display: flex;
  gap: 1.1rem;
}
.main-bottom .form-add-comment .form-buttons .form-btn {
  padding: 0.9rem;
  color: white;
  background-color: #868e96;
  border-radius: 0.3rem;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease-in-out;
}
.main-bottom .form-add-comment .form-buttons .form-btn:hover {
  background-color: #5f6468;
}
.main-bottom .comments-wrapper .comment,
.main-bottom .added-comments .comment {
  display: flex;
  margin-bottom: 1.7rem;
}
.main-bottom .comments-wrapper .comment .comment-avatar,
.main-bottom .added-comments .comment .comment-avatar {
  width: 48px;
  height: 48px;
  margin-right: 2.4rem;
}
.main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-row,
.main-bottom .added-comments .comment .comment-content-wrapper .comment-row {
  display: flex;
  align-items: start;
}
.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.4rem;
  font-weight: 500;
  color: #000000;
  margin-right: 0.9rem;
  margin-bottom: 0.8rem;
  font-weight: bold;
}
@media (min-width: 500px) {
  .main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-author,
  .main-bottom .added-comments .comment .comment-content-wrapper .comment-author {
    font-size: 1.7rem;
  }
}
.main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-date,
.main-bottom .added-comments .comment .comment-content-wrapper .comment-date {
  font-size: 1.3rem;
}
@media (min-width: 500px) {
  .main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-date,
  .main-bottom .added-comments .comment .comment-content-wrapper .comment-date {
    font-size: 1.7rem;
  }
}
.main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-content,
.main-bottom .added-comments .comment .comment-content-wrapper .comment-content {
  margin-bottom: 1.1rem;
}
.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: 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__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;
}

.comments-wrapper {
  margin-bottom: 40px;
}

footer {
  margin-top: 10rem;
}
footer .text-gray {
  text-align: center;
}
footer .container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 55.6rem;
}
footer .copyright {
  margin-bottom: 2.3rem;
}
footer .attachments {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}
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;
  width: 100%;
  max-width: 67rem;
  margin: 0 auto 2rem;
}

.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;
}

@media (min-width: 768px) {
  .pic2 {
    max-width: 57rem;
  }
}

.banner {
  position: relative;
  max-width: 100%;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
}

.text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
}

.text-overlay p {
  font-size: 27px;
  color: #ffffff;
  margin: 0;
  line-height: 26px;
}
.text-overlay p span {
  font-size: 16px;
}
@media (min-width: 1185px) {
  .text-overlay p {
    font-size: 37px;
    line-height: 36px;
  }
}
.text-overlay p span {
  font-size: 22px;
}

.text-overlay button {
  font-family: "Ubuntu", sans-serif;
  background-color: #f7ff00;
  color: #000;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.arrow-circle {
  display: inline-block;
  margin-left: 10px;
  width: 24px;
  height: 24px;
  background-color: transparent;
  border: 1px solid #000;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-size: 18px;
  font-weight: bold;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.before-after-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}
@media (min-width: 768px) {
  .before-after-container {
    flex-direction: row;
  }
}

.before-after-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.before-after-box img {
  width: 100%;
}
.before-after-box p {
  text-align: center;
  background-color: #856404;
  width: 100%;
  font-size: 14px;
  color: white;
  padding: 5px 0;
  letter-spacing: 3px;
}

.product {
  margin: 1rem auto;
  text-align: center;
}
@media (min-width: 1200px) {
  .product {
    margin-left: 180px;
  }
}
.product__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .product__wrapper {
    flex-direction: row;
    align-items: end;
  }
}
.product__imgWrapper {
  position: relative;
  max-width: 24rem;
}
.product__img {
  width: 100%;
  max-width: 404px;
}
.product__contentWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 15rem;
  text-align: center;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .product__contentWrapper {
    margin-left: -50px;
    margin-bottom: 60px;
  }
}
.product__counterDescription {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: bold;
}
.product__counter {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product__counterBox {
  font-size: 30px;
  color: #3d3d3d;
  padding: 0 5px;
  font-weight: bold;
  border: 1px solid #707070;
  border-radius: 2px;
  margin: 0 1px;
  background-color: #ffee00;
}
.product__price {
  margin-bottom: 2rem;
}
.product__price .price-old {
  margin-right: 0.6rem;
  text-decoration: line-through;
}

.box {
  background-color: #fff3cd;
  padding: 30px 20px;
  border-radius: 10px;
  margin-bottom: 40px;
}
.box h3 {
  color: #856404;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .box h3 {
    font-size: 30px;
  }
}

.box-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 635px;
  margin: 0 auto 20px;
}
.box-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .box-wrap {
    flex-direction: row;
  }
}
.box-wrap p {
  color: white;
  text-align: center;
  font-size: 14px;
  padding: 5px;
  letter-spacing: 3px;
  font-weight: bold;
}

.before,
.after {
  position: relative;
}

.before p {
  background-color: #ff0000;
}

.after p {
  background-color: #41b300;
}

.box-name {
  display: flex;
  gap: 15px;
  align-items: center;
}
.box-name p {
  font-weight: bold;
  font-size: 17px;
}
.box-name img {
  max-width: 71px;
}

.testimonials {
  padding: 0px 30px;
  margin-top: 70px;
  border-left: 1px solid #d3d3d3;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #cce5ff;
  padding: 20px;
  border-radius: 10px;
}

.testimonial-title {
  color: #3d466e;
  font-size: 25px;
  font-weight: 500;
  text-align: center;
}

.testimonial-text {
  line-height: 25px;
  margin-bottom: 10px;
}

.prof-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 20px;
}
.prof-box img {
  max-width: 213px;
}
@media (min-width: 996px) {
  .prof-box {
    flex-direction: row;
  }
}

.list-box {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 15px;
}
.list-box img {
  margin-top: 3px;
}
.list-box span {
  line-height: 25px;
}

.before-text,
.after-text {
  position: absolute;
  top: 20px;
  left: 10px;
  padding: 15px;
}

.box-bgc {
  background-color: #f3efe5;
  padding: 20px;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .box-bgc {
    padding: 20px 30px;
  }
}
.box-bgc h3 {
  color: #856404;
  margin-bottom: 20px;
  font-size: 24px;
}

.box-content {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 25px;
}

.box-content:last-of-type {
  margin-bottom: unset;
}

.box-bgc-text p {
  font-size: 17px;
  font-weight: bold;
  line-height: 25px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .box-bgc-text p {
    font-size: 20px;
  }
}
.box-bgc-text span {
  line-height: 25px;
}

.product-photo {
  width: 100%;
  margin: 40px 0;
  max-width: 700px;
  display: none;
}
@media (min-width: 768px) {
  .product-photo {
    margin-left: 20px;
    display: block;
  }
}

.product-photo-mobile {
  width: 100%;
  margin: 40px auto;
  max-width: 400px;
}
@media (min-width: 768px) {
  .product-photo-mobile {
    display: none;
  }
}

.title {
  font-size: 25px;
  font-weight: bold;
  max-width: 580px;
  margin: 0 auto 20px;
  line-height: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .title {
    font-size: 35px;
  }
}

.green {
  color: #41b300;
}

.product-promo {
  display: flex;
}

.attention {
  background-color: #ffe5e5;
  padding: 15px 20px;
  text-align: center;
  line-height: 25px;
  margin: 30px 0;
}
.attention b {
  font-size: 20px;
}

.text-red-2 {
  font-weight: bold;
  color: #ff0000;
  line-height: 25px;
  text-align: center;
  margin-bottom: 20px;
}

.title-2 {
  color: #ae1f1f;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin: 60px 0 30px;
}
@media (min-width: 768px) {
  .title-2 {
    font-size: 33px;
    text-align: left;
    margin: 90px 0 30px;
  }
}

.green-box-2 {
  color: #00822b;
  background-color: #e5f2e9;
  padding: 10px 20px;
  border-radius: 10px;
}

.information-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (min-width: 768px) {
  .information-box {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.information {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}
.information input {
  padding: 10px;
  border: 1px solid #a0a0a0;
  border-radius: 5px;
  max-width: 470px;
  width: 100%;
}

.information input::-moz-placeholder {
  color: #a0a0a0;
  font-size: 17px;
}

.information input::placeholder {
  color: #a0a0a0;
  font-size: 17px;
}

.images {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media (min-width: 500px) {
  .images {
    flex-direction: row;
    gap: 30px;
  }
}

.images-1 {
  max-width: 202px;
  max-height: 110px;
}

.images-2 {
  max-width: 200px;
  max-height: 100px;
}

.order-btn {
  padding: 10px;
  border: none;
  background-color: #41b300;
  color: white;
  border-radius: 5px;
  font-size: 22px;
  font-weight: bold;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: 30px auto;
}
@media (min-width: 768px) {
  .order-btn {
    font-size: 25px;
    padding: 20px 15px;
  }
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
}
@media (min-width: 768px) {
  .buttons {
    flex-direction: row;
    margin: 0 auto;
    max-width: unset;
    font-size: 25px;
    gap: 20px;
  }
}
.buttons p {
  background-color: #8daee9;
  color: white;
  font-size: 18px;
  border-radius: 25px;
  padding: 15px;
}
@media (min-width: 768px) {
  .buttons p {
    padding: 30px 50px;
    font-size: 25px;
  }
}
.buttons p span {
  color: #008000;
  font-weight: bold;
}

.img-3 {
  margin-bottom: 20px;
  width: 100%;
  max-width: 693px;
}

.box-price {
  font-family: "Open Sans";
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 35px;
  margin-bottom: 10px;
}
.box-price p {
  color: #ff0000;
}
.box-price b {
  color: #41b300;
}

.btn-link {
  color: #003fe9;
  font-size: 22px;
  font-weight: bold;
  text-decoration: underline;
  line-height: 30px;
}
@media (min-width: 768px) {
  .btn-link {
    font-size: 35px;
    line-height: 40px;
  }
}

.product-img {
  width: 100%;
  max-width: 531px;
  margin: 0 auto 10px;
}

.hr {
  height: 2px;
  color: black;
  width: 95%;
  margin: 0 auto;
}

.summary-product {
  max-width: 407px;
  width: 100%;
  margin: 16px auto;
}

.line {
  height: 1px;
  background-color: #707070;
  width: 100%;
  margin: 0 auto;
  margin-top: 47px;
}

.phone-content {
  max-width: 1117px;
}/*# sourceMappingURL=styles.css.map */