@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  background-color: #000 !important;
  color: #fff !important;
  box-sizing: border-box;
  margin: 0 !important;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden !important;
}

@font-face {
  font-family: "CustomFont";
  src: url("./resources/quinn-display-typeface-2023-11-27-04-58-47-utc/QUINN/TTF/Quinn-Bold.ttf")
    format("truetype");
  font-weight: bold;
  font-style: normal;
}

.nav1 {
  width: 100vw;
  color: #000;
  padding: 2vh 6vw 1vh 4vw !important;
  position: fixed !important;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  z-index: 999 !important;
  transition: all 0.3s ease-in-out;
}

.nav1 .call {
  color: #000;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5vw;
}

.nav1 .call i {
  color: #ff3131;
  /* margin-top: 0.5vh; */
  font-size: 1.2vw;
}

.nav1 .call p {
  margin-bottom: 0;
  font-size: 1.2vw;
  font-weight: 600;
}

.nav1 .logo {
  width: 7vw;
  display: block !important;
}

.nav1 .logo img {
  width: 100%;
  height: 100%;
}

.nav1 .burger {
  display: none;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0.5vw;
}

.nav1 .burger p {
  color: #000;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 1.3vw;
}

.nav1 .burger .burgerIn {
  margin-top: 5px;
}

.nav1 .burger .burgerIn div {
  width: 1.5vw;
  height: 2px;
  border: 1px solid #ff3131;
  margin-bottom: 5px;
}

.burger .burgerIn .center {
  margin-left: 0.5vw;
}

.nav1 .horizontal-menu {
  display: flex;
  flex-direction: row;
  gap: 0vw;
  list-style: none;
  margin: 0;
  opacity: 1 !important;
  /* transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transform: translateY(-10px) !important; */
}

.nav1 .horizontal-menu li {
  font-size: 1vw;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
}

.nav1 .horizontal-menu li a {
  text-decoration: none;
  color: #fff;
  border: 1px solid #292929;
  padding: 1vh 1vw 1.5vh 1vw;
  border-radius: 1000px;
}

