/*In general css start*/
@font-face {
     font-family: "SF Pro Display proxima";
     src: url("/fonts/SF-Pro-Display-Proxima-Nova.woff2") format("woff2");
     font-weight: 500;
     font-style: normal;
     font-display: swap;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: SF Pro Display proxima !important;
    font-size: 14px;
}
button:focus {
    box-shadow: none !important;
    outline: 1px solid #fff !important;
}
a:active {
    color: #BF5708;
}
a {
    text-decoration: none;
}
.sticky-top {
    position: -webkit-sticky;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1020;
    background: #fff;
}
section {
  padding: 2.4rem 5rem;
  overflow: hidden;
}
.h1-tag {
    font-size: calc(1.375rem + 1.5vw) !important;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}
.h2-tag {
    font-size: calc(1.325rem + .9vw) !important;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}
.h3-tag {
    font-size: calc(1.3rem + .6vw) !important;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}
.h4-tag {
    font-size: calc(1.275rem + .3vw) !important;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}
.h5-tag {
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}
.h6-tag {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}
.sub-heading { 
    width: 78%;
}
section span {
    color: #C14E00;
}
.title-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
p {
  color: #4B5563;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}
.tick-emoji {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
}
.tick-emoji::before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 0;
}
.title-tag {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
}
/*In general css end*/

/* Firefox */
* {
    scrollbar-width: auto;
    scrollbar-color: #BF5708 #ffffff;
}
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 14px;
}
*::-webkit-scrollbar-track {
    background: #ffffff;
}
*::-webkit-scrollbar-thumb {
    background-color: #BF5708;
    border-radius: 10px;
    border: 3px solid #ffffff;
}
/* end */

/*progress scroll style css start*/
#progress {
    position: fixed;
    bottom: 110px;
    right: 20px;
    height: 50px;
    width: 50px;
    display: none;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 9999;
}

#progress-value {
    display: block;
    height: calc(100% - 8px);
    width: calc(100% - 8px);
    background-color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #001a2e;
}
.scroll-arrow {
    width: 24px;
}
/*progress scroll style css end*/

/*whatsapp sticky style start*/
.whatsapp-sticky {
    position: fixed;
    bottom: 54px;
    right: 20px;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    background-color: #2ab540; 
}

.whatsapp-sticky img {
    width: 98%; 
    height: auto; 
    max-width: 100%;
    max-height: 100%;
}
/*whatsapp sticky style end*/

/*pulse icon animation start*/
 :root {
    --brand-orange: #BF5708;
    --brand-blue: #1E40AF;
    --brand-green: #16A34A;
    --card-radius: 24px;
}
.pulse-ring {
    transform: scale(0.7) !important;
}
.tag-title {
  color: #B04F08;
  font-weight: 700;
  background: #FFF;
  border-radius: 10px;
  padding: 5px;
  letter-spacing: 1px;
  font-size: 14px;
}
.badge-pill {
    border-radius: 999px;
    padding: .45rem .9rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
}
.pulse-ring {
    position: absolute;
    border-radius: 999px;
    opacity: 0.12;
    border: 4px solid;
    pointer-events: none;
    width: 76px;
    height: 76px;
}
.rounded-3xl {
    border-radius: 24px;
}
.rounded-2xl {
    border-radius: 16px;
}
.slide-in-left {
    animation: slideInLeft .8s ease both;
}
.slide-in-right {
    animation: slideInRight .8s ease both;
}
.fade-in-up {
    animation: fadeInUp .7s ease both;
}
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-28px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(28px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.4);
    }
}
.badge-pill {
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-blue));
    color: #fff;
}
/*pulse icon animation end*/

