@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Host Grotesk", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #270622;
  background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
  font-weight: normal;
}

.heading {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  line-height: 5.5rem;
  padding-left: 10px;
  margin-top: 80px;
}
@media (min-width: 1300px) {
  .heading {
    font-size: 5rem;
  }
}
@media (min-width: 1500px) {
  .heading {
    margin-top: 130px;
  }
}
@media (min-width: 1800px) {
  .heading {
    margin-top: 180px;
  }
}
.heading--yellow {
  color: #f7ff00;
}
.heading--red {
  color: #fd2f37;
}

.subheading {
  font-size: 2rem;
  line-height: 35px;
  padding-left: 10px;
  font-weight: 700;
  color: white;
  max-width: 440px;
}
@media (min-width: 1300px) {
  .subheading {
    font-size: 2.5rem;
  }
}

.lead {
  padding-top: 20px;
  font-size: 3.5rem;
  line-height: 3.2rem;
  font-weight: 700;
  color: #034c8c;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .lead {
    font-size: 5rem;
  }
}

.header-btn {
  padding: 10px 0;
  margin-left: 10px;
  background: transparent linear-gradient(270deg, #ff3139 0%, #ba0005 100%) 0% 0% no-repeat padding-box;
  border: 2px solid rgba(255, 255, 255, 0.5019607843);
  border-radius: 29px;
  color: #ffffff;
  margin-top: 30px;
  display: block;
  text-align: center;
  max-width: 300px;
  font-weight: bold;
  font-size: 29px;
  cursor: pointer;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}
.nav img {
  max-width: 237px;
}
@media (min-width: 1450px) {
  .nav img {
    max-width: 300px;
  }
}
.nav p {
  color: white;
  font-size: 30px;
  text-align: center;
  margin: 0 auto;
  line-height: 30px;
  display: none;
}
.nav p span {
  font-weight: bold;
}

.nav-items {
  gap: 10px;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (min-width: 1050px) {
  .nav-items {
    display: flex;
  }
}
.nav-items a {
  cursor: pointer;
}

.nav-item {
  border: 1px solid #ffffff;
  border-radius: 29px;
  font-size: 18px;
  color: #ffffff;
  font-weight: 300;
  padding: 7px 15px;
}

.nav-item-2 {
  background: transparent linear-gradient(270deg, #ffff31 0%, #ff9100 100%) 0% 0% no-repeat padding-box;
  border: 2px solid rgba(255, 255, 255, 0.5019607843);
  border-radius: 29px;
  color: #000000;
  padding: 3px 15px;
  font-size: 25px;
  font-weight: bold;
}

.title {
  font-size: 2.2rem;
  line-height: 4.5rem;
  font-weight: 700;
  margin-bottom: 3.5rem;
  color: #0055a7;
  font-size: 35px;
  text-align: center;
}
@media (min-width: 768px) {
  .title {
    font-size: 40px;
  }
}

.title-25 {
  font-size: 25px;
  text-align: center;
  line-height: 33px;
  margin-bottom: 20px;
}
@media (min-width: 1049px) {
  .title-25 {
    font-size: 46px;
    line-height: 55px;
  }
}

.paragraph {
  font-size: 1.6rem;
  line-height: 24px;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .paragraph {
    font-size: 1.8rem;
    line-height: 26px;
  }
}
.paragraph--white {
  color: white;
}
.paragraph--red {
  color: #fd2f37;
}
.paragraph--green {
  color: #149e00;
}
.paragraph--center {
  text-align: center;
}
.paragraph--line-through {
  text-decoration: line-through;
}
.paragraph--mb-zero {
  margin-bottom: 0;
}

.container {
  width: 100%;
  max-width: 118rem;
  margin-inline: auto;
  padding: 0 1.5rem;
}

.container-2 {
  position: relative;
  width: 100%;
  max-width: 125rem;
  margin-inline: auto;
  padding: 0 1.5rem;
}
@media (min-width: 960px) {
  .container-2 {
    padding: 0;
  }
}

.line {
  top: 79px;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  border: none;
  opacity: 0.3;
  display: none;
}
@media (min-width: 1200px) {
  .line {
    display: block;
  }
}
@media (min-width: 1450px) {
  .line {
    top: 95px;
  }
}

.list {
  padding-left: 0rem;
}

ul.list li {
  list-style-type: none;
  position: relative;
  padding-left: 20px;
}

ul.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 12px;
  background-color: #ffe400;
  border: 3px solid #D50000;
  border-radius: 50%;
}

.text {
  line-height: 28px;
  margin-bottom: 15px;
}

.header {
  padding: 2.5rem 0 0;
}

.img__boxes {
  max-width: 61.6rem;
}
.img__product {
  max-width: 50rem;
}
.img__row {
  max-width: 24.2rem;
}
.img__avatar {
  width: 100%;
  max-width: 9.6rem;
}
.img__phone {
  max-width: 2.4rem;
}

.header-baner {
  margin-top: 10px;
  width: 100%;
}

.figure {
  text-align: center;
  margin: 0;
}
.figure p {
  font-size: 38px;
  color: #ffffff;
  font-weight: bold;
  background-color: #034c8c;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .figure p {
    font-size: 60px;
    width: 80px;
    height: 80px;
  }
}

.before-after {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 35px;
}

.before-after-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.before-after-text {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 25px;
}

.before-text {
  color: #d50000;
}

.after-text {
  color: #149e00;
}

.age-wrapper {
  border: 2px solid #d8c3b2;
  border-radius: 25px;
  padding: 24px 11px;
}
@media (min-width: 1049px) {
  .age-wrapper {
    position: relative;
    background-image: url(../images/sec_2_frame_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    max-width: 1010px;
    padding: 24px 25px;
  }
}

.age-img {
  position: absolute;
  right: -18rem;
  bottom: -151px;
}
@media (max-width: 1370px) {
  .age-img {
    display: none;
  }
}

.section--bg {
  padding-top: 2rem;
  display: none;
}
@media (min-width: 1300px) {
  .section--bg {
    display: block;
  }
}
.section--blue {
  background-image: url("../images/age_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 5px;
  z-index: 5;
  position: relative;
}
@media (min-width: 1049px) {
  .section--blue {
    background-image: url("../images/3_sec_bg.png");
    padding-top: 19rem;
    padding-bottom: 15rem;
  }
}
.section--color {
  background-color: #d2e4fe;
  padding: 100px 10px;
}

.section-box-container {
  background-image: url("../images/1_sec_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding: 220px 0 50px;
  position: relative;
  margin-top: -50px;
  z-index: 0;
}
@media (min-width: 1050px) {
  .section-box-container {
    background-image: url("../images/2_sec_bg.png");
    margin-top: -80px;
    padding: 350px 0 50px;
  }
}

.box-container-title {
  font-size: 25px;
  color: #550c4b;
  text-align: center;
  font-weight: bold;
  line-height: 33px;
}
@media (min-width: 1050px) {
  .box-container-title {
    font-size: 46px;
    line-height: 55px;
    max-width: 800px;
    margin: 0 auto;
  }
}

.hero-img-mobile {
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.section--bg {
  position: relative;
}

.background-image {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}

.container-2 {
  position: relative;
  z-index: 2;
}

.section--bg-mobile {
  position: relative;
}
@media (min-width: 1050px) {
  .section--bg-mobile {
    display: none;
  }
}

.background-image-mobile {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  max-height: 700px;
}

.product-images {
  position: relative;
  z-index: 3;
}
.product-images img {
  width: 100%;
}

.product-images-1 {
  max-width: 348px;
  position: absolute;
  margin-top: -160px;
  left: 50%;
  transform: translateX(-50%);
}

.flex-mobile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 1050px) {
  .flex-mobile {
    padding-bottom: 20px;
    align-items: start;
  }
}

.product-header {
  position: absolute;
  z-index: 5;
  left: 50%;
  transform: translateX(-50%) translateY(-150px);
  max-width: 360px;
}
@media (min-width: 1050px) {
  .product-header {
    display: none;
  }
}

.product-header-desktop {
  display: none;
}
@media (min-width: 1050px) {
  .product-header-desktop {
    display: block;
    position: absolute;
    z-index: 1;
    left: 37%;
    transform: translateX(-50%) translateY(-235px);
  }
}

.container-2-mobile {
  justify-content: center;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.nav-mobile {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.nav-mobile img {
  max-width: 237px;
}
@media (min-width: 1450px) {
  .nav-mobile img {
    max-width: 300px;
  }
}

.heading-mobile {
  font-size: 3rem;
  line-height: 3.3rem;
  padding: 0 15px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 500px) {
  .heading-mobile {
    line-height: 4rem;
  }
}
@media (min-width: 1050px) {
  .heading-mobile {
    text-align: left;
  }
}

.heading--mobile-yellow {
  color: #550c4b;
  font-size: 25px;
}
@media (min-width: 1199px) {
  .heading--mobile-yellow {
    font-size: 29px;
  }
}

.heading--red-mobile {
  color: #c3909c;
  font-size: 40px;
  line-height: 50px;
}
@media (min-width: 1199px) {
  .heading--red-mobile {
    font-size: 46px;
    line-height: 61px;
  }
}

.heading--white-mobile {
  color: white;
  font-size: 32px;
}
@media (min-width: 500px) {
  .heading--white-mobile {
    font-size: 45px;
  }
}

@media (min-width: 1199px) {
  .text-mobile-title {
    margin-bottom: 20px;
  }
}

.text-mobile {
  padding: 0 15px;
  color: #270622;
  font-size: 16px;
  text-align: left;
  line-height: 24px;
}
@media (min-width: 768px) {
  .text-mobile {
    font-size: 1.8rem;
    line-height: 26px;
  }
}

.text-mobile-box {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  color: #270622;
}
.text-mobile-box img {
  margin-top: -2px;
}

.subheading-mobile {
  font-size: 1.6rem;
  text-align: center;
  line-height: 25px;
  padding: 0 10px;
  font-weight: bold;
  color: white;
  max-width: 440px;
  margin-bottom: 50px;
}
@media (min-width: 500px) {
  .subheading-mobile {
    font-size: 18px;
  }
}

.header-btn-mobile,
.watch-container-btn {
  position: relative;
  z-index: 10;
  padding: 10px;
  background-color: #ee801e;
  box-shadow: 0 0 0 6px #ff8000, 0 0 18px rgb(0, 0, 0);
  border-radius: 35px;
  border: 2px solid white;
  color: #ffffff;
  display: block;
  text-align: center;
  width: 100%;
  max-width: 328px;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  margin: 0 auto;
}
@media (min-width: 500px) {
  .header-btn-mobile,
  .watch-container-btn {
    font-size: 20px;
  }
}

@media (min-width: 1050px) {
  .header-btn-mobile {
    margin: 0;
    max-width: 360px;
  }
}

.watch-container-btn {
  margin-top: 20px;
}
@media (min-width: 1050px) {
  .watch-container-btn {
    max-width: 392px;
  }
}

.product-images {
  display: flex;
}

.header-infos {
  white-space: nowrap;
  font-size: 18px;
  position: relative;
}
.header-infos-1 {
  position: absolute;
  left: -20rem;
  top: 4rem;
  padding-right: 10px;
  border-bottom: 2px solid #c3909c;
}
@media (max-width: 1200px) {
  .header-infos-1 {
    left: -13rem;
  }
}
.header-infos-1::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 2px;
  width: 2px;
  height: 260px;
  background-color: #c3909c;
  transform: rotate(162deg);
  transform-origin: bottom right;
  z-index: 5;
}
.header-infos-1::before {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 6px;
  height: 6px;
  background-color: #f9edec;
  border-radius: 50%;
  opacity: 50%;
  border: 3px solid #cccccc;
  box-shadow: 0 0 0 2px #f9edec;
  transform-origin: bottom right;
  transform: translateX(76px) translateY(245px) rotate(156deg);
  z-index: 6;
}
.header-infos-2 {
  font-size: 18px;
  position: absolute;
  z-index: 5;
  background-color: white;
  padding: 0 10px;
  border-radius: 14px;
  top: 10rem;
  right: -37rem;
}
@media (max-width: 1200px) {
  .header-infos-2 {
    left: 8rem;
  }
}
.header-infos-2::after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 17px;
  width: 2px;
  height: 50px;
  background-color: white;
  transform: rotate(148deg);
  transform-origin: bottom right;
  z-index: -1;
}
.header-infos-2::before {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 6px;
  height: 6px;
  background-color: #f9edec;
  border-radius: 50%;
  opacity: 80%;
  border: 3px solid #cccccc;
  box-shadow: 0 0 0 2px #f9edec;
  transform-origin: bottom right;
  transform: translateX(9px) translateY(33px) rotate(156deg);
  z-index: 6;
}
.header-infos-3 {
  position: absolute;
  z-index: 5;
  background-color: white;
  padding: 0 10px;
  border-radius: 14px;
  bottom: -15px;
  left: 13rem;
}
@media (max-width: 1200px) {
  .header-infos-3 {
    left: 15rem;
  }
}
.header-infos-3::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 21px;
  width: 2px;
  height: 50px;
  background-color: #ffffff;
  transform: rotate(215deg);
  transform-origin: bottom left;
  z-index: -1;
}
.header-infos-3::before {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 6px;
  height: 6px;
  background-color: #f9edec;
  border-radius: 50%;
  opacity: 50%;
  border: 3px solid #cccccc;
  box-shadow: 0 0 0 2px #f9edec;
  transform-origin: bottom right;
  transform: translateX(-308px) translateY(33px) rotate(21deg);
  z-index: 6;
}

.line-mobile {
  top: 79px;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  border: none;
  opacity: 0.3;
}

.info-points {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 470px;
}

.info-point {
  position: absolute;
  cursor: pointer;
  transform-origin: center;
  z-index: 5;
}
.info-point:nth-child(1) {
  top: 8rem;
  left: 60%;
}
.info-point:nth-child(2) {
  top: 22rem;
  left: 40%;
}
.info-point:nth-child(3) {
  top: 32rem;
  left: 20%;
  z-index: 10;
}

.plus-icon {
  width: 24px;
  height: 24px;
  background: rgba(249, 237, 236, 0.5);
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.info-bubble {
  position: absolute;
  background: white;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  display: none;
  z-index: 10;
  bottom: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
}
.info-bubble::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: white;
  transform: rotate(45deg);
  bottom: -5px;
  left: 50%;
  margin-left: -5px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.03);
}

.bubble-content {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

.info-point.active .plus-icon {
  width: 20px;
  height: 20px;
  background: rgba(128, 128, 128, 0.5);
  font-size: 0;
  border-width: 1px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
  transform: scale(0.7);
}
.info-point.active .info-bubble {
  display: block;
}

.row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 30px auto 60px;
  max-width: 704px;
}

.box {
  background-color: #077cab;
  border-radius: 1rem;
  margin-bottom: 3rem;
  padding: 4rem 3rem;
}
.box .paragraph {
  margin-bottom: 0;
}

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

.prices {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 50px 0;
}

.button {
  display: block;
  width: 100%;
  max-width: 74rem;
  font-size: 2.8rem;
  line-height: 3.8rem;
  text-align: center;
  font-weight: 700;
  color: white;
  padding: 2rem 1rem;
  margin: 3rem auto;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  text-decoration: underline;
  background: #068b48 0% 0% no-repeat padding-box;
  box-shadow: 0px 5px 0px #003f2d;
  border-radius: 46px;
}
@media (min-width: 768px) {
  .button {
    font-size: 4.3rem;
  }
}
.button:hover {
  cursor: pointer;
  background-color: #067c41;
}

.button-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 62rem;
  border: 0.2rem solid #d50000;
  background-color: white;
  border-radius: 1rem;
  font-size: 2.8rem;
  line-height: 3.2rem;
  text-align: center;
  font-weight: 700;
  color: black;
  padding: 2rem 1rem;
  margin: 3rem auto;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
.button-phone:hover {
  cursor: pointer;
}

.comment-img {
  width: 100%;
  margin-top: 5px;
  max-width: 215px;
}

.comments {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
}
.comments__row {
  display: grid;
  grid-template-columns: 4.8rem 1fr;
  grid-gap: 2rem;
  background: #ffffff 0% 0% no-repeat padding-box;
  border-radius: 20px;
  padding: 20px;
  width: 100%;
}
.comments__inner {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1rem;
}
.comments__date {
  line-height: 2rem;
  color: #6da216;
}
.comments__text {
  font-size: 1.5rem;
  line-height: 2.5rem;
}

.footer {
  background-color: #f0e6dd;
}
.footer__container {
  width: 100%;
  max-width: 113rem;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
}
.footer__text {
  font-size: 1.4rem;
  line-height: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
  color: black;
}
.footer__links {
  margin: 0.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .paragraph {
    font-size: 2rem;
    line-height: 35px;
  }
  .button-phone {
    font-size: 5rem;
    line-height: 6rem;
  }
  .comments__row {
    grid-template-columns: 8.6rem 1fr;
  }
  .comments__name {
    font-size: 2rem;
    line-height: 2.8rem;
  }
  .comments__text {
    font-size: 14px;
  }
  .img--phone {
    max-width: 4.6rem;
  }
}
.orange {
  color: #ff8800;
}

.red {
  color: #d50000;
}

.blue {
  color: #077cab;
  font-size: 30px;
  line-height: 42px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 30px;
}

.section--comments {
  background-color: #f3f3f3;
  width: 100%;
  padding: 100px 10px 105px 10px;
}

.summary-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
}

.summary-button {
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 3rem auto 0rem;
  padding: 20px 15px;
  cursor: pointer;
  color: white;
  border-radius: 35px;
  background-color: #ee801e;
  font-size: 14px;
  line-height: 24px;
  border: 2px solid white;
  box-shadow: 0 0 0 6px #ff8000, 0 0 18px rgb(0, 0, 0);
  transition: 0.3s;
}
@media (min-width: 460px) {
  .summary-button {
    font-size: 20px;
    line-height: 30px;
    padding: 20px 25px;
  }
}
@media (min-width: 768px) {
  .summary-button {
    font-size: 35px;
    line-height: 50px;
  }
}
@media (min-width: 1050px) {
  .summary-button {
    font-size: 22px;
    line-height: 26px;
    margin: unset;
    margin-left: 25px;
  }
}

a {
  text-decoration: none;
}

.summary-button:hover {
  color: #000;
  box-shadow: 0 0 0 6px #ff8000;
}

.summary-img-mobile {
  position: relative;
  max-width: 361px;
  padding-bottom: 0.7rem;
}
@media (min-width: 500px) {
  .summary-img-mobile {
    max-width: 467px;
  }
}

.sum1 {
  max-width: 300px !important;
  position: absolute;
  left: -2rem;
  top: -4rem;
}
@media (min-width: 500px) {
  .sum1 {
    top: 1rem;
  }
}

.sum2 {
  max-width: 120px !important;
  position: absolute;
  bottom: 5rem;
  right: 12rem;
}
@media (min-width: 500px) {
  .sum2 {
    max-width: 150px !important;
    right: 15rem;
  }
}

.sum3 {
  max-width: 100% !important;
}

.btn-margin {
  margin: 0 1rem;
}
@media (min-width: 1050px) {
  .btn-margin {
    margin: 3rem 0 5.5rem 0;
  }
}

.summary-img-mobile-price {
  position: absolute;
  text-align: center;
  color: white;
  font-weight: bold;
}
@media (max-width: 1050px) {
  .summary-img-mobile-price {
    top: 14rem;
  }
}
@media (max-width: 500px) {
  .summary-img-mobile-price {
    top: 9rem;
    left: 14rem;
  }
}
.summary-img-mobile-price p {
  font-size: 12px;
  line-height: 0;
}
@media (min-width: 500px) {
  .summary-img-mobile-price p {
    font-size: 13px;
  }
}
@media (max-width: 1050px) {
  .summary-img-mobile-price p {
    line-height: 3;
  }
}
.summary-img-mobile-price span {
  font-size: 28px;
}
@media (min-width: 500px) {
  .summary-img-mobile-price span {
    font-size: 38px;
  }
}

.summary-button-phone {
  font-weight: bold;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 3rem auto 0rem;
  padding: 20px 15px;
  box-shadow: 0px 0px 6px #ee801e;
  cursor: pointer;
  color: white;
  border-radius: 35px;
  background-color: #ee801e;
  font-size: 14px;
  line-height: 24px;
  border: 2px solid white;
  box-shadow: 0 0 0 6px #ff8000;
  font-size: 40px;
}
@media (min-width: 768px) {
  .summary-button-phone {
    font-size: 35px;
    line-height: 50px;
  }
}
@media (min-width: 1050px) {
  .summary-button-phone {
    font-size: 46px;
    line-height: 55px;
    padding: 5px;
    margin: unset;
    margin-left: 25px;
    max-width: 502px;
  }
}

a {
  text-decoration: none;
}

.hours-bgc {
  background-color: #d8c3b2;
  border-radius: 0 0 20px 20px;
  font-size: 14px;
  line-height: 20px;
  margin-top: -7px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  text-align: center;
}
@media (min-width: 1050px) {
  .hours-bgc {
    display: none;
  }
}

.desktop-badge {
  max-width: 215px !important;
  position: absolute;
  bottom: 3rem;
}
@media (max-width: 1400px) {
  .desktop-badge {
    max-width: 150px !important;
  }
}

.hours-bgc-desktop {
  display: none;
  background-color: #d8c3b2;
  border-radius: 0 0 20px 20px;
  font-size: 14px;
  line-height: 20px;
  margin-top: -7px;
}
@media (min-width: 1050px) {
  .hours-bgc-desktop {
    position: relative;
    display: block;
    margin-top: unset;
    max-width: 1010px;
    margin: 0 auto;
    margin-top: -30px;
    padding: 27px 0 27px 25px;
  }
  .hours-bgc-desktop img {
    width: 100%;
    max-width: 500px;
  }
}
@media (min-width: 1400px) {
  .hours-bgc-desktop img {
    max-width: 718px;
  }
}

.hours-bgc-desktop-img {
  position: absolute;
  bottom: -60px;
  right: -20px;
}
@media (min-width: 1400px) {
  .hours-bgc-desktop-img {
    bottom: -86px;
    right: -220px;
  }
}

.hours-bgc-desktop-price {
  position: absolute;
  top: 59%;
  left: 7.5%;
}
@media (min-width: 1400px) {
  .hours-bgc-desktop-price {
    top: 63%;
    left: 7%;
  }
}
.hours-bgc-desktop-price p {
  font-family: "Bebas Neue", serif;
  text-align: center;
  font-size: 18px;
  color: white;
  line-height: 32px;
}
@media (min-width: 1400px) {
  .hours-bgc-desktop-price p {
    font-size: 28px;
    line-height: 42px;
  }
}
.hours-bgc-desktop-price p span {
  font-size: 50px;
}
@media (min-width: 1400px) {
  .hours-bgc-desktop-price p span {
    font-size: 74px;
  }
}

.summary-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
@media (min-width: 1050px) {
  .summary-box {
    align-items: self-start;
  }
}

.telephone-box {
  margin: 50px 0;
  display: flex;
  justify-content: center;
}

.telephone-box-hidden {
  font-size: 2.5rem;
  font-weight: bold;
  width: 100%;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 700px;
  border: 1px solid #149e00;
  color: #149e00;
  background-color: white;
  padding: 11px 30px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  cursor: pointer;
}
@media (min-width: 450px) {
  .telephone-box-hidden {
    font-size: 4rem;
  }
}
@media (min-width: 768px) {
  .telephone-box-hidden {
    font-size: 6rem;
    gap: 50px;
  }
}

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

.img__logo {
  width: 140px;
  height: 75px;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-width,
.img__avatar {
  max-width: 100%;
}

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

.box-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 60px;
  padding: 0 5px;
}
@media (min-width: 600px) {
  .box-container {
    gap: 50px;
  }
}
@media (min-width: 1050px) {
  .box-container {
    margin-bottom: 100px;
    margin-top: 5rem;
  }
}

.box-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
}
@media (min-width: 450px) {
  .box-wrapper {
    gap: 55px;
    row-gap: 10px;
  }
}
@media (min-width: 768px) {
  .box-wrapper {
    max-width: 700px;
  }
}
@media (min-width: 996px) {
  .box-wrapper {
    max-width: 900px;
  }
}

