@import url("https://fonts.googleapis.com/css2?family=Architects+Daughter&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Shadows+Into+Light&family=UnifrakturMaguntia&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --brand-purple: #333333;
  --brand-pink: #333333;
  --gray-50: #f9fafb;
  --gray-100: #333333;
  --gray-200: #333333;
  --gray-400: #333333;
  --gray-700: #333333;
  --gray-900: #111827;
  --white: #fff;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  /* background: #FFFDE7;
  color: var(--gray-900); */
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* .header {
  background: #FFFDE7;
  box-shadow: 0 2px 8px 0 rgba(168,85,247,0.04);
  padding: 1.5rem 0;
}
.header{
  padding: 0.5rem 0;
} */
.header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-purple);
  letter-spacing: -1px;
}
.logo img {
  max-width: 130px;
}

.nav-links a {
  color: var(--brand-purple);
  text-decoration: none;
  font-weight: 500;
  margin-left: 2rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--brand-pink);
}

.hero {
  position: relative;
  /* background: linear-gradient(90deg, rgba(236,72,153,0.7) 0%, rgba(168,85,247,0.7) 100%), url('/images/hero-banner.jpg') center center/cover no-repeat; */
  color: #333333;
  padding: 4rem 0 3rem 0;
  text-align: center;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px 0 rgba(168, 85, 247, 0.08);
}

.hero h1,
.hero p {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.18), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero .btn-primary {
  position: relative;
  z-index: 3;
  box-shadow: 0 4px 24px 0 rgba(168, 85, 247, 0.18);
  margin: 20px 0 0;
  display: inline-block;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fff9a6, #ffb6b9);
  z-index: 1;
  border-radius: 0 0 2rem 2rem;
  pointer-events: none;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background: #ff6b6b;
  color: #333333;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(168, 85, 247, 0.1);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  border: 1px solid transparent;
  text-decoration: none;
}

.btn-primary:hover {
  background: rgba(255, 107, 107, 0.1);
  color: #333333;
  border: 1px solid #333333;
  box-shadow: 0 4px 16px 0 rgba(236, 72, 153, 0.1);
}

/* Section spacing and alignment */
.section {
  padding: 4rem 0 4rem 0;
  margin-bottom: 0;
  background: #fffde7;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #333333;
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: -1px;
}

/* Add vertical space between sections */
.section + .section {
  margin-top: 3rem;
}

/* Feature grid improvements */
.feature-grid,
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 0;
}

.feature-card {
  background: var(--white);
  border-radius: 1.25rem;
  box-shadow: 0 2px 12px 0 rgba(168, 85, 247, 0.06);
  padding: 2rem 1.5rem;
  flex: 1 1 250px;
  max-width: 320px;
  text-align: left;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: 0 4px 24px 0 rgba(236, 72, 153, 0.1);
  transform: translateY(-4px) scale(1.03);
}

.feature-card h3 {
  color: var(--brand-pink);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--gray-700);
  font-size: 1rem;
}

/* .footer {
  text-align: center;
  color: #333333;
  font-size: 1rem;
  margin-top: 2rem;
} */

/* Blog styles */
.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.blog-card {
  background: var(--white);
  border-radius: 1.25rem;
  box-shadow: 0 2px 12px 0 rgba(168, 85, 247, 0.06);
  padding: 0 0;
  text-align: left;
  transition: box-shadow 0.2s;
  max-width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: 0 4px 24px 0 rgba(236, 72, 153, 0.1);
}
.blog-card .blog-content {
  padding: 20px 15px 10px;
}
.blog-card .read-more-button {
  padding: 0 15px 20px;
  margin: auto 0 0;
}

