@import url("https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,300;0,400;0,500;0,700;0,800;0,900;1,300;1,400;1,500;1,700;1,800;1,900&family=Inter:wght@200;300;400;500;600;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

:root {
  --accent-01: #395F60;
  --yellow: #F7A50A;
  --yellow-01: #F6C96E;
  --yellow-02: #F4EFDB;
  --white: #fff;
  --light-green: #E5FDEA;
}

li {
  list-style: none !important;
}

a {
  text-decoration: none;
}

ul {
  margin-left: 0;
  margin-bottom: 0;
}

.main-btn {
  position: relative;
  display: inline-block;
  padding: 0.5em 1.5em;
  background: var(--yellow);
  outline: none;
  border: none;
  font-weight: 700;
  border-radius: 20px;
  font-family: "Inter", sans-serif;
  color: var(--accent-01);
  font-size: 18px;
}
.main-btn.block-btn {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: block;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-110 {
  margin-bottom: 110px;
}

.mt-120 {
  margin-bottom: 120px;
}

.mt-130 {
  margin-bottom: 130px;
}

.mt-140 {
  margin-bottom: 140px;
}

.mt-150 {
  margin-bottom: 150px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-150 {
  margin-bottom: 150px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-bottom: 110px;
}

.pt-120 {
  padding-bottom: 120px;
}

.pt-130 {
  padding-bottom: 130px;
}

.pt-140 {
  padding-bottom: 140px;
}

.pt-150 {
  padding-bottom: 150px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-150 {
  padding-bottom: 150px;
}

.main-nav {
  width: 100%;
  position: relative;
  position: sticky;
  top: 0;
  background: var(--accent-01);
  box-shadow: 0px 2px 26px rgba(0, 0, 0, 0.1);
  padding: 0.5em 3em;
  z-index: 99;
}
.main-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-nav .nav-inner .l-part {
  display: flex;
  align-items: center;
}
.main-nav .nav-inner a.head-logo {
  display: inline-block;
  width: 260px;
}
.main-nav .nav-inner a.head-logo img {
  width: 100%;
}
.main-nav .r-part {
  display: flex;
  align-items: center;
}
.main-nav .nav-list {
  display: flex;
}
.main-nav .nav-list li a {
  padding: 0.7em 1em;
  display: inline-block;
  color: white;
  font-weight: 700;
  font-size: 16px;
  transition: 0.2s ease-in-out;
}
.main-nav .nav-list li a:hover {
  color: var(--yellow);
}
.main-nav .nav-list li a.nav-btn {
  padding: 0.6em 1.5em;
  background: var(--yellow);
  margin-left: 1.2em;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  color: var(--accent-01) !important;
  transition: 0.2s ease-in-out;
}

.menu-btn {
  margin-right: 15px;
  display: none;
}

.mobile-menu {
  display: none;
}

.main-header {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: url(../images/header-bg.svg) bottom/cover no-repeat;
  padding: 3.5em 0px;
}
.main-header .header-img {
  width: 100%;
  transform-origin: right;
  transform: scale(1.05);
}
.main-header .header-img img {
  width: 100%;
}
.main-header .header-con {
  position: relative;
}
.main-header .header-con .tooth-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.main-header .header-con .tooth-wrap h3 {
  font-size: 92px;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 0;
  font-family: "Alegreya Sans", sans-serif;
}
.main-header .header-con .tooth-wrap img {
  width: 110px;
}
.main-header .header-con h1 {
  text-align: center;
  font-size: 52px;
  margin-top: 0.5em;
  text-transform: capitalize;
  font-weight: 900;
  color: white;
}

.sub-wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 20px 0.5fr;
  gap: 0px;
  margin-top: 4em;
  align-items: stretch;
}
.sub-wrap input {
  padding: 0.7em 1em;
  text-align: center;
  border: 1px solid var(--accent-01);
  background: transparent;
  box-shadow: none;
  outline: none;
  border-radius: 10px;
  width: 100%;
  font-size: 18px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  color: var(--accent-01);
  grid-row: 1;
  grid-column: 1/3;
}
.sub-wrap input::placeholder {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  opacity: 1;
  color: var(--accent-01);
}
.sub-wrap input:focus {
  border: 1px solid var(--yellow);
  box-shadow: none !important;
}
.sub-wrap button {
  padding: 1.1em 1.5em;
  background: var(--yellow);
  text-align: center;
  color: white;
  outline: none;
  border: none !important;
  border-radius: 10px;
  height: 100%;
  width: 100%;
  grid-column: 2/4;
  grid-row: 1;
}
.sub-wrap.white {
  margin-top: 2em;
  max-width: 450px;
  grid-template-columns: 1fr 20px 0.5fr;
}
.sub-wrap.white input {
  border-color: white !important;
  color: white !important;
  padding: 0.6em 2em;
}
.sub-wrap.white input::placeholder {
  color: white !important;
  text-transform: capitalize;
  font-size: 20px;
  opacity: 0.54;
}
.sub-wrap.white button {
  background: white;
  font-weight: 700;
  color: var(--accent-01);
  padding: 0.5em 1em;
  border-radius: 12px;
}

.sec-head {
  font-size: 52px;
  font-weight: 700;
  font-family: "Alegreya Sans", sans-serif;
  color: var(--accent-01);
  text-transform: capitalize;
}
.sec-head span {
  font-weight: 700;
  font-family: "Alegreya Sans", sans-serif;
  color: var(--yellow);
  text-transform: capitalize;
}

.sec {
  padding: 3em 0px;
  position: relative;
}

.full-mouth-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 5em;
  padding-bottom: 14em;
  margin-top: 3em;
}
.full-mouth-wrapper > span {
  position: absolute;
  width: 200px;
  height: 200px;
  padding: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  border-radius: 50%;
  background: var(--accent-01);
  font-family: "Alegreya Sans", sans-serif;
  font-size: 34px;
  color: white;
  text-align: center;
  line-height: 100%;
  font-weight: 700;
}
.full-mouth-wrapper > span:nth-child(1) {
  top: 0;
  left: 130px;
}
.full-mouth-wrapper > span:nth-child(2) {
  top: 0;
  right: 130px;
}
.full-mouth-wrapper > span:nth-child(3) {
  top: 380px;
  left: 50px;
}
.full-mouth-wrapper > span:nth-child(4) {
  top: 380px;
  right: 50px;
}
.full-mouth-wrapper > span:nth-child(5) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.full-mouth-wrapper.ext-mouth-wrapper {
  padding-bottom: 3em;
}
.full-mouth-wrapper.ext-mouth-wrapper > span {
  position: absolute;
  width: 200px;
  height: 200px;
  padding: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  border-radius: 50%;
  background: var(--accent-01);
  font-family: "Alegreya Sans", sans-serif;
  font-size: 34px;
  color: white;
  text-align: center;
  line-height: 100%;
  font-weight: 700;
}
.full-mouth-wrapper.ext-mouth-wrapper > span:nth-child(1) {
  top: 0;
  left: 130px;
}
.full-mouth-wrapper.ext-mouth-wrapper > span:nth-child(2) {
  top: 0;
  right: 130px;
}
.full-mouth-wrapper.ext-mouth-wrapper > span:nth-child(3) {
  bottom: 0px;
  top: unset;
  left: 100px;
}
.full-mouth-wrapper.ext-mouth-wrapper > span:nth-child(4) {
  bottom: 0px;
  top: unset;
  right: 100px;
}
.full-mouth-wrapper.sm-mouth-wrapper {
  padding-bottom: 7em;
}
.full-mouth-wrapper.sm-mouth-wrapper > span {
  position: absolute;
  width: 200px;
  height: 200px;
  padding: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  border-radius: 50%;
  background: var(--accent-01);
  font-family: "Alegreya Sans", sans-serif;
  font-size: 34px;
  color: white;
  text-align: center;
  line-height: 100%;
  font-weight: 700;
}
.full-mouth-wrapper.sm-mouth-wrapper > span:nth-child(1) {
  top: 0;
  left: 130px;
}
.full-mouth-wrapper.sm-mouth-wrapper > span:nth-child(2) {
  top: 0;
  right: 130px;
}
.full-mouth-wrapper.sm-mouth-wrapper > span:nth-child(3) {
  top: 250px;
  left: 50px;
}
.full-mouth-wrapper.sm-mouth-wrapper > span:nth-child(4) {
  top: 250px;
  right: 50px;
}
.full-mouth-wrapper.sm-mouth-wrapper > span:nth-child(5) {
  bottom: unset;
  top: 530px;
  left: 100px;
  transform: translateX(0%);
}
.full-mouth-wrapper.sm-mouth-wrapper > span:nth-child(6) {
  bottom: unset;
  top: 530px;
  left: unset;
  right: 100px;
  transform: translateX(0%);
}
.full-mouth-wrapper.sm-mouth-wrapper > span:nth-child(7) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.full-mouth-wrapper .mouth-img {
  width: 600px;
  height: 600px;
  position: relative;
  margin: 0 auto;
}
.full-mouth-wrapper .mouth-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.ic-wrap {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  align-items: center;
  background: #E5FDEA;
  border: 1px solid var(--accent-01);
  border-radius: 32px;
  padding: 1em 2.5em;
}
.ic-wrap.style-2 {
  border-radius: 30px;
}
.ic-wrap .ic {
  width: 100%;
}
.ic-wrap .ic img {
  width: 100%;
}
.ic-wrap h3 {
  font-weight: 700;
  font-family: "Alegreya Sans", sans-serif;
  font-size: 32px;
  margin: 0 !important;
  color: var(--accent-01);
  line-height: 100%;
}

.cc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 3.5em;
}
.cc-grid.grid-1 {
  grid-template-columns: 1fr;
}
.cc-grid.grid-1 .ic-wrap .ic img {
  mix-blend-mode: luminosity;
}
.cc-grid.style-2 .ic-wrap .ic img {
  mix-blend-mode: luminosity;
}

.process-wrap {
  background: var(--accent-01);
  padding: 4.5em 0px;
  margin-top: 3em;
}
.process-wrap .process-grid {
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  display: grid;
  gap: 40px;
}
.process-wrap .process-grid.grid-5 {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}
.process-wrap .process-grid.grid-3 {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.process-wrap .pro-card {
  position: relative;
}
.process-wrap .pro-card .p-img {
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  margin-bottom: 1.5em;
}
.process-wrap .pro-card .p-img img {
  width: 100%;
}
.process-wrap .pro-card h3 {
  text-align: center;
  color: white;
  text-align: center;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 700;
  font-size: 28px;
}

.tooth-list-container {
  margin-top: 3em;
  padding: 5em 0px;
  background: url(../images/happy-person.jpg) center/cover no-repeat;
  padding-bottom: 3em;
}
.tooth-list-container.ext-bg {
  background: url("../images/ext-bg.jpg") center/cover no-repeat !important;
}
.tooth-list-container.dental-braces-bg {
  background: url("../images/dental-braces-bg.jpg") center/cover no-repeat !important;
}
.tooth-list-container.tw-bg {
  background: url("../images/tw-bg.png") center/cover no-repeat !important;
}
.tooth-list-container.adv-bg {
  background: url("../images/adv-bg.jpg") center/cover no-repeat !important;
}
.tooth-list-container.sm-bg {
  background: url("../images/sm-bg.jpg") center/cover no-repeat !important;
}
.tooth-list-container.lm-bg {
  background: url("../images/lm-bg.jpg") center/cover no-repeat !important;
}
.tooth-list-container.cb-bg {
  background: url("../images/cb-bg.jpg") center/cover no-repeat !important;
}
.tooth-list-container .tooth-col {
  width: 100%;
  max-width: 65%;
  background: rgba(60, 98, 99, 0.7);
  padding: 5em 8em;
  padding-left: 100px;
  border-top-right-radius: 12em;
  border-bottom-right-radius: 12em;
  border-bottom: 1em solid var(--accent-01);
  box-shadow: 0px 1em 0px 0em var(--yellow);
}
.tooth-list-container .tooth-col.teeth-ext-tooth-col {
  max-width: 80%;
}
.tooth-list-container .tooth-col.teeth-ext-tooth-col li {
  padding-top: 0.65em;
  padding-bottom: 0.65em;
}
.tooth-list-container .tooth-col.teeth-ext-tooth-col li:after {
  top: 0.65em !important;
}
@media (max-width: 600px) {
  .tooth-list-container .tooth-col.teeth-ext-tooth-col li {
    font-size: 13px !important;
    padding: 1em 0px !important;
    padding-left: 25px !important;
    letter-spacing: 1px !important;
  }
  .tooth-list-container .tooth-col.teeth-ext-tooth-col li:after {
    top: 1em !important;
    width: 20px !important;
    height: 20px !important;
  }
}
@media (max-width: 600px) {
  .tooth-list-container .tooth-col {
    border-top-right-radius: 12em !important;
    border-bottom-right-radius: 12em !important;
    width: 90% !important;
    padding: 6em 2em !important;
    padding-right: 5em !important;
  }
}
.tooth-list-container .tooth-col.st-2 ul li:after {
  top: 1.1em;
  transform: translateY(0px) !important;
}
.tooth-list-container .tooth-col ul {
  margin-left: 0;
}
.tooth-list-container .tooth-col ul li {
  position: relative;
  font-family: "Alegreya Sans", sans-serif;
  color: white;
  font-size: 26px;
  font-weight: 700;
  line-height: 110%;
  padding: 1em 0px;
  padding-left: 2em;
}
@media (max-width: 600px) {
  .tooth-list-container .tooth-col ul li {
    font-size: 13px !important;
    padding: 2em 0px !important;
    padding-left: 25px !important;
    letter-spacing: 1px !important;
  }
  .tooth-list-container .tooth-col ul li:after {
    top: 2em !important;
    width: 20px !important;
    height: 20px !important;
  }
}
.tooth-list-container .tooth-col ul li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1em;
  transform: translateY(0%);
  width: 30px;
  height: 30px;
  background: url(../images/tooth.png) center/contain no-repeat;
}

.scan-container {
  padding: 3em 0px;
  background: var(--accent-01);
}

.form-group {
  width: 100%;
  position: relative;
}
.form-group input {
  width: 100%;
  padding: 0.7em 1.2em;
  border-radius: 20px;
  background: white;
  text-align: center;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 24px;
  outline: none;
  border: none;
  box-shadow: none;
}
.form-group.style-2 {
  width: 100%;
  margin-bottom: 1.5em;
}
.form-group.style-2 .input-grp {
  width: 100%;
}
.form-group.style-2 .input-grp input, .form-group.style-2 .input-grp textarea, .form-group.style-2 .input-grp select {
  width: 100%;
  border-radius: 20px;
  background: #E5FDEA;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  text-align: left;
  outline: none;
  border: none;
  box-shadow: none;
  padding: 0.7em 1.5em;
}
.form-group.style-2 .input-grp input::placeholder, .form-group.style-2 .input-grp textarea::placeholder, .form-group.style-2 .input-grp select::placeholder {
  color: var(--accent-01);
  opacity: 1;
  font-size: 18px;
}
.form-group.style-2 .input-grp select {
  appearance: none;
  color: var(--accent-01);
  cursor: pointer;
}

.ico-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
  margin: 0 auto;
  margin-top: 3.2em;
  max-width: 1920px;
}
.ico-grid .ico {
  padding: 3em 1.2em;
  border-radius: 20px;
  background: #E5FDEA;
  border: 1px solid #395F60;
  border-radius: 50px;
}
.ico-grid .ico img {
  width: 100%;
  max-width: 150px !important;
  margin-bottom: 1.2em;
}
.ico-grid .ico h4 {
  padding-left: 1.2em;
  padding-right: 1.2em;
  text-align: center;
  line-height: 100%;
  color: var(--accent-01);
  font-size: 24px;
  font-weight: 700;
  font-family: "Alegreya Sans", sans-serif;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .ico-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    margin: 0 auto;
    margin-top: 3.2em;
    max-width: 1920px;
  }
  .ico-grid .ico {
    padding: 1em 1em;
    border-radius: 20px;
    background: #E5FDEA;
    border: 1px solid #395F60;
    border-radius: 50px;
  }
  .ico-grid .ico img {
    width: 100%;
    max-width: 75px !important;
    margin-bottom: 1.2em;
  }
  .ico-grid .ico h4 {
    padding-left: 1.2em;
    padding-right: 1.2em;
    text-align: center;
    line-height: 100%;
    color: var(--accent-01);
    font-size: 16px;
    font-weight: 700;
    font-family: "Alegreya Sans", sans-serif;
    text-transform: uppercase;
  }
}
.faq-wrap {
  position: relative;
  overflow: hidden;
  background: rgba(32, 134, 110, 0.05);
  border-radius: 51px;
  padding: 3em 2.5em;
  margin-top: 3em;
}

