/* ---------------- Project 5k section ---------------- */
section#project-5k {
  background-image: url("../themes/images/background-5k.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  min-height: 800px;
  padding-bottom: 15rem;
}

section#project-5k .left-right {
  display: flex;
  justify-content: center;
  gap: 30px;

  padding: 20px;
  padding-top: 10rem;
}

section#project-5k .left {
  flex: 1;
  text-align: center;

  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 45px;

  max-width: 700px;
}

section#project-5k .left img {
  max-width: 500px;
}

section#project-5k .left p,
section#project-5k .left span {
  font-size: 2rem;
  font-style: italic;
  max-width: 290px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

section#project-5k .left span {
  align-self: flex-end;
  margin-top: auto;
}

section#project-5k .right {
  flex: 1;
  max-width: 735px;
}

section#project-5k .right iframe {
  max-width: 765px;
  border-radius: 20px;
  margin-bottom: 30px;
  width: 100%;
  aspect-ratio: 16/9;
}

@media (max-width: 1300px) {
  section#project-5k {
    padding-bottom: 10rem;
  }
  section#project-5k .left-right {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 500px) {
  section#project-5k .left {
    min-height: fit-content;
  }

  section#project-5k .right a {
    padding: 12px;
    font-size: 1.6rem;
  }
}

/* ---------------- ceo introducing section ---------------- */
section#ceo-introducing {
  position: relative;
  padding: 80px 0;
  background-color: black;
}

section#ceo-introducing::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 60%;
  transform: translateY(50%);
  aspect-ratio: 0.31/1;
  width: 30%;
  background-image: url("../themes/images/bright-right.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}

@media (max-width: 1100px) {
  section#ceo-introducing::after {
    width: 50%;
  }
}

section#ceo-introducing .left-right {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

section#ceo-introducing h2 {
  text-align: center;
  font-size: 9.6rem;
}

section#ceo-introducing .left,
section#ceo-introducing .right {
  flex: 1;
}

section#ceo-introducing .left {
  position: relative;
}

section#ceo-introducing .left::after {
  content: "";
  position: absolute;

  bottom: 0;
  left: 0;
  max-width: 350px;
  width: 70%;
  aspect-ratio: 1.48/1;
  background-image: url("../themes/images/bright.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  transform: translate(-55%, 40%);
}

section#ceo-introducing .left img {
  border-radius: 24px;
  max-width: 560px;
  box-shadow: 0 10px 35px 25px rgba(0, 224, 155, 0.3);
}

section#ceo-introducing .right {
  position: relative;
  max-width: 520px;
  z-index: 2;
}

section#ceo-introducing .right h3 {
  font-size: 4.8rem;
  margin-bottom: 30px;
  color: var(--primary);
}

section#ceo-introducing .right p {
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
}

section#ceo-introducing a {
  font-size: 2.4rem;
  margin-top: 50px;
  max-width: 560px;
}

@media (max-width: 800px) {
  section#ceo-introducing h2 {
    font-size: 6rem;
  }

  section#ceo-introducing .left-right {
    flex-direction: column;
  }
}

/* ---------------- second section ---------------- */
section#resume {
  margin: 0 0 80px;
  border: 1px solid;
  border-image: linear-gradient(90deg, transparent, var(--primary), transparent) 1;
  background-color: #151515;
}

section#resume div.wrapper {
  padding: 20px;

  display: flex;
  justify-content: flex-end;
  align-items: center;

  background-image: url("../themes/images/banner-site.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  min-height: 600px;
}

section#resume div.wrapper .right {
  width: 50%;
}

section#resume div.wrapper .right h2 {
  font-size: 4rem;
  margin-bottom: 3rem;
}

section#resume div.wrapper .right p {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
  section#resume div.wrapper {
    flex-direction: column;
    background-size: contain;
    background-position: top;
    min-height: fit-content;
  }

  section#resume div.wrapper .right {
    margin-top: 35%;
    width: 100%;
  }
}

/* ---------------- life change section ---------------- */
section#life-change {
  background-image: url("../themes/images/particles.png");
  background-repeat: no-repeat;
  background-size: cover;
}

section#life-change div.width {
  max-width: 1920px;

  padding: 80px 20px;
}

section#life-change h2 {
  margin: auto;
  text-align: center;
  font-size: 6.4rem;
  margin-bottom: 6rem;
}

section#life-change div:first-child h2 {
  max-width: 655px;
}

section#life-change div.blocks {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
}

section#life-change div.blocks::before {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 700px;
  aspect-ratio: 1/1;
  background-color: var(--primary);
  -webkit-filter: blur(100px);
  filter: blur(100px);
  z-index: -1;
  rotate: 45deg;
}

@media (max-width: 1050px) {
  section#life-change div.blocks::before {
    width: 60%;
  }
}

section#life-change div.block {
  background-color: white;
  max-width: 360px;

  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0px 0px 20px 2px var(--primary);
  text-align: center;
}

section#life-change div.block div.icon {
  width: fit-content;
  margin: auto;
}

section#life-change div.block div.icon lord-icon,
section#life-change div.block div.icon dotlottie-player {
  --size: 15rem;
  width: var(--size);
  height: var(--size);
}

section#life-change div.block h3 {
  color: black;
  font-weight: 700;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 25px;
}

