/* INDEX PAGE*/
/* 
01.Home Page 
02.AboutUS Page
03.Service Page
04.Portfolio Page
05.ContactUs Page
 */

/* ........................... */
/* Fonts */
/* ........................... */

@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

/* ubuntu-300 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/ubuntu-v20-latin-300.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ubuntu-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/ubuntu-v20-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ubuntu-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/ubuntu-v20-latin-500.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ubuntu-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/ubuntu-v20-latin-700.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
  font-family: "Denike";
  font-style: normal;
  src: url("../fonts/Denike.woff") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ........................... */
/* Comman Css */
/* ........................... */

html {
  font-size: 10px;
  margin: 0;
  padding: 0;
  height: 100%;
  /* overflow-x: hidden; */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Ubuntu";
  font-size: 2rem;
  background-color: white;
  overflow-x: hidden;

  /* background-color: #91af9e; */
}

/* width */
body::-webkit-scrollbar {
  width: 7px;
}

/* Track */
body::-webkit-scrollbar-track {
  background: #bed2be;
}

/* Handle */
body::-webkit-scrollbar-thumb {
  background: #76b737;
  border-radius: 30px;
}

::selection {
  color: #fff;
  background: #76b737;
}

.row {
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
p {
  padding: 0;
  margin: 0;
  list-style: none;
}

:root {
  --color-primary: #4f5b45;
  --color-black-secondary: #111111;
  --color-light-black: #151716cc;
  --color-dark-grey: #665858;
  --color-white: #ffffff;
}

h1 {
  font-size: 8rem;
  line-height: 100%;
}

h2 {
  font-size: 7rem;
  line-height: 100%;
}

h3 {
  font-size: 6.2rem;
  line-height: 100%;
}

h4 {
  font-size: 5.2rem;
  line-height: 100%;
}

h5 {
  font-size: 4rem;
  line-height: 100%;
}

h6 {
  font-size: 3rem;
  line-height: 100%;
}

a {
  text-decoration: none;
}

.containerX {
  margin: 0 12rem;
}

.section_margintop {
  margin-top: 15rem;
}

.mb50 {
  margin-bottom: 50rem;
}

.website-button {
  padding: 1.2rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1.8rem;
  font-weight: 400;
  border-radius: 0.8rem;
}

/* Loader-section */
.Loader-section {
  width: 100%;
  height: 100vh;
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  background-image: url(../images/testimonials-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Loader .loader_img {
  width: 25rem;
  position: relative;
}

.Loader .loader_img img {
  width: 100%;
}

.Loader .loader_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
  z-index: 2;
  animation: shine 1s infinite;
}

@keyframes shine {
  0% {
    left: -75%;
  }

  100% {
    left: 125%;
  }
}

/* navbar */

.navbar-fix {
  z-index: 100;
  position: fixed;
  width: 100%;
  transition: 1s;
  top: 0;
}

.navbar-fix.active {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.navbar-section {
  background: white;
  padding: 0 12rem;
}

.navbar {
  display: flex;
  padding: 30px 0px;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-menu .nav-linkitems {
  text-decoration: none;
  font-size: 1.8rem;
  color: #1f1e1e;
  font-weight: 400;
  padding: 14px 16px;
  transition: 0.3s;
}

.nav-menu .nav-linkitems:hover,
.nav-menu .nav-linkitems.active {
  color: #76b737;
  background-color: #76b73729;
  border-radius: 8px;
  text-shadow: 0 0 0.65px #ffffff, 0 0 0.65px #76b737;
}

.contact-info {
  display: flex;
  align-items: center;
}

.contact-info a {
  font-size: 1.6rem;
  font-weight: 500;
}

.phone {
  /* display: flex; */
  align-items: center;
  gap: 8px;
  display: none;
}

.call-gif {
  width: 4.8rem;
  height: 4.8rem;
}

.phone-desc p {
  font-size: 12px;
  color: #e21e24;
  font-weight: 500;
}

.phone-desc span {
  font-size: 16px;
  font-weight: 500;
}

.book-appointment {
  background: #76b737;
  color: #1f1e1e;
  padding: 1.4rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  margin-left: 16px;
  transition: 0.3s;
  border: 1px solid transparent;
}

.book-appointment:hover {
  color: #76b737;
  background-color: transparent;
  border: 1px solid #76b737;
}

/* Hero Section */
/* heroshapes-images */
.hero-section {
  position: relative;
  margin-top: 135px;
  border-radius: 2.4rem;
  overflow: hidden;
}

.heroshapes-images {
  position: absolute;
  bottom: 0;
}

.herosection-content {
  position: absolute;
  top: 165px;
  left: 100px;
  width: 50%;
}

.herosection-content h1 {
  color: white;
  font-family: "Denike";
  font-size: 5rem;
}

.herosection-content p {
  color: white;
  font-weight: 300;
  font-family: "Denike";
  font-size: 7rem;
  line-height: 8rem;
  text-shadow: 2px 4px 10px black;
}

.recover-patients {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.recover-patients h2 {
  color: white;
  font-family: "Denike";
  white-space: nowrap;
}

.OpeningHours-text {
  color: #1f1e1e;
  font-weight: 700;
  font-size: 2.6rem;
  position: absolute;
  top: 60px;
  left: 40px;
}

.clinctime-section {
  position: absolute;
  top: 145px;
  left: 24px;
}

.clinctime-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.clinctime-items li {
  padding: 0 4rem;
  border-right: 1px solid #ffffff4d;
}

.clinctime-items li:last-child {
  border: 0;
}

.clinctime-items li p {
  color: #1f1e1e;
  font-weight: 500;
  font-size: 2.4rem;
}

.clinctime-items li span {
  color: #1f1e1e;
  font-weight: 400;
  font-size: 2rem;
}

.TakeTrudent-text {
  padding: 1.8rem 4.8rem;
  background: #1f1e1e;
  border-radius: 1.6rem;
  /* margin: 0 4rem; */
  margin-top: 4rem;
  overflow: hidden;
  position: relative;
  text-transform: uppercase;
}

.TakeTrudent-text:before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #ffffff71;
  animation: shiny-btn1 5s ease-in-out infinite;
}

@-webkit-keyframes shiny-btn1 {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }

  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }

  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

.TakeTrudent-text p {
  color: #76b737;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 2px;
}

/*  */
.features-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 15rem;
  margin-bottom: 60px;
}

.award-bgsection {
  position: relative;
}

.feature-card {
  border-radius: 16px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 2rem;
  gap: 3rem;
  background-color: #76b7372e;
  height: 100%;
}

.feature-card::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  bottom: -10px;
  right: -2px;
  z-index: 1;
  background-color: white;
  mask: url(../images/award-shapes.png) no-repeat;
}

.arrow-icon {
  position: absolute;
  bottom: 4px;
  right: 5px;
  background-color: #1f1e1e;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
}

.arrow-icon div {
  transition: 0.3s;
}

.arrow-icon:hover div {
  scale: 0.8;
}

.icon-container {
  background-color: #76b947;
  border-radius: 16px;
}

.icon-container img {
  padding: 42.55px 24.55px;
}

.feature-content {
  flex: 1;
}

.feature-content h6 {
  color: #76b737;
  margin-bottom: 2rem;
}

.feature-content p {
  color: #1f1e1e;
  font-size: 1.6rem;
  font-weight: 500;
  margin-right: 34px;
}

/* Before/After Section */
.showcase-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 150px;
}

