/* ============================== 
   GLOBAL VARIABLES 
================================ */
:root {
  --container-width: 1280px;
  --primary-color: #4268d2;
  --secondary-color: #b9f1fe;
  --black: #3b3b3b;
  --white: #ffffff;
}

body {
  padding: 0;
  margin: 0;
  font-family:
    "SF Pro Text", "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
}

input, select, textarea, button{
    font-family:
    "SF Pro Text", "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
}

/*@font-face {
    font-family: SF Pro Display;
     src: url("../fonts/SFPRODISPLAYBOLD.otf") format("opentype");
}*/

@font-face {
  font-family: SF Pro Display;
  src: url("../fonts/SF-Pro-Display-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Medium - 500 */
@font-face {
  font-family: SF Pro Display;
  src: url("../fonts/SF-Pro-Display-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Semibold - 600 */
@font-face {
  font-family: SF Pro Display;
  src: url("../fonts/SF-Pro-Display-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Bold - 700 */
@font-face {
  font-family: SF Pro Display;
  src: url("../fonts/SF-Pro-Display-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Heavy - 800 */
@font-face {
  font-family: SF Pro Display;
  src: url("../fonts/SF-Pro-Display-Heavy.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* --- Scrollbar Code --- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
  background: #000;
  transition: 0.4s;
}

::-webkit-scrollbar-thumb:hover {
  background: #ddd;
}
ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
  padding: 0;
  margin: 0;
}

a,
a:hover {
  text-decoration: none;
  transition: 0.3s ease-in-out;
  color: inherit;
  background: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1234px;
  margin: 0 auto;
  padding-inline: 20px;
}

.container-full {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-inline: 20px;
}

.container-small {
  max-width: 1219px;
  margin: 0 auto;
}

.section-heading {
  font-size: 40px;
  font-weight: 400;
  color: var(--primary-color);
  margin: 0;
  letter-spacing: -1.2px;
}

.section-content,
.section-content p {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  line-height: 25px;
}

.appointment-wrapper h2,
.appointment-wrapper p {
  text-align: center;
}
.financeapoimentspart.appointment-wrapper p {
  margin-bottom: 40px;
}



.topnavigation {
  position: absolute;
  width: 100%;
  top: 44px;
  left: 0;
  z-index: 10;
}

.header-part {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logomain a {
  display: block;
}

.menu ul {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: flex-end;
}

.menu ul li a {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.navbar-nav li.menu-item-has-children {
  position: relative;
}

.navbar-nav li.menu-item-has-children > span {
  position: absolute;
  top: 0;
  right: 0;
}

.navbar-nav li.menu-item-has-children > span:after {
  content: "\276E";
  transform: rotate(-90deg);
  position: absolute;
  right: -17px;
  color: var(--bgwhclr);
  transition: all 0.3s ease-in-out;
}

.navbar-nav li.menu-item-has-children > span.active:after {
  transform: rotate(90deg);
}

.navbar-nav ul.sub-menu {
  position: absolute;
  left: 0;
  padding: 10px 0 0;
  width: 280px;
  list-style: none;
  background-color: var(--bgwhclr);
  opacity: 0;
  visibility: hidden;
  transform: translate(0%, 50%);
  transition: all 0.3s ease-in-out;
  flex-wrap: wrap;
  gap: 0;
}

.navbar-nav li.menu-item-has-children:hover ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(0%, 0%);
  display: block;
}

.navbar-nav li ul.sub-menu a {
  color: #fff;
}

.navbar-nav ul.sub-menu > li {
  padding: 10px 15px;
  font-size: 14px;
  width: 100%;
  background: var(--primary-color);
}
.menu-search {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 60px;
}

.bookbutton .anchore-btn {
  color: #fff;
  font-size: 15px;
  padding: 6px 15px 6px 9px;
  cursor: pointer;
}

span.arrows {
  width: 33px;
  height: 33px;
  background-color: #ffffff;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

a:hover span.arrows {
  transform: translateX(5px);
}

section.banner {
  min-height: 812px;
  padding-top: 155px;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 0 223px;
  background: linear-gradient(105deg, #eff4ff 19.45%, #eafbff 67.44%);
}

section.banner::after {
  content: "";
  position: absolute;
  left: -200px;
  bottom: -200px;
  border-radius: 574px;
  border: 55px solid rgba(66, 104, 210, 0.08);
  width: 500px;
  height: 500px;
}

section.banner::before {
  content: "";
  position: absolute;
  right: -350px;
  top: -250px;
  width: 700px;
  height: 700px;
  border-radius: 860px;
  border: 112px solid #b0effd;
}

.overlay-banner {
  background-image: url("../img/banner-bg.png");
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.banner-contents {
  z-index: 1;
  position: relative;
}

.banner-contents h1 {
  color: var(--primary-color);
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -1.8px;
  padding: 0;
  margin: 0 0 15px;
}

.anchore-btn {
  color: #fff;
  font-size: 15px;

  font-weight: var(--font-weight-700, 700);

  border-radius: 95.185px;
  background: var(--primary-color);
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-width: 100px;
  justify-content: center;
}

.blogdivbottom-conts .anchore-btn {
  margin-top: 15px;
}

.anchore-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  transition: left 0.4s ease;
  z-index: 0;
}

.anchore-btn:hover::before {
  left: 0;
}

.anchore-btn span {
  position: relative;
  z-index: 2;
}

.anchore-btn:hover span {
  color: var(--primary-color);
}

.email-subscribe-bar .anchore-btn:hover span {
  color: #fff;
}

.banner-btn {
  margin-top: 34px;
  gap:20px;
  display: flex;
}

.dentalinsurance .banner-btn{
  display: flex;
  justify-content: center;
}

span.infocont {
  color: #636363;
  font-size: 12.478px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.infocont p br {
  display: none;
}
span.infocont b {
  display: block;
  color: #636363;
  font-size: 17.825px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.banner-infopart ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 54px;
  margin-top: 50px;
}

.banner-infopart ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.left-banner {
  width: 45%;
}

.page-template-tmpl-reviews .left-banner {
  width: 52%;
}

.right-banner {
  width: 55%;
  text-align: center;
}
.right-banner img {
  width: max-content;
  float: right;
}

.mainbanner-part {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mainbanner-part p.section-content {
  color: #3b3b3b;
  font-size: 18.141px;
  font-weight: 400;
  line-height: var(--line-height-20_8, 20.8px);
}

.leftimg {
  width: 40%;
}

.rightwhy {
  width: 60%;
}

.home .leftimg,
.page-id-304 .leftimg {
  position: relative;
  font-size: 0;
  width: 40%;
}

.home .rightwhy,
.page-id-304 .rightwhy {
  width: 60%;
}

.leftimg img {
  z-index: 1;
  position: relative;
}

.page-id-304 .leftimg::after {
  content: "";
  border-radius: 117.02px 0;
  background: var(--secondary-color);
  position: absolute;
  left: -20px;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/* 
.rightwhy h2 {
  padding: 0;
  margin: 0;
  color: var(--primary-color);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 47px;
  letter-spacing: -1.2px;
} */

/* .rightwhy p {
  color: #3b3b3b;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  padding: 20px 0px 0px;
  margin: 0;
} */

.whyinfo {
  margin-top: 30px;
}

.whyinfo ul {
  display: grid;
  gap: 20px;
  align-items: baseline;
  justify-content: space-between;
  grid-template-columns: repeat(3, 1fr);
}

.whyinfo ul li {
  display: flex;
  align-items: center;
  gap: 19px;
  font-size: 0;
}

.whyinfo ul li p {
  padding: 0;
  margin: 0;
  color: #636363;
  font-size: 17.603px;
  font-style: normal;
  font-weight: 700;
  line-height: 21.604px;
}

.commonbtn {
  margin-top: 37px;
}

.error404 .banner-btn{
    justify-content: center;
}

.commonbtn a {
  color: #fff;
  text-align: center;
  font-size: 15.23px;
  font-style: normal;
  font-weight: 700;
  line-height: 19.798px;
  padding: 13px 30px;
  background: var(--primary-color);
  border-radius: 24px;
  display: inline-flex;
}

.whymain {
  display: flex;
  align-items: center;
  gap: 42px;
  justify-content: space-around;
  padding-top: 68px;
  padding-bottom: 134px;
}

.bookbutton::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  background: var(--secondary-color);
  transition: left 0.4s ease;
  z-index: -1;
}
.menu ul li a:hover {
  text-decoration: underline;
}
/* a.knowbtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transition: left 0.4s ease;
  z-index: -1;
} */
.servicesection {
  border-radius: 0 223px 0 0;
  background: linear-gradient(105deg, #eafbff 19.45%, #eff4ff 67.44%);
  min-height: 800px;
  overflow: hidden;
  position: relative;
  padding: 89px 0px;
  box-sizing: border-box;
}

.servicesection::before {
  content: "";
  border-radius: 449px;
  border: 55px solid rgba(66, 104, 210, 0.08);
  position: absolute;
  left: -225px;
  top: -187px;
  width: 449px;
  height: 449px;
}

.servicesection::after {
  content: "";
  border-radius: 449px;
  border: 55px solid rgba(66, 104, 210, 0.08);
  position: absolute;
  right: 95px;
  bottom: -225px;
  width: 449px;
  height: 449px;
}

.midservice {
  text-align: center;
}

/* .midservice h2 {
  padding: 0;
  margin: 0;
  color: var(--primary-color);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 47px;
  letter-spacing: -1.2px;
} */

.midservice .section-content p {
  margin: 0 auto;
  padding: 15px 0px 0px;
  width: 77%;
}

.procedure .section-content p {
  width: 100%;
}

.procedure .innerbox {
  padding: 40px 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.procedure .innericon.innernumber {
  margin-top: 20px;
}

.service-item {
  margin-top: 69px;
}

.innerbox {
  position: relative;
  border-radius: 45px 0;
  background: linear-gradient(105deg, #d3f7ff 19.45%, #dbe7ff 67.44%);
  padding: 30px 22px 24px 18px;
  min-height: 343.422px;
  box-sizing: border-box;
  transition: 0.3s ease-in-out;
}

/* Gap between slides */
.service-item .slick-slide {
  padding: 0 13px;
}
.page-template-tmpl-doctors .mainappoiments-right {
  display: none;
}
/* Prevent outer overflow */
.service-item .slick-list {
  margin: 0 15px;
}

.innerbox-text h3 {
  color: var(--primary-color);
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 43.345px;
  letter-spacing: -0.9px;
  text-align: left;
  padding: 0;
  margin: 0;
  max-width: 175px;
}
.innerbox-text h3 a {
  color: var(--primary-color);
}
.service-item h3 a {
  padding-right: 35px;
}
.innerbox-text {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 72px;
}

.innericon {
  text-align: left;
}

.servicesection .slick-dots {
  bottom: -89px;
}

.servicesection .slick-dots li {
  width: 9px;
  height: 9px;
  margin: 0 7px;
  background-color: #d9d9d9;
  border-radius: 100%;
}

.servicesection .slick-dots li button:before {
  display: none;
}

.servicesection li.slick-active {
  background-color: var(--secondary-color);
}

.service-benefits-sec {
  padding: 95px 0px 20px !important;
  text-align: center;
}

.dentalinsurance {
  padding: 95px 0px 111px;
  text-align: center;
}

/* section.dentalinsurance h2 {
  color: var(--primary-color);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px;
  letter-spacing: -1.2px;
  padding: 0;
  margin: 0;
} */

/*.dentalinsurance p {*/
/*  text-align: center;*/
/*  padding: 21px 0px 0px;*/
/*  max-width: 77%;*/
/*  margin-left: auto;*/
/*  margin-right: auto;*/
/*}*/

.package-section .hh-part p {
  width: 100%;
}
.package-section .hh-part {
  display: flex;
  flex-direction: column;
}
.single-services .package-section .hh-part {
  display: flex;
  flex-direction: column;
}
.package-section .notes {
  margin-bottom: 20px;
}

.package-section .anchore-btn {
  width: max-content;
  padding: 13px 32px;
  margin: 0 auto;
}

.dentalinsurance p strong {
  font-weight: 600;
  color: #3b3b3b;
}
.insurance-partner {
  padding: 0;
  margin: 35px 0px 0px;
  display: flex;
  align-items: center;
  gap: 88px;
  justify-content: center;
}

.insurance-partner a span {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 44.844px;
}

.insurance-partner a {
  display: flex;
  flex-direction: column;
  row-gap: 7px;
}

.insurance-partner li img {
  max-height: 80px;
  width: auto;
  max-width: max-content;
  margin: auto;
}

.teamsliders::after {
  content: "";
  border-radius: 0px 117.02px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 298px;
  background: #aef4f2;
}

.teamsliders-leftimg {
  position: absolute;
  left: 0px;
  bottom: 0;
  z-index: 1;
  width: 380px;
  height: 451px;
}

.teamsliders {
  position: relative;
  min-height: 491px;
  padding-left: 380px;
  display: flex;
  align-items: center;
  border-radius: 0px 117.02px;
  overflow: hidden;
}

.teamsliders-rightdetails {
  z-index: 1;
  margin-top: 210px;
  padding-right: 20px;
}

.sharesections ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
}

.sharesections {
  aspect-ratio: 170.06 / 235.77;
  background: var(--primary-color);
  border-radius: 55.956px 0;
  width: 166.778px;
  height: 158.755px;
  position: absolute;
  top: 20px;
  left: 290px;
  z-index: 9;
}

.teamsliders-rightdetails h4 {
  padding: 0;
  margin: 0;
  color: var(--primary-color);
  font-size: 17.089px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.735px;
  letter-spacing: -0.513px;
}

.teamsliders-rightdetails h4 b {
  display: block;
  color: var(--primary-color);
  font-size: 23.735px;
  font-style: normal;
  font-weight: 700;
  line-height: 23.735px;
  /* 100% */
  letter-spacing: -0.712px;
}

.teamsliders-rightdetails p {
  color: #3b3b3b;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  margin: 0;
  padding: 7px 0px 0px;
}

.team-item .slick-slide {
  padding: 0 11px;
}

.team-item .slick-list {
  margin: 0 -10px;
}

.team-item.slick-initialized.slick-slider.slick-dotted {
  position: relative;
  padding-bottom: 60px;
  margin-bottom: 60px;
}

.team-item .slick-dots {
  bottom: 0px;
}

.team-item .slick-dots li {
  width: 9px;
  height: 9px;
  margin: 0 7px;
  background-color: #d9d9d9;
  border-radius: 100%;
}

.team-item .slick-dots li button:before {
  display: none;
}

.team-item li.slick-active {
  background-color: var(--secondary-color);
}

/* .lefttitle h2 {
  padding: 0;
  margin: 0;
  color: var(--primary-color);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 47px;
  letter-spacing: -1.2px;
} */

/* .rightcontent p {
  padding: 0;
  margin: 0;
  color: #3b3b3b;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
} */

.teamheadlines {
  display: flex;
  align-items: flex-start;
  gap: 84px;
}
.single-team section.teamsection {
  padding-top: 90px;
}

.lefttitle {
  width: 39.32%;
}

.rightcontent {
  width: 54.07%;
}

.counter-area {
  border-radius: 100px 100px 0px 0px;
  background: linear-gradient(0deg, #fff 0%, #eff5ff 49.04%, #e7fbfd 100%);
  padding: 60px 0px 58px 0px;
}

.count span {
  color: #cdd9f5;
  font-size: 128px;
  font-style: normal;
  font-weight: 700;
  line-height: 90px;
  letter-spacing: -3.84px;
}

.count p {
  padding: 0;
  margin: 0;
  color: #000;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 43.345px;
  letter-spacing: -0.96px;
  z-index: 1;
  position: relative;
}

.counter-area ul {
  text-align: center;
  font-size: 0;
  display: flex;
  justify-content: center;
  column-gap: 40px;
}

.counter-area li {
  border-right: 1px solid #cecece;
  padding-right: 57px;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding-left: 57px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.count {
  position: relative;
  text-align: center;
}

.count p {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}

/* .leftfeatured-content h2 {
  color: var(--primary-color);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 47px;
  letter-spacing: -1.2px;
  padding: 0;
  margin: 0;
} */

.leftfeatured-content h2.section-heading {
  margin-bottom: 16px;
}

.mainfill-part .banner-btn {
  margin-top: 55px;
}

/* .mainfill-part .banner-btn a.anchore-btn {
  padding: 9.605px 25.309px 9.846px 10.203px;
} */

.before-after-item {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 424px;
  overflow: hidden;
  border-radius: 20px;
}

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

.before-image,
.after-image {
  position: absolute;
  inset: 0;
}

.before-image {
  z-index: 1;
}

.after-image {
  z-index: 2;
}

.label {
  position: absolute;
  bottom: 15px;
  padding: 5px 12px;
  background: #ffffff;
  color: #000000;
  font-size: 14px;
  border-radius: 3px;
}

.before-text {
  left: 15px;
}

.after-text {
  right: 15px;
}

.slider-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: transparent;
  z-index: 5;
  cursor: ew-resize;
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: ew-resize;
}

.right-before-after {
  width: 64.8%;
  border-radius: 20px;
  overflow: hidden;
  padding: 0;
}

.leftfeatured-content {
  width: 28.6%;
  padding-top: 40px;
}

.mainfill-part {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 85px;
}

.mainfill-part .slick-initialized.slick-slider.slick-dotted {
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 69px;
}

.mainfill-part .slick-dots {
  bottom: 0px;
}

.mainfill-part .slick-dots li {
  width: 9px;
  height: 9px;
  margin: 0 7px;
  background-color: #a9a9a9;
  border-radius: 100%;
}

.mainfill-part .slick-dots li button:before {
  display: none;
}

.mainfill-part li.slick-active {
  background-color: var(--primary-color);
}

/* .leftsmile h2 {
  color: var(--primary-color);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 47px;
  letter-spacing: -1.2px;
  padding: 0;
  margin: 0;
} */

.leftsmile p {
  padding: 28px 0px 0px;
  margin: 0;
}

.leftsmile ul li {
  color: #3b3b3b;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 49px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.leftsmile ul li span {
  top: 5px;
  position: relative;
}

.leftsmile ul li svg {
  width: 21px;
}

a.knowbtn {
  color: #fff;
  text-align: center;
  display: inline-block;
  font-size: var(--font-size-16, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: var(--line-height-20_8, 20.8px);
  border-radius: 100px;
  border: 1px solid var(--primary-color);
  padding: 13px 30px;
  background-color: var(--primary-color);
  margin-top: 20px;
}

.mainhealth-smile {
  display: flex;
  align-items: flex-end;
  gap: 35px;
}

.single-services .service-range {
  background: linear-gradient(105deg, #eafbff 19.45%, #eff4ff 67.44%);
}

.leftsmile {
  width: 47.2%;
}

.rightsmile {
  width: 50.1%;
}

.leftsmile ul {
  font-size: 0;
  padding: 28px 0px;
}

section.healthsmile {
  padding-bottom: 90px;
}

.testimoni-part .slick-initialized.slick-slider.slick-dotted {
  position: relative;
  padding-bottom: 48px;
  margin-bottom: 0px;
}

.testimoni-part .slick-dots {
  bottom: 0px;
}

.testimoni-part .slick-dots li {
  width: 9px;
  height: 9px;
  margin: 0 7px;
  background-color: #d9d9d9;
  border-radius: 100%;
}

.testimoni-part .slick-dots li button:before {
  display: none;
}

.testimoni-part li.slick-active {
  background-color: var(--secondary-color);
}

.Appointmentneww .mainappoiments-right h2,
.afterbefore-slider h2,
.testimoni-part h2 {
  text-align: center;
}

.testimoni-part p {
  color: #3b3b3b;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  padding: 21px 0px 0px;
  margin: 0;
}

.reviewsliders {
  margin-top: 42px;
  margin-bottom: 0;
}

.testimoni-part {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 0 223px;
  background: linear-gradient(312deg, #eafbff 19.45%, #eff4ff 67.44%);
  padding: 73px 0px;
}

.page-template-tmpl-reviews .testimoni-part, .page-template-tmpl-faqs .testimoni-part {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: #fff;
  padding: 0 0 90px;
  margin-top: -30px;
}

.page-template-tmpl-faqs .testimoni-part::before,.page-template-tmpl-faqs .testimoni-part::after{
    display: none;
}

.testimoni-part::before {
  content: "";
  border-radius: 449px;
  border: 55px solid rgba(66, 104, 210, 0.08);
  width: 449px;
  height: 449px;
  position: absolute;
  top: -303px;
  left: 95px;
  box-sizing: border-box;
}

.testimoni-part::after {
  content: "";
  border-radius: 449px;
  border: 55px solid rgba(66, 104, 210, 0.08);
  width: 449px;
  height: 449px;
  position: absolute;
  right: -225px;
  bottom: -228px;
  box-sizing: border-box;
}

.clientsliders {
  border-radius: 45px 0;
  border: 1px solid var(--primary-color);
  background: linear-gradient(105deg, #d3f7ff 19.45%, #dbe7ff 67.44%);
  padding: 27px 48px 48px 37px;
  overflow: hidden;
  display: flex;
  text-align: left;
  align-items: center;
  gap: 7px;
}

.client-details {
  width: 30%;
}

.clientreview-content {
  width: 70%;
}

.Appointmentneww .mainappoimentsdiv ul li a p,
.testimoni-part .clientreview-content p {
  color: #3b3b3b;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  padding: 0;
}

.clientimage {
  border-radius: 97.143px;
  background: #fff;
  overflow: hidden;
  width: 102px;
  height: 102px;
}

.client-details h4 {
  margin: 0;
  color: var(--primary-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20.492px;
  letter-spacing: -0.466px;
  padding: 16px 0px 0px;
}

.client-details h4 span {
  display: block;
  color: #6d6d6d;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 20.492px;
  letter-spacing: -0.298px;
}

.client-details h5 {
  color: #ea7f4a;
  font-size: 15.524px;
  font-style: normal;
  font-weight: 600;
  line-height: 20.492px;
  letter-spacing: -0.466px;
  margin: 73px 0px 0px;
  padding: 0;
}

.testimoni-part .slick-slide {
  padding: 0 11px;
}

.testimoni-part .slick-list {
  margin: 0 -22px;
}

section.latestblog {
  padding: 60px 0px 45px;
  text-align: center;
}

/* section.latestblog h2 {
  padding: 0;
  margin: 0;
  color: var(--primary-color);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 47px;
  letter-spacing: -1.2px;
} */

.latestblog p {
  padding: 20px 170px 0px;
  margin: 0;
}

.latestblog .slick-slide {
  padding: 0 13px;
}

.latestblog .slick-list {
  margin: 0 -15px;
}

.blogdiv {
  border-radius: 21.45px;
  background: linear-gradient(49deg, #eafbff 45.43%, #eff5ff 77.87%);
  overflow: hidden;
  margin-top: 56px;
}

.blogdivbottom-conts {
  padding: 30px 51px 27px 25px;
  text-align: left;
}

.blogdivbottom-conts h3 span {
  color: #ea7f4a;
  font-size: 15.015px;
  font-style: normal;
  font-weight: 500;
  line-height: 24.595px;
  letter-spacing: -0.45px;
  display: block;
  padding-bottom: 7px;
}
.blogdivbottom-conts h3 a {
  color: #4268d2 !important;
}

.blogdivbottom-conts h3 {
  padding: 0px 20px 0px 0px;
  margin: 0;
  color: var(--primary-color);
  font-size: 24.595px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: -0.738px;
}

.blogdivbottom-conts p {
  padding: 7px 0px 0px !important;
  color: #3b3b3b;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.813px;
  letter-spacing: -0.48px;
  text-align: left !important;
}

.viewmore-btn {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: var(--font-weight-700, 700);
  line-height: 12.281px;
  display: inline-block;
  vertical-align: top;
  border-radius: 66.942px;
  background: var(--primary-color);
  padding: 15px 25px;
  margin-top: 13px;
}

.viewmore-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transition: left 0.4s ease;
  z-index: -1;
}

.latestblog .slick-initialized.slick-slider.slick-dotted {
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 0px;
}

.latestblog .slick-dots {
  bottom: 0px;
}

.latestblog .slick-dots li {
  width: 9px;
  height: 9px;
  margin: 0 7px;
  background-color: #d9d9d9;
  border-radius: 100%;
}

.latestblog .slick-dots li button:before {
  display: none;
}

.latestblog li.slick-active {
  background-color: var(--secondary-color);
}

.booking-form {
  flex: 1;
  padding-right: 20px;
}

.field {
  margin-bottom: 10px;
  position: relative;
}

.icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  fill: #9aa4b2;
}

.icon svg {
  width: 100%;
  height: 100%;
}

.icon-field input,
.icon-field select {
  width: 100%;
  padding: 10px 12px 10px 38px;
  border: 1px solid #cfd8e3;
  border-radius: 4px;
  font-size: 14px;
  appearance: none;
}

.checkbox {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #555;
  color: #636363;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: -0.36px;
  padding: 15px 0px 20px;
}

.checkbox input {
  margin-right: 8px;
}

.footer-appoiment {
  border-radius: 0 223px 0 0;
  background: linear-gradient(105deg, #eafbff 19.45%, #eff4ff 67.44%);
  position: relative;
  padding: 66px 0px 60px;
}

#single-location .mainappoiments {
  display: flex;
  gap: 152px;
  align-items: center;
}

.mainappoimentsdiv {
  font-size: 0px;
  border-radius: 62.542px 0px;
  background: #aef4f2;
  position: relative;
  overflow: hidden;
}

.mainappoimentsdiv ul li a p {
  color: #636363;
  font-size: 22.515px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 0;
  margin: 0;
}
.mainappoimentsdiv ul li a p:hover {
  color: var(--primary-color);
}
.mainappoimentsdiv ul a {
  display: flex;
  gap: 23px;
}

.mainappoimentsdiv ul li {
  margin-bottom: 24px;
}
.mainappoimentsdiv ul li svg {
  margin-top: 3px;
}
.mainappoiments-left {
  position: relative;
}

.svglocation {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -40px;
  z-index: 1;
  text-align: center;
}

.mainappoimentsdiv ul {
  padding: 94px 60px 13px 70px;
}

.single-team #multi-location .mainappoimentsdiv ul {
  padding: 94px 60px 0px 53px;
}

.bottom-map img {
  width: 100%;
  height: 100%;
  font-size: 0;
}
/* 
.mainappoiments-right h2 {
  padding: 0;
  margin: 0 0 10px;
  color: var(--primary-color);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 64px;
  letter-spacing: -1.2px;
  text-align: center;
} */

.mainappoiments-right p {
  padding: 0;
  margin: 0;
}

.booking-wrapper {
  margin-top: 32px;
}

.booking-wrapper input,
.booking-wrapper select {
  box-sizing: border-box;
  padding: 0px 14px 0px 38px;
  border: 0.951px solid #b9b9b9;
  background-color: #fff;
  color: #8e8e8e;
  text-align: left;
  font-size: 13.313px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--line-height-20_8, 20.8px);
  border-radius: 0;
  line-height: normal;
  height: 45px;
}

section#single-location span.icon {
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0px;
  position: absolute;
  top: 36%;
  transform: translateY(-44%);
}

span.icon {
  width: 38px !important;
  height: 20px !important;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#single-location .mainappoiments-right,
#single-location .mainappoiments-right h2 {
  text-align: left;
}

input.btn-book {
  border-radius: 83.552px;
  background: var(--primary-color);
  box-shadow: none;
  border: 0;
  width: 128px;
  height: 43px;
  padding: 10.862px 25px;
  color: #fff;
  text-align: center;
  font-size: 13.368px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

input.btn-book:hover {
  background-color: #000000;
}
/*input.btn-book{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.4s ease;
    z-index: -1;
}*/
/*.mainappoiments {display: flex;gap: 63px;align-items: center;flex-direction: column;}*/
.footerfollow {
  background: #baf2fe;
  padding: 60px 0px 190px;
}

/* .footerfollow h2 {
  padding: 0;
  margin: 0;
  color: var(--primary-color);
  text-align: left;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 64px;
} */
.footerfollow .anchore-btn{
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}
.footerfollow .anchore-btn:hover{
    background: #fff;
    color: #fff;
}

.footerfollow .anchore-btn:hover span {
    color: #fff;
}

.footerfollow .anchore-btn::before{
    background: var(--primary-color);
}

.footerfollow .container-full {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-instra {
  margin-top: -172px;
}

.copyrights {
  color: #a4a4a4;
  text-align: center;
  padding: 30px 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: -0.48px;
}

.menu ul li.current_page_item a {
  text-decoration: underline;
}

.mainfooter-part h2 {
  padding: 0;
  margin: 0;
  color: var(--primary-color);
  font-size: 22.932px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.932px;
  letter-spacing: -0.688px;
}

.mainfooter-part ul li a {
  color: #636363;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: -0.48px;
  transition: 0.3s ease-in-out;
}

.mainfooter-part ul li a:hover {
  text-decoration: underline;
  color: var(--primary-color);
}
.footer-workinghour li {
  color: #636363;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: -0.48px;
  transition: 0.3s ease-in-out;
}
.footer-navigation ul {
  padding-top: 30px;
}
#menu-footer-menu.quicklinks {
  column-count: 2;
  gap: 70px;
}
.mainfooter-part {
  display: flex;
  align-items: flex-start;
  gap: 111px;
}

.mainfooter-part > div {
  flex: 0 29%;
  margin-top: 45px;
}

.uls {
  display: flex;
  align-items: flex-start;
  gap: 76px;
}

.footer-workinghour {
  flex: 0 28% !important;
}

.footer-quicklink {
  flex: 0 40% !important;
}

.footerlogo-info p {
  color: #3b3b3b;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  margin: 0;
  padding: 21px 0px 0px;
}

a.footerbtn {
  border-radius: 100px;
  background: var(--primary-color);
  margin-top: 26px;
  display: inline-block;
  vertical-align: top;
  padding: 15px 55px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  transition: 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
a.footerbtn:hover {
  color: var(--primary-color);
}

a.footerbtn:hover::before {
  left: 0;
}
.footerbtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  transition: left 0.4s ease;
  z-index: -1;
}

.headerfooter h2 {
  padding: 0;
  margin: 0;
  color: var(--primary-color);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: -0.9px;
}

.footerright p {
  color: var(--primary-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: -0.42px;
  padding: 0;
  margin: 0;
}
.gjs-cell {
  display: flex;
}
form.footerform button,
.gjs-cell input[type="submit"] {
  border-radius: 0 80.734px 80.734px 0;
  border: 1.211px solid var(--primary-color);
  background: var(--primary-color);
  box-shadow: 0 0 0 0 #6c6c6c inset;
  color: #fff;
  text-align: center;
  font-size: 12.917px;
  font-style: normal;
  font-weight: 500;
  line-height: inherit;
  padding: 14.532px 12.11px;
  box-sizing: border-box;
  width: 117.064px;
  height: 44.404px;
  transition: 0.3s ease-in-out;
}
.gjs-cell input[type="submit"]:hover {
  background: #000;
}
/*.gjs-cell input[type="submit"]:hover{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.4s ease;
    z-index: -1;
}*/
input.newsletterinput,
input.es-email {
  border-radius: 80.734px 0px 0px 80.734px;
  background: #fff;
  box-shadow: 0 0 0 0 #6c6c6c inset;
  height: 44.404px;
  padding: 0px 12.11px;
  box-sizing: border-box;
  border: 0;
  background-color: #ffffff !important;
  color: #a9a9a9;
  text-align: left;
  font-size: 11.303px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--line-height-20_8, 20.8px);
  width: 345px;
  height: 44.404px;
}
input.es-email::placeholder {
  color: #a9a9a9;
  opacity: 1;
}
form.footerform {
  font-size: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.contents-footer {
  border-radius: 20px;
  background: linear-gradient(230deg, #b9f1fe 21.49%, #eff4ff 61.91%);
  padding: 50px 80px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bg-image {
  position: absolute;
  left: 0;
  margin: 0 auto;
  right: 0;
  text-align: center;
}

.headerfooter,
.footerright {
  z-index: 2;
}

input:focus-visible {
  outline: 0;
}

input.newsletterinput::placeholder {
  text-align: left;
  color: #a9a9a9;
  font-size: 11.303px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--line-height-20_8, 20.8px);
  /* 184.026% */
  opacity: 1;
  /* important for Firefox */
}

.footernews-letter {
  margin-top: 35px;
  overflow: hidden;
}

section#single-location {
  padding: 80px 0 40px;
}

.footer-appoiment {
  overflow: hidden;
}

.footer-appoiment::before {
  content: "";
  border-radius: 449px;
  border: 55px solid rgba(66, 104, 210, 0.08);
  width: 449px;
  height: 449px;
  position: absolute;
  top: -280px;
  left: -225px;
  box-sizing: border-box;
}

.footer-appoiment::after {
  content: "";
  border-radius: 449px;
  border: 55px solid rgba(66, 104, 210, 0.08);
  width: 449px;
  height: 449px;
  position: absolute;
  right: 95px;
  bottom: -240px;
  box-sizing: border-box;
}
.single-team .footer-appoiment::after {
  bottom: 0;
}

.section.counter-area ul {
  display: flex;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #000;
}

.close-menu {
  font-size: 32px;
  cursor: pointer;
  align-self: flex-end;
  display: none;
}

.mainappoiments-left {
  max-width: 512px;
  width: 100%;
}

.mainappoimentsLeft .slick-slide {
  padding: 0 15.5px;
}

.mainappoimentsLeft {
  margin: 0 -11.5px;
}

.mainappoimentsLocations {
  border-radius: 86px 0px;
  background: var(--primary-color);
  overflow: hidden;
  padding: 15px 36px 36px;
  margin-top: 63px;
}

.mainappoimentsLocations .slick-dots {
  bottom: -40px;
}

.mainappoimentsLocations .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 10px;
  background-color: #d9d9d9;
  border-radius: 100%;
}

.mainappoimentsLocations .slick-dots li button:before {
  display: none;
}

.mainappoimentsLocations li.slick-active {
  background-color: var(--secondary-color);
}

#single-location .mainappoiments-right {
  max-width: 500px;
  width: 100%;
}

.fieldicon-fieldmain {
  width: 100%;
}
.fieldicon-fieldmain form.wpcf7-form.init {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.fieldicon-fieldmain div {
  flex: 0 49%;
  justify-content: center;
  text-align: left;
  justify-content: center;
  margin: 0;
}

/*about page*/
img.aboutimage {
  border-radius: 0px 0px 0 0px;
  left: 0px;
}

.whymainabout .leftimg {
  border-bottom-right-radius: 146.02px;
  overflow: hidden;
}

.whymainabout {
  gap: 68px;
}

.whymainabout .leftimg::after {
  left: 40px;
}

section.service-range h2,
.dental-service h2 {
  text-align: center;
}

.afterbefore-slider p,
.service-range p {
  padding: 21px 0px 0px;
  margin: 0 auto;
  text-align: center;
}

.page-template-tmpl-services .service-range .section-content, .page-template-tmpl-financing-insurance .service-range .section-content, .page-template-tmpl-patient-resources .service-range .section-content{
    width: 75%;
    margin-inline: auto;
}

.itemscontents h3 {
  padding: 0;
  margin: 0;
  color: #47dbd6;
  text-align: left;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -1.92px;
  line-height: normal;
}

.itemscontents p {
  color: var(--primary-color);
  text-align: left !important;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 43.345px;
  letter-spacing: -0.75px;
  padding: 0 !important;
  margin: 0;
}

.page-template-tmpl-patient-resources .dentalservice-items .itemscontents p {
  color: var(--primary-color);
  text-align: left !important;
  color: #3B3B3B;
  font-size: 17.16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.75px;
  padding: 0 !important;
  margin: 0 0 15px;
}

.page-template-tmpl-patient-resources p {
    color: #3B3B3B;
    font-size: 16px;
    font-weight: 400;
}

.page-template-tmpl-patient-resources .dental-service p{
    text-align: center;
}

.service-items svg {
  width: 89px;
  height: 89px;
  margin: 0 auto;
  text-align: center;
}

.service-items {
  flex: 0 18.5%;
  border-radius: 45px 0;
  background: linear-gradient(105deg, #d3f7ff 19.45%, #dbe7ff 67.44%);
  padding: 40px 44px 37px 18px;
  text-align: center;
  position: relative;
}

.service-items::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, #4268d2, transparent);
    pointer-events: none;
    height: 1px;
    right: 0;
    width: 50%;
    left: auto;
}

.service-items::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, #4268d2, transparent);
    pointer-events: none;
    height: 50%;
    right: 0;
    width: 1px;
    left: auto;
}

.dental-counter-sec .dentalservice-items {
  grid-template-columns: repeat(4, 1fr);
}

.dental-counter-sec .itemscontents {
  margin-top: 30px;
}

.dentalservice-items {
  display: grid;
  gap: 33px;
  margin-top: 69px;
  grid-template-columns: repeat(3, 1fr);
}

.reviewtesti {
  margin: 110px auto 0;
  max-width: 84%;
}

.dental-counter-sec .section-content p, .dental-service .section-content p, .financeabout .section-content p{
  margin: 0 auto;
  text-align: center;
  margin-top: 20px;
  width: 85%;
}

.dental-service .reviewtesti p {
  color: var(--primary-color);
  text-align: center;
  padding-top: 24px !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  margin: 0;
}

.signature-image {
  width: 135px;
  height: 103px;
  aspect-ratio: 135 / 103;
  margin: 44px auto 0px;
}

.dental-service {
  border-radius: 0 223px 0px 0;
  background: linear-gradient(105deg, #eafbff 19.45%, #eff4ff 67.44%);
  padding: 89px 0px 90px;
  position: relative;
  overflow: hidden;
}
.dental-service .section-content {
  padding: 0px 25px;
}

.dental-service::before {
  content: "";
  border-radius: 449px;
  border: 55px solid rgba(66, 104, 210, 0.08);
  width: 449px;
  height: 449px;
  position: absolute;
  top: -280px;
  left: -225px;
  box-sizing: border-box;
}

.dental-service::after {
  content: "";
  border-radius: 449px;
  border: 55px solid rgba(66, 104, 210, 0.08);
  width: 449px;
  height: 449px;
  position: absolute;
  right: 95px;
  bottom: 0px;
  box-sizing: border-box;
}

.imgstoryline img {
  border-radius: 20px 244px 20px 20px;
}

/* .leftstory h2 {
  color: var(--primary-color);
  padding: 0;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 47px;
  letter-spacing: -1.2px;
  margin: 0;
} */

/* .leftstory p {
  color: #3b3b3b;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  padding: 21px 0px 0px;
  margin: 0;
} */

.storydetails {
  padding: 81px 0px 91px;
  gap: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.leftstory {
  flex: 0 57.34%;
}

.rightimgstory {
  flex: 0 40.95%;
}

.chooseus-about {
  border-radius: 100px 100px 0 0;
  background: linear-gradient(0deg, #fff 0%, #eff5ff 49.04%, #e7fbfd 100%);
  padding: 83px 0px 180px;
  text-align: center;
}

.chooseus-about h2 {
  text-align: center;
}

.chooseitems h3 {
  padding: 42px 0px 0px;
  margin: 0;
  color: var(--primary-color);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24.55px;
  letter-spacing: -0.72px;
}

.chooseitems p {
  color: #3b3b3b;
  text-align: center;
  padding: 28px 0px 0px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.48px;
  margin: 0;
}

.chooseicon svg {
  width: 77.68px;
}

.chooseelements {
  display: flex;
  justify-content: center;
  gap: 58px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.lefttakecare img {
  border-radius: 211.5px 20px 20px 20px;
}

.righttakecare h2 {
  line-height: 54px;
  padding: 0;
  margin-bottom: 38px;
}
.listtake h3 {
  color: #0e54ae;
  text-align: left;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24.55px;
  letter-spacing: -0.72px;
  padding: 0;
  margin: 0;
}

.listtake p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.48px;
  padding: 11px 0px 0px;
  margin: 0;
}

.svgiconds {
  width: 72px;
  height: 72px;
  border: 2px solid var(--primary-color);
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
}
.lefttakecare {
  flex: 0 0 31%;
  padding-top: 25px;
}
.righttakecare {
  width: 69%;
}
.listtake:last-child {
  margin-bottom: 0px;
}
.mainappoiments-right {
  text-align: center;
}
.listtake {
  padding-left: 99px;
  position: relative;
  margin-bottom: 62px;
}

.leftrighttake {
  display: flex;
  gap: 45px;
  align-items: flex-start;
  justify-content: center;
}

.abouttakecare {
  padding-bottom: 186px;
}

.doctorleftimg {
  position: relative;
}

.doctorleftimg::after {
  content: "";
  width: 460.285px;
  height: 505.401px;
  aspect-ratio: 460.29 / 505.4;
  background: #aef4f2;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 0px 142.649px;
  background: var(--secondary-color);
}

.doctorleftimg::after {
  content: "";
  width: 100%;
  height: 363px;
  aspect-ratio: 460.29 / 505.4;
  background: #aef4f2;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 0px 142.649px;
  background: var(--secondary-color);
}

.doctorleftimg img {
  z-index: 11;
  position: relative;
  bottom: -10px;
}

.doctorleftimg {
  position: relative;
  border-radius: 0px 142.649px;
  overflow: hidden;
  width: 100%;
}

.lefttdr {
  width: 35%;
}

h3.dttitle {
  text-align: center;
  padding: 30px 0px 0px;
  margin: 0;
  color: var(--primary-color);
  text-align: center;

  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 38.457px;
  letter-spacing: -1.05px;
}

.qutationsvg {
  padding-top: 36px;
}

.qutationsvg svg {
  width: 60px;
  height: 44px;
}

.doctorquat p {
  padding: 24px 0px 42px;
  color: var(--primary-color);

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  margin: 0;
}

.coscontent h3 {
  color: var(--primary-color);
  text-align: center;

  font-size: 23.735px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.735px;
  letter-spacing: -0.712px;
  padding: 0;
  margin: 0;
}

.coscontent p {
  color: var(--primary-color);

  font-size: 17.089px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.735px;
  letter-spacing: -0.513px;
  text-align: center;
  margin: 0;
}

.cosmeticdentists-ul ul {
  display: grid;
  column-gap: 22px;
  row-gap: 30px;
  justify-content: center;
  grid-template-columns: repeat(4, 1fr);
}

section.cosmeticdentists-section h2 {
  margin: 0;
  padding: 0;
  color: var(--primary-color);
  text-align: center;

  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 47px;
  letter-spacing: -1.2px;
}

.cosmeticdentists-ul {
  padding-top: 74px;
}

.cosmeticdentistsimg {
  margin-bottom: 15px;
}

.coscontent {
  margin-top: 20px;
}

.cosmeticdentists-ul ul li {
  font-size: 0;
}

/*.frontfrom .form-intro {*/
/*  text-align: center;*/
/*  color: #666;*/
/*  margin-bottom: 25px;*/
/*  font-size: 15px;*/
/*}*/

/*.frontfrom .appointment-form {*/
/*  width: 100%;*/
/*}*/

/*.frontfrom .form-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(2, 1fr);*/
/*  gap: 24px;*/
/*}*/

/*.frontfrom .form-group label {*/
/*  display: block;*/
/*  color: #3b3b3b;*/
/*  text-align: left;*/
/*  font-family: "SF Pro Display";*/
/*  font-size: 16px;*/
/*  font-style: normal;*/
/*  font-weight: 700;*/
/*  line-height: 100%;*/
/*  padding: 0px 0px 20px;*/
/*  margin: 0;*/
/*}*/

/*.frontfrom .form-group input,*/
/*.frontfrom .form-group select,*/
/*.frontfrom .form-group textarea {*/
/*  width: 100%;*/
/*  padding: 12px 14px;*/
/*  border-radius: 25px;*/
/*  border: 1px solid #ddd;*/
/*  font-size: 14px;*/
/*  outline: none;*/
/*  box-sizing: border-box;*/
/*}*/

/*.frontfrom .form-group textarea {*/
/*  border-radius: 16px;*/
/*  min-height: 140px;*/
/*  resize: vertical;*/
/*}*/

/*.frontfrom .form-group.full {*/
/*  margin-top: 18px;*/
/*}*/

/*.frontfrom .form-footer {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: space-between;*/
/*  margin-top: 20px;*/
/*  gap: 15px;*/
/*}*/

/*.frontfrom .checkbox {*/
/*  font-size: 13px;*/
/*  color: #555;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 8px;*/
/*}*/

/*.frontfrom .submit-btn {*/
/*  background: #4b5cff;*/
/*  color: #fff;*/
/*  border: none;*/
/*  padding: 12px 26px;*/
/*  border-radius: 30px;*/
/*  font-size: 14px;*/
/*  cursor: pointer;*/
/*  transition: background 0.3s;*/
/*}*/

/*.frontfrom .submit-btn:hover {*/
/*  background: #3747ff;*/
/*}*/

section.frontfrom {
  padding-top: 175px;
  padding-bottom: 71px;
}

.page-template-tmpl-before-after .frontfrom {
  padding-top: 75px;
  padding-bottom: 71px;
}

.page-template-tmpl-before-after .frontfrom .section-heading{
    text-align: center;
    padding-bottom: 20px;
}

/*p.form-intro {*/
/*  color: #3b3b3b;*/
/*  text-align: center;*/

/*  font-size: 16px;*/
/*  font-style: normal;*/
/*  font-weight: 400;*/
/*  line-height: 25px;*/
/*  padding: 0;*/
/*  margin: 0;*/
/*}*/

/*.frontfrom .form-group select {*/
/*  padding-right: 30px;*/
/*}*/

/*.frontfrom .submit-btn {*/
/*  background: #4b5cff;*/
/*  color: #fff;*/
/*  border: none;*/
/*  padding: 12px 26px;*/
/*  border-radius: 30px;*/
/*  font-size: 14px;*/
/*  cursor: pointer;*/
/*  transition: background 0.3s;*/
/*  color: #fff;*/
/*  text-align: center;*/

/*  font-size: var(--font-size-16, 16px);*/
/*  font-style: normal;*/
/*  font-weight: var(--font-weight-700, 700);*/
/*  line-height: var(--line-height-20_8, 20.8px);*/
/*  border-radius: 100px;*/
/*  border: 1px solid rgba(66, 104, 210, 0);*/
/*  display: flex;*/
/*  padding: 13px 30px;*/
/*  align-items: flex-start;*/
/*}*/

.appointment-wrapper h3 {
  color: var(--primary-color);
  text-align: center;

  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 47px;
  letter-spacing: -1.2px;
  margin: 0;
  padding: 0px 0px 15px 0px;
}

section.teamsection.docteams {
  padding-top: 79px;
}

.leftintro h2 {
  padding: 0;
  margin: 0;
  color: var(--primary-color);

  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 47px;
  letter-spacing: -1.2px;
}

.introbg {
  padding-left: 45px;
  padding-right: 45px;
  border-radius: 0 101.695px;
  border: 1px solid #aef4f2;
  width: 312px;
  height: 306px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.introicon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.introbg h3 {
  text-align: left;
  width: 100%;
  padding: 0;
  margin: 0;
  color: var(--primary-color);

  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 47px;
  letter-spacing: -0.72px;
}

.leftright-intro {
  display: flex;
  gap: 32px;
  padding: 55px 0px;
  align-items: center;
}

.infordoc {
  border-top: 2px solid #e4e4e4;
  padding-top: 24px;
}

.infordoc ul li {
  color: #3b3b3b;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: -0.6px;
}

.infordoc ul li a {
  color: #3b3b3b;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: -0.6px;
}

.infordoc ul li a {
  gap: 9px;
  display: flex;
  align-items: center;
}

.infordoc ul li a span {
  display: flex;
}

.infordoc ul {
  display: flex;
  gap: 33px;
  padding-bottom: 50px;
}

.left-banner h1 b {
  color: var(--primary-color);

  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 86.168px;
  letter-spacing: -1.2px;
}

.interdoc h1 {
  line-height: inherit;
}

.interdoc .right-banner {
  text-align: right;
}

/* 40px gap between slides */
.afterbeforeslider .slick-slide {
  padding: 0 20px;
  /* 20px left + 20px right = 40px gap */
}

/* Compensate outer spacing */
.afterbeforeslider .slick-list {
  margin: 0 -20px;
}

/* Base */
.afterbeforeslider-left {
  position: relative;
  padding-bottom: 20px;
}

.afterbeforeslider-left img {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 23.412px 23.412px 23.412px 184.953px;
}

.bgback {
  background-color: #aef4f2;
  position: absolute;
  right: 9px;
  width: 144.975px;
  height: 138.001px;
  bottom: 13px;
  border-radius: 0 0 23.412px;
}

/* ========================= */
/* ODD SLIDES */
/* ========================= */
.afterbeforeslider
  .slick-slide:not(.slick-cloned):nth-child(even)
  .afterbeforeslider-left
  img {
  border-radius: 23.412px 184.953px 23.412px 23.412px;
}

.afterbeforeslider
  .slick-slide:not(.slick-cloned):nth-child(even)
  .afterbeforeslider-left
  .bgback {
  left: -8px;
  right: auto;
  border-radius: 0 23.412px 0;
}

/* ========================= */
/* EVEN SLIDES */
/* ========================= */
.afterbeforeslider
  .slick-slide:not(.slick-cloned):nth-child(odd)
  .afterbeforeslider-left
  img {
  border-radius: 23.412px 23.412px 23.412px 184.953px;
}

.afterbeforeslider
  .slick-slide:not(.slick-cloned):nth-child(odd)
  .afterbeforeslider-left
  .bgback {
  right: -9px;
  left: auto;
  border-radius: 0 0 23.412px;
}

.afterbefore-slider .slick-slide {
  padding: 0 26px;
}

.afterbefore-slider .slick-list {
  margin: 0 -26px;
}

.afterbefore-slider.slick-initialized.slick-slider.slick-dotted {
  position: relative;
  padding-bottom: 60px;
  margin-bottom: 60px;
}

.afterbefore-slider .slick-dots {
  bottom: -30px;
}

.afterbefore-slider .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 10px;
  background-color: #d9d9d9;
  border-radius: 100%;
}

.afterbefore-slider .slick-dots li button:before {
  display: none;
}

.afterbefore-slider li.slick-active {
  background-color: var(--secondary-color);
}

a.buttonsslider {
  border-radius: 100px;
  border: 1px solid var(--primary-color);
  display: inline-block;
  padding: 13px 30px;
  align-items: normal;
  margin: 0 auto;
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  font-size: 15.23px;
  font-style: normal;
  font-weight: 700;
  line-height: 19.798px;
}

.afterbefore-slider h2 {
  text-align: left;
}

.afterbefore-slider p {
  text-align: left;
  margin: 0;
  padding: 16px 0px 0px;
  color: #3b3b3b;
  font-family: SF Pro Display;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}

.afterbefore-slider {
  padding: 50px 0px;
}

.afterbeforeslider {
  margin: 30px 0px;
}

.afterbefore-slider {
  text-align: center;
}

a.buttonsslider {
  margin-top: 40px;
}

section.afterbefore-apoinment {
  padding: 56px 0px;
}

.serviceareas .service-card h3 {
  color: var(--primary-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 55px;
  padding: 0;
  margin: 0;
}
.serviceareas .service-card h3 a {
  color: var(--primary-color);
}
.serviceareas .service-card h3 a:hover {
  color: #000;
}
.serviceareas .service-card p {
  color: #3b3b3b;
  font-family: SF Pro Display;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  padding: 0px 0px 20px;
  margin: 0;
  text-align: left;
}

.serviceareas .service-card a.btn {
  display: inline-block;
  vertical-align: top;
  border-radius: 100px;
  border: 1px solid var(--primary-color);
  padding: 13px 30px;
  color: #fff;
  text-align: center;

  font-size: 14.98px;
  font-style: normal;
  font-weight: 700;
  line-height: 19.798px;
  background-color: var(--primary-color);
}

.service-card {
  border-radius: 121px 20px;
  border: 1px solid var(--secondary-color);
  background: #fff;
  box-shadow: 0 0 9.2px 0 rgba(0, 0, 0, 0.11);
}

.image-wrap {
  height: 197px;
  overflow: hidden;
  position: relative;
}

.image-wrap img {
  left: 0;
  top: 0;
  height: 100%;
  position: absolute;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.hh-part {
  padding: 0px 30px 30px;
}

.serviceareas {
  margin-top: 30px;
  box-sizing: border-box;
}

.service-card {
  overflow: hidden;
  flex: 0 0 30%;
  position: relative;
}

section.service-range {
  padding: 60px 0px 80px;
}

.serviceareas.service-posts span.sericon {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  margin-top: -45px;
  left: 24px;
  position: relative;
}

.service-card svg {
  width: 43px;
  height: 43px;
}

section.service-range.servicesrrt {
  padding: 80px 0px;
}

section.service-range.servicesrrt .service-card {
  text-align: center;
  border-radius: 0 45px;
  background: linear-gradient(105deg, #eafbff 19.45%, #eff4ff 67.44%);
}

section.service-range.servicesrrt .service-card p {
  color: #3b3b3b;

  font-size: 19.26px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.269px;
  text-align: center;
}

.innericon.innernumber {
  color: rgba(66, 104, 210, 0.63);
  font-family: "Myriad Pro";
  font-size: 128px;
  font-style: normal;
  font-weight: 600;
  line-height: 47px;
  letter-spacing: -3.84px;
  text-align: right;
}

.innerbox-text.innernumbertext {
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  align-items: baseline;
}

.innerbox-text.innernumbertext p {
  color: var(--primary-color);

  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  text-align: left;
}

.tooth-benefits {
  padding: 60px 20px;
  background: #fff;
}

.benefits-wrap {
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

/* CENTER IMAGE */
.tooth-image img {
  width: 100%;
  max-width: 100%;
  display: block;
}

/* BENEFITS */
.benefits {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.benefit {
  position: relative;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  font-size: 14px;
  line-height: 1.5;
  width: 10vw;
  padding: 13px 0 12px 12px;
  color: #3b3b3b;
}

/* CHECK ICON */
.check {
  width: 22px;
  height: 22px;
  background: #2a4cff;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  z-index: 1;
}

/* ALIGNMENTS */
.left .benefit {
  padding-right: 40px;
}

.benefits.left p {
  text-align: left;
  margin: 0;
  padding: 0;
}

.benefits.right p {
  margin: 0;
  padding: 0;
  text-align: left;
}

.left .check {
  position: absolute;
  right: -11px;
  top: 50%;
  transform: translateY(-50%);
}

.right .benefit {
  padding-left: 40px;
}

.right .check {
  position: absolute;
  left: -11px;
  top: 50%;
  transform: translateY(-50%);
}

/* DOTTED CONNECTORS */
.left .benefit::after,
.right .benefit::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  border-top: 1px dotted #ccc;
}

.left .benefit::after {
  left: 100%;
}

.right .benefit::after {
  right: 100%;
}

.benefits {
  align-items: center;
}

.tooth-image {
  z-index: 1;
}

.Appointmentneww .booking-form {
  flex: 1;
  padding-right: 20px;
  text-align: left;
}

.Appointmentneww .field {
  margin-bottom: 10px;
  position: relative;
}

.Appointmentneww .icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  fill: #9aa4b2;
}

.Appointmentneww .icon svg {
  width: 100%;
  height: 100%;
}

.Appointmentneww .icon-field input,
.Appointmentneww .icon-field select {
  width: 100%;
  padding: 10px 12px 10px 38px;
  border: 1px solid #cfd8e3;
  border-radius: 4px;
  font-size: 14px;
  appearance: none;
}

.Appointmentneww .checkbox {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #555;
  margin: 21px 0px;
  color: #636363;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: -0.36px;
}

.Appointmentneww .checkbox input {
  margin-right: 8px;
}

section.Appointmentneww {
  border-radius: 0 223px 0 0;
  background: linear-gradient(105deg, #eafbff 19.45%, #eff4ff 67.44%);
  position: relative;
  padding: 34px 0px 34px;
}

.Appointmentneww .mainappoimentsdiv {
  font-size: 0px;
  border-radius: 62.542px 0px;
  background: #aef4f2;
  position: relative;
  overflow: hidden;
}

.Appointmentneww .mainappoimentsdiv ul li a p {
  color: #636363;
  font-size: 22.515px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 0;
  margin: 0;
}

.Appointmentneww .mainappoimentsdiv ul a {
  display: flex;
  gap: 23px;
  align-items: center;
}

.Appointmentneww .mainappoimentsdiv ul li {
  margin-bottom: 24px;
}

.Appointmentneww .mainappoiments-left {
  position: relative;
}

.Appointmentneww .svglocation {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 26px;
  z-index: 1;
  text-align: center;
}

.Appointmentneww .mainappoimentsdiv ul {
  padding: 94px 70px 30px;
}

.Appointmentneww .bottom-map img {
  width: 100%;
  height: 100%;
  font-size: 0;
}

.Appointmentneww .mainappoiments-right h2 {
  padding: 0;
  margin: 0;
  color: var(--primary-color);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 64px;
  letter-spacing: -1.2px;
  text-align: left;
}

.Appointmentneww .mainappoiments-right p {
  text-align: left;
  color: #636363;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.48px;
  padding: 0;
  margin: 0;
}

.Appointmentneww .booking-wrapper {
  margin-top: 32px;
}

.Appointmentneww .booking-wrapper input,
.booking-wrapper select {
  box-sizing: border-box;
  padding: 12.362px 14px 12.362px 38px;
  border: 0.951px solid #b9b9b9;
  background-color: #fff;
  color: #8e8e8e;
  text-align: left;
  font-size: 13.313px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--line-height-20_8, 20.8px);
  border-radius: 0;
  outline: none;
}

.Appointmentneww span.icon {
  width: 38px;
  height: 20px;
  left: 0;
}

.Appointmentneww button.btn-book {
  border-radius: 83.552px;
  background: var(--primary-color);
  box-shadow: none;
  border: 0;
  width: 128px;
  height: 43px;
  padding: 10.862px 25px;
  color: #fff;
  text-align: center;
  font-size: 13.368px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.Appointmentneww button.btn-book:hover {
  background-color: #000000;
}

.Appointmentneww .mainappoiments {
  display: flex;
  gap: 152px;
  align-items: center;
}

.afterbefore-slider {
  padding: 80px 0px;
}

.afterbefore-slider h2 {
  text-align: center;
}

.afterbefore-slider p {
  color: #3b3b3b;
  text-align: center;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

.afterbeforesliderr img {
  padding: 50px 0px;
}

.innerCost {
  border-radius: 0 0 100px 100px;
  background: linear-gradient(180deg, #fff 0%, #eff5ff 49.04%, #e7fbfd 100%);
  padding: 115px 44px 84px;
}

.innerCost h3 {
  color: var(--primary-color);

  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 53.418px;
  letter-spacing: -1.2px;
  padding: 0;
  margin: 0;
}

.innerCost p {
  padding: 22px 0px 0px;
  margin: 0;
  color: #636363;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.414px;
  letter-spacing: -0.48px;
}

span.textdivb h4 {
  color: var(--primary-color);

  font-size: 23.183px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.452px;
  letter-spacing: -0.695px;
  padding: 0;
  margin: 0;
}

span.textdivb p {
  color: #636363;

  font-size: 18.185px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.414px;
  letter-spacing: -0.546px;
  margin: 0;
  padding: 11px 0px 0px;
}

.Whofor li {
  gap: 17px;
  display: flex;
  align-items: center;
  margin-top: 45px;
}

.Eligibilitymain {
  display: flex;
  gap: 77px;
}

.Eligibilitymain > div {
  flex: 0 0 46%;
}

.Eligibilitymain {
  display: flex;
  gap: 57px;
  align-items: center;
  padding-bottom: 80px;
}

.left .benefit::after,
.right .benefit::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100%;
  border-top: 1px dotted #ccc;
}

.faq-container {
  /*max-width: 1200px;*/
  margin: auto;
  display: grid;
  grid-template-columns: 439px 1fr;
  gap: 88px;
  align-items: flex-start;
}

/* LEFT */
.faq-label {
  color: #2a4cff;
  font-size: 14px;
  margin-bottom: 10px;
  display: inline-block;
}

.faq-image{
    margin-top: 50px;
}

.faq-subtext {
  font-size: 14px;
  color: #666;
  margin-bottom: 50px;
}

/* RIGHT */
.faq-item {
  margin-bottom: 16px;
  overflow: hidden;
  background: transparent;
  position: relative;
  z-index: 1;
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px; /* border thickness */
  border-radius: 20px;
  background: linear-gradient(90deg, #4268d2, #6a5bff00);
  z-index: -1;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 22px;
  font-size: 15px;
  color: #2a4cff;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .icon {
  font-size: 20px;
  transition: transform 0.3s ease;
  left: auto;
  right: 20px;
  color: var(--primary-color);
  text-align: center;

  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 20.8px; /* 57.778% */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 12px 22px 20px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

button.faq-question {
  position: relative;
}

section.faqsections {
  padding: 167px 0px 107px;
}

span.faq-label {
  color: #3b3b3b;

  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
  padding: 0;
}

p.faq-subtext {
  padding: 55px 0px 20px;
  color: var(--primary-color);
  text-align: left;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.41px;
  letter-spacing: -0.48px;
  margin: 0;
}

a.faq-btn {
  display: inline-flex;
  padding: 17px 28px 16px 28px;
  justify-content: center;
  align-items: center;
  margin: 32px 0px 0px 0px;
  border-radius: 100px;
  background: var(--primary-color);
  color: #fff;
  text-align: center;

  font-size: var(--font-size-16, 16px);
  font-style: normal;
  font-weight: var(--font-weight-700, 700);
  line-height: var(--line-height-20_8, 20.8px);
}

button.faq-question {
  color: var(--primary-color);
  text-align: center;

  font-size: var(--font-size-16, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: var(--line-height-20_8, 20.8px);
}

/* --- Back To Top Code --- */
.back-to-top {
  position: fixed;
  z-index: 9;
  bottom: 150px;
  right: -2px;
  background-color: var(--secondarycolor);
  padding: 10px 12px 5px;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  box-shadow: 0 0 10px #979797;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

#btn-back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top i {
  transition: all 0.3s ease-in-out;
}

.back-to-top:hover {
  background-color: #000;
}

.back-to-top:hover i {
  color: #fff;
}
span.infocont p {
  line-height: 22px;
  color: #636363;
  font-size: 12.478px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

h5.h5_title {
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  color: hsl(0deg 0% 0% / 33%);
}
.clogo {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
}

.wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
}
.wpcf7-not-valid {
  border: 1px solid #dc3232 !important;
}

span.wpcf7-not-valid-tip {
  display: none;
}

.wpcf7-response-output {
  border: none !important;
  padding: 15px 0 !important;
  margin: 0 !important;
  color: #dc3232;
  font-size: 12px;
}
.name {
  background-image: url("../img/user.svg");
  background-repeat: no-repeat;
  background-position: 0 center;
}
.email {
  background-image: url("../img/email.svg");
  background-repeat: no-repeat;
  background-position: 0 center;
}
.walcf7-datepicker {
  background-image: url("../img/phone.svg");
  background-repeat: no-repeat;
  background-position: 0 center;
}
select {
  background-image: url("../img/select.svg");
  background-repeat: no-repeat;
  background-position: 97% center;
}
section#multi-location .mainappoiments-left {
  max-width: max-content;
  padding-top: 30px;
}
p.mpara {
  text-align: center;
}
section#multi-location .mainappoimentsdiv {
  background: #ebfbff;
}
section#multi-location .mainappoiments-left .svglocation {
  top: 0;
}
ul.search-list li {
  font-size: 14px;
  line-height: 26px;
  list-style: decimal;
}

ul.search-list {
  padding: 10px 20px 0px;
}
.blog-card span.date img {
  width: 24px;
  height: auto;
  border-radius: 0px;
}
/* Hide default checkbox */
.wpcf7-checkbox input[type="checkbox"] {
  display: none;
}

/* Label styling */
.wpcf7-checkbox label {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 10px;
  font-size: 15px;
}

/* Custom checkbox box */
.wpcf7-checkbox .wpcf7-list-item-label::before {
  content: "";
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #d7e1f3; /* WP blue */
  border-radius: 4px;
  display: inline-block;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
  top: -3px;
}

/* Checked state */
.wpcf7-checkbox input:checked + .wpcf7-list-item-label::before {
  background-color: #fff;
  border-color: #d7e1f3;
}

/* Tick mark */
.wpcf7-checkbox input:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 9px;
  border: solid var(--primary-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-left: 6px;
  margin-top: -1px;
  position: absolute;
  left: 0;
}

span.wpcf7-list-item-label {
  display: inline-flex;
  padding-left: 43px;
}
section.service-range.servicesrrt .service-card.tp {
  background: #fff;
}
.container-fluid.for-section {
  padding: 40px 0px;
  text-align: center;
}

.error404 .container-fluid.for-section {
  margin-top:200px;
  margin-bottom: 150px;
}
.service-item .slick-list {
  margin: 0 -26px;
  display: flex;
}
.service-item .slick-track {
  display: flex;
}

.service-item .slick-slide > div {
  height: 100%;
}

.clinic-section {
  padding: 60px 20px;
}

.clinic-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.clinic-card {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 40px;
  align-items: center;
}

.clinic-image img {
  width: 100%;
  border-radius: 40px 0 0 40px;
  object-fit: cover;
  border-radius: 117.02px 0;
  background: var(--secondary-color);
}

.clinic-content h3 {
  color: var(--primary-color);

  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 47px;
  letter-spacing: -1.2px;
  padding: 0;
  margin: 0;
}

span.location {
  color: var(--primary-color);

  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 47px;
  letter-spacing: -0.6px;
}

.clinic-content p {
  color: #3b3b3b;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  margin: 0;
  padding: 20px 0px 0px;
}

.working-hours h4 {
  padding: 20px 0px 0px;
  margin: 0;
  color: var(--primary-color);

  font-size: 22.932px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.932px;
}

.working-hours ul {
  list-style: none;
  padding: 10px 0px 20px;
}

.working-hours li {
  color: #000;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.clinic-content a.btn {
  color: #fff;
  text-align: center;

  font-size: 15.23px;
  font-style: normal;
  font-weight: 700;
  line-height: 19.798px;
  border-radius: 100px;
  border: 1px solid var(--primary-color);
  padding: 13px 30px;
  background: var(--primary-color);
  display: inline-block;
  vertical-align: top;
  margin-top: 20px;
}

/* CONTACT BOX */
.contact-box {
  position: relative;
  padding: 60px 35px 35px;
  border-radius: 24px;
  border: 1.5px solid transparent;
  background:
    linear-gradient(#eaf6ff, #eaf6ff) padding-box,
    linear-gradient(135deg, #4268d2, #9fe8ff) border-box;
}

.contact-box {
  border-radius: 45px 0;
  border: 1px solid var(--primary-color);
  background: linear-gradient(105deg, #d3f7ff 19.45%, #dbe7ff 67.44%);
}

.contact-box p {
  color: #3b3b3b;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 10px 0px 0px;
}

.map-icon {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 66px;
  height: 66px;
  background: #dff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LOAD MORE */
.load-more-wrap {
  text-align: left;
  margin-top: 20px;
}

button#loadMore {
  border-radius: 100px;
  border: none;
  padding: 13px 30px;
  background: var(--primary-color);
  color: #fff;
  text-align: center;

  font-size: 15.23px;
  font-style: normal;
  font-weight: 700;
  line-height: 19.798px;
  margin: 43px 0px 0px;
}

.hidden {
  display: none;
}

.working-hours {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 59px;
}

.leftworking {
  flex: 0 57%;
}

.imgwher {
  z-index: 1;
  position: relative;
  border-radius: 117.02px 0;
  background: var(--secondary-color);
}

img.imgwherh {
  border-radius: 117.02px 0;
  background: var(--secondary-color);
}

.reviewtestimoni {
  background: none !important;
  padding-top: 0 !important;
}

section.reviewtestimoni::before {
  display: none;
}

section.reviewtestimoni::after {
  display: none;
}

.contact-dentalcure .innericon.innernumber {
  text-align: left;
}

.servicesection.contact-dentalcure .innerbox-text.innernumbertext h3 b {
  color: var(--primary-color);

  font-size: 21.604px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.648px;
}

.servicesection.contact-dentalcure svg {
  text-align: left;
  height: 81px;
}

.servicesection.contact-dentalcure {
  background: no-repeat;
}

.servicesection.contact-dentalcure::before,
.servicesection.contact-dentalcure::after {
  display: none;
}

.mintext h3 {
  color: var(--primary-color);

  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 42px;
  /* 140% */
  letter-spacing: -0.9px;
  padding: 10px 20px 10px 0px;
}

a.learnmorebtn {
  border-radius: 100px;
  background: var(--primary-color);
  padding: 17px 33px 16px 34px;
  display: inline-block;
  color: #fff;
  text-align: center;

  font-size: var(--font-size-16, 16px);
  font-style: normal;
  font-weight: var(--font-weight-700, 700);
  line-height: var(--line-height-20_8, 20.8px);
  margin-top: 23px;
}

.dentalservice-items.mintext .service-items {
  text-align: left;
}

/* ===============================
   Dental Office Section
================================ */
#dentaloffice {
  padding: 0px 0px 60px;
}

#dentaloffice .dentaloffice-full {
  /*max-width: 1200px;*/
  margin: auto;
  display: flex;
  background: linear-gradient(135deg, #eaf2ff, #f7fbff);
  border-radius: 24px;
  overflow: hidden;
  border-radius: 45px 0;
  border: none;
  background: linear-gradient(105deg, #d3f7ff 19.45%, #dbe7ff 67.44%);
  margin: 0px -10px;
}

/* Left Image */
#dentaloffice .dental-image {
  width: 45%;
}

#dentaloffice .dental-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right Form */
#dentaloffice .dental-form {
  width: 55%;
  padding: 45px;
}

/* Form Layout */
#dentaloffice .form-row {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  position: relative;
  align-items: center;
}

#dentaloffice .form-group {
  flex: 1;
}

#dentaloffice .form-group.full {
  width: 100%;
  margin-bottom: 30px;
}

/* Inputs */
/*#dentaloffice input,*/
/*#dentaloffice select {*/
/*  width: 100%;*/
/*  padding: 13px 16px;*/
/*  border-radius: 30px;*/
/*  border: 1px solid #d7e1f3;*/
/*  outline: none;*/
/*  font-size: 14px;*/
/*  background-color: #fff;*/
/*  box-sizing: border-box;*/
/*  color: #8e8e8e;*/
/*  text-align: left;*/
/*  font-family: SF Pro Display;*/
/*  font-size: 16px;*/
/*  font-style: normal;*/
/*  font-weight: 500;*/
/*  line-height: var(--line-height-20_8, 20.8px);*/
/*  appearance: none;*/
/*}*/
/*.dental-form .walcf7-datepicker {*/
/*  padding-left: 38px !important;*/
/*}*/
/*#dentaloffice .checkbox {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 10px;*/
/*  font-size: 13px;*/
/*}*/

/*#dentaloffice .checkbox input {*/
/*  margin-top: 3px;*/
/*}*/

/*.checkbox span {*/
/*  color: var(--primary-color);*/
/*  font-family: SF Pro Display;*/
/*  font-size: 12px;*/
/*  font-style: normal;*/
/*  font-weight: 500;*/
/*  line-height: 14px;*/
/*}*/

/*#dentaloffice .submit-btn {*/
/*  color: #fff;*/
/*  text-align: center;*/

/*  font-size: 15.23px;*/
/*  font-style: normal;*/
/*  font-weight: 700;*/
/*  line-height: 19.798px;*/
/*  padding: 13px 30px 13px 16px;*/
/*  border-radius: 100px;*/
/*  background: var(--primary-color);*/
/*  margin-top: 30px;*/
/*}*/

/* Button */
/*#dentaloffice .submit-btn {*/
/*  background: #2c4bd8;*/
/*  color: #fff;*/
/*  border: none;*/
/*  padding: 0;*/
/*  border-radius: 30px;*/
/*  font-size: 14px;*/
/*  cursor: pointer;*/
/*  max-width: 218px;*/
/*  width: 100%;*/
/*  height: 46px;*/
/*  margin: 0;*/
/*}*/

.dental-form h5 {
  color: var(--primary-color);

  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
  padding: 0;
}

#dentaloffice .dental-form h2 {
  color: var(--primary-color);

  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 47px;
  padding: 0;
  margin: 0;
}

/*#dentaloffice label {*/
/*  font-size: 14px;*/
/*  color: #444;*/
/*  margin-bottom: 6px;*/
/*  display: block;*/
/*  color: var(--primary-color);*/
/*  text-align: left;*/

/*  font-size: 16px;*/
/*  font-style: normal;*/
/*  font-weight: 500;*/
/*  line-height: 100%;*/
/*  padding: 22px 0px 14px;*/
/*}*/

/*#dentaloffice .checkbox input {*/
/*  width: 16px;*/
/*  height: 16px;*/
/*  padding: 0;*/
/*  border-radius: 0px;*/
/*  color: #000;*/
/*  margin: 0;*/
/*}*/
/*#dentaloffice .checkbox label {*/
/*  padding: 0;*/
/*  margin: 0;*/
/*  display: flex;*/
/*  gap: 10px;*/
/*}*/
/*.dental-form .walcf7-datepicker {*/
/*  padding-left: 38px !important;*/
/*}*/

/*.dental-form span.wpcf7-spinner {*/
/*  position: absolute;*/
/*  right: 0;*/
/*  bottom: -25px;*/
/*}*/
.blog-section {
  padding: 60px 15px;
}

.blog-container {
  display: flex;
  gap: 85px;
}

.blog-left {
  flex: 0 58.431%;
}

.section-title {
  color: #4b6cff;
  margin-bottom: 25px;
  color: var(--primary-color);
  font-size: 40px;
  font-weight: 400;
  line-height: 47px;
  letter-spacing: -1.2px;
  margin: 0px 0px 46px;
  padding: 0;
}

.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  border: 1px solid var(--secondary-color);
  box-shadow: 0 0 11.1px 0 rgba(0, 0, 0, 0.25);
  padding: 14px 12px 15px;
}

.blog-card img {
  width: 100%;
  height: 369px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content .date {
  font-size: 13px;
  color: #ff8a00;
  color: #ea7f4a;

  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 47px;
  letter-spacing: -0.6px;
  display: flex;
  align-items: center;
  gap: 17px;
}

.blog-content h4 {
  margin: 10px 0;
  color: var(--primary-color);
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 47px;
  letter-spacing: -1.05px;
}

.blog-content h4 a {
  color: var(--primary-color);
}

.blog-content h4 a:hover,
.blog-content a.read-more:hover {
  color: #ea7f4a;
}

.blog-content p {
  font-size: 14px;
  color: #666;
}

.blog-content a.read-more {
  color: #4b6cff;
  font-size: 14px;
  text-decoration: none;
  color: var(--primary-color);

  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.48px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.blog-card img {
  border-radius: 20px;
}

.banner .anchore-btn {
  padding: 13px 30px;
  border-radius: 100px;
  background: var(--primary-color);
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;

  font-size: 16px;
  font-style: normal;
  font-weight: var(--font-weight-700, 700);
  line-height: var(--line-height-20_8, 20.8px);
  text-align: center;
  justify-content: center;
  margin-top: 40px;
  border: 0;
  cursor: pointer;
}
.gjs-cell input[type="submit"] {
  cursor: pointer;
}
/* SIDEBAR */
.blog-sidebar {
  flex: 1;
}

.sidebar-box {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 25px;
  border-bottom: 1px solid #d9d8d8;
  border-radius: 0;
  padding: 39px 0px;
  margin-bottom: 0;
}

.sidebar-box h4 {
  border-left: 2px solid var(--primary-color);
  padding-left: 22px !important;
  color: #000;
  text-align: left;

  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  margin-bottom: 30px;
}

.sidebar-box input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 25px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  color: #000;
  text-align: left;

  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 20px;
  border: 1px solid #d9d9d9;
  height: 89px;
  padding: 28px;
}

.category-list li:last-child {
  margin: 0;
}

.category-list {
  list-style: none;
  padding: 0;
}

.category-list li {
  margin-bottom: 25px;
  color: #000;
  text-align: left;

  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  box-sizing: border-box;
  overflow: hidden;
}

.category-list li a {
  color: #000;
  padding: 26px 140px 26px 42px;
  display: block;
  border: 1px solid #d9d9d9;
  border-radius: 20px;
}

.category-list li a:hover {
  background: #ea7f4a;
  border: 1px solid #ea7f4a;
  color: #fff;
}

/* Recent Posts */
.recent-post {
  display: flex;
  gap: 56px;
  margin-bottom: 17px;
  align-items: center;
}

.recent-post img {
  width: 111.134px;
  height: 76.364px;
  aspect-ratio: 111.13/76.36;
  border-radius: 8.405px;
  background: url(<path-to-image>) lightgray 50% / cover no-repeat;
  object-fit: cover;
}

.recent-post p a {
  margin: 0;
  color: #040e46;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.48px;
}

.recent-post p a:hover {
  color: #ea7f4a;
}

.recentdate {
  color: var(--primary-color);
  margin-top: 10px;

  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: left;
}

/* Banner */
.appointment-banner {
  position: relative;
  border-radius: 0px;
  overflow: hidden;
  font-size: 0;
}

.appointment-banner img {
  width: 100%;
  object-fit: cover;
}

.banner-content {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  text-align: center;
  padding-bottom: 20px;
}

.banner-content button {
  margin-top: 21px;
  border: none;
  color: #fff;
  text-align: center;

  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 1000px;
  background: transparent;
  overflow: hidden;
  padding: 0px;
}

.banner-content button a {
  padding: 20px 34px;
  color: #fff;
  display: block;
  background: var(--primary-color);
}

.banner-content button a:hover {
  background: #ea7f4a;
}

.banner-content span {
  color: #fff;
  text-align: center;

  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

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

.page-template-tmpl-doctors .afterbanner {
    margin-bottom: 10px;
}

.banner-content h3 {
  color: #fff;
  text-align: center;

  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  font-variant: all-small-caps;
  margin: 0;
  padding: 20px 0px 0px;
  width: 358px;
}

span.datearticle {
  color: #ea7f4a;

  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 47px;
  letter-spacing: -0.6px;
  display: flex;
  align-items: center;
  gap: 17px;
}

span.datearticle img {
  border-radius: 0px;
  background: transparent;
  margin: 0;
}

.articledetails h3 {
  color: var(--primary-color);

  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 57px;
  letter-spacing: -1.44px;
  padding: 20px 0px 0px;
  margin: 0;
}

.articledetails p {
  color: #3b3b3b;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  margin: 0;
  padding: 20px 0px 0px;
}

.articledetails img {
  border-radius: 20px;
  background: url(<path-to-image>) lightgray 0px -71.031px / 100% 139.461%
    no-repeat;
  margin: 10px 0px 10px;
}

.articledetails h4 {
  color: var(--primary-color);

  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 57px;
  /* 158.333% */
  letter-spacing: -1.08px;
  padding: 12px 0px 0;
  margin: 0;
}

.sidebar-box:nth-child(3n) {
  border-bottom: 0 !important;
}

.articlemore {
  margin-top: 24px;
}

.articleshare h5 {
  color: var(--primary-color);

  font-size: 17.14px;
  font-style: normal;
  font-weight: 600;
  line-height: 33.565px;
  letter-spacing: -0.514px;
  padding: 0;
  margin: 0;
}

.articleshare {
  display: flex;
  gap: 15px;
  margin: 48px 0px 0px 0px;
}

.articleshare ul {
  display: flex;
  gap: 15px;
}

.faqimmageleft img {
  border-radius: 125px 0px;
  background: #47dbd6;
  margin-top: 47px;
  width: 100%;
}
.serviceareas.service-posts {
  margin-top: 60px;
  gap: 0px;
  box-sizing: border-box;
  display: grid;
  row-gap: 60px;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 73px;
}
.service-card {
  flex: 0 0 29%;
  box-sizing: border-box;
}

.dentalservice-items.mintext .service-items {
  flex: 0 29%;
}

.resourceimg::after {
  display: none;
}

.btnswhy a {
  padding: 17px 21px 16px 22px;
  border-radius: 100px;
  background: var(--primary-color);
  display: inline-block;
  color: #fff;
  text-align: center;

  font-size: var(--font-size-16, 16px);
  font-style: normal;
  font-weight: var(--font-weight-700, 700);
  line-height: var(--line-height-20_8, 20.8px);
  margin-top: 23px;
}

.flexibleright li {
  color: var(--primary-color);

  font-size: 23px;
  font-style: normal;
  font-weight: 500;
  line-height: 42px;
  letter-spacing: -0.72px;
  list-style: disc;
}

.dental-service.flexible-payment .flexibleleft h2 {
  color: var(--primary-color);

  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 47px;
  letter-spacing: -1.2px;
  text-align: left;
}

.dental-service.flexible-payment .flexibleleft p {
  color: #3b3b3b;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
}

.flexibleleft {
  border-radius: 60.407px 0;
  border: 1.342px solid var(--primary-color);
  padding: 128px 58px;
  flex: 0 50%;
  box-sizing: border-box;
}

.paymenyts {
  display: flex;
  gap: 70px;
  justify-content: center;
}

.flexibleright {
    flex: 0 50%;
    box-sizing: border-box;
    padding-left: 30px;
    align-items: center;
    display: flex;
}

section.major-insurance {
  padding: 128px 0px;
}

.insuranceleft h2 {
  padding: 0;
  margin: 0;
  color: var(--primary-color);

  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 47px;
  letter-spacing: -1.2px;
}

.insuranceleft p {
  color: #3b3b3b;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  padding: 20px 0px 0px;
  margin: 0;
}

.insurancediv {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.insuranceright {
  flex: 0 50%;
}

.insuranceleft {
  flex: 0 50%;
}

.insuranceright ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

ul.finaceitem li {
  border-radius: 8.876px;
  background: #fff;
  box-shadow: 0 4.29px 4.29px 0 rgba(0, 0, 0, 0.25);
  padding: 0px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 95px;
}

ul.finaceitem {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  padding: 0;
}

section.financeabout p {
  color: #3b3b3b;
  text-align: center;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

/* SECTION */
.insurance-section {
  padding: 80px 0;
  background: #fff;
}

.insurance-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

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

.insurance-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 140px; 
  padding: 0px;
  text-align: center;
  text-decoration: none;
}

.insurance-item img {
  max-height: 80px;
  width: auto;
  margin-bottom: 15px;
  object-fit: contain;
}

/* text */
.insurance-item span {
  font-size: 20px;
  font-weight: 400;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .insurance-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .insurance-content {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .insurance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


section.financeabout h2 {
  color: var(--primary-color);
  text-align: center;

  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 47px;
  letter-spacing: -1.2px;
  padding: 0;
  margin: 0px 0px 52px;
}

.finanaceicons {
  padding-top: 52px;
  text-align: center;
}

section.financeabout {
  padding: 52px 0px;
}

a.viewbuttons {
  border-radius: 100px;
  background: var(--primary-color);
  color: #fff;
  text-align: center;

  font-size: var(--font-size-16, 16px);
  font-style: normal;
  font-weight: var(--font-weight-700, 700);
  line-height: var(--line-height-20_8, 20.8px);
  display: inline-flex;
  padding: 17px 33px 16px 29px;
  align-items: center;
  margin-top: 50px;
}

.contact-ser .serviceareas {
  margin-top: 35px;
  gap: 0;
  width: 100%;
  display: block;
}

section.servicesrrt.contact-ser {
  padding-top: 0;
}
.implementpart-item {
  position: relative;
  width: 405px;
  height: 507px;
  padding: 30px;
  background: transparent; /* fallback */
  border-radius: 60px 0 60px 0; /* top-left and bottom-right */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;

  /* Gradient border using pseudo-element */
}

/*.implementpart-item::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  border-radius: 60px 0 60px 0;*/
/*  padding: 1px;*/
/*  background: linear-gradient(252deg, #4268d2, #eafbff);*/
/*  -webkit-mask:*/
/*    linear-gradient(#fff 0 0) content-box,*/
/*    linear-gradient(#fff 0 0);*/
/*  -webkit-mask-composite: xor;*/
/*  mask-composite: exclude;*/
/*  pointer-events: none;*/
/*}*/
.implementpart-item::before {
    content: "";
    position: absolute;
    pointer-events: none;
    height: 1px;
    width: 50%;
    inset: 0px 0px 0px auto;
    background: linear-gradient(to left, rgb(66, 104, 210), transparent);
}
.implementpart-item::after {
    content: "";
    position: absolute;
    pointer-events: none;
    height: 50%;
    width: 1px;
    inset: 0px 0px 0px auto;
    background: linear-gradient(to left, rgb(66, 104, 210), transparent);
}
.implementpartitem .implementpart-item h3 {
  color: var(--primary-color);

  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 47px;
  letter-spacing: -0.9px;
  padding: 28px 0px 0px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 92px;
}
.implementpartitem .implementpart-item p {
  color: #3b3b3b;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  padding: 19px 0px 0px;
}
.implementpart {
  display: flex;
  gap: 35px;
  justify-content: center;
  align-items: center;
  overflow: auto;
}

/*.financeapoimentspart .appointment-form {*/
/*  background: #fff;*/
/*  padding: 40px;*/
/*  border-radius: 12px;*/
/*  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);*/
/*  max-width: 900px;*/
/*  width: 100%;*/
/*}*/

/*.financeapoimentspart .appointment-form h2 {*/
/*  text-align: center;*/
/*  color: #2c6bed;*/
/*  margin-bottom: 10px;*/
/*  font-weight: 600;*/
/*}*/

/*.financeapoimentspart .appointment-form p {*/
/*  text-align: center;*/
/*  color: #555;*/
/*  font-size: 14px;*/
/*  margin-bottom: 30px;*/
/*}*/

/*.financeapoimentspart .form-row {*/
/*  justify-content: space-between;*/
/*  display: flex;*/
/*  gap: 20px;*/
/*  margin-top: 20px;*/
/*  flex-wrap: wrap;*/
/*}*/

/*.financeapoimentspart .form-group {*/
/*  flex: 1;*/
/*  min-width: 200px;*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*}*/

/*.financeapoimentspart .form-group label {*/
/*  margin-bottom: 6px;*/
/*  font-weight: 500;*/
/*  color: #333;*/
/*  font-size: 14px;*/
/*}*/

/*.financeapoimentspart .form-group input,*/
/*.financeapoimentspart .form-group select,*/
/*.financeapoimentspart .form-group textarea {*/
/*  padding: 10px 12px;*/
/*  border: 1px solid #ccc;*/
/*  border-radius: 8px;*/
/*  font-size: 14px;*/
/*  outline: none;*/
/*  transition: border-color 0.2s;*/
/*}*/

/*.financeapoimentspart .form-group input:focus,*/
/*.financeapoimentspart .form-group select:focus,*/
/*.financeapoimentspart .form-group textarea:focus {*/
/*  border-color: #2c6bed;*/
/*}*/

/*.financeapoimentspart textarea {*/
/*  resize: vertical;*/
/*  min-height: 100px;*/
/*}*/

/*.financeapoimentspart .checkbox-group {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  font-size: 13px;*/
/*  margin-bottom: 20px;*/
/*  gap: 10px;*/
/*  color: #555;*/
/*}*/

/*.financeapoimentspart .checkbox-group input {*/
/*  width: 16px;*/
/*  height: 16px;*/
/*}*/

/*.financeapoimentspart .submit-btn {*/
/*  background-color: #2c6bed;*/
/*  color: #fff;*/
/*  border: none;*/
/*  padding: 14px 30px;*/
/*  border-radius: 8px;*/
/*  font-size: 16px;*/
/*  font-weight: 700;*/
/*  cursor: pointer;*/
/*  width: auto;*/
/*  transition: background-color 0.3s;*/
/*  border-radius: 40px;*/
/*}*/
/*.wpcf7-checkbox .wpcf7-list-item {*/
/*  display: flex;*/
/*  align-items: center;*/
/*}*/
/*.form-row.bottom-row {*/
/*  justify-content: space-between;*/
/*  margin: 30px 0px 0px;*/
/*  position: relative;*/
/*}*/

/*.form-row.bottom-row .checkbox {*/
/*  padding: 0;*/
/*}*/

/*.form-row.bottom-row span.wpcf7-spinner {*/
/*  position: absolute;*/
/*  right: 0;*/
/*  bottom: -24px;*/
/*}*/
/*.financeapoimentspart .submit-btn:hover {*/
/*  background-color: #1e4bb8;*/
/*}*/

.financeapoimentspart {
  padding: 100px 0px;
}
.appointment-formfinance h2 {
  color: var(--primary-color);
  text-align: center;

  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 47px;
  letter-spacing: -1.2px;
  padding: 0;
  margin: 0;
}
.appointment-formfinance p {
  color: #3b3b3b;
  text-align: center;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  margin: 0;
  padding: 19px 0px 0px;
}
/*.financeapoimentspart label {*/
/*  color: #3b3b3b;*/
/*  text-align: left;*/
/*  font-family: SF Pro Display;*/
/*  font-size: 16px;*/
/*  font-style: normal;*/
/*  font-weight: 700;*/
/*  line-height: 100%;*/
/*  margin: 0;*/
/*  padding: 0;*/
/*  display: block;*/
/*}*/
/*.financeapoimentspart .form-group input,*/
/*.financeapoimentspart .form-group select,*/
/*.financeapoimentspart .form-group textarea {*/
/*  padding: 10px 12px;*/
/*  border: 1px solid #ccc;*/
/*  border-radius: 8px;*/
/*  font-size: 14px;*/
/*  outline: none;*/
/*  transition: border-color 0.2s;*/
/*  border-radius: 100px;*/
/*  border: 0.951px solid #b9b9b9;*/
/*  background: #fbfbfb;*/
/*  color: #8e8e8e;*/
/*  text-align: left;*/
/*  font-family: SF Pro Display;*/
/*  font-size: 16px;*/
/*  font-style: normal;*/
/*  font-weight: 500;*/
/*  line-height: var(--line-height-20_8, 20.8px);*/
/*  width: 100%;*/
/*  box-sizing: border-box;*/
/*}*/
/*textarea#notes {*/
/*  border-radius: 20px;*/
/*  border: 0.951px solid #b9b9b9;*/
/*  background: #fbfbfb;*/
/*  height: 228px;*/
/*}*/
/*.form-row.buttonbottomform .submit-btn {*/
/*  border-radius: 100px;*/
/*  border: 1px solid rgba(66, 104, 210, 0);*/
/*  padding: 13px 30px;*/
/*  width: auto;*/
/*  max-width: max-content;*/
/*  color: #fff;*/
/*  text-align: center;*/

/*  font-size: var(--font-size-16, 16px);*/
/*  font-style: normal;*/
/*  font-weight: var(--font-weight-700, 700);*/
/*  line-height: var(--line-height-20_8, 20.8px);*/
/*}*/
.form-row.buttonbottomform {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: 34px 0px 0px;
  padding: 0;
}
section.afterbannerfinance {
  padding-top: 88px;
  text-align: center;
}
.financechoose h2 {
  color: var(--primary-color);
  text-align: center;

  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 47px;
  letter-spacing: -1.2px;
  padding: 0;
  margin: 0;
}
.financechoose p {
  color: #3b3b3b;
  text-align: center;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  margin: 0;
  padding: 29px 0px 0px;
}
.financesimple-item.implementpart-item {
  background: linear-gradient(105deg, #d3f7ff 19.45%, #dbe7ff 67.44%);
  margin-top: 55px;
  text-align: center;
  width: 386px;
  height: 418px;
}
.financesimple.implementpart {
  align-items: flex-start;
}
.financesimple-item.implementpart-item svg {
  margin: 0 auto;
}
.financesimple-item.implementpart-item h3 {
  color: var(--primary-color);
  text-align: center;

  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 41px;
  padding: 0;
  margin: 26px 0px;
}
.financesimple-item.implementpart-item p {
  color: #3b3b3b;
  text-align: center;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  padding: 0;
  margin: 0;
}
.finanaceicons h3 {
  color: var(--primary-color);
  text-align: center;

  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 47px;
  letter-spacing: -0.9px;
}
.financeabout .finanaceicons {
  padding-top: 0 !important;
}
ul.finaceitem li img {
  object-fit: contain;
}
ul.finaceitem li {
  flex: 0 11%;
  align-items: center;
  justify-content: center;
}

img.in-icon {
  max-height: 77px;
}
.major-insurance .insuranceright {
  flex: 0 66%;
}

.major-insurance .insuranceleft {
  flex: 0 34%;
}
.major-insurance .insuranceright ul li span {
  display: block;
  color: #000;
  font-family: "SF Pro Display";
  font-size: 20.25px;
  font-style: normal;
  font-weight: 400;
  line-height: 64.864px;
}

.major-insurance .insuranceright ul li {
  width: 33%;
  text-align: center;
}

.major-insurance .insuranceright ul {
  gap: 0;
  row-gap: 20px;
}
.major-insurance .i_logo {
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cosmeticdentists-ul .cosmeticdentistsimg img {
  border-radius: 0 101.695px;
  background: #aef4f2;
  max-height: 301px;
  margin: auto;
  width: 100%;
  object-fit: cover;
  object-position: top;
}
.financeapoimentspart.appointment-wrapper {
  padding: 0;
}
.rightintro .introicon path {
  fill: #47dbd6;
  width: 30px;
}

.rightintro .introicon a {
  border: 1px solid #47dbd6;
  border-radius: 100%;
  height: 46px;
  width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rightintro .introicon a svg {
  width: 40px;
  height: 40px;
}
.rightintro .introicon a:hover {
  box-shadow: 0px 4px 4px #47dbd6;
}
section.docintro .infordoc li {
  display: flex;
  gap: 12px;
  align-items: center;
}

.afterbefore-slider.beforeafter {
  padding: 40px 0px;
}

.afterbefore-slider .anchore-btn {
  margin-top: 70px !important;
  display: block;
  width: max-content;
  margin: 0 auto;
}

section.frontfrom.beforeafter {
  padding-top: 30px;
}
/* p:empty {
  display: none;
} */
.hh-part {
  padding: 30px;
}
.financeapoimentspart .form-group label {
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
  font-size: 14px;
  color: #3b3b3b;
  text-align: left;
  font-family: SF Pro Display;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  padding: 15px 0px;
}
.single-team div#slick-slide00 {
  display: none;
}
.innerbox::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(134deg, #4268d2, #eafbff);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  border-radius: 184px 0 253px;
  top: -1px;
  right: -1px;
  z-index: -1;
}
.innerbox {
  margin: 1px;
}
/* .after-icon .banner-btn a {
  height: 67px;
  box-sizing: border-box;
  width: 213px;
} */
/* .mainfill-part .banner-btn a.anchore-btn {
  height: 67px;
  box-sizing: border-box;
} */
.innerbox:hover {
  box-shadow: 0px 0px 3px rgb(71 219 214);
}
/* .whyinfo ul li:nth-child(2n) {
  padding-right: 35px;
} */
/*section.whychoose .container {*/
/*  max-width: 1287px;*/
/*}*/
.after-icon p {
  padding-top: 56px !important;
  margin: 0px;
}
.chooseelements .chooseitems {
  flex: 0 0 30%;
}
.page-template-tmpl-about .itemscontents {
  margin-top: 43px;
}
.page-template-tmpl-about .itemscontents p {
  color: var(--primary-color);

  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 43.345px; /* 173.378% */
  letter-spacing: -0.75px;
}
section.healthsmile .knowbtn {
  margin-top: 0;
}
.mainfill-part {
  margin-top: 100px;
}
.clientsliders {
  margin: 3px;
  border: 0;
  padding-top: 44px;
  padding-bottom: 44px;
}
.icon-field input,
.icon-field select {
  color: #8e8e8e;

  font-size: 13.313px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--line-height-20_8, 20.8px); /* 156.243% */
}
.booking-form .checkbox span {
  color: #636363;

  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: initial;
  letter-spacing: -0.36px;
  /* margin-left: 25px; */
}
.footerlogo {
  width: 224px;
}
/*#multi-location .icon-field input,*/
/*#multi-location .icon-field select {*/
/*  color: #8e8e8e;*/
/*  text-align: left;*/

/*  font-size: 14px;*/
/*  font-style: normal;*/
/*  font-weight: 500;*/
/*  line-height: var(--line-height-20_8, 20.8px);*/
/*}*/
/*#multi-location .fieldicon-fieldmain div {*/
/*  justify-content: flex-start;*/
/*}*/

/* a.viewmore-btn,
section.healthsmile .knowbtn,
.mainfill-part .banner-btn a.anchore-btn,
.after-icon .banner-btn a,
.bookbutton a,
a.anchore-btn,
.buttonsslider,
a.viewmore-btn,
.serviceareas .service-card a.btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

a.viewmore-btn::before,
section.healthsmile .knowbtn:before,
.mainfill-part .banner-btn a.anchore-btn:before,
.after-icon .banner-btn a:before,
.bookbutton a::before,
a.anchore-btn::before,
.buttonsslider::before,
a.viewmore-btn::before,
.serviceareas .service-card a.btn:before {
  background: #000000 !important;
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #000000;
  transition: left 0.4s ease;
  z-index: -1;
  content: "";
}

a.viewmore-btn:hover::before,
section.healthsmile .knowbtn:hover::before,
.mainfill-part .banner-btn a.anchore-btn:hover::before,
.serviceareas .service-card a.btn:hover::before,
.after-icon .banner-btn a:hover::before,
.bookbutton a:hover::before,
a.anchore-btn:hover::before,
.buttonsslider:hover::before,
a.viewmore-btn:hover::before {
  left: 0;
} */
.listtake::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  left: 37px;
  background-color: #ededed;
  top: 100%;
  transform: translateY(-19px);
}
.listtake:last-child::before {
  display: none;
}
.serviceareas.service-posts .hh-part {
  padding-top: 0;
}
.postid-1361 .innerbox-text h3 {
  font-size: 22px;
}
.benefit p {
  font-size: 14px !important;
}
.innerbox-text.innernumbertext p:empty {
  display: none;
}
.innerbox-text.innernumbertext p,
.innerbox-text.innernumbertext p a {
  color: var(--primary-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  padding-right: 20px;
}

.page-template-tmpl-contact .innerbox-text.innernumbertext p,
.page-template-tmpl-contact .innerbox-text.innernumbertext p a {
  line-height: 0;
}
.left .benefit:nth-child(2n) {
  margin-left: 113px;
}
.left .benefit:nth-child(4n) {
  margin-left: 113px;
}

.right .benefit:nth-child(2n) {
  margin-right: 113px;
}
.right .benefit:nth-child(4n) {
  margin-right: 113px;
}
.single-locationpost .whymain {
  padding-bottom: 80px;
}
/* Patient Information - Dental Insurance Template */
.page-template-tmpl-patient-information-dental-insurance .whymain {
  padding-bottom: 57px;
}

.page-template-tmpl-patient-information-dental-insurance
  section.major-insurance {
  padding: 100px 0;
}

/* Financing Insurance Template */
.page-template-tmpl-financing-insurance
  .implementpartitem
  .implementpart-item
  h3 {
  padding-top: 0;
}

/* Doctors Template */
.page-template-tmpl-doctors .whymain {
  padding-bottom: 92px;
}

.flexibleleft {
  position: relative;
  overflow: hidden;
  border: 0;
}
.flexibleleft::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background-color: #eafbff;
  border-radius: inherit;
}
.flexibleleft::before {
  content: "";
  background: linear-gradient(250deg, #4268d2, #b9f1fe00);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.flexibleleft h2,
.flexibleleft p {
  position: relative;
  z-index: 1;
}
.faq-answer p {
  padding: 0;
  margin: 0;
}
.faq-answer {
  padding-top: 0 !important;
}
.sidebar-box input::placeholder {
  color: #000;
  opacity: 1; /* important for Firefox */
}

/* Safari / older Chrome */
.sidebar-box input::-webkit-input-placeholder {
  color: #000;
}

/* Firefox */
.sidebar-box input::-moz-placeholder {
  color: #000;
}

/* IE / Edge (legacy) */
.sidebar-box input:-ms-input-placeholder {
  color: #000;
}
.blog-sidebar {
  flex: 0 29.2%;
}
.single-post .left-banner {
  width: 80%;
}
.page-template-tmpl-contact .servicesection.contact-dentalcure
  svg {
  text-align: left;
  height: 113px;
}
section.appointment-formfinance .container-full {
  max-width: 1031px;
}
.checkbox span {
  color: #3b3b3b;
  font-family: SF Pro Display;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
}
.bottom-map {
  height: 273px;
}
.page-template-tmpl-financing-insurance .inimage {
  margin-bottom: 26px;
}
.page-template-tmpl-financing-insurance .dental-service.flexible-payment.implementpartitem {
  padding-bottom: 114px;
  padding-top: 132px;
}
.single-team .itemscontents
  h3 {
  margin-top: 56px;
}
.single-team .frontfrom {
  padding-top: 50px;
}

.single-team .mainappoiments-right, .page-template-tmpl-before-after .mainappoiments-right{
    display: none;
}

.page-template-tmpl-before-after .frontfrom {
  padding-top: 50px;
}

.page-template-tmpl-before-after .footer-appoiment{
    background: none;
}

.page-template-tmpl-before-after .footer-appoiment::before, .page-template-tmpl-before-after .footer-appoiment::after{
    display: none;
}

.single-team .mainappoimentsLocations{
    margin-top: 20px;
}

.single-team .appointment-wrapper h2 {
  color: var(--primary-color);
  text-align: center;

  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 47px;
  letter-spacing: -1.2px;
  padding: 0;
  margin: 0;
}
#multi-location .mainappoimentsdiv ul li a p {
  font-size: 17.194px;
}
.page-template-tmpl-before-after .afterbefore-slider h2 {
  font-size: 40px;
  font-weight: 400;
  color: var(--primary-color);
  margin: 0;
  letter-spacing: -1.2px;
  text-align:left;
}
.page-template-tmpl-before-after .afterbefore-slider p {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  line-height: 25px;
  text-align:left;
}
.page-template-tmpl-before-after .afterbefore-slider
  p
  a {
  text-decoration-line: underline;
  color: #3b3b3b;
}
.afterb {
  background: none !important;
  padding-top: 0 !important;
}
.afterb::after,
.afterb::before {
  display: none !important;
}

/* Base select reset for Safari */
.wpcf7-select {
  -webkit-appearance: none;
  appearance: none;

  cursor: pointer;
}

/* Safari arrow fix */
.wpcf7-select {
  background-image: url(../img/select_icon.png);
  background-repeat: no-repeat;
  background-size: 12px 8px; /* ðŸ‘ˆ width height */
  background-position: right 15px center;
}

/* iOS Safari specific fix */
@supports (-webkit-touch-callout: none) {
  .wpcf7-select {
    padding-right: 44px;
    background-position: right 16px center;
  }
}
body.wp-singular.page-template.page-template-templates.page-template-tmpl-financing-insurance.page-template-templatestmpl-financing-insurance-php.page.page-id-1037.logged-in.admin-bar.wp-theme-my-custom-theme.customize-support
  .checkbox
  span {
  line-height: inherit;
}

.innerbox span.innerboxex-icon {
  display: inline-block;
  transition: transform 0.4s ease;
  margin-bottom: -5px;
}

.innerbox:hover span.innerboxex-icon {
  transform: rotate(45deg);
}
/*a:not(:has(*)) {
  display: none !important;
}*/

.clientsliders {
  position: relative;
}

.clientsliders::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, #4268d2, transparent);
  pointer-events: none;
  height: 1px;
  right: 0;
  width: 50%;
  left: auto;
}
.clientsliders::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, #4268d2, transparent);
  pointer-events: none;
  height: 50%;
  right: 0;
  width: 1px;
  left: auto;
}
section#multi-location .mainappoiments-left .svglocation svg {
  width: 66px;
  height: 66px;
}
#multi-location .mainappoimentsdiv ul {
  padding: 65px 40px 1px;
}

.blogdivbottom-conts h3 a {
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 65px;
}
.page-template-tmpl-before-after .faqsections {
  border-radius: 0 223px 0 0;
  background: linear-gradient(105deg, #eafbff 19.45%, #eff4ff 67.44%);
  overflow: hidden;
  position: relative;
  padding: 89px 0px;
  box-sizing: border-box;
}

.page-template-tmpl-before-after .faqsections::before {
  content: "";
  border-radius: 449px;
  border: 55px solid rgba(66, 104, 210, 0.08);
  position: absolute;
  left: -225px;
  top: -187px;
  width: 449px;
  height: 449px;
}

.page-template-tmpl-before-after .faqsections::after {
  content: "";
  border-radius: 449px;
  border: 55px solid rgba(66, 104, 210, 0.08);
  position: absolute;
  right: 95px;
  bottom: -225px;
  width: 449px;
  height: 449px;
}

/*Booking Form CSS*/
.appointment-formfinance {
  margin-top: 50px;
}

.booking-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 47px;
}

.booking-form .form-group {
  display: flex;
  flex-direction: column;
}

.booking-form .form-group.full {
  margin-top: 30px;
}

.booking-form label {
  font-weight: 600;
  margin-bottom: 19px;
  color: #3b3b3b;
  font-size: 16px;
  font-weight: 700;
}

.booking-form label span {
  color: #000;
}

.booking-form input,
.booking-form select {
  padding: 12px 20px;
  border-radius: 30px;
  border: 1px solid #b9b9b9;
  font-size: 16px;
  font-weight: 500;
  outline: none;
  background-color:#FBFBFB;
}

.booking-form .appointment-date input{
    padding: 12px 20px 12px 45px;
}

.form-intro{
    color: #3B3B3B;
    text-align: center;
}

.booking-form input[type="date"] {
  padding: 12px 18px 12px 48px;
}

.booking-form textarea {
  padding: 13px 20px;
  min-height: 258px;
  border-radius: 25px;
  resize: none;
  border-color: #b9b9b9;
  background-color:#FBFBFB;
}

.booking-form input::placeholder,
.booking-form select::placeholder,
.booking-form textarea::placeholder {
  color: #8e8e8e;
}

.booking-form select.selected,
.booking-form select:valid,
.booking-form select:required{
  color: #8e8e8e;
}

.booking-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
}

.booking-form .form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  gap: 20px;
}

.booking-form .checkbox {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #3b3b3b;
  font-weight: 500;
  cursor: pointer;
}

.booking-form .checkbox input {
  display: none;
}

.booking-form .form-group {
  position: relative;
}

.booking-form .qbf-icon {
  position: absolute;
  left: 8px;
  top: 77%;
  transform: translateY(-50%);
  pointer-events: none;
}

.booking-form .checkbox span {
  width: 15px;
  height: 15px;
  border: 1px solid #b9b9b9;
  border-radius: 4px;
  margin-right: 10px;
  position: relative;
}

.booking-form .checkbox input:checked + span::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid #b9b9b9;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.booking-form .anchore-btn {
  border: none;
  font-size: 16px;
  padding: 13px 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .booking-form .form-grid {
    grid-template-columns: 1fr;
  }

  .booking-form .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*Quick Booking Form Multiple Location*/

.quick-booking-form {
  max-width: 75%;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
}

.quick-booking-form .qbf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 19px 25px;
}

.quick-booking-form .qbf-field {
  position: relative;
}

.quick-booking-form .qbf-field input,
.quick-booking-form .qbf-field select {
  width: 100%;
  padding: 13px 18px 13px 48px;
  border: 1px solid #b9b9b9;
  font-size: 13px;
  color: #8e8e8e;
  outline: none;
  background: #fff;
  border-radius: 0;
}

.quick-booking-form .qbf-field select {
  padding-left: 48px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}
.mainappoiments-right .section-heading {
  line-height: 64px;
}

.quick-booking-form .qbf-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.quick-booking-form input::placeholder {
  color: #8d8d8d;
}

.quick-booking-form .qbf-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  gap: 20px;
}

.quick-booking-form .qbf-checkbox {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: #636363;
  cursor: pointer;
}

.quick-booking-form .qbf-checkbox input {
  display: none;
}

.quick-booking-form .qbf-checkbox span {
  width: 15px;
  height: 15px;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  margin-right: 10px;
  position: relative;
  background-color: #fff;
}

.quick-booking-form .qbf-checkbox input:checked + span::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid #4b63d3;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.quick-booking-form .anchore-btn {
  border: none;
  padding: 13px 30px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .quick-booking-form .qbf-grid {
    grid-template-columns: 1fr;
  }

  .quick-booking-form .qbf-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*Single Location Form*/

.simple-booking-form {
  max-width: 520px;
  font-family: Arial, Helvetica, sans-serif;
}

.simple-booking-form .sbf-field {
  position: relative;
  margin-bottom: 18px;
}

.simple-booking-form input,
.simple-booking-form select {
  width: 100%;
  padding: 13px 13px 13px 45px;
  border: 1px solid #b9b9b9;
  border-radius: 0;
  font-size: 13px;
  color: #8e8e8e;
  outline: none;
  background: #fff;
}

.simple-booking-form select {
  padding-left: 45px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%238a8a8a' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
}

.simple-booking-form .sbf-icon {
  position: absolute;
  left: 7px;
  top: 54%;
  transform: translateY(-50%);
  pointer-events: none;
}

.simple-booking-form input::placeholder {
  color: #8a8a8a;
}

#appointment_date::-webkit-calendar-picker-indicator {
  opacity: 0;
}



.simple-booking-form .sbf-checkbox {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #636363;
  margin: 26px 0 30px;
  cursor: pointer;
}

.simple-booking-form .sbf-checkbox input {
  display: none;
}

.simple-booking-form .sbf-checkbox span {
  width: 14px;
  height: 14px;
  border: 1px solid #bdbdbd;
  border-radius: 4px;
  margin-right: 30px;
  background: #fff;
  position: relative;
}

.simple-booking-form .sbf-checkbox input:checked + span::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid #4b63d3;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.simple-booking-form .anchore-btn {
  border: none;
  padding: 13px 30px;
  cursor: pointer;
}

.email-subscribe-bar {
  width: 480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 0 0 1px #e5e5e5 inset;
}

.email-subscribe-bar input {
  flex: 1;
  padding: 16px 35px;
  border: none;
  font-size: 11px;
  color: #a9a9a9;
  outline: none;
}

.email-subscribe-bar input::placeholder {
  color: #b5b5b5;
}

.email-subscribe-bar .anchore-btn::before{
    background: #000;
}

.email-subscribe-bar button {
  padding: 16px 35px;
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 0 999px 999px 0;
}
.email-subscribe-bar button:hover {
  background: #3f56c6;
}


@media (max-width: 768px) {
  .email-subscribe-bar {
    flex-direction: column;
    border-radius: 28px;
  }

  .email-subscribe-bar input {
    width: 100%;
    height: 60px;
    text-align: center;
  }

  .email-subscribe-bar button {
    width: 100%;
    height: 60px;
    border-radius: 0 0 28px 28px;
  }
}

.page-template-tmpl-before-after .afterbefore-slider p {
  width: 100%;
}
.single-services .faqsections {
  padding: 89px 0px 90px;
}
#treatment-packages {
  background: transparent;
}

.blogdiv img {
  width: 100%;
}

/*Contact Page CSS*/

.cbf-form {
    margin-top: 25px;
}

.cbf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cbf-field {
  display: flex;
  flex-direction: column;
}

.cbf-full {
  grid-column: span 2;
}

.cbf-label {
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 500;
  color: #4268D2;
}

.cbf-label span {
  color: #4268D2;
}

.cbf-input-wrap {
  position: relative;
}

.cbf-icon {
  position: absolute;
  left: 12px;
  top: 53%;
  transform: translateY(-50%);
  pointer-events: none;
}

.cbf-input {
  padding: 13px 18px;
  border-radius: 30px;
  border: 1px solid #B9B9B9;
  font-size: 16px;
  font-weight: 500;
  background: #fff;
  outline: none;
  width:100%;
  box-sizing: border-box;
}

/* Placeholder state */
.cbf-field select {
  color: #9a9a9a;
}

/* After valid selection */
.cbf-field select:valid {
  color: #000; /* or #8e8e8e */
}


.cbf-field select.cbf-input {
  padding: 13px 18px;
  width: 100%;
  border-radius: 30px;
  border: 1px solid #B9B9B9;
  font-size: 16px;
  color: #8E8E8E;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
}

/* when selected */
.cbf-field select.cbf-input:valid {
  color: #000;
}


.cbf-date {
  padding-left: 54px;
}

.cbf-input::placeholder {
  color: #9a9a9a;
}

/* Hide native calendar icon */
.cbf-date::-webkit-calendar-picker-indicator {
  opacity: 0;
  pointer-events: none;
}

.cbf-footer {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cbf-checkbox {
  font-size: 14px;
  color: #3f5bd9;
}

.cbf-footer .anchore-btn {
    border: none;
    padding: 13px 16px;
    cursor: pointer;
}


/* Responsive */
@media (max-width: 768px) {
  .cbf-grid {
    grid-template-columns: 1fr;
  }

  .cbf-full {
    grid-column: span 1;
  }

  .cbf-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* mobile menu css */

/* Hamburger */
.mbl-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 10001;
}

.mbl-hamburger span {
  width: 26px;
  height: 3px;
  background: #000;
  display: block;
}

/* Show hamburger only on mobile */
@media (max-width: 768px) {
  .mbl-hamburger {
    display: flex;
    order: 3;
  }

  .topnavigation {
    top: 20px;
    z-index: 10;
  }
}

/* Mobile menu panel */
.mbl-menu-panel {
  position: fixed;
  top: 0;
  left: -100%; /* hidden by default */
  width: 280px;
  height: 100%;
  background: var(--primary-color);
  transition: left 0.7s ease;
  z-index: 10000;
  padding: 20px;
  overflow-y: auto;
  color: #fff;
  
}

/* When open */
.mbl-menu-panel.mbl-open {
  left: 0; /* slide in from right */
  transition: left 0.7s ease;
}

/* Close button */
.mbl-close {
  font-size: 30px;
  cursor: pointer;
  display: block;
  text-align: right;
  color: #fff;
}

/* Menu styles */
.mbl-nav {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.mbl-nav li {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Main links */
.mbl-nav li > a {
  display: block;
  padding: 12px 35px 12px 15px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position:relative;
}

/* Hover effect */
.mbl-nav li > a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ---------- Submenu ---------- */

/* hide submenu by default */
.mbl-nav .sub-menu {
  display: none;
  list-style: none;
  padding-left: 15px;
  background: rgba(0, 0, 0, 0.1);
}

/* show when active */
.mbl-nav li.mbl-sub-open > .sub-menu {
  display: block;
}

/* submenu links */
.mbl-nav .sub-menu li a {
  padding: 10px 0;
  font-size: 14px;
  color: #e0e7ff;
}

/* arrow for items with children */
.mbl-nav li.menu-item-has-children > a::after {
  content: "▸";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
  font-size: 18px;
}
.mbl-cta:hover {
    background: #aef4f2;
    color: #4268d2;
}

/* rotate arrow when open */
.mbl-nav li.mbl-sub-open > a::after {
  transform: translateY(-50%) rotate(90deg);
}

/* CTA button inside menu */
.mbl-cta {
  display: block;
  text-align: center;
  margin-top: 20px;
  padding: 12px;
  background: #fff;
  color: #4268d2;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
}

/* mobile menu css */

input[type="date"] {
  width: 100%;
  min-width: 100%;
  padding: 14px 16px;
  box-sizing: border-box;

  -webkit-appearance: none;
  appearance: none;

  background-color: #fff;
}

input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.package-section .slick-dots{
    bottom: -50px;
}

.package-section .slick-dots li {
    width: 9px;
    height: 9px;
    margin: 0 7px;
    background-color: #d9d9d9;
    border-radius: 100%;
}

.package-section li.slick-active {
    background-color: var(--secondary-color);
}

.package-section .slick-dots li.slick-active button:before{
    opacity: 0;
}

.package-section .slick-dots li button:before{
    opacity: 0;
}

.search-page {
  padding: 150px 0;
}

.search-title {
  color: var(--primary-color);
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -1.8px;
  padding: 0;
  margin: 0 0 30px;
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.search-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.search-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.search-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.search-card-title {
  font-size: 22px;
  margin-bottom: 10px;
}

.search-card-title a {
  color: inherit;
  text-decoration: none;
}

.search-card-excerpt {
  color: #666;
  flex-grow: 1;
}

.search-read-more {
  margin-top: 15px;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
}

.search-read-more:hover {
  text-decoration: underline;
}

.no-results {
  color: #999;
}

.thank-you {
    height: 50vh;
    display: flex;
    align-items: center;
}

/* Hide checkbox */
#read-more-toggle {
  display: none;
}

/* Hidden content */
.article-hidden {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

/* Show on click */
#read-more-toggle:checked ~ .article-hidden {
  max-height: 9999px;
}

/* Button text toggle */
.read-less-text {
  display: none;
}

#read-more-toggle:checked + .article-hidden + .articlemore .read-more-text {
  display: none;
}

#read-more-toggle:checked + .article-hidden + .articlemore .read-less-text {
  display: inline;
}

.article-hidden .anchore-btn{
    margin-top:40px;
}
