/* 
Theme Name: Marion Dental
Theme URI: https://www.keystride.com/
Description: A Dental Care Website 
Version:1.0
Author: Keystride
Author URI: https://www.keystride.com/
*/

/* 1. Load Poppins from Google Fonts */
/* @import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap"); */

:root {
  --primary-color: #285E97;
  --secondary-color: #4C7097;
  --primary-background: #98B8D9;
  --grey-background: #98B8D9;
  --navbar-background: #E1ECFA;
  --light-blue-background: #EDF3FA;
}

/* 2. Base Font Settings */
html {
  font-size: 16px;
  /* Default base */
  font-weight: 400;
  line-height: 1.6;
}

body {
  font-family: "Poppins", sans-serif;
  color: #000;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* line-height: normal; */
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
}

/* 3. Headings and Paragraph Styles */
h1 {
  /* font-size: 46px;
  font-weight: 400;
  line-height: 60px;
  font-style: normal;
  letter-spacing: normal; */
  font-size: 2.986rem;
}

h2 {
  /* font-size: 40px;
  font-weight: 500;
  line-height: normal;
  font-style: normal;
  letter-spacing: 0.2px; */
  font-size: 2.25rem;
}

h3 {
  /* font-size: 36px;
  font-weight: 400;
  line-height: normal;
  font-style: normal;
  letter-spacing: 0.2px; */
  font-size: 2.074rem;
}

h4 {
  /* font-size: 30px;
  font-weight: 500;
  line-height: 35px;
  font-style: normal;
  letter-spacing: 0.2px; */
  font-size: 1.728rem;
}

h5 {
  /* font-size: 28px;
  font-weight: 600;
  line-height: normal;
  font-style: normal;
  letter-spacing: 0.2px; */
  font-size: 1.25rem;
}

h6 {
  /* font-size: 24px;
  font-weight: 400;
  line-height: normal;
  font-style: normal;
  letter-spacing: 0.2px; */
  font-size: 1.2rem;
}

p {
  /* font-size: 18px;
  font-weight: 300;
  line-height: normal;
  font-style: normal;
  color: #000000; */
  font-size: 1rem;
  font-weight: 300;
}

a {
  font-weight: 300;
  text-decoration: none;
}

ul {}

li {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
}

li>b {
  font-weight: 600;
}

.btn {
  font-size: 1rem;
  font-weight: 400;
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  transition: background 0.3s;
}

.btn:focus,
.btn:focus-visible,
.btn:active {
  box-shadow: none;
  border: none;
  outline: none;
}

.btn.btn--icon>i {
  margin-left: 15px;
}

.btn-primary {
  background: var(--primary-color);
  color: #fff;
}

.btn-primary:hover,
.btn-secondary:hover {
  background: var(--primary-color);
}

.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:active,
.btn-secondary:focus,
.btn-secondary:focus-visible,
.btn-secondary:focus:active {
  background: var(--primary-color);
}

.btn-secondary {
  background: #fff;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  min-width: 170px;
}

form input,
form select,
form textarea {
  width: 100%;
  border: 1px solid var(--grey-background);
  padding: 10px 10px;
  margin-bottom: 10px;
  background: transparent;
  font-size: 16px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #fff;
  border-radius:20px;
}

form input:focus-visible,
form select:focus-visible,
form textarea:focus-visible {
  outline: none;
}

form input::placeholder,
form textarea::placeholder {
  font-size: 16px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

.form .wpcf7 form.sent .wpcf7-response-output {
  color: #fff;
}

form p.lable {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
  color: #ebebeb;
}

form .submit-btn p {
  opacity: 1;
  margin-bottom: 0;
}

form option {
  font-size: 16px;
  background-color: var(--primary-color);
}

form input[type="submit"] {
  width: auto;
  font-size: 20px;
  background: #fff;
  color: var(--primary-color);
  margin-bottom: 0;
  padding: 10px 40px;
  box-shadow: none;
  outline: none;
  border: none;
}

form input[type="submit"]:hover {
  background: var(--primary-color);
  color: #fff;
}

h3.special-fonts {
  font-size: 3.5rem;
}

/*end*/

.bg-lightgray {
  background-color: #F5F5F5;
}

.bg-lightestgray {
  background-color: var(--primary-background);
}

.bg-darkgray {
  background-color: var(--secondary-color);
}

.bg-darkestgray {
  background-color: var(--primary-color);
}

/*header*/
.mkc-header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.mkc-header .header-top {
  transition: all 0.3s ease;
}

.navbar {
  background: var(--navbar-background);
  transition: all 0.3s ease;
}

/*sticky*/
.mkc-header.sticky-nav-only .mkc-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.mkc-header.sticky-full {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.mkc-header.sticky-nav-only+.front__page_banner_custom {
  margin-top: 66px;
}

.mkc-header.mkc-header.sticky-full+.front__page_banner_custom {
  margin-top: 170px;
}

/*sticky ends*/

/*location*/
/* .location-selector {
  display: none;
}
.location-selector .btn-light:active:focus {
  box-shadow: none !important;
} */
.location-selector .btn {
  box-shadow: none;
  font-weight: 500;
  font-size: 16px;
  border-radius: 5px;
  padding: 14px;
  margin-right: 0px;
  background: none;
  border: 1px solid #B4AEA6;
  border-radius: 14px;

}

/* .show > .btn-light.dropdown-toggle {
  box-shadow: none !important;
}
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: none !important;
} */
.location-selector .dropdown-menu {
  border-radius: 12px;
  max-width: 130px;
  width: 100%;
  box-shadow: none;
}

.location-selector .dropdown-item {
  font-size: 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #E8E0D6;
  padding: 10px 14px;
}

.location-selector li:last-child .dropdown-item {
  border-bottom: 0;
}

.mkc-location-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  font-size: 18px;
  letter-spacing: 3.6px;
}

.mkc-location-content {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
}

.mkc-location-phone {
  font-size: 18px;
}

.mkc-location-title img {
  width: 26px;
  height: 26px;
  margin-right: 0.3rem;
}

.mkc-location-middletown {
  /* background: #ffffff; */
  /* border: 1px solid #B4AEA6; */
  border-radius: 20px;
  padding: 0.5rem 2rem;
  min-width: 150px;
  /* margin-left: 180px; */
}

.mkc-location-kettering {
  /* background: #ffffff; */
  /* border: 1px solid #B4AEA6; */
  border-radius: 20px;
  padding: 0.5rem 2rem;
  min-width: 150px;
}

.mkc-location-cincinnati {
  /* background: #ffffff;
  border: 2px solid #B4AEA6; */
  border-radius: 20px;
  padding: 0.5rem 2rem;
  min-width: 150px;
}

/* Common style for all location blocks */
.mkc-location-middletown,
.mkc-location-cincinnati,
.mkc-location-kettering {
  transition: background-color 0.3s, border 0.3s;
  cursor: pointer;
}

.mkc-location-middletown,
.mkc-location-kettering {
  margin-right: 8px;
}

/* Hover effect: light grey fill */
.mkc-location-middletown:hover,
.mkc-location-cincinnati:hover,
.mkc-location-kettering:hover {
  background-color: #f0f0f0;
  /* light grey fill */
}

/* Selected state: white background, grey border */
.mkc-location-middletown.selected,
.mkc-location-cincinnati.selected,
.mkc-location-kettering.selected {
  background: #ffffff;
  border: 2px solid #b4aea6;
  border-radius: 20px;
}

/*location*/

/* General Dropdown Styling */
.navbar-nav>li {
  position: relative;
}

.navbar-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background-color: var(--navbar-background);
  z-index: 1000;
  padding: 0;
  list-style: none;
}

