section {
  transition:
    transform 1s ease-out,
    opacity 1s ease-out;
  transform: translateY(50px);
  opacity: 0;
}
.visible {
  transform: translateY(0px);
  opacity: 1;
}
.pillar-section,
.three-card-section,
.three-image-section,
.two-image-section,
.three-tag-section,
.cta-section {
  margin: 14rem 0;
}
.logo img {
  height: 40px;
}
.header-content {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 200;
}
.hamburger .bar {
  width: 25px;
  height: 3px;
  background: #141414;
  display: block;
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 1024px) {
  .header-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .header-content.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .hamburger {
    display: flex;
    z-index: 200;
  }
}

.header-upper {
  background: #420bdb;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 2;
}
.header-upper-wrapper p {
  padding: 1rem;
  color: #fff;
  margin: 0;
}
.logo img {
  max-width: 60px;
  max-height: 60px;
}
.header-upper-cta {
  display: flex;
  align-items: center;
}
.header-upper-cta p {
  cursor: pointer;
  margin: 0;
  padding-left: 4rem;
}
.header-upper-cta img {
  width: 12px;
  height: 12px;
}
.header-upper-wrapper {
  align-items: center;
  display: flex;
  justify-content: center;
}
.header-text {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.header-text img {
  width: 35px;
  height: 35px;
}
nav {
  padding: 2rem 1rem;
  position: relative;
  z-index: 1;
}
header {
  background: #fff;
  box-shadow: 0 0 7px #573bd34d;
  left: 0;
  margin-top: 5.5rem;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 11;
}
.header {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.header-content {
  display: flex;
  gap: 6rem;
  justify-content: center;
}
.header-content li p {
  cursor: pointer;
}
.header-content li p:hover {
  color: #351ccb;
}
.book-demo {
  cursor: pointer;
  font-size: 2.3rem;
  line-height: 150%;
  font-family: "work-sans-regular", sans-serif;
  background: #5418f9;
  color: #fff;
  border-radius: 32px;
  padding: 2rem 4rem;
}
.book-demo:hover {
  color: white;
}


/*Banner section*/
.banner-section {
  margin-top: 30rem;
}
.banner-section::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 20%;
  width: 340px;
  height: 400px;
  background: #bdb4fe;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
}
@media (max-width: 400px) {
  .banner-section::before {
    width: 240px;
  }
}
.banner-section::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 30%;
  width: 300px;
  height: 300px;
  background: #f1a7a7;
  border-radius: 0;
  filter: blur(187px);
  z-index: 0;
}
.banner-section .third-gradient {
  position: absolute;
  top: 20%;
  left: 60%;
  width: 350px;
  height: 350px;
  background: #f6eeca;
  border-radius: 50%;
  filter: blur(187px);
  z-index: 0;
}
.banner-wrapper {
  position: relative;
  z-index: 1;
}
.banner-wrapper {
  gap: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.banner-tag {
  cursor: pointer;
  margin-bottom: 2.3rem;
  background: #edeffc;
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 999px;
  align-items: center;
}
.banner-tag span {
  padding: 2px 6px;
  border-radius: 12px;
  background-color: #6938ef;
  color: #fff;
  font-size: 12px;
}
.banner-tag p {
  width: 100% !important;
  text-align: center;
  color: #6938ef;
  font-size: 12px !important;
  margin-bottom: 0;
}
.banner-wrapper h1 {
  text-align: center;
  width: 60%;
}
.banner-wrapper p {
  font-size: 3rem;
  width: 90%;
  text-align: center;
}
@media (max-width: 767px) {
  .banner-wrapper h1,
  .banner-wrapper p {
    width: 100%;
  }
}
.banner-button {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
.banner-button a:first-child {
  cursor: pointer;
  text-decoration: none;
  font-size: 2.3rem;
  line-height: 150%;
  font-family: "work-sans-regular", sans-serif;
  background: #5418f9;
  color: #fff;
  border-radius: 32px;
  padding: 2rem 6rem;
}
.banner-button a:last-child {
  cursor: pointer;
  text-decoration: none;
  font-size: 2.3rem;
  line-height: 150%;
  font-family: "work-sans-regular", sans-serif;
  background: #fff;
  color: #5418f9;
  border: 1px solid #5418f9;
  border-radius: 32px;
  padding: 2rem 5rem;
}
@media (max-width: 1024px) {
  .header-upper {
    display: none;
  }

  header {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .banner-section {
    margin-top: 24rem;
  }
}
@media (max-width: 400px) {
  .banner-button a:last-child {
    padding: 2rem 1rem;
  }

  .banner-button a:first-child {
    padding: 2rem 1.5rem;
  }
}


/*Pillar section*/
.pillar-heading {
  gap: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-tag {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.pillar-card {
  position: relative;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-left: 1px dashed #e3e3e3;
}
.pillar-card::before {
  content: "";
  position: absolute;
  top: 110px;
  bottom: 0;
  left: -2.5px;
  height: 35px;
  width: 4px;
  border-radius: 2px;
  background-color: #6938ef;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .pillar-card::before {
    top: 100px;
    height: 20px;
  }
}
.pillar-card h3 {
  margin-bottom: 0;
}
.pillar-div {
  padding-top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
.statement-div {
  padding: 6rem 2rem;
  border-radius: 20px;
  margin-top: 10rem;
  border: 2px solid #395ed3;
}
.statement-div div {
  gap: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.statement-div h3 {
  font-family: "work-sans-regular", sans-serif;
  width: 80%;
  text-align: center;
}
@media (max-width: 1024px) {
  .statement-div h3 {
    width: 90%;
  }
}
@media (max-width: 768px) {
  .statement-div h3 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .pillar-wrapper {
    gap: 6rem;
  }
}
.statement-div p {
  font-size: 3rem;
  text-align: center;
  color: #351ccb;
}
.big-quotes {
  font-size: 1.5em;
}
.section-tag p {
  letter-spacing: 2px;
  color: #6938ef;
}


/*Card section*/
.three-card-heading {
  gap: 1rem;
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
}
.card-text-div {
  gap: 2rem;
  display: flex;
  flex-direction: column;
}
.card-heading-div {
  width: 80%;
  min-height: 300px;
}
@media (max-width: 1024px) {
  .card-heading-div {
    width: 100%;
    min-height: 200px;
  }
}
@media (max-width: 768px) {
  .card-heading-div {
    min-height: 140px;
  }
}
.card-heading-div h3 {
  font-size: 4rem;
}
.card-wrapper {
  height: 100%;
  cursor: pointer;
  border: 1px solid #e5e3e3;
  border-radius: 16px;
  box-shadow: 0px 24px 64px 0px #d9d9d97a;
  padding: 4rem;
  position: relative;
  overflow: hidden;
  background: white;
}
.card-wrapper::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -90%;
  width: 115%;
  height: 95%;
  border-radius: 50%;
  opacity: 0.4;
  z-index: 0;
  filter: blur(40px);
  transition: opacity 0.3s ease;
}
.three-card-wrapper .col-12:nth-child(1) .card-wrapper::before {
  background: radial-gradient(
    circle,
    #8b5cf6 0%,
    #fce7f6 70%,
    transparent 100%
  );
}
.three-card-wrapper .col-12:nth-child(2) .card-wrapper::before {
  background: radial-gradient(
    circle,
    #4f46e5 0%,
    #d9d6fe 70%,
    transparent 100%
  );
}
.three-card-wrapper .col-12:nth-child(3) .card-wrapper::before {
  background: radial-gradient(
    circle,
    #f59e0b 0%,
    #ffe4e8 70%,
    transparent 100%
  );
}
.card-button-div {
  align-items: center;
  gap: 2rem;
  display: flex;
}
.arrow-div {
  display: flex;
  align-items: center;
  background: white;
  padding: 1rem;
  border: 1px solid #e1e1e1;
  border-radius: 999px;
}
.card-button-div p {
  opacity: 0;
  transform: translateX(-20px);
  color: white;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  pointer-events: none;
}
.card-wrapper:hover .arrow-div {
  background: #101828;
}
.card-wrapper:hover .card-button-div p {
  opacity: 1;
  transform: translateX(0);
  cursor: pointer;
  pointer-events: auto;
}
.arrow-div svg path {
  transition: fill 0.3s ease;
}
.arrow-div:hover {
  cursor: pointer;
  background: #101828;
}
.card-wrapper:hover:hover svg path {
  fill: white;
}
.card-button-div p {
  font-size: 16px;
  color: #141414;
  margin-bottom: 0;
}
.three-card-wrapper {
  padding-top: 6rem;
}
@media (max-width: 767px) {
  .three-card-wrapper {
    gap: 2rem;
  }
}

/*Three card image wrapper*/
.three-image-heading {
  gap: 1rem;
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
}
.three-image-wrapper {
  padding-top: 6rem;
}
@media (max-width: 767px) {
  .three-image-wrapper {
    gap: 6rem;
  }
}
.image-card-button-div {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.image-card-button-div p {
  margin-bottom: 0;
}
.image-card-text-div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 4rem;
}
.image-card-button-div h3,
.image-card-button-div p {
  margin-bottom: 0;
}
.image-card-button-div p {
  font-size: 16px;
  color: #141414;
}
.three-image-card-wrapper {
  height: 100%;
  cursor: pointer;
  border-radius: 12px;
}
.three-image-card-wrapper:hover .arrow-div-explore {
  background: #101828;
}
.three-image-card-wrapper:hover:hover svg path {
  fill: white;
}
.image-card-button-div p {
  opacity: 0;
  transform: translateX(-20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  pointer-events: none;
}
.three-image-card-wrapper:hover .image-card-button-div p {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.arrow-div-explore {
  display: flex;
  align-items: center;
  border: 1px solid #e1e1e1;
  background: #fff;
  padding: 1rem;
  border-radius: 999px;
}
.card-image-div {
  max-height: 280px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .card-image-div {
    max-height: 210px;
  }
}
@media (max-width: 768px) {
  .card-image-div {
    max-height: 165px;
  }
}
.three-image-card-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 12px 12px 0 0;
  display: block;
}


/*Two card image section*/
.two-image-section {
  padding: 8rem 0;
  background: rgba(247, 246, 255, 0.7);
}
.two-image-heading {
  gap: 1rem;
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.two-image-wrapper {
  padding-top: 6rem;
}
@media (max-width: 767px) {
  .two-image-wrapper {
    gap: 6rem;
  }
}
.two-card-text-div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255, 255, 255, 1);
  padding: 4rem;
}
.two-card-image-div img {
  border-radius: 12px 12px 0 0;
}
.two-card-text-div h3 {
  color: #022557;
}
.arrow-right-div {
  display: flex;
  align-items: center;
  border-radius: 999px;
  padding: 1rem;
  background: #fff;
  border: 1px solid #e1e1e1;
}
.arrow-card-right-div {
  display: flex;
  justify-content: end;
}
.two-image-card-wrapper {
  background: #fff;
  height: 100%;
  cursor: pointer;
  border-radius: 12px;
}
.two-image-card-wrapper:hover:hover svg path {
  fill: white;
}
.two-image-card-wrapper:hover .arrow-right-div {
  background: #101828;
}


/*three-tag-section*/
.three-tag-heading {
  gap: 1rem;
  display: flex;
  text-align: center;
  align-items: center;
  flex-direction: column;
}
.three-tag-wrapper {
  padding-top: 6rem;
}
@media (max-width: 767px) {
  .three-tag-wrapper {
    gap: 6rem;
  }
}
.card-tag-div img {
  border-radius: 12px;
}
.three-tag-text-div {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.arrow-div-tag {
  border: 1px solid #e1e1e1;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 1rem;
  border-radius: 999px;
}
.three-tag-button-div {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.three-tag-wrapper-card {
  height: 100%;
  cursor: pointer;
}
.three-tag-button-div p {
  opacity: 0;
  transform: translateX(-20px);
  margin-bottom: 0;
  font-size: 16px;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  pointer-events: none;
}
.three-tag-wrapper-card:hover .three-tag-button-div p {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.three-tag-wrapper-card:hover:hover svg path {
  fill: white;
}
.three-tag-wrapper-card:hover .arrow-div-tag {
  background: #101828;
}
.card-tag-div {
  position: relative;
}
.card-tag-div img {
  width: 100%;
  height: 320px;
  display: block;
}
@media (max-width: 1024px) {
  .card-tag-div img {
    height: 250px;
  }
}
@media (max-width: 768px) {
  .card-tag-div img {
    height: 170px;
  }
}
@media (max-width: 500px) {
  .card-tag-div img {
    height: 230px;
  }
}
.image-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: white;
  color: black;
  font-size: 16px;
  font-weight: bold;
  padding: 1rem 0.5rem;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  .image-tag {
    font-size: 12px;
  }
}


/*cta section*/
.cta-heading {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 1rem;
}

.section-tag p {
  font-size: 2.3rem !important;
  line-height: 150%;
  margin: 0 0 1rem;
  font-family: "work-sans-regular", sans-serif;
  width: 100% !important;
}
.cta-heading p {
  width: 80%;
  font-size: 3rem;
}
.cta-btn {
  cursor: pointer;
  margin-top: 2rem;
  text-decoration: none;
  font-size: 2.3rem;
  line-height: 150%;
  font-family: "work-sans-regular", sans-serif;
  background: #5418f9;
  color: #fff;
  border-radius: 32px;
  padding: 2rem 6rem;
}
.cta-btn:hover {
  color: #fff;
}


/*Footer*/
footer {
  background: linear-gradient(94.04deg, #5418f9 0%, #713efe 100.61%);
}
.footer-wrapper {
  padding: 7rem 0 5rem 0;
}
.footer-text {
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 5rem;
}
.footer-linkers {
  row-gap: 7rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid #fff;
}
.footer-link-wrapper h2 {
  margin-bottom: 0;
  font-size: 2.8rem;
  color: #fff;
}
@media (max-width: 767px) {
  .footer-linkers {
    border-bottom: none;
  }
}
.footer-link-wrapper {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer-link {
  padding-bottom: 0.5rem;
}
.footer-link p {
  color: #fff;
}
.footer-text p {
  color: #fff;
}
.more-about-div {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 2rem;
}
.more-about-div p {
  margin-bottom: 0;
}
.yellow-div {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffd700;
}
.logo-wrapper {
  margin-top: 1rem;
  display: flex;
  gap: 2rem;
}
.footer-div {
  padding-bottom: 6rem;
}
.footer-desc {
  width: 60%;
}
.footer-second-div p {
  color: white;
}
.footer-second-div {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
}
.footer-links {
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .logo-wrapper div a img {
    width: 30px;
    height: 30px;
  }
  .cta-heading p {
    width: 100%;
  }
  .image-tag {
    font-size: 8px;
  }
}
@media (max-width: 767px) {
  .pillar-heading,
  .three-card-heading,
  .three-image-heading,
  .two-image-heading,
  .three-tag-heading {
    text-align: left;
    align-items: start;
  }
  .footer-second-div {
    gap: 1rem;
    flex-direction: column;
  }
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-desc {
    width: 100%;
  }
}