.a-cc {
  position: relative;
}
.a-cc .accordion-item {
  border: none !important;
  outline: none !important;
  background: transparent !important;
  margin-bottom: 1.3em;
}
.a-cc .accordion-item:last-child {
  margin-bottom: 0;
}
.a-cc .accordion-button {
  background: rgba(247, 165, 10, 0.12);
  color: #20866E;
  font-size: 24px;
  font-weight: 700;
  font-family: "Alegreya Sans", sans-serif;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 15px !important;
  padding: 1em 2em;
}
.a-cc .accordion-button:before {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  height: 100%;
  border-radius: 10px;
  background: url("../images/drop.svg") center/20% no-repeat var(--yellow);
  content: "";
}
.a-cc .accordion-button:after {
  display: none !important;
}
.a-cc .accordion-body {
  border: none !important;
  box-shadow: none !important;
  padding: 1.5em 2em;
  border-radius: 15px;
  background: #E5FDEA !important;
  margin-top: 1em;
  margin-left: 1.5em;
}
.a-cc .accordion-body p, .a-cc .accordion-body span, .a-cc .accordion-body ul li {
  font-family: "Alegreya Sans", sans-serif;
  font-size: 24px;
  line-height: 110%;
  font-weight: 400;
  color: #20866E;
  list-style: disc !important;
}
.a-cc .accordion-body li {
  padding: 0.3em 0px;
}
.a-cc .accordion-body span {
  text-transform: lowercase;
}
.a-cc .accordion-body span span {
  text-transform: uppercase !important;
}
.a-cc .accordion-body span:not(:first-child) span {
  margin-left: 3px;
}