.navbar-nav .sub-menu li a {
  padding: 20px;
}

.navbar-nav .sub-menu li:hover>a {
  background: var(--primary-background);
  padding: 20px;
  /* border-radius: 10px; */
}

.navbar-nav .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-left: 0;
}

/* Menu Links */
.navbar-nav .menu-item>a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  color: #FFFFFF;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.navbar-nav .menu-item>a:hover {
  background-color: #f2f2f2;
  color: #FFFFFF;
  font-weight: 600;
}

/* FontAwesome Angle Icons */
.navbar-nav .menu-item-has-children>a::after {
  content: "\f107";
  /* angle-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 10px;
  display: inline-block;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

.navbar-nav>li:hover>a {
  background: #cfcfcf;
  /* border-radius: 10px; */
}

.navbar-nav>.menu-item>a {
  padding: 20px;
}

.navbar-nav>.menu-item:hover>a {
  /* background: #cfcfcf; */
  /* border-radius: 10px; */
  background-color: var(--primary-background)
}

.navbar-nav>li.current-menu-item>a,
.navbar-nav .sub-menu>li.current-menu-item>a {
  color: var(--primary-color);
  /* color:#fff */
}

/* Deep nested: angle-right */
.navbar-nav .menu-item-has-children .menu-item-has-children>a::after {
  content: "\f107";
  /* angle-down */
  margin-left: auto;
}

ul#menu-menu-1 {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.menu-item a {
  color: #59514d;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  text-decoration: none !important;
}

.menu-item-has-children {
  position: relative;
}

ul.sub-menu li a {
  font-size: 14px;
}

ul.sub-menu li a:hover {
  font-size: 14px !important;
}

ul.sub-menu {
  background-color: transparent;
}

ul.sub-menu .menu-item a {
  margin-left: 0;
  margin-bottom: 0px;
  border-bottom: 0.5px solid #bdbdbd;
}

.menu-item-has-children {
  position: relative;
}

ul.sub-menu li a {
  font-size: 14px;
}

.menu-items {
  background-color: #f0f0f0;
  padding: 10px 0;
}

.menu-items .current-menu-item a {
  color: #000 !important;
  font-weight: 600;
}

.menu-items li a:hover {
  color: #000 !important;
  font-weight: 600;
  font-size: 16px;
}

/* General Dropdown Styling */
/*header*/

/*banner*/
.front__page_banner_custom {
  min-height: 530px;
}

.banner-overlay-content {
  position: absolute;
  max-width: 570px;
  padding: 0 15px;
  z-index: 2;
  top: 60%;
  transform: translateY(-50%);
}

.banner-overlay {
  position: absolute;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.10) 45.12%, rgba(255, 255, 255, 0.00) 100%);
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner-title {
  color: #fff;
}

.banner-subtitle {
  font-size: 20px;
  color: #fff;
}

/*banner*/

/*top social icon section*/
.social-icon {
  background: var(--primary-color);
  justify-content: center;
  padding: 10px 0;
}

/*top social icon section*/

/*hs section*/
.hs .care-image img {
  border-radius: 30px;
  height: 100%;
  object-fit: cover;
}

.hs .carecontent {
  border-radius: 30px;
  align-content: center;
  padding: 30px;
}

/*hs section*/

/*intro section*/
.bordered-wrapper .intro-section {
  border-radius: 30px;
  padding: 0 20px;
 
}
.bordered-wrapper{
  margin-top: 40px;
}
.intro-section {
  margin-top: 5rem !important;
}
.icon-box img {
  width: 120px;
  height: 120px;
}

.feature-grid .feature-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-box img {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
}

.feature-box p {
  margin: 0;
  font-size: 15px;
  color: #222;
}

.feature-item {
  padding-bottom: 40px;
}

.feature-text {
  padding: 0 0px 0 40px;
  font-weight: 400;
}

