.single-chart {
  width: 60%;
  justify-content: space-around;
  /* filter:drop-shadow(0px 3px 30px #BA000055);  */
  /* inset 0px 3px 25px #FF2C2C00, 0px 3px 30px #BA000055; */
}

.circular-chart {
  display: block;
  margin: 10px auto;
  max-width: 80%;
  max-height: 250px;
  /* filter: drop-shadow(); */
  /* box-shadow: inset 0px 10px 30px #ff2c2c00, 10px 10px 30px #ba000041; */
  /* filter: drop-shadow(0px 3px 30px #ff2c1aaa); */
  /* filter: drop-shadow(0px 3px 9px #FF2C2C) */
}

.circle-bg {
  fill: none;
  stroke: #0079ba;
  stroke-width: 0.4;
}

.circle {
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  animation: progress 2.5s ease-out forwards;
  animation-play-state: paused;
  /* filter:drop-shadow(0px 3px 30px #BA000055); */
}

@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}

.circular-chart.orange .circle {
  stroke: #ff9f00;
}

.circular-chart.green .circle {
  stroke: #4cc790;
}

.circular-chart.blue .circle {
  stroke: #0079ba;
}

.percentage {
  fill: #000;
  font-family: var(--font-family-monsterrat-regular);
  /* font-size: 0.5em; */
  line-height: 2.6em;
  font-size: 0.6em;
  text-anchor: middle;
}

.header-container {
  background: #FFFFFF30 0% 0% no-repeat padding-box;
  border: 1px solid #FFFFFF33;
  opacity: 1;
  backdrop-filter: blur(23px);
  -webkit-backdrop-filter: blur(23px);
  height: 90px;
  width: 100%;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 5%;
  z-index: 10;
}

.header-logo-container img {
  width: 140px;
}

.header-right-container {
  display: flex;
  align-items: center;
  height: 100%;
  overflow: hidden;
}

.header-links {
  display: flex;
  align-items: center;
  list-style: none;
  text-transform: uppercase;
}

.mobile-header-links {
  display: none;
}

.header-links a {
  color: black;
  text-decoration: none;
  font-family: var(--font-family-roboto);
  font-size: 16px;
  transition: all 0.5s ease;
  position: relative;
}

.header-links a::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0;
  transform: translateX(-50%);
  height: 2px;
  background-color: var(--color-red-new);
  transition: width 0.3s ease;
}

.header-links a:hover::after {
  width: 40px;
  /* Expand the line to full width on hover */
}

.header-links a:hover {
  font-family: var(--font-family-roboto-regular);
  transition: all 0.5s ease;
}



.header-links .menu-item-700 a,
.header-links .menu-item-742 a {
  color: white;
  cursor: pointer;
}

.header-links .menu-item-700 a:hover,
.header-links .menu-item-742 a:hover {
  color: white;
  cursor: pointer;
}

.header-login-btn {
  background-color: #00000010;
  padding: 15px 40px;
  border-radius: 1000px;
  font-family: var(--font-family-roboto-bold);
  font-size: clamp(13px, 0.8vw, 14px);
  /* backdrop-filter: blur(30px); */
  /* -webkit-backdrop-filter: blur(30px); */
  background-color: #0000000f;
  border: 1px solid #ffffff91;
}

.header-get-started-btn {
  background-color: #c84238;
  border: none;
  padding: 15px 30px;
  border-radius: 1000px;
  color: white;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: clamp(13px, 0.8vw, 14px);
  font-family: var(--font-family-roboto-bold);
}

.website-btn {
  background-color: #c84238;
  border: none;
  padding: 15px 40px;
  border-radius: 1000px;
  color: white;
  /* display: flex; */
  /* align-items: center; */
  /* gap: 20px; */
  font-size: 14px;
  font-family: var(--font-family-roboto-bold);
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-out;
}

.website-btn:hover img {
  transform: translateX(10px);
  transition: all 0.3s ease-out;
}

.website-btn img {
  display: inline;
  margin-left: 15px;
  vertical-align: -2px;
  transition: all 0.3s ease-out;
}

.header-get-started-btn img {
  height: 11px;
  width: 25px;
}

.header-hamburger-menu-wraper {
  height: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-red-new);
  border-left: 1px solid #ffffff91;
  cursor: pointer;
}

.header-hamburger-menu {
  height: 14px;
  width: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  cursor: pointer;
}

.header-hamburger-menu-line1,
.header-hamburger-menu-line3 {
  height: 2px;
  background-color: white;
  width: 100%;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.header-hamburger-menu-line2 {
  height: 2px;
  background-color: white;
  width: 50%;
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* .header-hamburger-menu:hover > .header-hamburger-menu-line1, */
/* .header-hamburger-menu:hover > .header-hamburger-menu-line3 { */
/*   transform: scaleX(1.3); */
/*   height: 3px; */
/* } */
.header-hamburger-menu:hover>.header-hamburger-menu-line2 {
  transform: scaleX(2);
  transform-origin: right;
}

.hero-section {
  position: relative;
  height: 94vh;
}

.hero-wide-rectangle {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 800px;
  width: 60%;
  height: 85%;
  background-color: #0e222f95;
  z-index: 0;
}

.hero-narrow-rectangle {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 55%;
  min-width: 700px;
  height: 80%;
  background-color: #0e222f95;
  z-index: 0;
}

.hero-content-container {
  position: absolute;
  top: calc(80px + 45%);
  left: 70px;
  transform: translate(0%, -50%);
  width: 650px;
  max-width: 80%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-text {
  font-family: var(--font-family-roboto-medium);
  color: white;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 15px;
}

.text-large {
  font-size: 22px;
}

.hero-title {
  font-family: var(--font-family-roboto);
  color: white;
  font-size: 65px;
  line-height: 66px;
  display: flex;
  flex-wrap: wrap;
}

#myVideo {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover !important;
  z-index: -10;
  display: block;
}

.subhero-section {
  margin: 0 auto;
  width: 100%;
  background-color: #ffffff30;
  z-index: 7;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  background-color: #ffffffc7;
  border: 1px solid #ffffff85;
}

.digital-transitions-section .website-title {
  border-top: 1px solid #ddd;
}

.subhero-inner-container {
  padding: 175px 70px 50px 70px;
  display: grid;
  grid-template-columns: repeat(4, 23%);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1920px;
  margin: 0 auto;
  margin-bottom: 5%;
}

.c100 {
  height: 0.9em !important;
  width: 0.9em !important;
  box-shadow: inset 0px 10px 30px #ff2c2c00, 10px 10px 30px #ba000041;
}

.slice {
  transform: translate(-5px, -6px) !important;
}

.subhero-item {
  min-height: 230px;
  border-radius: 30px;
  width: 100%;
  background-color: #0000000a;
}

.subhero-percentage-image {
  max-width: 250px;
}

.subhero-percentage-image img {
  width: 100%;
}

.subhero-item-inner-container {
  position: relative;
  top: -40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.subhero-item-text {
  font-family: var(--font-family-roboto);
  text-align: center;
  padding: 30px 30px 0px 30px;
  font-size: 20px;
  position: relative;
  top: 0px;
  line-height: 30px;
}

.digital-transitions-section {
  width: 100%;
}

.website-title {
  font-family: var(--font-family-roboto);
  text-align: center;
  font-size: 65px;
  font-weight: 200;
  max-width: 1920px;
  margin: 0px 70px 120px;
  padding-top: 80px;
}

.website-title-wrapper {
  text-shadow: 0px 21px 12px #00000030;
  font-size: 5rem;
}

.website-title span {
  color: var(--color-red);
}

.website-title-superscript {
  font-size: 40px !important;
}

.website-title .hero-text {
  color: var(--color-red);
  width: 85%;
  margin: auto;
  margin-top: 40px;
}

.clini-detect-container {
  position: relative;
  background-color: #edf5fa;
  width: 100%;
  margin: auto;
  z-index: 2;
}

.clini-detect-inner-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0px 110px;
  display: flex;
  flex-direction: row;
}

.clini-detect-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 75px 0px;
}

.bold-text {
  font-family: var(--font-family-roboto-bold);
}

.regular-weight {
  font-family: var(--font-family-roboto-regular);
}

.font-size-15 {
  font-size: 15px;
}

.digital-transitions-small-title {
  font-size: 26px;
  font-family: var(--font-family-roboto);
}

.digital-transitions-subtitle {
  font-family: var(--font-family-roboto);
  font-size: 55px;
  margin: 10px 0px;
  line-height: 70px;
}

.digital-transitions-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0px;
}

.digital-transitions-list-item {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  font-size: 18px;
  font-family: var(--font-family-roboto);
  color: #00000060;
}

.digital-transitions-num-list-item {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  border-top: 1px solid #00000030;
  padding: 20px 0px;
}

.digital-transitions-num-list-number {
  font-family: var(--font-family-roboto-regular);
  font-size: 40px;
  text-align: left;
  letter-spacing: -1.04px;
}

.num-clr-blue {
  color: #0078ba !important;
}

.num-clr-green {
  color: #0baf87 !important;
}

.num-clr-red {
  color: #f65b6b !important;
}

