/* root */

:root {
  --color-background: color(display-p3 1 0.8667 0.2);
  --color-background-dark: color(display-p3 0.1176 0.1176 0.1098);
  --color-background-feature: color(display-p3 0 0 0);
  --color-text-white: color(display-p3 0.9529 0.9529 0.9529);
  --color-text-black: color(display-p3 0.1176 0.1176 0.1098);
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  /* 10 px*/
  font-size: 62.5%;
}

html,
body {
  height: 100%;
  margin: 0;
  line-height: 1.5;
}

section {
  width: 100%;
}

h1 {
  font-size: 4.8rem;
}

h1,
h2,
h3,
p,
a {
  margin: 0;
}

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content-wrap {
  flex: 1;
  background-color: var(--color-background-dark);
}

.sm {
  display: none;
}

@media screen and (min-width: 640px) {
  .sm {
    display: block;
  }
}

@media screen and (min-width: 1024px) {
  .break {
    display: block;
  }
}

/* Typography */

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

/* nav */
.nav {
  width: 100%;
  height: auto;
  max-height: 8rem;
  padding: 1.2rem 0;
  background-color: var(--color-background);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.nav_container {
  display: flex;
  padding: 0px 40px;
  max-width: 1440px;
  justify-content: space-between;
  align-items: center;
  flex: 1 0 0;
}

.img_container {
  display: flex;
  padding: 4px 7.82px 4px 1px;
  align-items: center;
  gap: 4px;
}

.nav__brand img {
  width: 15.1rem;
  height: 4.8rem;
}

.nav__item a {
  text-decoration: none;
}

/* list */

.list {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  flex: 1 0 0;
}

.listitem_container {
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.listitem_container a {
  color: var(--color-text-black);
}

.listitem_container_dark {
  display: flex;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background-color: var(--color-background-dark);
}

.listitem_container_dark a {
  color: var(--color-text-white);
  text-align: center;
}

/* banner */

.banner_container {
  display: flex;
  width: 100%;
  padding: 40px 24px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  background-color: var(--color-background);
  background-image: url(../assets/Hero_image_468.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 -95px;
}

@media screen and (min-width: 640px) {
  .banner_container {
    padding: 64px 55px 60px 54px;
    background-image: url(../assets/Hero_image_640.webp);
    background-position: 0 -80px;
  }
}

@media screen and (min-width: 1024px) {
  .banner_container {
    background-image: url(../assets/Hero_image_1024.webp);
    background-position: 0 -50;
    padding: 44px 459px 58px 40px;
    align-items: flex-start;
  }
}

@media screen and (min-width: 1600px) {
  .banner_container {
    background-image: url(../assets/Hero_image_1600.webp);
    background-position: 0 -50;
    padding: 110px 873px 224px 110px;
    align-items: flex-start;
  }
}

.banner_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}

@media screen and (min-width: 1024px) {
  .banner_text {
    align-items: flex-start;
  }
}

.banner_download {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media screen and (min-width: 1024px) {
  .banner_download {
    align-items: flex-start;
  }
}

.banner_header {
  line-height: 120%;
  letter-spacing: -0.96px;
  text-align: center;
}

@media screen and (min-width: 640px) {
  .banner_header {
    font-size: 48px;
  }
}

@media screen and (min-width: 1024px) {
  .banner_header {
    text-align: left;
  }
}
@media screen and (min-width: 1600px) {
  .banner_header {
    font-size: 64px;
  }
}

.banner_context {
  color: var(--color-text-black);
  text-align: center;
  font-size: 20px;
  line-height: 150%; /* 30px */
}

.outside_download_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media screen and (min-width: 640px) {
  .outside_download_container {
    flex-direction: row;
  }
}

.download_container {
  display: flex;
  width: 200px;
  height: 72px;
  padding: 12px 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border-radius: 12px;
  background-color: var(--color-background-dark);
}

.download_container a {
  text-decoration: none;
}
.download {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon_container {
  display: flex;
  width: 48px;
  height: 48px;
  padding: 0px 2px;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.apple {
  width: 48px;
  height: 48px;
}

.google {
  width: 34.249px;
  height: 37.993px;
  flex-shrink: 0;
}

.download_text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: -2px;
}

.download_p {
  color: var(--color-text-white);
  font-size: 14px;
  line-height: 150%; /* 21px */
  letter-spacing: -0.14px;
}

.download_brand {
  color: var(--color-text-white);
  font-size: 18px;
  line-height: 150%; /* 27px */
  letter-spacing: -0.18px;
}

.download_version {
  color: var(--color-text-black);
  font-size: 16px;
  line-height: 150%; /* 24px */
  text-decoration-line: underline;
}

/* feature */

.feature {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  flex-shrink: 0;
  background-color: var(--color-background-dark);
}
@media screen and (min-width: 640px) {
  .feature {
    gap: 100px;
  }
}

@media screen and (min-width: 1600px) {
  .feature {
    gap: 200px;
  }
}

.feature_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  margin: 0 auto;
}

.feature_container:last-child {
  padding-bottom: 50px;
}

@media screen and (min-width: 1024px) {
  .feature_container {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
  .feature_container:first-child {
    padding-top: 100px;
  }
  .feature_container:last-child {
    padding-bottom: 100px;
  }
}

@media screen and (min-width: 1600px) {
  .feature_container {
    max-width: 1280px;
  }
}

.feature_header_container {
  display: flex;
  padding: 40px 24px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}

@media screen and (min-width: 640px) {
  .feature_header_container {
    padding: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .feature_header_container {
    justify-content: center;
    align-items: flex-start;
    max-width: 500px;
  }
}

.feature_header h2 {
  text-align: center;
  color: var(--color-text-white);
  font-size: 48px;
  line-height: 120%; /* 57.6px */
  letter-spacing: -0.96px;
}

@media screen and (min-width: 1024px) {
  .feature_header h2 {
    text-align: left;
  }
}

h2.yellow,
h2 span.yellow {
  color: var(--color-background);
}

.feature_header span {
  color: var(--color-text-white);
}

.h2-break {
  display: block;
}

.feature_context_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.feature_context_container p {
  align-self: stretch;
  color: var(--color-text-white);
  text-align: center;
  font-size: 18px;
  line-height: 150%; /* 27px */
  letter-spacing: -0.18px;
}

@media screen and (min-width: 1024px) {
  .feature_context_container p {
    text-align: left;
  }
}

.feature_img_container {
  display: flex;
  padding: 0px 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  margin: 0 auto;
}

.feature_img_container .img1 {
  width: 420px;
  height: 691.892px;
  border-radius: 24px;
  object-fit: contain;
}

@media screen and (min-width: 640px) {
  .feature_img_container .img1 {
    width: 500px;
  }
}
@media screen and (min-width: 1600px) {
  .feature_img_container .img1 {
    width: 650px;
    height: 756.757px;
  }
}

.feature_img_container .img2 {
  flex: 1 0 0;
  height: 345px;
  max-width: 420px;
}

@media screen and (min-width: 640px) {
  .feature_img_container .img2 {
    max-width: 500px;
    height: 400.474px;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1600px) {
  .feature_img_container .img2 {
    max-width: 650px;
    height: 520.616px;
  }
}

.feature_img_container .img3 {
  max-width: 420px;
  height: 400px;
  flex-shrink: 0;
}

@media screen and (min-width: 640px) {
  .feature_img_container .img3 {
    max-width: 500px;
  }
}

@media screen and (min-width: 1600px) {
  .feature_img_container .img3 {
    max-width: 650px;
    height: 520px;
  }
}

.free_trial_container {
  display: flex;
  width: 200px;
  padding: 12px 16px;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  border-radius: 12px;
  border: 1px solid var(--New-Color-Neutral-Color-6, #696969);
  border: 1px solid
    var(--New-Color-Neutral-Color-6, color(display-p3 0.4118 0.4118 0.4118));
  background: var(--New-Color-Neutral-Color-9, #1e1e1c);
  background: var(
    --New-Color-Neutral-Color-9,
    color(display-p3 0.1176 0.1176 0.1098)
  );
}

.icon_div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.text_div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: -2px;
}

.text_div .p_top {
  align-self: stretch;
  color: var(--new-color-neutral-color-05, #f3f3f3);
  color: var(
    --new-color-neutral-color-05,
    color(display-p3 0.9529 0.9529 0.9529)
  );
  font-size: 14px;
  line-height: 150%; /* 21px */
  letter-spacing: -0.14px;
  text-align: left;
}

.text_div .p_bottom {
  color: var(--new-color-neutral-color-05, #f3f3f3);
  color: var(
    --new-color-neutral-color-05,
    color(display-p3 0.9529 0.9529 0.9529)
  );
  font-size: 18px;
  line-height: 150%; /* 27px */
  letter-spacing: -0.18px;
  text-align: left;
}

.bytwo {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.bytwo a {
  text-decoration: none;
}

/* footer */

.footer {
  background-color: var(--color-background-feature);
  color: var(--color-text-white);
  display: flex;
  padding: 80px 0px 40px 0px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  box-shadow: 0px 4px 4px 0px color(display-p3 0 0 0 / 0.25);
  width: 100%;
}

.footer-cover {
  width: 100%;
  display: flex;
  padding: 0px 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
}

@media screen and (min-width: 1600px) {
  .footer-cover {
    max-width: 1440px;
    margin: 0 auto;
  }
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

@media screen and (min-width: 1024px) {
  .footer-top {
    flex-direction: row;
    gap: 12px;
  }
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .footer-column {
    width: 450px;
  }
}

.footer-column h3 {
  font-size: 20px;
  line-height: 150%; /* 30px */
}

.footer-column p {
  font-size: 16px;
  line-height: 150%;
}

.footer-column a {
  font-size: 16px;
  line-height: 150%;
  color: var(--color-text-white);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  padding: 12px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
  border-top: 1px solid var(--New-Color-Neutral-Color-7, #50504f);

  border-top: 1px solid
    var(--New-Color-Neutral-Color-7, color(display-p3 0.3137 0.3137 0.3098));
}

@media screen and (min-width: 640px) {
  .footer-bottom {
    gap: 56px;
    flex-direction: row;
    align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .footer-bottom {
    gap: 56px;
    flex-direction: row;
    align-items: center;
  }
}

.footer-logo img {
  width: 151.18px;
}

.footer-bottom-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}

@media screen and (min-width: 640px) {
  .footer-bottom-text {
    justify-content: flex-end;
    align-items: center;
    flex-direction: row;
    gap: 56px;
    flex: 1 0 0;
  }
}

.footer-bottom-text p {
  font-size: 14px;
  line-height: 150%;
}

.footer-bottom-text a {
  color: var(--color-text-white);
  text-decoration: none;
  font-size: 14px;
  line-height: 150%;
}

/* privacy */

.privacy_container {
  display: flex;
  padding: 40px 0px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
}

.privacy_title {
  display: flex;
  width: 800px;
  padding: 20px 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.privacy_title h1 {
  color: var(--color-text-white);
  font-size: 64px;
  line-height: 120%; /* 76.8px */
  letter-spacing: -1.28px;
}

.privacy_top,
.privacy_bottom {
  display: flex;
  width: 800px;
  padding: 20px 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.privacy_top h2,
.privacy_bottom h2 {
  color: var(--color-text-white);
  font-size: 24px;
  line-height: 150%; /* 36px */
  letter-spacing: -0.24px;
}

.privacy_top p,
.privacy_bottom p {
  color: var(--color-text-white);
  font-size: 14px;
  line-height: 150%; /* 21px */
}

.insidetext1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}

.insidetext1 h3 {
  align-self: stretch;
  font-size: 16px;
  color: var(--color-text-white);
  line-height: 150%; /* 24px */
}

.insidetext1 p {
  color: var(--color-text-white);
  font-size: 14px;
  line-height: 150%; /* 21px */
}