.feature-text p {
  font-size: 1.375rem;
}

/*intro section*/

/*services section*/
.service-item {
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  font-size: 1.1rem;
  color: #777;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}

.service-item:hover {
  color: #000;
}

.service-item.active {
  color: #000;
  font-weight: 500;
  border-bottom: 1px solid #000;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

/* Remove any focus outlines or borders */
.service-item:focus,
.service-item:active,
.service-item:focus-visible {
  outline: none;
}

.services-content-box {
  border-radius: 30px;
  border: 1px solid #C8C8C8;
}

/*services section*/

/*counter cards section*/
.cs .cards>div {
  border-radius: 30px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 200px;
  justify-content: center;
  padding: 20px;
  width: 100%;
  margin-bottom: 40px;
}

.counter,
.count {
  font-family: "Poppins", sans-serif;
  font-size: 64px;
  line-height: 74px;
  font-weight: 300;
}

/*counter cards section*/

/*answers*/
.answers-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  /* THIS ensures space between buttons */
}

/*answers*/

/*insta/fb widget*/
.insta-fb-widget {
  border-radius: 20px;
  border: 10px solid #EDF3FA;
}

.ti-widget[data-wkey="feed-instagram"][data-style=custom-style][data-widget-type=social] {
  margin-bottom: 0 !important;
}

.ti-widget[data-wkey="feed-instagram"] .ti-nav-loadmore {
  display: none !important;
}

.ti-widget[data-wkey="feed-instagram"] .ti-nav-loadmore .ti-btn {
  background: #544e4c !important;
  color: #fff !important;
}

.ti-widget[data-wkey="feed-instagram"][data-style="custom-style"][data-widget-type="social"] .ti-widget-header .ti-header-btn .ti-btn,
.ti-widget[data-wkey="feed-instagram"][data-style="custom-style"][data-widget-type="social"] .ti-widget-header .ti-header-btn .ti-btn:hover {
  background: #544e4c !important;
  color: #fff !important;
  outline: none !important;
}

/*insta/fb widget*/

/*ssj*/

.ssj {
  background-color: #295F99;
}

.ssj h3 {
  color: #ffffff;
  font-weight: 600;
  font-size: 56px;
  line-height: 64px;
  letter-spacing: 0.2px;
  vertical-align: middle;
  color: #fff;
  text-align: left;
}

.ssj p {
  color: rgba(255, 255, 255, 0.7);
}

/*ssj*/

/*footer*/
.footer-top-inner {
  display: flex;
  justify-content: space-between;
  padding: 15px 0 0;
}

.footer-top-inner img {
  width: 100%;
}

.footer-social {
  display: flex;
}

.footer-social img {
  width: auto;
  margin: 0 15px;
}

.footer-address p {
  font-size: 14px;
  text-align: right;
}

.footer-links p {
  margin-bottom: 5px;
  line-height: 20px;
}

.footer-links p a {
  color: #0e3c53;
  font-size: 14px;
  font-weight: 400;
  text-decoration: underline;
  font-family: "DIN Next Rounded LT W01 Light";
}

.footer-bottom {
  padding-bottom: 15px;
}

.footer {
  background: #224F80;
  color: #fff;
  padding: 60px 0px 10px;
  margin: 0 auto;
}

.footer-locations {
  margin-bottom: 40px;
}

.footer-locations .location {}

.footer-locations .location-inner {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.footer-locations .location-inner img {
  width: 40px;
  height: 40px;
}

.location-content {
  flex: 1;
}

.footer-locations .location-inner h3 {
  margin: 0 0 15px 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
}

.footer-locations .location-inner h3>a {
  color: #fff;
}

.footer-locations .location-inner .phone {
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #fff;
}

.footer-locations .location-inner .phone>a {
  color: #fff;
}

.footer-locations .location-inner .address {
  margin-bottom: 20px;
}

.footer-locations .location-inner .address p {
  color: #d2d2d2;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
}

.location-separator {
  color: #807774;
}

.hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hour-row {
  display: flex;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #d2d2d2;
}

.hour-row .day {
  min-width: 80px;
  flex-shrink: 0;
  color: white;
}

.hour-row .colon {
  margin: 0 10px;
  flex-shrink: 0;
}

.hour-row .time {
  flex: 1;
}

.footer-separator {
  border: none;
  border-top: 1px solid #c5c5c5;
  margin: 30px 0;
  width: 100%;
}

.footer-menu {
  text-align: center;
  margin-bottom: 30px;
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-nav li {
  display: inline-block;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #d2d2d2;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #d2d2d2;
}

#scrollToTopBtn {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 30px;
  right: 15px;
  background-color: #4d4745;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  z-index: 9999;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#scrollToTopBtn.show {
  opacity: 1;
  visibility: visible;
}

/*footer*/

/*About*/
.about-section {}

.about-section .container {
  display: flex;
  gap: 58px;
}

.about-left {
  flex: 1 1 45%;
}

.about-left small {
  font-size: 14px;
  color: #555;
  display: block;
  margin-bottom: 8px;
}

.about-left h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.about-left p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-left img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.about-right {
  flex: 1 1 45%;
  background-color: #285E97;
  color: #fff;
  padding: 24px;
  border-radius: 30px;
}

.about-right small.from-us {
  font-size: 14px;
  color: #ccc;
  display: block;
  margin-bottom: 12px;
  text-align: right;
}

.about-right p {
  margin-bottom: 16px;
  color: #fff;
  line-height: 2.5rem;
}

/*about*/

/*faq*/
.faq-section {}

.faq-section h2 {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: none;
  background: transparent;
  padding: 20px 0;
  font-size: 24px;
  font-weight: 400;
  cursor: poPoppins;
  color: #bababa;
  /* Default color */
  transition: color 0.3s ease;
}

.faq-question:not(.collapsed) {
  color: #000;
  /* Active color */
}

.faq-answer {
  /* display: none; */
  /* padding: 0 0 20px 0; */
  padding: 0;
  font-size: 18px;
}

.faq-question:not(.collapsed) .arrow {
  transform: rotate(180deg);
}

.arrow {
  width: 36px;
  height: 36px;
  transition: transform 0.3s ease;
}

.faq-question {
  outline: none;
  border: none;
}

.faq-question:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

/*faq*/

/* sis services */
.sis img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

/* sis services */

/*stats grid*/
.stats-grid {
  border: 1px solid #544e4c;
  border-radius: 1.5rem;
  padding: 2rem;
}
.stats{
  margin-top: 50px;
  margin-bottom: 80px;
}
.stat-item {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background-color: #e5e7eb;
}

.stat-number {
  font-size: 60px;
  font-weight: 500;
  color: black;
  line-height: 1;
}

.stat-label {
  font-size: 20px;
  color: black;
  font-weight: 300;
  line-height: 1.4;
}

/*stats grid*/

/*blog*/
.blog-wrapper a,
.blog-wrapper a:hover {
  text-decoration: none !important;
}

.card-img-top {
  object-fit: cover;
}

.rounded-20px {
  border-radius: 20px;
}

.blog-wrapper h2 {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 45px;
  letter-spacing: 0.2px;
  width: 60%;
}

.blog-wrapper p {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: #fff;
}

.blog-wrapper .card-title {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.2px;
  color: rgba(0, 0, 0, 1);
}

.blog-wrapper .card-text {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: #000;
}

.page-numbers>li {
  display: inline-block;
}

.page-numbers {
  padding: 5px 15px;
  margin: 0 0.25rem;
  color: #544e4c;
  text-decoration: none;
  flex-direction: row;
  display: flex;
  list-style: none;
  justify-content: center;
}

.page-numbers:hover {
  color: #332f2e;
}

.page-numbers .current {
  background-color: #544e4c;
  color: #fff;
  border-color: #544e4c;
  border-radius: 5px;
}

.page-numbers .current:hover {
  background-color: #332f2e;
  border-color: #332f2e;
}

.angled-arrow {
  transform: rotate(-30deg);
  display: inline-block;
}

.blogs-post-single .publish-date {
  color: #000;

}

.blogs-post-single p,
.blogs-post-single li {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  color: #393939;
}

.blogs-post-single li {
  margin-bottom: 10px;
}

.blogs-post-single li:last-child {
  margin-bottom: 0;
}

.blogs-post-single h1 strong,
.blogs-post-single h2 strong {
  font-weight: 600 !important;
}

.blogs-post-single h2 {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  font-size: 35px;
  line-height: 45px;
  letter-spacing: 0.2px;
  color: #000;
}

.blogs-post-single h3 {
  font-size: 1.75rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  color: #000;
}

.blogs-post-single h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
  color: #000;
}

.blogs-post-single h1 {
  /* font-weight: 600; */
  /* font-size: 40px;
    line-height: 45px;
    letter-spacing: 0.2px; */
}

.blogs-post-single .card-content {
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.2px;
  color: #000;
}

.blogs-post-single .btn-link {
  color: #000;
  text-decoration: none;
  font-family: "Nunito Sans", sans-serif;
}

.blogs-post-single .btn-link a,
.blogs-post-single .btn-link:hover a {
  color: #000;
  text-decoration: none;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
}

/*blog*/

/*candidate section*/
.candidate-section h2 {
  font-weight: 500;
  margin-bottom: 20px;
}

.candidate-section p {
  text-align: center;
  color: black;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.candidate-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.candidate-content .image img {
  max-width: 400px;
  width: 100%;
  border-radius: 8px;
}

.candidate-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.candidate-content ul li {
  font-size: 16px;
  margin-bottom: 16px;
  position: relative;
  padding-left: 24px;
}

.candidate-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 24px;
  line-height: 1;
}

/*candidate section*/

/*content section*/
.content-section.border-top {
  border-top: 1px solid #ddd;
}

/*content section*/

.ssj iframe,
.contact-section iframe {
  border-radius: 20px;
}

.ssj .wpcf7 form.invalid .wpcf7-response-output,
.ssj .wpcf7 form.unaccepted .wpcf7-response-output,
.ssj .wpcf7 form.payment-required .wpcf7-response-output,
.ssj .wpcf7 form .wpcf7-response-output {
  color: #fff;
}

/*bordered wrapper*/
.bordered-wrapper {
  border: 1px solid #c5c5c5;
  border-radius: 30px;
  padding: 20px;
}

.grecaptcha-badge {
  display: none;
}

.bordered-wrapper .patient-form-text h2 {
  color: #544e4c;
}

.bordered-wrapper .patient-form-text p {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0;
}

.care-credit-wrapper h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
}