.before-after {
  background-color: #f3f3f3;
  border-radius: 15px;
  color: white;
  padding: 6rem;
  position: relative;
  background-image: url(../images/experts-bg.png);
  overflow: hidden;
}

.before-after .heading {
  display: flex;
  gap: 200px;
  justify-content: center;
  margin-top: 18px;
}

.before-after h4 {
  color: #1f1e1e;
  font-family: "Denike";
  font-weight: 400;
  font-size: 4rem;
}

.comparison-image {
  margin-top: 40px;
  width: 100%;
}

.software-preview {
  position: relative;
  background-color: #f3f3f3;
  border-radius: 15px;
  color: white;
  padding: 60px;
  background-image: url(../images/experts-bg.png);
  overflow: hidden;
}

.software-preview h4 {
  color: #1f1e1e;
  font-family: "Denike";
  font-weight: 400;
  margin-top: 18px;
  text-align: center;
  font-size: 4rem;
}

.software-image {
  margin-top: 40px;
  width: 100%;
}

.transform-smile {
  background-color: #1f1e1e08;
  padding: 90px 0;
}

.before-after-bg1 {
  position: absolute;
  top: 0px;
  left: 0px;
}

.before-after-bg2 {
  position: absolute;
  bottom: 0px;
  left: 50px;
}

.smart-dental-bg1 {
  position: absolute;
  top: 0px;
  right: 0px;
}

.smart-dental-bg2 {
  position: absolute;
  bottom: 0px;
  left: 10%;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #1f1e1e;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #1f1e1e4d;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

/* marquee */
.marquee_container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 20px;
}

.marquee {
  display: flex;
  animation: marquee 30s linear infinite;
  padding: 10px 0;
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-100%, 0, 0);
  }
}

.marquee-items h3 {
  display: inline-block;
  margin-right: 50px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: currentColor;
  -webkit-text-stroke-width: 0.012em;
}

.marquee-items {
  display: flex;
  align-items: center;
  gap: 80px;
}

.marquee-img {
  margin-left: 80px;
}

.beforeafter-slider.owl-carousel,
.owl-carousel.owl-loaded {
  display: inline-grid;
  margin-top: 40px;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 16px;
}

.beforeafter-slider .item img {
  border-radius: 1.6rem;
}

/* transform your smile */

.content {
  display: flex;
  text-align: center;
  justify-content: center;
  flex-direction: column;
}

.content h3 {
  font-family: "Denike";
}

.content p {
  font-size: 18px;
  margin-top: 20px;
}

.serviceSlider-sec span {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  color: #76b737;
  font-size: 4.2rem;
  font-weight: 700;
  text-align: center;
  z-index: 2;
}

.serviceSlider-sec h6 {
  font-size: 2.4rem;
  margin-top: 2rem;
}

.serviceSlider-sec p {
  font-size: 1.8rem;
  color: #707070;
  margin-top: 1.5rem;
}

.transform-smile-btn {
  border: 1px solid #7d7d7d;
  color: #7d7d7d;
}

/* dental experts */

.expert-heading h3 {
  font-family: "Denike";
  display: flex;
  justify-content: center;
}

.expert-heading p {
  display: flex;
  justify-content: center;
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 7.8rem;
}

.dental-expert {
  background-color: #76b737;
  background-image: url(../images/experts-bg.png);
  padding: 9.6rem 0rem;
}

.dr-desc {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding-bottom: 8rem;
}

.dr-desc .description {
  padding: 5rem 0px;
}

.neeraj-desc {
  position: relative;
  display: grid;
  grid-template-columns: auto 250px;
  gap: 40px;
}

.dr-desc .description span {
  font-size: 2rem;
  margin-top: 10px;
  display: inline-block;
  font-style: italic;
}

.dr-desc .description p {
  font-size: 2rem;
  margin-top: 30px;
}

.diya-desc {
  position: relative;
  display: grid;
  grid-template-columns: 250px auto;
  gap: 40px;
}

.arrow1 {
  position: absolute;
  right: 255px;
  top: -26px;
}

.arrow2 {
  position: absolute;
  bottom: -52px;
  left: 218px;
}

.expert-btn {
  background-color: #1f1e1e;
  border: 1px solid #1f1e1e;
  color: #76b737;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 8px;
  display: flex;
  justify-self: center;
  transition: all 0.3s;
}

.expert-btn:hover {
  color: #1f1e1e;
  background-color: transparent;
}

/* achievements */
.achieve {
  margin: 15rem 14rem;
}

.achieve-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.achieve-heading h3 {
  font-family: "Denike";
}

.achieve-heading p {
  color: #707070;
  font-size: 18px;
  margin-top: 20px;
}

.achievement-item {
  display: flex;
  text-align: center;
  flex-direction: column;
}

.achievement-slider .owl-stage-outer {
  padding: 2rem 0;
}

.achievement-slider .owl-item .item {
  margin: 1rem 2rem;
}

.achievement-img {
  padding: 0px 30px;
  position: relative;
  height: 25rem;
  overflow: hidden;
}

.achievement-img img {
  border-radius: 1.2rem 1.2rem 0 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.achievement-item p {
  box-shadow: 0px 0px 50px 0px #00000014;
  background-color: white;
  padding: 60px 30px 30px;
  border-radius: 16px;
  margin-top: -30px;
  font-size: 1.7rem;
  font-weight: 500;
  height: 150px;
}

.achievement-item p a {
  color: #76b737;
  font-size: 1.6rem;
  text-decoration: underline;
  font-weight: 400;
}

.achievement-slider .owl-nav button {
  width: 6.2rem;
  height: 6.2rem;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid #76b737 !important;
  color: #76b737 !important;
  font-size: 2.8rem !important;
}

.achievement-slider.owl-theme .owl-nav [class*="owl-"]:hover {
  background: #76b737;
  color: #fff !important;
}

.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -100px;
}

