
/*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;
}

:root {
  --brand: #C14E00;
  --brand-light: #fff8ee;
  --brand-border: #f5c48a;
  --brand-orange: #BF5708;
  --brand-blue: #1E40AF;
  --brand-green: #16A34A;
  --brand-tint: rgba(191,87,8,.08);
}

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%;
    font-size: 19px;
}
section span {
    color: var(--brand);
}
.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: var(--brand-orange); #ffffff;
}
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 14px;
}
*::-webkit-scrollbar-track {
    background: #ffffff;
}
*::-webkit-scrollbar-thumb {
    background-color: var(--brand-orange);
    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 {
   
}
.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;
    position: relative;
    z-index: 2;
    pointer-events: auto;
}
.home-nav {
  color: var(--brand-orange);
  padding: 12px;
}
.home-icon {
   display: none;
   cursor: pointer;
} 
.fawidth {
    padding-left: 8px;
    padding-right: 8px;

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

/* hero section start */

.hero-section {
   background: #F5FAFF;
    background-size: 400% 400%;
    animation: gradient 8s ease infinite;
}
.ecolims-green-bg{
     background: linear-gradient(-45deg, #98FB98, #90EE90, #98FB98) !important;
}
.right {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brand-para {
  color: #505766;
  font-size: 19px;
  font-weight: 500;
  line-height: 32px;
}
.brand-shop-button-top {
  display: flex;
  flex-direction: row;
  gap: 20px;
  color: #6B7280;
  margin-top: 40px;
}
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: var(--brand-orange);
}
.primary_button{
    background-color: #fff;
    color: #000;
}
.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;
}

/* hero section end */


/* ecolims section 2 start */

.block-quotes{
    margin-top: -25px;
}

.pacs-card {
  padding: 0px 20px 2px 0px;
  border-radius: 6px;
  position: relative;
  float: left;
}
.feature-row{
    gap: .9rem;
    display: flex;
}
.pacs-card .h5-tag {
  color: #222222;
  font-weight: 500;
}
.pacs-card .icon-title {
  float: left;
}
.pacs-card i{
    color: var(--brand-orange);
}
.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand-tint);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* ecolims section 2 end */

/* dental section 2 start */

.services .icon {
  margin:1px auto 10px;
  width: 40px;
  height: 40px;
  color: var(--brand-orange);
}
.clickable-div .icon svg {
  fill: var(--brand-orange);
}

.services .box {
  padding: 5%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: transparent;
    background-color: transparent;
  transition: all 0.3s ease-in-out;
  text-align: left;
  box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}
.services .box:hover {
  transform: scale(1.1);
  background-color: #fef4ea;
}
.box .title a{
    color: #000;
}
.section-para {
  color: #8fa3bc;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 400;
  margin-top: .6rem;
  letter-spacing: .4px;
}
.section-para {
  font-size: 20px;
  line-height: 30px;
  width: 70%;
  text-align: center;
  color: #676565;
}

.services .title {
  font-weight: 700;
  font-size: 22px;
  text-align: center;
}
.services .description {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0;
  color: #676565;
  cursor: pointer;
  text-align: center;
}
/* dental section 2 end */
/* ecolims same section 3 */

/* dental section 3 start */

.section-two .content.active {
    display: block;
}

.section-two .content {
    display: none;
}

.content-img {
    max-width: 100%;
    transform: translateY(5px);
    height: auto;
    transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out;
    will-change: opacity, transform;
}

.sub-info {
    font-weight: 600;
    color: #000;
}

.dentabe p {
    line-height: 28px;
}

.pe-md-3 .first-box {
    text-align: -webkit-right;
}

.text-sm-end {
    cursor: pointer;
}

.ps-md-3 {
    cursor: pointer;
}


.icon-image-wrapper {
    position: relative;
    display: inline-block;
}

.icon-image {
    /* Ensure the image remains circular */
    transition: transform 0.3s ease-in-out;
    /* Smooth transform for rotation */
}

.icon-image-border {
    position: absolute;
    top: -14px;
    left: -14px;
    width: 80px;
    height: 80px;
    border: 2px dashed var(--brand-orange);
    /* Adjust color to match your theme */
    border-radius: 50%;
    animation: rotate-border 5s linear infinite;
    opacity: 0;
    /* Start hidden */
    transform: rotate(0deg);
    pointer-events: none;
    /* Ensures the border is unclickable */
    transition: opacity 0.3s ease;
}


/* Keyframe animation for rotation */