.care-credit-wrapper p {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  vertical-align: middle;
}

.care-credit-wrapper {
  background: #EDF3FA;
  border-radius: 20px;
}

.payment-option-wrapper {
  border: 1px solid #c5c5c5;
  border-radius: 20px;
}

.payment-option-wrapper p {
  /* text-align: center; */
}

.care-credit-text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  vertical-align: middle;
}

.page-template-template-contact .journey-form .submit-btn p {
  margin-bottom: 0;
}

.page-template-template-contact .payment-option-wrapper .care-credit-wrapper h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 0.2px;
  text-align: center;
}

.product-service-wrap img {
  width: 28px;
  margin-right: 10px;
}

.product-service-wrap .servicename {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #000;
}

.product-service-wrap {
  background: #fafafa;
  border-radius: 20px;
}

.product-service-wrap h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.2px;
  text-align: center;
  color: #000;
}

.contact-section .contact-text {
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0.2px;
}

.contact-section .contact-img img {
  width: 120px;
  height: 120px;
}

.contact-section .payment-option-wrapper .care-credit-wrapper p {
  font-style: normal;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  text-align: center;
}

.section10.bg-white .wpcf7-not-valid-tip {
  text-align: left;
}

.section10.bg-white .journey-form .wpcf7 form.sent .wpcf7-response-output,
.section10.bg-white .wpcf7 form.invalid .wpcf7-response-output,
.section10.bg-white .wpcf7 form.unaccepted .wpcf7-response-output,
.section10.bg-white .wpcf7 form.payment-required .wpcf7-response-output {
  color: #000 !important;
}

