/* Roboto Font */

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,700&display=swap");
/* Reset css */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0px;
  padding: 0px;
  font: inherit;
}

body {
  min-height: 100vh;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  /*-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;*/
  -webkit-font-smoothing: auto;
}

html {
  /* -webkit-tap-highlight-color: transparent;
-webkit-user-select: none;
user-select: none; */
}

/* html {
color-scheme: dark light;
} */

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

input,
textarea,
select,
button {
  font: inherit;
}

/* ::marker {
color: #17a2b8;
} */

body[data-headermode="fixed"] .headerSec {
  position: fixed;
  width: 100%;
  top: -70px;
  transition: top 300ms;
}

body[data-headermode="fixed"] .headerSecSubstitute {
  position: relative;
  width: 100%;
}

body[data-headermode="regular"] .headerSecSubstitute {
  display: none;
}

/* Global css starts */

.container {
  width: min(100% - 6.25rem, 1150px);
  margin-inline: auto;
}

.heading {
  display: block;
  margin: 0 auto;
  width: 1000px;
}

.heading h2.headingTitle {
  background-color: #17a2b8;
  display: inline-block;
  width: calc(100% - 150px);
  margin-left: 75px !important;
  color: #fff;
  padding: 18px 30px 15px;
  border-radius: 100px;
  margin: 0 auto;
  text-align: center;
  font-weight: 500;
  font-size: 30px;
}

/* Global css ends */

/* Header css starts */

.headerSec {
  box-shadow: 0px 0px 5px 1px rgb(0 0 0 / 50%);
  z-index: 999;
  position: relative;
  background-color: #fff;
}

.headerLogo {
  padding: 10px 0px;
}

.logoImg {
  width: 300px;
}

/*Menu css starts*/