.customers-quote-logo {
  width: 100%;
  max-width: 150px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.customers-quote-logo img {
  width: 100%;
}

.digital-transitions-num-list-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.digital-transitions-num-list-title {
  font-family: var(--font-family-roboto-medium);
  font-size: 18px;
  text-align: left;
  color: #00000090;
  text-transform: capitalize;
}

.digital-transitions-num-list-text {
  font-family: var(--font-family-roboto);
  font-size: 18px;
  line-height: 25px;
  text-align: left;
}

.digital-transitions-list-item b {
  font-family: var(--font-family-roboto-medium);
}

.digital-transitions-list-item-line {
  height: 3px;
  max-width: 30px;
  width: 60px;
  border-radius: 10px;
}

.digital-transitions-btn {
  margin-top: 20px;
}

.bg-blue {
  background-color: #0078ba !important;
}

.clr-blue {
  color: #0078ba !important;
}

.bg-red {
  background-color: var(--color-red) !important;
}

.clr-red {
  color: var(--color-red) !important;
}

.bg-green {
  background-color: var(--color-green) !important;
}

.clr-green {
  color: var(--color-green) !important;
}

.bg-gray {
  background-color: #ffffff30 !important;
}

.clini-detect-right {
  width: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.clini-detect-right img {
  width: 100%;
  min-height: 650px;
  object-fit: cover;
  max-width: 500px;
}

.AI-container {
  background-color: #f8efef;
  width: 100%;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* .pin-container { */
/*   height: 100vh; */
/*   scroll-snap-type: mandatory; */
/*   scroll-snap-points-y: repeat(100vh); */
/*   scroll-snap-type: y mandatory; */
/* } */

.AI-inner-container {
  /* max-width: 1920px; */
  position: relative;
  margin: 0 auto;
  padding: 0px 70px 0px 0px;
  display: flex;
  flex-direction: row;
  z-index: 2;
  background-color: #f8efef;
}

.AI-left {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.AI-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 75px 0px 75px 50px;
}

.AI-left img {
  width: 100%;
}

.desktop-image {
  display: block;
}

.mobile-image {
  display: none;
}

.empower-container {
  background-color: #f5f5f5;
  width: 100%;
  margin: auto;
  position: relative;
  z-index: 3;
}

.empower-right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empower-right img {
  width: 100%;
  object-fit: cover;
}

.segments-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 30px 70px;
  position: relative;
}

.segments-cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  position: relative;
  margin-top: 25px;
}

.segments-card-item {
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease-out;
  will-change: transform;
}

.segments-card-item:hover .segments-card-item-image {
  transform: scale(1.2);
  transition: all 0.5s ease-out;
  border-radius: 40px;
  will-change: transform;
}

.segments-card-item-image {
  scale: 1;
  transition: all 0.5s ease-out;
}

.segments-card-item-image img {
  width: 100%;
  object-fit: cover;
  height: 245px;
}

.segments-card-item-content {
  padding: 40px 60px;
  position: relative;
  border: 1px solid #2c5067;
}

.gradient-red {
  background: linear-gradient(180deg,
      rgba(77, 92, 101, 1) 0%,
      rgba(88, 48, 44, 1) 100%);
}

.gradient-blue {
  background: linear-gradient(180deg,
      rgba(77, 92, 101, 1) 0%,
      rgba(11, 70, 101, 1) 100%);
}

.gradient-green {
  background: linear-gradient(180deg,
      rgba(77, 92, 101, 1) 0%,
      rgba(11, 90, 71, 1) 100%);
}

.gradient-gray {
  background: linear-gradient(180deg,
      rgba(77, 92, 101, 1) 0%,
      rgba(46, 72, 90, 1) 100%);
}

.segments-card-item-content-back-container {
  background-color: #72889630;
  top: 100px;
  border-radius: 25px;
  height: 50px;
  width: 85%;
  z-index: -5;
  position: absolute;
  backdrop-filter: blur(50px);
}

.right-allingment {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.segments-card-item-title {
  font-family: var(--font-family-roboto);
  color: white;
  font-size: 45px;
  margin-bottom: 15px;
  line-height: 50px;
}

.segments-circle-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.segment-logo-design {
  width: 187px;
  height: 187px;
  border-radius: 50%;
  background-color: #ffffff7a;
  border: 2px solid #cb4238;
  /* box-shadow: 0px 24px 26px #00000050; */
  /* box-shadow: inset 0px 15px 10px #777; */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.segment-logo-design img {
  width: 70%;
  object-fit: cover;
}

.customers-section {
  background-color: #f6f6f7;
  /* margin-top: 150px; */
  padding-bottom: 100px;
}

.customers-inner-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 30px 15%;
}

.customers-content-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin-top: 50px;
}

.customers-left {
  position: relative;
  max-width: 23em;
}

.customers-left .customer-img {
  max-width: 23em;
  width: 100%;
  object-fit: cover;
  height: 350px;
  border-radius: 40px 40px 0 0;
}

.customers-left .dni-logo {
  height: 37px !important;
  width: 100% !important;
  object-fit: contain !important;
  border-radius: none !important;
}

.customers-doctor-info {
  background: transparent linear-gradient(0deg, #58302c 0%, #4d5c65 100%) 0% 0% no-repeat padding-box;
  padding: 30px 40px;
  border-radius: 0 0 40px 40px;
  width: 23em;
}

.customers-doctor-name {
  font-size: 30px;
  font-family: var(--font-family-roboto);
  line-height: 45px;
  color: #fff;
}

.customers-doctor-position {
  font-size: 15px;
  letter-spacing: 3px;
  font-family: var(--font-family-roboto-regular);
  color: #c84238;
  text-transform: uppercase;
}

.customers-circle-image-container {
  position: absolute;
  width: 140px;
  top: 0px;
  right: 0px;
  transform: translate(+50%, -40%);
}

.customers-logo-design {
  height: 149px;
  width: 149px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff6e;
  filter: drop-shadow(0px 11px 3px #00000040);
  border: 2px solid #c84238;
  opacity: 1;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.testimonial-quote-inner-container {
  height: 200px;
  overflow-y: auto;
}

.customers-logo-design img {
  width: 60%;
  object-fit: cover;
}

.customers-right {
  display: flex;
  flex-direction: column;
  padding: 0px 100px 0px 100px;
  gap: 30px;
  justify-content: space-between;
  height: 450px;
}

.customers-quote {
  position: relative;
  font-size: 18px;
  font-family: var(--font-family-roboto);
  line-height: 35px;
}

.customers-quote-img-container {
  position: absolute;
  top: -40px;
  left: 50px;
}

.customers-slider-buttons {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.customers-slider-buttons button {
  background-color: #c84238;
  border: none;
  height: 34px;
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

.customers-slider-buttons button img {
  width: 13px;
  height: 11px;
}

.customers-slider-btn-left {
  transform: rotate(180deg);
}

.customers-sub-section {
  position: relative;
  background-color: #ededef;
  width: 100%;
  padding: 150px 0px 75px 0px;
  z-index: 2;
}

.customers-sub-section-inner-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0px 105px;
}

.customers-sub-section-news-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
}

.customers-sub-section-news-item {
  width: 100%;
}

.customers-sub-section-news-item-image img {
  width: clamp(200px, 100%, 430px);
  height: clamp(10em, 40vh, 45vh);
  /* max-width: 17em; */
  object-fit: cover;
}

.customers-sub-section-news-item-content {
  position: relative;
  top: -75px;
  left: 50px;
  background-color: #fdfdfd41;
  padding: 30px;
  border-radius: 40px;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-family: var(--font-family-roboto);
}

.customers-sub-section-news-item-date {
  font-size: 14px;
  color: #00000050;
  line-height: 35px;
}

.customers-sub-section-news-item-title {
  font-size: 30px;
  color: black;
  line-height: 34px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  /* number of lines to show */
  -webkit-box-orient: vertical;
}

.customers-sub-section-news-item-description {
  font-family: var(--font-family-roboto);
  font-size: 16px;
  color: #00000050;
  line-height: 30px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  -webkit-box-orient: vertical;
}

.customers-sub-section-news-item-button-container {
  display: flex;
  justify-content: flex-end;
}

.customers-sub-section-news-item-button {
  background-color: transparent;
  border: none;
  color: #c84238;
  font-family: var(--font-family-roboto-bold);
  font-size: 12px;
  line-height: 25px;
  letter-spacing: 2.4px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid transparent;
  transition: all 0.5s ease-out;
}

.customers-sub-section-news-item-button:hover {
  cursor: pointer;
  /* border-bottom: 1px solid #c8423870; */
  /* transition: all 0.5s ease-out; */
}

.customers-sub-section-news-item-button:hover img {
  transform: translateX(10px);
  transition: all 0.5s ease-out;
}

.customers-sub-section-news-item-button img {
  height: 12px;
  transform: translateX(0px);
  transition: all 0.5s ease-out;
}

.customers-sub-section-news-item-button {
  position: relative;
}

.customers-sub-section-news-item-button::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 1px;
  opacity: 0;
  background-color: #c8423870;
  transition: all 0.5s ease-out;
}

.customers-sub-section-news-item-button:hover::after {
  width: calc(100% + 10px);
  opacity: 1;
  transition: all 0.5s ease-out;
}

.footer-section {
  background-color: #182b38;
  padding: 100px 0px 50px 0px;
  position: relative;
  overflow: hidden;
}

.footer-inner-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0px 105px;
}

.footer-row-1 {
  display: grid;
  grid-template-columns: auto 2fr;
  gap: 120px;
}

.footer-subcontainer-1 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 120px;
}

.footer-item {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-decoration: none;
  font-family: var(--font-family-roboto-regular);
  font-size: 14px;
}

.weight-regular {
  font-family: var(--font-family-roboto-regular) !important;
  color: #f65b6b;
  font-size: 14px !important;
  letter-spacing: 2.8px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-list a {
  text-decoration: none;
  color: white;
  font-family: var(--font-family-roboto-regular);
  font-size: 14px;
  line-height: 25px;
}

.footer-list li a {
  color: #ffffff;
  opacity: 1;
  transition: all 0.5s ease-out;
}

.footer-list li a:hover {
  color: #ffffff;
  opacity: 0.6;
  transition: all 0.5s ease-out;
}

.footer-subcontainer-2 {
  display: flex;
  justify-content: space-between;
}

.footer-item-inline {
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: flex-start;
  font-weight: regular;
}

.footer-login {
  letter-spacing: 2.8px;
  font-family: var(--font-family-roboto-bold) !important;
  border-bottom: 1px solid transparent;
  transition: all 0.5s ease-out;
}

.footer-login:hover {
  border-bottom: 1px solid #ffffff70;
  transition: all 0.5s ease-out;
}

.font-bold {
  font-family: var(--font-family-roboto-bold) !important;
}

.footer-subcontainer-3 {
  border-bottom: 1px solid #ffffff40;
  padding: 30px 0px;
  display: flex;
  justify-content: flex-end;
}

.footer-socials-container {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.footer-socials-container a {
  text-decoration: none;
  color: white;
  border: 1px solid #ffffff40;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-out;
}

.footer-socials-container a:hover {
  cursor: pointer;
  background-color: #f65b6b;
  transition: all 0.5s ease-out;
}

.footer-subcontainer-6 a {
  z-index: 1;
}

.footer-subcontainer-6 a:hover {
  color: #f65b6b;
  transition: all 0.5s ease-out;
}

.footer-subcontainer-4 {
  display: flex;
  flex-direction: row;
  gap: 50px;
  padding: 30px 0px;
  justify-content: flex-end;
}

.footer-subcontainer-4 a {
  text-decoration: none;
  color: white;
  font-family: var(--font-family-roboto);
  font-size: 13px;
  font-weight: regular;
  transition: all 0.5s ease-out;
}

.footer-subcontainer-4 a:hover {
  color: #f65b6b;
  transition: all 0.5s ease-out;
}

.footer-subcontainer-5 {
  display: flex;
  flex-direction: row-reverse;
  gap: 50px;
  padding: 70px 0px 25px 0px;
  align-items: flex-end;
  justify-content: space-between;
}

.footer-subcontainer-5 p {
  font-family: var(--font-family-roboto);
  font-size: 65px;
  color: white;
}

.footer-subcontainer-5 p span {
  color: #f65b6b;
  font-family: var(--font-family-roboto-regular);
}

.footer-subcontainer-6 {
  font-family: var(--font-family-roboto);
  font-size: 11px;
  color: #ffffff40;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-circles-image {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 23%;
}

.footer-circles-image img {
  width: 100%;
}

.about-hero-section {
  background-image: linear-gradient(to right, #0e222f 0%, #0e222f00 100%),
    url("../assets/about/banner-img.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding-left: 75px;
}

.blog-post-hero-section {
  background-image: linear-gradient(to right, #0e222f 0%, #0e222f00 100%);
}

.about-hero-title {
  font-family: var(--font-family-roboto);
  font-size: 80px;
  letter-spacing: -3.2px;
  line-height: 90px;
  color: #ffffff;
  text-shadow: 0px 21px 12px #00000029;
  max-width: 50%;
}

.about-subhero-section {
  padding: 100px 75px;
  background-color: #ffffff80;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  margin-top: -50px;
}

.about-subhero-inner-container {
  max-width: 1920px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: left;
  position: relative;
}

.about-subhero-title {
  font-family: var(--font-family-roboto);
  font-size: 30px;
  letter-spacing: -0.8px;
  line-height: 40px;
  color: #000000;
  width: 60%;
}

.about-subhero-subtitle {
  font-family: var(--font-family-roboto-medium);
  font-size: 18px;
  line-height: 25px;
  color: #c84238;
  width: 50%;
}

.about-subhero-image {
  position: absolute;
  right: 125px;
  top: 50%;
  transform: translateY(-50%);
}

.about-mission-slider-section {
  background-color: #f7eded;
}

.about-mission-slider-inner {
  padding: 0px 0px;
  display: flex;
  gap: 100px;
  align-items: center;
  justify-content: center;
  padding: 50px 75px;
  width: 70%;
  margin: 0px auto;
}

.about-mission-slider-left {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* background-color: #efdcdc !important; */
  overflow: hidden;
}

.about-mission-slider-left img {
  height: 100%;
  object-fit: cover;
  border-radius: 0px;
}

.about-mission-slider-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.about-mission-slider-right .about-leadership-testimonial-name {
  color: #f65b6a;
  font-size: 40px;
  line-height: 45px;
}

.about-mission-slider-right .about-leadership-testimonial-position {
  margin-top: -30px;
}

.about-mission-slider-title {
  font-family: var(--font-family-roboto);
  font-size: 55px;
  color: #f65b6b;
  letter-spacing: -1.1px;
  line-height: 70px;
}

.about-mission-slider-text {
  font-family: var(--font-family-roboto);
  font-size: 24px;
  color: #000000;
  letter-spacing: -0.6px;
  line-height: 35px;
  width: 100%;
}

.text-bolder {
  font-family: var(--font-family-roboto-bold);
}

.about-mission-button-background {
  background-color: #f65b6b !important;
}

.about-leadership-tabs {
  background-color: #f4f4f4;
  padding-top: 30px;
}

.about-leadership-tabs-buttons {
  display: flex;
  background-color: #ffffff;
  padding: 10px 10px 10px 80px;
  border-radius: 0px 1000px 1000px 0px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  margin-top: -50px;
}

.about-leadership-tabs-buttons button {
  padding: 11px;
  background-color: transparent;
  border-radius: 1000px;
  font-family: var(--font-family-roboto-bold);
  font-size: 15px;
  letter-spacing: 3.5px;
  border: none;
  color: #000000;
  text-transform: uppercase;
  width: fit-content;
  padding: 10px 25px;
  white-space: nowrap;
  cursor: pointer;
}

.team-tab-active {
  background-color: #faeff0 !important;
  color: #c84238 !important;
}

.board-tab-active {
  background-color: #faeff0 !important;
  color: #c84238 !important;
}

.advisors-tab-active {
  background-color: #faeff0 !important;
  color: #c84238 !important;
}

.about-leadership-tab-team-cards {
  padding: 62px 75px 100px 75px;
  /* display: flex;
  flex-direction: row;
  flex-wrap: wrap; */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
}

.about-leadership-tab-team-card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-leadership-tab-team-card-item-img-container {
  max-width: 240px;
  aspect-ratio: 1/1;
  border-radius: 1000px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  box-shadow: 0px 23px 36px #c842386c;
  margin-bottom: 40px;
  position: relative;
}

.about-leadership-tab-team-card-item-img-container img {
  width: 100%;
  display: flex;
  object-fit: cover;
}

.about-leadership-tab-team-card-item-img-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff10;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: 93px;
  height: 81px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff50;
  /* display: none; */
  cursor: pointer;
  opacity: 0;
  transition: all 0.5s ease-out;
}

.about-leadership-tab-team-card-item-img-container:hover .about-leadership-tab-team-card-item-img-hover {
  display: flex;
  opacity: 1;
  /* transform: translate(-50%, -50%) scale(1); */
  transition: all 0.5s ease-out;
}

.about-leadership-tab-team-card-item-img-hover-text {
  font-family: var(--font-family-roboto-medium);
  font-size: 14px;
  text-align: center;
  line-height: 35px;
  color: #ffffff;
}

.about-leadership-tab-team-card-item-img-hover img {
  width: 30px;
}

.about-leadership-tab-team-card-item-name {
  font-family: var(--font-family-roboto);
  font-size: 27px;
  text-align: center;
  line-height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.about-leadership-tab-team-card-item-position {
  font-family: var(--font-family-roboto-regular);
  font-size: 14px;
  text-align: center;
  line-height: 22px;
  letter-spacing: 2.8px;
  color: #c84238;
  text-transform: uppercase;
}

.about-leadership-testimonial {
  background-color: #f65b6b;
  display: grid;
  gap: 0px;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  padding: 0px 0px;
  max-height: fit-content;
  overflow: hidden;
}

.about-leadership-testimonial-img {
  max-width: 350px;
  max-height: 350px;
  border-radius: 1000px;
  overflow: hidden;
  display: flex;
  width: 100%;
  align-self: center;
  justify-self: flex-end;
  /* box-shadow: 0px 23px 36px #c84238; */
  aspect-ratio: 1/1;
  object-fit: cover;
}

.about-leadership-testimonial-img img {
  width: 100%;
}

.about-leadership-testimonial-right {
  width: 100%;
  padding: 125px 0px 125px 100px;
}

.about-leadership-quote-img {
  position: relative;
  left: 50px;
}

.about-leadership-testimonial-text {
  font-family: var(--font-family-roboto);
  color: #ffffff;
  font-size: 20px;
  line-height: 35px;
  margin-top: 30px;
  margin-bottom: 0px;
  padding-right: 75px;
}

.about-leadership-testimonial-name-img {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
}

.about-leadership-testimonial-name {
  font-family: var(--font-family-roboto);
  color: #ffffff;
  font-size: 55px;
  line-height: 70px;
  letter-spacing: -1.1px;
}

.about-leadership-testimonial-logo {
  width: 48px;
  height: 48px;
}

.about-leadership-testimonial-logo img {
  width: 100%;
  position: relative;
  top: -10px;
  right: 20px;
}

.about-leadership-testimonial-position {
  font-family: var(--font-family-roboto-bold);
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 6.48px;
  letter-spacing: 4.5px;
}

.about-awards-and-certifications {
  padding: 50px 0px;
}

.about-awards-and-certifications_awards {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 75px;
  margin-top: -75px;
}

.about-career-oportunities-inner-container {
  position: relative;
  background-color: #edf5fa;
  margin: 0 auto;
  padding: 0px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  z-index: 1;
}

.about-career-oportunities-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 100px 0px 75px;
}

.about-career-oportunities-title {
  font-family: var(--font-family-roboto-medium);
  font-size: 18px;
  color: #0079ba;
  line-height: 25px;
}

.about-career-oportunities-img {
  justify-content: center;
  width: 100%;
  height: 100%;
  align-self: center;
}

.about-career-oportunities-img img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}

.board-shadow {
  box-shadow: 0px 23px 36px #1c87c16b !important;
}

.board-color {
  color: #0079ba !important;
}

.board-bg {
  background-color: #0079ba !important;
}

.board-shadow-2 {
  box-shadow: 0px 23px 36px #005481 !important;
}

.advisors-shadow {
  box-shadow: 0px 23px 36px #25b7946b !important;
}

.advisors-color {
  color: #25b794 !important;
}

.advisors-bg {
  background-color: #0baf87 !important;
}

.advisors-shadow-2 {
  box-shadow: 0px 23px 36px #007c5e !important;
}

@media screen and (max-width: 1250px) {
  .header-links {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .header-container {
    height: 70px;
  }

  .mobile-header-links {
    display: flex;
    flex-direction: column;
    align-items: end;
  }

  .header-logo-container {
    height: 30px;
  }

  .header-logo-container img {
    height: 30px;
  }

  .header-links {
    display: none;
  }

  .display-none {
    display: none;
  }

  .header-login-btn {
    display: none;
  }

  .about-hero-title {
    font-size: 55px;
    line-height: 70px;
    letter-spacing: -1.1px;
  }

  .about-leadership-tab-team-card-item-img-container {
    max-width: 180px;
    aspect-ratio: 1/1;
  }

  .about-leadership-tab-team-card-item-name {
    font-size: 24px;
    line-height: 36px;
  }

  .about-mission-slider-inner {
    width: 80%;
    padding: 50px 0px;
    gap: 50px;
  }
}

@media screen and (max-width: 900px) {
  .about-leadership-testimonial-right {
    width: 100%;
    padding: 25px 0px 25px 50px;
  }

  .website-btn {
    padding: 15px 25px;
  }

  .header-container {
    height: 70px;
  }

  .header-logo-container {
    height: 30px;
  }

  .header-logo-container img {
    height: 30px;
  }

  .header-links {
    display: none;
  }

  .display-none {
    display: none;
  }

  .header-login-btn {
    display: none;
  }

  .hero-wide-rectangle {
    top: 10%;
    max-width: 95%;
    height: 70%;
    min-width: 90%;
  }

  .hero-narrow-rectangle {
    bottom: 10%;
    max-width: 75%;
    height: 70%;
    min-width: 80%;
  }

  .hero-content-container {
    position: absolute;
    top: calc(80px + 44%);
    left: 70px;
    transform: translate(0%, -50%);
    width: 400px;
    max-width: 80%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .hero-text {
    font-size: 15px;
    /* letter-spacing: 5.4px; */
    line-height: 20px;
    margin-bottom: 25px;
    font-family: var(--font-family-roboto-bold);
  }

  .hero-title {
    font-size: 35px;
    line-height: 40px;
  }

  /* .mobile-header-links {
    display:flex;
    flex-direction: column;
  } */
  .subhero-inner-container {
    padding: 135px 18px 50px 18px;
    grid-template-columns: repeat(4, 1fr);
  }

  .subhero-item {
    height: 250px;
    margin-top: 40px;
    max-width: 300px;
    align-self: center;
    justify-self: center;
  }

  .website-title {
    font-size: 50px;
    margin: 0px 20px 30px;
  }

  .website-title span {
    color: var(--color-red);
  }

  .clini-detect-inner-container {
    padding: 0px 30px;
    flex-direction: row;
    align-items: center;
  }

  .clini-detect-left {
    padding: 75px 0px;
    width: 100%;
  }

  .clini-detect-container {
    background-color: #edf5fa;
    width: 100%;
    margin: auto;
    height: auto;
  }

  .digital-transitions-subtitle {
    font-size: 35px;
    line-height: 50px;
  }

  .digital-transitions-list-item-line {
    min-width: 25px;
  }

  .clini-detect-right {
    justify-content: flex-end;
    width: 100%;
    align-self: flex-end;
  }

  .clini-detect-right img {
    width: 90%;
    min-height: 500px;
  }

  /* .AI-container{ */
  /*   height: 30vh !important; */
  /* } */
  .AI-inner-container {
    padding: 0px;
    flex-direction: row;
    height: auto;
  }

  .AI-right {
    padding: 75px 0px 75px 25px;
    width: 100%;
  }

  .AI-left {
    width: 100%;
  }

  .empower-right {
    width: 100%;
  }

  .desktop-image {
    display: block;
  }

  .mobile-image {
    display: none;
  }

  .segments-container {
    padding: 0px 20px;
  }

  .segments-cards-container {
    grid-template-columns: 1fr 1fr;
  }

  .segments-card-item-content {
    padding: 40px 20px;
  }

  .segments-card-item-title {
    font-size: 30px;
  }

  .segment-logo-design {
    width: 120px;
    height: 120px;
  }

  .customers-section {
    /* margin-top: 120px; */
    padding-bottom: 120px;
  }

  .customers-inner-container {
    padding: 0px 30px;
  }

  .customers-left {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .customers-left .customer-img {
    width: 85%;
  }

  .customers-doctor-info {
    width: 85%;
  }

  .customers-left img {
    width: 80%;
    object-fit: cover;
  }

  .customers-logo-design {
    width: 100px;
    height: 100px;
  }

  .customers-content-container {
    grid-template-columns: 1fr 1fr;
  }

  .customers-circle-image-container {
    width: 120px;
    transform: translate(+10%, -40%);
  }

  .customers-logo-design img {
    width: 60%;
    object-fit: cover;
  }

  .customers-doctor-name {
    font-size: 25px;
    line-height: 28px;
    margin-bottom: 10px;
  }

  .customers-doctor-position {
    font-size: 12px;
  }

  .customers-right {
    padding: 25px 50px 0px 50px;
    gap: 20px;
  }

  .customers-quote {
    font-size: 16px;
    line-height: 26px;
  }

  .customers-quote-img-container {
    left: 25px;
  }

  .customers-sub-section {
    background-color: #ededef;
    width: 100%;
    padding: 120px 0px 80px 0px;
  }

  .customers-sub-section-inner-container {
    padding: 0px 30px;
  }

  .customers-sub-section-news-container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
  }

  .customers-sub-section-news-item-content {
    left: 0px;
    padding: 20px;
    border-radius: 20px;
    top: -30px;
  }

  .customers-sub-section-news-item-date {
    font-size: 10px;
    color: #00000050;
    line-height: 20px;
  }

  .customers-sub-section-news-item-title {
    font-size: 20px;
    color: black;
    line-height: 20px;
  }

  .customers-sub-section-news-item-description {
    font-size: 12px;
    color: #00000050;
    line-height: 20px;
  }

  .customers-sub-section-news-item-button-container {
    display: flex;
    justify-content: flex-end;
  }

  .customers-sub-section-news-item-button {
    background-color: transparent;
    border: none;
    color: #c84238;
    font-family: var(--font-family-roboto-bold);
    font-size: 12px;
    line-height: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .customers-sub-section-news-item-button img {
    height: 12px;
  }

  .footer-section {
    background-color: #182b38;
    padding: 100px 0px 50px 0px;
    position: relative;
  }

  .footer-inner-container {
    padding: 0px 105px;
  }

  .footer-item {
    min-width: 200px;
  }

  .footer-row-1 {
    grid-template-columns: 1fr;
    gap: 100px;
  }

  .footer-subcontainer-1 {
    justify-content: flex-start;
    gap: 75px;
  }

  .footer-subcontainer-2 {
    display: flex;
    justify-content: flex-start;
    gap: 75px;
  }

  .footer-item-inline {
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 25px;
    margin-top: -5px;
  }

  .footer-subcontainer-3 {
    border-bottom: 1px solid #ffffff40;
    padding: 60px 0px 30px 0px;
    display: flex;
    justify-content: center;
  }

  .footer-subcontainer-4 {
    justify-content: center;
  }

  .footer-subcontainer-5 {
    flex-direction: column;
    padding: 70px 0px 30px 0px;
    align-items: flex-start;
  }

  .footer-subcontainer-5 p {
    font-size: 35px;
  }

  .footer-subcontainer-6 {
    line-height: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-circles-image {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 65%;
  }

  .about-hero-section {
    padding-left: 24px;
  }

  .about-subhero-section {
    padding: 100px 24px;
  }

  .about-subhero-image {
    right: 25px;
    width: 150px;
  }

  .about-subhero-image img {
    width: 100%;
    height: auto;
  }

  .about-subhero-title {
    width: 80%;
    font-size: 32px;
    line-height: 40px;
  }

  .about-subhero-subtitle {
    width: 70%;
    font-size: 14px;
    line-height: 20px;
  }

  .about-mission-slider-section {
    gap: 40px;
  }

  .about-mission-slider-left img {
    margin-left: 0px;
    min-height: 500px;
  }

  .about-mission-slider-text {
    font-size: 24px;
    line-height: 30px;
    min-width: 200px;
    width: 100%;
  }

  .about-leadership-tabs-buttons {
    width: 100%;
    overflow-x: auto;
    border-radius: 0px;
  }

  .about-leadership-tabs-buttons button {
    font-size: 15px;
  }

  .about-leadership-tab-team-cards {
    gap: 30px;
  }

  .about-leadership-tab-team-card-item-img-container {
    max-width: 150px;
    max-height: 150px;
  }

  .about-leadership-tab-team-card-item-name {
    font-size: 20px;
    line-height: 30px;
  }

  .about-leadership-tab-team-card-item-position {
    font-size: 12px;
    line-height: 16px;
  }

  .about-leadership-testimonial {
    gap: 0px;
  }

  .about-leadership-testimonial-text {
    line-height: 26px;
    padding-right: 32px;
  }

  .about-leadership-testimonial-name {
    font-size: 40px;
  }

  .about-leadership-testimonial-position {
    font-size: 15px;
  }

  .about-awards-and-certifications_awards {
    gap: 0px;
    margin-top: 0px;
  }

  .about-award-item img {
    width: 70%;
    height: auto;
  }

  .about-leadership-tabs-buttons {
    margin-top: 0px;
  }

  .about-career-oportunities-left {
    padding: 0px 50px 0px 32px;
  }

  .about-mission-slider-inner {
    width: 100%;
    padding: 50px 32px;
    gap: 25px;
  }

  .about-mission-slider-right .about-leadership-testimonial-name {
    font-size: 32px;
  }
}

@media screen and (max-width: 480px) {
  /* .header-container {
    padding: 0px 20px;
  } */

  .website-btn {
    padding: 15px 25px;
    gap: 10px;
    font-size: clamp(8px, 2.9vw, 14px);
  }

  .website-btn img {
    height: 10px;
  }

  .customers-sub-section-news-item-button {
    font-size: clamp(8px, 2.9vw, 14px) !important;
  }

  .customers-sub-section-news-item-button img {
    height: 12px;
  }

  .hero-content-container {
    left: 20px;
  }

  .subhero-inner-container {
    grid-template-columns: 1fr 1fr;
  }

  .subhero-percentage-image {
    max-width: fit-content;
  }

  .subhero-item-text {
    font-size: 18px;
    padding: 30px 20px;
  }

  .website-title {
    padding: 60px 15px;
    font-size: 40px;
  }

  .website-title-wrapper {
    font-size: 4rem;
  }

  .website-title-superscript {
    font-size: 25px !important;
  }

  .website-title .hero-text {
    width: 100%;
  }

  .clini-detect-inner-container {
    flex-direction: column;
  }

  .clini-detect-left {
    width: 100%;
  }

  .clini-detect-right {
    width: 100%;
  }

  .digital-transitions-subtitle {
    line-height: 50px;
  }

  .digital-transitions-list-item-line {
    min-width: 25px;
  }

  .AI-inner-container {
    flex-direction: column-reverse;
    padding: 0px;
  }

  .AI-left img {
    width: 100%;
  }

  .AI-left {
    width: 100%;
    padding: 50px 0px 50px 0px;
  }

  .AI-right {
    width: 100%;
    padding: 50px 20px 50px 20px;
  }

  .desktop-image {
    display: none;
  }

  .mobile-image {
    display: block;
  }

  .empower-right {
    width: 100%;
    padding-bottom: 50px;
  }

  .segments-container {
    margin-top: 50px;
  }

  .segments-cards-container {
    grid-template-columns: 1fr;
    margin-top: 0px;
  }

  .segments-card-item-content {
    padding: 30px 25px;
  }

  .segments-circle-logo {
    left: 10%;
  }

  .right-allingment {
    align-items: flex-start;
  }

  .customers-section {
    /* margin-top: 75px; */
    padding-bottom: 75px;
  }

  .customers-logo-design {
    width: 100px;
    height: 100px;
  }

  .customers-content-container {
    grid-template-columns: 1fr;
  }

  .customers-right {
    padding: 75px 0px 0px 0px;
  }

  .customers-sub-section-inner-container {
    padding: 0px 40px 0px 20px;
  }

  .customers-sub-section-news-container {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .customers-sub-section-news-item-content {
    left: 20px;
    padding: 30px;
    border-radius: 40px;
  }

  .customers-sub-section-news-item-date {
    font-size: 14px;
    color: #00000050;
    line-height: 35px;
  }

  .customers-sub-section-news-item-title {
    font-size: 30px;
    color: black;
    line-height: 34px;
  }

  .customers-sub-section-news-item-description {
    font-size: 16px;
    color: #00000050;
    line-height: 30px;
  }

  .footer-inner-container {
    padding: 0px 20px;
  }

  .footer-subcontainer-1 {
    gap: 50px;
  }

  .footer-subcontainer-2 {
    gap: 50px;
  }

  .footer-item-inline {
    gap: 25px;
    margin-top: -5px;
  }

  .footer-item {
    min-width: 120px;
  }

  .weight-regular {
    font-size: clamp(8px, 2.9vw, 14px);
  }

  .about-hero-section {
    padding: 0px 32px;
    height: 60vh;
  }

  .about-hero-title {
    font-size: 39px;
    /* line-height: 90px; */
    letter-spacing: -1.56;
    width: 100%;
    text-align: left;
    max-width: 100%;
  }

  .about-subhero-section {
    padding: 100px 32px;
  }

  .about-subhero-title {
    font-size: 39px;
    line-height: 40px;
    width: 100%;
    padding-bottom: 30px;
  }

  .about-subhero-image {
    right: -32px;
    width: 100px;
  }

  .about-subhero-subtitle {
    font-size: 15px;
    line-height: 20px;
    width: 100%;
  }

  .about-mission-slider-section {
    display: flex;
    flex-direction: column;
  }

  .about-mission-slider-left {
    width: 100%;
  }

  .about-mission-slider-left img {
    margin-left: 0px;
    min-height: 400px;
  }

  .about-mission-slider-right {
    width: 100%;
    padding-left: 32px;
    gap: 50px;
    overflow-x: hidden;
  }

  .about-leadership-tabs {
    padding-top: 26px;
  }

  .website-title {
    font-size: 50px;
    margin-bottom: 0px;
  }

  .about-leadership-tabs-buttons {
    padding: 10px 24px 10px 18px;
    gap: 0px;
    margin: 30px 0px -30px 0px;
  }

  .about-leadership-tabs-buttons button {
    font-size: 14px;
  }

  .about-leadership-tab-team-cards {
    grid-template-columns: 1fr;
    padding: 100px 32px;
  }

  .about-leadership-tab-team-card-item-img-container {
    max-width: 240px;
    max-height: 240px;
  }

  .about-leadership-tab-team-card-item-name {
    font-size: 27px;
    line-height: 41px;
  }

  .about-leadership-testimonial {
    flex-direction: column;
    gap: 20px;
  }

  .about-leadership-testimonial-img {
    margin: 90px 30px;
  }

  .about-leadership-testimonial-right {
    width: 100%;
    padding: 0px 32px 75px 32px;
  }

  .about-awards-and-certifications_awards {
    flex-wrap: wrap;
    padding: 0px 32px;
    align-items: center;
    justify-content: center;
    padding-top: 0px;
    flex-direction: column;
    gap: 20px;
  }

  .about-award-item img {
    width: 100%;
  }

  .about-career-oportunities-inner-container {
    flex-direction: column;
  }

  .about-career-oportunities-inner-container {
    padding: 0px;
  }

  .about-career-oportunities-left {
    width: 100%;
    padding: 90px 40px 50px 32px;
  }

  .about-career-oportunities-img {
    width: 100%;
  }

  .about-career-oportunities-title {
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 9.36px;
    text-align: left;
  }

  .about-mission-slider-inner {
    flex-direction: column;
    padding: 0px 0px;
    width: 100%;
    gap: 0px;
    padding-bottom: 50px;
  }

  .about-leadership-testimonial-text {
    padding-right: 0px;
  }

  .testimonial-width-img {
    width: 100%;
  }
}

@media (orientation: landscape) and (max-width: 900px) {
  .about-hero-section {
    height: 80vh;
  }
}

@media (orientation: landscape) and (max-width: 480px) {
  .hero-section {
    height: 200vh;
  }

  .subhero-inner-container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .customers-sub-section-news-item-title {
    font-size: 20px;
    color: black;
    line-height: 20px;
  }

  .customers-sub-section-news-item-description {
    font-size: 12px;
    color: #00000050;
    line-height: 20px;
  }

  .customers-sub-section-news-item-content {
    left: 00px;
    padding: 20px;
    border-radius: 20px;
  }

  .about-hero-section {
    height: 80vh;
  }
}

@media screen and (max-width: 480px) {
  .about-career-oportunities-inner-container {
    grid-template-columns: 1fr;
  }

  .about-career-oportunities-left {
    padding: 90px 32px 50px 32px;
  }

  .about-leadership-testimonial {
    grid-template-columns: 1fr;
  }

  .about-mission-slider-left img {
    margin-left: 0px;
  }

  .about-leadership-testimonial {
    max-height: fit-content;
  }

  .customers-left {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: 100%;
  }

  .customers-content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .customers-left .customer-img {
    margin: 0px;
    width: 100%;
  }

  .customers-doctor-info {
    width: 100%;
  }
}

@media screen and (max-width: 360px) {
  .about-hero-title {
    font-size: 28px;
  }

  .about-leadership-tabs-buttons {
    gap: 0px;
  }

  .about-leadership-tabs-buttons button {
    font-size: 12px;
  }

  .website-title {
    font-size: 40px;
  }

  .about-leadership-testimonial-name {
    font-size: 40px;
  }

  .about-leadership-testimonial-position {
    font-size: 14px;
  }

  .about-awards-and-certifications_awards {
    flex-direction: column;
    gap: 20px;
  }

  .footer-subcontainer-1 {
    flex-direction: column;
  }

  .footer-subcontainer-2 {
    flex-direction: column;
  }

  .footer-row-1 {
    gap: 50px;
  }

  .about-leadership-testimonial-img {
    max-width: 300px;
    max-height: 300px;
  }
}

.about-leadership-testimonial-list-item {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  border-top: 1px solid #00000030;
  padding: 20px 0px;
}

.about-leadership-testimonial-list-number {
  font-family: var(--font-family-roboto-regular);
  font-size: 40px;
  text-align: left;
  letter-spacing: -1.04px;
}

.about-leadership-testimonial-list-title {
  font-family: var(--font-family-roboto);
  font-size: 18px;
  text-align: left;
}

#popupContainer {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1169px;
  height: 597px;
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 1px solid #ffffff;
  border-radius: 25px;
  opacity: 1;
  z-index: 9999;
}

.popupContainer.absolute {
  position: absolute;
}

#popupImageContainer {
  position: absolute;
  top: 74px;
  left: 94px;
  width: 324px;
  height: 324px;
  background: transparent 0% 0% no-repeat padding-box;
  opacity: 1;
  border-radius: 50%;
}

#popupImageContainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
}

#popupName {
  position: absolute;
  top: 74px;
  left: 487.05px;
  width: 300px;
  height: 35px;
  text-align: left;
  font: normal normal 300 27px/41px Roboto;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
}

#popupPosition {
  position: absolute;
  top: 110.9px;
  left: 487.05px;
  width: 600px;
  height: 19px;
  text-align: left;
  font: normal normal normal 14px/22px Roboto;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  opacity: 1;
}

.popupContent-info {
  position: absolute;
  top: 179.29px;
  left: 486.05px;
  width: 589px;
  height: 257px;
  text-align: left;
  font: normal normal 300 15px/30px Roboto;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
  overflow-y: scroll;
}

.popupContent-logo {
  position: absolute;
  top: 488.92px;
  left: 486.05px;
  width: 147px;
  height: 38px;
  background: transparent 0% 0% no-repeat padding-box;
  opacity: 1;
}

.close-popup-btn {
  position: absolute;
  top: 43.33px;
  left: 1095.95px;
  opacity: 1;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.close-popup-btn img {
  width: 17px;
  height: 15px;
  opacity: 1;
  font-size: 2px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.28);
  z-index: 999;
}

/*  RED */

/* #popupSection {
  width: 100%;
  height: 500px;
  padding-left: 136px;
  padding-right: 136px;
}

.popupContentSection {
  position: relative;
}

#popupImageContainerSection {
  position: absolute;
  top: 74px;
  left: 94px;
  width: 324px;
  height: 324px;
  background: transparent 0% 0% no-repeat padding-box;
  opacity: 1;
  border-radius:50% ;
}
#popupImageContainerSection img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
}
#popupNameSection {
  position: absolute;
  top: 330.92px;
  left: 486.05px;
  width: 500px;
  height: 35px;
  text-align: left;
  font: normal normal 300 40px/41px Roboto;
  letter-spacing: 0px;
  color: white;
  opacity: 1;
}
#popupPositionSection {
  position: absolute;
  top: 378.9px;
  left: 487.05px;
  width: 600px;
  height: 19px;
  text-align: left;
  font: normal bold normal 21px/30px Roboto;
  letter-spacing: 2.8px;
  color: black;
  text-transform: uppercase;
  opacity: 1;
}

#popupInfoSection {
  position: absolute;
  top: 115.29px;
  left: 486.05px;
  width: 589px;
  height: 166px;
  text-align: left;
  font: normal normal 300 20px/35px Roboto;
  letter-spacing: 0px;
  color: white;
  opacity: 1;
}
.popupInfoSectionImage {
  position: absolute;
  top: 316.29px;
  left: 742.05px;
} */

/* Blue */
/* #popupSectionBlue {
  width: 100%;
  height: 500px;
  padding-left: 136px;
  padding-right: 136px;
}

.popupContentSectionBlue {
  position: relative;
}

#popupImageContainerSectionBlue {
  position: absolute;
  top: 74px;
  left: 94px;
  width: 324px;
  height: 324px;
  background: transparent 0% 0% no-repeat padding-box;
  opacity: 1;
  border-radius:50% ;
}
#popupImageContainerSectionBlue img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
}
#popupNameSectionBlue {
  position: absolute;
  top: 330.92px;
  left: 486.05px;
  width: 500px;
  height: 35px;
  text-align: left;
  font: normal normal 300 40px/41px Roboto;
  letter-spacing: 0px;
  color: white;
  opacity: 1;
}
#popupPositionSectionBlue {
  position: absolute;
  top: 378.9px;
  left: 487.05px;
  width: 600px;
  height: 19px;
  text-align: left;
  font: normal bold normal 21px/30px Roboto;
  letter-spacing: 2.8px;
  color: black;
  text-transform: uppercase;
  opacity: 1;
}

#popupInfoSectionBlue {
  position: absolute;
  top: 115.29px;
  left: 486.05px;
  width: 589px;
  height: 166px;
  text-align: left;
  font: normal normal 300 20px/35px Roboto;
  letter-spacing: 0px;
  color: white;
  opacity: 1;
}
.popupInfoSectionImageBlue {
  position: absolute;
  top: 316.29px;
  left: 742.05px;
}

.popupInfoSectionImageBlueQuotation{
  position: absolute;
  top: 56.29px;
  left: 580.05px;
} */

/* SideBar */
.sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background-color: #ffffff90;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  z-index: 10;
  transition: right 0.3s ease-in-out;
  border: 1px solid #ffffff85;
}

.sidebar.active {
  right: -1px;
}

.sidebar hr {
  margin: 88px 30px 25px 30px;
  color: #ffffff85;
}

.close-sidebar-btn {
  position: absolute;
  top: 35px;
  left: 30px;
  cursor: pointer;
  border: none;
  color: black;
  font-weight: bold;
  font-size: 20px;
  background: transparent;
}

.sidebar-content {
  display: none;
  position: absolute;
  right: 20px;
  padding: 40px;
  text-align: right;
  font-family: var(--font-family-roboto);
  font-size: 30px;
}

.sidebar-item {
  margin-bottom: 40px;
}

.sidebar.active .sidebar-content {
  display: block;
}

.sidebar-item a {
  color: #000;
  text-decoration: none;
}

.sidebar-item a:hover {
  color: #f65b6b;
}

#menu-item-162 a::after {
  content: " Systems";
}

#menu-item-254 {
  background-color: transparent;
  font-size: 20px;
  border-left: 1px solid #ffffff91;
  padding: 38px;
  transition: all 0.5s ease;
}

/* #menu-item-254:hover {
  border: 1px solid #c84238;
  transition: all 0.5s ease;
} */

.mobile-header-links>.menu-item-700,
.mobile-header-links>.menu-item-742 {
  background-color: #c84238;
  border: none;
  padding: 15px 35px;
  border-radius: 1000px;
  color: white;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 8em;
}

.mobile-header-links>.menu-item-700 a,
.mobile-header-links>.menu-item-742 a {
  display: flex;
  align-items: center;
  font-family: var(--font-family-roboto-regular);
  font-size: 20px;
  color: #fff;
  gap: 15px;
}

.mobile-header-links>.menu-item-700 a::after,
.mobile-header-links>.menu-item-742 a::after {
  content: url("../assets/arrow-right.svg");
  display: inline-flex;
  width: 25px;
}

.mobile-header-links>.menu-item-254 {
  margin-top: 30px;
  background-color: #00000010;
  padding: 15px 40px;
  border-radius: 1000px;
  font-size: clamp(13px, 0.8vw, 14px);
  background-color: #0000000f;
  border: 1px solid #ffffff91;
  font-family: var(--font-family-roboto-bold);
}

.mobile-header-links>.menu-item-254 a {
  font-size: 20px;
}

#menu-item-254 a {
  font-family: var(--font-family-roboto-medium) !important;
  display: flex;
  font-size: 20px;
}

#menu-item-254 a:hover {
  color: black !important;
}