.achievement-slider.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -100px;
}

.achievement-slider.owl-theme .owl-nav {
  margin: 0;
}

/* what clients says */
.client-says {
  background-color: #f3f3f3;
  background-image: url(../images/experts-bg.png);
  padding: 6rem 8rem;
  margin: 0px 14rem;
  border-radius: 2.4rem;
  overflow: hidden;
}

.client-content {
  margin-top: 58px;
}

.clients-heading h3 {
  font-family: "Denike";
}

.clients-heading p {
  font-size: 18px;
  margin-top: 8px;
  font-weight: 400;
}

.client-desc {
  padding-left: 16px;
}

.client-desc span {
  font-size: 1.8rem;
  color: #707070;
}

.client-desc p {
  font-size: 2.4rem;
  font-weight: 500;
}

.client-item {
  padding: 1.6rem 2.4rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
}

.client-item:hover,
.client-item.active {
  background-color: #1f1e1e33;
  box-shadow: 0px 0px 50px 0px #0000001a;
}

.clients-rating {
  display: flex;
  align-items: center;
}

.clients-rating p {
  margin-right: 8px;
}

.clientview-btn {
  padding: 1.4rem 2.4rem;
  margin-top: 4.8rem;
  border-radius: 8px;
  background-color: #ffffff;
  border: 1px solid #70707080;
  color: #707070;
  font-size: 16px;
  font-weight: 500;
}

.clientview-btn:hover {
  background-color: #f7f7f7;
}

.client-video {
  background-color: #76b737;
  padding: 6rem 6rem 4rem;
  border-radius: 16px;
  position: relative;
}

.coma-img {
  position: absolute;
  top: -70px;
}

.client-bg {
  position: absolute;
  bottom: 0px;
  right: 9%;
}

.star-grp {
  display: flex;
  justify-self: center;
  margin-top: 20px;
}

.slider-video {
  overflow: hidden;
  height: 27rem;
  border-radius: 1.6rem;
}

.slider-video video {
  border-radius: 16px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.slider-image {
  display: none;
  transition: opacity 0.5s ease;
}

.slider-image.active {
  display: block;
  opacity: 1;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7.2rem;
  height: 7.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  border: 3px solid #ffffff;
}

.play-button i {
  font-size: 2.6rem;
}

/* book appointment */
.book-appointment-sec {
  background-image: url(../images/experts-bg.png);
  background-color: #76b737;
  margin: 15rem 14rem;
  padding: 60px;
  display: flex;
  justify-content: space-between;
  border-radius: 16px;
  align-items: center;
  position: relative;
  box-shadow: 0px 10px 50px 0px #00000033;
}

.appointment-heading h4 {
  font-family: "Denike";
}

.appointment-heading p {
  font-size: 2rem;
  margin-top: 12px;
}

.book-appointment-btn {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  background-color: #1f1e1e;
  color: #76b737;
  border-radius: 8px;
  border: 1px solid #1f1e1e;
  transition: all 0.3s;
}

.book-appointment-btn:hover {
  color: #1f1e1e;
  background-color: transparent;
}

.appointment-bg1 {
  position: absolute;
  top: 15px;
  left: 25px;
}

.appointment-bg2 {
  position: absolute;
  bottom: 10px;
  left: 24%;
}

.appointment-bg3 {
  position: absolute;
  top: 8%;
  right: 26%;
}

.appointment-bg4 {
  position: absolute;
  bottom: 7%;
  right: 2%;
}

/* footer */
.footer {
  margin-top: 100px;
}

.footer-icons {
  gap: 14px;
  display: flex;
}

.footer-icons a {
  background-color: #111111;
  border-radius: 8px;
  transition: all 0.3s;
  border: 1px solid transparent;
  color: white;
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-icons a:hover {
  border: 1px solid #111111;
  background: transparent;
  color: #111111;
}

.footer-menu {
  display: flex;
}

.footer-menu a {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 14px 16px;
  transition: 0.3s;
  color: #1f1e1e;
}

.footer-menu a:hover {
  text-shadow: 0 0 0.65px #1f1e1e, 0 0 0.65px #1f1e1e;
}

.footer-secOne {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-secTwo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 6rem 15rem;
  border-radius: 8px;
  border: 1px solid #70707033;
  padding: 2.4rem 0px;
}

.footer-secTwo p {
  font-size: 1.8rem;
  font-weight: 500;
  color: #707070;
}

.mail-desc {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.location-desc {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.footer-phone-desc {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

/* .mail-desc::after{
    content: '';
    position: absolute;
     top: ;
     left: ;
} */

.copyright p {
  font-size: 16px;
  color: #707070;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
}

.transform-pattern {
  position: absolute;
  right: 0;
  top: 0;
}

.achievements-pattern-topLeft {
  position: absolute;
  left: 0;
  top: -38%;
}

.achievements-pattern-center {
  position: absolute;
  right: 0;
  top: -60%;
  z-index: -1;
}

/* About Us */

.page-heroseaction {
  position: relative;
  margin-top: 112px;
}

.Aboutus-herocontent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.Aboutus-herocontent h3 {
  font-family: "Denike";
  color: white;
}

.AboutTrudentz-sec h3 {
  font-family: "Denike";
}

.grid8040 {
  display: grid;
  grid-template-columns: auto 35%;
  gap: 10rem;
  align-items: center;
}

.grid4080 {
  display: grid;
  grid-template-columns: 35% auto;
  gap: 10rem;
}

.AboutTrudentz-sec p {
  font-weight: 300;
  margin-top: 3rem;
  color: #1f1e1e;
  font-size: 2rem;
  letter-spacing: 0.5px;
}

.whyChooseUsFAQ .accordion-header {
  line-height: inherit;
}

.whyChooseUsFAQ .accordion-header button {
  font-size: 2rem;
  font-weight: 500;
}

.whyChooseUsFAQ .accordion-item {
  background: white;
  border-radius: 8px !important;
  overflow: hidden;
  border: 1px solid #e2e2e2 !important;
  margin-top: 2rem;
}

.whyChooseUsFAQ .accordion-button:focus {
  z-index: 3;
  border-color: var(--bs-accordion-btn-focus-border-color);
  outline: 0;
  box-shadow: none;
}

.whyChooseUsFAQ .accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: white;
  box-shadow: none;
}

.whyChooseUsFAQ .accordion-body {
  border-top: 1px solid #e2e2e2;
  padding: 15px;
}

.whyChooseUsFAQ .accordion-button:focus {
  border-color: transparent;
}

.whyChooseUsFAQ .accordion-button:not(.collapsed) {
  color: #76b737;
}

.whyChooseUsFAQ {
  margin-top: 40px;
}

.whyChooseUsFAQ .accordion-body p {
  font-size: 18px;
  color: #1f1e1e;
  font-weight: 400;
}

.aboutTrudentz-pattern {
  position: absolute;
  right: 0%;
  top: 40%;
  z-index: -1;
}

.visionMission-pattern {
  position: absolute;
  left: -8%;
  top: -36%;
  z-index: -1;
}

/* Contact Us */
.contactUs-sec {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10rem;
  align-items: center;
  position: relative;
}

.contactForm {
  margin-top: 30px;
}

.contactForm input,
.contactForm textarea,
.contactForm select {
  padding: 16px 20px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #e2e2e2;
  font-size: 16px;
  font-weight: 300;
  outline: 0;
  transition: 0.3s;
}

.contactForm textarea:focus,
.contactForm input:focus,
.contactForm select:focus {
  border: 1px solid #76b737;
}

.contactUs-sec h3 {
  font-family: "Denike";
}

.contactUs-code {
  display: grid;
  grid-template-columns: 12rem auto;
  align-items: center;
  gap: 20px;
}

.contactUs-code p {
  font-family: "Denike";
  font-size: 18px;
  font-weight: 300;
  color: #1f1e1e;
  background-color: #70707014;
  padding: 15.5px 30px;
  border-radius: 8px;
}

.contactSubmit-btn {
  background-color: #76b737;
  border-radius: 8px;
  color: #1f1e1e;
  padding: 14px 20px;
  margin-top: 35px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
}

.contactSubmit-btn:hover {
  border: 1px solid #76b737;
  background-color: transparent;
}

.contactReset-btn {
  border: 1px solid #76b737;
  border-radius: 8px;
  color: #1f1e1e;
  padding: 14px 20px;
  margin-top: 36px;
  font-size: 16px;
  font-weight: 500;
  background-color: transparent;
}

.contactReset-btn:hover {
  color: #1f1e1e;
  background-color: #76b737;
}

.GetInTouch-sec {
  background-color: #f3f3f3;
  background-image: url(../images/experts-bg.png);
  padding: 5rem;
  border-radius: 2.4rem;
  position: relative;
}

.GetInTouch-desc {
  display: flex;
  gap: 12px;
  align-items: center;
}

.GetInTouch-desc p {
  font-size: 1.9rem;
  color: #1f1e1e;
  font-weight: 400;
}

.GetInTouch-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3rem;
  margin-top: 4rem;
}

.GetInTouch-img {
  position: absolute;
  bottom: 0;
  right: 0;
}

.contactus-pattern1 {
  position: absolute;
  top: -85%;
  right: 0;
  z-index: -1;
}

.contactus-pattern2 {
  position: absolute;
  top: -50%;
  left: 0;
  z-index: -1;
}

.contactUs-map iframe {
  border-radius: 12px;
}

/* Service */

.serviceHero-sec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-top: 6rem;
  position: relative;
  z-index: 99;
}

.serviceInner-sec {
  padding: 3rem;
  border: 1px solid #70707033;
  border-radius: 1.6rem;
  background-color: white;
  padding-bottom: 10rem;
}

.serviceInner-sec h6 {
  font-size: 2.4rem;
  margin-top: 2rem;
}

.serviceInner-sec p {
  font-size: 1.8rem;
  color: #707070;
  margin-top: 2rem;
}

.serviceInner-sec span {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  color: #76b737;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  z-index: 1;
}

.serviceInner-img {
  border-radius: 1.2rem;
  overflow: hidden;
}

.serviceInner-img a {
  display: block;
  position: relative;
  z-index: 1;
}

.serviceInner-img a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.8) 100%);
}