.blog-card h2 {
  color: var(--brand-purple);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.blog-card .blog-date {
  color: #cccccc;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.blog-card p {
  color: var(--gray-700);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.blog-card a {
  color: #ff6b6b;
}

.blog-card .read-more {
  color: #ff6b6b;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-card h2 a {
  color: #ff6b6b;
}
.blog-card .read-more:hover {
  color: var(--brand-purple);
}
@media screen and (max-width: 767px) {
  .blog-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .blog-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .feature-card {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
  }
}

/* Clarity section layout */
.clarity-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  justify-content: center;
}

.clarity-img-col {
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 420px;
  text-align: center;
}

.clarity-content-col {
  flex: 2 1 400px;
  min-width: 280px;
}

@media (max-width: 900px) {
  .clarity-flex {
    flex-direction: column;
    gap: 2rem;
  }
  .clarity-img-col,
  .clarity-content-col {
    max-width: 100%;
    min-width: 0;
  }
}
@media screen and (max-width: 767px) {
  section.section.clarity-section {
    padding: 0 !important;
    margin-top: 0 !important;
  }
  .hero {
    min-height: inherit !important;
  }
  .clarity-img-col {
    flex: 1 1 auto !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }
  .clarity-content-col .clarity-point {
    max-width: 100% !important;
    flex: 1 1 auto !important;
  }
  .slider-wrapper div.slider .slider-track img {
    height: auto !important;
  }
  .testimonial-grid .testimonial-card {
    max-width: 100% !important;
    flex: 1 1 auto !important;
  }
  section.section.testimonial-section {
    padding-top: 0;
  }
  .testimonial-grid .testimonial-card blockquote {
    width: 100%;
    text-align: center;
  }
  .clarity-content-col p {
    text-align: center !important;
  }
  .nav-links {
    width: 280px;
  }
}

/* Add margin below stat callout */
.clarity-stat {
  margin-bottom: 2.5rem !important;
}

/* Responsive Header Navigation */
.header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  transition: max-height 0.3s ease;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1rem;
}

.hamburger {
  width: 28px;
  height: 3px;
  background: #222;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    width: 300px;
    max-height: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 8px 8px;
    z-index: 100;
    padding: 0 1rem;
  }
  .nav-links.active {
    max-height: 300px;
    padding: 1rem 1rem;
  }
  .nav-toggle {
    display: flex;
  }
}

/* Hamburger animation when active */
.nav-toggle.active .hamburger:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active .hamburger:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active .hamburger:nth-child(3) {
  transform: translateY(-15px) rotate(-45deg);
}

@media (max-width: 900px) {
  .features {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 0.5rem;
  }
  .hero {
    min-height: 260px;
    padding: 2.5rem 0 2rem 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.25rem;
  }
  .feature-card {
    padding: 1.25rem 1rem;
  }
  .blog-card {
    padding: 0;
  }
}

section.section.why-snapynotes {
  padding-bottom: 0;
}
section.section.why-snapynotes + .section {
  margin-top: 0;
}
section.section.why-snapynotes .container {
  max-width: 900px;
}
section.section.why-snapynotes p {
  text-align: center;
}
section.section.why-snapynotes ul {
  list-style: none;
  margin: 0;
  padding: 40px 0 0;
  display: flex;
  row-gap: 30px;
  column-gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
section.section.why-snapynotes ul li {
  width: calc(50% - 15px);
  background-image: url("images/check-box.svg");
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: 10px center;
  padding: 10px 15px 10px 50px;
  margin: 0;
  background-color: RGB(252, 242, 247);
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(168, 85, 247, 0.06);
  display: flex;
  align-items: center;
}
.clarity-stat h2.section-title {
  margin: 0 0 10px;
}
section.section.clarity-section ul li {
  padding: 0 0 10px;
}
section.section.clarity-section ul li:last-child {
  padding: 0;
}

.container.blog-detail-flex .blog-card {
  padding: 1.5rem 1.5rem;
}
@media screen and (max-width: 600px) {
  .container.blog-detail-flex .blog-card {
    padding: 1.25rem 1rem;
  }
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------- */

html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}
html {
  scroll-behavior: smooth;
}
.page-width {
  max-width: 1430px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  display: block;
}
.section.blog-listing-page * {
  font-family: "Inter", sans-serif;
}

/* ------------------------------------ HEADER CSS START ------------------------------------ */
header.header {
  background: #ffffff1a;
  box-shadow: 0px 4px 45px 0px #00000014;
  padding: 10px 0;
}
header.header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 3;
}
header.header .logo img {
  max-width: 102px;
  width: 100%;
}
header.header .nav-links {
  display: flex;
  gap: 3.8rem;
  align-items: center;
  transition: max-height 0.3s ease;
}
header.header .nav-links a {
  color: #000;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  font-family: "Urbanist", sans-serif;
  text-decoration: none;
  margin: 0;
}
header.header .nav-links a.btn-primary {
  display: inline-block;
  background: #5245e5;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  padding: 10.5px 29.5px;
  border: 0;
}

@media screen and (max-width: 768px) {
  header.header .nav-links {
    gap: 1rem;
  }
  header.header .logo img {
    max-width: 89px;
  }
}
/* ------------------------------------ HEADER CSS ENDS ------------------------------------ */