.mobile-menu {
  width: 100%;
  position: relative;
  background: var(--accent-01);
}
.mobile-menu ul {
  position: relative;
  padding-left: 0;
}
.mobile-menu ul li a {
  display: block;
  padding: 0.75em 1em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-weight: 500;
  font-size: 14px;
}
.mobile-menu ul li:last-child a {
  border: none;
}

.burger {
  display: block;
  width: 28px;
  height: 21px;
  cursor: pointer;
}

.burger span:after,
.burger span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
}

.burger span:after {
  top: 18px;
  width: 100% !important;
}

.burger span {
  position: relative;
  display: block;
}

.burger span,
.burger span:after,
.burger span:before {
  width: 100%;
  height: 2.5px;
  background-color: var(--white);
  transition: all 0.3s;
  backface-visibility: hidden;
  border-radius: 2px;
}

.burger.--open span {
  background-color: transparent;
}

.burger.--open span:before {
  transform: rotate(45deg) translate(-1px, 0px);
}

.burger.--open span:after {
  transform: rotate(-45deg) translate(6px, -7px);
  width: 100% !important;
}

.type-of-ext-sec {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #E5FDEA;
  padding-top: 3em;
  padding-bottom: 5em;
}
.type-of-ext-sec .container {
  position: relative;
  z-index: 55;
}
.type-of-ext-sec > img {
  width: 150%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
.type-of-ext-sec .sec-head {
  margin-bottom: 3em;
}

.c-img-card {
  position: relative;
}
.c-img-card.style-2 {
  margin-bottom: 2.3em;
}
.c-img-card.style-2 .c-img-wrap {
  border-radius: 3em;
  padding-top: 80%;
}
.c-img-card.style-2 h3 {
  margin-top: 0.5em;
}
.c-img-card.style-3 .c-img-wrap {
  position: relative;
}
.c-img-card.style-3 .c-img-wrap:after {
  content: "";
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background: rgba(126, 244, 149, 0.2);
}
.c-img-card h3 {
  margin-top: 1em;
  text-align: center;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 700;
  color: var(--accent-01);
  font-size: 37px;
  text-transform: capitalize;
}
.c-img-card .c-img-wrap {
  width: 100%;
  position: relative;
  padding-top: 65%;
  overflow: hidden;
  border-radius: 5em;
  border: 3px solid var(--yellow);
}
.c-img-card .c-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}