.service-pattern1 {
  position: absolute;
  right: 0%;
  top: 35%;
  z-index: -1;
}

.service-pattern2 {
  position: absolute;
  left: 0%;
  top: 100%;
}

.arrow-iconService {
  transition: transform 0.3s ease;
  cursor: pointer;
  color: #15171699;
}

.readMore-btn {
  padding: 1rem 2.4rem;
  border: 1px solid #76b737;
  border-radius: 8px;
  color: #76b737;
  background-color: white;
  font-size: 1.6rem;
  font-weight: 500;
  display: inline-flex;
  margin-top: 3rem;
  transition: all 0.3s;
  position: absolute;
  bottom: 2rem;
}

.readMore-btn:hover {
  color: white;
  background-color: #76b737;
}

.Services-items.active,
.Services-items:hover {
  background-color: #76b73729;
  text-shadow: 0 0 0.65px #ffffff, 0 0 0.65px #76b737;
}

.Services-items {
  display: flex;
  gap: 8px;
  position: relative;
  transition: 0.3s;
  padding: 9px 16px;
  border-radius: 8px;
  align-items: center;
}

.Services-items.active .navbar-link,
.Services-items:hover .navbar-link {
  color: #76b737;
}

.Services-items .navbar-link {
  font-size: 1.8rem;
  color: #1f1e1e;
  font-weight: 400;
}

.Services-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 0px 10px 0px #0000001f;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  transform: translateX(-50%);
  padding: 1rem;
  width: 62rem;
}

