@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
h1,
h2,
h3,
h4,
p {
  margin-bottom: 0;
}

h1 {
  font-size: clamp(50px, 4vw, 90px);
  font-style: normal;
  font-weight: 500;
  line-height: 120px;
}

h2 {
  font-size: clamp(28px, 2vw, 50px);
  font-style: normal;
  font-weight: 400;
}

h3 {
  line-height: 38px;
  font-size: 28px;
  font-weight: 700;
  font-style: normal;
}

h4 {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

h5 {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  color: var(--Grey, #969696);
}

p {
  line-height: 25px;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  color: #252222;
}

.jm-navbar {
  padding: 20px 0;
  background: #fff9ed;
}
.jm-navbar .navbar {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.jm-navbar .navbar-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.jm-navbar .navbar-brand-logo {
  width: 50px;
  height: 50px;
  max-width: 100%;
  margin-right: 30px;
}
.jm-navbar .navbar-brand-text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  background: linear-gradient(to right, #ff5733, #ff8c00, #ffc300);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 400px) {
  .jm-navbar .navbar-brand-text {
    display: none;
  }
}
@media (max-width: 400px) {
  .jm-navbar .navbar-brand {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .jm-navbar .navbar {
    justify-content: center;
  }
}
.jm-navbar .navbar-button {
  padding: 20px;
  border: 0px;
  border-radius: 10px;
  text-align: right;
  background: #000;
  color: #fff;
  line-height: 25px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
}
@media (max-width: 600px) {
  .jm-navbar .navbar-button {
    display: none;
  }
}

.stores {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.stores-buttons {
  display: flex;
  align-items: center;
  text-decoration: none;
  text-align: left;
  color: #fff;
  background-color: black;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
  min-width: 170px;
}
.stores-buttons img {
  width: 40px;
  height: 40px;
}
.stores-buttons-text {
  display: flex;
  flex-direction: column;
}
.stores-buttons-text span {
  font-size: 12px;
  line-height: 10px;
}
.stores-buttons-text strong {
  font-size: 20px;
}
@media (max-width: 600px) {
  .stores {
    justify-content: space-around;
    gap: 22px;
  }
  .stores-buttons {
    padding: 8px 10px;
    min-width: 130px;
  }
  .stores-buttons img {
    width: 30px;
    height: 30px;
  }
  .stores-buttons-text span {
    font-size: 10px;
    line-height: 8px;
  }
  .stores-buttons-text strong {
    font-size: 17px;
  }
}

@media (max-width: 600px) {
  .no-display {
    display: none;
  }
}

body {
  background-color: #fff;
  font-family: Inter;
  box-sizing: border-box;
}

.jm-hero {
  padding: 60px 0 130px 0;
}
.jm-hero .hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .jm-hero .hero {
    flex-direction: column-reverse;
  }
}
.jm-hero .hero-mockups {
  display: flex;
  justify-content: center;
}
.jm-hero .hero-mockups img {
  min-width: 60%;
  max-width: 80%;
  -o-object-fit: cover;
     object-fit: cover;
}
.jm-hero .hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
}
.jm-hero .hero-content h3 {
  font-weight: 400;
}
.jm-hero .hero-content-header {
  margin-bottom: 5px;
}
.jm-hero .hero-content-stores {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-top: 20px;
}
.jm-hero .hero-content-stores-buttons {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  background-color: black;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
}
.jm-hero .hero-content-stores-buttons img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.jm-hero .hero-content-stores-buttons-text {
  display: flex;
  flex-direction: column;
}
.jm-hero .hero-content-stores-buttons-text span {
  font-size: 12px;
  line-height: 10px;
}
.jm-hero .hero-content-stores-buttons-text strong {
  font-size: 20px;
}
@media (max-width: 600px) {
  .jm-hero {
    padding: 60px 0 80px 0;
  }
}

@media (max-width: 1200px) {
  .jm-features {
    display: none;
  }
  .swiper {
    display: block;
  }
}
@media (min-width: 1201px) {
  .swiper {
    display: none;
  }
}
.jm-features {
  padding: 80px 0;
  background: #fffafa;
}
.jm-features-content {
  display: inline-flex;
  flex-direction: row;
  gap: 20px;
}
.jm-features-content-card {
  padding: 40px 20px;
  text-align: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff;
  flex: 1 1 340px; /* Make cards responsive with a base width */
  max-width: 340px; /* Ensure cards do not exceed 340px width */
  box-sizing: border-box;
}
.jm-features-content-card-icon {
  display: flex;
  justify-content: center;
}
.jm-features-content-card-icon div {
  background: var(--Ang-lique-Grey-400, #eff2f5);
  padding: 20px;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.jm-features-content-card-icon div img {
  width: 35px;
  height: 35px;
}
.jm-features-content-card-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.jm-features-content-card-text h3 {
  font-weight: 700;
}
@media (max-width: 600px) {
  .jm-features {
    padding: 60px 0;
  }
}

.swiper {
  width: 100%;
  height: 100%;
}

/* Swiper slide styles */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.jm-info {
  padding: 120px 0;
}
.jm-info-body {
  padding: 20px 0;
}
.jm-info-body-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.jm-info-body-content-left {
  display: flex;
  justify-content: center;
}
.jm-info-body-content-left img {
  min-width: 60%;
  max-width: 90%;
}
.jm-info-body-content-right {
  display: flex;
  flex-direction: column;
  text-align: right;
  gap: 20px;
  max-width: 600px;
}
.jm-info-body-content-right-header {
  margin-bottom: 5px;
}
.jm-info-body-content-right-footer {
  display: flex;
  flex-direction: row;
  justify-content: right;
  gap: 40px;
  margin-top: 20px;
}
.jm-info-body-content-right-footer a img {
  width: 180px;
  height: 60px;
}
.jm-info-body-content .content-left {
  text-align: left;
  justify-content: left;
}
@media (max-width: 1200px) {
  .jm-info-body-content {
    flex-direction: column;
  }
  .jm-info-body-content-right-footer {
    justify-content: left;
  }
}
@media (max-width: 600px) {
  .jm-info-body {
    padding: 40px 0;
  }
  .jm-info-body-content-right {
    text-align: left;
  }
}
.jm-info-body .content-reverse {
  flex-direction: row;
}
@media (max-width: 1200px) {
  .jm-info-body .content-reverse {
    flex-direction: column-reverse;
  }
}

.jm-footer-body {
  padding: 60px 0 101px 0;
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(31deg, rgb(255, 0, 0), rgb(255, 101, 0), rgb(245, 90, 0), rgb(255, 207, 58));
}
.jm-footer-body-left {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 30px;
  max-width: 527px;
  color: #fff;
}
.jm-footer-body-left a {
  color: #fff;
}
.jm-footer-body-right {
  position: absolute;
  top: 65%;
  right: 0;
  transform: translateY(-49%);
}
.jm-footer-body-right img {
  width: 213px;
  max-width: 100%;
}
@media (max-width: 600px) {
  .jm-footer-body-right img {
    max-width: 80%;
  }
}
.jm-footer-end {
  padding: 120px 0 80px 0;
}
.jm-footer-end-content {
  display: flex;
  flex-direction: row;
  gap: 60px;
  justify-content: center;
}
.jm-footer-end-content a {
  text-decoration: none;
}
@media (max-width: 2000px) {
  .jm-footer-body-right {
    top: 63%;
  }
}
@media (max-width: 1200px) {
  .jm-footer-body {
    min-height: 390px;
  }
  .jm-footer-body-right {
    top: 72%;
  }
}
@media (max-width: 600px) {
  .jm-footer {
    padding: 60px 0;
  }
  .jm-footer-body-right {
    top: 78%;
  }
  .jm-footer-end {
    padding: 100px 0 20px 0;
  }
}

.jm-privacy-header,
.jm-terms-header {
  padding: 120px 0;
  background-image: linear-gradient(to right, #f5f6fa 0%, #fff 100%);
}
.jm-privacy-body,
.jm-terms-body {
  padding: 120px 0;
}
.jm-privacy-body-content,
.jm-terms-body-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.jm-privacy-body-content-rule,
.jm-terms-body-content-rule {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.jm-privacy-body-content-rule-section,
.jm-terms-body-content-rule-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.jm-privacy-body-content-rule-section-bold,
.jm-terms-body-content-rule-section-bold {
  font-weight: 500;
}
@media (max-width: 600px) {
  .jm-privacy-header,
  .jm-terms-header {
    padding: 80px 0;
    font-size: 38px;
  }
  .jm-privacy-body,
  .jm-terms-body {
    padding: 60px 0;
  }
  .jm-privacy-body-content,
  .jm-terms-body-content {
    gap: 30px;
  }
}/*# sourceMappingURL=style.css.map */