/*Breadcrumbs style start*/
.breadcrumb-div {
    /*position: absolute;*/
    background-color: #fff;
    color: #f1f1f1;
    padding: 0;
    letter-spacing: 1px;
    top: 78px;
    z-index: 2;
    width: 100%;
    white-space: nowrap;
    overflow: auto;
    padding-left: 5rem;
}
.breadcrumb {
    margin-top: 1rem;
}
.breadcrumb a {
    font-size: 16px;
}
.home-nav {
  color: #BF5708;
  padding: 12px;
}
.home-icon {
   display: none;
} 
.fawidth {
    padding-left: 8px;
    padding-right: 8px;

}
.product-nav {
    color: #2e475d;
    pointer-events: none;
}
/*Breadcrumbs style end*/

/*hero section style start*/
.hero-section, .unlock {
    background: #F5FAFF;
}
.right {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brand-para {
  color: #505766;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}
.brand-shop-button {
  display: flex;
  flex-direction: row;
  gap: 20px;
  color: #6B7280;
  margin-top: 40px !important;
}
a {
  text-decoration: none;
}
.btn {
  display: inline-block;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  user-select: none;
  border-radius: 10px;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.hero_schedule_button {
  width: 180px ;
  font-size: 16px ;
  font-weight: 500 ;
  padding: 14px;
}
.secondary_button {
  color: #fff;
  background: #BF5708;
}
.secondary_button:hover {
  background-color: #ae3910;
  border-color: #a5360f;
  color: white !important;
}
.primary_button:hover {
  background-color: #808080;
  border-color: #808080;
  color: white !important;
}
.hero_contact_button {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  padding: 14px;
  width: 180px;
  border: 1.5px solid grey;
}
.car-wrap {
    display: flex;
    justify-content: center;
}
.car-image {
  max-width: 100%;
  height: auto;
}
/*Hero section style end*/

/*machine integration section2 style start*/
.pacs-card {
  padding: 10px 20px 10px 0px;
  border-radius: 6px;
  position: relative;
  float: left;
}
.pacs-card .icon-title {
  width: 35px;
  float: left;
}
.pacs-card h3 {
  margin: 1px 0 10px 52px;
  font-weight: 600;
}
.pacs-card p {
  margin: 5px 0 10px 52px;
  color: #666;
  font-size: 18px;
  line-height: 28px;
}
/*machine integration section2 style end*/

/*we are innovative section start*/
.our-products_title {
  text-align: center;
}
.brand-detail {
  display: flex !important;
  flex-direction: column !important;
  row-gap: 25px !important;
}
.mobile-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 36px;
  column-gap: 20px;
  align-items: stretch;
}
.mobile-product-grid > .col-item {
  height: auto;
}
.blog_post-first {
  background: #Fff;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 1px 1px 2rem rgba(192, 185, 185, 0.3);
  position: relative;
  border: 0.5px transparent solid;
  height: auto;
}
.col-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.img_pod-first {
  height: 80px;
  width: 80px;
  background: #fff;
  z-index: 10;
  box-shadow: 1px 1px 1rem rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  position: relative;
  left: 5%;
  top: -13%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px #d3d3d3 solid;
}
.our-product-content {
  color: #676565;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}
.blog_post-second {
  padding: 10px;
  background: #fff;
  border-radius: 20px;
  border: 0.5px transparent solid;
  box-shadow: 1px 1px 2rem rgba(192, 185, 185, 0.3);
  position: relative;
}
.img_pod-second {
  height: 80px;
  width: 80px;
  background: #fff;
  z-index: 10;
  position: relative;
  left: 5%;
  top: -13%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 9px 45px rgba(0, 0, 0, 0.05);
  border-radius: 9999px;
  border: 0.5px #d3d3d3 solid;
}
.img_pod-first img, .img_pod-second img, .img_pod-third img, .img_pod-fourth img {
  display: block;
  width: 50%;
  height: auto;
  position: relative;
  z-index: 2;
}
.blog_post-third {
  background: #fff;
  border-radius: 20px;
  border: 0.5px transparent solid;
  padding: 10px;
  box-shadow: 1px 1px 2rem rgba(192, 185, 185, 0.3);
  position: relative;
}
.img_pod-first::before, .img_pod-second::before, .img_pod-third::before, .img_pod-fourth::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px dashed #E16408;
  border-radius: 50px;
  z-index: 1;
  pointer-events: none;
}
.img_pod-third {
  height: 80px;
  width: 80px;
  background: #fff;
  z-index: 10;
  position: relative;
  left: 5%;
  top: -13%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 9px 45px rgba(0, 0, 0, 0.05);
  border-radius: 9999px;
  border: 0.5px #d3d3d3 solid;
}
.blog_post-fourth {
  padding: 10px;
  border-radius: 20px;
  box-shadow: 1px 1px 2rem rgba(192, 185, 185, 0.3);
  position: relative;
  background: #fff;
  border: 0.5px transparent solid;
}
.img_pod-fourth {
  height: 80px;
  width: 80px;
  background: #fff;
  z-index: 10;
  position: relative;
  left: 5%;
  top: -13%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 9px 45px rgba(0, 0, 0, 0.05);
  border-radius: 9999px;
  border: 0.5px #d3d3d3 solid;
}
.prod-cont {
    margin-top: 5%;
}
@keyframes rotate-border {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.blog_post-first.ll:hover .img_pod-first::before,
.blog_post-second.ll:hover .img_pod-second::before,
.blog_post-third.ll:hover .img_pod-third::before,
.blog_post-fourth.ll:hover .img_pod-fourth::before {
    animation: rotate-border 8s linear infinite;
}
/*we are innovative section end*/

/*content hover image show section style start*/
.section-wrap1 {
  margin-bottom: 6%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.section-wrap2 {
  margin-bottom: 1%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.nav_btns1, .nav_btns2, .nav_btns3, .nav_btns4, .nav_btns5, .nav_btns6, .nav_btns7 {
  display: none;
}
.tabs-container, .tabes-container, .tabez-container, .tabm1-container, .tabm2-container, .tabm3-container, .tabs1-container {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
.tab, .tabes, .tabesn, .tabe, .tabez, .tabm1, .tabm2, .tabm3, .tabs1 {
  font-size: 20px;
  font-weight: 600;
  padding: 14px;
    padding-right: 14px;
    padding-left: 14px;
  margin-bottom: 10px;
  background-color: #fafafa;
  max-height: fit-content;
  border-radius: 10px;
  cursor: pointer;
  overflow: auto;
  transition: max-height 0.5s, overflow 0.5s 0.5s;
}
.tab.active, .tabes.active, .tabesn.active, .tabe.active, .tabez.active, .tabm1.active, .tabm2.active, .tabm3.active, .tabs1.active {
  border-radius: 10px;
  fill: #B04F08;
  color: #B04F08;
  background: #FCF0E6;
  transition: max-height 0.5s, overflow 0.5s 0.5s;
}
.showme {
    display: none;
}
.showme p {
   color: #676565;
  font-size: 16px;
  padding: 0px 31px;
  margin-bottom: 10px;
  line-height: 25px;
  font-weight: 400;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  transition: max-height 0.5s, overflow 0s;
}
.tabe.showhim.px-2.active .showme {
    display: block;
}
.tabes.showhim.px-2.active .showme {
    display: block;
}
.tabm1.showhim.px-2.active .showme {
    display: block;
}
.tabm2.showhim.px-2.active .showme {
    display: block;
}
.tabm3.showhim.px-2.active .showme {
    display: block;
}
.tabs1.showhim.px-2.active .showme {
    display: block;
}
.contents, .contentse, .contente, .contentseae, .contentm1, .contentm2, .contentm3, .contents1 {
  display: none;
  padding: 5px;
}
.content-img {
  max-width: 100%;
  transform: translateY(5px);
  transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out;
  will-change: opacity, transform;
}
.active {
  display: block;
}
/*content hover image show section style end*/

/*Download brochure section start*/
.sc-4 .container {
  background: #f6f9fc;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.trigger {
  position: relative;
  background: #c14e00;
  display: inline-block;
  width: 200px;
  height: 50px;
  border-radius: 10px;
  color: #fff;
}
.trigger:hover {
  color: #fff;
}
.download {
  overflow: hidden;
}
.down-menu .download, .down-menu em, .down-menu i {
  position: absolute;
  width: 100%;
  height: 100%;
  font-style: normal;
  text-align: center;
  left: 0;
}
.down-menu em {
  line-height: 50px;
  top: 0;
  font-size: 18px;
  color: #fff;
}
.down-menu em, .down-menu i {
  transition: top 0.3s;
}
.down-menu i {
  top: 100%;
  padding-top: 5px;
  color: #fff;
}
.down-menu em, .down-menu i {
  transition: top 0.3s;
}
.down-menu i::before {
  content: "\f019";
  font-family: FontAwesome;
  font-size: 2rem;
}
.trigger:hover i {
  top: 0;
}
.trigger:hover em {
    top: -100%;
    /* move the Download text to the top*/
}
/*Download brochure section end*/

/*clinic feature card section start*/
.feature-card-wrapper .row {
  margin-top: 50px;
}
.feature-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 15px 15px;
  text-align: center;
  height: 100%;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 1px solid transparent;
  z-index: 1;
  box-sizing: border-box;
  transition: border-color 0.5s ease;
}
.icon-wrapper-one {
  background-color: #F2F3FF;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  position: relative;
  top: -89px;
  z-index: 2;
}
.icon-wrapper-two {
  background-color: #FFEFDF;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  position: relative;
  top: -89px;
  z-index: 2;
}
.icon-wrapper-three {
  background-color: #E4E6F4;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  position: relative;
  top: -89px;
  z-index: 2;
}
.icon-wrapper-four {
  background-color: #FCF0E6;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  position: relative;
  top: -89px;
  z-index: 2;
}
.feature-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.feature-card:hover h3 {
    color: #E16408 !important;
}
.feature-card:hover::before {
    border-color: #e16408;
    /* Brand color for border */
    animation: border-draw 0.5s linear forwards;
}
.feature-card:hover .icon-wrapper-one, .feature-card:hover .icon-wrapper-two, .feature-card:hover .icon-wrapper-three, .feature-card:hover .icon-wrapper-four {
  transform: scale(1.1) translateY(0px);
  animation: bouncing 0.8s 0.5s;
  border: 1px solid #e16408;
}
.feature-card .icons {
  transition: all 0.3s ease-in-out 0.1s;
  animation: bouncing 0.8s 0.5s;
}
.icon-wrapper-one .icons {
  color: #7273A8;
}
.icons {
  width: 50%;
  z-index: 2;
}
.cont-card {
  margin-top: -68px;
  padding-bottom: 18px;
}
@keyframes bouncing {
    from,
    to {
        transform: scale(1, 1);
    }
    25% {
        transform: scale(0.9, 1.1);
    }
    50% {
        transform: scale(1.1, 0.9);
    }
    75% {
        transform: scale(0.80, 1.05);
    }
}
/*clinic feature card section end*/

/*poster section css*/
.poster-section {
  background: linear-gradient(90deg in oklab, #F25449, #F88A4B);
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.poster-navigate {
  text-decoration: none;
}
.poster-heading {
  margin-bottom: 20px;
  color: #fff;
  font-weight: 600;
  display: inline-block;
}
.poster-content {
  color: #fff;
  font-size: 18px;
  line-height: 33px;
}
.brand-shop-button {
  display: flex;
  flex-direction: row;
  gap: 25px;
}
.poster-demo-btn {
  background-color: black !important;
  color: white !important;
}
.poster-demo-btn:hover {
  background-color: white !important;
  color: black !important;
}
/*poster section css*/

/*FAQ section style start*/
.faq .accordion-container {
    width: 100%;
    max-width: 1000px;
}
.faq .accordion-item {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.faq .accordion-header {
    background-color: #fff;
    color: #000;
    padding: 15px;
    font-size: 20px;
    border: none;
    height: 75px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}
.faq-section .container {
    max-width: 1000px;
    overflow: hidden;
}
.faq .accordion-header:hover {
    background-color: #BF5708;
    color: #fff;
}
.faq .accordion-header.active {
    background-color: #BF5708;
    color: #fff;
}
.faq .accordion-content {
    background-color: #FAFAFA;
    overflow: hidden;
    padding: 0 15px;
    border-radius: 10px;
    max-height: 0;
    transition: max-height 0.3s ease;
}
.faq .accordion-content p {
    margin: 15px 0;
    line-height: 1.5;
    font-size: 18px;
}
.faq .icon {
    transition: transform 0.3s ease;
}
.faq .active .icon {
    transform: rotate(45deg);
}
.faq {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
/*FAQ section style end*/
@media screen and (max-width: 567px) {
/*In general css start*/
section {
    padding: 25px 16px;
    overflow: hidden;
}
.sub-heading { 
    width: 100%;
}
.h1-tag {
    font-size: calc(1.375rem + 1.5vw);
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}
.h2-tag {
    font-size: calc(1.325rem + .9vw);
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}
.h3-tag {
    font-size: calc(1.3rem + .6vw);
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}
.h4-tag {
    font-size: calc(1.275rem + .3vw);
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}
/*In general css end*/

/*Breadcrumbs style start*/
.breadcrumb-div {
    padding: 5px 5px !important;
}
.home-menu {
   display: none;
}
.home-icon {
   display: block;
   padding: 0;
   padding-left: 8px;
} 
/*Breadcrumbs style end*/

/*whatsapp sticky style start*/
.whatsapp-sticky {
    position: fixed;
    bottom: 54px;
    right: 20px;
    height: 46px;
    width: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    background-color: #2ab540; 
}
/*whatsapp sticky style end*/

/*Hero section style start*/
.car-image {
    width: 100%;
    height: auto;
}
.brand-shop-button {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #6B7280;
    margin-top: 0px !important;
}
.secondary_button {
    color: #fff;
    font-size: 15px;
    font-weight: 500 ;
    background: #BF5708;
    padding: 10px ;
    width: 100% ;
}
.primary_button {
    color: #000;
    border-color: #d3d3d3;
    font-size: 15px;
    font-weight: 600;
    padding: 10px;
    width: 100%;
}
.brand-para {
    color: #505766;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
  }
/*Hero section style end*/

/*machine integration section2 style start*/
.pacs-card h3 {
  margin: 1px 0 10px 52px;
  font-weight: 500;
}
.pacs-card p {
  margin: 5px 0 10px 52px;
  color: #666;
  font-size: 16px;
  line-height: 26px;
}
/*machine integration section2 style end*/

/*we are innovative section start*/
.mobile-product-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}
.blog_post-first, .blog_post-second, .blog_post-third {
    margin-bottom: 20px;
}
.prod-cont {
    margin-top: 8%;
}
.title-wrap p {
    font-size: 16px;
    color: #676565;
    line-height: 28px;
}
/*we are innovative section end*/

/*content hover image show section style start*/
.tabs-container, .tabes-container, .tabez-container, .tabm1-container, .tabm2-container, .tabm3-container, .tabs1-container {
    scroll-snap-type: x mandatory;
    display: flex;
    Flex-direction: row;
    Gap: 10px;
    overflow: scroll;
    margin-top: 4px;
}
.tab, .tabes, .tabesn, .tabe, .tabez, .tabm1, .tabm2, .tabm3, .tabs1 {
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 600;
    padding: 14px;
    margin-bottom: 10px;
    max-height: fit-content !important;
    min-width: 300px;
    width: 100%;
    cursor: pointer;
    overflow: auto;
    scroll-snap-align: start;
}
.tabe.showhim.px-2.active .showme {
    display: block;
}
.tabes.showhim.px-2.active .showme {
    display: block;
}
.tabm1.showhim.px-2.active .showme {
    display: block;
}
.tabm2.showhim.px-2.active .showme {
    display: block;
}
.tabm3.showhim.px-2.active .showme {
    display: block;
}
.tabs1.showhim.px-2.active .showme {
    display: block;
}
.tabm4.showhim.px-2.active .showme {
    display: block;
}
.content-img {
    height: auto;
}
.active p {
    display: block;
}
.showme {
    display: block;
}
.next-btns {
    display: block;
    background-color: #e16408;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #faf7f2;
}
.next-btns svg {
    width: 16px;
    color: #fff;
}
.tabs-wrap {
    position: relative;
}
.nav_btns1, .nav_btns2, .nav_btns3, .nav_btns4, .nav_btns5, .nav_btns6, .nav_btns7 {
    position: absolute;
    z-index: 2;
    display: flex;
    width: 105%;
    justify-content: flex-end;
    top: 50%;
    transform: translateY(-50%);
}
.section-change {
    display: flex;
    flex-direction: column;
}
/* Right column (tabs/content) comes first */
.section-change .mobile-flex {
    order: 1;
}
/* Left column (image) comes second */
.section-change > .col-lg-6 {
    order: 2;
}
/*content hover image show section style end*/

/*clinic feature card section start*/
.feature-card-wrapper .row {
    display: flex;
    flex-direction: column;
    gap: 75px;
}
.hero-images {
    margin-top: 10px;
}
/*clinic feature card section end*/

/*Download Broucher section start*/
.trigger {
    width: 100%;
    height: 42px;
}
.down-menu em {
  line-height: 42px;
  top: 0;
  font-size: 16px;
}
.sc-4 .container{
   text-align: center;
   padding:20px;
}
/*Download Broucher section end*/

/*Poster page start*/
.poster-section {
  background: linear-gradient(90deg in oklab, #F25449, #F88A4B);
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.poster-demo-btn {
    width: 100% !important;
    padding: 10px;
}
/*Poster page end*/

/*FAQ section start*/
.faq .accordion-header {
    font-size: 16px;
    height: auto;
}
.faq .accordion-content p {
  margin: 15px 0;
  line-height: 1.5;
  font-size: 16px;
}
/*FAQ section end*/
}
@media (min-width:700.98px) and (max-width:990px) {
/*In general css start*/
section {
    padding: 1.5rem 1.5rem;
    overflow: hidden;
}
.sub-heading {
  width: 100%;
}
/*In general css end*/

/*Breadcrumbs style start*/
.breadcrumb-div {
    padding: 4px 1.6rem !important;
}
/*Breadcrumbs style end*/ 

/*Hero section style start*/
.brand-para {
  color: #505766;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}
.brand-shop-button {
  display: flex;
  flex-direction: row;
  gap: 20px;
  color: #6B7280;
  margin-top: 10px !important;
}
.first-doc-pic-2 {
    margin-top: 10%;
}
/*Hero section style end*/

/*we are innovative section start*/
.brand-section-2 .col-md-6 {
    flex: 0 0 100% !important;
    width: 50%;
}
/*we are innovative section end*/

/*content hover image show section style start*/
.content-img {
    height: auto;
}
/*content hover image show section style end*/   

/*clinic feature card section start*/
.feature-card-wrapper .row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 75px;
  }
.feature-card-wrapper {
  margin: 0px 0px;
}
/*clinic feature card section end*/

/*FAQ section start*/
.faq .accordion-header {
    font-size: 18px;
}
.faq .accordion-content p {
    margin: 15px 0;
    line-height: 1.5;
    font-size: 16px;
}
/*FAQ section end*/
}
@media (min-width:990px) and (max-width:1200px) {
/*content hover image show section style start*/
.content-img {
    height: auto;
}
/*content hover image show section style end*/

/*clinic feature card section start*/
.feature-card-wrapper .row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 75px;
}
.feature-card-wrapper {
    margin: 20px 0px 0px 0px;
}
/*clinic feature card section end*/
}   