#menu-item-700,
#menu-item-742 {
  background-color: var(--color-red-new);
  border-left: 1px solid #ffffff91;
  padding: 38px;
  height: 100%;
  color: white;
  display: flex;
  align-items: center;
  font-size: clamp(13px, 0.8vw, 14px);
  cursor: pointer;
}

#menu-item-700 a,
#menu-item-742 a {
  display: flex;
  text-transform: uppercase;
  font-size: 20px;
  font-family: var(--font-family-roboto-medium);
}

/* #menu-item-700 a::after,
#menu-item-742 a::after {
  display: inline-block;
  width: 25px;
  height: 11px;
  content: url("../assets/arrow-right.svg");
  transition: all 0.3s ease-in-out;
} */

#menu-item-700:hover a:after,
#menu-item-742:hover a:after {
  transform: translateX(10px);
  transition: all 0.3s ease-in-out;
}

.footer-list li {
  text-transform: uppercase;
}

.footer-list .menu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* SideBar */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 600px;
  height: 100vh;
  background-color: #ffffff90;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  z-index: 10;
  transition: right 0.3s ease-in-out;
  border: 1px solid #ffffff85;
}

.sidebar.active {
  right: -1px;
}

.sidebar hr {
  margin: 88px 70px 25px 70px;
  color: #ffffff85;
}