.Services-menu li a {
  padding: 1.2rem 2rem;
  font-size: 1.6rem;
  color: #1f1e1e;
  font-weight: 300;
  display: block;
  white-space: nowrap;
  transition: background 0.3s;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.Services-menu li img {
  opacity: 0;
  transition: 0.3s;
}

.Services-menu li a:hover {
  background: #76b73729;
}

.Services-menu li a:hover img {
  opacity: 1;
}

.dropdownmenu-wrapper {
  position: relative;
}

.dropdownmenu-wrapper:hover .Services-menu {
  opacity: 1;
  visibility: visible;
}

.dropdownmenu-wrapper:hover .arrow-iconService {
  transform: rotate(180deg);
  color: var(--color-primary);
}

/* Service: Root Canal */

.RootCanal-herocontent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.RootCanal-herocontent h3 {
  font-family: "Denike";
  color: white;
  margin-bottom: 1rem;
}

.RootCanal-herocontent p a {
  font-size: 1.8rem;
  font-weight: 400;
  color: #ffffff;
}

.RootCanal-herocontent span {
  font-size: 1.8rem;
  font-weight: 400;
  color: #76b737;
}

table.custom-table {
  border-collapse: collapse;
  width: 60%;
  font-family: sans-serif;
  font-size: 1.8rem;
  text-align: center;
  margin-top: 1rem;
}

table.custom-table th,
table.custom-table td {
  border: 1px solid #999;
  padding: 20px;
}

.custom-table td {
  color: #707070;
}

.Services_section {
  display: grid;
  grid-template-columns: auto 37rem;
  grid-gap: 6rem;
}

.TabHading {
  font-family: "Denike";
  color: #1f1e1e;
  margin-top: 6rem;
}

/* .tabs_sections{
  position: sticky;
  top: 20px;
  z-index: 10;
} */

.tabs_items {
  display: grid;
  background-color: #76b737;
  border-radius: 2rem;
  padding: 3rem;
  position: sticky;
  top: 20px;
}

.tabs_items li {
  background: none;
  color: white;
  display: inline-block;
  cursor: pointer;
  border-bottom: 1px solid #ffffff33;
  padding: 2rem 0;
}

.tabs_items li.current {
  color: #1f1e1e;
}

.tab-content {
  display: none;
}

.tab-content.current {
  display: inherit;
}

.OtherServices-text {
  font-family: "Denike";
  color: white;
  font-size: 38px;
}

.services_contant p {
  margin-top: 3rem;
  color: #707070;
  font-size: 2rem;
  font-weight: 300;
}

.rtc-pattern1 {
  position: absolute;
  right: 0%;
  top: 35%;
  z-index: -1;
}

.rtc-pattern2 {
  position: absolute;
  left: 0%;
  top: 100%;
  z-index: -1;
}

.rtc-pattern3 {
  position: absolute;
  right: -7%;
  top: -60%;
  z-index: -1;
}

.rtc-pattern4 {
  position: absolute;
  left: -7%;
  bottom: -43%;
}

/* The procedure involves */

.procedureInvolves-sec {
  margin: 3rem 0;
}

.procedureInvolves-sec h5 {
  font-weight: 400;
  margin-bottom: 3rem;
}

.procedureInvolves-desc {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.procedureInvolves-desc p {
  font-size: 2rem;
  font-weight: 300;
  color: #707070;
  margin-top: 1rem;
}

.DentalBraces-sec .DentalBraces-paraText {
  margin-bottom: 2rem;
}

.differentBraces-sec p {
  color: #707070;
  font-size: 2rem;
  font-weight: 300;
  margin-top: 1rem;
}

.differentBraces-title {
  color: black;
  font-size: 2rem;
  font-weight: 400;
  margin-top: 1.5rem;
}

.differentBraces-Advantage-title {
  color: #76b737;
  font-size: 2rem;
  font-weight: 600;
  margin-top: 1rem;
}

.differentBraces-Advantage_ul {
  list-style: disc;
  padding-left: 2rem;
  color: #707070;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.differentBraces-Advantage_ul li p {
  font-size: 1.8rem;
  font-weight: 400;
  color: #707070;
}

/* FAQs */

.FAQS-heading {
  font-weight: 400;
  margin-bottom: 3rem;
}

.faqaccordion__title {
  cursor: pointer;
  margin: 0;
  position: relative;
  padding: 2rem 1.6rem;
  font-size: 2.5rem;
  font-weight: 500;
  transition: 0.2s;
}

.accordion__icon {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

.accordion__icon .line-01,
.accordion__icon .line-02 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background-color: #272343;
  transition: 0.3s;
}

.accordion__icon .line-02 {
  transform: rotate(90deg);
}

.accordion__content {
  display: none;
}

.accordion--open .line-02 {
  transform: rotate(0deg);
}

.faqaccordion {
  margin-top: -1px;
  border-bottom: 1px solid #e2e2e2;
  width: 65%;
}

.accordion__content {
  padding: 5px 16px 16px;
}

.accordion__content p {
  margin: 0 0 16px;
  font-size: 1.8rem;
  font-weight: 300;
  color: #707070;
}

.faqaccordion__title:hover {
  color: #76b737;
}

.faqaccordion__title:hover .line-01,
.faqaccordion__title:hover .line-02 {
  background-color: #76b737;
}

.accordion--open .faqaccordion__title {
  color: #76b737;
}

.accordion--open .line-01,
.accordion--open .line-02 {
  background-color: #76b737;
}

.services_ul {
  list-style: disc;
  padding-left: 2rem;
  color: #707070;
}

/* .DentalBraces_ul {
    list-style: disc;
    padding-left: 2rem;
    color: #707070;
    margin-top: 1rem;
} */

/* Gallery */

.portfolio-container {
  margin-top: 60px;
}

.portfolio-filter-menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  border: 1px solid #76b737;
  border-radius: 1rem;
  padding: 1rem;
  background-color: white;
}

.portfolio-filter-menu li {
  border: 0;
  /* width: auto; */
  color: #1f1e1e;
  font-size: 18px;
  font-family: var(--font-medium);
  background-color: transparent;
  padding: 1.4rem 2rem;
  border-radius: 1rem;
  transition: 0.3s;
}

.portfolio-filter-menu li.active {
  background-color: #76b737;
}

.portfolio-container img {
  border-radius: 1rem;
}

.gallery-items {
  margin: 1.5rem;
}

.gallery-items a {
  border-radius: 1rem;
  overflow: hidden;
}

.gallery-items .icon {
  height: 25rem;
  width: 100%;
}

.gallery-items .icon img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.gallery-pattern1 {
  position: absolute;
  right: 0;
  top: -200px;
  z-index: -1;
}

.gallery-pattern2 {
  position: absolute;
  left: 0;
  bottom: -70%;
  z-index: -1;
}

.gallery-pattern3 {
  position: absolute;
  right: 0;
  bottom: 28%;
  z-index: -1;
}

/* Testimonial-slider */

.Testimonial-tab {
  text-align: center;
  display: inline-flex;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid #76b737;
  border-radius: 1rem;
  padding: 1rem;
}

.Testimonial-tab button {
  background-color: transparent;
  border: 0;
  padding: 1.4rem 2rem;
  border-radius: 1rem;
  color: #1f1e1e;
  transition: 0.3s;
}

.Testimonial-tab button.active {
  background-color: #76b737;
}

.testimonial-section,
.GoogleReviews-section {
  transition: opacity 0.5s ease, transform 0.3s ease;
  opacity: 1;
}

.testimonial-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 3rem;
  margin-top: 5rem;
}