.nav1.custom-style .horizontal-menu {
  /* display: flex; */
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.nav1 .mobile {
  display: none;
  position: fixed;
  top: 0vh;
  left: 0vw;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  background-size: 100vw 100vh;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 998;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile .close i {
  font-size: 2.5vw;
  color: #fff;
  position: absolute;
  top: 2vh;
  right: 2vw;
  cursor: pointer;
}

.mobile ul li {
  list-style: none;
  font-family: "Poppins", sans-serif;
  font-size: 4vw;
  text-transform: uppercase;
  word-spacing: -3px;
  font-weight: 600;
}

.mobile ul li a {
  text-decoration: none;
  color: #fff;
}

/* Add keyframes for the fade-in effect */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.nav1 {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav1 .scrolled {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.call,
.logo,
.burger {
  display: inline-block;
  vertical-align: middle;
}

.call {
  float: left;
  background-color: #ff3131;
  padding: 1rem;
  border-radius: 50%;
  margin-left: 1vw;
}

.logo {
  float: left;
  padding: 10px;
}

.burger {
  float: right;
  padding: 10px;
  cursor: pointer;
}

.burger .burgerIn div {
  width: 25px;
  height: 3px;
  background-color: #000;
  margin: 5px 0;
  transition: 0.4s;
}

.nav.scrolled .horizontal-menu {
  transform: translateY(0);
}

.horizontal-menu li {
  padding: 1vh 1vw;
  cursor: pointer;
}

.horizontal-menu li:hover {
  color: #ff3131;
}

.mobile {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile.open {
  transform: translateX(0);
}

.mobile .close {
  color: #fff;
  font-size: 30px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.mobile ul {
  padding: 50px 0;
  list-style: none;
  text-align: center;
  margin: 0;
  opacity: 0; /* Start with the menu hidden */
  animation: fadeIn 0.5s forwards; /* Fade in the menu */
  animation-delay: 0.3s; /* Delay the fade-in animation */
}

.mobile ul li {
  list-style: none;
  font-family: "Poppins", sans-serif;
  font-size: 4vw;
  text-transform: uppercase;
  word-spacing: -3px;
  font-weight: 600;
  cursor: pointer;
  opacity: 0; /* Start with list items hidden */
  animation: fadeIn 0.5s forwards; /* Fade in the list items */
}

.mobile ul li a {
  color: #fff;
  text-decoration: none;
}

.mobile ul li:nth-child(1) {
  animation-delay: 0.4s;
}

.mobile ul li:nth-child(2) {
  animation-delay: 0.6s;
}

.mobile ul li:nth-child(3) {
  animation-delay: 0.8s;
}

.mobile ul li:nth-child(4) {
  animation-delay: 1s;
}

.mobile ul li:hover {
  color: #ff3131;
}

.Hero {
  padding: 15vh 5vw 5vh 5vw;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  background-color: #0e0e0e;
}

.Hero .play {
  width: 2.5rem;
  display: block;
}

.Hero .left h1 {
  font-size: 3.5vw;
  color: #fff;
  font-weight: 500;
  line-height: 4vw;
}

.Hero .left h2 {
  font-size: 2.2vw;
  color: #c7c7c7;
  line-height: 3.5vw;
  font-weight: 400;
  line-height: 2.8vw;
  margin-top: 2vh;
}

.Hero .left h1 .spans {
  font-size: 3vw;
  font-weight: 700;
}

.Hero .left h1 .spanss {
  font-size: 3.8vw;
  font-weight: 700;
}

.Hero .left h1 span {
  font-size: 5rem;
  font-weight: 700;
}

.Hero .left h2 span {
  font-size: 3.5vw;
  color: #ff3131;
  line-height: 3vw;
  font-weight: 400;
}

.Hero .play img {
  width: 100%;
  height: 100%;
}

.Hero .sourab {
  width: 40vw;
  height: 35vh;
  margin-top: 3vh;
  border-radius: 1vw;
}

.Hero .sourab iframe {
  width: 100%;
  height: 100%;
  border-radius: 1vw;
  border: 2px solid #6b6b6b;
}

.vp-center{
  border: 2px solid #fff !important;
}

.Hero .trydoHeart {
  width: 30vw;
}

.Hero .trydoHeart img {
  width: 100%;
  height: 100%;
}

.Hero .right .consult {
  color: #000;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 5rem 3vw 1rem;
  min-width: 20vw;
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0.5vw;
  cursor: pointer;
}

.Hero .right .consult p {
  margin-bottom: 0;
  font-size: 1.3vw;
  font-weight: 500;
}

.Hero .right .consult .arrow {
  background-color: #ff3131;
  width: 2vw;
  border-radius: 0.2vw;
}

.consult .arrow img {
  width: 100%;
  height: 100%;
  border-radius: 2vw;
}

.heartline {
  width: 100vw;
  padding: 1vh 20vw;
  background-color: #0e0e0e;
}

.heartline img {
  width: 100%;
  height: 100%;
}

.section-2 {
  background-color: #0e0e0e;
  color: #fff;
  padding: 5vh 5vw;
}

.section-2 h1 {
  font-size: 7vw;
  font-weight: 700;
  letter-spacing: -3px;
  margin-bottom: 2rem;
}

.section-2 h3 {
  font-size: 2.7vw;
  margin-bottom: 1rem;
  font-weight: 400;
}

.section-2 h4 {
  font-size: 1.8vw;
  color: #dfdede;
  font-weight: 200;
  width: 80vw;
}

.section-2 .challenges {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4rem;
  padding: 1rem 0rem;
  margin-top: 4rem;
}

.section-2 .challenge {
  border: 1px solid #444444;
  padding: 2.5rem 1rem 2rem 0rem;
  width: 30vw;
  border-bottom: 0;
}

.section-2 .challenge ul li .capsule {
  width: 1vw;
}

.section-2 .challenge ul h6 {
  font-size: 1.5vw;
  text-decoration: underline;
  margin-bottom: 1rem;
  font-weight: 400;
}

.section-2 .challenge ul li {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}

.section-2 .challenge ul li h5 {
  margin-bottom: 0.2rem;
  font-size: 1.4vw;
  font-weight: 200;
  width: 25vw;
}

.section-2 .challenge ul li .capsule img {
  width: 100%;
  height: 100%;
}

.section-2 .statistics {
  width: 30vw;
}

.section-2 .statistics img {
  width: 100%;
  height: 100%;
}

.section-3 {
  background-color: #fff;
  color: #000;
  padding: 2rem 2rem 0rem 5rem;
}

.section-3 .flexin {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}

.section-3 .flexin .hand {
  display: block;
  width: 30vw;
  margin-bottom: 0rem;
}

.section-3 .flexin .handMobile {
  display: none;
}

.section-3 .flexin .content h1 {
  font-size: 7vw;
  font-weight: 700;
  letter-spacing: -5px;
}

.section-3 .flexin .content h3 {
  font-size: 2.4vw;
  font-weight: 500;
  margin-bottom: 0;
}

.section-3 .flexin .content h4 {
  font-size: 1.8vw;
  font-weight: 300;
  margin-bottom: 0;
  margin-top: 0.3rem;
}

.section-3 .flexin .content .solutions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 65vw;
  margin-top: 3rem;
  gap: 2rem;
}

.section-3 .flexin .content .solutions .solution {
  display: flex;
  flex-direction: column;
  width: 18rem;
  justify-content: center;
  gap: 0.8rem;
  align-items: center;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  padding: 1rem 1rem;
  border-radius: 1rem;
}

.section-3 .flexin .content .solutions .solution h5 {
  font-size: 1vw;
  text-align: center;
  font-weight: 400;
}

.section-3 .flexin .content .solutions .solution h4 {
  font-size: 1.1vw;
  text-align: center;
  font-weight: 500;
}

.section-3 .flexin .hand img {
  width: 100%;
  height: 100%;
}

.section-3 .flexin .content .tablet {
  width: 2rem;
}

.section-3 .flexin .content .tablet img {
  width: 100%;
  height: 100%;
}

.section-3 .flexin .content .supports h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.section-3 .flexin .content .supports .support {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}

.section-3 .flexin .content .supports .support h4 {
  font-size: 1.3vw;
  font-weight: 400;
}

.section-3 .flexin .content .supports .support .capsule-grey {
  width: 1.5rem;
}

.section-3 .flexin .content .supports .support .capsule-grey img {
  width: 100%;
  height: 100%;
}

.section-4 {
  background-color: #0e0e0e;
  color: #fff;
  padding: 6rem 2rem 4rem 5rem;
}

.section-4 .contents {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}

.section-4 .contents .content {
  width: 60vw;
}

.section-4 .contents .content h5 {
  color: #ff3131;
  font-size: 1.6vw;
  font-weight: 300;
}

.section-4 .contents .content h3 {
  color: #fff;
  font-size: 1.5vw;
  font-weight: 300;
  line-height: 2vw;
}

.section-4 .contents .content h1 {
  color: #fff;
  font-size: 3.8vw;
  font-weight: 500;
}

.content .hearts {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}

.content .hearts .heart {
  min-width: 13vw;
  max-width: 16vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  padding: 1rem 1.2rem;
  background-color: #292929;
  border-radius: 0.5rem;
}

.content .hearts .heart p {
  text-align: center;
  font-size: 1rem;
}

.content .hearts .heart .heartImage {
  width: 4rem;
}

.content .hearts .heart .heartImage img {
  width: 100%;
  height: 100%;
}

.content .supports {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 5rem;
}

.section-4 .content .supports .support {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}

.content .supports h3 {
  font-size: 1.7vw !important;
}

.content .supports .support h4 {
  font-size: 1.4vw;
  font-weight: 400;
  margin-bottom: 0;
}

.content .supports .support .capsule-grey {
  width: 1.5rem;
}

.content .supports .support .capsule-grey img {
  width: 100%;
  height: 100%;
}

.dman {
  display: block;
}

.dmanMobile {
  display: none;
}

.brandSection {
  width: 100vw;
  height: 100vh;
  position: relative;
  z-index: 25;
}

.video-background {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.video-backgroundMobile {
  display: none;
}

.section-5 {
  background-color: #0e0e0e;
  color: #fff;
  padding: 6rem 2rem 4rem 5rem;
  background-image: url(./resources/Tsec5elements/hospital-complex.avif);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100vw 100%;
  width: 100vw;
  height: auto;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.section-5 h1 {
  font-size: 5vw;
  font-weight: 700;
}

.section-5 h3 {
  font-size: 2.3rem;
  font-weight: 400;
  color: #d3d3d3;
}

.section-5 .services {
  width: 60vw;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.section-5 .services .service {
  min-width: 15vw;
  max-width: 18vw;
  border: 1px solid #6b6b6b;
  padding: 1rem;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}

.section-5 .services .service p {
  text-align: center;
}

.section-5 .services .service .serviceImage {
  width: 3vw;
}

.section-5 .services .service .serviceImage img {
  width: 100%;
  height: 100%;
}

.section-6 {
  background-color: #0e0e0e;
  color: #fff;
  padding: 6rem 2rem 4rem 5rem;
  background-image: url(./resources/Tsec6elements/Testimonial\ BG.avif);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100vw 100%;
  width: 100vw;
  height: auto;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.section-6 h1 {
  font-size: 4vw;
  font-weight: 700;
  text-align: center;
}

.section-6 h3 {
  font-size: 2.1vw;
  font-weight: 400;
  color: #d3d3d3;
  text-align: center;
}

.section-6 .stories {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.section-6 .stories .story {
  min-width: 23vw;
  max-width: 27vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: 2px solid #444444;
  margin-top: 5rem;
  padding: 1.5rem;
  border-radius: 1rem;
}

.section-6 .stories .story p {
  font-size: 1vw;
  text-align: center;
}

.section-6 .stories .storyImage {
  width: 7vw;
  height: 7vw;
  margin-top: -7vh;
}

.section-6 .stories .storyImage img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 5px solid #444444;
}

.story .ending {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1rem;
}

.story .ending .left h4 {
  font-size: 1rem;
}

.story .ending .left h5 {
  font-size: 0.9rem;
  color: #ff3131;
  text-align: center;
}

.story .ending .stars {
  width: 5vw;
}

.story .ending .stars img {
  width: 100%;
  height: 100%;
}

.section-6 .graphs {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  margin-top: 3rem;
}

.section-6 .graphs .graph {
  display: block;
  width: 25vw;
  border: 2px solid #444444;
  border-radius: 0.5rem;
}

.section-6 .graphs .graph img {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
}

.section-7 {
  background-color: #fff;
  color: #0e0e0e;
  padding: 6rem 5rem 10rem 5rem;
}

.section-7 h1 {
  font-size: 4vw;
  font-weight: 400;
}

.section-7 h1 span {
  color: #ff3131;
}

.section-7 .experts {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  margin-top: 5rem;
}

.section-7 .experts .expert {
  width: 20vw;
  background-color: #eceaea;
  padding: 2rem 0rem 1rem 2rem;
  border-radius: 0.8rem;
}

.section-7 .experts .expert .expertImage {
  width: 18vw;
  margin-bottom: 0;
}

.section-7 .experts .expert .expertImage img {
  width: 100%;
  height: 100%;
}

.section-8 {
  background-color: #dbdbdb;
  color: #0e0e0e;
  padding: 4rem 8rem 0rem 5rem;
}

.section-8 .growth {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5rem;
}

.section-8 .growth .doctor {
  width: 40vw;
  margin-top: -10rem;
}

.section-8 .growth .doctor img {
  width: 100%;
  height: 100%;
}

.section-8 .growth .doctorContact {
  width: 38vw;
}

.section-8 .growth .doctorContact h1 {
  font-size: 2.8rem;
  color: #0e0e0e;
}

.section-8 .growth .doctorContact h4 {
  font-size: 1.8rem;
  color: #292929;
  font-weight: 400;
  line-height: 2.2rem;
}

form {
  padding: 0vh;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5vh 0vw;
  margin-top: 2rem;
}

.Formtab {
  /* width: 15vw; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 3vw 0 0;
}

.Formtab label {
  color: #fff;
}

.Formtab label span {
  color: #ff3131;
}

.Formtab1 label span {
  color: #ff3131;
}

.Formtab label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 1.3rem;
  font-weight: 500;
  color: #000;
}

.Formtab input {
  padding: 0.5rem;
}

.section-8 button[type="submit"] {
  padding: 0.5vw 1vw;
  background-color: #ff3131;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "CustomFont", sans-serif;
  letter-spacing: 1px;
  word-spacing: -2px;
  float: right;
  margin: 2rem 0 0;
}

footer {
  background-color: #000;
  color: #fff;
  padding: 5vh 5vw 10vh;
  font-family: Arial, sans-serif;
  position: relative;
  z-index: 26;
  width: 100%;
  box-shadow: #fff 0px 10px 20px, #fff 0px 6px 6px;
}

.footer-content {
  width: 80vw;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5vw;
  margin: 0 5vw;
  border-bottom: 2px solid #ccc;
}

.logo-section {
  flex-basis: 20%;
  margin-bottom: 20px;
}

.logo-section p {
  font-size: 1vw;
}

address {
  font-size: 1vw;
}

.logo-section img {
  max-width: 150px;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.5vw;
  margin-top: 3vh;
}

.social-icons a {
  text-decoration: none;
  color: #ff3131;
}

.social-icons a i {
  font-size: 1.5vw;
}

.icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.footer-links {
  flex-basis: 35%;
  display: flex;
  justify-content: space-between;
}

.link-column h3 {
  margin-bottom: 15px;
  color: #fff;
  font-size: 1.6vw !important;
}

.link-column ul {
  list-style-type: none;
  padding: 0;
}

.link-column ul li {
  margin-bottom: 10px;
  font-size: 1vw;
}

.link-column ul li a {
  color: #ccc;
  text-decoration: none;
}

.cta-section {
  flex-basis: 25%;
}

.cta-section form {
  display: flex;
  margin-top: 15px;
}

.cta-section input {
  flex-grow: 1;
  padding: 10px;
  border: none;
}

.cta-section button {
  background-color: #ff0000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

.cta-section p {
  font-size: 1vw;
}

.cta-section .subscribe {
  width: 25vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 2vh;
  padding: 0;
  margin: 0 !important;
}

.subscribe input {
  width: 20vw;
  border-radius: 0.5vw;
  background-color: #000;
  border: 1px solid #ccc;
  color: #fff;
}

.cta-section .subscribe input[type="submit"],
button[type="submit"] {
  padding: 0.5vw 1vw;
  background-color: #ff3131;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.2vw;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "CustomFont", sans-serif;
  letter-spacing: 2px;
  word-spacing: -1px;
  float: right;
  margin: 0vh 0 0;
}

.cta-section .subscribe {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}

.footer-bottom {
  padding: 2vh 5vw;
  font-family: "Poppins", sans-serif;
}

.footer-bottom .bottom {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 20vw;
}

.bottom ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 3vw;
}

.bottom ul li {
  list-style: none;
  font-size: 1.2 vw;
}

.bottom ul li a {
  color: #fff;
  text-decoration: none;
}

.bottom div {
  font-size: 1.2vw;
}

.banner{
  width: 100vw;
  background: #000;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  bottom: 0;
  position: fixed;
  padding: 1em 15em;
  height: auto;
  gap: 8vw;
  z-index: 999;
}

.banner .offer, .banner .offer #timer{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.banner .offer{
  gap: 2vw;
  justify-content: flex-start;
}

.banner .offer p{
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0;
  font-weight: 600;
}

.offer #timer{
  gap: 0.5vw;
  color: #fff;
}

.banner .robot{
 width: 10vw;
 position: absolute;
 right: 5vw;
 bottom: 2vh;
 margin-bottom: -1em;
}

.banner .robot img{
  width: 100%;
  height: 100%;
}

.offer #timer div{
  width: 3.5vw;
  height: 3.5vw;
  border-radius: 0.5vw;
  background-image: linear-gradient(to right, #10051d, #1d0322,#10051d);
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 1.8vw;
}

.banner .books{
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0;
  /* background: linear-gradient(to right, var(--primary-purple-light), var(--primary-pink)); */
  background-color: #ff3131;
  border-radius: 3vw;
  padding: 0.5em 2em 0.5em;
  cursor: pointer;
}

.banner .books p{
  margin-bottom: 0;
  background-color: transparent;
  border: none;
  font-size: 1.3rem;
  color: #000;
}


@media (max-width: 768px) {
  .nav1 .call {
    width: 28vw;
    color: #fff !important;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1vw;
  }

  .nav1 .call i {
    color: #ff3131;
    margin-top: 0.5vh;
    font-size: 3vw;
  }

  .nav1 .call p {
    margin-bottom: 0;
    font-size: 3vw;
    font-weight: 600;
  }

  .nav1 .logo {
    width: 27vw;
    display: block !important;
  }

  .nav1 .burger p {
    font-size: 3vw;
  }

  .nav1 .burger {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: flex-end;
    gap: 2vw;
    width: 28vw;
  }
  .nav1 .menu {
    display: none;
  }

  .nav1 .burger .burgerIn div {
    width: 20px;
  }

  .nav1 .burger {
    display: flex;
  }
  .nav1 .horizontal-menu {
    display: none;
  }

  .burger,
  .call {
    display: block;
  }

  .horizontal-menu {
    display: none !important;
  }

  .mobile {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .mobile.open {
    transform: translateX(0);
  }

  .mobile .close {
    color: #fff;
    font-size: 30px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
  }

  .mobile ul {
    padding: 50px 0;
    list-style: none;
    text-align: center;
    margin: 0;
  }

  .mobile ul li {
    padding: 5px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
  }

  .mobile ul li:hover {
    color: #ff3131;
  }

  .mobile .close i {
    font-size: 5vw;
  }

  .Hero {
    padding: 15vh 5vw 5vh 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    background-color: #0e0e0e;
  }

  .Hero .play {
    width: 2.5rem;
    display: none;
  }

  .Hero .left h1 {
    font-size: 7vw;
    color: #fff;
    font-weight: 500;
    line-height: 11vw;
  }

  .Hero .left h2 {
    font-size: 5.2vw;
    color: #c7c7c7;
    line-height: 3.5vw;
    font-weight: 400;
    line-height: 6.8vw;
    margin-top: 2vh;
  }

  .Hero .left h1 span {
    font-size: 4rem;
    font-weight: 700;
  }

  .Hero .left h2 span {
    font-size: 3.5vw;
    color: #ff3131;
    line-height: 3vw;
    font-weight: 400;
  }

  .Hero .play img {
    width: 100%;
    height: 100%;
  }

  .Hero .sourab {
    width: 80vw;
    height: 20vh;
    margin-top: 3vh;
    margin: 5vh 5vw 0;
  }

  .Hero .sourab iframe {
    width: 100%;
    height: 100%;
    border-radius: 3vw;
    border: 2px solid #303030;
  }

  .Hero .trydoHeart {
    width: 80vw;
    margin-top: 5rem;
  }

  .Hero .trydoHeart img {
    width: 100%;
    height: 100%;
  }

  .Hero .right .consult {
    color: #000;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: fit-content;
    /* margin: 5rem 6vw 1rem; */
    padding: 1rem 2rem 1rem 2rem;
    border-radius: 1vw;
  }

  .Hero .right .consult p {
    margin-bottom: 0;
    font-size: 4.5vw;
    font-weight: 500;
  }

  .Hero .right .consult .arrow {
    background-color: #ff3131;
    width: 6vw;
    border-radius: 0.2vw;
  }

  .consult .arrow img {
    width: 100%;
    height: 100%;
    border-radius: 2vw;
  }

  .heartline {
    width: 100vw;
    padding: 1vh 0vw;
    background-color: #0e0e0e;
  }

  .heartline img {
    width: 100%;
    height: 100%;
  }

  .section-2 {
    background-color: #0e0e0e;
    color: #fff;
    padding: 5vh 5vw;
  }

  .section-2 h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -3px;
    margin-bottom: 1rem;
  }

  .section-2 h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
  }

  .section-2 h4 {
    font-size: 1.2rem;
    color: #dfdede;
    font-weight: 200;
    width: 80vw;
  }

  .section-2 .challenges {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2rem;
    padding: 1rem 0rem;
    margin-top: 1rem;
  }

  .section-2 .challenge {
    border: 2px solid #444444;
    padding: 2.5rem 1rem 0rem 0rem;
    width: 90vw;
    border-radius: 1rem;
  }

  .section-2 .challenge ul li .capsule {
    width: 4vw;
  }

  .section-2 .challenge ul{
    padding-left: 0.8rem;
  }

  .section-2 .challenge ul h6 {
    font-size: 1.5rem;
    text-decoration: underline;
    margin-bottom: 1rem;
    font-weight: 400;
  }

  .section-2 .challenge ul li {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.7rem;
  }

  .section-2 .challenge ul li h5 {
    margin-bottom: 0.2rem;
    font-size: 1.2rem;
    font-weight: 200;
    width: fit-content;
  }

  .section-2 .challenge ul li .capsule img {
    width: 100%;
    height: 100%;
  }

  .section-2 .statistics {
    width: 90vw;
  }

  .section-2 .statistics img {
    width: 100%;
    height: 100%;
  }

  .section-3 {
    background-color: #fff;
    color: #000;
    padding: 5vh 5vw;
  }

  .section-3 .flexin {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5rem;
  }

  .section-3 .flexin .hand {
    display: none;
  }

  .section-3 .flexin .handMobile {
    display: block;
    width: 80vw;
    margin-left: -1.5rem;
    margin-top: 2rem;
  }

  .section-3 .flexin .content h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -5px;
  }

  .section-3 .flexin .content h3 {
    font-size: 5vw;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 2rem;
  }

  .section-3 .flexin .content h4 {
    font-size: 5vw;
    font-weight: 400;
    margin-bottom: 0;
    margin-top: 0.3rem;
  }

  .section-3 .flexin .content .solutions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 80vw;
    margin: 0 5vw;
    margin-top: 3rem;
    gap: 2rem;
  }

  .section-3 .flexin .content .solutions .solution {
    display: flex;
    flex-direction: column;
    width: 20rem;
    justify-content: center;
    gap: 0.8rem;
    align-items: center;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    padding: 1rem 1rem;
    border-radius: 1rem;
  }

  .section-3 .flexin .content .solutions .solution h5 {
    font-size: 1rem;
    text-align: center;
    font-weight: 400;
  }

  .section-3 .flexin .content .solutions .solution h4 {
    font-size: 1.3rem;
    text-align: center;
    font-weight: 500;
  }

  .section-3 .flexin .handMobile img {
    width: 100%;
    height: 100%;
  }

  .section-3 .flexin .content .tablet {
    width: 2rem;
  }

  .section-3 .flexin .content .tablet img {
    width: 100%;
    height: 100%;
  }

  .section-3 .flexin .content .supports h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
  }

  .section-3 .flexin .content .supports .support {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
  }

  .section-3 .flexin .content .supports .support h4 {
    font-size: 1rem;
    font-weight: 400;
    width: 70vw;
  }

  .section-3 .flexin .content .supports .support .capsule-grey {
    width: 1.5rem;
  }

  .section-3 .flexin .content .supports .support .capsule-grey img {
    width: 100%;
    height: 100%;
  }

  .section-4 {
    background-color: #0e0e0e;
    color: #fff;
    padding: 5vh 5vw;
  }

  .section-4 .contents {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }

  .section-4 .contents .content {
    width: 90vw;
  }

  .section-4 .contents .content h5 {
    color: #ff3131;
    font-size: 1.3rem;
    font-weight: 400;
  }

  .section-4 .contents .content h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 00;
    line-height: 1.5rem;
  }

  .section-4 .contents .content h1 {
    color: #fff;
    font-size: 2.3rem;
    font-weight: 500;
  }

  .content .hearts {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
  }

  .content .hearts .heart {
    min-width: 80vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    padding: 1rem 1.2rem;
    background-color: #292929;
    border-radius: 0.5rem;
  }

  .content .hearts .heart p {
    text-align: center;
    font-size: 1.2rem;
  }

  .content .hearts .heart .heartImage {
    width: 4rem;
  }

  .content .hearts .heart .heartImage img {
    width: 100%;
    height: 100%;
  }

  .content .supports {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
  }

  .section-4 .content .supports .support {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .content .supports h3 {
    font-size: 1.5rem !important;
    margin-bottom: 2rem;
  }

  .content .supports .support h4 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0rem;
  }

  .content .supports .support .capsule-grey {
    width: 3rem;
  }

  .content .supports .support .capsule-grey img {
    width: 100%;
    height: 100%;
  }

  .dman {
    display: none;
  }

  .dmanMobile {
    display: block;
  }

  .dmanMobile img {
    width: 100%;
    height: 100%;
  }

  .brandSection {
    width: 100vw;
    height: 100vh;
    position: relative;
    z-index: 25;
    background-color: #141414;
  }

  .video-backgroundMobile {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
  }

  .video-background {
    display: none;
  }

  .video-backgroundMobile video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: translate(-50%, -50%);
  }

  .section-5 {
    background-color: #0e0e0e;
    color: #fff;
    padding: 5vh 5vw;
    background-image: url(./resources/Tsec5elements/hospital\ complex\ mbl.avif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100vw 100%;
    width: 100vw;
    height: auto;
    padding-top: 2vh;
    padding-bottom: 10vh;
  }

  .section-5 h1 {
    font-size: 3rem;
    font-weight: 700;
  }

  .section-5 h3 {
    font-size: 1.5rem;
    font-weight: 300;
    color: #d3d3d3;
  }

  .section-5 .services {
    width: 90vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
  }

  .section-5 .services .service {
    min-width: 80vw;
    border: 1px solid #6b6b6b;
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    background-color: #0e0e0e;
  }

  .section-5 .services .service p {
    text-align: center;
    font-size: 1.2rem;
  }

  .section-5 .services .service .serviceImage {
    width: 20vw;
  }

  .section-5 .services .service .serviceImage img {
    width: 100%;
    height: 100%;
  }

  .section-6 {
    background-color: #0e0e0e;
    color: #fff;
    padding: 5vh 5vw;
    background-image: url(./resources/Tsec6elements/);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100vw 100%;
    width: 100vw;
    height: auto;
    padding-top: 10vh;
    padding-bottom: 10vh;
  }

  .section-6 h1 {
    font-size: 4rem;
    font-weight: 700;
    text-align: left;
  }

  .section-6 h3 {
    font-size: 1.5rem !important;
    font-weight: 400;
    color: #d3d3d3;
    text-align: left;
  }

  .section-6 .stories {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
  }

  .section-6 .stories .story {
    min-width: 80vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border: 2px solid #444444;
    margin-top: 5rem;
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .section-6 .stories .story p {
    font-size: 1.1rem;
    text-align: center;
  }

  .section-6 .stories .storyImage {
    width: 30vw;
    height: 30vw;
    margin-top: -10vh;
  }

  .section-6 .stories .storyImage img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid #444444;
  }

  .story .ending {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin-top: 1rem;
  }

  .story .ending .left h4 {
    font-size: 1rem;
  }

  .story .ending .left h5 {
    font-size: 0.9rem;
    color: #ff3131;
    text-align: left;
  }

  .story .ending .stars {
    width: 20vw;
  }

  .story .ending .stars img {
    width: 100%;
    height: 100%;
  }

  .section-6 .graphs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    margin-top: 3rem;
  }

  .section-6 .graphs .graph {
    display: none;
    width: 25vw;
    border: 2px solid #444444;
    border-radius: 0.5rem;
  }

  .section-6 .graphs .graph img {
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
  }

  .section-7 {
    background-color: #fff;
    color: #0e0e0e;
    padding: 5vh 5vw;
  }

  .section-7 h1 {
    font-size: 2rem;
    font-weight: 600;
  }

  .section-7 h1 span {
    color: #ff3131;
  }

  .section-7 .experts {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
  }

  .section-7 .experts .expert {
    width: 80vw;
    background-color: #eceaea;
    padding: 1rem 0rem 0rem 1rem;
    border-radius: 0.8rem;
  }

  .section-7 .experts .expert h5 {
    margin-bottom: 0;
  }

  .section-7 .experts .expert .expertImage {
    width: 70vw;
    margin-bottom: 0;
  }

  .section-7 .experts .expert .expertImage img {
    width: 100%;
    height: 100%;
  }

  footer {
    /* top: 70vh; */
    padding-top: 2vh;
    padding-bottom: 8vh;
  }

  .footer-content {
    flex-direction: column;
  }

  .logo-section,
  .cta-section {
    flex-basis: 100%;
    margin-bottom: 30px;
  }

  .footer-links {
    flex-direction: column;
    justify-content: center;
    gap: 10vw;
    align-items: flex-start;
  }

  .link-column {
    margin-bottom: 1vh;
  }

  .footer-content {
    margin: 0 5vw;
  }

  .logo-section img {
    width: 30vw;
  }

  .logo-section p {
    font-size: 3.5vw;
  }

  address {
    font-size: 3.5vw;
  }

  .social-icons {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 3vw;
  }

  .social-icons a i {
    font-size: 4.5vw;
  }

  .link-column {
    flex-basis: 35%;
  }

  .link-column h3 {
    font-size: 4vw !important;
  }

  .link-column ul li {
    font-size: 3.5vw;
  }

  .cta-section {
    /* border: 3px dotted #ccc; */
    /* padding: 4vh 4vw; */
    width: 80vw;
    border-radius: 2vw;
  }

  .cta-section p {
    font-size: 3.5vw;
  }

  .cta-section .subscribe {
    width: 80vw;
    margin: 0vh 0;
    align-items: flex-start;
    padding: 0;
    gap: 0;
  }

  .subscribe input {
    width: 80vw;
    margin: 1vh 0 0;
    border-radius: 1.5vw;
  }

  .cta-section input[type="submit"],
  button[type="submit"] {
    font-size: 6vw;
    padding: 0.5vh 3vw;
    margin: 2vh auto;
    float: right;
  }

  .footer-bottom .bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0vh;
  }

  .bottom ul {
    flex-direction: column;
    padding-left: 0;
  }

  .bottom ul li {
    list-style: none;
    font-size: 3.5vw;
  }

  .bottom ul li a {
    color: #fff;
    text-decoration: none;
  }

  .bottom div {
    font-size: 3.5vw;
  }

  .banner{
    padding: 1em 1em;
    gap: 5vw;
    /* background-color: #bbbbbb; */
    background-color: #000;
  }
  
  .banner .offer{
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
  
  .banner .offer p{
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
  }
  
  .offer #timer div{
    width: 7vw;
    height: 7vw;
    border-radius: 0.5vw;
    background-image: linear-gradient(to right, #10051d, #1d0322,#10051d);
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
  }
  
  .banner .robot{
    width: 20vw;
    right: 0vw;
  }
  
  .banner .books{
    color: #fff;
    font-size: 3.5vw;
    font-weight: 600;
    margin-bottom: 0;
    /* background: linear-gradient(to right, var(--primary-purple-light), var(--primary-pink)); */
    border: 0;
    border-radius: 5vw;
    padding: 0.5em 1.5em 0.5em 1.5em;
    background-color: #ff3131;
  }
  
  .banner .books p{
    margin-bottom: 0;
    background-color: transparent !important;
    font-size: 4vw;
    color: #000;
    font-weight: 600;
  }
  
}