.headerLogoMenuSec {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-items {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.menu-items li a,
.menu-items li span {
  text-decoration: none;
  /* background: -webkit-linear-gradient(to right, #fd7e14, #f35e50, #e83e8c);
background: linear-gradient(to right, #fd7e14, #f35e50, #e83e8c);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent; */
  color: black;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
  font-family: Poppins, sans-serif;
}

.menu-items li {
  position: relative;
  line-height: 60px;
}

ul.menu-items li ul.dropdown {
  min-width: 100%;
  /* Set width of the dropdown */
  background-color: #fff;
  display: none;
  position: absolute;
  z-index: 999;
  top: 55px;
  left: 0;
  padding: 10px;
  width: 250px;
  box-shadow: 0px 0px 5px 1px rgb(0 0 0 / 50%);
}

.menu-items li a.active,
.menu-items li span.active {
  color: #fe733e;
}

ul.menu-items li ul.advantagesDropdown[data-mobiletoggle="on"] {
  display: block !important;
}

ul.menu-items li ul.useCaseDropdown[data-mobiletoggle="on"] {
  display: block !important;
}

ul.menu-items li ul.advantagesDropdown[data-mobiletoggle="off"] {
  display: none !important;
}

ul.menu-items li ul.useCaseDropdown[data-mobiletoggle="off"] {
  display: none !important;
}

.desktopNavbar ul.menu-items li:hover ul.dropdown {
  display: block;
  /* Display the dropdown */
}

ul.menu-items li ul.dropdown li {
  display: block;
  border-bottom: 1px solid #000;
  padding: 5px 0px;
  line-height: initial;
}

ul.menu-items li ul.dropdown li span {
  color: #000;
  text-transform: capitalize;
}

ul.menu-items li ul.dropdown li.borderRemove {
  border-bottom: 0px;
}

.triangle-top {
  width: 0;
  height: 0;
  margin: 0px auto;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 12px solid #000;
  /* border-image: linear-gradient(to top, #fd7e14, #f35e50, #e83e8c); */
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  position: absolute;
  top: -12px !important;
}

/*.menu-items li a:hover, .menu-items li span:hover {
color: #81bebb;
transition: all 0.2s ease;
}*/

.mobNavbar {
  display: none;
}

.hambergur {
  width: 40px;
  display: block;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hambergur div {
  width: 1.6rem;
  height: 4px;
  /* border: 2px solid #000; */
  background-image: linear-gradient(to right, #fd7e14, #f35e50, #e83e8c);
  margin-bottom: 5px;
  border-radius: 10px;
}

.hambergur div:last-child {
  margin-bottom: 0px;
}

.fullscreen {
  -webkit-clip-path: circle(0% at 96.5% 4%);
  clip-path: circle(0% at 96.5% 4%);
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transition: all 0.5s cubic-bezier(0.23, 0.93, 0.23, 0.93);
}

.fullscreen ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
}

.fullscreen ul li {
  padding: 0px;
}

.fullscreen ul li a,
.fullscreen ul li span {
  font-size: 1.5rem;
  /* background: -webkit-linear-gradient(45deg, #fd7e14 0%, #f25e51 50%, #e83e8c 100%); */
  /* -webkit-background-clip: text;
-webkit-text-fill-color: transparent; */
  color: #fff;
  font-size: 26px;
  letter-spacing: 1px;
}

.fullscreen ul li ul.dropdown li span {
  color: #000;
}

.fullscreen .close {
  position: absolute;
  top: 35px;
  right: 30px;
  width: 2rem;
  height: 2rem;
  transform: rotate(45deg);
}

.fullscreen .close div {
  width: 32px;
  height: 32px;
  overflow: hidden;
}

.fullscreen .close div:before,
.fullscreen .close div:after {
  content: "";
  width: 2rem;
  height: 2px;
  border: 1px solid #fff;
  position: absolute;
  border-radius: 5px;
}

.fullscreen .close div:after {
  transform: rotate(90deg);
  background: #fff;
}

.fullscreen.active {
  -webkit-clip-path: circle(140% at 96.5% 4%);
  clip-path: circle(140% at 96.5% 4%);
  transition: all 0.7s cubic-bezier(0.23, 0.93, 0.23, 0.93);
}

.fullscreen.active ul > li {
  -webkit-animation: animateIn 360ms ease-in-out
    calc(var(--animation-order) * 100ms) both;
  animation: animateIn 360ms ease-in-out calc(var(--animation-order) * 100ms)
    both;
}

.fullscreen.reverse_anim {
  -webkit-clip-path: circle(0% at 96.5% 4%);
  clip-path: circle(0% at 96.5% 4%);
  opacity: 0.8;
  transition: all 0.4s cubic-bezier(0.23, 0.93, 0.23, 0.93);
}

@-webkit-keyframes animateIn {
  0% {
    opacity: 0;
    transform: translateX(10px) rotate(2deg);
  }

  100% {
    opacity: 1;
  }
}

@keyframes animateIn {
  0% {
    opacity: 0;
    transform: translateX(10px) rotate(2deg);
  }

  100% {
    opacity: 1;
  }
}

/*Menu css ends*/

.bannerSec {
  margin-bottom: 160px;
}

.bannerImgSec {
  position: absolute;
  top: 0px;
  width: 100%;
}

.bannerImgSec img {
  width: 100%;
}

.bannerImgSec .bannerImg {
  width: 100%;
  height: 1020px;
}

.bannerContent {
  position: relative;
  text-align: center;
}

/*Added on 18th Jan 2022 -- START*/

span.sntHeadVATitle,
span.sntHeadVADesc {
  display: block;
}

.sntHeadVADesc {
  font-size: 23px;
}

span.sntHeadVATitle {
  font-size: 36px;
  margin-bottom: 20px;
}

.bannerContent h1 {
  font-size: 65px;
  font-weight: 700;
  color: #fff;
  margin-top: 60px;
}

.bannerContent P {
  font-size: 32px;
  color: #fff;
  margin-top: 60px;
  line-height: 50px;
  font-weight: 700;
}

.bannerLaptopImg {
  margin: 20px 40px;
}

.bannerLaptopImg img {
  margin: 0px auto;
  display: block;
  max-width: 430px;
}
.bannerPDFImg {
  position: relative;
  margin: 50px 40px 0px;
}
.bannerPDFImg img {
  max-width: 100%;
}
.bannerPDFImg img.shadowImg {
  max-width: 100%;
}
.bannerHealthInsImg {
  margin: 0px 40px 50px;
  z-index: 1;
  position: relative;
}

/* Header css ends */

/*Main css starts*/

/*Solution section starts*/

.solutionSec {
  margin-bottom: 0px;
  position: relative;
}

.avGuideContent {
  display: flex;
  align-items: center;
  color: #000;
  margin: 30px 0px 0px;
  margin-right: 100px;
}

.avGuideContent > div {
  flex: 1;
}

.avGuideContentSec {
  position: relative;
}

.avGuideContentSec .avGuideArrow {
  position: absolute;
  top: 277px;
  left: 58px;
}

.avGuideArrow img {
  width: 100%;
  height: 420px;
}

.avGuideContent .lftContent img {
  margin: 0 auto;
}

.avGuideWidget p {
  font-size: 40px;
  line-height: 50px;
}

.avGuideMobile p {
  font-size: 36px;
  font-weight: 700;
}

.sampleVideoContentSec {
  padding: 20px 0px 40px;
}

/*Solution section ends*/

/*Advantages section starts*/

video.cmVideo {
  max-width: 447px;
  display: inline-block;
}

.midVideoContainer {
  text-align: center;
  height: 500px;
}

.sntPdfVideoSec {
  margin-top: 30px;
}

.sntPdfVideoSec .midVideoContainer {
  height: auto;
}

/* .theAdvantageSection {
margin-top: 200px;
} */

.usecaseContentSecOuter {
  text-align: center;
  display: table;
  width: 100%;
}

ul.descUL {
  text-align: left;
  font-size: 29px;
}

/* .theAdvantageSection2 {
margin-top: 200px;
} */

/* ul.descUL li {
margin-bottom: 20px;
} */

.has4xCont {
  position: relative;
}

.div4x {
  width: 137px;
  height: 123px;
  position: absolute;
  top: auto;
  bottom: 0px;
  background-color: #3a3a3a;
  border-radius: 50%;
  right: calc(0% + 20px);
  color: white;
  text-align: center;
  font-size: 80px;
  padding-top: 11px;
}

/*Advantages section ends*/

/*Usecase section starts*/

.usecaseSec {
  position: relative;
  padding: 0px 0px;
}

.usecaseSec .usecaseBannerImg {
  position: absolute;
  left: 0px;
  height: 400px;
  top: 50%;
  transform: translate(0px, -50%);
}

.useCaseSec {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.usecaseContentSec {
  text-align: center;
  color: #000;
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 60px 0px;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.usecaseContentSec > div {
  flex: 1;
}

.usecaseContentSec .rthContent p {
  margin-right: 100px;
}

.usecaseContentSec h3 {
  font-size: 30px;
  font-weight: 600;
  font-style: italic;
  margin-top: 40px;
}

.usecaseContentSec h4 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 40px;
}

.usecaseContentSec img {
  margin: 0 auto;
  margin-top: 0px;
}

.usecaseContentSec p {
  font-size: 35px;
  display: block;
  margin: 0px 150px 0px auto;
  line-height: 45px;
  text-align: left;
}

.usecaseContentSec .widget_Mobile {
  height: 800px;
}
.useCasesImgSec {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.useCaseIntExtSec {
  margin-bottom: 40px;
}

.distributionContainer .heading h2.headingTitle {
  background-color: #868686;
  margin-top: 40px;
}

#useCaseDistribution {
  margin: 30px 0px;
}

/*Usecase section ends*/

/*howItWorksSec starts*/

.howItWorksSec {
  /* background: url(../images/howItWorksBanner.png) no-repeat;
background-position: right center;
height: 1233px;
background-size: contain; */
  position: relative;
  /* margin-top: 75%; */
}

.howItWorksSec .howItWorksImg {
  padding-top: 200px;
  position: absolute;
}

.howItWorksContainer {
  position: relative;
  top: 0px;
  width: 100%;
}

.howItWorksSec .conceptImg {
  padding-top: 60px;
}

.howItWorksContent {
  display: flex;
  /* align-items: center; */
  align-items: flex-start;
}

.howItWorksContent .box {
  background-color: #ededed;
  padding: 30px;
  border-radius: 20px;
  position: relative;
  max-width: 580px;
}

.howItWorksContent .box span.number {
  width: 75px;
  height: 75px;
  padding: 15px;
  border-radius: 10px;
  position: absolute;
  top: -49px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  transform: translate(-50%, 0px);
}

.howItWorksContent .box span.number1 {
  background: url(../images/numberBg1.png) no-repeat;
  background-size: cover;
}

.howItWorksContent .box span.number2 {
  background: url(../images/numberBg2.png) no-repeat;
  background-size: cover;
  display: none;
}

.howItWorksContent .box h3 {
  color: #000;
  font-size: 24px;
  text-align: center;
  font-weight: 700;
  padding-bottom: 20px;
}

.howItWorksContent > div {
  flex: 1;
}

.howItWorksContent .box ul li {
  display: inline-flex;
  color: #000;
  font-size: 24px;
}

.howItWorksContent .box ul {
  list-style: none;
}

.howItWorksContent .box ul li span {
  margin-right: 10px;
}

.howItWorksContent .box ol,
.descUL {
  margin-left: 25px;
  list-style-type: disc;
}

.howItWorksContent .box ol li,
.descUL li {
  font-size: 21px;
  padding-bottom: 19px;
  text-align: left;
}

.howItWorksContent .box.hcpPara p {
  text-align: left;
  font-size: 20px;
  line-height: 30px;
}

.descUL li {
  font-size: 28px;
}

.howItWorksContent .box ol li:last-child,
.descUL li:last-child {
  padding-bottom: 0px;
}

.howItWorksContent .box ol li strong {
  color: #17a2b8;
  font-weight: 700;
}

.howItWorksContent .box ol li strong.noColor {
  color: #000;
}

.howItWorksContent .box ol li span {
  color: #17a2b8;
}

.howItWorksContent .box ul li span img {
  width: 40px;
  height: auto;
  position: relative;
  top: 6px;
}

.howItWorksArrow {
  position: absolute;
}

.howItWorksArrow .arrow1 {
  position: relative;
  top: -190px;
  left: 282px;
}

.howItWorksArrow .arrow2 {
  position: relative;
  top: -220px;
  left: 357px;
}

.howItWorksArrow .arrow3 {
  position: relative;
  top: -190px;
  left: 390px;
}
.howItWorksContent .box.hcpPara p.txtBold {
  font-weight: bold;
}
.howItWorksContent .box.hcpPara p.txtCenter {
  text-align: center;
}

/*howItWorksSec ends*/

/*salientFeatures starts*/

/*salientFeatures ends*/

.dummyImg {
  position: relative;
  margin: 0px 40px 30px;
}

.dummyImg img {
  margin: 0px auto;
  display: block;
  max-width: 550px;
}

/*Main css ends*/

/*Footer css starts*/

.contactUsSec {
  margin-top: 90px;
}

.contactUsSecContent {
  background-color: #81bebb;
  padding: 35px;
}

.contactUsSecContent p {
  color: #fff;
  font-size: 24px;
  text-align: center;
}

.contactUsButton {
  display: block;
  width: 100%;
  text-align: center;
  margin: 30px 0px;
}

.contactBtn {
  background-image: linear-gradient(to right, #fd7e14, #f35e50, #e83e8c);
  padding: 10px 30px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  border: 0px;
  border-radius: 15px;
  cursor: pointer;
  text-decoration: none;
}

.footerBg {
  position: relative;
}

.footerBg img {
  width: 100%;
}

/* .contactUsFloatingBtn {
position: fixed;
bottom: 0px;
left: 0px;
width: 100%;
} */

/*contactUsVerticalButton*/

.contactUsVerticalButton {
  letter-spacing: 1px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border: 0px;
  cursor: pointer;
  text-decoration: none;
  position: fixed;
  z-index: 99;
  padding: 0px;
  border-radius: 0px;
  top: auto;
  bottom: 30px;
  left: auto;
  right: 20px;
}

.contactUsVerticalButton.fltLeft {
  text-align: center;
}

/*contactUsovalButton*/

.contactUsovalButton {
  background-image: linear-gradient(to right, #fd7e14, #f35e50, #e83e8c);
  padding: 15px 20px;
  letter-spacing: 0px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border: 0px;
  clip-path: ellipse(50% 50%);
  cursor: pointer;
  text-decoration: none;
  position: fixed;
  bottom: 20px;
  z-index: 99;
}

.contactUsovalButton.fltLeft {
  left: 15px;
  right: inherit;
}

.contactUsFloatingBtn .contactBtn {
  width: 100%;
  border-radius: 0px;
  line-height: 35px;
}

section.copyright {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  background-color: #ffffff00;
  background-image: initial !important;
}
section.copyright .copyright-text a.noStyle {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.footerBg {
  position: relative;
  margin-bottom: -96px;
}

.contactUsIcon {
  width: 50px;
  height: 50px;
  background-image: url(../images/email.png);
  background-size: contain;
  display: inline-block;
}

.contactUsText {
  font-size: 12px;
  color: #ffffff;
  background-image: linear-gradient(to right, #fd7e14, #f35e50, #e83e8c);
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/*Added on 18th Jan 2022 -- END*/

/*Footer links ---- START*/

.copyright {
  padding: 40px 0 0;
  border-top: 1px solid #fff;
  background-image: linear-gradient(
    90deg,
    #5fbec1 0%,
    #66c2c1 50%,
    #7dd5b1 100%
  ) !important;
}

.app-edu-footer-copyright {
  color: #fff;
  padding-bottom: 20px;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.app-edu-footer-copyright.clearfix {
  display: table;
  width: 100%;
}

.app-edu-footer-copyright .copyright-menu li {
  margin-left: 35px;
  list-style: none;
  display: inline-block;
}

.app-edu-footer-copyright .copyright-menu li a {
  color: white;
  text-decoration: none;
}

.copyright-text.float-left p {
  margin-bottom: 1rem;
}

/*Footer css ends*/

/*Media queries css starts*/

@media only screen and (min-width: 1440px) {
  .bannerSec {
    margin-bottom: 200px;
  }

  .howItWorksSec {
    margin-top: 0px;
  }
}

@media only screen and (min-width: 1600px) {
  .bannerSec {
    margin-bottom: 200px;
  }

  .howItWorksSec {
    margin-top: 0px;
  }

  .bannerImgSec .bannerImg {
    width: 100%;
    height: 1110px;
  }
}

@media only screen and (min-width: 1920px) {
  .bannerSec {
    margin-bottom: 200px;
  }

  .bannerImgSec .bannerImg {
    width: 100%;
    height: 1110px;
  }

  .howItWorksSec {
    margin-top: 0px;
  }
}

/* ----------- iPad 1, 2, Mini and Air ----------- */

/* Landscape */

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {
  .menu-items {
    gap: 15px;
  }

  .menu-items li a,
  .menu-items li span {
    font-size: 15px;
  }

  .heading {
    width: auto;
  }

  .logoImg {
    width: 250px;
  }

  .bannerContent h1 {
    font-size: 50px;
  }

  .bannerContent P {
    font-size: 28px;
    margin-top: 40px;
  }

  .bannerImgSec .bannerImg {
    height: 910px;
  }

  /* .bannerLaptopImg {
        margin-top: 0px;
    } */
  .dummyImg {
    margin-top: 0px;
  }

  .bannerSec {
    margin-bottom: 100px;
  }

  .avGuideContent {
    margin-right: 30px;
    gap: 20px;
  }

  .avGuideWidget p,
  .avGuideMobile p {
    font-size: 30px;
  }

  .avGuideContentSec .avGuideArrow {
    position: absolute;
    top: 265px;
    left: 8px;
  }

  .avGuideArrow img {
    width: auto;
    height: 440px;
  }

  .howItWorksContent {
    gap: 20px;
  }

  .howItWorksContent .box {
    padding: 40px 15px;
    max-width: 100%;
  }

  .howItWorksContent .box h3 {
    padding-bottom: 15px;
    padding-top: 15px;
  }

  .howItWorksArrow .arrow1 {
    position: relative;
    top: -170px;
    left: 219px;
  }

  .howItWorksArrow .arrow2 {
    position: relative;
    top: -207px;
    left: 300px;
  }

  .howItWorksArrow .arrow3 {
    position: relative;
    top: -208px;
    left: 314px;
  }

  .salientFeatureContentSec {
    position: relative;
    top: 0px;
    right: 0px;
  }

  .usecaseContentSec p {
    width: 100%;
  }

  .contactUsSec {
    margin-top: 5%;
  }
  .usecaseSec .usecaseBannerImg {
    height: 250px;
  }
}

/* Portrait */

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .container {
    width: min(100% - 3rem, 100%);
  }

  .heading {
    width: auto;
  }

  .logoImg {
    width: 200px;
  }

  .menu-items {
    gap: 10px !important;
  }

  .menu-items li a,
  .menu-items li span {
    font-size: 12px;
  }

  .bannerImgSec .bannerImg {
    height: 800px;
  }

  .bannerContent h1 {
    font-size: 30px;
  }

  .bannerContent P {
    font-size: 22px;
    margin-top: 20px;
    line-height: 35px;
  }

  .bannerLaptopImg {
    margin-top: 20px;
  }

  .dummyImg {
    margin-top: 20px;
  }
  .bannerSec {
    margin-bottom: 40px;
  }

  .usecaseSec {
    padding-top: 25px;
  }

  .howItWorksSec {
    padding-top: 30px;
  }

  .salientFeatureContentSec {
    position: relative;
    top: 0px;
    right: 0px;
  }

  .howItWorksContent .box.hcpPara p {
    font-size: 22px;
    line-height: 30px;
  }

  .avGuideContent {
    margin-right: 30px;
    gap: 20px;
  }

  .avGuideWidget p {
    font-size: 30px;
  }

  .avGuideContentSec .avGuideArrow {
    position: absolute;
    top: 313px;
    left: 0px;
  }

  .avGuideArrow img {
    width: auto;
    height: 340px;
  }

  .avGuideWidget p,
  .avGuideMobile p {
    font-size: 30px;
  }

  .howItWorksContent {
    gap: 20px;
    margin: 40px 0px;
  }

  .howItWorksContent .box {
    padding: 40px 15px;
    max-width: 100%;
  }

  .howItWorksContent .box h3 {
    padding-bottom: 15px;
    padding-top: 15px;
  }

  .howItWorksArrow .arrow1 {
    position: relative;
    top: -170px;
    left: 219px;
  }

  .howItWorksArrow .arrow2 {
    position: relative;
    top: -207px;
    left: 300px;
  }

  .howItWorksArrow .arrow3 {
    position: relative;
    top: -208px;
    left: 314px;
  }

  .usecaseContentSec p {
    width: 100%;
  }

  .howItWorksArrow {
    display: none;
  }

  .listItems {
    overflow-y: scroll;
    height: 500px;
  }

  .contactUsSec {
    margin-top: 5%;
  }
  .usecaseSec .usecaseBannerImg {
    height: 250px;
  }
  .connectingLineHead1,
  .connectingLineHead2,
  .connectingLineHead3,
  .connectingLineHead4,
  .connectingLineTail1,
  .connectingLineTail2,
  .connectingLineTail3,
  .connectingLineTail4 {
    display: none;
  }
}

@media all and (max-width: 1024px) {
  section#howItWorks {
    position: relative;
  }

  .howItWorksContainer {
    position: relative;
  }

  img.howItWorksImg.mobileBg {
    position: absolute;
  }

  span.sntHeadVATitle,
  span.sntHeadVADesc {
    line-height: initial;
  }

  span.sntHeadVATitle {
    font-size: 32px;
  }

  span.sntHeadVADesc {
    font-size: 23px;
    max-width: calc(100% - 60px);
    margin-left: 30px;
    line-height: 33px;
  }
}

/*Mobile*/

@media only screen and (max-width: 767px) {
  .mobNavbar {
    display: block;
  }

  .menu-items {
    gap: 0px !important;
  }

  .fullscreen ul li a,
  .fullscreen ul li span {
    font-size: 18px;
  }

  ul.menu-items li ul.dropdown {
    background-image: linear-gradient(to right, #fd7e14, #f35e50, #e83e8c);
    position: absolute;
    top: 50%;
    left: 50%;
    border: 0px solid #fff;
    box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 50%);
    height: auto;
    transform: translate(-50%, 10%);
  }

  ul.menu-items li ul.dropdown li:nth-child(4) {
    border-bottom: 0px;
  }

  .desktopNavbar {
    display: none;
  }

  .container {
    width: min(100% - 2.25rem, 100%);
  }

  .headerLogo {
    padding: 10px 0px;
  }

  .logoImg {
    width: 215px;
    margin: 0 auto;
  }

  .bannerImgSec .bannerImg {
    width: 100%;
    height: 100%;
  }

  .bannerContent h1,
  span.sntHeadVATitle {
    font-size: 22px;
    margin-top: 25px;
    line-height: 30px;
  }

  .bannerContent P,
  span.sntHeadVADesc {
    font-size: 16px;
    margin-top: 20px;
    line-height: 20px;
  }

  .bannerLaptopImg {
    margin: 5px 15px 0px;
  }
  .bannerHealthInsImg {
    margin: 85px 15px 20px;
  }
  .dummyImg {
    margin: 5px 15px 5px;
  }

  .bannerLaptopImg img {
    max-width: 100%;
  }
  .bannerPDFImg img {
    max-width: 90%;
  }
  .dummyImg img {
    max-width: 100%;
  }

  .bannerSec {
    margin-bottom: 40px;
  }

  .heading {
    width: 100%;
  }

  .howItWorksArrow {
    display: none;
  }

  .heading h2.headingTitle {
    padding: 18px 20px 15px;
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
  }
  .distributionContainer .heading h2.headingTitle {
    background-color: #868686;
    margin-top: 0px;
  }

  .sampleBannerImg {
    display: none;
  }

  .usecaseContentSec {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0px;
  }

  .usecaseContentSec h3 {
    font-size: 18px;
    margin-top: 15px;
    line-height: 25px;
  }

  .usecaseContentSec h4 {
    font-size: 14px;
    margin-top: 15px;
    line-height: 20px;
  }

  .usecaseContentSec img {
    margin-top: 0px;
  }

  .usecaseContentSec p {
    font-size: 16px;
    width: 100%;
    margin: 0px;
    padding-bottom: 10px;
    line-height: 25px;
    text-align: center;
  }

  .avGuideContent {
    flex-direction: column;
    margin: 0px 0px;
    margin-right: 0px;
  }

  .avGuideContent.avGuideWidget .lftContent,
  .avGuideContent.avGuideMobile .rthContent {
    order: 2;
  }

  .solutionSec {
    margin-bottom: 30px;
  }

  .avGuideWidget p {
    font-size: 16px;
    text-align: center;
    margin: 20px 0px 0px;
    line-height: 25px;
  }

  .avGuideMobile p {
    font-size: 16px;
    text-align: center;
    line-height: 25px;
  }

  .avGuideContentSec .avGuideArrow {
    position: absolute;
    top: 315px;
    left: 60px;
  }

  .usecaseContentSec .widget_Mobile {
    height: 500px;
  }

  .avGuideArrow img {
    width: 100%;
    height: 220px;
  }

  .avGuideContent .lftContent img {
    margin: 20px 0px;
    width: 200px;
  }

  .howItWorksContent {
    display: flex;
    flex-direction: column;
  }

  .howItWorksContent > div {
    margin: 0px;
  }

  .howItWorksContent.conceptSec .lftContent {
    margin-bottom: 0px;
  }

  .howItWorksSec .conceptImg {
    padding-top: 10px;
  }

  .howItWorksContent .box {
    padding: 15px 15px;
    max-width: 100%;
  }

  .howItWorksContent .box ol li,
  .descUL li {
    font-size: 18px;
    padding-bottom: 15px;
    line-height: 30px;
  }

  .howItWorksContent .box.hcpPara p {
    font-size: 18px;
    line-height: 30px;
  }

  .div4x {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .avGuideContainer,
  .usecaseContainer,
  .howItWorksContainer {
    position: relative;
  }

  .howItWorksSec {
    margin-top: 0px;
    margin-bottom: 50px;
  }

  .howItWorksContent .box ul li {
    font-size: 16px;
    line-height: 22px;
  }

  .howItWorksContent .box h3 {
    font-size: 16px;
    padding: 15px 0px;
  }

  .howItWorksContent .box span.number {
    width: 45px;
    height: 45px;
    padding: 15px;
    top: -22px;
    left: 50%;
    font-size: 20px;
    transform: translate(-50%, 0px);
  }

  .salientFeatureContentSec {
    position: relative;
    top: 0px;
    right: 0px;
  }

  .contactUsSec {
    margin-top: 0px;
  }

  .contactUsSecContent {
    padding: 15px;
  }

  .contactUsSecContent p {
    font-size: 16px;
    line-height: 22px;
  }

  .contactUsButton {
    margin: 15px 0px;
  }

  .contactBtn {
    font-size: 18px;
    display: inline-block;
  }

  .contactUsFloatingBtn .contactBtn {
    padding: 5px 20px;
  }

  .copyright {
    padding: 0px;
    border: 0px;
  }

  .app-edu-footer-copyright {
    color: #fff;
    padding: 10px 0px;
  }

  .picture1Img,
  .picture2Img,
  .picture4Img {
    width: 250px;
  }
}

/* ----------- iPhone X ----------- */

/* Portrait */

@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: portrait) {
  .bannerSec {
    margin-bottom: 40px;
  }
}

/*Media queries css ends*/

@media all and (max-width: 767px) {
  .mobNavbar ul.dropdown li span {
    text-transform: none;
  }

  .mobNavbar ul.menu-items li ul.advantagesDropdown {
    background-image: none;
  }

  .mobNavbar ul.menu-items li ul.useCaseDropdown {
    background-image: none;
  }

  .mobNavbar ul.menu-items li ul.advantagesDropdown {
    position: relative;
    top: auto;
    transform: translate(-110px, 0%);
    border: solid thin #fff;
  }

  .mobNavbar ul.menu-items li ul.useCaseDropdown {
    position: relative;
    top: auto;
    transform: translate(-159px, 0%);
    border: solid thin #fff;
    width: 317px;
  }

  .mobNavbar .fullscreen ul li a {
    text-align: center;
    display: block;
  }

  .mobNavbar ul.menu-items li ul.advantagesDropdown span {
    font-size: 15px !important;
    text-align: left;
    width: 100%;
    display: block;
  }

  .mobNavbar ul.menu-items li ul.useCaseDropdown span {
    font-size: 15px !important;
    text-align: left;
    width: 100%;
    display: inline;
  }

  span.useCaseMobileDropdown {
    display: block;
    text-align: center;
  }

  span.advantagesMobileDropdown {
    display: block;
    text-align: center;
  }
}

@media all and (min-width: 770px) {
  .stickeyRthContent {
    /* position: sticky; */
    top: 0px;
    bottom: 300px;
    transform: translate(0px, 0px);
    /* margin-bottom: 60px; */
  }

  .contactUsVerticalButton {
    left: auto;
    right: 10px;
  }
}

@media all and (max-width: 810px) {
  .app-edu-footer-copyright .copyright-menu li {
    margin-left: 0;
    margin-right: 10px;
    font-size: 11px;
  }

  .copyright-text p {
    font-size: 11px;
    margin-bottom: 0 !important;
    margin-top: 5px;
  }
}

/*Footer links ---- END*/

/*----------- Making transparent BG for footer links ----- START*/

.silentFeatureWhatsapImgAndContent {
  margin-top: 100px;
  position: relative;
}

.connectingLineHeadParent {
  position: relative;
}

/*----------- Making transparent BG for footer links ----- END*/

.box.hcpPara {
  margin-top: 30px;
}

.salientFeatureContentSec {
  position: relative;
}

.salientFeatureContentSec {
  position: sticky;
  top: 80px;
  margin-bottom: 80px;
}

.salientFeatureContentSec > div {
  width: 80%;
  float: right;
}

/*DYNAMIC CONNECTING LINES CSS - START*/
.connectingLine {
  position: absolute;
}

.connectingLineHead1,
.connectingLineHead2,
.connectingLineHead3,
.connectingLineHead4,
.connectingLineTail1,
.connectingLineTail2,
.connectingLineTail3,
.connectingLineTail4 {
  border-top: dashed 3px #727272;
}

.connectingLineMid1,
.connectingLineMid2,
.connectingLineMid3,
.connectingLineMid4 {
  border-right: dashed 3px #727272;
}

.talkingRTELIs {
  position: relative;
}

.connectingLineHead1 {
  left: 84%;
  top: 20.53%;
  width: 72px;
}

.connectingLineHead2 {
  left: 65.1%;
  top: 30.48%;
  width: 212px;
}

.connectingLineHead3 {
  left: 81.1%;
  top: 44.18%;
  width: 227px;
}

.connectingLineHead4 {
  left: 92.1%;
  top: 68%;
  width: 227px;
}

.tailConnectingContainer {
  width: 5px;
  height: 5px;
  position: absolute;
  /* background-color: red; */
  top: 10px;
  left: -18px;
}

.connectingLineTail1 {
  width: 185px;
}

.connectingLineTail1,
.connectingLineTail2,
.connectingLineTail3,
.connectingLineTail4 {
  right: 11px;
  top: 2px;
}

.connectingLineTail2 {
  width: 153px;
}

.connectingLineTail3 {
  width: 119px;
}

@media all and (max-width: 767px) {
  .connectingLine {
    display: none;
  }
}

/*DYNAMIC CONNECTING LINES CSS - END*/

/*Responsive Desktop Menu bar ------ START*/
@media all and (max-width: 1177px) {
  .desktopNavbar ul.menu-items span {
    font-size: 12px;
  }
}

@media all and (max-width: 1042px) {
  .logoImg {
    width: 200px;
  }

  .desktopNavbar ul.menu-items {
    gap: 20px;
  }
}

@media all and (max-width: 888px) {
  .logoImg {
    width: 150px;
  }

  .desktopNavbar ul.menu-items {
    gap: 10px;
  }

  .desktopNavbar ul.menu-items span {
    font-size: 10px;
  }
}

/*Responsive Desktop Menu bar ------ END*/

.connectingLineHead1 > img,
.connectingLineHead2 > img,
.connectingLineHead3 > img,
.connectingLineHead4 > img {
  position: relative;
  top: -10px;
  left: -3px;
}

.firstUseCaseRepMarketing .rthContent,
.firstUseCaseRepMarketing .lftContent {
  width: 100%;
}

.firstUseCaseRepMarketing .usecaseContentSec {
  display: block;
}

.firstUseCaseRepMarketing img.useCaseRMTTE,
.firstUseCaseRepMarketing .effectPositionRef1 {
  max-width: 695px;
}

.firstUseCaseRepMarketing .descUL li {
  font-size: 20px;
}

.firstUseCaseRepMarketing .descUL {
  background-color: #ededed;
  padding: 20px;
  border-radius: 26px;
  padding-left: 50px;
  margin-top: 30px;
  margin-left: 0px;
}

div#__videoid1 {
  width: 100%;
  max-width: 801px;
  display: table;
  margin: 0 auto;
  height: 450px;
  background-color: white;
}

div#__videoid2,
div#__videoid3 {
  width: 100%;
  max-width: 483px;
  display: table;
  margin: 0 auto;
  height: 483px;
  background-color: white;
}

.video-js .vjs-big-play-button {
  left: calc(50% - 45px);
  top: calc(50% - 25px);
}

@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialicons/v139/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2)
    format("woff2");
}

.cmVideo[data-videoended="true"]
  .video-js
  .vjs-big-play-button
  .vjs-icon-placeholder::before {
  font-family: "Material Icons" !important;
  content: "î‚";
}

.vjs-poster {
  background-color: white !important;
}

@media all and (max-width: 500px) {
  .dimensions-__videoid {
    max-width: 100% !important;
  }

  span.mobileFontIncrV3 {
    font-size: 22px;
    line-height: initial;
  }
}

@media all and (max-width: 500px) {
  div#__videoid1,
  div#__videoid2,
  div#__videoid3 {
    width: 100%;
    height: auto;
    display: flex;
  }

  .video-js .vjs-tech {
    width: 100%;
    height: auto;
    position: relative;
  }

  .midVideoContainer {
    height: auto;
  }
}

@media all and (max-width: 410px) {
  .sampleVideoContentSec iframe {
    min-height: 203px;
  }
}

@media all and (max-width: 371px) {
  img.bannerImg {
    min-height: 560px;
  }

  /* .bannerLaptopImg {
        margin-top: 50px;
    } */
  .bannerPDFImg {
    margin-top: 30px;
  }
  .dummyImg {
    margin-top: 50px;
  }
}

.boxedDivBgOuter {
  display: block;
  text-align: center;
}

.boxedDivBg {
  text-align: center;
  margin-top: 30px;
  font-size: 27px;
  margin-bottom: 30px;
  padding: 10px;
  display: inline-block;
  min-width: 790px;
  background-color: #f0f0f0;
  border-radius: 20px;
}

span.boxBlueTxt,
span.bluColorText {
  color: #17a2b8;
  font-weight: 600;
}

.boxedDivLargeSize {
  text-align: left;
}

.boxedDivLargeSize ul {
  margin-left: 30px;
}

.boxedDivLargeSize p.ulTitleForSample {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 0px;
}

span.boxBoldBlack {
  color: black;
}

.sampleVideoContentSec {
  text-align: center;
}

.howItWorksContent .box ol li::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: -27px;
  top: 5px;
  background-repeat: no-repeat;
  background-size: contain;
}

.howItWorksContent .box ol li {
  position: relative;
}

span.boldInlineText {
  font-weight: 600;
  color: black !important;
}

section#salientFeature {
  margin-top: 26px;
}

img.demandAvGuideImg {
  max-width: 420px;
  margin-right: 0px;
  float: right;
}

.lftContent.connectingLineHeadParent {
  text-align: right;
}

img.howItWorksImg {
  width: 430px;
  height: 1020px;
  margin-top: -120px;
}

@media all and (max-width: 908px) {
  .boxedDivBg {
    min-width: auto;
    font-size: 20px !important;
    padding-left: 20px;
    padding-right: 20px;
  }
  .distributionContainer {
    margin: 30px 0px 60px;
  }
  .useCaseIntExtSec {
    margin-bottom: 20px;
  }
  .boxedDivBg {
    margin-bottom: 20px;
  }
  #useCaseDistribution {
    margin: 30px 0px 0px;
  }
  img.bannerImg {
    min-height: 600px;
  }
  .bannerPDFImg {
    margin-top: 30px;
  }
  #boxContent {
    margin-bottom: 60px;
  }
}