.section10.bg-white .journey-form option {
  background-color: #fff;
}

.section10.bg-white .journey-form input,
.section10.bg-white .journey-form select,
.section10.bg-white .journey-form textarea {
  color: #000;
}

.section10.bg-white .journey-form input::placeholder,
.section10.bg-white .journey-form textarea::placeholder {
  color: #cacaca;
}

.section10.bg-white .col-md-4 p {
  color: #000;
  opacity: 1;
}

.section10.bg-white h3 {
  color: #544e4c;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.section10.bg-white .journey-form p.lable {
  color: #000;
  opacity: 1;
  text-align: left;
}

.section10.bg-white p.desc {
  color: #000000b2;
  opacity: 0.7;
}

.section10.bg-white .journey-form p {
  text-align: left;
}

.section10.bg-white .journey-form input.contact-form-btn {
  background: var(--primary-color);
  color: #fff;
}

.section10.bg-white .journey-form input.contact-form-btn:hover {
  background: #fff !important;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);

}

.circle-button-white {
  width: 55px;
  height: 55px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.circle-button-white .arrow-icon {
  width: 35px;
  height: 35px;
  transition: transform 0.6s ease;
}

.circle-button {
  width: 40px;
  height: 40px;
  border: 1.5px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.circle-button .arrow-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.6s ease;
}

.circle-button:hover .arrow-icon,
.circle-button-white:hover .arrow-icon {
  transform: rotate(360deg);
}

.consultation-slider {
  flex: 1;
  min-width: 0;
}

/*owl carousel*/
.consultation-section {
  overflow: hidden;
}

.consultation-wrapper {
  position: relative;
  /* Needed for absolute positioning of the line */
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.consultation-wrapper::before {
  content: "";
  position: absolute;
  left: 190px;
  right: 0;
  top: 50%;
  height: 4px;
  /* Thickness of the line */
  background-color: #555;
  /* Change to match your design */
  border-radius: 2px;
  /* Rounded edges */
  z-index: 0;
  /* Behind everything */
}

.consultation-label::before {
  content: "";
  position: absolute;
  left: 180px;
  /* Adjust to align with your line visually */
  top: 50.5%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: #555;
  /* Same color as line */
  border-radius: 50%;
  z-index: 1;
  /* Above the line */
}

.consultation-label h3 {
  font-size: 20px;
  color: #333;
  margin: 0 0 10px;
  font-weight: 400;
}

.consultation-label h2 {
  font-size: 36px;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.4;
  line-height: 150%;
}

.owl-nav .consultation-arrow {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #544e4c;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

.owl-nav .consultation-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.951 12.332C15.5083 12.7745 15.5083 13.4921 15.951 13.9348L21.6748 19.6587C21.7528 19.7367 21.7528 19.8633 21.6748 19.9415L15.951 25.6653C15.5083 26.1079 15.5083 26.8255 15.951 27.2681C16.3935 27.7107 17.1111 27.7107 17.5536 27.2681L23.2775 21.5443C24.2408 20.5809 24.2408 19.0191 23.2775 18.0559L17.5536 12.332C17.1111 11.8893 16.3935 11.8893 15.951 12.332Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.consultation-container {
  position: relative;
  background: #f0f0f0;
  border: 1px solid #ccc4c2;
  border-radius: 20px;
  margin: 0px auto;
  padding: 20px 20px 20px 130px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 70%;
}

.consultation-image {
  position: absolute;
  top: 50%;
  left: -80px;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  flex-shrink: 0;
}

.consultation-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.consultation-content h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 15px;
  display: flex;
  align-items: center;
}

.consultation-content .number {
  font-size: 96px;
  font-weight: 600;
  margin-right: 15px;
}

.consultation-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  font-weight: 300;
}

.consultation-arrow {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: #544e4c;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.consultation-arrow::before {
  content: ">";
  position: absolute;
  top: 50%;
  left: 50%;
  /* width: 16px;
  height: 16px; */
  transform: translate(-50%, -50%);
  /* background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.951 12.332C15.5083 12.7745 15.5083 13.4921 15.951 13.9348L21.6748 19.6587C21.7528 19.7367 21.7528 19.8633 21.6748 19.9415L15.951 25.6653C15.5083 26.1079 15.5083 26.8255 15.951 27.2681C16.3935 27.7107 17.1111 27.7107 17.5536 27.2681L23.2775 21.5443C24.2408 20.5809 24.2408 19.0191 23.2775 18.0559L17.5536 12.332C17.1111 11.8893 16.3935 11.8893 15.951 12.332Z' fill='white'/%3E%3C/svg%3E"); */
  /* background-repeat: no-repeat;
  background-size: contain; */
  color: #fff;
  font-size: 20px;
}

/*owl carousel*/

.bordered-wrapper .dentist-card img {
  border-radius: 30px;
}

.dentist-card img {
  border-radius: 30px 0 0 30px;
}

.patient-form-text p,
.patient-form-text h2 {
  text-align: left;
}

.navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  transition: all 0.4s ease;
  transform: rotate(0deg);
  width: 30px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-image: url('data:image/svg+xml,<svg viewBox="0 0 30 30" version="1.1" xmlns="http://www.w3.org/2000/svg"><line x1="1" y1="26" x2="26" y2="1" stroke="rgba(0, 0, 0, 0.5)" stroke-width="2"/><line x1="1" y1="1" x2="26" y2="26" stroke="rgba(0, 0, 0, 0.5)" stroke-width="2"/></svg>');
  transition: all 0.4s ease;
  transform: rotate(90deg);
  width: 25px;
}