.testimonial {
  background-color: #76b7372e;
}

.testimonial {
  padding: 3rem;
  border-radius: 1.6rem;
}

.testimonial-desc {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-name .title-text {
  font-size: 1.4rem;
  color: #707070;
}

.testimonial-name .name-text {
  color: #76b737;
  font-size: 1.8rem;
  font-weight: 500;
}

.testimonialContent-text {
  font-size: 1.8rem;
  color: #1f1e1e;
  margin-top: 2rem;
  height: 25rem;
  overflow: auto;
}

.testimonialContent-text::-webkit-scrollbar {
  width: 4px;
  border-radius: 20px;
}

.testimonialContent-text::-webkit-scrollbar-track {
  border-radius: 20px;
  background: #76b7372e;
}

.testimonialContent-text::-webkit-scrollbar-thumb {
  background: #76b737;
  border-radius: 20px;
}

.testimonial-video {
  margin-top: 2rem;
  height: 25rem;
}

.testimonial-video img {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  object-fit: cover;
}

.testimonial-pattern1 {
  position: absolute;
  right: -8%;
  top: -18%;
}

.testimonial-pattern2 {
  position: absolute;
  left: -8%;
  bottom: -18%;
  z-index: -1;
}

/* Meet The Team */
.MeetTheTeam-desc {
  height: 56rem;
  overflow: auto;
  padding-right: 1rem;
}

.MeetTheTeam-desc::-webkit-scrollbar {
  width: 4px;
  border-radius: 20px;
}

.MeetTheTeam-desc::-webkit-scrollbar-track {
  border-radius: 20px;
  background: transparent;
}

.MeetTheTeam-desc::-webkit-scrollbar-thumb {
  background: #70707080;
  border-radius: 20px;
}

.MeetTheTeam-secOne {
  display: grid;
  grid-template-columns: 48rem auto;
  grid-gap: 4rem;
  border: 1px solid #7070704d;
  border-radius: 1.6rem;
  padding: 3rem;
}

.meetTheTeam-Educationdesc {
  display: flex;
  gap: 1.2rem;
}

.meetTheTeam-Educationdesc .services_ul p {
  font-size: 2rem;
  font-weight: 400;
  color: #707070;
  margin-top: 1rem;
}

.doctor-iamges {
  border-top: 2px solid #000000;
  border-right: 4px solid #000000;
  border-bottom: 2px solid #000000;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.doctorourteam-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.twodoctor-iamges {
  border-top: 2px solid #000000;
  border-left: 4px solid #000000;
  border-bottom: 2px solid #000000;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.videoplay-items {
  padding: 2rem 0;
  width: 100%;
  background: #76b737;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  display: flex;
  align-items: center;
  color: #1f1e1e;
  font-size: 20px;
  font-weight: 500;
  gap: 10px;
  justify-content: center;
}

.MeetTheTeam-desc h5 {
  font-weight: 500;
  color: #1f1e1e;
}

.MeetTheTeam-desc .MeetTheTeam-degreetext {
  display: block;
  font-weight: 400;
  font-size: 2.4rem;
  color: #76b737;
  margin: 1rem 0 2rem 0;
}

.meetTheTeam-education .meetTheTeam-heading {
  font-size: 2.4rem;
  font-weight: 500;
  margin: 2rem 0;
  color: #000000;
}

.meetTheTeam-education p {
  font-weight: 400;
  font-size: 2.2rem;
  color: #707070;
  margin-top: 2rem;
}

.meetThemTeam-detailText {
  font-weight: 500;
  font-size: 2.2rem;
  color: #1f1e1e;
}

.doctorSub-text p {
  font-weight: 400;
  font-size: 2.2rem;
  color: #707070;
  margin-top: 2rem;
}

.meetTheTeam-border {
  border-bottom: 1px solid #7070704d;
  padding: 2rem 0;
}

.green-text {
  color: #76b737;
  font-weight: 500;
}

.MeetTheTeam-secTwo {
  display: grid;
  grid-template-columns: auto 48rem;
  grid-gap: 4rem;
  border: 1px solid #7070704d;
  border-radius: 1.6rem;
  padding: 3rem;
}

.team-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}

.flip-box {
  width: 100%;
  /* height: 40rem; */
  box-shadow: 0px 0px 50px 0px #00000014;
  padding: 2rem;
  border-radius: 2.4rem;
}

.flip-box-inner {
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
}

.flip-box-front img {
  width: 100%;
  height: 100%;
}

.doctor-text {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 74.32%, #000000 100%);
  padding: 2.4rem;
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 1.2rem;
  transition: 0.3s;
  top: 0;
}

.doctor-content {
  position: absolute;
  width: 100%;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.flip-box-back {
  background-color: #76b737;
  padding: 2.4rem;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 1.2rem 1.2rem 0 0;
  transition: 0.3s;
  top: 100%;
}

.flip-box:hover .flip-box-back {
  top: 0;
}

.flip-box-back ul {
  overflow: auto;
  height: 100%;
  padding-right: 1rem;
}

.flip-box-back ul::-webkit-scrollbar {
  width: 5px;
  border-radius: 20px;
}

.flip-box-back ul::-webkit-scrollbar-track {
  border-radius: 20px;
  background: transparent;
}

.flip-box-back ul::-webkit-scrollbar-thumb {
  background: #141219;
  border-radius: 20px;
}

.flip-box-back ul li {
  margin-bottom: 2rem;
  display: flex;
  gap: 12px;
}

.flip-box-back ul li p {
  font-weight: 700;
  font-size: 1.8rem;
}

.flip-box-back ul li span {
  font-weight: 400;
  font-size: 1.6rem;
}

.WorldClass-text {
  color: #76b737;
  margin-top: 1rem;
  display: block;
  font-size: 1.8rem;
}

.Approach-items {
  border-top: 1px solid #00000036;
  padding-top: 2rem;
}

/* Dental Tourism */

.DentalTourism-sec {
  margin: 0 14rem;
}

.DentalTourism-sec h6 {
  margin-bottom: 1.6rem;
}

.DentalTourism-sec p {
  font-size: 1.8rem;
  padding-bottom: 2rem;
}

.DentalTourism-border {
  margin-bottom: 3rem;
  border-bottom: 1px solid #e2e2e2;
}

.DentalTourism_ul {
  list-style: disc;
  padding-left: 2rem;
  color: #707070;
}

.DentalTourism-desc {
  display: flex;
  gap: 1.2rem;
}

.DentalTourism-desc .DentalTourism_ul p {
  font-size: 1.6rem;
  font-weight: 400;
  color: #707070;
}


/* Whatsapp Btn */
.btn-whatsapp-pulse {
  background: #76b737;
  color: white;
  position: fixed;
  bottom: 40px;
  left: 40px;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 35px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  z-index: 99;
  border: 3px solid black;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #76b737;
  }

  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

.btn-whatsapp-pulse-border {
  bottom: 120px;
  right: 20px;
  animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 25px;
  border: 5px solid #25d366;
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

@keyframes pulse-border {
  0% {
    padding: 25px;
    opacity: 0.75;
  }

  75% {
    padding: 50px;
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/*  */
.services-slider {
  display: flex;
  width: 100%;
  height: 600px;
  /* overflow: hidden; */
  gap: 3rem;
  margin-bottom: 10rem;
  margin-top: 5rem;
}

.serviceSlider-fade {
  opacity: 0;
}

.serviceSlider-fade.active {
  opacity: 1;
}

.option {
  flex: 1;
  background-color: #eee;
  border-radius: 1rem;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  color: white;
}

.option::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #1f1e1ecc;
  border-radius: 1rem;
  z-index: 1;
}

.serviceTransform-images::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.8) 100%);
  border-radius: 1rem;
  z-index: 1;
}