@keyframes rotate-border {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.dentabe.active .icon-image-border {
    opacity: 1;
}

.icon-image {
    transition: transform 0.3s ease-in-out;
}

.icon-image {
    width: 50px;
    height: auto;
}

/* dental section 3 end */

/*content hover image show section4 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: #00803D;
  color: #00803D;
  background: #EDF9EB;
  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;
}
.tabesn.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;
}
.tabm4.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 section4 style end*/

/*Poster section css start*/
.poster-section {
    background: linear-gradient(90deg in oklab, #F25449, #F88A4B);
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.poster-navigate {
  text-decoration: none;
}
.poster-content {
  color: #000;
  font-size: 18px;
  line-height: 33px;
}
.brand-shop-button {
  display: flex;
  flex-direction: row;
  gap: 20px;
  color: #6B7280;
  margin-top: 40px;
}
.hero_schedule_button {
  width: 180px;
  font-size: 16px;
  font-weight: 500;
  padding: 14px;
}
.content-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.poster-heading {
  color: #000;
}
.poster-demo-btn {
  background-color: black !important;
  color: white !important;
}
/*Poster section css end*/

/* dental banner section */
.dental-bg{
    background: #f6f9fc;
}

.newsletter, .testimonial {
  background: url(/images/new-homepage/bg-top-dental.webp), url(/images/new-homepage/bg-bottom-dental.webp);
    background-color: rgba(0, 0, 0, 0);
    background-position-x: 0%, 0%;
    background-position-y: 0%, 0%;
    background-repeat: repeat, repeat;
  background-color: rgba(0, 0, 0, 0);
  background-position-x: 0%, 0%;
  background-position-y: 0%, 0%;
  background-repeat: repeat, repeat;
  background-position: left top, right bottom;
  background-repeat: no-repeat;
  background-color: var(--brand-orange);
  border-radius: 15px;
}
/* dental banner section end */

/* dental counter section */
.counter-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 567px) {
/*In general css start*/
section {
    padding: 25px 16px;
    overflow: hidden;
}
.sub-heading { 
    width: 100%;
    font-size: 18px;
}
.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*/


/*FAQ section11 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: var(--brand-light);
  border: 1px solid var(--brand-border);
  color: var(--brand);
}
.faq.accordion-header.active {
  background: var(--brand-light);
  border: 1px solid var(--brand-border);
  color: var(--brand);
}
.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);
    color: var(--brand);
}
.faq {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
/*FAQ section11  style end*/


@media screen and (max-width: 567px) {
/*In general css start*/
section {
    padding: 25px 16px;
    overflow: hidden;
}
.sub-heading { 
    width: 100%;
    font-size: 18px;
}
p {
  color: #4B5563;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}
.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 section1 style start*/
.car-image {
    max-width: 100%;
    height: auto;
}
.brand-shop-button-top {
    display: flex;
    /*flex-direction: column;*/
    gap: 20px;
    color: #6B7280;
    margin-top: 0px !important;
    justify-content: center;
}

.brand-para {
    color: #505766;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
  }
/*Hero section1 style end*/

/*ecolims soil section start*/

.block-quotes{
    position: relative;
    padding-bottom: 0px;
    height: auto;

}

/*ecolims soil 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: var(--brand-orange);
    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*/


/*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%;
  font-size: 18px;
}
p {
  color: #4B5563;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}
/*In general css end*/

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

/*Hero section style start*/
.car-image {
    max-width: 100%;
    height: auto;
}
.primary_button {
    color: #000;
    background-color: #fff;
   
  }
.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;
}
/*ecolims soil section start*/

.block-quotes{
    position: relative;
    padding-bottom: 0px;
    height: auto;
}

/*ecolims soil section end*/
/*Poster Section Css start*/
  .ecolims-green-bg{
     height: auto !important;
}
 .poster-section {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

/*Poster Section Css end*/
/*dental section 13 start*/
.w-lg-75 {
    width: 90% !important;
  }
/*dental section 13 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*/
}

/* ─── MOBILE (up to 767px) ───────────────────────────────────────────────── */
@media (max-width: 767px) {
    /*Hero section style start*/
.car-image {
    max-width: 100%;
    height: auto;
}
  .secondary_button {
    color: #fff;
    font-size: 16px;
    padding: 14px;
    width: 100%;
  }
 .primary_button {
    color: #000;
    background-color: #fff;
    width: 100%;
  }
  /* dental section 2  start*/
  .services .icon i {
  font-size: 40px !important;
}
/* dental section 2  end*/

/*dental section start*/

.mobile-top-resp{

 margin-top: 30px;
}
/*dental section end*/
/*ecolims soil section start*/
.block-quotes{
    position: relative;
    padding-bottom: 0px;
    height: auto;
    margin-top: -15px;
}

/*ecolims soil section end*/  
 /*advanced dms banner section*/
 .advanced-dms{
    padding: 35px 20px;
    text-align: center;
 }
  /*advanced dms banner section end */

  /*Poster Section Css start*/
  .poster-bottom{
     height: 660px !important;
}
 .poster-section {
    height: 850px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
.poster-heading {
    text-align: center;
  }
.brand-app {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
.poster-content {
    font-size: 16px;
    text-align: center;
    line-height: 25px;
}
.brand-shop-button{
    margin-bottom: 20px;
    margin-top: 20px;
}
/*Poster Section Css end*/
}

/* ─── desktop (only) ───────────────────────────────────────────────── */

@media (min-width: 992px) {
  .w-lg-75 {
    width: 80% !important;
  }
}