.blogs-post-single .title-container {
  color: #000;
  border-radius: 20px;
  background: rgba(204, 204, 204, 0.50);
}

.blogs-post-single .img-container img {
  border-radius: 20px;
}

/*Thank You*/
.thank-you-page {
  text-align: center;
  padding: 50px 0px;
}

.thank-you-page h1 {
  color: #018868;
}

.thank-you-page .btn-primary {
  background-color: #018868;
  border-radius: 10px;
  color: #fff;
}

.thank-you-page .btn-primary:hover {
  background-color: #016E54;
}

.thank-you-page .content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-page .content img {
  width: 100%;
  height: auto;
  max-width: 590px;
  margin: 25px 0;
}

/*404*/
.error-404 {
  text-align: center;
  padding: 50px 0px;
}

.error-404 h1 {
  color: #949494;
  font-weight: 600;
}

.error-404 h2 {
  color: #B0B6C5;
}

.error-404 .btn-primary {
  background-color: #018868;
  border-radius: 10px;
  color: #fff;
}

.error-404 .btn-primary:hover {
  background-color: #016E54;
}

.error-404 img {
  width: 100%;
  height: auto;
  max-width: 590px;
  margin: 0 0 25px 0;
}

.answers-section {
  background-color: #EDF3FA;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-content > div {
  flex: 1;
}

.footer-content > div > p {
  margin-bottom: 0;
}

.timings .timing-day {
  width: 110px;
}

.timings .timing-row {
  line-height: 1.4;   
}

.footer-content > h4 {
  letter-spacing: 4px;
  font-weight: 700;
  font-size: 20px;
}

/*header*/
.header-top {
  background: #fff;
}

.marion-nav {
  background: #E1ECFA;
}

/* Sticky position on scroll */
.marion-header .is-sticky {
  position: fixed;
  top: 0;
  background: #fff;
  width: 100%;
  z-index: 999999;
}

.marion-header .is-sticky .marion-nav {
  top: 0px;
}

.marion-header .is-sticky .is-sticky-full .marion-nav {
  top: 51px;
}

.header-top.hide-header-top {
  display: none !important;
}

/*sticky*/
/* Smooth animation */
.main-nav.sticky {
  position: absolute;
  top: 125px;
  width: 100%;
  z-index: 999;
}

header,
.main-nav {
  transition: transform 0.3s ease, top 0.3s ease;
}

/* Sticky header on scroll up */
header.sticky-up {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transform: translateY(0);
}

/* Sticky nav when scrolling down */
.main-nav.sticky-down {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

/* Sticky nav below header on scroll up */
.main-nav.sticky-below-header {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 999;
}

/* Hide header when scrolling down */
header.hide {
  transform: translateY(-100%);
}

/*sticky ends*/

/* General Dropdown Styling */
.navbar-nav>li {
  position: relative;
}

.navbar-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  /* background-color: #f0f0f0; */
  background-color: var(--navbar-background);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 0;
  list-style: none;
}

.navbar-nav .sub-menu li a {
  padding: 20px;
}

.navbar-nav .sub-menu li:hover>a {
  background: var(--primary-background);
  padding: 20px;
}

.navbar-nav .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-left: 0;
}

/* Menu Links */
.navbar-nav .menu-item>a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  color: #000;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.navbar-nav .menu-item.current-menu-item>a {
  font-weight: 600;
}

.navbar-nav .menu-item>a:hover {
  /* background-color: #f2f2f2; */
  color: #000;
}

/* FontAwesome Angle Icons */
.navbar-nav .menu-item-has-children>a::after {
  content: "\f107";
  /* angle-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 10px;
  display: inline-block;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

.navbar-nav>.menu-item>a {
  padding: 5px 20px;
}

/* Deep nested: angle-right */
.navbar-nav .menu-item-has-children .menu-item-has-children>a::after {
  content: "\f107";
  /* angle-down */
  margin-left: auto;
}

ul#menu-menu-1 {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.menu-item a {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  text-decoration: none !important;
}

.menu-item-has-children {
  position: relative;
}

ul.sub-menu li a {
  font-size: 14px;
}

ul.sub-menu li a:hover {
  font-size: 14px !important;
}

ul.sub-menu {
  background-color: transparent;
}

ul.sub-menu .menu-item a {
  margin-left: 0;
  margin-bottom: 0px;
  border-bottom: 0.5px solid #bdbdbd;
}

.menu-item-has-children {
  position: relative;
}

ul.sub-menu li a {
  font-size: 14px;
}

.text-black {
  color: #000;
}

.easy-financing-section {
  background-color: #EDF3FA;
}

.blue-border {
  border: 1px solid #285E97;
}

@media (max-width: 991.98px) {
    .mobile-contact-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #ececec;
        padding: 12px 15px;
        width: 100%;
    }
}

.doctor-border {
  border-radius: 0 20px 20px 0;
}


/* MAIN TITLE */
.service-section h2 {
  color: #000;
}

/* CARD */
.service-card {
  background: transparent;
  height: 100%;
}

/* IMAGE */
.service-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* TITLE */
.service-card h5 {
  margin-top: 12px;
  margin-bottom: 6px;
  color: #000;
font-size: 1.25rem;
}

/* DESCRIPTION */
.service-card div {
  font-size: 14px;
  color: #000;
  line-height: 1.5;
}