/* ------------------------------------ HERO BANNER CSS STARTS ------------------------------------ */
.banner-section {
  padding: 45px 0 0 0;
  background: #f8f8fb;
  position: relative;
  z-index: 1;
}
.banner-section:before {
  content: "";
  position: absolute;
  top: -89px;
  left: -55px;
  width: 315px;
  display: block;
  height: 315px;
  border-radius: 50%;
  background: #6f3eeb30;
  filter: blur(100px);
  z-index: -1;
}
.banner-section .page-width {
  max-width: 1667px;
  padding: 0 0 0 15px;
  margin: 0 0 0 auto;
}
.banner-section .banner-content {
  display: grid;
  gap: 60px;
  grid-template-columns: 626px auto;
  align-items: center;
  overflow: hidden;
}
.banner-section .laptop-mockup {
  margin: 0 -150px 0 28px;
}
.banner-section .content {
  margin: 0 0 120px;
}
.banner-section .badge span img {
  max-width: 105px;
  width: 100%;
  display: block;
  margin-right: 10px;
}
.banner-section .badge {
  display: inline-flex;
}
.banner-section .badge span {
  align-items: center;
  gap: 5px;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  display: flex;
  border: 1px solid #d7d7d7;
  border-radius: 100px;
  padding: 13.5px 25px 13.5px 13px;
  color: #3d3d3d;
  background: #fff;
}
.banner-section .headline {
  font-family: "Urbanist", sans-serif;
  font-weight: 800;
  font-size: 60px;
  line-height: 73px;
  letter-spacing: 0;
  margin: 20px 0 25px;
}
.banner-section .subtext {
  margin: 0 0 24px;
  color: #000000;
  max-width: 550px;
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 42px;
  letter-spacing: 0;
}
.banner-section .buttons {
  display: flex;
  gap: 10px;
}
.banner-section .btn {
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  padding: 14px 10px;
  border: none;
  gap: 10px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  max-width: 154px;
  width: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.banner-section .btn-primary {
  background: #5245e5;
  color: white;
  max-width: 176px;
}
.banner-section .btn-secondary {
  background: transparent;
  color: #5245e5;
  border: 2px solid #5245e5;
  padding: 13px 16px;
  padding: 13.5px 16px;
  max-width: 190px;
}
.banner-section .laptop-mockup img.laptop {
  width: 100%;
  max-width: 100%;
  display: block;
}

@media screen and (max-width: 1200px) {
  .banner-section .banner-content {
    grid-template-columns: 1fr 1fr;
  }
  .banner-section .content {
    margin: 0 0;
  }
  .banner-section .headline {
    font-size: 46px;
    line-height: 1;
  }
  .banner-section .subtext {
    font-size: 22px;
    line-height: 1.2;
  }
  .banner-section .badge span {
    font-size: 14px;
    padding: 12px 15px;
  }
  .banner-section .badge span img {
    max-width: 90px;
  }
}
@media screen and (max-width: 1024px) {
  .banner-section .badge span {
    font-size: 12px;
    padding: 12px 15px;
    gap: 5px;
  }
  .banner-section:before {
    left: 0;
    width: 215px;
    height: 315px;
  }
}
@media screen and (max-width: 768px) {
  .banner-section .banner-content {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 30px;
  }
  .banner-section:before {
    left: -70px;
    top: -59px;
  }
  .banner-section .page-width {
    padding: 0 15px;
    margin: 0 auto;
  }
  .banner-section .laptop-mockup {
    margin: 0;
  }
  .banner-section .headline {
    font-size: 36px;
  }
  .banner-section .subtext {
    font-size: 18px;
    margin: 0 0 20px;
  }
  .banner-section .badge span {
    font-size: 12px;
    padding: 8px 12px;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .banner-section .buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 435px) {
  .banner-section .btn {
    max-width: 100%;
  }
}
/* ------------------------------------ HERO BANNER CSS ENDS ------------------------------------ */

/* ------------------------------------ FEATURES SECTION CSS STARTS ------------------------------------ */
.features-section {
  padding-top: 75px;
  padding-bottom: 100px;
  background-color: #f8f8fb;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
section.features-section:after {
  content: "";
  position: absolute;
  width: 315px;
  background: #fff9db;
  height: 315px;
  filter: blur(150px);
  top: 0;
  right: -64px;
  border-radius: 50%;
  z-index: -1;
}
section.features-section:before {
  content: "";
  position: absolute;
  width: 669px;
  height: 669px;
  background: #ebe9ff;
  filter: blur(300px);
  top: auto;
  bottom: 0;
  left: 95px;
  border-radius: 50%;
  z-index: -1;
}
.features-section .section-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 46px;
  letter-spacing: 0;
  text-align: center;
  margin: 0;
}
.features-section .section-description {
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  text-align: center;
  margin: 0 auto;
  max-width: 1110px;
  padding: 21px 0 40px;
}
.features-section .features-information {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.features-section .features-info {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 15px;
  padding: 50px 49px 50px 50px;
  width: calc(33.33% - 20px);
}
.features-section .features-info img {
  max-width: 100%;
  padding-bottom: 20px;
}
.features-section .features-info p {
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 42px;
  letter-spacing: 0;
  max-width: 347px;
  width: 100%;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .features-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .features-section .section-description {
    max-width: 680px;
    padding: 20px 0 30px;
  }
  .features-section .features-info {
    border-radius: 15px;
    padding: 20px;
  }
  .features-section .section-title {
    font-size: 34px;
    line-height: 40px;
  }
  .features-section .features-info p {
    font-size: 22px;
    line-height: 32px;
  }
  section.features-section:before {
    width: 369px;
    height: 369px;
    left: 0;
  }
}
@media screen and (max-width: 991px) {
  .features-section .features-info {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 767px) {
  .features-section {
    padding-bottom: 60px;
  }
  .features-section .section-title {
    font-size: 28px;
    line-height: 36px;
  }
  .features-section .section-description {
    max-width: 100%;
    padding: 15px 0 30px;
    font-size: 16px;
    line-height: 24px;
  }
  .features-section .features-information {
    gap: 20px;
  }
  .features-section .features-info {
    width: 100%;
  }
  .features-section .features-info p {
    font-size: 18px;
    line-height: 26px;
  }
  .features-section .features-info img {
    max-width: 70px;
    padding-bottom: 15px;
  }
}
/* ------------------------------------ FEATURES SECTION CSS ENDS ------------------------------------ */

/* ------------------------------------ HOW IT WORKS SECTION CSS STARTS ------------------------------------ */
.how-it-works {
  background-color: #f8f8fb;
}
.how-it-works h2 {
  margin-top: 0;
  margin-bottom: 55px;
  color: #000;
  font-family: Urbanist;
  font-weight: 800;
  font-size: 38px;
  line-height: 46px;
  letter-spacing: 0;
  text-align: center;
}
.how-it-works .page-width {
  max-width: 1745px;
  padding: 0 15px;
  margin: 0 auto;
  text-align: center;
}
.how-it-works .steps {
  grid-template-columns: 1fr 1fr 1fr;
  display: grid;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  gap: 50px;
}
.how-it-works .step:nth-child(2) p {
  transform: rotate(-3deg);
  margin: 30px 0 0;
}
.how-it-works .step:nth-child(3) h3 {
  transform: rotate(3deg);
}
.how-it-works .step:nth-child(3) p {
  transform: rotate(3deg);
  margin: 20px 20px 0 -30px;
  padding: 0 10px;
}
.how-it-works .number {
  font-family: "UnifrakturMaguntia", cursive;
  font-weight: 400;
  font-size: 76px;
  line-height: 100%;
  letter-spacing: 0;
  color: transparent;
  text-align: end;
  -webkit-text-stroke: 1px #00000026;
  background: transparent;
  margin: 0;
}
.how-it-works .work-background-design {
  position: relative;
  z-index: 1;
}
.how-it-works .work-background-design:after {
  content: "";
  display: block;
  background-image: url(images/background-design.png);
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 60%;
  transform: translate(0, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
}
.how-it-works .step h3 {
  margin: 0 0 12px 0;
  font-family: "Shadows Into Light", cursive;
  font-weight: 400;
  font-size: 46px;
  line-height: 42px;
  letter-spacing: 0;
  text-align: center;
}
.how-it-works .step1 h3 {
  rotate: 3.36deg;
  margin: 0 0 37px;
}
.how-it-works .step p {
  margin: 0;
  color: #000000;
  font-family: "Architects Daughter", cursive;
  font-weight: 400;
  font-size: 26px;
  text-align: center;
  letter-spacing: 0;
}
.how-it-works .step {
  border-radius: 8px;
  position: relative;
  text-align: left;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.how-it-works .step1 {
  background-image: url(/images/first-note.png);
  padding: 67px 53px 124px 64px;
}
.how-it-works .step2 {
  background-image: url(/images/second-note.png);
  padding: 32px 53px 76px 54px;
}
.how-it-works .step3 {
  background-image: url(/images/third-note.png);
  padding: 71px 21px 88px 45px;
}

@media screen and (max-width: 1200px) {
  .how-it-works .steps {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
  .how-it-works .step h3 {
    font-size: 32px;
    line-height: 37px;
  }
  .how-it-works .step p {
    font-size: 22px;
    line-height: 1;
  }
  .how-it-works .number {
    font-size: 56px;
  }
  .how-it-works h2 {
    font-size: 34px;
    line-height: 40px;
  }
  .how-it-works .step1 h3 {
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 991px) {
  .how-it-works .steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 0 40px;
  }
  .how-it-works .work-background-design:after {
    display: none;
  }
  .how-it-works .step {
    max-width: calc(50% - 20px);
    width: 100%;
  }
  .how-it-works .step:nth-child(3) p {
    margin: 20px 40px 0 0;
    padding: 0;
  }
  .how-it-works .step:nth-child(3) h3 {
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .how-it-works .step {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .how-it-works h2 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 680px) {
  .how-it-works .step {
    max-width: 345px;
  }
  .how-it-works .steps {
    padding: 0 15px;
  }
  .how-it-works .step1 {
    padding: 67px 43px 124px 44px;
  }
  .how-it-works .step:nth-child(2) p {
    margin: 20px 0 0;
  }
  .how-it-works .step h3 {
    font-size: 30px;
    line-height: 36px;
  }
  .how-it-works .step p {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .how-it-works .step {
    max-width: 100%;
  }
}
/* ------------------------------------ HOW IT WORKS SECTION CSS ENDS ------------------------------------ */

/* ------------------------------------ IMAGE WITH TEXT SECTION CSS STARTS ------------------------------------ */
.image-with-text {
  padding: 100px 0;
  background: #f8f8fb;
  position: relative;
  z-index: 1;
}
.image-with-text:after {
  content: "";
  position: absolute;
  background: #fff9db;
  filter: blur(300px);
  height: 669px;
  width: 669px;
  bottom: -300px;
  right: 0;
  z-index: -1;
}
.image-with-text .image img {
  display: flex;
  border-radius: 20px;
  max-width: 100%;
}
.image-with-text .section-title {
  text-align: center;
  margin-bottom: 50px;
}
.image-with-text .section-title h2 {
  color: #000;
  font-size: 38px;
  line-height: 46px;
  font-weight: 800;
  letter-spacing: 0;
  font-family: "Urbanist", sans-serif;
  margin: 0;
}
.image-with-text .image-text-content {
  display: flex;
  align-items: center;
  gap: 75px;
}
.image-with-text .image-text-content .image {
  width: calc(49.2% - 37.5px);
}
.image-with-text .image-text-content .content {
  width: calc(50.8% - 37.5px);
  position: relative;
  z-index: 1;
}
.image-with-text .features-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 45px;
}
.image-with-text .features-list:last-child {
  margin-bottom: 0;
}
.image-with-text .features-list .icon img {
  display: flex;
  max-width: 100%;
}
.image-with-text .features-list .icon {
  width: 100%;
  min-width: 53px;
  max-width: 53px;
}
.image-with-text .features-list p {
  margin: 0 0 3px 0;
  color: #3d3d3d;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 0;
  font-family: "Urbanist", sans-serif;
}
.image-with-text .features-list h3 {
  margin: 0;
  color: #000;
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0;
  font-family: "Urbanist", sans-serif;
}

@media screen and (max-width: 1024px) {
  .image-with-text {
    padding: 70px 0;
  }
  .image-with-text .section-title h2 {
    font-size: 34px;
    line-height: 40px;
  }
  .image-with-text .features-list {
    margin-bottom: 30px;
  }
  .image-with-text .image-text-content {
    gap: 30px;
  }
  .image-with-text .image-text-content .image {
    width: calc(49.2% - 15px);
  }
  .image-with-text .image-text-content .content {
    width: calc(50.8% - 15px);
  }
  .image-with-text .features-list .icon {
    min-width: 40px;
    max-width: 40px;
  }
  .image-with-text .features-list h3 {
    font-size: 20px;
    line-height: 28px;
  }
  .image-with-text .features-list p {
    line-height: 20px;
  }
  .image-with-text:after {
    height: 369px;
    width: 369px;
    bottom: -150px;
  }
}
@media screen and (max-width: 767px) {
  .image-with-text {
    padding: 60px 0;
  }
  .image-with-text .section-title h2 {
    font-size: 28px;
    line-height: 36px;
    padding: 0 10px;
  }
  .image-with-text:after {
    height: 300px;
    width: 300px;
    filter: blur(150px);
  }
  .image-with-text .features-list p {
    line-height: 18px;
    font-size: 14px;
  }
  .image-with-text .section-title {
    margin-bottom: 30px;
  }
  .image-with-text .features-list {
    margin-bottom: 20px;
    gap: 15px;
  }
  .image-with-text .image-text-content {
    flex-direction: column;
  }
  .image-with-text .image-text-content .content,
  .image-with-text .image-text-content .image {
    width: 100%;
  }
  .image-with-text .image img {
    margin: 0 auto;
  }
}
/* ------------------------------------ IMAGE WITH TEXT SECTION CSS ENDS ------------------------------------ */

/* ------------------------------------ VIDEO SECTION CSS STARTS ------------------------------------ */
.video-section .section-title h2 {
  color: #000;
  font-size: 38px;
  line-height: 46px;
  font-weight: 800;
  letter-spacing: 0;
  font-family: "Urbanist", sans-serif;
  margin: 0;
}
.video-section .section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.video-section {
  background: #f8f8fb;
}
.video-section .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 10px;
  z-index: 3;
}
.video-section .play-button:not(.playing)::before {
  content: "";
  width: 80px;
  height: 80px;
  background: url(../images/play-button.png);
  background-repeat: no-repeat;
  background-position: center center;
}
.video-section video {
  height: 100%;
  width: 100%;
}
.video-section .video-banner-aspect-ratio {
  position: relative;
  width: 100%;
  padding-top: 51%;
  overflow: hidden;
  border-radius: 15px;
}
.video-section .video-banner-aspect-ratio .video-banner,
.video-section .video-banner-aspect-ratio .video-poster-overlay,
.video-section .video-banner-aspect-ratio .video-play-pause {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px;
}
.video-section .video-banner {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}
.video-section .video-poster-overlay {
  background-color: black;
  z-index: 1;
}
.video-section .video-poster-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.video-section img.video-live-image {
  position: absolute;
  top: -60px;
  left: -95px;
  z-index: 5;
}
.video-section .video-play-pause {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video-section .video-banner-wrap {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1600px) {
  .video-section img.video-live-image {
    top: -40px;
    left: -10px;
  }
}
@media screen and (max-width: 1024px) {
  .video-section .section-title h2 {
    font-size: 34px;
    line-height: 40px;
  }
  .video-section img.video-live-image {
    width: 100%;
    max-width: 130px;
  }
}
@media screen and (max-width: 767px) {
  .video-section .section-title h2 {
    font-size: 28px;
    line-height: 36px;
    padding: 0 10px;
  }
  .video-section .section-title {
    margin-bottom: 30px;
  }
  .video-section img.video-live-image {
    top: -40px;
    left: -10px;
    width: 100px;
  }
  .video-section .expertise-information,
  .video-section .video-banner-aspect-ratio {
    width: 100%;
  }
  .video-section .video-banner-wrap .video-play-pause svg {
    max-width: 84px;
    width: 100%;
    height: 84px;
  }
  .video-section .video-banner-aspect-ratio {
    padding-top: 100%;
  }
  .video-section .video-poster-image {
    display: none;
  }
  .video-section img.video-mobile-poster-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .video-section .video-mobile-poster-image {
    display: none;
  }
}
/* ------------------------------------ VIDEO SECTION CSS ENDS ------------------------------------ */

/* ------------------------------------ TESTIMONIAL SECTION CSS STARTS ------------------------------------ */
.testimonial-section {
  padding: 100px 0;
  background: #f8f8fb;
}
.testimonial-section .swiper-button-next:after,
.testimonial-section .swiper-button-prev:after {
  display: none;
}
.testimonial-section .swiper-button-next,
.testimonial-section .swiper-button-prev {
  background-image: url(../images/arrows.svg);
  width: 60px;
  height: 11px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
  position: absolute;
  top: auto;
  bottom: 0;
}
.testimonial-section .swiper.testimonial-mySwiper {
  padding-bottom: 45px;
}
.testimonial-section .swiper-button-prev {
  transform: rotate(180deg);
  left: calc(50% - 73px);
}
.testimonial-section .swiper-button-next {
  right: calc(50% - 72px);
}
.testimonial-section .swiper.testimonial-mySwiper .swiper-slide {
  display: flex;
  height: auto;
  flex-direction: column;
}
.testimonial-section .testimonial-box {
  background: #fff;
  box-shadow: 0px 0px 25px 0px #0000000d;
  border-radius: 15px;
  padding: 20px 20px 85px 20px;
  height: 100%;
}
.testimonial-section .testimonial-box img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: flex;
}
.testimonial-section .testimonial-box h5 {
  margin: 13px 0 8px 0;
  color: #000;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 0;
  font-family: "Urbanist", sans-serif;
}
.testimonial-section .testimonial-box p {
  margin: 6px 0 0 0;
  color: #000;
  font-size: 14px;
  line-height: 26px;
  font-weight: 500;
  letter-spacing: 0;
  font-family: "Urbanist", sans-serif;
}
.testimonial-section .section-title {
  text-align: center;
  margin-bottom: 35px;
}
.testimonial-section .section-title h2 {
  color: #000;
  font-size: 38px;
  line-height: 46px;
  font-weight: 800;
  letter-spacing: 0;
  font-family: "Urbanist", sans-serif;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .testimonial-section {
    padding: 70px 0;
  }
  .testimonial-section .section-title h2 {
    font-size: 34px;
    line-height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .testimonial-section {
    padding: 60px 0;
  }
  .testimonial-section .section-title h2 {
    font-size: 28px;
    line-height: 36px;
  }
  .testimonial-section .section-title {
    margin-bottom: 30px;
  }
  .testimonial-section .swiper.testimonial-mySwiper {
    padding-bottom: 35px;
  }
  .testimonial-section .testimonial-box {
    padding: 20px 20px 50px 20px;
  }
  .testimonial-section .testimonial-box h5,
  .testimonial-section .testimonial-box p {
    line-height: 22px;
  }
}
/* ------------------------------------ TESTIMONIAL SECTION CSS ENDS ------------------------------------ */

/* ------------------------------------ CALL TO ACTION SECTION CSS STARTS ------------------------------------ */
.call-to-action {
  padding: 0;
  background: #f8f8fb;
  /* margin-bottom: 50px; */
}
.call-to-action .information-block {
  background: #5245e5;
  border-radius: 25px;
  padding: 73px 121px 53px 71px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.call-to-action .section-title h2 {
  margin: 0 0 8px 0;
  color: #fff;
  font-size: 38px;
  line-height: 46px;
  font-weight: 800;
  letter-spacing: 0;
  font-family: "Urbanist", sans-serif;
  width: 90%;
}
.call-to-action .section-title p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  letter-spacing: 0;
  font-family: "Urbanist", sans-serif;
}
.call-to-action .information-block .section-title {
  width: calc(50% - 15px);
  text-align: left;
}
.call-to-action .information-block .button-block {
  width: calc(50% - 15px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  max-width: 193px;
  margin-top: 16px;
}
.call-to-action .button-block a {
  margin: 0;
  color: #5245e5;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 0;
  font-family: "Urbanist", sans-serif;
  text-decoration: none;
  border-radius: 8px;
  background: #fff;
  display: block;
  padding: 12.5px 10px;
  width: 100%;
}
.call-to-action .button-block h3 {
  margin: 4px 0 0 0;
  color: #fff;
  font-size: 26px;
  line-height: 34px;
  font-weight: 700;
  letter-spacing: 0;
  font-family: "Urbanist", sans-serif;
}

@media screen and (max-width: 1024px) {
  .call-to-action .section-title h2 {
    font-size: 34px;
    line-height: 40px;
  }
  .call-to-action .information-block {
    padding: 73px 30px 53px 30px;
  }
  .call-to-action .button-block h3 {
    font-size: 22px;
    line-height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .call-to-action .section-title h2 {
    font-size: 28px;
    line-height: 36px;
  }
  .call-to-action .section-title p {
    font-size: 16px;
    line-height: 22px;
  }
  .call-to-action .information-block {
    flex-direction: column;
    padding: 30px;
  }
  .call-to-action .information-block .section-title {
    width: 100%;
    margin: 0;
  }
  .call-to-action .information-block .button-block {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }
  .call-to-action .button-block h3 {
    font-size: 20px;
    line-height: 28px;
    margin: 15px 0 0 0;
  }
}
/* ------------------------------------ CALL TO ACTION SECTION CSS ENDS ------------------------------------ */

/* ------------------------------------ ACCORDION SECTION CSS STARTS ------------------------------------ */
.accordion-section {
  padding: 100px 0;
  background: #f8f8fb;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.accordion-section .section-title {
  text-align: center;
  margin: 0;
}
.accordion-section:before {
  content: "";
  position: absolute;
  background: #fff9db;
  filter: blur(200px);
  height: 669px;
  width: 669px;
  bottom: -295px;
  left: -338px;
  z-index: -1;
}
.accordion-section .accordion-box.active h6.accordion-header {
  padding-bottom: 15px;
}
.accordion-section .accordion-content p {
  margin: 0;
  color: #000;
  font-size: 14px;
  line-height: 26px;
  font-weight: 500;
  letter-spacing: 0;
  font-family: "Urbanist", sans-serif;
  width: 90%;
}
.accordion-section .section-title h2 {
  color: #000;
  font-size: 38px;
  line-height: 46px;
  font-weight: 800;
  letter-spacing: 0;
  font-family: "Urbanist", sans-serif;
  margin: 0;
}
.accordion-section .accordion-container {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: space-between;
  gap: 80px;
}
.accordion-section .accordion-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  margin: 0 0 0 auto;
}
.accordion-section .accordion-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 25px 0px #0000000d;
  overflow: hidden;
  transition: all 0.3s ease;
}
.accordion-section .accordion-header {
  gap: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin: 0 24px 0 20px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  color: #000;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  letter-spacing: 0;
  font-family: "Urbanist", sans-serif;
}
.accordion-section .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.accordion-section .accordion-box.active .accordion-content {
  max-height: 300px;
}
.accordion-section .accordion-content p{
  margin: 0 22px 20px;
  padding: 15px 0 0;
  border-top: 1px solid #8e8e8e80;
  width: auto;
}
.accordion-section .accordion-header svg {
  transition: transform 0.3s ease;
  width: 100%;
  min-width: 20px;
  max-width: 20px;
}
.accordion-section .accordion-box.active svg path {
  fill: #5245e5;
}
.accordion-section .accordion-box.active svg {
  transform: rotate(90deg);
}
.accordion-section .vertical-line {
  transition: opacity 0.3s ease;
}
.accordion-section .accordion-box.active .vertical-line {
  opacity: 0;
}

@media screen and (max-width: 1024px) {
  .accordion-section {
    padding: 70px 0;
  }
  .accordion-section .section-title h2 {
    font-size: 34px;
    line-height: 40px;
  }
  .accordion-section .accordion-container {
    grid-template-columns: 195px 1fr;
    gap:50px;
  }
}
@media screen and (max-width: 767px) {
  .accordion-section {
    padding: 60px 0;
  }
  .accordion-section:before {
    filter: blur(300px);
  }
  .accordion-section .section-title h2 {
    font-size: 28px;
    line-height: 36px;
  }
  .accordion-section .section-title {
    text-align: center;
  }
  .accordion-section .accordion-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .accordion-section .accordion-header {
    padding: 15px 0;
    margin: 0 15px 0 15px;
    line-height: 22px;
  }
  .accordion-section .accordion-box.active h6.accordion-header {
    padding-bottom: 10px;
  }
  .accordion-section .accordion-box.active .accordion-content {
    padding: 0;
  }
  .accordion-section .accordion-content p {
    padding: 15px 0;
    margin: 0 15px 0 15px;
    line-height: 22px;
  }
}
/* ------------------------------------ ACCORDION SECTION CSS ENDS ------------------------------------ */

/* ------------------------------------ FOOTER CSS STARTS ------------------------------------ */
footer.footer {
  text-align: center;
  background: #333333;
  color: #fff;
  padding: 23px 0;
}
footer.footer p {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 0;
  font-family: "Urbanist", sans-serif;
}

@media screen and (max-width: 767px) {
  footer.footer p {
    font-size: 14px;
    line-height: 18px;
  }
  footer.footer {
    padding: 16px 0;
  }
}
/* ------------------------------------ FOOTER CSS ENDS ------------------------------------ */