.box-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
@media (min-width: 996px) {
  .box-item {
    flex: 1 1 200px;
  }
}
.box-item p {
  text-align: center;
  font-size: 16px;
  max-width: 156px;
  line-height: 24px;
  color: #270622;
}
.box-item p span {
  font-weight: bold;
}
@media (min-width: 996px) {
  .box-item p {
    font-size: 18px;
    line-height: 26px;
    max-width: 196px;
  }
}
.box-item img {
  width: 100%;
  max-width: 117px;
}
@media (min-width: 996px) {
  .box-item img {
    max-width: 117px;
  }
}

.info-bgc {
  position: relative;
  z-index: 3;
  background-color: #550c4b;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  gap: 10px;
  padding: 0 16px 16px;
  margin: -40px 8px 20px;
}
@media (min-width: 1050px) {
  .info-bgc {
    position: absolute;
    max-width: 900px;
    padding: 15px 15px 15px 50px;
    align-items: start;
    left: 50%;
    transform: translateX(-50%);
    top: -5rem;
  }
}
.info-bgc img {
  margin-top: -40px;
}
@media (min-width: 996px) {
  .info-bgc img {
    margin-top: unset;
    position: absolute;
    left: -40px;
  }
}
.info-bgc span {
  font-size: 16px;
}
@media (min-width: 996px) {
  .info-bgc span {
    font-size: 18px;
  }
}
.info-bgc p {
  font-size: 25px;
  text-align: center;
  font-weight: 500;
  line-height: 33px;
}
@media (min-width: 996px) {
  .info-bgc p {
    font-size: 29px;
    line-height: 38px;
    text-align: left;
  }
}

