body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #121217;
}

#categories .container, #categories > div:first-child,
#texts .container,
#texts > div:first-child,
#faq .container,
#faq > div:first-child,
#onboarding .container,
#onboarding > div:first-child {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

header.home-header {
  box-shadow: none !important;
}
header.home-header .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
header.home-header .search-form {
  max-width: 280px;
}

input {
  color: #121217 !important;
}
input::-moz-placeholder {
  color: #C6C9CF !important;
}
input:-ms-input-placeholder {
  color: #C6C9CF !important;
}
input::placeholder {
  color: #C6C9CF !important;
}

@media (max-width: 768px) {
  section {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.header-menu {
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
  height: 60px;
  position: relative;
}
.header-menu .mobile-menu-button, .header-menu .mobile-menu-container {
  display: none;
}
.header-menu .mobile-menu-container {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 75%;
  max-width: 300px;
  background-color: white;
  z-index: 50;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  padding: 1rem;
}
.header-menu .mobile-menu-container.open {
  transform: translateX(0);
  display: block;
}
.header-menu .mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 40;
  display: none;
}
.header-menu .mobile-menu-overlay.open {
  display: block;
}
@media (max-width: 768px) {
  .header-menu {
    padding: 0 1rem;
  }
  .header-menu .desktop-menu-items, .header-menu .desktop-action-buttons {
    display: none;
  }
  .header-menu .mobile-menu-button {
    display: flex;
  }
  .header-menu .header-menu nav {
    justify-content: space-between;
  }
  .header-menu .mobile-menu-container .menu-items {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
  }
  .header-menu .mobile-menu-container .menu-items a {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eaeaea;
  }
  .header-menu .mobile-menu-container .action-buttons {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .header-menu .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.section-title {
  font-weight: 600;
  font-size: 28px;
  line-height: 100%;
  text-align: center;
}

h2 {
  font-weight: 600 !important;
  font-size: 28px !important;
  line-height: 100% !important;
  color: #121217 !important;
}

#globe {
  background: url("/svg/globe_general_bg.svg") 50% 50% no-repeat, url("/svg/crosses.svg") 50% 50% no-repeat;
}
#globe h1 {
  font-weight: 700;
  font-size: 56px;
  line-height: 100%;
  text-align: center;
  color: #121217;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  #globe h1 {
    font-size: 36px;
  }
}
#globe h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 100%;
  text-align: center;
  margin-bottom: 40px;
  color: #121217;
}
#globe h5 {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #121217;
  margin-bottom: 20px;
  margin-top: 100px;
}
@media (max-width: 768px) {
  #globe h5 {
    margin-top: 35px;
  }
}

#categories .section-title {
  margin-bottom: 40px;
}
#categories .box {
  border: 1px solid #E2E3E6 !important;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.0588235294);
  border-radius: 8px;
}
#categories .box .title {
  font-weight: 600;
  font-size: 22px;
  line-height: 100%;
  margin-bottom: 24px;
}
#categories .box .item-title {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #121217;
}
#categories .box .item-info {
  color: #5B616E;
}
#categories .box .rating {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 10px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  background: #935AFF;
  border-radius: 2px;
  height: 20px;
  width: 20px;
  color: #fff;
}
#categories .box .rank-text {
  flex-shrink: 0;
}
#categories .box .tag {
  /* Frame 5 */
  /* Auto layout */
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 3px 12px;
  gap: 10px;
  height: 24px;
  white-space: nowrap;
  text-overflow: ellipsis;
  background: #F2F5FA;
  border-radius: 80px;
  color: #5B616E;
  font-weight: 500;
  font-size: 12px;
  line-height: 22px;
}
#categories .box .see-full {
  color: var(--Text-Subtle, #5B616E);
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
}
#categories .see-all {
  padding-left: 24px;
  padding-right: 24px;
  height: 44px;
  border: 2px solid var(--Neutral-200, #C6C9CF);
  border-radius: 6px;
  color: var(--Primary-Default, #0B67FF);
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#categories .see-all:hover {
  color: #fff;
  border-color: var(--Primary-Default, #0B67FF);
  background-color: var(--Primary-Default, #0B67FF);
}

#texts {
  margin-top: 100px;
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
  color: #121217;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 100px;
}
#texts h2 {
  margin-bottom: 24px;
}
#texts .item-row {
  justify-content: space-between;
}
#texts .item-arrow {
  gap: 10px;
}
@media (max-width: 768px) {
  #texts {
    margin-top: 48px;
    gap: 48px;
  }
}

