* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --body-color: #fff;
  --primary-bg: #f5f7f9;
  --primary-text: #525760;
  --secondary-text: #717f8c;
  --font-family: "Inter", sans-serif;
  --rounded-full: 9999px;
  --transition: all ease 0.5s;
  --error-color: #cc2b52;
}
.theme-default {
  --theme-color: #00a173;
  --border-radius: 8px;
}
.theme-ios {
  --theme-color: #007aff;
  --border-radius: var(--rounded-full);
}
body {
  background-color: var(--body-color);
  font-family: var(--font-family);
  color: var(--primary-text);
}
/* base styles */
.container {
  max-width: 1140px;
  padding: 0 1rem;
  margin: 0 auto;
}
.text-center {
  text-align: center;
}
img {
  max-width: 100%;
}
.hidden {
  display: none;
}
.error {
  color: var(--error-color);
  padding-top: 8px;
  font-size: 16px;
}
.text-secondary {
  color: var(--secondary-text) !important;
}
.font-normal {
  font-weight: 400 !important;
}
/* btn */
.btn {
  width: 100%;
  color: var(--body-color);
  background-color: var(--theme-color);
  border-radius: var(--border-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 24px;
  border: none;
  cursor: pointer;
  font-size: 28px;
  font-weight: 500;
  line-height: 42px;
  text-decoration: none;
  transition: var(--transition);
}
.btn:hover {
  opacity: 0.8;
}
/* section */
.section {
  background-color: var(--primary-bg);
  padding: 40px 16px;
  border-radius: 4px;
  text-align: center;
}
.section > * {
  margin-bottom: 16px;
}
.section > *:last-child {
  margin-bottom: 0;
}

/* title */
.title {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
}
.secondary-title {
  font-size: 32px;
  color: #58646d;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  font-style: italic;
  text-align: center;
}
.description {
  color: #adadad;
  text-align: center;
}
.title-wrapper {
  max-width: 718px;
  margin: 0 auto;
}

/* app install */
.app-install {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.app-install p {
  font-size: 12px;
  line-height: 18px;
}
.gr-ball {
  height: 17px;
  width: 17px;
  border-radius: var(--rounded-full);
  background: radial-gradient(
    41.74% 41.74% at 34.35% 35.22%,
    #92eaaa 0%,
    #1ac449 100%
  );
}
/* header */
.header {
  padding: 20px 0px;
  max-width: none;
}
.logo {
  height: 43px;
}
.logo img {
  max-height: 43px;
}

/* hero-section */
.download-section.last {
  margin-top: 40px;
}
.download-section .btn {
  max-width: 330px;
}
.store-content-wrapper {
  max-width: 330px;
  margin: 0 auto 24px;
  background-color: var(--body-color);
  padding: 34px 20px;
  border-radius: 14px;
}
.store-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.store-img-wrapper {
  height: 80px;
  width: 80px;
  border-radius: 6px;
  box-shadow: 0px 8px 16px 0px #07183026;
}
.store-img-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.store-name {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
}
/* form store content */
.form-store-content-wrapper {
  max-width: 408px;
  margin: 0 auto 34px;
  background-color: var(--body-color);
  padding: 20px;
  border-radius: 14px;
}
.form-store-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.form-store-top p {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}
.form-store-top svg {
  color: var(--theme-color);
  flex-shrink: 0;
}
.form-store-content {
  display: flex;
  align-items: center;
  gap: 16px;
}
.form-store-img-wrapper {
  flex-shrink: 0;
  height: 72px;
  width: 72px;
  border-radius: 6px;
  box-shadow: 0px 8px 16px 0px #07183026;
}
.form-store-img-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.form-store-name {
  font-size: 20px;
  font-weight: 500;
  line-height: 24.2px;
  text-align: left;
}

/* steps section */
.steps-section {
  padding: 54px 0 34px;
}
.steps-wrapper {
  max-width: 200px;
  margin: 0 auto;
  padding-top: 10px;
}
.steps-wrapper > * {
  margin-bottom: 22px;
}
.steps-wrapper > *:last-child {
  margin-bottom: 0px;
}
.single-step {
  display: flex;
  align-items: center;
  gap: 10px;
}
.single-step .step-icon {
  position: relative;
  color: var(--theme-color);
  border: 3px solid var(--theme-color);
  height: 40px;
  width: 40px;
  border-radius: var(--rounded-full);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 34px;
}
.single-step .step-icon::after {
  content: "";
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  height: 14px;
  width: 2px;
  border-radius: var(--rounded-full);
  background-color: #717f8c66;
}
.single-step:last-child .step-icon::after {
  display: none;
}
.single-step .step-text {
  text-align: left;
}
.single-step .step-text p {
  font-size: 10px;
  line-height: 15px;
  text-align: left;
}
.single-step .step-text h5 {
  font-size: 15px;
  font-weight: 600;
  line-height: 22.5px;
  text-align: left;
}

/* featured section */
.feature-section {
  padding-left: 0;
  padding-right: 0;
}
.feature-container {
  display: flex;
  min-height: 145px;
  margin: auto;
  padding-top: 30px;
  overflow-x: auto;
}
.feature {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-width: 181px;
  width: 100%;
  border-left: 1px solid #e1e8ef;
  padding: 0 15px;
}
.feature:first-child {
  border-left: none;
}
.feature img {
  max-width: 68px;
}
.feature-title {
  color: #58646d;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 4px;
}
.feature-subtitle {
  color: #58646d;
  font-size: 13px;
  text-align: center;
}

/* info section */
.info-wrapper {
  padding: 20px 12px;
  background-color: var(--primary-bg);
  color: #435c71;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
}
.info-wrapper .info-img-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.info-wrapper .info-img-wrapper .info-img {
  height: 30px;
}
.info-wrapper .info-img-wrapper .info-img img {
  max-height: 30px;
  border-radius: 5px;
  box-shadow: 0px 0.13px 0.25px 0px #00000008, 0px 0.32px 0.6px 0px #0000000b,
    0px 0.61px 1.12px 0px #0000000e, 0px 1.08px 2px 0px #00000011,
    0px 2.02px 3.74px 0px #00000014, 0px 4.85px 8.95px 0px #0000001c;
}

/* entertainment section */
.entertainment-section,
.content-section {
  padding: 40px 0;
}
.entertainment-section {
  padding-top: 80px;
}
.entertainment-wrapper {
  padding-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.entertainment-wrapper .entertainment-card {
  max-width: 182px;
  aspect-ratio: 182/312;
  border-radius: 24px;
  overflow: hidden;
}
.entertainment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
/* content section */
.content-wrapper {
  padding-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 29px;
}
.content-wrapper .content-card {
  max-width: 226px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
}
.content-card .content-card-img {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  aspect-ratio: 226/181;
}
.content-card .content-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.content-card:hover .content-card-img img {
  transform: scale(1.1);
}
.content-card.current .content-card-text {
  background-color: #58646d;
  color: #f2f2f2;
}
.content-card .content-card-text {
  min-height: 137px;
  height: 100%;
  background-color: #f2f2f2;
  padding: 20px 12px;
  text-align: center;
  color: #58646d;
}
.content-card .content-card-text h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.content-card .content-card-text p {
  font-size: 12px;
  line-height: 16px;
}

/* step one section */
.step-one-section {
  padding: 60px 16px;
  margin-bottom: 35px;
}
.step-one-section .title {
  font-size: 40px;
  line-height: 33px;
}
.step-one-section .wrapper {
  padding-top: 42px;
  max-width: 408px;
  margin: 0 auto;
}
.step-one-section .wrapper > * {
  margin-bottom: 20px;
}
.step-one-section .wrapper > *:last-child {
  margin-bottom: 0;
}
.step-one-section .wrapper .steps-wrapper {
  max-width: 317px;
}
.form > * {
  margin-bottom: 18px;
}
.form > *:last-child {
  margin-bottom: 0;
}
.form-input-wrapper {
  position: relative;
}
.form-input-wrapper svg {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 18px;
  color: var(--secondary-text);
}
.form-info {
  font-size: 12px;
  line-height: 18px;
}
/* form input */
.form-input {
  color: var(--secondary-text);
  width: 100%;
  border-radius: var(--border-radius);
  border: 1px solid var(--theme-color);
  background-color: var(--body-color);
  padding: 18px 20px 18px 55px;
  font-size: 20px;
  line-height: 24px;
  transition: var(--transition);
}
.form-input::placeholder {
  line-height: 24px;
  font-size: 20px;
  color: var(--secondary-text);
}
.form-input:focus {
  border: 1px solid var(--theme-color);
  outline: var(--theme-color) solid 1px;
  box-shadow: 0 1px 5px var(--theme-color);
}

/* footer */
footer {
  padding: 130px 0 25px;
}
.footer-wrapper {
  max-width: 666px;
  margin: 0 auto;
}
.footer-wrapper p {
  color: var(--primary-text);
  font-size: 10px;
  line-height: 11px;
  text-align: center;
}
.footer-wrapper .disclaimer-text {
  background-color: #f8fbff;
  padding: 10px 20px;
  border-radius: 7px;
  margin: 0 1rem;
}
.footer-bottom {
  max-width: 200px;
  margin: 0 auto;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
  color: var(--primary-text);
}
.privacy-policy {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 45px;
  text-align: center;
}
.privacy-policy a {
  display: inline-block;
  color: var(--primary-text) !important;
  text-decoration: underline;
  font-size: 12px;
  line-height: 24px;
  transition: 0.3s ease-in-out;
  margin-right: 8px;
}
.privacy-policy a:last-child {
  margin-right: 0px;
}
.privacy-policy a:hover {
  opacity: 0.8;
}

/* imprint section */
.imprint-section .wrapper {
  max-width: 234px;
  margin: 0 auto;
  text-align: left;
}
.imprint-section .title {
  text-align: left;
  margin-bottom: 6px;
}
.imprint-section p {
  font-size: 15px;
  font-weight: 500;
  line-height: 22.5px;
}
.imprint-section .btn-wrapper {
  position: relative;
  margin-top: 27px;
}
.imprint-section svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.imprint-section .btn {
  width: fit-content;
  min-width: 182px;
  padding: 12px 42px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

/* terms and privacy css */
.sub-page .sub-page-container {
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-size: 14px;
}
.page-content-wrapper {
  padding-left: 0;
}
.sub-page h1 {
  color: #58646d !important;
  font-size: 24px;
  margin-bottom: 1rem;
}
.sub-page h2 {
  color: #797979;
  font-size: 18px;
  margin-bottom: 1rem;
}
.sub-page p {
  color: #797979;
  margin-bottom: 12px;
}
.sub-page ul {
  padding-left: 1rem;
  color: #797979;
  margin-bottom: 12px;
}
.sub-page li {
  color: #797979;
  margin-bottom: 12px;
}
.sub-page li ul {
  margin-top: 12px;
}
.sub-page a {
  color: #0537da;
  text-decoration: underline;
  transition: 0.3s ease-in-out;
}
.sub-page a:hover {
  opacity: 0.8;
}

/* contact us page */
.contact-card {
  display: flex;
  gap: 24px;
}
.contact-card .contact-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card .contact-icon img {
  max-width: 32px;
}
.contact-card .contact-content p {
  margin-bottom: 4px;
}
.contact-card .contact-content a {
  color: #797979 !important;
}
.font-normal {
  font-weight: normal !important;
}

/* media queries */
@media screen and (max-width: 540px) {
  .logo {
    height: 37px;
  }
  .logo img {
    max-height: 37px;
  }
  .store-name {
    font-size: 16px;
    line-height: 20px;
  }
  /* form store content */
  .form-store-content-wrapper {
    padding: 14px;
  }
  .form-store-top {
    margin-bottom: 16px;
  }
  .form-store-img-wrapper {
    height: 60px;
    width: 60px;
  }
  .form-store-name {
    font-size: 15px;
    line-height: 18px;
  }
}
@media screen and (max-width: 768px) {
  .step-one-section {
    padding: 40px 16px;
  }
  .step-one-section .wrapper {
    padding-top: 6px;
  }
  .step-one-section .title {
    font-size: 32px;
    line-height: 38px;
  }
  .imprint-section .btn {
    width: 100%;
  }
}
@media screen and (min-width: 640px) {
  .info-wrapper {
    margin-top: 60px !important;
    padding: 56px 24px;
    font-size: 16px;
  }
  .sub-page .sub-page-container {
    font-size: 16px !important;
  }
  .page-content-wrapper {
    padding-left: 3rem !important;
  }
  .sub-page h1 {
    font-size: 32px !important;
  }
  .sub-page h2 {
    font-size: 24px !important;
  }
}

/* animation */
.animate-in {
  animation: fadeIn 0.3s forwards;
}

.animate-out {
  animation: fadeOut 0.3s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}