/* DIVIDER */
.service-section hr {
  margin-top: 40px;
  border: none;
  border-top: 1px solid #ddd;
}

/* SPACING FIX */
.service-section {
  margin-bottom: 50px;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 991px) {
  .service-card img {
    height: 130px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .service-section h2 {
    font-size: 22px;
  }

  .service-card img {
    height: 120px;
  }
}
/* ==============================
   CONTENT SECTIONS
============================== */
.periodontist-sections {
  background-color: #fff;
}

.content-section {
  padding: 2rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.content-section:last-child {
  border-bottom: none;
}

.content-section__heading {
  font-size: 1.6rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.content-section__text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-section__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* ==============================
   OUR SERVICES GRID
============================== */
.our-services-section {
  background-color: #f9f9f9;
}

.our-services__title {
  font-size: 1.5rem;
  font-weight: 400;
  color: #1a1a1a;
}

.service-pill {
  border: 1px solid #ccc;
  border-radius: 25px;
  padding: 20px 16px;
  font-size: 0.85rem;
  color: #333;
  background-color: #fff;
  transition: all 0.3s ease;
  cursor: default;
}


.footer-columns {
    gap: 40px;
    align-items: center;
    width: 100%;
}

.footer-columns .timings,
.footer-columns .footer-description,
.footer-columns .footer-address {
    flex: 1;         
    min-width: 0;     
}

.footer-columns .footer-description {
    text-align: center;
}

.footer-columns .footer-address {
    text-align: end;
    color: #fff;
}

.footer-divider {
    width: 1px;
    align-self: stretch;
    background-color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}
.dentist-card{
  margin-top: 40px;
  margin-bottom: 2.5rem;
}
.pdb{
  padding-bottom: 5rem !important;
}
.mrb{
  margin-bottom: 3.125rem !important;
}
.patient-image img{
  border-radius: 20px !important;
} 
#rebrandModalfinance .modal-dialog {
  max-width: 940px;
}

#rebrandModalfinance {
  background: rgba(255, 255, 255, 0.7);
  z-index: 9999999;
}
.services-description h2{
  color: #295F99;
}




.front-banner-section {
    position: relative;
    min-height: 650px;
    background: url('https://mariondadev.wpenginepowered.com/wp-content/uploads/2026/05/Component-1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.banner-overlay {
    position: absolute;
    inset: 0;

}

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    margin: auto;
    width: 100%;
    padding: 60px 20px;
    gap: 200px;
    max-width: 1400px;
}


/* =========================
   LEFT PANEL
========================= */
.banner-left {
   color: #fff;
    width: 100%;
    max-width: 555px;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background: rgba(0, 0, 0, 0.1);
    border: 10px solid #285E974D;
    backdrop-filter: blur(30px);

    font-family: "Cormorant Garamond";
    overflow: hidden; /* prevents spill */
}

.offer-label {
   display: inline-block;
    background: #285E97;
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 18px;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'sorts_mill_goudyregular';
 }

/* Countdown */
.banner-countdown {
    display: flex;
    justify-content: left;
    gap: 30px;
    margin-bottom: 100px;
  }

.banner-countdown span {
   display: block;
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
font-family: 'sorts_mill_goudyregular';
}

.banner-countdown small {
    font-size: 12px;
    color:#fff;
font-family: 'sorts_mill_goudyregular';
}

.banner-left h1 {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
}


/* =========================
   RIGHT PANEL
========================= */
.banner-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 555px;
}

/* CTA */
.cta-btn-green {
    background: #B9EBE4;
    padding: 12px 25px;
    text-decoration: none;
    color: #000000 !important;
    display: inline-block;
    margin-bottom: 30px;
    border: 0px;
}

.cta-btn-green:hover {
    background: #025860;
}

/* Glass Box */
.glass-box {
    width: 100%;
    font-size: 20px;
    color: #ffffff;
    font-weight: 400;
}
.quiz-heading {
    color: #fff; /* match your existing text color */
    text-align: center;
    margin-bottom: 16px;
    text-align: center;
}

.quiz-heading h4 {
      font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.quiz-heading .note {
    font-size: 0.9rem;
    opacity: 0.85;
    font-style: italic;
    line-height: 1.4;
}
.custom-section-title{
 
}
/* =========================
   POPUP
========================= */


.popup-inner {
    background: #ffffff;
    width: 90%;
    max-width: 750px;
    padding: 40px;
    border-radius: 12px;
    position: relative;
}

/* Close button */
.cd-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}


/* =========================
   QUIZ
========================= */
.quiz-box {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

/* Steps */
.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
}

/* Question */
.quiz-question-text {
    font-size: 18px;
    margin-bottom: 15px;
}

/* Options */
.quiz-step label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    cursor: pointer;
    }

.quiz-step input[type="radio"] {
    margin-right: 8px;
    accent-color: #03747f;
    width:auto;
    display: inline;
}
.quiz-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
    margin: 10px 0;
}