.close-sidebar-btn {
  position: absolute;
  top: 35px;
  left: 30px;
  cursor: pointer;
  border: none;
  color: black;
  font-weight: bold;
  font-size: 20px;
  background: transparent;
}

.sidebar-content {
  display: none;
  position: absolute;
  right: 30px;
  padding: 40px;
  text-align: right;
  font-family: var(--font-family-roboto);
  font-size: 30px;
}

.sidebar-content li {
  margin-bottom: 20px;
}

.sidebar-content li a::before {
  content: “”;
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 2px;
  background-color: #000;
  width: 25px;
  opacity: 0;
  margin-right: 20px;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
  background-color: #f65b6b;
}

.sidebar-content li a:hover::before {
  opacity: 1;
  transform: scaleX(2);
  transition: transform 0.3s ease-in-out;
}

.sidebar.active .sidebar-content {
  display: block;
}

.sidebar-content li a {
  color: #000;
  text-decoration: none;
  font-size: 2rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.sidebar-content a:hover {
  color: #f65b6b;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 769px) {
  .close-sidebar-btn {
    position: absolute;
    top: 55px;
    left: 30px;
    cursor: pointer;
    border: none;
    color: black;
    font-weight: bold;
    font-size: 20px;
    background: transparent;
  }
}

.contact-hero-section {
  background-image: linear-gradient(to right, #0e222f 0%, #0e222f00 100%),
    url("../assets//images/milad-fakurian-glel-rswqqm-unsplash-1@1x.png");
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 35px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh;
  width: 100%;
  padding-left: 75px;
}

.contact-hero-title {
  font-family: var(--font-family-roboto);
  font-size: 80px;
  letter-spacing: -3.2px;
  line-height: 90px;
  color: #ffffff;
  text-shadow: 0px 21px 12px #00000029;
}

.contact-subhero-container {
  background-color: rgba(255, 255, 255, 0.314);
  backdrop-filter: blur(50px) brightness(131.47%);
  -webkit-backdrop-filter: blur(50px);
  padding: 125px 75px 50px 75px;
  margin-top: -50px;
}

.contact-main-container {
  position: relative;
  width: 100%;
  margin-top: -50px;
}

.contact-main-inner-container {
  display: flex;
  flex-direction: column;
  gap: 116px;
  align-items: center;
  min-height: 105px;
}

.inner-container-title {
  text-align: center;
  font: normal normal 300 40px/50px Roboto;
  letter-spacing: -0.8px;
  color: #000000;
  opacity: 1;
  margin-top: -50px;
  margin-left: 190px;
  margin-right: 190px;
  width: 60%;
}

.overlap-container {
  position: relative;
  height: 100%;
  width: 100%;
  margin-bottom: 115px;
}

.overlap-wrapper {
  display: flex;
}

.overlap-image img {
  object-fit: cover;
  max-width: 100%;
  height: auto;
  width: 100%;
}

.form-div {
  height: auto;
  position: relative;
  width: 50%;
  max-width: 666px;
}

.form-layout {
  background: #FFFFFF50 0% 0% no-repeat padding-box;
  border: 1px solid #CECECE;
  opacity: 1;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  width: 100%;
  position: relative;
  left: -60px;
  top: 81px;
}

.form-container {
  width: 100%;
  padding: 0rem 3rem 1.75rem 3rem;
}

form {
  width: 100%;
  position: relative;
}

.form-wrapper {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  font: normal normal 300 16px/30px Roboto;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
}

#nf-form-title-1 h3 {
  text-align: left;
  font: normal normal 300 60px/70px Roboto;
  letter-spacing: -2.4px;
  color: #000000;
  text-shadow: 0px 21px 12px #00000029;
  text-transform: capitalize;
  opacity: 1;
  margin-bottom: 40px;
}

#nf-field-11-wrap,
#nf-field-12-wrap {
  text-align: left;
  font: normal normal 300 16px/30px Roboto;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
}