@media all and (max-width: 770px) {
  .footerBg {
    margin-bottom: -80px;
  }
}

@media all and (max-width: 768px) {
  .firstUseCaseRepMarketing img.useCaseRMTTE,
  .firstUseCaseRepMarketing .effectPositionRef1 {
    width: 100%;
    height: auto;
  }

  img.demandAvGuideImg {
    float: none;
    max-width: 300px;
    margin: 0 auto;
  }

  .connectingLineHeadParent {
    text-align: center;
    width: 100%;
  }

  .rthContent.salientFeatureContentSec .box {
    width: 100%;
  }

  .howItWorksContent.silentFeatureWhatsapImgAndContent {
    margin-top: 26px;
  }

  .firstUseCaseRepMarketing .descUL {
    margin-bottom: 38px;
  }

  .heading h2.headingTitle {
    font-size: 15px;
    width: 100%;
    margin-left: 0px !important;
  }
}

@media all and (max-width: 570px) {
  .sampleVideoContentSec iframe {
    width: 100%;
    height: auto;
  }
}

@media all and (max-width: 500px) {
  .footerBg {
    margin-bottom: -99px;
  }

  .copyright-menu.ul-li {
    width: 100%;
  }
}

@media all and (max-width: 460px) {
  .contactUsButton {
    margin-bottom: 50px;
  }
}

.boxedHas2ULs {
  text-align: center;
}

.boxedHas2ULs .boxedDivLargeSize {
  max-width: 980px;
  padding: 10px 20px 20px;
}
.boxedDivMediumSize1 {
  margin-bottom: 0px;
  padding: 10px 20px 10px;
}

@media all and (max-width: 490px) {
  .boxedDivMediumSize2 {
    margin-top: 10px !important;
  }
  .boxedHas2ULs {
    margin-top: 10px !important;
  }
  .boxedDivLargeSize ul {
    margin-left: 20px;
  }
}

.boxedDivMediumSize1 {
  margin-bottom: 0px;
}

.sampleVideoContentSec1 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.boxedHas2ULs .boxedDivLargeSize {
  margin-top: 0px;
}

.vjs-poster img {
  width: auto;
  height: 100%;
  display: table;
  margin: 0 auto;
}