.option .number {
  font-size: 8rem;
  font-weight: bold;
  z-index: 2;
  margin-bottom: auto;
  margin-top: 2rem;
  opacity: 0.6;
}

.option .title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 3.2rem;
  font-weight: 600;
  z-index: 2;
  margin: 1rem 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.option .arrow {
  z-index: 2;
  background: white;
  color: black;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 1rem;
  margin: 4rem 0;
}

.option.active {
  flex: 5;
  background-size: cover;
  background-position: center;
  border-radius: 1rem;
}

.option.active::before {
  display: none;
}

.option.active .number,
.option.active .title,
.option.active .arrow {
  display: none;
}

.option .serviceSlider-sec {
  display: none;
}

.option.active .serviceSlider-sec {
  display: block;
  background: white;
  padding: 2rem;
  color: #333;
  height: 100%;
  border-radius: 1rem;
  width: 100%;
  box-shadow: 0px 0px 30px 0px #0000001a;
  border: 1px solid #70707033;
}

.serviceSlider-sec img {
  max-width: 100%;
  border-radius: 0.5rem;
  width: 100%;
  object-fit: cover;
  height: 240px;
}

.Trudentzservice-text {
  font-size: 2rem;
  font-weight: 300;
  color: #707070;
}

.Advantage-title {
  color: #76b737;
  font-size: 2.4rem;
  font-weight: 600;
  margin-top: 1rem;
}

.Advantage_ul {
  list-style: disc;
  padding-left: 2rem;
  color: #707070;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.Advantage_ul li p {
  font-size: 1.8rem;
  font-weight: 400;
  color: #707070;
}

.DentalBraces-text {
  font-size: 2rem;
  font-weight: 300;
  color: #707070;
  margin-top: 1rem;
}

/* Loader-section */

.Loader {
  width: 100%;
  height: 100vh;
  position: fixed;
  background-color: white;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Loader #Loaderloti {
  width: 160px;
  height: 160px;
  margin: 0 auto;
}

/* Modal */
.modal-content h4 {
  color: #000000;
  text-align: center;
  font-family: "Denike";
}

.modal-book {
  padding: 4rem;
  border-radius: 1.6rem;
}

.book-dialog {
  max-width: 1000px;
}

.close-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 2.8rem;
}

.aboutUsBg-img {
  position: relative;
}

.aboutUsBg-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000087;
}

.aboutTrudentz-Img {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.aboutTrudentz-Img img {
  border-radius: 1.6rem;
  width: 100%;
}

.aboutTrudentz-Img::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 80px;
  bottom: 0;
  right: -4px;
  z-index: 1;
  background-color: white;
  mask: url(../images/shapes-about.png) no-repeat;
}

.leftaboutTrudentz-Img {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.leftaboutTrudentz-Img img {
  border-radius: 1.6rem;
  width: 100%;
}

.leftaboutTrudentz-Img::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 80px;
  bottom: 0;
  left: -4px;
  z-index: 1;
  background-color: white;
  mask: url(../images/left-shapes-about.png) no-repeat;
}

.visionmission-items {
  position: relative;
}

.visionmission-items img {
  border-radius: 1.6rem;
}

.visionmission-items::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 80px;
  bottom: 0;
  right: -4px;
  z-index: 1;
  background-color: white;
  mask: url(../images/shapes-about.png) no-repeat;
}

.greenBeyond-text {
  color: #76b737;
  margin: 2rem 0;
  font-size: 2.8rem;
  font-weight: 500;
  display: block;
}

.OurTeam-items {
  text-align: center;
  margin-top: 2rem;
}

.OurTeam-items p {
  font-size: 2.4rem;
  font-weight: 500;
}

.OurTeam-items span {
  font-size: 1.6rem;
  font-weight: 400;
}

.VisionMission-slider .owl-theme .owl-nav.disabled+.owl-dots {
  position: absolute;
  margin-top: 0;
  right: 50px;
  bottom: 10px;
}

.testimonial-images {
  border: 1px solid #707070;
  border-radius: 50%;
  overflow: hidden;
}

/* Reel Btn */

.reel-section {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 2;
}

.reel-video {
  background-color: white;
  box-shadow: 0px 0px 30px 0px #0000001a;
  border: 1px solid #70707033;
  width: 36rem;
  padding: 1.6rem;
  border-radius: 1.6rem;
}

.reel-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.6rem;
}

.reel-btn {
  background-color: #76b737;
  border-radius: 50%;
  width: 6.8rem;
  height: 6.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-top: 2rem;
  position: fixed;
  z-index: 99;
  bottom: 30px;
  right: 25px;
  border: 3px solid black;
}

.reel-btn img {
  width: 3rem;
}

.close-reel {
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #76b737;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  cursor: pointer;
  right: -8px;
  top: -8px;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
}

.section-divider::before {
  content: "";
  background: linear-gradient(90deg,
      rgba(112, 112, 112, 0) 0%,
      #707070 50.5%,
      rgba(112, 112, 112, 0) 100%);
  width: 100%;
  height: 1px;
}