.nf-form-content nf-fields-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.nf-form-content nf-fields-wrap nf-field {
  width: 100%;
}

.nf-form-content nf-fields-wrap nf-field:not(:nth-child(5)):not(:nth-child(8)):not(:nth-child(9)):not( :nth-child(10)) {
  width: 48.5%;
}

.nf-form-content nf-fields-wrap nf-field:nth-child(1),
.nf-form-content nf-fields-wrap nf-field:nth-child(3),
.nf-form-content nf-fields-wrap nf-field:nth-child(6) {
  margin-right: 10px;
}

.nf-form-content nf-fields-wrap nf-field:nth-child(2),
.nf-form-content nf-fields-wrap nf-field:nth-child(4),
.nf-form-content nf-fields-wrap nf-field:nth-child(7) {
  margin-right: 0;
}

#nf-field-5,
#nf-field-6,
#nf-field-7,
#nf-field-8,
#nf-field-2,
#nf-field-9,
#nf-field-10 {
  border: 1px solid rgba(216, 216, 216, 1);
  border-radius: 47px;
  width: 100%;
  padding: 15px 15px 15px 31px;
  font-family: var(--font-family-roboto);
  font-size: 16px;
  color: #000000;
}

#nf-field-10-wrap>div.nf-field-element>div {
  border: none;
}

#nf-field-3 {
  width: 100%;
  height: 123px;
  box-sizing: border-box;
  border-radius: 30px;
  padding: 29px 29px 0px 30px;
  font-family: var(--font-family-roboto);
  font-size: 16px;
  border: 1px solid #d8d8d8;
  color: #000000;
}

#nf-field-4 {
  display: flex;
  padding: 15px 100px 15px 31px;
  background-color: #0079ba;
  border-radius: 100px;
  gap: 28.6px;
  color: white;
  border: none;
  width: auto;
  cursor: pointer;
}

#nf-field-4:hover {
  background-color: #2f607a;
  transition: all 1s ease-in-out;
}

#nf-field-4 {
  transition: all 0.3s ease-in-out;
}

#nf-field-4-wrap:hover ::after {
  transform: translateX(10px);
  transition: all 0.3s ease-in-out;
}

#nf-field-16-wrap:hover ::after,
#nf-field-26-wrap:hover ::after {
  transform: translateX(10px);
  transition: all 0.3s ease-in-out;
}

#nf-field-4-wrap .nf-field-element {
  display: flex;
  align-items: center;
  position: relative;
}

#nf-field-4[value="Submit"] {
  text-transform: uppercase;
  font: normal normal bold 14px/19px Roboto;
  letter-spacing: 0.5px;
  color: #ffffff;
  font-family: var(--font-family-roboto-bold);
}

.nf-field-element ul li:nth-child(odd) {
  clear: both;
  display: flex;
}

.nf-field-element ul li {
  float: left;
  width: 50%;
  box-sizing: border-box;
}

#nf-label-field-11,
#nf-label-field-12 {
  text-align: left;
  font: normal normal 300 16px/30px Roboto;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
  margin-bottom: 15px;
}

.nf-error .nf-error-msg,
.nf-form-fields-required {
  font-family: var(--font-family-roboto);
  font-size: 14px;
}

.nf-response-msg {
  font-family: var(--font-family-roboto);
  padding-bottom: 15px;
  font-weight: 600;
}

.nf-form-fields-required {
  margin-bottom: 10px;
}

.list-radio-wrap .nf-field-element li label {
  text-align: left;
  font: normal normal 300 16px/30px Roboto;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
}

#nf-field-11-wrap .nf-field-element {
  padding: 0px 14px;
}

#nf-field-12-wrap .nf-field-element {
  padding: 0px 14px;
}

.listradio-wrap .nf-field-element label:after {
  top: 0.33em !important;
}