.section-blue-images {
  position: relative;
  display: none;
}
@media (min-width: 500px) {
  .section-blue-images {
    display: block;
  }
}
.section-blue-images img {
  width: 100%;
  padding: 28px 0 58px;
}

.before-1,
.after-1 {
  position: absolute;
  font-size: 30px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.8px;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}
@media (min-width: 996px) {
  .before-1,
  .after-1 {
    font-size: 40px;
  }
}

.before-1 {
  left: 34%;
  top: -10%;
  color: #fd2f37;
}

.after-1 {
  right: 37%;
  top: -10%;
  color: #2ffd2f;
}

.before-2,
.after-2 {
  position: absolute;
  font-size: 25px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.8px;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

.before-2 {
  left: 45%;
  top: -10%;
  color: #fd2f37;
}

.after-2 {
  right: 40%;
  top: 41%;
  color: #2ffd2f;
}
@media (min-width: 430px) {
  .after-2 {
    right: 42%;
  }
}

.section-blue-images-mobile {
  position: relative;
  padding-bottom: 30px;
}
@media (min-width: 500px) {
  .section-blue-images-mobile {
    display: none;
  }
}
.section-blue-images-mobile img {
  width: 100%;
  margin: 20px auto;
  display: block;
  max-width: 220px;
}

.triangle {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 55px solid transparent;
  border-right: 55px solid transparent;
  border-top: 40px solid #001B53;
}

.triangle-mobile {
  position: absolute;
  bottom: -39px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 55px solid transparent;
  border-right: 55px solid transparent;
  border-top: 40px solid #001B53;
}

.photo-mobile {
  width: 100%;
}
@media (min-width: 400px) {
  .photo-mobile {
    display: none;
  }
}

.photo {
  width: 100%;
  display: none;
}
@media (min-width: 400px) {
  .photo {
    display: block;
  }
}

.photo-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 70px;
  margin: 50px auto;
  max-width: 1080px;
}