.view-button {
  padding: 1rem 2rem;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 500;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
  color: #707070;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.view-button:hover {
  background-color: #f7f7f7;
}

/* popup */
.Formsubmit_popup .modal-dialog {
  max-width: 550px;
  margin: 0 auto;
}

.Formsubmit_popup .modal-content {
  border: 0;
  box-shadow: 0px 0px 14px 0px #00000026;
  border-radius: 2rem;
}

.successpopup_contant {
  text-align: center;
  font-weight: 500;
}

.heading_text {
  font-family: "Denike";
  font-size: 2.8rem;
}

.successpopup_contant p {
  font-size: 1.8rem;
  font-weight: 300;
  margin-top: 1.6rem;
}

.successpopup_contant button {
  background: #76b737;
  color: #1f1e1e;
  padding: 0.8rem 5rem;
  margin-top: 3rem;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid transparent;
  margin-bottom: 2rem;
}

.successpopup_contant button:hover {
  color: #76b737;
  background-color: transparent;
  border: 1px solid #76b737;
}

.Formsubmit_popup .modal-body {
  padding: 2rem 2rem 3rem;
}

#lottie-Successful,
#lottie-Error {
  width: 15rem;
  height: 15rem;
  margin: 0 auto;
}

.Error_text {
  max-width: 75%;
  margin: 0 auto;
}

.Services-mainimg {
  border-radius: 1.2rem;
  overflow: hidden;
}

.call-items {
  background: white;
  color: white;
  position: fixed;
  bottom: 140px;
  left: 40px;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 34px;
  text-decoration: none;
  border-radius: 50%;
  z-index: 99;
  border: 3px solid black;
  animation: vibrate 1.2s infinite ease-in-out;
}

@keyframes vibrate {
  0% {
    transform: rotate(0deg);
  }

  20% {
    transform: rotate(15deg);
  }

  40% {
    transform: rotate(-10deg);
  }

  60% {
    transform: rotate(10deg);
  }

  80% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/*  */
.pbmit-ihbox-style-4 .pbmit-ihbox-btn a {
  transition: all 0.4s ease-in;
}

.pbmit-ihbox-style-4 .pbmit-ihbox-btn a:hover {
  background-color: var(--color-primary);
}

.pbmit-ihbox-style-4 .pbmit-ihbox-btn .pbmit-button-icon-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-flex;
}

.pbmit-ihbox-style-4 .pbmit-ihbox-btn .pbmit-button-icon-wrapper::before {
  content: url(../images/about-arrow-white.svg);
  position: absolute;
  top: 0;
  right: 0;
  transform: scale(0.4) translate(-55px, 58px);
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.pbmit-ihbox-style-4 .pbmit-ihbox-btn:hover .pbmit-button-icon-wrapper::before {
  transform: scale(1) translate(-2px, 0px);
}

.pbmit-ihbox-style-4 .pbmit-ihbox-btn .pbmit-button-icon {
  display: inline-block;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.pbmit-ihbox-style-4 .pbmit-ihbox-btn:hover .pbmit-button-icon {
  transform: scale(0.4) translate(45px, -50px);
}

.aboutme_btn {
  background-color: white;
  color: black;
}

.aboutme_btn:hover {
  background-color: black !important;
  color: white;
}

.service-dropdown .dropdown-toggle {
  padding: 16px 20px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #e2e2e2;
  font-size: 16px;
  font-weight: 300;
  outline: 0;
  transition: 0.3s;
  background-color: transparent;
  text-align: start;
  color: #707070;
}

.dropdown-toggle.active {
  color: #1f1e1e;
}

.service-dropdown .dropdown-toggle::after {
  border-top: 0.6rem solid #000000;
  border-right: 0.6rem solid transparent;
  border-left: 0.6rem solid transparent;
  position: absolute;
  right: 10px;
  top: 50%;
}

.service-dropdown .dropdown-menu {
  width: 100%;
}

.service-dropdown .dropdown-item {
  font-size: 1.6rem;
  padding: 0.6rem;
  cursor: pointer;
  text-wrap: auto;
}

.service-dropdown .dropdown-item:focus,
.service-dropdown .dropdown-item:hover,
.service-dropdown .dropdown-item.active {
  color: #76b737;
  background-color: #76b73729;
}

.CallUs-fix {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.CallUs-section {
  padding: 0.7rem 10.4rem;
  background: #1f1e1e;
  border-radius: 0 0 3rem 3rem;
  display: inline-flex;
  justify-content: center;
  gap: 1rem;
}

.CallUs-section a,
.CallUs-section p {
  color: #76b737;
  font-weight: 700;
  font-size: 1.4rem;
}

.tooltip-inner {
  font-size: 14px;
}

.hliAYU {
  border-top: 1px solid #cecece;
  border-right: 3px solid #cecece;
  border-bottom: 3px solid #cecece;
  border-left: 1px solid #cecece;
  transition: 0.3s;
}

.hliAYU:hover {
  border-color: #76b737;
}

.WidgetTitle__Header-sc-581bc1ec-2 {
  display: none;
}

.loader-container {
  width: 170px;
  height: 4px;
  margin: 0 auto;
  background-color: #76b7372e;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 8px;
}

.loader-loading {
  width: 60%;
  height: 100%;
  background-color: #76b737;
  display: block;
  animation: animate ease-out 2s infinite;
}

.loading {
  margin: 8px auto;
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #1f1e1e;
  letter-spacing: 3px;
}

@keyframes animate {
  0% {
    transform: translatex(-50%);
  }

  50% {
    transform: translatex(100%);
  }

  100% {
    transform: translatex(-50%);
  }
}

.Seehow-text{
  position: absolute;
  color: #1F1E1E;
  font-size: 1.6rem;
  margin-top: 15px;
  font-weight: 500;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}

/* Quotes */
.Testimonial-ownersection {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin: 0px 14rem;
  margin-top: 15rem;
}

.Testimonial-border{
  border: 2px solid #1F1E1E;
  border-radius: 16px;
  position: relative;
  padding: 1.5rem;
}

.Testimonial-items {
    border-radius: 16px;
    padding: 4rem 12rem;
    background: #E6F2DB;
}

.Testimonial-items p {
  font-style: italic;
  font-size: 2.4rem;
}

.Testimonial-items span {
  color: #76b737;
  text-align: end;
  font-size: 1.8rem;
  display: block;
  margin-top: 2rem;
  font-weight: 500;
}

.quotes-items {
  position: absolute;
  top: -1rem;
  left: 6rem;
}