.nf-error.field-wrap .nf-field-element:after {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  right: 10px !important;
  height: 27px !important;
  width: 27px !important;
  line-height: 28.5px !important;
  border-radius: 1000px !important;
}

.nf-pass.field-wrap .nf-field-element:after {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  right: 10px !important;
  height: 27px !important;
  width: 27px !important;
  line-height: 28.5px !important;
  border-radius: 1000px !important;
}

@media screen and (max-width: 900px) {
  .overlap-wrapper {
    display: flex;
    flex-direction: column;
  }

  .inner-container-title {
    font-family: var(--font-family-roboto);
    font-size: 35px;
    text-align: center;
    font: normal normal 300 35px/40px Roboto;
    letter-spacing: -0.7px;
    color: #000000;
    opacity: 1;
    margin-left: 42px;
    margin-right: 42px;
  }

  .overlap-image img {
    object-fit: cover;
    width: 100%;
  }

  .form-div {
    height: auto;
    position: relative;
    width: 82%;
    margin-left: auto;
    margin-right: auto;
  }

  .form-layout {
    bbackground: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #CECECE;
    opacity: 1;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    width: 100%;
    position: relative;
    margin-top: -50px;
    top: 0;
    left: 0;
  }

  .form-container {
    width: 100%;
    padding: 0rem 2rem 1.75rem 2rem;
  }

  form {
    width: 100%;
    position: relative;
  }

  .form-wrapper {
    display: flex;
    flex-wrap: wrap;
    font-family: var(--font-family-roboto);
    font-size: 16px;
  }

  #nf-form-title-1 h3 {
    width: 100%;
    text-align: center;
    font: normal normal 300 40px/70px Roboto;
    letter-spacing: -1.6px;
    color: #000000;
    text-shadow: 0px 21px 12px #00000029;
    text-transform: capitalize;
    opacity: 1;
  }

  #area_of_interest {
    height: 241px;
  }

  .nf-form-content nf-fields-wrap nf-field {
    width: 100%;
  }

  .nf-form-content nf-fields-wrap nf-field:not(:nth-child(5)):not(:nth-child(8)):not(:nth-child(9)):not( :nth-child(10)) {
    width: 100%;
  }

  .nf-form-content nf-fields-wrap nf-field:nth-child(1),
  .nf-form-content nf-fields-wrap nf-field:nth-child(3),
  .nf-form-content nf-fields-wrap nf-field:nth-child(6) {
    margin-right: 0px;
  }
}

@media (max-width: 767px) {
  .contact-hero-section {
    padding: 0px 32px;
    height: 60vh;
  }

  .contact-hero-title {
    text-align: left;
    font: normal normal 300 39px/90px Roboto;
    letter-spacing: -1.56px;
    color: #ffffff;
    text-shadow: 0px 21px 12px #00000029;
    opacity: 1;
  }

  .nf-form-content nf-fields-wrap nf-field:nth-child(11) {
    margin-left: auto;
    margin-right: auto;
  }

  /* .nf-field-element ul li:nth-child(odd) {
    clear: both;
    display: flex;
  } */
  .nf-field-element ul li {
    display: flex;
    margin-left: 10px;
    width: 100%;
  }

  #nf-field-4-wrap>div.nf-field-element {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 35.5px;
  }

  #nf-field-11-wrap .nf-field-element {
    padding: 0px 14px;
  }

  #nf-field-3 {
    height: 240px;
  }
}

/*  PRODUCT WARRANTY */

.product-warranty-hero-section {
  background-image: linear-gradient(to right, #0e222f 0%, #0e222f00 100%),
    url("../assets/images/product-warranty.png");
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 35px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh;
  width: 100%;
  padding-left: 75px;
}

.product-warranty-hero-title {
  text-align: left;
  font: normal normal 300 80px/70px Roboto;
  letter-spacing: -3.2px;
  color: #ffffff;
  text-shadow: 0px 21px 12px #00000029;
  text-transform: capitalize;
  opacity: 1;
}

.product-warranty-subhero-container {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.314);
  backdrop-filter: blur(50px) brightness(131.47%);
  -webkit-backdrop-filter: blur(50px);
  padding: 125px 75px 50px 75px;
  margin-top: -50px;
  margin-bottom: 28px;
}

.product-warranty-subhero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.version-date {
  margin-top: -50px;
  text-align: left;
  font: normal normal 300 19px/25px Roboto;
  letter-spacing: -0.49px;
  color: #000000;
  opacity: 1;
}

.product-warranty-subhero-title p {
  text-align: left;
  font: normal normal 300 45px Roboto;
  font-family: var(--font-family-roboto);
  letter-spacing: 0px;
  color: #000000;
  text-transform: capitalize;
  opacity: 1;
  margin-top: 10px;
}

.product-warranty-section-content {
  width: 100%;
}

.product-warranty-section-wrapper {
  margin: 0 75px 0 75px;
}

.warrants-bold {
  text-align: left;
  font: normal normal normal 18px/25px Roboto;
  font-family: var(--font-family-roboto-regular);
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
  margin-bottom: 57px;
}

.article-wrapper {
  margin-bottom: 57px;
}

.article-title {
  text-align: left;
  font: normal normal 300 30px/34px Roboto;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
  margin-bottom: 40px;
}

.article-content-normal {
  text-align: left;
  font: normal normal 300 16px/30px Roboto;
  letter-spacing: 0px;
  color: #000000;
  opacity: 0.5;
}

.article-content-bold {
  text-align: left;
  font: normal normal bold 16px/30px Roboto;
  font-family: var(--font-family-roboto);
  letter-spacing: 0px;
  color: #000000;
  margin-top: 20px;
}

.ceras-link {
  text-align: left;
  font: normal normal bold 16px/30px Roboto;
  font-family: var(--font-family-roboto-regular);
  letter-spacing: 0px;
  color: #c84238;
}

/* Privacy Policy */

.privacy-policy-hero-section {
  background-image: linear-gradient(to right, #0e222f 0%, #0e222f00 100%),
    url("../assets/images/privacy-policy.png");
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 35px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh;
  width: 100%;
  padding-left: 75px;
}

.privacy-policy-hero-title {
  text-align: left;
  font: normal normal 300 80px/70px Roboto;
  letter-spacing: -3.2px;
  color: #ffffff;
  text-shadow: 0px 21px 12px #00000029;
  text-transform: capitalize;
  opacity: 1;
}

.privacy-policy-subhero-container {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.314);
  backdrop-filter: blur(50px) brightness(131.47%);
  -webkit-backdrop-filter: blur(50px);
  padding: 125px 75px 50px 75px;
  margin-top: -50px;
  margin-bottom: 28px;
}

.privacy-policy-subhero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 10vh;
}

.privacy-policy-subhero-title p {
  text-align: left;
  font: normal normal 300 45px Roboto;
  font-family: var(--font-family-roboto);
  letter-spacing: 0px;
  color: #000000;
  text-transform: capitalize;
  opacity: 1;
}

.privacy-policy-section-content {
  width: 100%;
}

.privacy-policy-section-wrapper {
  margin: 0 75px 0 75px;
}

.privacy-policy-section-wrapper {
  text-align: left;
  font: normal normal 300 16px/30px Roboto;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
  margin-bottom: 57px;
}

.privacy-policy-section-wrapper p {
  opacity: 0.5;
}

.privacy-policy-section-wrapper h6 {
  text-align: left;
  font: normal normal 300 30px/34px Roboto;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
}

/* .privacy-underline {
  text-decoration: underline;
}

.privacy-bold {
  text-align: left;
  font: normal normal bold 16px/30px Roboto;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
} */

/* Business Associate Agreement */

