@font-face {
  font-family: Denton;
  src: url("../fonts/Denton\ Test\ Regular\ 400.otf");
}

@font-face {
  font-family: Denton;
  src: url("../fonts/Denton\ Test\ Black\ 900.otf");
  font-weight: bold;
}

:root {
  --stone-grey: #2f4f4f;
  --font-24: 24px;
  --primary-font: Denton;
  --secondary-font: Inter;
}

body {
  font-family: sans-serif;
  color: #fff;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}
main, .hero-content{
  opacity: 1;
  transition: 0.6s all ease-in; 
}
.hero-content{
  transition: 0.6s all ease-in; 
}
main.hide, .hero-content.hide{
  opacity: 0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.top-up{
  position: fixed;
  top: -100px;
  width: 280px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #EBE0CC;
  z-index: 100;
  border-radius: 50px;
/*  display: none;*/
  padding: 8px;
  display: flex;
  box-shadow: 0px 0px 20px #4b473f4d;
  justify-content: space-between;
  align-items: center;
  transition: 0.6s all ease-in-out;
}
.top-up.active{
  top: 30px;
}
.top-up img{
  width: 40px;
}
.tu-btn{
  display: inline-flex;
  text-decoration: none;
  padding: 0 16px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-family: Inter;
  font-size: 12px;
  color: #0F1C1C;
  background-color: #FBAF3F;
  height: 40px;
  font-style: normal;
  font-weight: 700;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 40px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}

.logo-container {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  width: 100%;
  margin: auto;
  align-items: center;
}

img.header-logo {
  height: 80px;
}

img.menu-logo,
.menu-head img {
  width: 40px;
}

.container {
  margin: 0 auto;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 100;
  display: none;
  opacity: 0;
  background-color: #0f1c1c;
  transition: all 0.3s;
}

.menu.active {
  display: block;
  opacity: 1;
}

.menu>div {
  max-width: 1000px;
  width: 100%;
  margin: auto;
  padding: 80px 40px;
  box-sizing: border-box;
}

.menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-head img:first-of-type {
  width: 236px;
}

.menu-links {
  padding-top: 120px;
  display: flex;
  gap: 40px;
  flex-direction: column;
}

.menu-links a {
  display: flex;
  text-decoration: none;
  border-bottom: 1px solid #bbb;
  padding-bottom: 40px;
  align-items: center;
  font-family: var(--secondary-font);
  justify-content: space-between;
}

.menu-links a {
  width: 50%;
}

.menu-links a:last-of-type {
  border-bottom: none;
}

.menu-action {
  cursor: pointer;
}

.menu-links a p {
  color: #bbb;
  font-family: var(--secondary-font);
  font-size: var(--font-24);
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
}

/*Hero Banner*/
.hero-banner {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  background-color: #cfcfcf;
  height: 100svh;
}

.hero-banner div {
  padding: 0 40px;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  bottom: 0;
  width: 100%;
  height: 100svh;
  pointer-events: none;
}

.hero-banner>div {
  z-index: 1;
}

.hero-banner h1 {
  top: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 0px 0px 40px var(--dark-grey, #414141);
  font-size: 4rem;
  color: #F9F9F9;
  font-weight: 900;
  font-family: var(--primary-font);
  max-width: 900px;
}

.mobile-video {
  display: none;
}

.desktop-hide {
  display: none;
}

.hero-banner h1,
.hero-banner p {
  left: 50%;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
  position: absolute;
}

.hero-banner p {
  font-size: 1.2rem;
  color: #ECECEC;
  font-family: var(--secondary-font);
  padding-top: 195px;
  padding: 0 40px;
  bottom: 150px;
  transform: translateX(-50%);
  max-width: 530px;
}

.reading {
  text-align: center;
  padding: 120px 0;
  color: #fff;
  /* Assuming white text on a dark background */
  font-family: sans-serif;
  /* Or your preferred font */
  background-color: #0f1c1c;
}

.reading-text {
  max-width: 800px;
  /* Adjust as needed */
  margin: 0 auto;
  color: #2f4f4f;
}

.reading-text h2 {
  font-size: 80px;
  font-weight: 100;
  line-height: 120px;
  font-family: var(--primary-font);
  transition: color 0.3s;
}

span.active {
  color: white;
}

.reading p {
  font-size: var(--font-24);
  line-height: 30px;
  font-weight: 700;
  font-family: var(--secondary-font);
  color: #bbbbbb;
}

.padt-120 {
  padding-top: 120px;
}

.reading-text>p:first-of-type {
  padding-bottom: 60px;
  line-height: normal;
}

.ptb-120-40 {
  padding-bottom: 40px;
  padding-top: 120px;
}

.scrollback {
  height: 340vh;
  position: relative;
}

.scrollback div {
  /* background-color: red; */
  transition: background-image 0.2s ease-in-out;
  transform: translateZ(0);
  position: sticky;
  top: 0;
  height: 100svh;
  left: 0;
  background-position: center;
  right: 0;
  background-size: contain;
  background-repeat: no-repeat;
}

#ff {
  transition: background-image 0.9s ease-in-out;
}

.ainvai {
  height: 700px;
  background-color: yellow;
}

.wc {
  aspect-ratio: 1/1;
  display: flex;
  background-position: center;
  background-size: cover;
  justify-content: center;
  align-items: center;
  background-image: url("https://img.conscioushealth.ai/assets/dots_bg_colour_web.svg");
  background-color: #ebe0cc;
}

.testimonial-header,
.wc {

  background-image: url("https://img.conscioushealth.ai/assets/dots_bg_colour_web.svg");
}

.wc {
  background-image: url("https://img.conscioushealth.ai/assets/dot-bg-web2.svg");

}

.wc .container {
  max-width: 690px;
}

.wc-p1 {
  font-family: var(--secondary-font);
  font-weight: 700;
  font-size: var(--font-24);
  line-height: 30px;

  text-align: center;
  color: #666;
}

.wc-p2 {
  font-family: var(--primary-font);
  font-weight: 900;
  font-size: 56px;
  line-height: 72px;

  text-align: center;
  padding-top: 40px;
  color: #2F4F4F;
}

.wc-p3 {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;

  text-align: center;
  padding-top: 40px;
  color: #414141;
}


.back-123 {
  min-width: 123px;
  background-size: cover;
}

.os {
  background-color: #0f1c1c;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0;
}

.os .container {
  display: flex;
  align-items: center;
  max-width: 1000px;
  width: 100%;
  padding: 0 40px;
  gap: 80px;
  justify-content: space-between;
}

.os-text {
  max-width: 556px;
}

.os-text .wc-p1 {
  color: #BBB;
}

.os-text .wc-p2 {
  color: #F9F9F9;
}

.os-text .wc-p3 {
  color: #ECECEC;
}

.os img {
  width: 100%;
  max-width: 538px;
}

.borrom .reading-text {
  max-width: 720px;
}

.af.reading {
  padding: 120px 0;
  background-color: #ebe0cc;
}

.af.reading .active {
  color: #2f4f4f;
}

.af .reading-text p {
  color: #666666;
}

.af .reading-text {
  color: #bbbbbb;
}

footer {
  background-color: #0f1c1c;
  padding: 120px 0 60px;
}

.action-btn {
  border-radius: 50px;
  display: flex;
  justify-self: center;
  height: 90px;
  align-items: center;
  justify-content: center;
  background-color: #fbaf3f;
  color: #0f1c1c;
  width: 520px;
  font-family: var(--secondary-font);
  font-weight: 700;
  font-size: var(--font-24);
  line-height: 28.64px;
  letter-spacing: 0px;
  text-align: center;
  text-decoration: none;
}

.footer-top {
  text-align: center;
}

.footer-top img {
  padding-top: 80px;
  width: 600px;
}

.footer-links {
  padding: 120px 40px 0;
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 80px;
}

.footer-links a {
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  height: 70px;
  align-items: flex-start;
  text-decoration: none;
  font-family: var(--secondary-font);
  font-weight: 700;
  font-size: var(--font-24);
  line-height: 30px;

  color: #bbb;
  border-bottom: 1px solid #2f4f4f;
}

.footer-links a:last-of-type {
  border-bottom: none;
}



.footer-copyright {
  padding-top: 120px;
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #bbb;


  text-align: center;
}

.faqs {
  background-color: #ebe0cc;
  padding: 20px 0 120px;
}

.faqs-accordian {
  max-width: 840px;
  padding: 0 40px;
  margin: auto;
}

.faqs-title,
.testimonial-header {
  padding-left: 40px;
  padding-right: 40px;
  height: 776px;
  text-align: center;
  color: #2f4f4f;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-header {
  height: 1120px;
}

.testimonial-header>div {
  margin-top: 434px;
}

.testimonial-header {
  background: url("https://img.conscioushealth.ai/assets/dots_bg_colour_web_inv2.svg");
}

.faqs-title {
  background-size: cover;
  background-position: center;
  background-image: url("https://img.conscioushealth.ai/assets/dots_bg_grey_web.svg");
}

.testimonial {
  background-color: #ebe0cc;
  padding-bottom: 120px;
}

.testimonial-container {
  max-width: 1200px;
  padding-top: 120px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 32px;
  padding: 120px 40px 0;
}

.testimonial-container>div {
  /* display: flex; */
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.testimonial-container>div {
  border-bottom: 1px solid #bbbbbb;
  padding-bottom: 24px;
}

.testimonial-container img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-bottom: 24px;
}

.testimonial-container h3 {
  font-family: var(--secondary-font);
  font-weight: 700;
  font-size: var(--font-24);
  line-height: 30px;

  color: #666666;
  text-transform: uppercase;
}

.testimonial-container p {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;

  color: #414141;
  padding-top: 12px;
}
@media only screen and (max-width: 780px) {
  .testimonial-container p {
    padding-top: 5px;
  }
}

.faqs-title h2,
.testimonial-header h2 {
  font-family: var(--primary-font);
  font-weight: 900;
  font-size: 56px;
  line-height: 72px;

}
.testimonial-header p:first-of-type {
  font-family: var(--secondary-font);
  font-weight: 700;
  font-size: var(--font-24);
  padding-bottom: 40px;
  line-height: 30px;
  text-align: center;
  color: #666;
  text-transform: uppercase;
}
.testimonial-header p:last-of-type {
  padding-top: 40px;
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;

  text-align: center;
}

.accordion {
  margin: 40px 0;
  /* Center the accordion */
  overflow: hidden;
  /* Hide content that overflows rounded corners */
}

.accordion:last-of-type {
  margin-bottom: 0;
}

.accordion-header {
  padding-bottom: 40px;
  color: #666666;
  gap: 20px;
  cursor: pointer;
  /* Indicate it's clickable */
  border-bottom: 1px solid #bbb;
  /* Separator line */
  display: flex;
  justify-content: space-between;
  /* Align items to start and end */
  align-items: center;
}

.accordion:last-of-type .accordion-header,
.accordion:last-of-type .accordion-content {
  border-bottom: none;
}

.accordion-header.active {
  padding-bottom: 16px;
  border-bottom: none;
}

.accordion-title {
  font-family: var(--secondary-font);
  font-weight: 700;
  font-size: var(--font-24);
  line-height: 30px;

}

.accordion-icon {
  color: #bbbbbb;
  font-size: 40px;
  transition: transform 0.3s ease;
  /* Smooth rotation */
}

.accordion-header.active .accordion-icon {
  transform: rotate(45deg);
  color: rgb(251, 175, 63);
}

.accordion-content {
  padding: 0px 0 40px;
  border-bottom: 1px solid #bbb;
  display: none;
  /* Initially hidden */
  font-family: var(--secondary-font);
  font-weight: 400;
  color: #414141;
  font-size: 20px;
  line-height: 30px;
}

.accordion-content.show {
  display: block;
  /* Show content when active */
}

.finger-print-section {
  background-color: #ebe0cc;
  padding: 120px 0;
}

.finger-print {
  max-width: 1014px;
  width: 100%;
  position: relative;
  aspect-ratio: 1 / 1;
  background-image: url(../images/finger.svg);
  background-position: center;
  margin: auto;
  background-size: cover;
  margin: auto;
  -webkit-user-select: none;
}

.finger-print>div {
  max-width: 690px;
  margin: auto;
  text-align: center;
}

.finger-print-section .fp-1 {
  font-family: var(--secondary-font);
  font-weight: 700;
  font-size: var(--font-24);
  line-height: 30px;

  text-align: center;
  color: #666666;
  padding-top: 32px;
}

.finger-print-section h2 {
  font-family: var(--primary-font);
  font-weight: 900;
  font-size: 56px;
  line-height: 72px;

  text-align: center;
  padding: 40px 0;
  color: #2f4f4f;
}

.finger-print-section .fp-2 {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;

  text-align: center;
  color: #414141;
}

@keyframes rotateDivAnimation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.finger-touch {
  width: 199px;
  margin-top: 62px;
  height: 199px;
  position: relative;
}

.ft-1 {
  background: url('https://img.conscioushealth.ai/assets/finger-print-stencil.svg');
  aspect-ratio: 1/1;
  z-index: 1;
}

.ft-2 {
  background: url('https://img.conscioushealth.ai/assets/gradient-square2.png');
  aspect-ratio: 1/1;
  transition: transform 0.5s ease;
  animation: rotateDivAnimation 5s linear infinite;
  border-radius: 50%;
}


.ft-1,
.ft-2{
  position: absolute;
  top: 0;
  width: 100%;
  pointer-events: none;
  background-size: cover;
}


.f-zoom {
  background: url(../images/finger-zoom.jpg);
  position: absolute;
  top: 50%;
  background-position: center;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  width: 0;
  height: 0;
  transition: 0.1s all ease-in-out;
  border-radius: 50%;
  box-shadow: 0px 0px 32px rgba(47, 79, 79, 0.16);
}

.f-zoom-container {
  max-width: 199px;
  margin: auto;
  cursor: grab;
}

@keyframes marquee-forward {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-backward {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(50%);
  }
}

/* Enhanced continuous loop animations */
@keyframes marquee-continuous-forward {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-continuous-backward {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(50%);
  }
}

.cre {
  background-color: #0f1c1c;
  padding: 120px 0;

}

.cre .container {
  max-width: 556px;
  margin-bottom: 60px;
}

.cre .wc-p1 {
  color: #BBB;
}

.cre .wc-p2 {
  color: #F9F9F9;
}

.cre .wc-p3 {
  color: #ECECEC;
}

.cre-btn-cn {
  height: 42px;
  overflow: hidden;
  margin-bottom: 16px;
}

.cre-btn-cn:last-of-type {
  margin-bottom: 0;
}


.cre-row {
  gap: 16px;
  justify-content: center;
  display: flex;
  transition: 0.2s all ease-in-out;
}

.cre-btn {
  height: 40px;
  color: rgba(255, 255, 255, 0.567);
  border: 1px solid rgba(255, 255, 255, 0.566);
  border-radius: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  white-space: nowrap;
  width: fit-content;
  min-width: fit-content;
}

.cre-row.cre-1 {
  animation: marquee-continuous-forward 20s linear infinite;
}

.cre-row.cre-2 {
  animation: marquee-continuous-backward 25s linear infinite;
}

.cre-row.cre-3 {
  animation: marquee-continuous-forward 22s linear infinite;
}
.video-section{
  position: relative;
}
.video-section .container{ 
  max-width: 1000px; 
  width: 100%; 
  height: 100svh;
}
.video-section .os-text{
  width: 50%;
  z-index: 1;
  position: absolute;
  top: 50%; 
      transform: translateY(-50%);  
}
.video-section .os-text p{
  text-shadow: 0px 2px 16px #000000;
  color: white;
}

p.cr-1{
  font-size: 24px;
  font-weight: 700;
  color: #666666;
  font-family: Inter;
  padding-bottom: 32px;
  text-transform: uppercase;
}
p.cr-2{
  font-size: 56px;
  line-height: 48px;
  font-weight: 100;
  color: #2f4f4f;
    font-family: Denton;
  padding-bottom: 32px;
}
p.cr-3{
  font-size: 20px;
  line-height: 30px;
    font-family: Inter;
  font-weight: 400;
  color: #414141;
  padding-bottom: 120px;
}
.scroll-container{
  position: relative;
  display: flex;
  justify-content: flex-start;
}
.cr-container{
  position: relative;
  margin-top: 40px;
}
.cr-card {
  max-width: 720px; 
  width: 100%; 
  margin: auto;
}
.cr-circle{
    position: sticky;
    margin-top: -300px;
    max-width: 320px;
    overflow: hidden;
    height: 1000px;
    direction: rtl;
    top: 0;
}
.cr-circle img{
  width: 1200px;
  height: 100%;
}
#flowing .container{
  max-width: unset;
  padding: 0;
  justify-content: flex-start;
}
@media only screen and (min-width: 780px) {
  .f-zoom {
    z-index: 2;
  }

  .f-zoom-container:hover .f-zoom {
    width: 400px;
    height: 400px;
    opacity: 1;
  }

  /*.active.f-zoom {
    width: 400px;
    height: 400px;
    opacity: 1;
  }*/
}

@media only screen and (max-width: 780px) {
  header {
    padding: 40px;
  }
  .cr-container{
    padding: 0 40px 0 0px;
  }
  .cr-circle{
    max-width: 100px;
    margin-right: 20px;
  }
  .cr-circle img{
    width: 655px;
  }
  p.cr-1{
  font-size: 12px;
  line-height: 14px;
  padding-bottom: 12px;
}
p.cr-2{
  font-size: 32px;
  line-height: 40px;
  padding-bottom: 12px;
}
p.cr-3{
  font-size: 14px;
  line-height: 20px;
  padding-bottom: 0px;
}
.cr-card{
  padding-bottom: 80px;
}
.video-section .os-text{
  top: unset;
  width: auto;
  transform: none;
  position: relative;
  height: 100%;
  margin: 0 40px;
}
.video-section .wc-p1{
  padding-top: 40px;
}
.video-section .wc-p3{
  position: absolute;
  bottom: 40px;
}
.os-dual{
  justify-content: center;
  padding-bottom: 40px;
}

  header i {
    font-size: 20px;
  }

  .logo-container {
    justify-content: center;
  }

  .menu-links a {
    width: 100%;
  }

  .menu-head {
    justify-content: center;
  }

  .menu>div {
    padding: 40px;
  }

  .menu-links {
    gap: 32px;
    padding-top: 60px;
  }

  .menu-head i {
    font-size: 20px;
    position: absolute;
    right: 40px;
  }

  .menu-head img:first-of-type {
    width: 157px;
  }

  .menu-links a {
    padding-bottom: 32px;
  }

  .menu-links a p {
    font-size: 12px;
    line-height: 14px;
  }

  .hero-banner h1 {
    font-size: 42px;
    line-height: 48px;
  }

  .hero-banner p {
    font-weight: 400;
    font-size: 14px;
    bottom: 35px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .desktop-video {
    display: none;
  }

  .mobile-video {
    display: block;
  }

  .reading-text>p:first-of-type {
    font-size: 12px;
    line-height: 14px;
    padding-bottom: 40px;
  }


  .reading-text h2 {
    font-size: 42px;
    line-height: 48px;
    max-width: 280px;
    margin: auto;
  }

  .desktop-hide {
    display: inline-block;
  }

  .hero p {
    font-weight: 400;
    font-size: 14px;
    bottom: 35px;
  }

  .wc {
    background-image: url("https://img.conscioushealth.ai/assets/dot-bg-mob2.svg");
    height: auto;
    aspect-ratio: 1/2;
  }

  .faqs-title {
    height: auto;
    background-image: url("https://img.conscioushealth.ai/assets/dots_bg_grey_mob.svg");
    aspect-ratio: 1/1;
  }

  .wc .container {
    max-width: 280px;
  }

  .wc-p1 {
    font-size: 12px;
    line-height: 14px;
  }

  .wc-p2 {
    font-size: 32px;
    line-height: 40px;
    padding-top: 20px;
  }

  .wc-p3 {
    font-size: 14px;
    line-height: 18px;
    padding-top: 20px;
  }

  .os .container {
    max-width: 100%;
    flex-flow: column;
  }

  .second-os .container {
    flex-flow: column-reverse;
    overflow: hidden;
    padding: 0;
  }

  .second-os .os-text {
    padding: 0 40px;
  }

  .flowing-image{
    padding-right: 5%;
  }

  .os img {
    width: 100%;
  }

  .faqs-title h2,
  .testimonial-header h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .testimonial-header p:last-of-type {
    font-size: 14px;
    padding-top: 20px;
    line-height: 18px;
  }
  .testimonial-header p:first-of-type {
    padding-bottom: 20px;
    font-size: 12px;
    line-height: 14px;
  }

  .testimonial-container {
    grid-template-columns: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 24px;
  }

  .testimonial-container>div {
    border-bottom: 1px solid #bbbbbb;
    padding-bottom: 24px;
  }

  .testimonial-container img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    /* margin: 0 auto; */
  }

  .testimonial-container h3 {
    font-size: 12px;
    line-height: 14px;
  }

  .phone-hide {
    display: none;
  }

  .testimonial-container p {
    font-size: 14px;
    line-height: 18px;
  }

  .fppp {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .finger-print {
    height: unset;
    width: calc(100% + 80px);
    margin: 0 -40px;
    margin-top: 48px;
    aspect-ratio: 1 / 1;
    background-size: cover;
  }

  .finger-touch {
    margin-top: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 115px;
    height: 115px;
    transform: translate(-50%, -50%);
  }

  .finger-print-section h2 {
    font-size: 32px;
    line-height: 40px;
    padding: 20px 0;
  }

  .finger-print-section .desktop-hide {
    padding: 0 40px;
  }

  .finger-print-section {
    padding-top: 150px;
    padding-bottom: 200px;
  }

  .action-btn {
    width: calc(100% - 80px);
    margin: auto;
    height: 56px;
    font-size: 16px;
  }

  .accordion-title {
    font-size: 12px;
    line-height: 14px;
  }

  .accordion-header {
    padding-bottom: 32px;
  }

  .accordion-content p {
    font-size: 14px;
    line-height: 18px;
  }

  .faqs {
    padding-bottom: 40px;
  }

  footer {
    padding: 60px 0;
  }

  .footer-top img {
    padding: 60px 40px 0;
    box-sizing: border-box;
    width: 100%;
  }

  .footer-links {
    padding-top: 60px;
    grid-template-columns: auto;
    padding: 60px 40px 0;
    gap: 32px;
  }

  .footer-links a {
    font-size: 12px;
    line-height: 14px;
    height: 46px;
  }

  .footer-copyright {
    padding-top: 28px;
    font-size: 12px;
    line-height: 16px;
    padding: 0 40px;
    width: 200px;
    text-align: left;
  }

  /*f-zoom-container:active .f-zoom {
    height: auto;
    width: 97%;
    aspect-ratio: 1/1;
    opacity: 1;
  }*/
  .f-zoom.active {
    height: auto;
    width: 97%;
    aspect-ratio: 1/1;
    opacity: 1;
  }

  .finger-print-section .fp-2 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
  }

  .finger-print-section .fp-1 {
    font-size: 12px;
    line-height: 14px;
  }

  .os {
    padding: 0 0 70px;
  }

  .os.second-os,
  .cre,

  .finger-print-section,
  .af.reading {
    padding: 70px 0;
  }

  .testimonial-header {
    height: 720px;
  }

  .testimonial {
    padding-bottom: 70px;
  }

  .testimonial-header>div {
    margin-top: 278px;
  }

  .testimonial-container {
    padding-top: 0;
  }

  .footer-copyright {
    padding-top: 28px;
  }

  nav img {
    width: 30px;
  }

  .logo-container img {
    height: 60px;
  }


  .cre .container div:first-of-type {
    padding: 0px 40px;
  }

  .testimonial-header {
    background: url("https://img.conscioushealth.ai/assets/dots_bg_colour_mob_inv2.svg");
    background-size: cover;
    background-position: center;
  }

  .accordion-icon {
    font-size: 30px;
  }

  .menu-head img:first-of-type {
    height: 60px;
    width: auto;
  }

  .menu-action {
    position: absolute;
    right: 40px;
  }

  .desktop-video {
    display: none;
  }

  .mobile-video {
    display: block;
  }

  .ptb-120-40 {
    padding-top: 80px;
    padding-bottom: 20px;
  }

  p.mfont-12 {
    font-size: 12px;
    line-height: 14px;
  }

  .padt-120 {
    padding-top: 80px;
  }

  .reading {
    padding-top: 70px;
    padding-bottom: 70px;
  }

}