#testimonials {
  background: url("/img/testimonials_bg.png") 50% 50% repeat #09348f;
  padding: 100px 0;
  color: #FFFFFF;
  margin-top: 100px;
}
#testimonials .section-title {
  margin-bottom: 32px;
  color: #fff !important;
}
#testimonials .testimonial {
  background: #08185B;
  border-radius: 16px;
  padding: 20px;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 768px) {
  #testimonials {
    padding: 48px 10px;
  }
  #testimonials .trustpilot-rating {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}

#faq {
  margin-top: 100px;
}
@media (max-width: 768px) {
  #faq {
    margin-top: 48px;
  }
}
#faq h2 {
  margin-bottom: 40px;
}
#faq .q {
  font-weight: 600;
  font-size: 22px;
  line-height: 100%;
  color: #121217;
}
#faq .a {
  padding-top: 12px;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--Text-Subtle, #5B616E);
}
#faq .item-wrapper {
  padding: 14px 30px;
  border-radius: 8px;
  border: 1px solid #C6C9CF;
  display: flex;
  flex-direction: column;
}
#faq .item-wrapper .item {
  gap: 10px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#onboarding {
  margin: 100px 0;
}
#onboarding .section-title {
  color: #fff !important;
  margin-bottom: 15px;
}
#onboarding #signup-form {
  padding-top: 60px;
  height: 312px;
  background: url("/img/footer_subscribe_bg.png") 50% 50% no-repeat #09348f;
}
@media (max-width: 768px) {
  #onboarding {
    margin: 48px 0;
    padding: 0 !important;
  }
  #onboarding .section-title {
    font-size: 22px !important;
    margin-bottom: 10px;
  }
  #onboarding #signup-form {
    border-radius: 0 !important;
    font-size: 14px;
    padding-top: 50px;
  }
}

.stitch-categories-section {
  background: #f8f9fb;
  padding: 80px 16px;
}
@media (max-width: 768px) {
  .stitch-categories-section {
    padding: 48px 16px;
  }
}

.stitch-categories-container {
  max-width: 1100px;
  margin: 0 auto;
}

.stitch-categories-header {
  margin-bottom: 40px;
}

.stitch-categories-title {
  font-weight: 700 !important;
  font-size: 32px !important;
  line-height: 1.2 !important;
  color: #121217 !important;
  margin-bottom: 8px !important;
  text-align: left !important;
}

.stitch-categories-subtitle {
  font-size: 16px;
  color: #5B616E;
  margin: 0;
}

.stitch-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .stitch-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .stitch-categories-grid {
    grid-template-columns: 1fr;
  }
}

.stitch-category-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.stitch-category-header {
  margin-bottom: 20px;
}

.stitch-category-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 20px;
  color: #121217;
  text-decoration: none;
  transition: color 0.2s;
}
.stitch-category-name:hover {
  color: #5046e5;
}

.stitch-category-arrow {
  color: #5046e5;
  font-size: 18px;
}

.stitch-category-items {
  display: flex;
  flex-direction: column;
}

.stitch-compact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  text-decoration: none;
  transition: background-color 0.15s;
}
.stitch-compact-item.has-border {
  border-bottom: 1px solid #e5e7eb;
}
.stitch-compact-item:hover {
  background-color: #f9fafb;
  margin: 0 -12px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 8px;
}

.stitch-rank {
  font-weight: 600;
  font-size: 15px;
  color: #5046e5;
  min-width: 28px;
}

.stitch-item-image {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f4f6;
}
.stitch-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.stitch-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stitch-item-title {
  font-weight: 500;
  font-size: 15px;
  color: #121217;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stitch-item-tag {
  display: inline-block;
  padding: 2px 10px;
  background: #f3f4f6;
  border-radius: 100px;
  font-size: 12px;
  color: #6b7280;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.stitch-item-score {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 32px;
  background: #10b981;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
}

.stitch-categories-more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.stitch-more-btn {
  padding: 12px 24px;
  border: 2px solid #c6c9cf;
  border-radius: 8px;
  background: transparent;
  color: #0B67FF;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
}
.stitch-more-btn:hover {
  background: #0B67FF;
  border-color: #0B67FF;
  color: #ffffff;
}

/*# sourceMappingURL=homepage.css.map*/