.business-associate-hero-section {
  background-image: linear-gradient(to right, #0e222f 0%, #0e222f00 100%),
    url("../assets/images/business-man-shaking-hands.png");
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 35px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh;
  width: 100%;
  padding-left: 75px;
}

.business-associate-intro {
  text-align: left;
  font: normal normal 300 16px/30px Roboto;
  letter-spacing: 0px;
  color: #000000;
  opacity: 0.5;
  margin-bottom: 58px;
}

/* Terms & Conditions */

.terms-conditions-hero-section {
  background-image: linear-gradient(to right, #0e222f 0%, #0e222f00 100%),
    url("../assets/images/businessman-checking-the-steps.png");
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 35px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh;
  width: 100%;
  padding-left: 75px;
}

.nf-before-form-content {
  /* display: none; */
}

.ninja-forms-req-symbol {
  display: none;
}

.nf-error-field-errors {
  font-family: var(--font-family-roboto-regular);
}

.listradio-wrap .nf-field-element label.nf-checked-label:before {
  border-radius: 50%;
  content: "";
  height: 10px;
  width: 10px;
  position: absolute;
  left: -26px;
  bottom: 5px;
  z-index: 2;
  top: 0.59em !important;
}

#nf-field-4-wrap .nf-field-element::after {
  display: flex;
  align-items: center;
  margin-left: -65px;
  width: 25px !important;
  height: 13px !important;
  margin-right: 5px;
  content: "" !important;
  background: url("../assets/arrow-right.svg") no-repeat 0 0;
  background-size: 100%;
}

.nf-form-content .list-select-wrap>div div:after {
  display: inline-block;
  width: 16px !important;
  height: 16px !important;
  margin-right: 5px;
  content: "" !important;
  background: url("../assets/images/dropdown-contact.png") no-repeat 0 0;
  background-size: 100%;
  top: 50% !important;
}

/* Specialty Care */

.specialty-care-hero-section {
  background-image: linear-gradient(to right, #0e222f 0%, #0e222f00 100%),
    url("../assets/specialty-banner-2.jpg");
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 35px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh;
  width: 100%;
  padding-left: 75px;
}

.specialty-care-hero-title {
  display: flex;
  flex-direction: column;
}

.specialty-care-hero-title-1,
.specialty-care-hero-title-2 {
  max-width: 582px;
  text-align: left;
  font: normal normal 300 75px/85px Roboto;
  letter-spacing: -1.5px;
  color: #ffffff;
  opacity: 1;
}

.adjusted-height {
  height: 30rem !important;
}

.back-to-article-btn img {
  margin-right: 15px;
  margin-left: 0px !important;
  transition: all 0.3s ease-in-out;
}

.back-to-article-btn:hover .back-to-article-btn-img {
  transform: translateX(-10px);
  transition: all 0.3s ease-in-out;
}

.specialty-care-hero-subtitle {
  max-width: 625px;
  text-align: left;
  font: normal normal bold 20px/37px Roboto;
  letter-spacing: 5px;
  color: #ffffff;
  text-transform: uppercase;
  opacity: 1;
  margin-top: 20px;
}

/* Specialty Care Tabs */

.specialty-care-tabs {
  background: #f4f4f4 0% 0% no-repeat padding-box;
  opacity: 1;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  padding: 125px 0px 50px 0px;
  margin-top: -50px;
  display: flex;
  align-items: center;
}

.specialty-care-percentage {
  fill: #000;
  font-family: var(--font-family-monsterrat-regular);
  /* font-size: 0.5em; */
  line-height: 2.6em;
  font-size: 0.6em;
  text-anchor: middle;
}

.specialty-care-inner-container {
  align-items: flex-start;
}

.cgm365 {
  text-align: left;
  font: normal normal 300 50px/50px Roboto;
  letter-spacing: -1px;
  color: #c84238;
}

.specialty-care-tabs-buttons {
  display: flex;
  background-color: #ffffff;
  padding: 10px 50px 10px 75px;
  border-radius: 0px 1000px 1000px 0px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  margin-top: -50px;
}

.specialty-care-tabs-buttons button {
  padding: 11px;
  background-color: transparent;
  border-radius: 1000px;
  font: normal normal bold 18px/25px Roboto;
  font-family: var(--font-family-roboto-bold);
  letter-spacing: 4.5px;
  border: none;
  color: #000000;
  text-transform: uppercase;
  width: fit-content;
  padding: 10px 25px;
  white-space: nowrap;
  cursor: pointer;
}

.endocrinology-inner-container {
  position: relative;
  background: #f4f4f4 0% 0% no-repeat padding-box;
  opacity: 1;
  margin: 0 auto;
  padding: 0px;
  display: flex;
  gap: 0px;
  z-index: 1;
}

.endocrinology-left {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 100px 0px 75px;
}

.specialty-care-img {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.specialty-care-img img {
  width: 100%;
  padding: 0px 5%;
  object-fit: contain;
  max-height: 450px;
}

.endocrinology-container {
  position: relative;
  background-color: #f4f4f4;
  width: 100%;
  margin: auto;
  z-index: 2;
  padding: 50px 0px;
}

.endocrinology-title {
  text-align: left;
  font: normal normal 300 50px/50px Roboto;
  letter-spacing: -1px;
  color: #000000;
  text-shadow: 0px 21px 12px #00000029;
  opacity: 1;
  margin-bottom: 15px;
}

.endocrinology-subtitle {
  text-align: left;
  font: normal normal 300 30px/40px Roboto;
  letter-spacing: -0.6px;
  color: #c84238;
  opacity: 1;
  max-width: 500px;
  margin-bottom: 50px;
}

.endocrinology-list-item {
  display: flex;
  align-items: flex-start;
  max-width: 700px;
  padding: 20px 0px;
  position: relative;
  border-top: 1px solid #00000030;
}

.endocrinology-list-item-content-wrapper {
  margin-left: 40px;
}

.endocrinology-list-item-title {
  text-align: left;
  font: normal normal bold 18px/25px Roboto;
  font-family: var(--font-family-roboto-bold);
  letter-spacing: 0px;
  color: #000000;
  text-transform: capitalize;
  opacity: 0.6;
}

.endocrinology-list-item-content {
  text-align: left;
  font: normal normal 300 18px/25px Roboto;
  letter-spacing: 0px;
  color: #000000;
  text-transform: capitalize;
  opacity: 0.6;
  margin-top: 0;
}

/* Specialty Care Slider */

.slider {
  position: relative;
}

@keyframes fadeAnimation {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.slider-tab-content {
  height: 35vw;
  opacity: 0;
  animation: fadeAnimation 2s ease-in-out forwards;
  position: relative;
}

.slider-tab-content.active {
  opacity: 1;
  animation: none;
}

/*  SLIDE 1 */

.diabetes-monitoring-main-container {
  position: relative;
  /* background-color: #ffffff; */
  width: 100%;
  z-index: 2;
}

.diabetes-inner-container {
  position: relative;
  /* background: #ffffff 0% 0% no-repeat padding-box; */
  opacity: 1;
  margin: 0 auto;
  padding: 0px;
  display: flex;
  gap: 0px;
  z-index: 1;
}

.diabetes-text-content {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7% 65px 6% 75px;
  gap: 3rem;
}

.diabetes-title {
  text-align: left;
  font: normal normal 300 50px/50px Roboto;
  letter-spacing: -1px;
  color: #000000;
}

.diabetes-content-wrapper {
  margin-top: 50px;
  margin-bottom: 0px;
  padding-right: 75px;
}

.about-leadership-testimonial-list-item {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  border-top: 1px solid #00000030;
  padding: 20px 0px;
}

.diabetes-list-content {
  display: flex;
  justify-content: center;
  margin-top: auto;
  margin-bottom: auto;
  text-align: left;
  font: normal normal 300 18px/25px Roboto;
  letter-spacing: 0px;
  color: #000000;
  opacity: 0.6;
}

.diabetes-list-item-number {
  text-align: left;
  font: normal normal normal 40px/53px Roboto;
  letter-spacing: -1.04px;
  color: #c84238;
  opacity: 1;
}

.diabetes-content-img {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diabetes-content-img img {
  width: 100%;
  /* transform: translateY(50px); */
  transform: none;
  max-height: 470px;
  object-fit: contain;
  /* padding: 0px 5% 0px 0px; */
}

/* SLIDE 2 */

.health-devices-main-container {
  position: relative;
  /* background-color: #ffffff; */
  width: 100%;
  z-index: 2;
}

.health-devices-text-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7% 65px 6% 75px;
}

.health-devices-inner-container {
  position: relative;
  background: #ffffff 0% 0% no-repeat padding-box;
  opacity: 1;
  margin: 0 auto;
  padding: 0px;
  display: flex;
  gap: 0px;
  z-index: 1;
}

.health-devices-title {
  text-align: left;
  font: normal normal 300 50px/50px Roboto;
  letter-spacing: -1px;
  color: #000000;
  text-shadow: 0px 21px 12px #00000029;
  opacity: 1;
}

.health-devices-info p {
  margin-top: 40px;
  text-align: left;
  font: normal normal 300 18px/25px Roboto;
  letter-spacing: 0px;
  color: #000000;
  opacity: 0.6;
}

.health-devices-content-img {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.health-devices-content-img img {
  width: 100%;
  /* transform: translateY(50px); */
  transform: none;
  max-height: 470px;
  object-fit: contain;
  padding: 0px 5% 0px 0px;
}

/* Slider 3 */

.seamless-integration-main-container {
  background-color: transparent;
  width: 100%;
  z-index: 2;
}

.seamless-integration-text-content {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7% 65px 6% 75px;
}

.seamless-integration-inner-container {
  background: #ffffff 0% 0% no-repeat padding-box;
  opacity: 1;
  margin: 0 auto;
  padding: 0px;
  display: flex;
  gap: 0px;
  z-index: 1;
}

.seamless-integration-title {
  text-align: left;
  font: normal normal 300 50px/50px Roboto;
  letter-spacing: -1px;
  color: #000000;
  text-shadow: 0px 21px 12px #00000029;
  opacity: 1;
}

.seamless-integration-info {
  margin-top: 70px;
  max-width: 88%;
}

.seamless-integration-content-img {
  width: 40%;
  margin-left: -40px;
  display: flex;
  align-items: center;
}

.seamless-integration-content-img img {
  position: absolute;
  bottom: 0;
  /* height: 85vh; */
  width: 40%;
  object-fit: contain;
  height: auto;
  max-height: 100%;
}

.seamless-integration-list-item {
  display: flex;
  align-items: flex-start;
  padding: 20px 0px;
  border-top: 1px solid #00000030;
}

.seamless-integration-list-item-line {
  height: 3px;
  max-width: 30px;
  width: 60px;
  border-radius: 10px;
  margin-top: 10px;
  flex-shrink: 0;
}

.seamless-integration-item-content-wrapper {
  margin-left: 40px;
  flex-grow: 1;
  text-align: left;
  font: normal normal 300 18px/25px Roboto;
  letter-spacing: 0px;
  color: #000000;
  opacity: 0.6;
  margin-top: 0;
}

.seamless-integration-item-title p {
  text-align: left;
  font: normal normal 300 18px/25px Roboto;
  letter-spacing: 0px;
  color: #000000;
  opacity: 0.6;
  margin-top: 0;
}

.slider-dots {
  margin-top: 10px;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  bottom: 7%;
}

.slider-dot {
  display: inline-block;
  width: 50px;
  height: 10px;
  border-radius: 5px;
  background-color: #FFFFFF;
  box-shadow: 0px 3px 10px #00000010;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.slider-dot.active {
  background-color: #f65b6b;
}

/* Specialty Care Statistics */

.specialty-care-blue {
  background: #edf5fa 0% 0% no-repeat padding-box;
  opacity: 1;
}

.specialty-care-item-blue {
  background: #e1eff7 0% 0% no-repeat padding-box;
  border-radius: 30px;
  opacity: 1;
}

/* Specialty Care Form */

.form-title-red {
  text-align: center;
  font: normal normal 300 40px/50px Roboto;
  letter-spacing: -0.8px;
  color: #c84238;
}

.specialty-care-form-container {
  position: relative;
  width: 100%;
}

.specialty-care-form-inner-container {
  display: flex;
  flex-direction: column;
  gap: 116px;
  align-items: center;
  min-height: 105px;
}

.specialty-care-form-inner-container .inner-container-title {
  text-align: center;
  font: normal normal 300 40px/50px Roboto;
  letter-spacing: -0.8px;
  color: #000000;
  opacity: 1;
  width: 80%;
  margin: 115px 190px 0px 190px;
}

.overlap-container {
  position: relative;
  height: 100%;
  width: 100%;
  margin-bottom: 115px;
}

.overlap-wrapper {
  display: flex;
  width: 100%;
}

.overlap-image {
  width: 50%;
}

.specialty-care-form-inner-container .overlap-container .overlap-wrapper .overlap-image {
  width: 50%;
}

.overlap-image img {
  object-fit: cover;
  max-width: 100%;
  height: auto;
}

.specialty-care-form-inner-container .overlap-container .overlap-wrapper .form-div {
  height: auto;
  position: relative;
  width: 50%;
  max-width: 666px;
}

.form-layout {
  background: #FFFFFF10 0% 0% no-repeat padding-box;
  border: 1px solid #CECECE;
  opacity: 1;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  width: 100%;
  position: relative;
  left: -60px;
  top: 81px;
}

.form-container {
  width: 100%;
  padding: 5vw;
}

form {
  width: 100%;
  position: relative;
}

.form-wrapper {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  font: normal normal 300 16px/30px Roboto;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
}

.nf-form-content nf-fields-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.specialty-care-form-inner-container .overlap-container .overlap-wrapper .form-div .form-layout .form-container .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content nf-fields-wrap nf-field:not(:nth-child(2)):not(:nth-child(3)) {
  width: 100%;
}

.specialty-care-form-inner-container .overlap-container .overlap-wrapper .form-div .form-layout .form-container .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content nf-fields-wrap nf-field:nth-child(2),
.specialty-care-form-inner-container .overlap-container .overlap-wrapper .form-div .form-layout .form-container .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content nf-fields-wrap nf-field:nth-child(3) {
  width: 48.5%;
}

.specialty-care-form-inner-container .overlap-container .overlap-wrapper .form-div .form-layout .form-container .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content nf-fields-wrap nf-field:nth-child(4) {
  margin-right: 0px;
}

.specialty-care-form-inner-container .overlap-container .overlap-wrapper .form-div .form-layout .form-container .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content nf-fields-wrap nf-field:nth-child(1) {
  margin-right: 0px;
}

.specialty-care-form-inner-container .overlap-container .overlap-wrapper .form-div .form-layout .form-container .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content nf-fields-wrap nf-field:nth-child(3) {
  margin-left: 3%;
  margin-right: 0px;
}

.specialty-care-form-inner-container .overlap-container .overlap-wrapper .form-div .form-layout .form-container .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content nf-fields-wrap nf-field:nth-child(6) {
  margin-right: 0px;
}

#nf-field-21-wrap {
  margin-bottom: 0px;
}

/*nf-field-20 duplicated*/
#nf-field-21-wrap .nf-field-element ul li,
#nf-field-20-wrap .nf-field-element ul li {
  width: 100%;
  align-items: center;
  justify-content: center;
}

#nf-field-13,
#nf-field-17,
#nf-field-21,
#nf-field-22 {
  background: transparent;
  border-color: transparent;
  border-bottom: 1px solid rgba(216, 216, 216, 1);
  /* border-radius: 47px; */
  /* width: 100%; */
  padding: 15px 0px;
  font-family: var(--font-family-roboto);
  font-size: 16px;
  color: #000000;
}

/* #nf-field-17,
#nf-field-22 {
  margin-left: 10px;
} */

#nf-field-13-wrap .nf-field-element:after,
#nf-field-17-wrap .nf-field-element:after,
#nf-field-18-wrap .nf-field-element:after,
#nf-field-19-wrap .nf-field-element:after,
#nf-field-20-wrap .nf-field-element:after,
#nf-field-21-wrap .nf-field-element:after,
#nf-field-23-wrap .nf-field-element:after,
#nf-field-24-wrap .nf-field-element:after,
#nf-field-25-wrap .nf-field-element:after {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  right: 10px !important;
  height: 27px !important;
  width: 27px !important;
  line-height: 28.5px !important;
  border-radius: 1000px !important;
}

#nf-field-18,
#nf-field-19,
#nf-field-20,
#nf-field-23,
#nf-field-24,
#nf-field-25 {
  background: transparent;
  border-color: transparent;
  border-bottom: 1px solid rgba(216, 216, 216, 1);
  width: 100%;
  padding: 15px 0px;
  font-family: var(--font-family-roboto);
  font-size: 16px;
  color: #000000;
}

#nf-field-16,
#nf-field-26 {
  font-family: var(--font-family-roboto);
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: #000000;
  padding: 1rem 2rem;
  border-right: 1px solid #000000;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
  cursor: pointer;
}

/* #nf-field-16:hover,
#nf-field-26:hover {
  background-color: #2f607a;
  transition: all 1s ease-in-out;
} */

.nf-error .ninja-forms-field {
  border-top: transparent !important;
  border-left: transparent !important;
  border-right: transparent !important;
}

#nf-field-16-wrap .nf-field-element,
#nf-field-26-wrap .nf-field-element {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 60px;
}

#nf-field-16[value="Submit"],
#nf-field-26[value="Submit"] {
  font-family: var(--font-family-roboto);
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: #000000;
  padding: 1rem 2rem;
  border: 1px solid #000000;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
  background-color: transparent;
  height: auto !important;
}

#nf-field-16[value="Submit"]:hover,
#nf-field-26[value="Submit"]:hover {
  background-color: var(--color-red-new);
  color: #ffffff;
  border-color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}

.nf-field-element ul li:nth-child(odd) {
  clear: both;
  display: flex;
}

.nf-field-element ul li {
  float: left;
  width: 50%;
  box-sizing: border-box;
}

/* #nf-field-16-wrap .nf-field-element::after,
#nf-field-26-wrap .nf-field-element::after {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -65px;
  width: 25px !important;
  height: 13px !important;
  margin-right: 5px;
  content: "" !important;
  background: url("../assets/arrow-right.svg") no-repeat 0 0;
  background-size: 100%;
} */