.photo-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  color: #be0107;
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .photo-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
}

.img-product {
  display: block;
  width: 100%;
  max-width: 700px;
  margin: 80px auto 30px;
}

.product-title {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .product-title {
    font-size: 40px;
    line-height: 50px;
  }
}
.product-title .red {
  color: #ff0000;
}
.product-title .blue {
  color: #006ed7;
}
@media (min-width: 768px) {
  .product-title .blue {
    font-size: 40px;
    line-height: 50px;
  }
}

.nav-summary {
  background-color: #000c32;
}

.nav-summary-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 10px;
}
.nav-summary-container img {
  display: block;
  width: 100%;
  max-width: 300px;
}
.nav-summary-container p {
  color: white;
  font-size: 30px;
  text-align: center;
  margin: 0 auto;
  line-height: 30px;
}
.nav-summary-container p span {
  font-weight: bold;
}

.summary-nav-items {
  gap: 10px;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (min-width: 1200px) {
  .summary-nav-items {
    display: flex;
  }
}
.summary-nav-items a {
  cursor: pointer;
}

.summary-nav-item {
  border: 1px solid #ffffff;
  border-radius: 29px;
  font-size: 18px;
  color: #ffffff;
  padding: 10px;
}

.summary-nav-item-2 {
  background: transparent linear-gradient(270deg, #ffff31 0%, #ff9100 100%) 0% 0% no-repeat padding-box;
  border: 2px solid rgba(255, 255, 255, 0.5019607843);
  border-radius: 29px;
  color: #000000;
  padding: 5px 15px;
  font-size: 25px;
  font-weight: bold;
}

.heading-summary {
  position: relative;
  font-size: 4rem;
  line-height: 5rem;
  text-transform: uppercase;
  text-align: center;
  color: #c3909c;
  margin: 20px auto;
}
@media (min-width: 768px) {
  .heading-summary {
    font-size: 7rem;
    margin: 50px 0;
  }
}
@media (min-width: 1050px) {
  .heading-summary {
    text-align: left;
    margin: unset;
    line-height: 9rem;
    margin: 27px 0 25px 25px;
  }
}

.summary-img {
  max-width: 470px;
  width: 100%;
  height: 100%;
  display: none;
  margin-top: 120px;
}
@media (min-width: 1200px) {
  .summary-img {
    display: block;
  }
}
@media (min-width: 1400px) {
  .summary-img {
    max-width: 570px;
  }
}

.summary-img-mobile {
  display: flex;
  justify-content: center;
  margin: 20px auto 0;
}
.summary-img-mobile img {
  width: 100%;
  max-width: 500px;
}
@media (min-width: 1050px) {
  .summary-img-mobile {
    display: none;
  }
}

.section--summary {
  margin: 20px 5px;
}
@media (min-width: 1050px) {
  .section--summary {
    background-image: url("../images/callpage_bg.png");
    background-repeat: no-repeat;
    margin: unset;
    padding-top: 70px;
    padding-bottom: 100px;
  }
}

.container-summary {
  width: 100%;
  max-width: 1010px;
  margin-inline: auto;
  border: 2px solid #d8c3b2;
  border-radius: 25px;
  box-shadow: 0 3px 6px rgba(146, 46, 80, 0.1411764706);
}
@media (min-width: 1050px) {
  .container-summary {
    background-image: url("../images/callpage_img.png");
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
  }
}

.title-summary {
  color: #270622;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  padding: 0 10px;
}
@media (min-width: 768px) {
  .title-summary {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1050px) {
  .title-summary {
    text-align: left;
    max-width: 568px;
    padding: 0 0 0 25px;
  }
}

.paragraph-summary {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 24px;
  padding: 0 10px;
}
@media (min-width: 768px) {
  .paragraph-summary {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1050px) {
  .paragraph-summary {
    text-align: left;
    max-width: 608px;
    padding: 0 0 0 25px;
  }
}

.paragraph-box {
  background-color: rgba(255, 0, 0, 0.1019607843);
  border: 1px solid #ff0000;
  border-radius: 20px;
  text-align: center;
  padding: 20px;
  margin: 70px auto;
}

.form-add-comment {
  padding: 20px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  border-radius: 20px;
}
.form-add-comment input {
  margin-bottom: 0.8rem;
}
.form-add-comment textarea {
  margin-bottom: 2.2rem;
  resize: none;
  min-height: 10rem;
}
.form-add-comment input,
.form-add-comment textarea {
  max-width: 715px;
  padding: 10px 15px;
  outline: none;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  line-height: 2.1rem;
  border: 1px solid #868e96;
  border-radius: 27px;
}
.form-add-comment input::-moz-placeholder, .form-add-comment textarea::-moz-placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  line-height: 2rem;
  color: #000000;
}
.form-add-comment input::placeholder,
.form-add-comment textarea::placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  line-height: 2rem;
  color: #000000;
}
.form-add-comment .form-buttons {
  display: flex;
  gap: 1.1rem;
  margin-bottom: 10px;
  font-size: 17px;
}
.form-add-comment .form-buttons .form-btn {
  padding: 0.9rem;
  color: white;
  background-color: #868e96;
  border-radius: 21px;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease-in-out;
}
.form-add-comment .form-buttons .form-btn:hover {
  background-color: #5f6468;
}

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

.bgc-top {
  background: transparent linear-gradient(88deg, #a56d9c 0%, #ffc89f 100%) 0% 0% no-repeat padding-box;
  padding: 12px;
  color: #ffffff;
}

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

.bgc-top-1 {
  color: #550c4b;
  font-size: 20px;
}
@media (min-width: 360px) {
  .bgc-top-1 {
    font-size: 22px;
  }
}

.bgc-top-2,
.bgc-top-3 {
  text-align: center;
  line-height: 20px;
}

.bgc-top-2 {
  font-size: 16px;
  font-weight: bold;
  color: white;
}

.bgc-top-3 {
  font-size: 14px;
}

.bgc-top-wrapper {
  max-width: 600px;
  display: flex;
  padding: 5px 15px;
  width: 100%;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.bgc-top-wrapper-desktop {
  display: none;
}

@media (min-width: 768px) {
  .bgc-top-wrapper {
    display: none;
  }
  .bgc-top-wrapper-desktop {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 18px;
  }
  .bgc-top-1,
  .bgc-top-2,
  .bgc-top-3 {
    text-align: left;
    font-size: 18px;
  }
}
.age-title {
  color: #550c4b;
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 20px;
}

.age-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  font-size: 16px;
}

.age-subtitle {
  color: #550c4b;
  font-size: 25px;
  line-height: 33px;
  margin-bottom: 10px;
}

.age-button {
  font-size: 22px;
  line-height: 26px;
  color: #270622;
  border: 1px solid #ffffff;
  border-radius: 50px;
  background: transparent linear-gradient(90deg, #a56d9c 0%, #ffc89f 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.2705882353);
  padding: 15px 30px;
  display: block;
  margin: 26px auto;
  text-align: center;
  max-width: 250px;
}
@media (min-width: 1050px) {
  .age-button {
    margin: 0;
    margin-top: 5rem;
  }
}

.age-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.custom-select {
  position: relative;
  display: inline-block;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #f0e6dd;
  border: 1px solid #B7B3B4;
  border-radius: 5px;
  padding: 6px 30px 6px 15px;
  font-size: 16px;
  color: #270622;
  cursor: pointer;
  outline: none;
}

.custom-select::after {
  content: "▼";
  font-size: 12px;
  position: absolute;
  right: 10px;
  top: 54%;
  transform: translateY(-50%);
  color: #270622;
  pointer-events: none;
}

.age-list-box {
  width: 19.5px;
  height: 19.5px;
  border: 2px solid #3d2b2b;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  transition: 0.3s;
  margin-top: 5px;
  flex-shrink: 0;
}

.age-list-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Styl dla zaznaczonego checkboxa */
.age-list-container input:checked + .age-list-box {
  background-color: #6a374b;
  border-color: #6a374b;
}

.age-list-container input:checked + .age-list-box::after {
  content: "x";
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.age-list-container {
  display: flex;
}

.resultage {
  display: none;
  position: relative;
  z-index: 1;
  background-color: #f0e6dd;
  padding-top: 5rem;
  margin-top: -2rem;
}
@media (min-width: 1050px) {
  .resultage {
    margin-top: 0;
  }
}
@media (min-width: 1050px) {
  .resultage-desktop {
    display: flex;
    flex-direction: column;
    max-width: 890px;
  }
}
.resultage-title {
  color: #550c4b;
  font-size: 25px;
  text-align: center;
}
.resultage-title-under {
  padding-top: 5px;
  text-align: center;
  color: #c3909c;
  font-size: 25px;
}
.resultage-text {
  padding-top: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
}
.resultage-box {
  padding-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.resultage-box:last-child {
  padding-bottom: 5rem;
}
@media (min-width: 1050px) {
  .resultage-box {
    flex-direction: row;
    justify-content: center;
  }
}
.resultage-box-img {
  border: 5px solid #550c4b;
  border-radius: 50%;
}
.resultage-box-img-number {
  position: absolute;
  bottom: 7rem;
  left: -2rem;
  color: white;
  background-color: #550c4b;
  font-size: 26px;
  padding: 6px 16px;
  border-radius: 50%;
  width: 47px;
  height: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 6px rgba(85, 12, 75, 0.3);
}
.resultage-box-one {
  position: relative;
  margin-bottom: -35px;
  z-index: 3;
}
@media (min-width: 1050px) {
  .resultage-box-one {
    margin-right: -8rem;
    margin-bottom: 10px;
  }
}
.resultage-box-title {
  position: relative;
  background-color: #550c4b;
  border-radius: 10px;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 25px;
  padding-top: 33px;
  padding-bottom: 7px;
  z-index: 2;
}
@media (min-width: 1050px) {
  .resultage-box-title {
    text-align: left;
    padding-left: 10rem;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 29px;
    line-height: 26px;
  }
}
.resultage-box-content {
  background-color: #fff;
  color: #550c4b;
  font-size: 18px;
  border-radius: 25px;
  border: 1px solid #c3909c;
  padding: 11px;
  padding-top: 30px;
  margin-top: -20px;
  z-index: 1;
}
.resultage-box-content p:first-of-type {
  margin-bottom: 15px;
}
.resultage-box-content span {
  color: #9f7f5b;
}
@media (min-width: 1050px) {
  .resultage-box-content {
    padding-left: 10rem;
  }
}

.resultage.show {
  display: block;
}

.watch-container {
  padding-top: 20px;
  margin-top: -2rem;
  background-image: url("../images/4_sec_bg-mobile.png");
  background-repeat: no-repeat;
}
@media (min-width: 996px) {
  .watch-container {
    background-image: url("../images/4_sec_bg.png");
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.watch-container-after,
.watch-container-color-2 {
  line-height: 19px;
  width: 183px;
  height: 158.5px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
@media (min-width: 1050px) {
  .watch-container-after,
  .watch-container-color-2 {
    width: 210px;
    height: 180px;
  }
}
.watch-container-after::before,
.watch-container-color-2::before {
  content: "";
  position: absolute;
  width: 115%;
  height: 115%;
  background: rgba(201, 199, 199, 0.5);
  -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
          clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  z-index: -1;
}
.watch-container-after::after,
.watch-container-color-2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #550c4b;
  -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
          clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  z-index: 0;
}
.watch-container-after span,
.watch-container-color-2 span {
  position: relative;
  font-size: 40px;
  color: white;
  z-index: 2;
  margin-top: 10px;
}
@media (min-width: 1050px) {
  .watch-container-after span,
  .watch-container-color-2 span {
    font-size: 55px;
  }
}
.watch-container-after p,
.watch-container-color-2 p {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 0 20px;
  margin-top: 10px;
  font-size: 14px;
}
@media (min-width: 1050px) {
  .watch-container-after p,
  .watch-container-color-2 p {
    font-size: 17px;
    margin-top: 20px;
  }
}

.watch-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 996px) {
  .watch-wrap {
    display: flex;
    flex-direction: row;
    gap: 84px;
  }
}

.watch-container-2 {
  background-image: url("../images/4_sec_bg_ox.png");
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 996px) {
  .watch-container-2 {
    margin-top: -15rem;
  }
}

.watch-container-color-2 p {
  line-height: 19px;
}
.watch-container-color-2::after {
  background: #9f7f5b;
}

.watch-container-title {
  text-align: center;
  color: #550c4b;
  font-size: 25px;
  line-height: 33px;
  font-weight: bold;
  padding: 20px 30px;
}
@media (min-width: 996px) {
  .watch-container-title {
    margin-bottom: 30px;
    font-size: 46px;
    line-height: 55px;
    max-width: 900px;
    text-align: left;
  }
}

.watch-container-images {
  display: flex;
  align-items: center;
  margin-left: 15px;
}
.watch-container-images img {
  max-width: 170px;
}
@media (min-width: 360px) {
  .watch-container-images img {
    max-width: unset;
  }
}
@media (min-width: 1050px) {
  .watch-container-images img {
    width: 210px;
  }
}

.watch-container-images-2 {
  display: flex;
  align-items: center;
  margin-right: 15px;
}
.watch-container-images-2 img {
  max-width: 170px;
}
@media (min-width: 360px) {
  .watch-container-images-2 img {
    max-width: unset;
  }
}
@media (min-width: 1050px) {
  .watch-container-images-2 img {
    width: 210px;
  }
}

.watch-container-color {
  margin-left: -40px;
}

.watch-container-before {
  position: relative;
  z-index: 3;
}
.watch-container-before p {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #65b973;
  color: white;
  padding: 2px 8px;
  font-size: 14px;
  font-weight: bold;
}

.watch-container-before-2 {
  position: relative;
  margin-right: -40px;
  z-index: 3;
}
.watch-container-before-2 p {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #65b973;
  color: white;
  padding: 2px 8px;
  font-size: 14px;
  font-weight: bold;
}

.watch-container-after-2 {
  margin-top: 1rem;
}

.watch-container-color,
.watch-container-after-2 {
  position: relative;
  z-index: 3;
}
.watch-container-color p,
.watch-container-after-2 p {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #be1414;
  color: white;
  padding: 2px 8px;
  font-size: 14px;
  font-weight: bold;
  width: 60px;
  text-align: center;
}

.watch-container-text {
  padding: 16px;
}
@media (min-width: 996px) {
  .watch-container-text {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    margin-top: 25px;
    width: 800px;
  }
}
.watch-container-text p {
  color: #270622;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
}
.watch-container-text p span {
  font-weight: bold;
}

.text-section {
  margin-top: 30px;
  margin-bottom: 40px;
}
@media (min-width: 1049px) {
  .text-section {
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 40px;
    max-width: 900px;
  }
}

.text-section-box {
  display: flex;
  align-items: start;
  gap: 11px;
  margin-bottom: 20px;
}
@media (min-width: 1049px) {
  .text-section-box {
    padding-top: 2rem;
  }
}
.text-section-box p {
  font-weight: bold;
  line-height: 24px;
  font-size: 16px;
}
@media (min-width: 1049px) {
  .text-section-box p {
    font-size: 18px;
  }
}
.text-section-box span {
  font-size: 18px;
  line-height: 24px;
  color: #270622;
}

.section-bgc {
  border: 1px solid #550c4b;
  border-radius: 25px;
  box-shadow: 0 0 20px rgba(195, 144, 156, 0.7215686275);
  margin: 0 5px;
  padding: 20px 10px;
  background-color: #f9edec;
  z-index: 2;
  position: relative;
}
@media (min-width: 1050px) {
  .section-bgc {
    padding: 20px 20px;
  }
}

.section-bgc-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-bgc-box {
  display: flex;
  align-items: start;
  gap: 5px;
}
.section-bgc-box p {
  font-size: 18px;
  line-height: 26px;
}
.section-bgc-box img {
  margin-top: 4px;
}

.section-img {
  background-image: url("../images/8_sec_bg.png");
  background-size: cover;
  padding: 100px 0 50px;
  margin-top: -40px;
  z-index: -1;
  margin-bottom: 2rem;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 1049px) {
  .section-img {
    background-image: url(../images/5_sec_bg.png);
    background-position: center;
    min-height: 1203px;
    margin-top: -200px;
    padding-top: 264px;
  }
}

.expert-box {
  position: relative;
  display: flex;
  justify-content: end;
  align-items: end;
}

.expert-box-2 {
  position: relative;
}

.img-expert {
  max-width: 335px;
}
@media (min-width: 400px) {
  .img-expert {
    max-width: unset;
  }
}
@media (min-width: 1049px) {
  .img-expert {
    display: none;
  }
}
@media (max-width: 1049px) {
  .img-expert-desktop {
    display: none;
  }
}

.img-com {
  position: absolute;
  top: 50px;
  left: 20px;
}
@media (min-width: 1049px) {
  .img-com {
    left: unset;
    right: 20px;
  }
}

.img-expert-2 {
  max-width: 335px;
}
@media (min-width: 400px) {
  .img-expert-2 {
    max-width: unset;
  }
}
@media (min-width: 1049px) {
  .img-expert-2 {
    display: none;
  }
}
@media (max-width: 1049px) {
  .img-expert-2-desktop {
    display: none;
  }
}

.img-com-2 {
  position: absolute;
  top: 50px;
  right: 20px;
}
@media (min-width: 1049px) {
  .img-com-2 {
    left: 20px;
    right: unset;
  }
}

@media (min-width: 1049px) {
  .expert-wrapper {
    display: flex;
    gap: 5rem;
    align-items: center;
  }
  .expert-wrapper:nth-of-type(2) {
    text-align: right;
    flex-direction: row-reverse;
  }
}
.expert-wrapper p {
  color: #ee801e;
  font-size: 18px;
  font-weight: bold;
  line-height: 26px;
  margin: 10px 0;
}

.expert-content {
  padding: 0 16px;
  margin-bottom: 15px;
}
@media (min-width: 1050px) {
  .expert-content {
    max-width: 420px;
  }
}

@media (min-width: 1609px) {
  .seven {
    display: flex;
  }
}

.product-rep {
  margin: 12px auto 25px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  max-width: 400px;
}
@media (min-width: 1049px) {
  .product-rep {
    display: none;
  }
}

.product-rep-desktop {
  margin-left: -9rem;
  max-width: 194%;
}
@media (max-width: 1049px) {
  .product-rep-desktop {
    display: none;
  }
}

.product-rep-box {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 12px auto 25px;
}
@media (min-width: 1049px) {
  .product-rep-box {
    margin: 0 auto;
    margin-left: 18rem;
  }
}
@media (min-width: 1609px) {
  .product-rep-box {
    margin: 0 auto;
    margin-left: 0;
  }
}

.product-rep {
  width: 100%;
  height: auto;
}

.product-rep-woman {
  position: absolute;
  top: 5rem;
  z-index: -1;
}
@media (max-width: 1049px) {
  .product-rep-woman {
    display: none;
  }
}

.product-rep-box-text {
  position: absolute;
  top: 30rem;
  max-width: 240px;
  border: 1px solid #c3909c;
  border-radius: 25px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.37);
  color: #550c4b;
  font-size: 16px;
  padding: 20px;
}
.product-rep-box-text div {
  display: flex;
  flex-direction: row;
  gap: 7px;
}
@media (max-width: 1049px) {
  .product-rep-box-text {
    display: none;
  }
}

.info-point-product {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #c3909c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease;
}
@media (min-width: 1049px) {
  .info-point-product {
    cursor: auto;
  }
}
.info-point-product:nth-child(1) {
  top: 20%;
  left: 27%;
}
@media (min-width: 1049px) {
  .info-point-product:nth-child(1) {
    top: 18%;
    left: 78%;
  }
}
.info-point-product:nth-child(2) {
  top: 18%;
  left: 55%;
}
@media (min-width: 1049px) {
  .info-point-product:nth-child(2) {
    top: 18%;
    left: 110%;
  }
}
.info-point-product:nth-child(3) {
  top: 34%;
  left: 67%;
}
@media (min-width: 1049px) {
  .info-point-product:nth-child(3) {
    top: 33%;
    left: 123%;
  }
}
.info-point-product:nth-child(4) {
  top: 59%;
  left: 32%;
}
@media (min-width: 1049px) {
  .info-point-product:nth-child(4) {
    top: 54%;
    left: 85%;
  }
}
.info-point-product:nth-child(5) {
  top: 50%;
  left: 48%;
}
@media (min-width: 1049px) {
  .info-point-product:nth-child(5) {
    top: 47%;
    left: 100%;
  }
}
.info-point-product:nth-child(6) {
  top: 42%;
  left: 38%;
}
@media (min-width: 1049px) {
  .info-point-product:nth-child(6) {
    top: 38%;
    left: 92%;
  }
}
.info-point-product:nth-child(7) {
  top: 42%;
  left: 23%;
}
@media (min-width: 1049px) {
  .info-point-product:nth-child(7) {
    top: 41%;
    left: 75%;
  }
}
.info-point-product:hover {
  transform: scale(1.1);
}
.info-point-product:nth-child(7) .info-tooltip {
  top: -37px;
  left: -99px;
}

.info-tooltip {
  position: absolute;
  background-color: #c3909c;
  padding: 5px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  display: none;
  z-index: 10;
  color: white;
  font-size: 14px;
  min-width: -moz-max-content;
  min-width: max-content;
}

.info-point-product:hover .info-tooltip {
  display: block;
}

.womans {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 500px) {
  .womans {
    background-image: url(../images/womans_bg-big.png);
    min-height: 800px;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 8rem;
  }
}
@media (min-width: 1050px) {
  .womans {
    margin-bottom: 0;
  }
}

.womans-bgc {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-width: 500px;
  z-index: -9;
}
@media (min-width: 500px) {
  .womans-bgc {
    display: none;
  }
}

.womans-1 {
  position: absolute;
  top: 15px;
  padding-left: 15px;
  left: 15px;
}
@media (min-width: 1050px) {
  .womans-1 {
    position: static;
    padding: 0;
    margin-top: -30rem;
  }
}

.womans-2 {
  position: absolute;
  bottom: 193px;
  right: 15px;
  padding-right: 15px;
}
@media (min-width: 500px) {
  .womans-2 {
    bottom: 262px;
  }
}
@media (min-width: 1050px) {
  .womans-2 {
    position: static;
    padding: 0;
  }
}

@media (min-width: 1050px) {
  .womans-line-effect,
  .womans-line-effect-2 {
    position: relative;
    width: 446px;
    height: 0;
  }
  .womans-line-effect::before,
  .womans-line-effect-2::before {
    content: "";
    position: absolute;
    left: 46%;
    top: 1rem;
    width: 446px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
  }
  .womans-line-effect::after,
  .womans-line-effect-2::after {
    content: "";
    position: absolute;
    left: 19.6rem;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #bdbdbd;
    box-shadow: 0 0 0 2px #fff, 0 0 0 6px rgba(255, 255, 255, 0.2823529412);
    z-index: 2;
  }
  .womans-line-effect-2::before {
    width: 550px;
    background: #550c4b;
    left: 86%;
  }
  .womans-line-effect-2::after {
    background: none;
    left: unset;
    right: -50rem;
    box-shadow: 0 0 0 2px #550c4b, 0 0 0 6px rgba(190, 190, 190, 0.4509803922);
  }
}
.womans-title {
  font-size: 25px;
  line-height: 33px;
  margin-bottom: 30px;
  max-width: 230px;
}
@media (min-width: 1050px) {
  .womans-title {
    max-width: 478px;
    font-size: 46px;
    line-height: 55px;
    margin-top: 3rem;
  }
}

.womans-box {
  display: flex;
  gap: 5px;
  align-items: center;
  max-width: 250px;
}
.womans-box span {
  font-weight: bold;
}
@media (min-width: 1050px) {
  .womans-box {
    margin-left: 40rem;
    margin-top: 9rem;
  }
}

.womans-box-2 {
  display: flex;
  gap: 5px;
  align-items: center;
  color: white;
}
.womans-box-2 span {
  font-weight: bold;
}
@media (min-width: 1050px) {
  .womans-box-2 {
    margin-left: 40rem;
    margin-top: 12.5rem;
  }
}

.womens-container {
  position: static;
}
@media (min-width: 1050px) {
  .womens-container {
    position: relative;
  }
}

.main-product {
  margin: -90px auto 0;
  display: block;
  z-index: 10509;
  max-width: 200px;
}
@media (min-width: 500px) {
  .main-product {
    max-width: unset;
    position: relative;
    margin: 0;
    top: 30rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (min-width: 1050px) {
  .main-product {
    position: absolute;
    left: 70%;
    top: 10rem;
    transform: translateX(-30%);
    margin: 0;
    display: block;
    z-index: 10509;
    max-width: 460px;
    width: 100%;
  }
}

.testimonials-title {
  font-size: 40px;
  line-height: 40px;
  max-width: 328px;
  margin: 20px auto;
  text-align: center;
}
.testimonials-title span {
  font-size: 25px;
  line-height: 33px;
}
@media (min-width: 1050px) {
  .testimonials-title {
    text-align: left;
    margin: 0;
    padding: 20px 0;
    margin: -2px 0;
  }
}

.testimonial-box {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}
.testimonial-box h3 {
  font-size: 16px;
}

.testimonial-title-2 {
  font-weight: bold;
  font-size: 25px;
  line-height: 33px;
  margin-bottom: 20px;
}

.testimonial-container {
  max-width: 350px;
  background: #f3f3f2;
  border-radius: 25px;
  padding: 20px;
  box-shadow: 0px 0px 8px rgba(81, 72, 74, 0.7215686275);
  position: relative;
  margin: 0 auto;
}

.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
}

.arrows {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  margin-bottom: 50px;
}

.arrow {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.arrow img {
  display: block;
}

.testimonial-stars {
  display: flex;
  gap: 5px;
}

.testimonial-number {
  color: #b7b3b4;
  font-size: 18px;
}

@media (min-width: 1050px) {
  .testimonial-bgi {
    background-image: url(../images/6_sec_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .testimonial-container {
    display: flex;
    gap: 20px;
    max-width: unset;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: none;
    box-shadow: none;
    margin-bottom: 2rem;
  }
  .testimonial {
    display: none;
    width: 100%;
    max-width: 450px;
    background: #f3f3f2;
    border-radius: 25px;
    padding: 20px;
    min-height: 630px;
    box-shadow: 0px 0px 8px rgba(81, 72, 74, 0.7215686275);
  }
  .testimonial.active {
    display: block;
  }
  .navigation {
    display: none;
  }
  .arrows {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    margin: 0 0 0 0;
    gap: 20px;
  }
  .arrow-desktop {
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 60px;
  }
  .arrow-desktop img {
    width: 50px !important;
    height: 50px !important;
  }
}
.arrow-desktop {
  display: none;
}

.navigation {
  max-width: 350px;
  margin: 0 auto;
}

.dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.dot {
  width: 5px;
  height: 5px;
  margin: 0 3px;
  background: #eaccca;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 8px;
  height: 8px;
  background: #c3909c;
  margin-top: -2px;
}

.orange-bgc {
  margin-top: 5rem;
  background-color: #ee801e;
  padding: 16px;
  color: white;
  text-align: center;
}
@media (min-width: 1050px) {
  .orange-bgc {
    font-size: 29px;
    line-height: 38px;
  }
}

@media (min-width: 1050px) {
  .background-last {
    background-color: rgba(255, 255, 255, 0.66);
    border: 1px solid #c3909c;
    border-radius: 25px;
    box-shadow: 0px 0px 20px rgba(50, 34, 29, 0.3294117647);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    padding: 20px;
  }
}

@media (min-width: 1050px) {
  .last {
    width: auto !important;
  }
}

@media (min-width: 1050px) {
  .last-container {
    background-image: url(../images/CTA_BG.png);
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    min-height: 889px;
  }
}

@media (min-width: 1050px) {
  .last-section {
    flex-wrap: wrap;
    max-width: 706px;
    margin-left: 27rem;
  }
}

.attention-container {
  background-color: #eae3e3;
  padding: 16px;
}
@media (min-width: 1050px) {
  .attention-container {
    margin-top: 5rem;
  }
}
.attention-container p {
  color: #65b973;
  font-size: 25px;
  line-height: 33px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
}
@media (min-width: 1050px) {
  .attention-container p {
    font-size: 46px;
    line-height: 55px;
    width: 666px;
  }
}
.attention-container div {
  text-align: center;
}
.attention-container div b {
  color: #ee801e;
}
@media (min-width: 1050px) {
  .attention-container {
    max-width: 656px;
    background-color: transparent;
  }
}

.free-product {
  background-color: #ddd;
  padding: 20px 15px;
}
@media (min-width: 1050px) {
  .free-product {
    background-color: transparent;
  }
}

.free-product-title {
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  line-height: 33px;
  margin-bottom: 20px;
}
.free-product-title span {
  font-weight: bold;
  color: #c3909c;
  font-size: 40px;
  line-height: 50px;
}

.free-product-images {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
}
.free-product-images img {
  max-width: 62px;
  height: 62px;
}

.free-product-box {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (min-width: 1050px) {
  .free-product-box {
    flex-direction: column;
    text-align: center;
  }
  .free-product-box:first-of-type {
    grid-column: 1;
    grid-row: 1;
  }
  .free-product-box:nth-of-type(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .free-product-box:nth-of-type(3) {
    grid-column: 3;
    grid-row: 1;
  }
}

@media (min-width: 1050px) {
  .last-button {
    grid-column: 1/-1;
    grid-row: 2;
    justify-self: center;
  }
}

.free-product-container {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
@media (min-width: 370px) {
  .free-product-container {
    gap: 80px;
  }
}
@media (min-width: 1050px) {
  .free-product-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
  }
}

.free-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -70px;
}
@media (min-width: 1050px) {
  .free-line {
    display: none;
  }
}

.free-line-desktop {
  display: none;
}
@media (min-width: 1050px) {
  .free-line-desktop {
    display: block;
    position: absolute;
    left: 220%;
    transform: translateX(-50%);
    max-width: 123px !important;
    height: 62px !important;
  }
}

.section-header-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1050px) {
  .section-header-mobile {
    display: none;
  }
}

.header-container {
  display: none;
  position: relative;
}
@media (min-width: 1050px) {
  .header-container {
    display: flex;
  }
}
@media (min-width: 1049px) {
  .header-container {
    min-height: 67rem;
  }
}

.header-container-bg {
  position: relative;
  max-width: 600px;
}
@media (min-width: 1049px) {
  .header-container-bg {
    position: absolute;
    max-width: 1165px;
    right: -43.5rem;
  }
}

.body-container {
  width: 1050px;
  margin: 0 auto;
}
@media (max-width: 1049px) {
  .body-container {
    width: 100%;
  }
}/*# sourceMappingURL=styles.css.map */