section#life-change div.block p {
  color: black;
  margin-bottom: 20px;
  font-size: 2.4rem;
}

section#life-change a {
  max-width: 560px;
}

/* ---------------- depoiments section ---------------- */
section#depoiments {
  background-image: url("../themes/images/particles.png");
  background-repeat: no-repeat;
  background-size: cover;
}

section#depoiments > div.width {
  max-width: 1920px;
  padding: 80px 20px;
}

section#depoiments h2 {
  margin: auto;
  text-align: center;
  font-size: 6.4rem;
  margin-bottom: 4rem;
}

section#depoiments iframe {
  max-height: 90vh;
}

section#depoiments .screenshot-wrap {
  max-width: 1140px;
  margin: 4rem auto 8rem;
}

section#depoiments a {
  max-width: 560px;
}

/* talking about us section */
section#talking-about-us h2 {
  margin: auto;
  text-align: center;
  font-size: 6.4rem;
  margin-bottom: 10rem;
}

section#talking-about-us .links {
  display: grid;
  place-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  width: fit-content;
  margin: auto;
}

section#talking-about-us .links img {
  width: 100%;
  max-width: 150px;
}

/* ---------------- benefits section ---------------- */
section#benefits {
  background-image: url("../themes/images/particles.png");
  background-repeat: no-repeat;
  background-size: cover;
}

section#benefits div.width {
  max-width: 1920px;
  padding: 80px 20px;
}

section#benefits .more-infos p,
section#benefits .more-infos span {
  text-align: center;
  max-width: 1520px;
  margin: auto;
}

section#benefits .more-infos p {
  font-size: 6rem;
  margin-top: 4rem;
}

section#benefits .more-infos span {
  display: block;
  font-size: 3.8rem;
}

section#benefits .card {
  text-align: center;
  background-color: white;

  padding: 3rem 5rem;
  max-width: 690px;
  margin: 6rem auto;
  border-radius: 34px;
}

section#benefits .card h3 {
  font-size: 3.2rem;
  color: black;
}

section#benefits .card .value {
  text-align: center;
}

section#benefits .card .value p {
  position: relative;
  font-size: 9rem;
  color: black;
  display: inline;

  text-decoration: line-through;
  text-decoration-color: crimson;
}

section#benefits .card .value span.free {
  display: block;
  color: var(--primary);
  font-size: 4rem;
  font-weight: 700;
}

section#benefits .card ul {
  list-style: none;
}

section#benefits .card ul li {
  padding: 15px 25px;
}

section#benefits .card ul li span {
  position: relative;
  color: black;
  font-size: 2.5rem;
  text-align: center;
}

section#benefits .card ul li span::before {
  content: "\2713";
  color: black;
  font-size: 2rem;
  font-weight: 900;
  position: absolute;
  right: calc(100% + 4px);
  top: 40%;
  transform: translateY(-50%);
}

section#benefits .card ul li + li {
  border-top: 1px solid black;
}

section#benefits .card > span {
  display: block;
  color: rgba(0, 0, 0, 0.4);
  font-size: 1.4rem;
  margin-top: 20px;
}

section#benefits .warranty {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1140px;
  margin: auto;

  background-color: #151515;
  border: 1px solid var(--primary);
  border-radius: 20px;
  padding: 2rem 3.5rem;
  margin-bottom: 6rem;
}

section#benefits .warranty .left {
  flex: 1;
  max-width: 720px;
  font-size: 2rem;
}

section#benefits .warranty .left h3 {
  color: var(--primary);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

section#benefits .warranty .left p {
  margin-bottom: 1.5rem;
}

section#benefits .warranty .right {
  flex: 1;
  max-width: 350px;
}

section#benefits .countdown {
  margin-bottom: 1rem;
}

section#benefits .benefits {
  text-align: center;
}

section#benefits .benefits p {
  font-size: 4.8rem;
}

section#benefits .benefits a {
  max-width: 560px;
}

section#benefits .benefits .benefits-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 25px;
}

section#benefits .benefits .benefits-cards .benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;

  background-color: white;
  padding: 20px;
  border-radius: 14px;
  max-width: 500px;
}

section#benefits .benefits .benefits-cards .benefit-card lord-icon {
  width: 150px;
  height: 150px;
}

section#benefits .benefits .benefits-cards .benefit-card h3,
section#benefits .benefits .benefits-cards .benefit-card p,
section#benefits .benefits .benefits-cards .benefit-card span {
  color: black;
}

section#benefits .benefits .benefits-cards .benefit-card h3 {
  font-weight: 700;
  text-align: center;
  font-size: 3.5rem;
}

section#benefits .benefits .benefits-cards .benefit-card p {
  font-size: 2rem;
}

section#benefits .benefits .benefits-cards .benefit-card div.price {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

section#benefits .benefits .benefits-cards .benefit-card span.previous {
  text-decoration: line-through;
  text-decoration-color: crimson;
  font-size: 3rem;
}

section#benefits .benefits .benefits-cards .benefit-card span.current {
  font-size: 4rem;
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 900px) {
  section#benefits .warranty {
    flex-direction: column;
  }

  section#benefits .card {
    padding: 2.4rem;
  }

  section#benefits .card .value p {
    font-size: 7rem;
  }
}