#nf-label-field-20-0 img,
#nf-label-field-21-0 img {
  padding: 0px 25%;
}

@media screen and (max-width: 1280px) {
  .specialty-care-tabs-buttons {
    overflow-x: auto;
  }

  @keyframes fadeAnimation {
    0% {
      opacity: 0;
      transform: translateX(0px);
    }

    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .slider-tab-content {
    height: unset;
  }

  .slider-dots {
    position: relative;
    /* padding: 50px 0px 80px 0px; */
  }
}

@media screen and (max-width: 940px) {
  .overlap-wrapper {
    display: flex;
    flex-direction: column;
  }

  .inner-container-title {
    font-family: var(--font-family-roboto);
    font-size: 35px;
    text-align: center;
    font: normal normal 300 35px/40px Roboto;
    letter-spacing: -0.7px;
    color: #000000;
    opacity: 1;
    margin-left: 42px;
    margin-right: 42px;
  }

  .overlap-image {
    width: 100%;
  }

  .overlap-image img {
    object-fit: cover;
    height: 100%;
  }

  .form-div {
    height: auto;
    position: relative;
    width: 82%;
    margin-left: auto;
    margin-right: auto;
  }

  .form-layout {
    background: #FFFFFF30 0% 0% no-repeat padding-box;
    border: 1px solid #CECECE;
    opacity: 1;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    /* border-radius: 40px; */
    width: 90%;
    position: relative;
    margin-top: -142px;
    top: 0;
    left: 10%;
  }

  .form-container {
    width: 100%;
    padding: 0rem 2rem 1.75rem 2rem;
  }

  form {
    width: 100%;
    position: relative;
  }

  .form-wrapper {
    display: flex;
    flex-wrap: wrap;
    font-family: var(--font-family-roboto);
    font-size: 16px;
  }

  #nf-form-title-1 h3 {
    width: 100%;
    text-align: center;
    font: normal normal 300 40px/70px Roboto;
    letter-spacing: -1.6px;
    color: #000000;
    text-shadow: 0px 21px 12px #00000029;
    text-transform: capitalize;
    opacity: 1;
  }

  #area_of_interest {
    height: 241px;
  }

  .nf-form-content nf-fields-wrap nf-field {
    width: 100%;
  }

  .nf-form-content nf-fields-wrap nf-field:not(:nth-child(5)):not(:nth-child(8)):not(:nth-child(9)):not( :nth-child(10)) {
    width: 100% !important;
  }

  .nf-form-content nf-fields-wrap nf-field:nth-child(1),
  .nf-form-content nf-fields-wrap nf-field:nth-child(3),
  .nf-form-content nf-fields-wrap nf-field:nth-child(6) {
    margin-right: 0px;
  }

  .specialty-care-tabs-buttons {
    width: 100%;
    overflow-x: auto;
    border-radius: 0px;
    margin-top: 0px;
  }

  .specialty-care-tabs-buttons button {
    font-size: 15px;
  }

  .specialty-care-form-inner-container .overlap-container .overlap-wrapper .overlap-image {
    width: 50%;
    aspect-ratio: 263/390;
  }

  .specialty-care-form-inner-container .overlap-container .overlap-wrapper .form-div {
    height: auto;
    position: relative;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .specialty-care-form-inner-container .overlap-container .overlap-wrapper .form-div .form-layout .form-container .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content nf-fields-wrap nf-field:nth-child(3) {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  #nf-field-16-wrap .nf-field-element,
  #nf-field-26-wrap .nf-field-element {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .contact-hero-section {
    padding: 0px 32px;
    height: 60vh;
  }

  .contact-hero-title {
    text-align: left;
    font: normal normal 300 39px/90px Roboto;
    letter-spacing: -1.56px;
    color: #ffffff;
    text-shadow: 0px 21px 12px #00000029;
    opacity: 1;
  }

  .nf-form-content nf-fields-wrap nf-field:nth-child(11) {
    margin-left: auto;
    margin-right: auto;
  }

  /* .nf-field-element ul li:nth-child(odd) {
  clear: both;
  display: flex;
} */
  .nf-field-element ul li {
    display: flex;
    margin-left: 10px;
    width: 100%;
  }

  #nf-field-4-wrap>div.nf-field-element {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 35.5px;
  }

  #nf-field-11-wrap .nf-field-element {
    padding: 0px 14px;
  }

  #nf-field-3 {
    height: 240px;
  }

  .specialty-care-form-inner-container .overlap-container .overlap-wrapper .form-div .form-layout .form-container .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content nf-fields-wrap nf-field:nth-child(1),
  .specialty-care-form-inner-container .overlap-container .overlap-wrapper .form-div .form-layout .form-container .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content nf-fields-wrap nf-field:nth-child(2) {
    width: 100%;
  }

  .specialty-care-form-inner-container .overlap-container .overlap-wrapper .form-div .form-layout .form-container .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content nf-fields-wrap nf-field:nth-child(3) {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
}

.nf-before-form-content {
  /* display: none; */
}

.ninja-forms-req-symbol {
  display: none;
}

.nf-error-field-errors {
  font-family: var(--font-family-roboto-regular);
}

.listradio-wrap .nf-field-element label.nf-checked-label:before {
  border-radius: 50%;
  content: "";
  height: 10px;
  width: 10px;
  position: absolute;
  left: -26px;
  bottom: 5px;
  z-index: 2;
  top: 0.59em !important;
}

#nf-field-4-wrap .nf-field-element::after {
  display: flex;
  align-items: center;
  margin-left: -65px;
  width: 25px !important;
  height: 13px !important;
  margin-right: 5px;
  content: "" !important;
  background: url("../assets/arrow-right.svg") no-repeat 0 0;
  background-size: 100%;
}

.nf-form-content .list-select-wrap>div div:after {
  display: inline-block;
  width: 16px !important;
  height: 16px !important;
  margin-right: 5px;
  content: "" !important;
  background: url("../assets/images/dropdown-contact.png") no-repeat 0 0;
  background-size: 100%;
  top: 50% !important;
}

@media screen and (max-width: 480px) {
  .specialty-care-tabs-buttons {
    padding: 10px 24px 10px 18px;
    gap: 0px;
    margin: 30px 0px -30px 0px;
  }

  .specialty-care-tabs-buttons button {
    font-size: 14px;
  }
}

@media screen and (max-width: 900px) {
  .specialty-care-tabs-buttons {
    width: 100%;
    overflow-x: auto;
    margin-top: 0px;
  }

  .specialty-care-tabs-buttons button {
    font-size: 15px;
  }
}

@media screen and (max-width: 940px) {
  .specialty-care-hero-section {
    padding: 0px 32px;
    height: 60vh;
  }

  .specialty-care-hero-title-1,
  .specialty-care-hero-title-2 {
    text-align: left;
    font: normal normal 300 39px/40px Roboto;
    letter-spacing: -1.56px;
    color: #ffffff;
    text-shadow: 0px 21px 12px #00000029;
    opacity: 1;
  }

  .specialty-care-hero-subtitle {
    max-width: 250px;
    text-align: left;
    font: normal normal bold 15px/20px Roboto;
    font-family: var(--font-family-roboto-bold);
    letter-spacing: 3.75px;
    color: #ffffff;
    text-transform: uppercase;
    opacity: 1;
  }

  .specialty-care-tabs-buttons {
    padding: 10px 24px 10px 18px;
    gap: 0px;
    margin: 30px 0px -30px 0px;
  }

  .specialty-care-tabs-buttons button {
    text-align: left;
    font: normal normal bold 15px/25px Roboto;
    letter-spacing: 3.75px;
    color: #000000;
    text-transform: uppercase;
    opacity: 1;
  }

  .endocrinology-inner-container {
    flex-direction: column;
  }

  .endocrinology-left {
    width: 100%;
    padding: 0px 32px;
    margin-bottom: 20px;
  }

  .specialty-care-img {
    width: 100%;
    margin-top: 10px;
    padding-bottom: 50px;
  }

  .endocrinology-title {
    text-align: center;
    font: normal normal 300 50px/70px Roboto;
    letter-spacing: -2px;
    color: #000000;
    text-shadow: 0px 21px 12px #00000029;
    text-transform: capitalize;
    opacity: 1;
  }

  .endocrinology-subtitle {
    text-align: center;
    font: normal normal 300 30px/40px Roboto;
    letter-spacing: -0.6px;
    color: #c84238;
    opacity: 1;
    margin-left: auto;
    margin-right: auto;
  }

  .endocrinology-list-item-title {
    text-align: left;
    font: normal normal bold 18px/25px Roboto;
    font-family: var(--font-family-roboto-bold);
    letter-spacing: 0px;
    color: #000000;
    text-transform: capitalize;
    opacity: 0.6;
  }

  .endocrinology-list-item-content {
    text-align: left;
    font: normal normal 300 18px/25px Roboto;
    letter-spacing: 0px;
    color: #000000;
    text-transform: capitalize;
    opacity: 0.6;
  }

  .slider-tab-content {
    height: auto;
  }

  .diabetes-content-wrapper {
    padding-right: 0px;
  }

  .diabetes-text-content,
  .health-devices-text-content,
  .seamless-integration-text-content {
    width: 100%;
    padding: 100px 32px 32px 32px;
  }

  .health-devices-info {
    max-width: 100%;
  }

  .diabetes-content-img,
  .health-devices-content-img,
  .seamless-integration-content-img {
    width: 100%;
  }

  .diabetes-content-img img,
  .health-devices-content-img img {
    padding: 0;
  }

  .diabetes-inner-container,
  .health-devices-inner-container,
  .seamless-integration-inner-container {
    display: flex;
    flex-direction: column;
  }

  .diabetes-title,
  .health-devices-title,
  .seamless-integration-title {
    text-align: center;
    font: normal normal 300 50px/70px Roboto;
    letter-spacing: -2px;
    color: #000000;
  }

  .diabetes-list-content,
  .health-devices-info,
  .seamless-integration-item-title {
    text-align: left;
    font: normal normal 300 18px/25px Roboto;
    letter-spacing: 0px;
    color: #000000;
    opacity: 0.6;
  }

  .seamless-integration-content-img {
    margin-left: 0px;
  }

  .seamless-integration-info {
    max-width: 100%;
  }

  .seamless-integration-content-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .slider-dots {
    position: relative;
    padding: 50px 0px 80px 0px;
  }

  /* .slider-tab-content {
    width: 100%;
    max-width: 100%;
    animation: none;
    opacity:1;
  } */

  /* .health-devices-content-img img,
  .seamless-integration-content-img img,
  .diabetes-content-img img {  transform: translateY(0); 
    opacity: 1; 
    animation: fadeAnimation 2s ease-in-out forwards; 
  } */

  @keyframes fadeAnimation {
    0% {
      opacity: 0;
      transform: translateX(0px);
    }

    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .specialty-care-subhero-item-text {
    text-align: center;
    font: normal normal 300 18px/25px Roboto;
    padding: 30px 15px 0px 15px;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
  }

  .specialty-care-form-title p,
  .form-title-red {
    text-align: center;
    font: normal normal 300 30px/40px Roboto;
    letter-spacing: -0.6px;
    opacity: 1;
  }

  .health-devices-info p {
    max-width: 100%;
  }

  #sidebar>div>div>li.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-700 a:hover,
  #sidebar>div>div>li.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-742 a:hover,
  #sidebar>div>div>li.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-254 a:hover {
    color: inherit;
  }
}

.linkedin-icon:hover {
  fill: #0077b5;
  transition: all 0.3s ease-in-out;
}

.back-to-article-btn:hover {
  background-color: #182b38;
  transition: all 0.3s ease-in-out;
}

.customers-content-container {
  display: none;
}

.customers-content-container:first-child {
  display: flex;
}

@media screen and (max-width: 480px) {

  .privacy-policy-hero-title,
  .product-warranty-hero-title {
    font-size: 39px !important;
  }

  .privacy-policy-subhero-container,
  .product-warranty-subhero-container {
    padding: 125px 32px 50px 32px;
  }

  .privacy-policy-section-wrapper {
    margin: 0px 32px 0px 32px !important;
  }

  .terms-conditions-hero-section,
  .product-warranty-hero-section,
  .privacy-policy-hero-section,
  .business-associate-hero-section {
    padding-left: 32px;
  }
}

.nf-form-fields-required {
  display: none !important;
}

#nf-form-3-cont input:focus {
  background-color: transparent !important;
  border-bottom: 1px solid #182b38 !important;
  transition: all 0.3s ease-in-out;
}

.specialty_form_img_wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.specialty_form_img_wrapper img {
  width: 60%;
  height: auto;
  object-fit: contain;
}

body>header>div.header-right-container>div.header-links li:nth-child(1),
body>header>div.header-right-container>div.header-links li:nth-child(2),
body>header>div.header-right-container>div.header-links li:nth-child(3),
body>header>div.header-right-container>div.header-links li:nth-child(4) {
  margin-right: 3vw;
}