.ccs-wrap {
  width: 100%;
  border-radius: 5em;
  background: #E5FDEA;
  border: 1px solid #395F60;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  padding: 3em 2em;
}
.ccs-wrap .ccs {
  position: relative;
  display: flex;
  flex-direction: column;
}
.ccs-wrap .ccs h3 {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ccs-wrap .ccs img {
  width: 80%;
  max-width: 130px;
  display: block;
  margin: 0 auto;
  margin-bottom: 1em;
}
.ccs-wrap .ccs h3 {
  font-size: 24px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 700;
  color: var(--accent-01);
  margin-bottom: 0;
  text-align: center;
}

.top-bar {
  position: relative;
  padding: 0.5em 1em;
  background: var(--yellow);
}
.top-bar p {
  text-align: center;
  margin-bottom: 0;
  color: var(--accent-01);
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

.col-list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.col-list .col-wrap {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  align-items: center;
}
.col-list .col-wrap img {
  width: 100%;
}
.col-list .col-wrap p {
  color: var(--accent-01);
  margin-bottom: 0;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 105%;
}
.col-list .col-wrap p a {
  color: var(--accent-01);
  font-weight: 500;
  font-size: 22px;
  line-height: 105%;
}

.col-wrapper {
  width: 100%;
  position: relative;
  background: linear-gradient(180deg, #FFFFFF -81%, #395F60 11.04%, rgba(255, 255, 255, 0) 100.55%);
  border-radius: 132px;
  padding: 3em 5em;
  padding-bottom: 7em;
  margin-top: 3em;
  position: relative;
  overflow: hidden;
}
.col-wrapper.join-us-wrapper > img {
  width: 50%;
}
.col-wrapper > img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 70%;
}
.col-wrapper .main-btn {
  padding: 0.7em 3em;
  border-radius: 1em;
  display: flex;
  margin: 0 auto;
}

.con-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 3em;
}
.con-head h3 {
  color: white;
}
.con-head img {
  width: 90px;
}

.tops-bar {
  display: flex;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 0.5em 3em;
  background: var(--yellow);
}
.tops-bar.style-1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.tops-bar.hm p {
  display: block;
  min-width: max-content;
}
.tops-bar p {
  margin-bottom: 0;
  color: white;
  padding: 0.15em 0.8em;
  border-radius: 12px;
  overflow: hidden;
  font-family: "Alegreya Sans", sans-serif;
  position: relative;
  font-weight: 700;
  font-size: 20px;
  max-width: max-content;
  display: none;
}
.tops-bar p span {
  position: relative;
  z-index: 5;
  font-family: "Alegreya Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
}
.tops-bar p:after {
  content: "";
  background: var(--accent-01);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tops-bar ul {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  gap: 20px;
  width: 100%;
  justify-content: flex-start;
  margin-left: 0 !important;
  padding-left: 0 !important;
}
.tops-bar ul a {
  display: inline-block;
}
.tops-bar .con-list {
  justify-content: flex-end;
  width: auto;
}

.main-footer {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 3em 0px;
  padding-bottom: 0;
}
.main-footer .container {
  padding: 0em 3em;
}
.main-footer .bt {
  background: var(--accent-01);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.5em 1em;
  margin-top: 4em;
}
.main-footer .bt p {
  margin-bottom: 0;
  color: white;
  font-size: 16px;
}
.main-footer .bt ul {
  margin-left: 0;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-footer .bt ul li a {
  display: inline-block;
  color: var(--yellow);
  font-size: 16px;
}

.ft-list {
  margin-left: 0 !important;
  padding-left: 0 !important;
}
.ft-list li {
  max-width: max-content;
}
.ft-list li:hover a {
  transform: translateX(10px);
}
.ft-list li a {
  display: inline-block;
  color: #242E2B !important;
  font-weight: 500;
  padding: 0.3em 0px;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}

.ft-head {
  font-size: 26px;
  font-weight: 900 !important;
  font-weight: 700;
  color: var(--accent-01);
  font-family: "Alegreya Sans", sans-serif;
  margin-bottom: 0.3em;
}

.ft-logo {
  width: 230px;
  position: relative;
  display: block;
  margin-bottom: 1em;
}
.ft-logo img {
  width: 100%;
}

.sl-list {
  margin-left: 0;
  padding-left: 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 1.3em;
}
.sl-list li a {
  display: inline-block;
}

.timeline-wrapper {
  width: 100%;
  position: relative;
  margin-top: 5em;
}
@media (max-width: 767px) {
  .timeline-wrapper {
    margin-top: 0px;
  }
}
.timeline-wrapper ul {
  width: 100%;
  position: relative;
  padding-top: 3em;
  padding-left: 0 !important;
}
@media (max-width: 767px) {
  .timeline-wrapper ul {
    padding-top: 1.5em;
  }
}
.timeline-wrapper ul::after {
  width: 40px;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 100px;
  background: #FDE8C2;
  border: 1px solid #F7A50A;
}
@media (max-width: 767px) {
  .timeline-wrapper ul::after {
    left: 0%;
    transform: translateX(0px);
    width: 20px !important;
  }
}
.timeline-wrapper ul li {
  position: relative;
  width: 50%;
  background: url("../images/line.svg") 0% 43%/contain repeat-x;
}
@media (max-width: 767px) {
  .timeline-wrapper ul li {
    width: 100%;
    margin-top: 0 !important;
    padding: 1.5em 1em !important;
  }
}
.timeline-wrapper ul li::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #FDE8C2;
  border: 1px solid #F7A50A;
  right: 0;
  top: 50%;
  transform: translateY(-74%) translateX(50%);
  z-index: 5;
}
@media (max-width: 767px) {
  .timeline-wrapper ul li::before {
    left: 0 !important;
    transform: translateY(-74%) translateX(-33%);
  }
}
.timeline-wrapper ul li::after {
  content: "";
  position: absolute;
  width: 23px;
  height: 75%;
  border-radius: 100px;
  background: #FDE8C2;
  border: 1px solid #F7A50A;
  left: 0;
  top: 50%;
  transform: translateY(-60%);
  z-index: 5;
}
@media (max-width: 767px) {
  .timeline-wrapper ul li::after {
    right: 0 !important;
    left: unset !important;
  }
}
.timeline-wrapper ul li:not(:first-child) {
  margin-top: -80px;
}
.timeline-wrapper ul li:nth-child(odd) {
  margin-left: auto;
}
.timeline-wrapper ul li:nth-child(odd)::before {
  right: unset;
  left: 0;
  top: 50%;
  transform: translateY(-74%) translateX(-45%);
}
@media (max-width: 767px) {
  .timeline-wrapper ul li:nth-child(odd)::before {
    left: 0 !important;
    transform: translateY(-74%) translateX(-33%);
  }
}
.timeline-wrapper ul li:nth-child(odd)::after {
  right: 0;
  left: unset;
  top: 50%;
  transform: translateY(-60%);
}
@media (max-width: 767px) {
  .timeline-wrapper ul li:nth-child(odd) {
    margin-left: 0;
  }
}
.timeline-wrapper ul li .con-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.timeline-wrapper ul li .con-container .img-con {
  width: 250px;
  height: 250px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--yellow);
}
.timeline-wrapper ul li .con-container .img-con img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.timeline-wrapper ul li .con-container h4 {
  margin-top: 0.5em;
  font-size: 32px;
  font-weight: 700;
  font-family: "Alegreya Sans", sans-serif;
  color: var(--accent-01);
  margin-bottom: 0;
}

.talktodentist .form-group {
  margin-top: 20px;
  width: 98%;
  display: flex;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.talktodentist .form-group .form-control {
  font-size: 14px !important;
  padding: 0em 1.2em !important;
}
.talktodentist .form-group .form-control:nth-child(1) {
  width: 1px;
  padding: 1px;
  background: #fff;
  margin-right: -3px;
  z-index: 11;
  font-family: "Alegreya Sans", sans-serif;
}
.talktodentist .form-group .form-control:nth-child(2) {
  border: 2px solid #395F60;
  border-radius: 1px;
  background: transparent;
  color: #395F60;
  z-index: 11;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.talktodentist .form-group .form-control:focus {
  border: 2px solid #395F60;
  outline: none;
  box-shadow: none;
}
.talktodentist .form-control:nth-child(2)::placeholder {
  color: #395F60;
}
.talktodentist .form-control:nth-child(2)::-webkit-input-placeholder {
  color: #395F60;
}
.talktodentist .form-control:nth-child(2):-ms-input-placeholder {
  color: #395F60;
}
.talktodentist button {
  color: #fff;
  padding: 8px 10px 10px 10px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  width: 60%;
  border-radius: 5px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  background: #395F60;
  margin-left: -1px;
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  overflow: hidden !important;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 30%;
  box-shadow: 0 0 9px grey;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 1rem !important;
  outline: 0;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  color: #395F60;
  font-weight: 700;
  font-family: "Alegreya Sans", sans-serif;
}

.modal-body h6 {
  text-align: center;
  margin: 25px;
  color: #395f60;
  font-size: 15px;
  line-height: 25px;
  font-weight: 700;
  letter-spacing: 1px;
}

.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}

.talktodentist button {
  color: #fff;
  padding: 8px 10px 8px 10px;
  border: none;
  font-size: 10px !important;
  font-weight: 500;
  width: 60%;
  height: 38px;
  border-radius: 5px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  background: #395F60;
  margin-left: -1px;
}

.Ways {
  padding: 20px 20px;
  height: auto;
}
.Ways h4 p {
  margin-top: 20px;
  font-size: 26px;
  font-family: "Alegreya Sans", sans-serif;
  letter-spacing: 2px;
  font-weight: 700;
  text-align: center;
  color: #395F60;
}
.Ways h4 .p {
  margin-top: -12px;
  margin-bottom: 20px;
  font-size: 23px !important;
  font-family: "Alegreya Sans", sans-serif;
  letter-spacing: 2px;
  font-weight: 700;
  text-align: center;
  color: #395F60;
}
.Ways h4 span {
  color: #F7A909;
}

.hm-banner {
  overflow: hidden;
  width: 100%;
  padding: 6em 0px;
  position: relative;
}
.hm-banner > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: -1;
}
.hm-banner .hm-banner-content {
  position: relative;
}
.hm-banner .hm-banner-content p:not(.anim-text) {
  color: white;
  font-family: "Alegreya Sans", sans-serif;
  font-style: italic;
  font-size: 28px;
  position: relative;
  padding-bottom: 0.25em;
  display: inline-block;
  margin-bottom: 0.5em;
}
.hm-banner .hm-banner-content p:not(.anim-text):after {
  content: "";
  position: absolute;
  width: 87%;
  height: 1px;
  background: white;
  left: 0;
  bottom: 0;
}
.hm-banner .hm-banner-content h3 {
  color: white;
  font-size: 38px;
  line-height: 130%;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0;
}
.hm-banner .hm-banner-content h1 {
  font-family: "Alegreya Sans", sans-serif !important;
  font-weight: 900;
  color: var(--yellow);
  font-size: 7em;
  line-height: 80%;
}
.hm-banner .hm-banner-content h1 span {
  display: block;
  font-size: 0.6em !important;
  margin-bottom: 0;
}

.digital-dentistry-sec {
  position: relative;
  overflow: hidden;
}
.digital-dentistry-sec .main-d-sc-wrapper {
  width: 100%;
  position: relative;
  background: url(../images/teethme-gr.jpg) bottom/cover no-repeat;
  margin-top: 2.8em;
  padding-top: 12em;
}
.digital-dentistry-sec .main-d-sc-wrapper > img {
  width: 65%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  max-width: 979px;
}
.digital-dentistry-sec .main-d-sc-wrapper .d-sc-images {
  position: relative;
  height: 600px;
  width: 100%;
  max-width: 1440px !important;
  padding-bottom: 0;
  margin: 0 auto;
  transform-origin: bottom center;
  transform: scale(1.15);
  z-index: 5;
}
@media (max-width: 991px) {
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images {
    transform: scale(0.9) !important;
  }
}
.digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img {
  display: inline-block;
  transform-origin: bottom center;
  height: auto;
  width: 200px;
  position: absolute;
  z-index: 88;
  transform-origin: bottom center;
}
.digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(1) {
  top: 14%;
  left: 23%;
  transform: rotate(-52deg);
}
.digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(1) p {
  transform: rotate(52deg) translateX(35px) translateY(-20px);
}
.digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(2) {
  top: 1%;
  left: 32%;
  transform: rotate(-25deg);
}
.digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(2) p {
  transform: rotate(25deg) translateX(50px) translateY(-20px);
}
.digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(3) {
  top: -3%;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
}
.digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(3) p {
  transform: rotate(0deg) translateX(50px);
}
.digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(4) {
  top: 2%;
  right: 32%;
  transform: rotate(25deg);
}
.digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(4) p {
  transform: rotate(-25deg) translateX(30px) translateY(20px);
}
.digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(5) {
  top: 15%;
  right: 24%;
  transform: rotate(52deg);
}
.digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(5) p {
  transform: rotate(-52deg) translateX(10px) translateY(30px);
}
.digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img p {
  position: relative;
  z-index: 55;
  color: var(--accent-01);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  max-width: 125px;
}
.digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img .img-wrap {
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img .img-wrap img {
  width: 100%;
}
@media (max-width: 1250px) {
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(1) {
    top: 24%;
    left: 18%;
    transform: rotate(-52deg);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(1) p {
    transform: rotate(52deg) translateX(85px) translateY(0px);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(2) {
    top: 6%;
    left: 29%;
    transform: rotate(-25deg);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(2) p {
    transform: rotate(25deg) translateX(50px) translateY(50px);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(3) {
    top: 1%;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(3) p {
    transform: rotate(0deg) translateY(50px) translateX(20px);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(4) {
    top: 6%;
    right: 29%;
    transform: rotate(25deg);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(4) p {
    transform: rotate(-25deg) translateX(0px) translateY(80px);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(5) {
    top: 24%;
    right: 18%;
    transform: rotate(52deg);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(5) p {
    transform: rotate(-52deg) translateX(-50px) translateY(55px);
  }
}
@media (max-width: 1250px) {
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images {
    transform: scale(1);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img {
    width: 170px;
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img .img-wrap {
    height: auto !important;
  }
}
@media (max-width: 1100px) {
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(1) {
    top: 150px;
    left: 160px;
    transform: rotate(-52deg);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(1) p {
    transform: rotate(52deg) translateX(85px) translateY(0px);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(2) {
    top: 50px;
    left: 280px;
    transform: rotate(-25deg);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(2) p {
    transform: rotate(25deg) translateX(50px) translateY(50px);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(3) {
    top: 20px;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(3) p {
    transform: rotate(0deg) translateY(50px) translateX(20px);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(4) {
    top: 50px;
    right: 280px;
    transform: rotate(25deg);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(4) p {
    transform: rotate(-25deg) translateX(0px) translateY(80px);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(5) {
    top: 150px;
    right: 160px;
    transform: rotate(52deg);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(5) p {
    transform: rotate(-52deg) translateX(-50px) translateY(55px);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .wr {
    transform-origin: bottom center;
    transform: scale(0.8);
  }
}
@media (max-width: 991px) {
  .digital-dentistry-sec .main-d-sc-wrapper .wr {
    transform: scale(1);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images {
    min-width: 706px;
    position: relative;
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(1) {
    top: 120px;
    left: 130px;
    transform: rotate(-40deg);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(1) p {
    transform: rotate(40deg) translateX(85px) translateY(0px);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(2) {
    top: 40px;
    left: 260px;
    transform: rotate(-18deg);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(2) p {
    transform: rotate(18deg) translateX(50px) translateY(50px);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(3) {
    top: 20px;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(3) p {
    transform: rotate(0deg) translateY(50px) translateX(20px);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(4) {
    top: 40px;
    right: 260px;
    transform: rotate(18deg);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(4) p {
    transform: rotate(-18deg) translateX(0px) translateY(80px);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(5) {
    top: 120px;
    right: 130px;
    transform: rotate(40deg);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(5) p {
    transform: rotate(-40deg) translateX(-50px) translateY(55px);
  }
}
@media (min-width: 1370px) {
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images {
    position: relative;
    height: 600px;
    width: 100%;
    max-width: 1440px !important;
    padding-bottom: 0;
    margin: 0 auto;
    transform-origin: bottom center;
    transform: scale(1.15);
    z-index: 5;
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img {
    display: inline-block;
    transform-origin: bottom center;
    height: auto;
    width: 200px;
    position: absolute;
    z-index: 88;
    transform-origin: bottom center;
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(1) {
    top: 14%;
    left: 23%;
    transform: rotate(-52deg);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(1) p {
    transform: rotate(52deg) translateX(35px) translateY(30px);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(2) {
    top: 1%;
    left: 32%;
    transform: rotate(-25deg);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(2) p {
    transform: rotate(25deg) translateX(50px) translateY(-20px);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(3) {
    top: -3%;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(3) p {
    transform: rotate(0deg) translateX(50px);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(4) {
    top: 2%;
    right: 32%;
    transform: rotate(25deg);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(4) p {
    transform: rotate(-25deg) translateX(30px) translateY(20px);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(5) {
    top: 15%;
    right: 24%;
    transform: rotate(52deg);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img:nth-child(5) p {
    transform: rotate(-52deg) translateX(-20px) translateY(50px);
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img p {
    position: relative;
    z-index: 55;
    color: var(--accent-01);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    max-width: 125px;
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img .img-wrap {
    width: 100%;
    height: 300px;
    overflow: hidden;
  }
  .digital-dentistry-sec .main-d-sc-wrapper .d-sc-images .d-sc-img .img-wrap img {
    width: 100%;
  }
}

.semi-circle {
  width: 900px;
  height: 600px;
  background: url(../images/semi-circle.svg) bottom/contain no-repeat;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.semi-circle > img {
  position: absolute;
  bottom: 0;
  transform: translateX(-50%) translateY(-30px);
  width: 200px;
  left: 50%;
}
@media (max-width: 1250px) {
  .semi-circle {
    width: 68%;
    height: 45.3333333333%;
  }
}
@media (max-width: 1100px) {
  .semi-circle {
    width: 750px;
    height: 750px;
  }
}
@media (max-width: 991px) {
  .semi-circle {
    width: 700px;
    height: 700px;
  }
}

.testimonial-swiper {
  padding: 5em 3em;
}

.test-card {
  position: relative;
  background: #FFFFFF;
  box-shadow: 0px 40px 40px rgba(255, 115, 0, 0.08), 0px 30px 24px rgba(255, 115, 0, 0.08), 0px 12px 10px rgba(255, 115, 0, 0.04), 0px -4px 4px rgba(255, 115, 0, 0.03);
  padding: 4em 4em;
  border-top-left-radius: 60px;
  border-bottom-right-radius: 60px;
  user-select: none !important;
  min-height: 381px;
}
.test-card > img {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-65%) translateX(-30%);
  width: 65px;
}
.test-card:after {
  content: "";
  position: absolute;
  top: 50%;
  z-index: 2;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  border: 1px solid #5f5f5f;
  border-top-left-radius: 60px;
  border-bottom-right-radius: 60px;
  width: 100%;
  height: 100%;
}
.test-card .test-pr {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 20px;
  align-items: center;
}
.test-card .test-pr p {
  margin-bottom: 0;
}
.test-card .test-pr .pr {
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.test-card .test-pr .pr img {
  width: 100%;
}
.test-card .test-pr .det {
  position: relative;
}
.test-card .test-pr .det h4 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 3px;
}
.test-card .test-pr .det p {
  font-size: 14px;
  color: #787A80;
  font-weight: 400;
}
.test-card .test-det {
  position: relative;
  padding-top: 2em;
}
.test-card .test-det p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 140% !important;
  color: black;
  font-weight: 400;
}

.swiper-pagination-bullet {
  width: 40px !important;
  height: 5px !important;
  border-radius: 20px !important;
  opacity: 1 !important;
  background: #B3B7BC !important;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #395F60 !important;
}

.ps-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: url(../images/hm-bg-2.jpg) center/cover no-repeat;
  margin-top: 3em;
  padding-top: 6em;
  padding-left: 15em;
  padding-right: 5em;
}
.ps-container .in > img {
  position: absolute;
  bottom: 0;
  left: 2.3em;
  z-index: 5;
  transform-origin: bottom center;
  transform: scale(1.05);
}
.ps-container .ps-wrapper {
  position: relative;
  background: rgba(60, 98, 99, 0.7);
  border-radius: 0px 211.5px 211.5px 0px;
  overflow: hidden;
  border-bottom: 0.75em solid white;
  box-shadow: 0em 0.75em 0px 0em var(--yellow);
  padding: 2.5em 8em;
  padding-left: 15em;
  margin-bottom: 13em;
  max-width: 1186px;
}
.ps-container .ps-wrapper .ps-list {
  position: relative;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}
.ps-container .ps-wrapper .ps-list li {
  padding: 1em 0em;
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 20px;
}
.ps-container .ps-wrapper .ps-list li img {
  width: 100%;
}
.ps-container .ps-wrapper .ps-list li span {
  color: white;
  font-weight: 400;
  font-size: 18px;
}

.serv-wrapper {
  width: 100%;
  position: relative;
  background: rgba(0, 167, 47, 0.1);
  border-radius: 37px;
  padding: 5em 3em;
  margin-top: 3em;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  row-gap: 45px;
}
.serv-wrapper .serv-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.serv-wrapper .serv-card img {
  max-width: 130px;
  margin-bottom: 1em;
}
.serv-wrapper .serv-card span {
  display: block;
  text-align: center;
  font-weight: 400;
  text-align: center;
  font-size: 18px;
  text-transform: uppercase;
}

.anim-text:after {
  animation: fade 0.8s linear infinite alternate;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.cb-list-container {
  width: 100%;
  padding: 2em 2em;
  border: 10px solid #D0FBD9;
  margin-top: 2em;
  border-radius: 104px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 80px;
}
.cb-list-container .cb-list-wrap:not(:last-child) {
  position: relative;
}
.cb-list-container .cb-list-wrap:not(:last-child):after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(48px);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-01);
}
.cb-list-container .cb-list-wrap:not(:last-child):before {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  border-right: 3px dashed var(--accent-01);
  right: 0;
  transform: translateX(40px);
}
.cb-list-container .cb-head {
  position: relative;
  height: 350px;
}
.cb-list-container .cb-head img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: center;
}
.cb-list-container .cb-head h4 {
  text-align: center;
  color: var(--yellow);
  text-transform: uppercase;
  font-size: 30px;
  line-height: 130%;
  font-weight: 700;
  font-family: "Alegreya Sans", sans-serif;
  margin-top: 0.8em;
  margin-bottom: 1em;
}
.cb-list-container .cb-list li {
  list-style: disc !important;
  padding: 0.5em 0px;
  color: var(--accent-01);
  font-size: 28px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 700;
  text-transform: capitalize;
}

.dc-sec {
  background: white !important;
  position: relative !important;
}
.dc-sec:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 670px;
  background: #7EF495;
  opacity: 0.2;
  z-index: 1;
}
.dc-sec > img {
  z-index: 2;
}

.float-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 15px;
  z-index: 11111;
  font-size: 45px;
}
.float-whatsapp a {
  color: green;
}
.float-whatsapp a:hover {
  color: green;
}
.float-whatsapp a i {
  border-radius: 50%;
}/*# sourceMappingURL=main.css.map */