.quiz-step input[type="text"],
.quiz-step input[type="email"],
.quiz-step input[type="tel"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Consent */
.quiz-step input[type="checkbox"] {
    margin-right: 4px;
}


/* Legal text */
.quiz-legal {
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.quiz-legal a {
    color: #4da6ff;
    text-decoration: underline;
}

/* Button */
.quiz-submit {
    width: 100%;
    padding: 0px 14px 20px 14px;
    background: #285E97;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}
.text-left{
    font-family: "Cormorant Garamond";
}
.quiz-submit:hover {
    background: #fff;
    color:#000;

}
/* =========================
   PROGRESS BAR (MATCH IMAGE)
========================= */
.quiz-progress-wrap {
    background: #fff;
    height: 20px;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
}

.quiz-progress-fill {
    background: #03747f;
    height: 100%;
    width: 0%;
    transition: width 0.4s ease;
}

/* % TEXT INSIDE BAR */
.quiz-progress-wrap::before {
   content: attr(data-progress) "%";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: #fff;
}


/* =========================
   BUTTONS
========================= */





/* =========================
   ERROR
========================= */
.quiz-error {
    color: red;
    font-size: 14px;
    display: none;
    margin-bottom: 10px;
}


/* =========================
   THANK YOU
========================= */
.quiz-step[data-step="thankyou"] {
    text-align: center;
}

.center {
  text-align: center;
}

.cta-btn {
  background: #a8d5c2;
  padding: 12px 25px;
  text-decoration: none;
  color: #000;
  border-radius: 4px;
  display: inline-block;
}
 /* ================= SHARED CTA ================= */
    .cta-btn {
      display: inline-block;
      padding: 13px 28px;
      background: transparent;
      border: 1.5px solid #1a1a1a;
      color: #1a1a1a;
      font-family: 'sorts_mill_goudyregular';
      font-size: 13.5px;
      letter-spacing: 0.04em;
      text-decoration: none;
      transition: background 0.25s ease, color 0.25s ease;
    }

    .cta-btn:hover {
      background: #1a1a1a;
      color: #ffffff;
    }


    .cta-outline {
      display: inline-block;
      border: 1.5px solid #000;
      padding: 11px 22px;
      font-family: 'sorts_mill_goudyregular';
      font-size: 16px;
      letter-spacing: 0.03em;
      text-decoration: none;
      color: #000 !important;
      transition: border-color 0.2s, color 0.2s;
      margin-top: 12px;
      background:#fff;
    }

    .cta-outline:hover {
      border-color: #1a1a1a;
      color: #1a1a1a;
    }

    .cta {
      text-align: center;
      margin-top: 30px;
    }

    .text-center { text-align: center; }
    .mt-5 { margin-top: 50px; }
    .center { text-align: center; }

/* ================= IMPLANT SECTION ================= */

.implant-bottom {
  margin-top: 50px;
}

/* Heading */
.implant-bottom h3 {
  text-align: center;
  margin-bottom: 30px;
  color: #232323;
}

/* Row for 2 columns */
.implant-row {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-left: 100px;
  padding-right: 100px;

}

/* Image */
.bottom-img {
  flex: 1;
}

.bottom-img img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* Text */
.bottom-text {
  flex: 1;
  }

.bottom-text ul {
  padding-left: 18px;
  list-style: disc;
}

.bottom-text li {
  font-family: 'sorts_mill_goudyregular';
  font-size: 1rem;
  color: #232323;
  margin-bottom: 16px;
  line-height: 1.7;
}

    /* ================= ABOUT SECTION ================= */
    .about-section {
      background: #f1f1f1;
      padding: 50px 0;
    }

    .about-wrapper {
      display: flex;
      align-items: center;
      gap: 50px;
      padding: 0px 150px;
    }

    .about-image {
      flex: 1;
    }

    .about-image img {
      width: 100%;
      max-width: 500px;
      display: block;
      border-radius: 20px;
    }

    .about-content {
      flex: 1;
    }

    .about-content h2 {

      margin-bottom: 20px;
      color: #232323;
      letter-spacing: -0.01em;
      text-align: center;
    }

  
    
    /* ================= BOTTOM CTA ================= */
    .bottom-cta {
      background: #fff;
      padding: 50px 0;
    }

    .bottom-cta h2 {
   
      margin-bottom: 16px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.3;
      letter-spacing: -0.01em;
      color: #232323;
    }

    .bottom-cta p {
      font-family: 'sorts_mill_goudyregular';
      font-size: 1rem;
      max-width: 680px;
      margin: 0 auto 28px;
      color: #232323;
      line-height: 1.75;
    }
 .note {
      font-family: 'sorts_mill_goudyregular';
      font-size: 12.5px;
      color: #fff;
      margin-top: 14px;
      line-height: 1.65;
    }
    
/* =========================
   POPUP
========================= */
#countdownPopup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px; /* spacing on small screens */
}

#countdownPopup  #popupQuizContainer {
    width: 100%;
    max-width: 600px;  
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.1);
    border: 10px solid #FFFFFF33;
    backdrop-filter: blur(30px);
    max-height: 90vh;
}
.popup-inner {
    background: #6c286e;
    width: 90%;
    max-width: 750px;
    padding: 40px;
    border-radius: 12px;
    position: relative;
}

/* Close button */
.cd-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
}
.smile-section {
    padding: 60px 20px;
    text-align: center;
    background: #f5f5f5;
}

.smile-title {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 500;
}

.smile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.compare-card {
    background: #ddd;
    padding: 15px;
    border-radius: 12px;
}

.compare-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    cursor: ew-resize;
}

.compare-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-after-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: white;
    transform: translateX(-50%);
}

.slider::after {
    content: "↔";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #444;
    color: white;
    padding: 6px;
    border-radius: 50%;
    font-size: 12px;
}

.labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}


.custom-testimonial-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; /* allows responsiveness */
}

.custom-testimonial-item {
  flex: 1 1 calc(33.33% - 20px); /* 3 in one row */
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 150px;
}

.custom-testimonial-item p {
  min-height: 120px;
  font-size: 16px;
  margin-bottom: 15px;
 }
/* Footer */
.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-footer h6 {
  margin: 0;
  font-weight: 600;
}

.stars {
  color: #f5a623;
  letter-spacing: 2px;
}
.faq-item,
.help-list{
 }

.invisalign-banner-section {
    position: relative;
    min-height: 650px;
    background: url('https://mariondadev.wpenginepowered.com/wp-content/uploads/2026/05/c395979553c9a6edc2ff5758426cb1d09b57faae-1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
}