@import url("https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400..800&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@media (min-width: 1300px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1200px;
  }
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1320px;
  }
}
html {
  font-size: 16px;
}
@media (max-width: 1200px) {
  html {
    font-size: 16px;
  }
}

body {
  --f24: 24px;
  --f22: 22px;
  --f20: 20px;
  --f18: 18px;
  font-family: "Baloo Da 2", sans-serif;
}
body * {
  font-family: "Baloo Da 2", sans-serif;
}
@media screen and (max-width: 991px) {
  body {
    --f18: 16px;
    --f20: 18px;
    --f22: 20px;
    --f24: 22px;
  }
}

img {
  max-width: 100%;
}

ul {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: clamp(30px, 1.05rem + 2.7vw, 54px);
}

h2 {
  font-size: clamp(26px, 3.1vw, 45px);
}

h3 {
  font-size: calc(1.12rem + 0.75vw);
}

h4 {
  font-size: clamp(18px, 2vw, 20px);
}

p {
  font-size: 16px;
  line-height: 1.6;
  color: #7e695c;
}

.section_heading h2 {
  color: #402210;
  font-weight: 700;
}
.section_heading p {
  margin-top: 1.25rem;
  font-size: var(--f22);
  color: #7e695c;
}
@media screen and (max-width: 991px) {
  .section_heading p {
    margin-top: 0.75rem;
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .section_heading p {
    margin-top: 0.5rem;
    font-size: 16px;
  }
}

.container {
  padding: 0 20px;
}

.section {
  padding: clamp(60px, 8vw, 120px) 0;
  position: relative;
}
@media screen and (max-width: 766px) {
  .section {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.form_control {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(64, 34, 16, 0.12);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 16px;
  color: #402210;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form_control:focus {
  border-color: rgba(39, 151, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(39, 151, 255, 0.15);
}

.input_with_icon {
  position: relative;
}
.input_with_icon .icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.35;
  pointer-events: none;
}
.input_with_icon.textarea .icon {
  top: 14px;
  transform: none;
}

.theme_button {
  border-radius: 5px;
  min-width: 140px;
  line-height: 1;
  padding: 14px 6px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  transition: 0.2s;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border: none;
}
.theme_button svg {
  max-width: 0;
  max-height: 0;
}
.theme_button:hover {
  color: #fff;
}
.theme_button:hover svg {
  margin-left: 10px;
  max-width: 16px;
  max-height: 16px;
  fill: currentColor;
}
.theme_button.primaryBtn {
  background-color: #e96d1f;
}
.theme_button.primaryBtn:hover {
  background-color: #2797ff;
}
.theme_button.outlinePrimaryBtn {
  border: 1px solid #e96d1f;
  background-color: transparent;
  color: #e96d1f;
}
.theme_button.outlineSecondaryBtn {
  border: 1px solid #2797ff;
  background-color: transparent;
  color: #2797ff;
}
.theme_button.secondaryBtn {
  background-color: #2797ff;
}
.theme_button.secondaryBtn:hover {
  background-color: #e96d1f;
}

.header {
  padding: 12px 0;
  position: fixed;
  top: 0;
  z-index: 9;
  background: transparent;
  width: 100%;
}
.header .navPill {
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 12px 30px -20px rgba(51, 61, 86, 0.6);
  padding: 8px 12px;
  display: flex;
  align-items: center;
}
.header .navbar {
  width: 100%;
  padding: 0;
}
.header .navbar-brand {
  display: flex;
  align-items: center;
  margin-right: 12px;
  padding: 0;
}
.header .navbar-brand img {
  max-height: 47px;
}
.header .navbar-nav {
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
}
.header .nav-item {
  margin: 0 2px;
}
.header .nav-link {
  color: #7e695c;
  padding: 8px 12px !important;
  border-radius: 24px;
}
.header .nav-link:hover, .header .nav-link.active {
  color: #e96d1f;
  background: rgba(233, 109, 31, 0.08);
}
.header .primaryBtn {
  min-width: 170px;
  padding: 12px 18px;
  border-radius: 24px;
  background-color: rgba(233, 109, 31, 0.9);
  box-shadow: 0px 3px 0px 2px #e96d1f;
}
.header .primaryBtn:hover {
  background-color: rgba(39, 151, 255, 0.9);
  box-shadow: 0px 3px 0px 2px #2797ff;
}
.header .outlinePrimaryBtn {
  padding: 10px;
  border-radius: 50px;
}
.header .outlinePrimaryBtn:hover {
  background-color: rgba(233, 109, 31, 0.08);
  color: #e96d1f;
}
.header .langDropdown .dropdown-menu {
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 990px) {
  .header .navbar-brand img {
    max-height: 37px;
  }
  .header .navPill {
    border-radius: 14px;
    padding: 8px 10px;
  }
  .header .navbar-collapse {
    padding: 10px 4px 6px;
  }
  .header .downloadBtn {
    width: 100%;
  }
}

.bottom_wrapper {
  --mainGradient: linear-gradient(
    135deg,
    #b7d9d1 0%,
    #a4c8ca 16%,
    #ffe3bf 66%,
    #fad4a4 100%
  );
}
@media screen and (min-width: 1200px) {
  .bottom_wrapper.bg_bottom {
    background: var(--mainGradient);
  }
}

.subscribe_stories {
  padding-bottom: 60px;
}
@media screen and (max-width: 1199px) {
  .subscribe_stories {
    background: var(--mainGradient);
  }
}
.subscribe_stories .form_group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  max-width: 767px;
  margin-top: 3rem;
}
.subscribe_stories .form_group .input_wrap {
  flex-grow: 1;
  position: relative;
}
.subscribe_stories .form_group .input_wrap img {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
}
.subscribe_stories .form_group input {
  width: 100%;
  border: none;
  border-radius: 50px;
  padding: 10px;
  padding-left: 60px;
  height: 56px;
  outline: none;
  background: #fff;
}
.subscribe_stories .form_group .primaryBtn {
  font-size: var(--f18);
  min-width: 170px;
  min-height: 50px;
  padding: 14px 18px;
  border-radius: 50px;
  background-color: rgba(233, 109, 31, 0.9);
  box-shadow: 0px 3px 0px 2px #e96d1f;
}
.subscribe_stories .form_group .primaryBtn:hover {
  background-color: rgba(39, 151, 255, 0.9);
  box-shadow: 0px 3px 0px 2px #2797ff;
}
@media screen and (max-width: 767px) {
  .subscribe_stories .form_group {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
  }
  .subscribe_stories .form_group .input_wrap {
    width: 100%;
  }
  .subscribe_stories .form_group input {
    height: 45px;
  }
  .subscribe_stories .form_group .primaryBtn {
    height: 40px;
    min-height: auto;
    padding: 10px 18px;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .subscribe_stories .subscribe_image {
    text-align: right;
    margin-top: 2rem;
  }
  .subscribe_stories .subscribe_image img {
    height: 100px;
    margin-top: -2rem;
  }
}

.join_community {
  --gradient: linear-gradient(175deg, #ffbf22 0%, #ff9d25 30%, #2797ff 100%);
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .join_community {
    margin-bottom: -200px;
  }
}
@media screen and (max-width: 1199px) {
  .join_community {
    background: var(--gradient);
  }
}
.join_community .join_community_inner {
  padding: 60px 80px 0;
}
@media screen and (min-width: 1200px) {
  .join_community .join_community_inner {
    border-radius: 1.45rem;
    background: var(--gradient);
  }
}
@media screen and (max-width: 1199px) {
  .join_community .join_community_inner {
    padding: 40px 0 0;
  }
}
.join_community .content {
  padding-bottom: 1rem;
}
.join_community .section_heading {
  max-width: 506px;
}
.join_community .section_heading * {
  color: #fff;
}
.join_community .storeBadges {
  margin-top: 30px;
  background-color: #fff;
  display: inline-flex;
  padding: 10px;
  border-radius: 1rem;
  gap: 10px;
}
.join_community .image {
  text-align: right;
}

.footer {
  padding: clamp(40px, 4.5vw, 60px) 0;
  background-color: #1b0f0a;
  color: #fff;
  position: relative;
  overflow: hidden;
  background-size: cover;
}
@media screen and (min-width: 1200px) {
  .footer {
    padding-top: 20%;
  }
}
.footer .footerTitle {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.footer .footerList {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 18px;
}
.footer .footerBrand {
  padding-right: 3rem;
}
.footer .footerBrand .footerLogo {
  max-height: 60px;
}
.footer .footerBrand p {
  color: #dedede;
  font-size: 1rem;
}
.footer .social_icons {
  display: flex;
  gap: 1.75rem;
}
.footer .social_icons .icon {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: 0.15s linear;
}
.footer .social_icons .icon svg {
  max-height: 20px;
  width: 25px;
  color: #fff;
  margin-right: 0;
  transition: 0.15s linear;
}
.footer .social_icons .icon:hover {
  opacity: 0.85;
}
.footer .storeBadges {
  display: flex;
  justify-content: flex-end;
  margin-right: 7%;
  margin-top: -3.5rem;
  gap: 1.25rem;
}
.footer .storeBadges img {
  border: 1px solid #f7f7f7;
  border-radius: 10px;
  max-height: 55px;
}
@media screen and (max-width: 1199px) {
  .footer .storeBadges {
    margin-right: 0%;
  }
}
@media screen and (max-width: 767px) {
  .footer .storeBadges {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 1199px) {
  .footer .footer_row {
    flex-wrap: wrap;
  }
  .footer .footer_row .footer_col {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 1rem;
  }
  .footer .footer_row .footer_col h5 {
    margin-bottom: 8px;
  }
  .footer .footer_col4 {
    flex-basis: 60%;
    margin-bottom: 1rem;
  }
  .footer .footer_contact ul li {
    padding: 0.7rem 0;
  }
}
.footer .subscribe input {
  border-radius: 4px 0 0 4px;
  border-right: none;
}
.footer .subscribe button {
  border-radius: 0 4px 4px 0;
}

.footerBottom {
  padding: 1.5rem 0;
  background-color: #351f17;
}
.footerBottom .bottom_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footerBottom .bottom_inner p {
  color: #fff;
  font-size: var(--f18);
}

.banner {
  min-height: 100vh;
  max-height: 1024px;
  background: linear-gradient(135deg, #b7d9d1 0%, #a4c8ca 16%, #ffe3bf 66%, #fad4a4 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 0;
}
.banner .banner_content {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
  max-width: 624px;
  margin: auto;
}
.banner .banner_content .image1,
.banner .banner_content .image2 {
  position: absolute;
  top: 0;
}
@media screen and (max-width: 991px) {
  .banner .banner_content .image1,
  .banner .banner_content .image2 {
    display: none;
  }
}
.banner .banner_content .image1 {
  left: 100%;
}
.banner .banner_content .image2 {
  right: 100%;
}
.banner .banner_content .banner_title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #402210;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.banner .banner_content .banner_title .highlight {
  color: #ff6b35;
}
.banner .banner_content .banner_subtitle {
  font-size: 22px;
  font-weight: "regular";
  color: #7e695c;
  max-width: 774px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.banner .banner_content .download_buttons {
  flex-wrap: wrap;
  gap: 1rem;
}
.banner .banner_content .download_buttons .store_btn img {
  transition: transform 0.3s ease;
}
.banner .banner_content .download_buttons .store_btn img:hover {
  transform: scale(1.05);
}
.banner .bg_elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.banner .bg_elements .letters {
  z-index: -1;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 100%;
  pointer-events: none;
}
.banner .bg_elements .letters img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .banner {
    padding: 100px 0 40px;
    min-height: auto;
  }
  .banner .banner_content {
    margin-bottom: 40px;
  }
  .banner .bg_elements .circle.circle_left {
    width: 200px;
    height: 200px;
  }
  .banner .bg_elements .circle.circle_right {
    width: 150px;
    height: 150px;
  }
}
@media screen and (max-width: 479px) {
  .banner .download_buttons {
    flex-direction: column;
    align-items: center;
  }
  .banner .download_buttons .store_btn img {
    height: 45px;
  }
}

.pricing_section {
  background-color: #ffefcd;
  position: relative;
  z-index: 9;
}
@media screen and (min-width: 992px) {
  .pricing_section .row {
    transform: translateY(-15%);
  }
}
@media screen and (max-width: 991px) {
  .pricing_section .row {
    --bs-gutter-y: 2rem;
  }
}
.pricing_section .pricing_card {
  height: 100%;
  background-color: #fff;
  border-radius: 24px;
  padding: clamp(32px, 4vw, 48px);
  box-shadow: 0 24px 50px rgba(64, 34, 16, 0.08);
  border: 1px solid rgba(64, 34, 16, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 3vw, 24px);
  transition: all 0.15s ease;
}
.pricing_section .pricing_card * {
  transition: all 0.15s ease;
}
.pricing_section .pricing_card .plan_name {
  font-size: clamp(1.5rem, 2vw, 1.75rem);
  color: #402210;
  font-weight: 600;
}
.pricing_section .pricing_card .plan_price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: #ff8726;
}
.pricing_section .pricing_card .plan_price .amount {
  font-weight: 800;
  line-height: 1;
  font-size: clamp(2rem, 4vw, 3rem);
}
.pricing_section .pricing_card .plan_price .period {
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 2rem);
}
.pricing_section .pricing_card .plan_description {
  max-width: 240px;
  color: #7e695c;
  font-size: var(--f20);
  border-top: 1px solid rgba(64, 34, 16, 0.08);
  padding: 1.5rem 0 1rem;
  line-height: 1.3;
}
.pricing_section .pricing_card .plan_button {
  border-radius: 999px;
  padding: 14px 32px;
  min-width: auto;
  width: 100%;
  background: linear-gradient(135deg, #ff9c41 0%, #e96d1f 100%);
  box-shadow: 0 12px 25px rgba(233, 109, 31, 0.25);
}
.pricing_section .pricing_card .plan_button:hover {
  background: linear-gradient(135deg, #e96d1f 0%, #ff9c41 100%);
}
.pricing_section .pricing_card:hover {
  background: linear-gradient(135deg, #ffbf22 0%, #ff9d25 30%, #2797ff 100%);
}
.pricing_section .pricing_card:hover .plan_name {
  color: #fff;
}
.pricing_section .pricing_card:hover .plan_price {
  color: #fff;
}
.pricing_section .pricing_card:hover .plan_description {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .pricing_section .pricing_card {
    padding: 32px 24px;
  }
}

.faq {
  background-color: #ffefcd;
}
.faq .section_heading {
  max-width: 767px;
  margin: auto;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.faq .faq_accordion {
  max-width: 900px;
  margin: auto;
}
.faq .faq_accordion .accordion-item {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(64, 34, 16, 0.08);
  background: #fffaf2;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}
.faq .faq_accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.faq .faq_accordion .accordion-item .accordion-header .accordion-button {
  background: #fffaf2;
  border: none;
  padding: clamp(18px, 2.5vw, 24px) clamp(20px, 3vw, 28px);
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #402210;
  box-shadow: none;
  border-radius: 16px;
  transition: all 0.3s ease;
}
.faq .faq_accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background: #fff;
  border: 1px solid rgba(64, 34, 16, 0.12);
  border-radius: 16px 16px 0 0;
  color: #402210;
}
.faq .faq_accordion .accordion-item .accordion-header .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23402210' stroke-width='2'%3e%3cline x1='8' y1='4' x2='8' y2='12'/%3e%3cline x1='4' y1='8' x2='12' y2='8'/%3e%3c/svg%3e");
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(64, 34, 16, 0.08);
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.faq .faq_accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23402210' stroke-width='2'%3e%3cline x1='4' y1='8' x2='12' y2='8'/%3e%3c/svg%3e");
  background-color: rgba(64, 34, 16, 0.12);
}
.faq .faq_accordion .accordion-item .accordion-collapse .accordion-body {
  padding: clamp(12px, 1.5vw, 16px) clamp(20px, 3vw, 28px) clamp(20px, 2.5vw, 24px);
  background: #fff;
  border: 1px solid rgba(64, 34, 16, 0.12);
  border-top: none;
  border-radius: 0 0 16px 16px;
  color: #7e695c;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .faq .faq_accordion .accordion-item {
    margin-bottom: 12px;
  }
  .faq .faq_accordion .accordion-item .accordion-header .accordion-button {
    padding: 16px 20px;
  }
  .faq .faq_accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 12px 20px 20px;
  }
}

.bottom_wrapper {
  background-color: #ffefcd;
}/*# sourceMappingURL=pricing.css.map */