@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");

/* 
font-family: "Montserrat", sans-serif;
font-family: "Source Sans 3", sans-serif;
*/

/* body,
html {
    overflow-x: hidden;
} */
/* body,html{
    width: 100%;
} */
:root {
  --black: #000000;
  --themcolor2: #ff0000;
  --othercolor: #dddddd;
  --white: #ffffff;
  --body-color: #0b2756;
  --green-heading: #bfd730;
  --ognr-btn: #f8971d;
  --star-size: 20px;
  --star-color: #000;
  --star-background: #f5bd1c;
  --bodyfont: "Source Sans 3", sans-serif;
  --headingfont: "Montserrat", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--bodyfont);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  /* font-weight: 600; */
  font-weight: 400;
  font-style: normal;
  color: var(--body-color);
  font-size: 20px;
  line-height: 1.4;
  background-color: var(--white);
}
#menu-main-menu li a {
  font-weight: 600;
}

b,
strong {
  font-weight: 700;
}

p {
  margin: 0 0 22px 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--headingfont);
  margin: 0 0 25px 0;
  padding: 0;
  color: var(--heading-color);
  font-weight: 700;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1,
.h1-title {
  font-weight: 700;
  font-size: 54px;
  line-height: 1;
}

h2,
.h2-title {
  font-weight: 700;
  font-size: 46px;
  line-height: 1.2;
}

h3,
.h3-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
}

h4,
.h4-title {
  font-size: 26px;
  line-height: 1.2;
}

h5,
.h5-title {
  font-size: 20px;
  line-height: 1.2;
}

a {
  margin: 0;
  padding: 0;
  display: inline-block;
  text-decoration: none !important;
  outline: none !important;
  color: var(--green-heading);
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

a:hover:nth-child(4) {
  color: var(--themcolor2);
}

img {
  max-width: 100%;
}

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

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
input[type="date"],
input[type="time"],
select {
  background-color: #f7f7f7;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 7px;
  color: var(--body-color);
  border: 1px solid #d4d4d4;
  height: 54px;
  padding: 0 15px;
  outline: none !important;
}

input[type="date"] {
  position: relative;
  background: url(images/calendar-icon.svg) no-repeat calc(100% - 13px) center
    #f7f7f7;
  background-size: 18px;
  padding-right: 40px;
  color: #b9b9b9;
}

input[type="time"] {
  position: relative;
  background: url(images/time-icon.svg) no-repeat calc(100% - 13px) center
    #f7f7f7;
  background-size: 18px;
  padding-right: 40px;
  color: #b9b9b9;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  background: transparent;
  bottom: 0;
  color: transparent;
  cursor: pointer;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}

textarea {
  background-color: #f7f7f7;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 7px;
  border: 1px solid #d4d4d4;
  padding: 23px 15px;
  width: 100%;
  color: var(--body-color);
  height: 120px;
  outline: none !important;
  resize: none;
}

select {
  border: 1px solid #d4d4d4;
  width: 100%;
  padding: 0 15px;
  background: url(images/sort-down.svg) no-repeat calc(100% - 16px) center
    transparent;
  background-size: 18px;
  padding-right: 40px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
  color: rgb(255, 255, 255, 30%);
}

input[type="submit"] {
  background: var(--ognr-btn);
  color: var(--white);
  height: 48px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 100px;
  padding-left: 26px;
  padding-right: 26px;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  text-transform: uppercase;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover {
  background: var(--green-heading);
  color: var(--body-color);
}

.fund-each-card:nth-child(even) {
  margin-left: auto;
}

::-webkit-input-placeholder {
  opacity: 1;
  color: #b9b9b9;
}

:-ms-input-placeholder {
  opacity: 1;
  color: #b9b9b9;
}

::-moz-placeholder {
  opacity: 1;
  color: #b9b9b9;
}

:-moz-placeholder {
  opacity: 1;
  color: #b9b9b9;
}

.cmn-gap {
  padding: 80px 0;
}

/* images alignment for wordpress content pages */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
  clear: both;
}

/* custom checkbox */

.form_input_check label {
  position: relative;
  margin: 0;
  padding-left: 40px;
  display: inline-block;
}

.form_input_check label span {
  margin: 0;
  padding: 0;
}

.form_input_check label input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

.form_input_check label input[type="checkbox"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  border: 1px solid #3e3e42;
  background: transparent;
}

.form_input_check label input[type="checkbox"] + span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/tick.svg) no-repeat center center;
  background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.form_input_check label input[type="checkbox"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* custom radio */

.form_input_radio label {
  position: relative;
  margin: 0;
  padding-left: 30px;
  display: inline-block;
}

.form_input_radio label span {
  margin: 0;
  padding: 0;
}

.form_input_radio label input[type="radio"] {
  visibility: hidden;
  display: none;
}

.form_input_radio label input[type="radio"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 2px solid #000000;
  border-radius: 100%;
  background: #fff;
}

.form_input_radio label input[type="radio"] + span::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #4b0049;
  position: absolute;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.form_input_radio label input[type="radio"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* custom radio end */

/* back to top */

#scroll {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  width: 55px;
  height: 55px;
  background-color: #bdd653;
  display: none;
  border-radius: 100%;
  line-height: 68px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  z-index: 9;
}

#scroll:hover {
  background: #88a725;
}

#scroll i {
  color: #fff;
  font-size: 44px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

#scroll:hover i {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
}

/* navbar*/

.navbar-brand {
  padding: 0;
  margin: 0;
  max-width: 282px;
  width: 100%;
  display: inline-block;
  line-height: 0;
}

.navbar-brand img {
  width: 100%;
}

.navbar {
  background: none;
  margin: 0;
  padding: 0;
  min-height: inherit;
  height: inherit;
  border: none;
  border-radius: 0;
}

.navbar-nav li {
  position: relative;
  list-style: none;
}

.navbar-nav > li {
  margin: 0 26px;
  padding: 28px 0;
  position: relative;
}

.navbar-nav > li:last-child {
  margin-right: 0;
}

.navbar-nav > li:first-child {
  margin-left: 0;
}

.navbar-nav > li > a {
  line-height: 1.2;
  position: relative;
  font-size: 17px;
  text-transform: uppercase;
  color: var(--body-color);
}

.navbar-nav > li > a:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--ognr-btn);
  /* opacity: 0; */
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar-nav > li.current-menu-item > a,
.navbar-nav > li > a:hover,
.navbar-nav > li.menu-item-has-children:hover > a {
  color: var(--ognr-btn);
}

.navbar-nav > li.current-menu-item > a:after,
.navbar-nav > li > a:hover:after,
.navbar-nav > li.menu-item-has-children:hover > a:after {
  width: 100%;
}

/* navbar submenu*/

.sub-menu {
  background: var(--white);
  position: absolute;
  /* top: 90%; */
  top: 102%;
  left: 0;
  z-index: 1000;
  display: none;
  border: none;
  border-radius: 20px;
  width: 220px;
  padding: 30px 20px;
  -webkit-box-shadow: 0px 0px 20px 0px rgb(0, 0, 0, 0.2);
  box-shadow: 0px 0px 20px 0px rgb(0, 0, 0, 0.2);
}

.sub-menu > li > a {
  display: block;
  width: 100%;
  padding: 0;
  font-size: 20px;
  line-height: 1.2;
  color: var(--body-color);
}

.sub-menu > li {
  width: 100%;
  display: block;
  margin-bottom: 13px;
}

.sub-menu > li:last-child {
  margin-bottom: 0;
}

.sub-menu > li > a:hover,
.sub-menu > li.menu-item-has-children:hover > a,
.sub-menu > li.current-menu-item > a {
  color: var(--ognr-btn);
}

.navbar-nav > li:last-child > .sub-menu {
  right: 0;
  left: inherit;
}

/* 2nd level submenu */
.navbar-nav > li > .sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
}

/* for push-menu */
.navbar-collapse .navbar-toggler {
  display: none;
}

#navoverlay {
  display: block;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  margin: 0;
  padding: 0;
  z-index: 99;
  -webkit-transition: background-color 0.5s linear;
  -o-transition: background-color 0.5s linear;
  transition: background-color 0.5s linear;
}

/* for push-menu end*/

/* CUSTOM CSS start */

.main-head {
  position: relative;
  width: 100%;
  background-color: var(--white);
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
  z-index: 999;
}

.main-head.sticky {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-animation-name: slide-down;
  animation-name: slide-down;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}

@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
  }

  100% {
    opacity: 0.9;
    transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
  }

  100% {
    opacity: 0.9;
    transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
  }
}

.top-hdr {
  background-color: var(--body-color);
}

.top-hdr-innr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.hdr-social-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.hdr-social-list li:not(:last-child) {
  margin-right: 8px;
}

.hdr-social-list li a {
  width: 27px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.hdr-social-list li a:hover {
  -webkit-filter: none;
  filter: none;
}

.top-hdr-right-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-left: 15px;
}

.top-hdr-right-part .top-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  margin: 0 36px 0 0;
  list-style: none;
}

.top-hdr-right-part .top-list li {
  padding: 0 22px;
}

.top-hdr-right-part .top-list li:first-child {
  padding-left: 0;
}

.top-hdr-right-part .top-list li:last-child {
  padding-right: 0;
}

.top-hdr-right-part .top-list li a {
  font-size: 17px;
  color: var(--white);
}

.top-hdr-right-part .top-list li a:hover,
.top-hdr-right-part .top-list li.active a {
  color: var(--ognr-btn);
}

.patient-list-wrppr {
  padding: 13px 17px 13px 18px;
  background-color: var(--ognr-btn);
}

.patient-list-wrppr ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.patient-list-wrppr li {
  line-height: 1;
  padding: 0 15px;
  border-right: 1px solid var(--white);
}

.patient-list-wrppr li:first-child {
  padding-left: 0;
}

.patient-list-wrppr li:last-child {
  padding-right: 0;
  border-right: none;
}

.patient-list-wrppr li a {
  font-size: 18px;
  line-height: 1;
  color: var(--white);
}

.patient-list-wrppr li a:hover {
  color: var(--body-color);
}

.patient-list-wrppr li a.search-field-link {
  line-height: 0;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.patient-list-wrppr li a.search-field-link:hover {
  -webkit-filter: none;
  filter: none;
}

.search-field-link img {
  width: 15px;
}

.bnnr-sec {
  position: relative;
  padding: 90px 0 285px;
  background-color: #e6eae9;
}

.bnnr-main {
  position: relative;
  z-index: 2;
}

.bnnr-content-wrppr {
  max-width: 685px;
  width: 100%;
}

.bnnr-subtitle {
  display: block;
  max-width: 459px;
  width: 100%;
  font-family: var(--headingfont);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--green-heading);
  margin-bottom: 12px;
}

.bnnr-subtitle h1,
.bnnr-subtitle .h2-title {
  margin-bottom: 30px;
}

.bnnr-img-wrppr {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.bnnr-img-wrppr figure {
  max-width: 65%;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  margin-left: auto;
  position: relative;
}

.bnnr-img-wrppr figure::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    color-stop(74%, rgba(255, 255, 255, 0)),
    to(#e6eae9)
  );
  background: -o-linear-gradient(
    right,
    rgba(255, 255, 255, 0) 74%,
    #e6eae9 100%
  );
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 74%, #e6eae9 100%);
}

.bnnr-img-wrppr figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.bnnr-light-shpe {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.bnnr-main-shpe {
  position: absolute;
  width: 100%;
  bottom: -3px;
  left: 0;
  z-index: 2;
}

.bnnr-main-shpe img {
  width: 100%;
}

/* common button css start */

.cmn-btn {
  min-width: 173px;
  background: var(--ognr-btn);
  border-radius: 100px;
  padding: 16px 20px 14px;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: var(--white);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.cmn-btn:hover {
  color: var(--body-color);
}

.cmn-btn.dark:hover {
  color: var(--green-heading);
}

.cmn-btn-circle {
  z-index: -1;
  background-color: var(--green-heading);
  pointer-events: none;
  border-radius: 100px;
  width: 0;
  height: 0;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.cmn-btn.dark .cmn-btn-circle {
  background-color: var(--body-color);
}

.explode-circle {
  -webkit-animation: explode 1.2s forwards;
  animation: explode 1.2s forwards;
}

.desplode-circle {
  -webkit-animation: desplode 0.8s forwards;
  animation: desplode 0.8s forwards;
}

.cmn-btn.dark .explode-circle {
  -webkit-animation: explode2 1.2s forwards;
  animation: explode2 1.2s forwards;
}

.cmn-btn.dark .desplode-circle {
  -webkit-animation: desplode22 0.8s forwards;
  animation: desplode2 0.8s forwards;
}

@-webkit-keyframes explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(42, 53, 80, 0.2);
  }

  100% {
    width: 600px;
    height: 600px;
    margin-left: -300px;
    margin-top: -300px;
    background-color: rgba(191, 215, 48, 0.9);
  }
}

@keyframes explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(42, 53, 80, 0.2);
  }

  100% {
    width: 600px;
    height: 600px;
    margin-left: -300px;
    margin-top: -300px;
    background-color: rgba(191, 215, 48, 0.9);
  }
}

@-webkit-keyframes explode2 {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(42, 53, 80, 0.2);
  }

  100% {
    width: 600px;
    height: 600px;
    margin-left: -300px;
    margin-top: -300px;
    background-color: rgba(11, 38, 86, 0.9);
  }
}

@keyframes explode2 {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(42, 53, 80, 0.2);
  }

  100% {
    width: 600px;
    height: 600px;
    margin-left: -300px;
    margin-top: -300px;
    background-color: rgba(11, 38, 86, 0.9);
  }
}

@-webkit-keyframes desplode {
  0% {
    width: 600px;
    height: 600px;
    margin-left: -300px;
    margin-top: -300px;
    background-color: rgba(191, 215, 48, 0.9);
  }

  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(191, 215, 48, 0.6);
  }
}

@keyframes desplode {
  0% {
    width: 600px;
    height: 600px;
    margin-left: -300px;
    margin-top: -300px;
    background-color: rgba(191, 215, 48, 0.9);
  }

  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(191, 215, 48, 0.6);
  }
}

@-webkit-keyframes desplode2 {
  0% {
    width: 600px;
    height: 600px;
    margin-left: -300px;
    margin-top: -300px;
    background-color: rgba(11, 38, 86, 0.9);
  }

  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(11, 38, 86, 0.6);
  }
}

@keyframes desplode2 {
  0% {
    width: 600px;
    height: 600px;
    margin-left: -300px;
    margin-top: -300px;
    background-color: rgba(11, 38, 86, 0.9);
  }

  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(11, 38, 86, 0.6);
  }
}

/* common button css end */

.after-bnnr-sec {
  position: relative;
  z-index: 2;
  margin-top: -22px;
}

.after-bnnr-rw {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -35px;
}

.after-bnnr-rw > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 0 35px;
}

.after-bnnr-txt-col {
  width: 51%;
}

.after-bnnr-img-col {
  width: 49%;
}

.after-bnnr-img-main {
  width: 100%;
  max-width: 530px;
  margin-left: auto;
  padding: 35px 1px 35px 63px;
  position: relative;
}

.after-bnnr-img-main .shpe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.after-bnnr-img-main .shpe img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.after-bnnr-img-wrppr {
  width: 100%;
  padding-top: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.after-bnnr-img-wrppr img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.sec-head {
  margin-bottom: 20px;
}

/* .sec-head text-center */

.sec-head h2 {
  text-transform: capitalize;
}

.after-bnnr-content p {
  max-width: 522px;
  margin-bottom: 45px;
}

.after-bnnr-content .cmn-btn {
  min-width: 209px;
}

.veneer-rw {
  --bs-gutter-x: 56px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.veneer-img-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.each-veneer-img-wrppr {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: calc(50% - 5px);
  border-radius: 6px 6px 6px 30px;
  overflow: hidden;
}

.each-veneer-img-wrppr:last-child {
  border-radius: 6px 30px 6px 6px;
}

.each-veneer-img-wrppr img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.veneer-txt-content {
  padding-right: 34px;
}

.our-service-sec {
  background-color: #ece9e7;
  position: relative;
  z-index: 1;
}

.our-service-head {
  text-align: center;
  max-width: 725px;
  width: 100%;
  margin: 0 auto 40px;
}

.service-item {
  padding: 0 15px;
}

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

.each-service-wpr {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  padding-top: 111%;
}

.each-service-wpr::before {
  position: absolute;
  content: "";
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0)),
    to(rgba(11, 39, 86, 0.9))
  );
  background: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(11, 39, 86, 0.9) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(11, 39, 86, 0.9) 100%
  );
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.each-service-wpr img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

.each-service-txt {
  position: absolute;
  bottom: 40px;
  left: 0;
  z-index: 1;
  text-align: center;
  width: 100%;
  line-height: 1;
}

.each-service-wpr a {
  font-family: var(--headingfont);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  text-transform: capitalize;
  color: var(--white);
}

.each-service-wpr a:hover {
  color: var(--green-heading);
}

.service-slider-main {
  position: relative;
}

.service-arrw {
  position: absolute;
  width: 42px;
  height: 42px;
  border: 1px solid #0b2756;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.service-arrw:hover {
  border-color: var(--green-heading);
  background-color: var(--green-heading);
}

.service-arrw.prev {
  left: -95px;
}

.service-arrw.next {
  right: -95px;
}

.service-btn-wrppr {
  padding-top: 62px;
  text-align: center;
}

.service-btn-wrppr .cmn-btn {
  min-width: 220px;
}

.adds-sec {
  position: relative;
  padding: 105px 0;
}

.adds-img-wrppr {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.adds-img-wrppr figure {
  width: 100%;
  height: 100%;
  margin: 0;
  position: relative;
}

.adds-img-wrppr figure::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(46.27%, #adc05a),
    color-stop(66.06%, rgba(24, 81, 188, 0))
  );
  background: -o-linear-gradient(
    left,
    #adc05a 46.27%,
    rgba(24, 81, 188, 0) 66.06%
  );
  background: linear-gradient(
    90deg,
    #adc05a 46.27%,
    rgba(24, 81, 188, 0) 66.06%
  );
  opacity: 0.55;
}

.adds-img-wrppr figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

.adds-content-main {
  position: relative;
  z-index: 2;
}

.adds-content-main .sec-head {
  max-width: 680px;
  margin: 0;
}

.adds-content-main .sec-head h2 {
  color: var(--white);
}

.adds-logo-wrppr {
  position: absolute;
  z-index: 2;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  max-width: 373px;
  width: 100%;
  right: 19%;
  -webkit-filter: blur(1.5px);
  filter: blur(1.5px);
  opacity: 0.05;
}

.adds-logo-wrppr img {
  width: 100%;
}

.footer-adjustment {
  margin-bottom: -5.938vw;
  padding-bottom: 12.188vw;
}

/* sd starts 14.11.2024  */
.footer-sec {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.footer-sec .footer-bg-wpr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.footer-sec .footer-bg-wpr .footer-bg-img {
  -webkit-mask-image: url(images/footer-shape.svg);
  mask-image: url(images/footer-shape.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  z-index: 2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.footer-sec .footer-bg-wpr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-mask-image: url(images/footer-shape.svg);
  mask-image: url(images/footer-shape.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  z-index: 3;
  width: 100%;
  height: 100%;
  background-color: var(--body-color);
  opacity: 0.85;
}

.footer-top-part {
  position: relative;
  z-index: 2;
  padding: 8.75vw 0 3.75vw;
}

.ftr-col-lft .ftr-social-wppr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ftr-col-lft .ftr-social-wppr li a {
  color: var(--body-color);
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: 100%;
  padding: 5px;
}

.ftr-col-lft .ftr-social-wppr li a:hover {
  background-color: var(--green-heading);
}

.ftr-col-lft .ftr-social-wppr li:not(:last-child) {
  margin-right: 12px;
}

.fttr-logo-wppr {
  margin-bottom: 10px;
}

.fttr-logo-wppr a {
  max-width: 358px;
  width: 100%;
}

.ftr-col-lft {
  width: 37%;
}

.ftr-col-rit {
  width: 63%;
}

.ftr-col-rit-row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.ftr-link-lists {
  max-width: 33.33%;
  width: auto;
}

.ftr-link-lists li a {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.ftr-link-lists li a:hover,
.ftr-link-lists li.current_page_item a {
  color: var(--green-heading);
}

.ftr-link-lists li {
  padding-left: 31px;
  position: relative;
  line-height: 1;
}

.ftr-link-lists li:hover::before,
.ftr-link-lists li.active::before {
  left: 3px;
}

.ftr-link-lists li:not(:last-child) {
  margin-bottom: 20px;
}

.ftr-link-lists li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 100%;
  background-image: url(images/rit-arw.svg);
  background-repeat: no-repeat;
  background-position: top 4px center;
  background-size: 14px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer-row {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.footer-btm-part {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
}

.footer-btm-part p {
  text-align: center;
  color: var(--white);
  line-height: 1;
}

.footer-btm-part p a {
  color: var(--white);
}

.footer-btm-part p a:hover {
  color: var(--green-heading);
}

/* testimonial section  */
.testimonial-innr-wppr {
  max-width: 737px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  -webkit-box-shadow: 0px 4px 24px rgba(65, 62, 168, 0.12);
  box-shadow: 0px 4px 24px rgba(65, 62, 168, 0.12);
  border-radius: 30px;
  padding: 55px 50px 64px 48px;
  background-color: var(--white);
}

.testimonial-content p {
  max-width: 627px;
  width: 100%;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 600;
}

.testimonial-slider-wppr .slick-track {
  padding: 20px 0;
}

.testimonial-content .top-qt {
  display: inline-block;
  margin-bottom: 10px;
  width: 21px;
  float: left;
}

.testimonial-content .btm-qt {
  display: none;
}

.testimonial-btn-arw .cmn-arw-btn {
  width: 42px;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid var(--body-color);
  border-radius: 100%;
}

.testimonial-slider-outer {
  position: relative;
  padding: 0 80px;
  margin: -20px 0;
}

.testimonial-btn-arw {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}

.slide-next-arw1 {
  position: absolute;
  top: 50%;
  left: auto;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.testimonial-btn-arw .cmn-arw-btn:hover {
  border-color: var(--green-heading);
  background-color: var(--green-heading);
}

.testimonial-btn-arw .cmn-arw-btn:hover i {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.testimonial-slider-sec {
  position: relative;
}

.top-yelw-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.btm-yelw-circle {
  position: absolute;
  bottom: -20%;
  right: 0;
  width: 20%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.testimonial-content .h4-title {
  margin-bottom: 12px;
}

/* smile gallery section  */
.smile-gallery-sec {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.smile-gallery-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--green-heading);
  opacity: 0.7;
  z-index: -1;
  pointer-events: none;
}

.smile-slider-outer {
  position: relative;
  z-index: 2;
}

.smile-img-wppr {
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  padding-top: 79%;
  position: relative;
}

.smile-img-wppr img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

.smile-each-card {
  padding: 0 11px;
}

.smile-slider-wppr .slick-list {
  margin: 0 -11px;
}

.smile-btn-arw .cmn-arw-btn2 {
  width: 42px;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid var(--white);
  border-radius: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.smile-btn-arw .cmn-arw-btn2:not(:last-child) {
  margin-right: 13px;
}

.smile-btn-arw .cmn-arw-btn2:hover {
  border-color: var(--green-heading);
  background-color: var(--green-heading);
}

.smile-btn-arw .cmn-arw-btn2:hover i {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.smile-btn-arw {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 54px;
}

.latest-blog-wppr {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
}

.blog-card-img {
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

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

.blog-card-txt {
  position: absolute;
  bottom: 36px;
  left: 23px;
  z-index: 2;
  max-width: 245px;
  width: 100%;
}

.blog-card-txt .h5-title {
  margin-bottom: 20px;
  color: var(--white);
  text-transform: capitalize;
}

.latest-blog-wppr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(24%, rgba(0, 0, 0, 0)),
    to(#0b2756)
  );
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 24%, #0b2756 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 24%, #0b2756 100%);
}

.blog-card-txt a {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-card-txt a i {
  line-height: 0;
  display: inline-block;
  margin-left: 8px;
}

.latest-blog-row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.blog-card-txt a:hover {
  color: var(--white);
}

.blog-card-txt a:hover i {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.latest-blog-sec {
  position: relative;
}

.lb-circle1 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 38%;
  height: 36%;
  z-index: -1;
  pointer-events: none;
}

.lb-circle2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 48%;
  z-index: -1;
  pointer-events: none;
}

/* smile consultation section */
.smile-conslt-col-left {
  width: 47.6%;
}

.smile-conslt-col-rit {
  width: 52.3%;
}

.smile-conslt-img-wpr {
  margin-left: -38px;
  padding-right: 37.2%;
  padding-bottom: 55px;
  position: relative;
}

.smile-conslt-img-wpr img {
  width: 100%;
  border-radius: 30px;
}

.smile-conslt-img-wpr .schdl-img2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52.3%;
}

.smile-rit-txtpart {
  padding-left: 45px;
}

.smile-conslt-btn-wrppr {
  margin-top: 25px;
}

.feed-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.feed-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-see-more-btn {
  padding-top: 68px;
  text-align: center;
}

.blog-see-more-btn .cmn-btn {
  min-width: 215px;
}

.latest-blog-sec .our-service-head {
  max-width: 759px;
}

.smile-consultation-sec {
  position: relative;
}

.schedl-shp1 {
  position: absolute;
  bottom: -40%;
  left: 0;
  width: 40%;
  z-index: -1;
  pointer-events: none;
}

.schedl-shp2 {
  position: absolute;
  top: -60%;
  right: 0;
  width: 40%;
  z-index: -1;
  pointer-events: none;
}

/* common pages banner section  */
.common-page-bnr-sec {
  min-height: 376px;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.common-page-bnr-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    color-stop(1.29%, rgba(0, 0, 0, 0)),
    color-stop(79.06%, rgba(2, 11, 29, 0.6))
  );
  background: -o-linear-gradient(
    right,
    rgba(0, 0, 0, 0) 1.29%,
    rgba(2, 11, 29, 0.6) 79.06%
  );
  background: linear-gradient(
    270deg,
    rgba(0, 0, 0, 0) 1.29%,
    rgba(2, 11, 29, 0.6) 79.06%
  );
}

.cmn-bnr-heading-wppr {
  position: relative;
  z-index: 2;
  max-width: 522px;
  width: 100%;
}

.cmn-bnr-heading-wppr h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-transform: capitalize;
}

.cmn-bnr-heading-wppr p {
  color: var(--white);
}

.dental-btm-txt {
  max-width: 1038px;
  margin: 0 auto 80px;
  text-align: center;
}

.ds-btm-sec {
  position: relative;
}

.ds-yl1 {
  position: absolute;
  bottom: -40%;
  left: 0;
  width: 40%;
  z-index: -1;
  pointer-events: none;
}

.ds-yl2 {
  position: absolute;
  top: -40%;
  right: 0;
  width: 40%;
  z-index: -1;
  pointer-events: none;
}

/* --- same day veneers page --- */
.same-day-pg-same-veers-sec .ds-yl1 {
  z-index: 1;
  width: 33%;
}

.implants-part {
  position: relative;
}

.same-day-pg-smile-sec .schedl-shp2 {
  top: -30%;
}

.schedule-circle {
  position: absolute;
  top: -10%;
  left: 0;
  width: 18%;
  z-index: -1;
  pointer-events: none;
}

.digonostic-part {
  padding-bottom: 135px;
  position: relative;
}

.dignostic-img-wppr {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
}

.dignostic-img-wppr img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.implants-part .schedl-shp1 {
  bottom: -40%;
  width: 30%;
  opacity: 0.24;
}

.dng-circle1 {
  width: 30%;
  position: absolute;
  bottom: -45%;
  right: 0;
  z-index: -1;
  pointer-events: none;
}

/* --- smile gallery page --- */
.smile-gallery-btm-part h2 {
  max-width: 586px;
  width: 100%;
  margin: 0 auto 23px;
}

.smile-gal-row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.smile-gap-disp-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 54px;
}

.smile-gallery-sec .sec-head {
  margin-bottom: 40px;
}

.smile-gap-card-outer-wppr {
  padding: 0 30px;
}

.smile-dignst-col1 {
  width: 40%;
}

.smile-dignst-col2 {
  width: 60%;
}

.smile-desnt-row {
  --bs-gutter-x: 40px;
}

.smile-diagnst-txt p {
  max-width: 600px;
  width: 100%;
}

.smile-gal-pg-dntst-sec {
  z-index: 2;
}

.smile-gal-pg-dntst-sec .schedl-shp2 {
  top: -45%;
}

.smile-gal-pg-dntst-sec .ds-yl1 {
  position: absolute;
  bottom: -70%;
  left: 0;
  width: 40%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.2;
}

.smile-gallery-btm-part {
  margin-bottom: 0;
}

.dental-btm-txt h2 {
  text-transform: capitalize;
}

.sm-gallery-btm-sec .ds-yl1 {
  bottom: -80%;
}

/* --- about us page --- */
.about-us-btm-txt h2 {
  max-width: 951px;
  width: 100%;
  margin: 0 auto 22px;
}

.about-us-btm-txt {
  margin-bottom: 0;
}

.about-doc-sec {
  position: relative;
}

.about-doc-sec .ds-yl2 {
  top: -80%;
}

.our-team-txt-wppr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 95px;
}

.our-team-txt-wppr .sec-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-bottom: 0;
}

.our-team-para {
  max-width: 678px;
  width: 100%;
  margin-left: auto;
}

.team-card-outer {
  background-color: #395076;
  position: relative;
  min-height: 360px;
  height: 100%;
  border-radius: 30px;
}

.team-card-top {
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 100%;
}

.team-card-btm {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  text-align: center;
  padding: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.team-card-btm:hover {
  background-color: var(--green-heading);
}

.team-card-btm:hover p,
.team-card-btm:hover .h5-title {
  color: var(--white);
}

.team-card-btm .h5-title {
  margin-bottom: 5px;
  text-transform: capitalize;
  color: var(--body-color);
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}

.team-card-btm p {
  font-size: 18px;
  color: var(--ognr-btn);
  font-weight: 400;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}

.team-row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.about-us-pg-team-block {
  padding-bottom: 112px;
}

.slid-1 {
  position: absolute;
  bottom: -70%;
  left: 0;
  width: 40%;
  pointer-events: none;
  z-index: -1;
}

.slid-2 {
  position: absolute;
  top: -60%;
  right: 0;
  width: 40%;
  pointer-events: none;
  z-index: -1;
}

.about-doc-sec .after-bnnr-img-col {
  padding: 0 27px;
}

.about-doc-sec .after-bnnr-txt-col {
  padding: 0 27px;
}

.about-doc-sec .after-bnnr-rw {
  margin: 0 -27px;
}

/* --- dr coleman page --- */
.dr-coleman-smile-gap-part .smile-diagnst-txt {
  max-width: 600px;
  width: 100%;
}

.drc-explore-sec .our-service-head {
  margin-bottom: 50px;
}

.drc-diagnst-sec {
  padding-bottom: 80px;
}

.drc-page-about-doctor .after-bnnr-img-col {
  padding: 0 22px;
}

.drc-page-about-doctor .aafter-bnnr-txt-col {
  padding: 0 22px;
}

.drc-page-about-doctor .after-bnnr-rw {
  margin: 0 -22px;
}

.ds-btm-sec.staff-page .ds-yl1 {
  bottom: -80%;
}

.ds-btm-sec.staff-page .ds-yl2 {
  top: -100%;
}

.gray-bg {
  background-color: #ece9e7;
}

.staff-person-rw {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -30px;
}

.staff-person-rw > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 0 30px;
}

.staff-person-txt-col {
  width: 56%;
}

.staff-person-img-col {
  width: 44%;
}

.staff-person-content-wrppr {
  padding-top: 50px;
}

.staff-person-content-wrppr h2 {
  margin-bottom: 10px;
}

.staff-person-content-wrppr .staff-post {
  display: block;
  line-height: 1;
  text-transform: capitalize;
  color: var(--ognr-btn);
  margin-bottom: 25px;
}

.staff-person-img-wrppr,
.staff-person-img-wrppr img {
  width: 100%;
}

.staff-person-sec.shpe {
  position: relative;
  z-index: 1;
}

.staff-light {
  position: absolute;
  width: 40%;
  top: -50%;
  left: 0;
  opacity: 0.1;
  z-index: -1;
  pointer-events: none;
}

.staff-light-two {
  position: absolute;
  width: 40%;
  top: -70%;
  right: 0;
  opacity: 0.1;
  z-index: -1;
  pointer-events: none;
}

.new-digonostic-part {
  position: relative;
}

.new-digonostic-part .staff-light {
  top: auto;
  bottom: -60%;
}

.latest-blog-rw {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -20px;
}

.latest-blog-rw > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 0 20px;
}

.latest-blog-img-col {
  width: 42%;
}

.latest-blog-txt-col {
  width: 58%;
}

.latest-blog-sec .sec-head {
  margin-bottom: 75px;
}

.latest-blog-img-main {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-start;
}

.each-latest-blog-img-wrppr {
  width: 100%;
  overflow: hidden;
  -webkit-box-shadow: 0px 4px 24px rgba(65, 62, 168, 0.12);
  box-shadow: 0px 4px 24px rgba(65, 62, 168, 0.12);
  border-radius: 30px;
}

.latest-blog-img-main .each-latest-blog-img-wrppr:not(:last-child) {
  margin-bottom: 20px;
}

.each-latest-blog-img-wrppr img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.latest-blog-content {
  padding: 50px 47px 37px 33px;
  background: var(--white);
  -webkit-box-shadow: 0px 4px 24px rgba(65, 62, 168, 0.12);
  box-shadow: 0px 4px 24px rgba(65, 62, 168, 0.12);
  border-radius: 30px;
}

.latest-blog-content h3 {
  font-weight: 700;
  font-size: 20px;
  text-transform: capitalize;
  color: var(--body-color);
  margin-bottom: 22px;
  line-height: 1.2;
}

.latest-blog-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  text-transform: capitalize;
  color: var(--body-color);
}

.latest-blog-btn-wrppr {
  padding-top: 80px;
  text-align: center;
}

.latest-blog-btn-wrppr .cmn-btn {
  min-width: 157px;
}

.relate-post-sec .sec-head {
  margin-bottom: 60px;
}

.insight-sec .sec-head {
  max-width: 652px;
  margin: 0 auto;
}

.blog-play-btn {
  width: 68px;
  height: 68px;
  background: var(--white);
  border: 6px solid rgba(255, 255, 255, 0.21);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  -webkit-animation: wave infinite 1.2s linear;
  animation: wave infinite 1.2s linear;
}

@-webkit-keyframes wave {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.21),
      0 0 0 2px rgba(255, 255, 255, 0.21), 0 0 0 15px rgba(255, 255, 255, 0.21);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.21),
      0 0 0 2px rgba(255, 255, 255, 0.21), 0 0 0 15px rgba(255, 255, 255, 0.21);
  }

  100% {
    -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.21),
      0 0 0 15px rgba(255, 255, 255, 0.21), 0 0 0 30px rgba(11, 165, 255, 0);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.21),
      0 0 0 15px rgba(255, 255, 255, 0.21), 0 0 0 30px rgba(11, 165, 255, 0);
  }
}

@keyframes wave {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.21),
      0 0 0 2px rgba(255, 255, 255, 0.21), 0 0 0 15px rgba(255, 255, 255, 0.21);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.21),
      0 0 0 2px rgba(255, 255, 255, 0.21), 0 0 0 15px rgba(255, 255, 255, 0.21);
  }

  100% {
    -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.21),
      0 0 0 15px rgba(255, 255, 255, 0.21), 0 0 0 30px rgba(11, 165, 255, 0);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.21),
      0 0 0 15px rgba(255, 255, 255, 0.21), 0 0 0 30px rgba(11, 165, 255, 0);
  }
}

.blog-card-rw {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.white-bg {
  background-color: var(--white);
}

.insight-sec.patient-sec .staff-light-two {
  top: -40%;
}

.insight-sec.patient-sec .sec-head {
  max-width: 1038px;
}

.insight-sec.patient-sec .sec-head h2 {
  max-width: 687px;
  margin: 0 auto 35px;
}

.appointment-rw {
  --bs-gutter-x: 30px;
}

.appointment-img-wrppr {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}

.appointment-img-wrppr img {
  width: 100%;
}

.appointment-content {
  padding-top: 30px;
  padding-left: 15px;
}

.appointment-content .h2-title a {
  color: var(--body-color);
}

.appointment-content .h2-title a:hover {
  color: var(--ognr-btn);
}

.appointment-content .cmn-btn {
  min-width: 180px;
}

.appointment-sec.secnd {
  position: relative;
  z-index: 1;
}

.outtr {
  padding-bottom: 150px;
}

.slid-1.new {
  bottom: -40%;
}

.make-appmnt-sec {
  background-color: #ece9e7;
}

.make-appmnt-sec .sec-head {
  margin-bottom: 53px;
  text-align: center;
}

.make-appmnt-form-wpr {
  padding: 50px;
  background-color: var(--white);
  border-radius: 30px;
  max-width: 1042px;
  margin: 0 auto;
}

.make-appmnt-form-wpr .form-row {
  --bs-gutter-y: 30px;
}

.make-appmnt-form-wpr .frm-grp > label {
  margin-bottom: 18px;
  font-family: var(--headingfont);
  display: block;
}

.gnrl-enqry-sec {
  position: relative;
  z-index: 1;
}

.gnrl-enqry-sec .staff-light {
  top: auto;
  bottom: -40%;
}

.gnrl-enqry-sec .sec-head {
  text-align: center;
  margin-bottom: 55px;
}

.gnrl-enqry-form-wpr {
  -webkit-box-shadow: 0px 4px 24px rgba(65, 62, 168, 0.12);
  box-shadow: 0px 4px 24px rgba(65, 62, 168, 0.12);
}

.faq-sec {
  position: relative;
}

.faq-sec .sec-head {
  text-align: center;
  margin-bottom: 40px;
}

.faq-sec-para {
  text-align: center;
  margin: 0 auto 60px;
  max-width: 1038px;
}

.faq-main-wpr .faq-item {
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  overflow: hidden;
}

.faq-main-wpr .faq-item .faq-hdr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 23px 16px 23px 18px;
  background-color: var(--white);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.faq-main-wpr .faq-item .faq-hdr.active {
  padding-bottom: 15px;
}

.faq-main-wpr .faq-item .faq-hdr i {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  border: 1px solid var(--ognr-btn);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 7px;
  margin-left: auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.faq-main-wpr .faq-item .faq-hdr i.rotate {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq-main-wpr .faq-item .faq-hdr h3 {
  font-size: 20px;
  padding-right: 30px;
  margin: 0;
  line-height: 1.3;
}

.faq-main-wpr .faq-item .faq-cntnt {
  padding: 0 25px 28px 18px;
  font-size: 18px;
  display: none;
}

.faq-row.row {
  --bs-gutter-x: 30px;
}

.faq-row.row .faq-item {
  margin-bottom: 26px;
}

.faq-row.row .faq-item:last-child {
  margin-bottom: 0;
}

.our-service-sec.latest-blog-sec .sec-head {
  margin-bottom: 50px;
}

.digonostic-part.extra .dng-circle1 {
  opacity: 0.24;
  bottom: -70%;
}

.smile-gal-pg-dntst-sec.extra .schedl-shp2 {
  top: -115%;
  opacity: 0.1;
}

.appointment-sec.secnd .staff-light {
  top: 30%;
  left: -15%;
}

.serv-row {
  --bs-gutter-x: 30px;
}

.after-bnnr-content.extra p {
  margin-bottom: 25px;
}

.after-bnnr-content.extra p:last-child {
  margin-bottom: 0;
}

.after-bnnr-content.extra {
  margin-bottom: 48px;
}

.smile-gallery-sec.dr-coleman-smile-gap-part .sec-head.extra {
  margin-bottom: 20px;
}

.disp-mobile-only {
  display: none;
}

.bnnr-content-wrppr .h2-title,
.smile-rit-txtpart h2 {
  text-transform: capitalize;
}

.latest-blog-sec .sec-head {
  margin-bottom: 50px;
}

.footer-btm-part p {
  font-size: 17px;
  font-weight: 400;
  text-transform: capitalize;
}

.smile-consult-row {
  align-items: center;
}

.cmn-arw-btn i {
  line-height: 0;
}

.top-list li.current_page_item a {
  color: var(--ognr-btn);
}

.make-appmnt-form-wpr .frm-grp > label {
  text-transform: capitalize;
}

input[type="date"] {
  text-transform: uppercase;
}

.smile-gallery-sec .smile-btn-arw .cmn-arw-btn2 {
  border-color: var(--body-color);
}

.smile-gallery-sec .smile-btn-arw .cmn-arw-btn2 img {
  filter: brightness(0) saturate(100%) invert(11%) sepia(20%) saturate(6976%)
    hue-rotate(206deg) brightness(98%) contrast(97%);
  transition: 0.3s all;
}

.smile-gallery-sec .smile-btn-arw .cmn-arw-btn2:hover {
  background-color: var(--body-color);
}

.smile-gallery-sec .smile-btn-arw .cmn-arw-btn2:hover img {
  filter: none;
}

/* Contact page form design */
.make-appmnt-form-wpr .gform-theme--foundation .gfield .ginput_password,
.make-appmnt-form-wpr .gform-theme--foundation .gfield input,
.make-appmnt-form-wpr .gform-theme--foundation .gfield select,
.make-appmnt-form-wpr .gform-theme--foundation .gfield textarea {
  background-color: #f7f7f7;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 7px;
  color: var(--body-color);
  border: 1px solid #d4d4d4;
  height: 54px;
  padding: 0 15px;
  box-shadow: none !important;
  outline: none !important;
  font-size: inherit;
  resize: none;
}

.make-appmnt-form-wpr .gform-theme--foundation .gfield textarea {
  padding: 23px 15px;
  height: 120px;
}

.make-appmnt-form-wpr .gform-theme--foundation .gform-field-label {
  margin-bottom: 18px;
  font-family: var(--headingfont);
  display: block;
  text-transform: capitalize;
  font-weight: 600;
  font-style: normal;
  color: var(--body-color);
  font-size: inherit;
  line-height: 1.4;
}

.make-appmnt-form-wpr .gform-theme--foundation .gform_fields {
  row-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.make-appmnt-form-wpr .gform-theme--foundation .gfield input.datepicker {
  position: relative;
  background: url(images/calendar-icon.svg) no-repeat calc(100% - 13px) center
    #f7f7f7;
  background-size: 18px;
  padding-right: 40px;
  color: #b9b9b9;
}

.make-appmnt-form-wpr
  .gform-theme--foundation
  .gfield
  [name*="input_"]::-webkit-input-placeholder {
  opacity: 1;
  color: #b9b9b9;
}

.make-appmnt-form-wpr
  .gform-theme--foundation
  .gfield
  [name*="input_"]:-ms-input-placeholder {
  opacity: 1;
  color: #b9b9b9;
}

.make-appmnt-form-wpr
  .gform-theme--foundation
  .gfield
  [name*="input_"]::-moz-placeholder {
  opacity: 1;
  color: #b9b9b9;
}

.make-appmnt-form-wpr
  .gform-theme--foundation
  .gfield
  [name*="input_"]:-moz-placeholder {
  opacity: 1;
  color: #b9b9b9;
}

.make-appmnt-form-wpr .gform-footer {
  justify-content: center !important;
}

.make-appmnt-form-wpr .gform-footer [type="submit"] {
  background: var(--ognr-btn) !important;
  color: var(--white) !important;
  height: 48px !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  border-radius: 100px !important;
  padding-left: 26px !important;
  padding-right: 26px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
  -webkit-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}

.make-appmnt-form-wpr .gform-footer [type="submit"]:where(:hover, :focus) {
  background: var(--green-heading) !important;
  color: var(--body-color) !important;
}

.gform_confirmation_message {
  color: green !important;
  font-size: 24px !important;
  text-align: center !important;
}

.gform-theme--foundation .ginput_complex .ginput_container_time {
  inline-size: 50% !important;
}

/* Hide the spin buttons in WebKit browsers */
.gform_wrapper input[type="number"]::-webkit-inner-spin-button,
.gform_wrapper input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

.gform_wrapper input[type="number"] {
  -moz-appearance: textfield !important;
  appearance: textfield !important;
}

.gform-theme--foundation
  .ginput_complex
  .ginput_container_time
  [type="number"] {
  position: relative;
  background: url(images/time-icon.svg) no-repeat calc(100% - 13px) center
    #f7f7f7;
  background-size: 18px;
  padding-right: 40px;
}

.staff-person-img-wrppr {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 550px;
}

.staff-person-sec:nth-child(even) .staff-person-img-wrppr:before {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: calc(100% - 50px);
  border-radius: 30px;
  object-fit: cover;
  /* background-image: url(https://cosdentalstg.wpenginepowered.com/wp-content/themes/colemandental/images/blue-dr-bg.png); */
  /* background: #0471d0;
  background: #cceefa; */
  background-image: linear-gradient(180deg, #2189e3, #0b2756);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.staff-person-sec:nth-child(odd) .staff-person-img-wrppr:before {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: calc(100% - 50px);
  border-radius: 30px;
  object-fit: cover;
  /* background-image: url(https://cosdentalstg.wpenginepowered.com/wp-content/themes/colemandental/images/lg-dr-bg.png); */
  /* background: #0471d0;
  background: #cceefa; */
  background-image: linear-gradient(180deg, #2189e3, #0b2756);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.staff-person-img-wrppr .stff-img1 {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  margin-bottom: 1px;
}

.photo-gallery [class*="col-"] {
  display: none;
}

.smile-gallery-sec::before {
  background-color: rgb(191 215 48 / 30%);
}

.smile-gallery-sec {
  background-image: none !important;
}

.smile-gallery-sec .sec-head.text-white h2 {
  color: #0b2756 !important;
}

body.page-template-patient-story .dental-btm-txt .ti-widget {
  margin-bottom: 30px !important;
}

body.page-template-patient-story .dental-btm-txt iframe {
  width: 100% !important;
  height: 600px !important;
  overflow: auto !important;
}

.ftr-address-wrpr p {
  color: var(--white);
  font-size: 20px;
}

.ftr-phn-wppr a {
  color: var(--green-heading);
  font-size: 20px;
}

.ftr-phn-wppr a:hover {
  color: var(--ognr-btn);
}

footer .ftr-social-wppr {
  margin-top: 15px;
}

.footer-adjustment {
  padding-bottom: 12.188vw;
  margin-bottom: -7.938vw;
}

.team-card-top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.team-card-top {
  position: absolute;
  top: -40px;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}

.team-card-btm {
  bottom: -1px;
}

.doc-logo-outer {
  margin-top: 40px;
}

.doc-logo-wpr {
  width: 100%;
  height: 100px;
  margin: 0 auto;
  padding: 0 15px;
  border-radius: 10px;
}

.doc-logo-wpr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.doc-each-logo {
  padding: 15px 10px;
}

.doc-logo-slide-wppr .slick-list {
  margin: -15px -10px;
}

.blog_img_vid_wrppr {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
  padding-top: 137%;
}
.blog_vid_hlder {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 30px;
  overflow: hidden;
}
.blog_vid_hlder iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.blog_vid_hlder.playing {
  z-index: 1;
}
.blog_img_vid_wrppr .latest-blog-wppr {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.blog_vid_hlder.playing + .latest-blog-wppr {
  z-index: -1;
}
.blog_img_vid_wrppr .blog-card-txt h3 a {
  color: var(--white);
}
.blog_img_vid_wrppr .blog-card-txt h3 a:hover {
  color: var(--green-heading);
}
.blog_img_vid_wrppr .blog-card-img {
  position: relative;
}
.blog_img_vid_wrppr .blog-card-img img {
  -o-object-position: top center;
  object-position: top center;
}
.blog_img_vid_wrppr .blog-card-img a {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.blog_img_vid_wrppr .latest-blog-wppr::before {
  pointer-events: none;
  z-index: 1;
}
.back_to_sec {
  position: relative;
  z-index: 1;
}
.back_to_sec .slid-1 {
  bottom: 0;
  width: 15%;
}
.back_to_sec .slid-2 {
  top: 0;
  width: 15%;
}
.page_cntnt_box {
  text-align: center;
  max-width: 940px;
  margin: 0 auto;
}
.pge_bttn_wrppr {
  margin-top: 20px;
}
.blog_img_vid_wrppr .blog-card-txt h3 a {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  display: inline-block;
  text-transform: inherit;
}
.single-post-content-column {
  width: 100%;
}
.smile-gallery-new-cls [class*="col-"] {
  display: none;
}
.dr-detail-txt img {
  border-radius: 30px;
}
.contact-map-sec iframe {
  width: 100%;
}

.latest-blog-rw.blog-details .single-post-content-column {
  width: 70%;
}
.inr-category {
  width: 30%;
}
.inr-category h3 {
  font-size: 25px;
  margin-bottom: 20px;
}
.inr-category-wpr {
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 25px 25px 30px;
  background: var(--white);
  box-shadow: 0px 4px 24px rgba(65, 62, 168, 0.12);
  border-radius: 30px;
  height: 100%;
}
.inr-category-list li {
  line-height: 1;
  margin-bottom: 15px;
}
.inr-category-list li:last-child {
  margin: 0;
}
.inr-category-list li a {
  font-size: 17px;
  padding-left: 30px;
  position: relative;
  color: var(--body-color);
  transition: 0.2s;
}
.inr-category-list li a:after {
  background: url(images/category-list-icon.svg) no-repeat center center;
  position: absolute;
  content: "";
  top: 0px;
  left: 0;
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(14%) sepia(14%) saturate(6695%)
    hue-rotate(196deg) brightness(92%) contrast(101%);
  background-size: 18px;
}
.inr-category-list li a:hover {
  color: var(--ognr-btn);
}
.inr-category-list li a:hover:after {
  filter: brightness(0) saturate(100%) invert(78%) sepia(27%) saturate(6628%)
    hue-rotate(346deg) brightness(100%) contrast(95%);
}

.latest-blog-content {
  padding-top: 30px !important;
}
.latest-blog-content figure.blog-featured-img {
  margin-bottom: 30px;
}
.latest-blog-content figure.blog-featured-img img {
  border-radius: 20px;
}
.latest-blog-content a {
  color: #92a90c;
}
.latest-blog-content a:hover {
  text-decoration: underline !important;
}
/* Initially, show only part of the content */
#blog-details-cont {
  max-height: 700px; /* Adjust as needed */
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* When expanded, remove the height limit */
#blog-details-cont.expanded {
  max-height: none;
}

body.single-post .relate-post-sec .blog-card-img {
  padding-top: 120%;
  position: relative;
  height: auto;
  overflow: hidden;
}
body.single-post .relate-post-sec .blog-card-img img {
  position: absolute;
  top: 0;
  left: 0;
}
body.single-post .relate-post-sec .blog-card-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(24%, rgba(0, 0, 0, 0)),
    to(#0b2756)
  );
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 24%, #0b2756 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 24%, #0b2756 100%);
  z-index: 1;
}

body.single-post .veneer-sec .latest-blog-content h3 {
  font-size: 26px;
  margin-bottom: 15px;
}
body.single-post .veneer-sec .latest-blog-content h4 {
  font-size: 23px;
  margin-bottom: 15px;
}
body.single-post .veneer-sec .latest-blog-content h5 {
  margin-bottom: 15px;
}
body.single-post .veneer-sec .latest-blog-content h6 {
  font-size: 18px;
  margin-bottom: 15px;
}
body.single-post .veneer-sec .latest-blog-content ol,
body.single-post .veneer-sec .latest-blog-content ul {
  margin-bottom: 10px;
}
body.single-post .veneer-sec .latest-blog-content ol li,
body.single-post .veneer-sec .latest-blog-content ul li {
  margin-bottom: 7px;
}
body.single-post .veneer-sec .latest-blog-content p {
  margin-bottom: 10px;
  text-transform: inherit;
}
body.single-post .veneer-sec .latest-blog-content ul li {
  position: relative;
  padding-left: 16px;
  font-size: 18px;
}
body.single-post .veneer-sec .latest-blog-content ul li:after {
  position: absolute;
  content: "";
  top: 11px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--black);
}

.testimonial-content {
  max-height: 220px;
  min-height: 220px;
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-width: thin; /* Makes scrollbar thinner */
  scrollbar-color: var(--green-heading) #f1f1f1; /* Thumb color and track color */
}

/* WebKit-based browsers (Chrome, Edge, Safari) */
.testimonial-content::-webkit-scrollbar {
  width: 5px; /* Scrollbar width */
}

.testimonial-content::-webkit-scrollbar-track {
  background: transparent; /* Track background */
  border-radius: 10px;
  border: 0;
}

.testimonial-content::-webkit-scrollbar-thumb {
  background: var(--green-heading); /* Thumb color using CSS variable */
  border-radius: 10px;
}

/* Microsoft Edge (Legacy) */
@supports (-ms-overflow-style: none) {
  .testimonial-content {
    scrollbar-face-color: var(--green-heading);
    scrollbar-track-color: #f1f1f1;
  }
}

.testimonial-content::-webkit-scrollbar-thumb {
  background: var(--green-heading);
  border-radius: 10px;
}

.testimonial-content::-webkit-scrollbar {
  width: 5px;
}

.smile-img-wppr {
  padding-top: 140%;
}

.make-appmnt-form-wpr .ginput_container_textarea textarea {
  overflow-x: hidden;
  word-wrap: break-word;
}

.page-template-default .dr-detail-txt h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
}
.page-template-default .dr-detail-txt a {
  color: var(--body-color);
  text-decoration: underline !important;
}
.page-template-default .dr-detail-txt a:hover {
  color: var(--green-heading);
}
.page-template-default .dr-detail-txt ul {
  padding-left: 40px;
  margin-bottom: 15px;
  list-style: inherit;
}
.page-template-default ul .dr-detail-txt li,
.page-template-default ol .dr-detail-txt li {
  margin-bottom: 5px;
}

/* support starts 03.04.2025  */
/* star rating  - start */
.pricini-sec {
  overflow: hidden;
}

.Stars {
  --percent: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-size: var(--star-size);
  font-family: var(--avenir-regular-font);
  line-height: 1;
}
.Stars::before {
  content: "★★★★★";
  letter-spacing: 3px;
  background: linear-gradient(
    90deg,
    var(--star-background) var(--percent),
    var(--star-color) var(--percent)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--avenir-regular-font);
  font-style: normal;
  line-height: 1;
}
/* star rating end  */
.google-box-innr {
  background-color: #f4f4f4;
  padding: 30px 20px;
  border-radius: 10px;
}
.google-icon {
  width: 20px;
  height: 20px;
  margin-left: auto;
}
.google-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-img-part {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.user-img-wppr {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
}
.user-img-wppr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-usr-rating {
  text-align: left;
  margin-bottom: 10px;
}
.review-para {
  text-align: left;
}
.review-user-img {
  display: flex;
  align-items: center;
}
.user-name-txt {
  margin-left: 15px;
}
.user-name-txt p {
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
}
.google-each-box:not(:last-child) {
  margin-bottom: 20px;
}
.user-first-txt {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--body-color);
  border-radius: 50%;
  line-height: 1;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  padding: 5px;
}
.review-load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  /* margin-bottom: 30px; */
}
.review-main-outer {
  margin-bottom: 30px;
}
.review-para p {
  font-size: 15px;
  color: var(--black);
}
/* support ends 03.04.2025  */

.google-each-box {
  /* margin-bottom: 30px; */
  display: none;
}
/* ========== responsive css =========== */

@media (min-width: 1025px) {
  /* navbar*/
  .navbar-nav .clickD {
    display: none;
  }

  .navbar-nav li.menu-item-has-children:hover > .sub-menu {
    display: block;
  }
}

/* ---- container ---- */

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
  }
}

@media (min-width: 2400px) {
  .footer-adjustment {
    margin-bottom: -2.938vw;
    padding-bottom: 5.188vw;
  }

  .footer-top-part {
    padding: 6.75vw 0 2.75vw;
  }
}

@media (max-width: 1366px) {
  .smile-conslt-img-wpr {
    margin-left: 0;
  }

  .service-arrw.prev {
    left: -20px;
  }

  .service-arrw.next {
    right: -20px;
  }

  .service-slider-main {
    padding: 0 40px;
  }

  .after-bnnr-rw {
    margin: 0 -30px;
  }

  .after-bnnr-rw > * {
    padding: 0 30px;
  }

  .footer-adjustment {
    margin-bottom: -7.938vw;
  }

  .smile-gallery-explore-sec .service-slider-main {
    padding: 0;
  }
}

@media (max-width: 1199px) {
  /* --- index page --- */
  .navbar-brand {
    max-width: 220px;
  }

  .navbar-nav > li > a {
    font-size: 16px;
  }

  .navbar-nav > li {
    margin: 0 10px;
  }

  .patient-list-wrppr li a {
    font-size: 16px;
  }

  .top-hdr-right-part .top-list li a {
    font-size: 16px;
  }

  .bnnr-sec {
    padding: 70px 0 200px;
  }

  .bnnr-subtitle {
    font-size: 22px;
  }

  h1,
  .h1-title {
    font-size: 42px;
  }

  h2,
  .h2-title {
    font-size: 38px;
  }

  .cmn-btn {
    min-width: 160px;
    padding: 14px 18px;
    font-size: 16px;
  }

  .after-bnnr-rw {
    margin: 0 -15px;
  }

  .after-bnnr-rw > * {
    padding: 0 15px;
  }

  .after-bnnr-img-main {
    max-width: 400px;
    padding: 30px 1px 30px 45px;
  }

  .after-bnnr-content p {
    max-width: 100%;
    margin-bottom: 25px;
  }

  .cmn-gap {
    padding: 60px 0;
  }

  .veneer-rw {
    --bs-gutter-x: 30px;
  }

  body {
    font-size: 18px;
  }

  .service-slider-main {
    padding: 0 25px;
  }

  .service-item {
    padding: 0 10px;
  }

  .service-slider .slick-list {
    margin: 0 -10px;
  }

  .each-service-wpr a {
    font-size: 18px;
  }

  h5,
  .h5-title {
    font-size: 18px;
  }

  .blog-card-txt a {
    font-size: 16px;
  }

  .ftr-link-lists li a {
    font-size: 18px;
  }

  .sub-menu {
    border-radius: 15px;
  }

  .bnnr-content-wrppr {
    max-width: 550px;
  }

  .service-btn-wrppr {
    padding-top: 40px;
  }

  .each-service-wpr {
    border-radius: 15px;
  }

  .our-service-head {
    margin: 0 auto 30px;
  }

  .service-arrw {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .service-slide-arrw-wrppr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
  }

  .service-arrw.prev {
    left: 0;
    margin-right: 15px;
  }

  .smile-rit-txtpart {
    padding-left: 15px;
  }

  .smile-conslt-img-wpr {
    padding-right: 25%;
    padding-bottom: 45px;
  }

  .smile-consult-row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .adds-logo-wrppr {
    max-width: 250px;
    right: 15%;
  }

  .latest-blog-sec .sec-head {
    margin-bottom: 35px;
  }

  .blog-see-more-btn {
    padding-top: 40px;
  }

  .smile-btn-arw {
    margin-top: 30px;
  }

  .testimonial-innr-wppr {
    max-width: 685px;
    padding: 35px 30px;
  }

  .footer-adjustment {
    margin-bottom: -6.5vw;
    padding-bottom: 11vw;
  }

  .footer-top-part {
    padding: 7.5vw 0 3vw;
  }

  .ftr-col-lft {
    width: 35%;
  }

  .ftr-col-rit {
    width: 65%;
  }

  .footer-btm-part {
    padding: 15px 0;
  }

  .staff-person-rw > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding: 0 25px;
  }

  .staff-person-rw {
    margin: 0 -25px;
  }

  .common-page-bnr-sec {
    min-height: 300px;
  }

  .latest-blog-btn-wrppr {
    padding-top: 50px;
    text-align: center;
  }

  .dental-btm-txt {
    margin: 0 auto 60px;
  }

  .veneer-txt-content {
    padding-right: 0;
  }

  .digonostic-part {
    padding-bottom: 60px;
  }

  .dignostic-img-wppr {
    border-radius: 15px;
  }

  .testimonial-innr-wppr {
    border-radius: 15px;
  }

  .smile-gallery-btm-part,
  .about-us-btm-txt {
    margin-bottom: 0;
  }

  .about-doc-sec .after-bnnr-rw {
    margin: 0 -20px;
  }

  .about-doc-sec .after-bnnr-img-col {
    padding: 0 20px;
  }

  .about-doc-sec .after-bnnr-txt-col {
    padding: 0 20px;
  }

  .our-team-txt-wppr {
    margin-bottom: 70px;
  }

  .team-card-outer {
    min-height: 320px;
    border-radius: 20px;
  }

  .team-card-btm {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 15px;
  }

  .outtr {
    padding-bottom: 100px;
  }

  .after-bnnr-content.extra {
    margin-bottom: 25px;
  }

  .staff-person-img-wrppr {
    height: 480px;
  }

  .staff-person-img-wrppr.odd-col {
    padding-right: 0;
  }

  body.page-template-patient-story .dental-btm-txt iframe {
    height: 550px !important;
  }

  .ftr-phn-wppr a {
    font-size: 18px;
  }

  .ftr-address-wrpr p {
    font-size: 18px;
  }

  .footer-adjustment {
    margin-bottom: -8.5vw;
  }

  .team-card-top {
    border-radius: 20px;
  }

  .contact-map-sec {
    padding-top: 30px;
  }

  .inr-category-wpr {
    padding: 27px 18px 30px;
  }
}

@media (max-width: 1024px) {
  /* navbar*/
  .navbar-nav .clickD {
    position: absolute;
    right: 0;
    top: 17px;
    width: 20px;
    height: 20px;
    background: url(images/dwn-arw1.svg) center center no-repeat;
    display: block;
    background-size: 10px;
    cursor: pointer;
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-filter: brightness(0) saturate(100%) invert(53%) sepia(97%)
      saturate(426%) hue-rotate(351deg) brightness(103%) contrast(95%);
    filter: brightness(0) saturate(100%) invert(53%) sepia(97%) saturate(426%)
      hue-rotate(351deg) brightness(103%) contrast(95%);
  }

  .navbar-nav > li.menu-item-has-children.current-menu-item .clickD {
    -webkit-filter: brightness(0) saturate(100%) invert(53%) sepia(97%)
      saturate(426%) hue-rotate(351deg) brightness(103%) contrast(95%);
    filter: brightness(0) saturate(100%) invert(53%) sepia(97%) saturate(426%)
      hue-rotate(351deg) brightness(103%) contrast(95%);
  }

  .sub-menu > li.menu-item-has-children .clickD {
    top: 8px;
    right: 5px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  .sub-menu > li.menu-item-has-children .clickD.toggled {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .navbar-nav > li.menu-item-has-children {
    padding-right: 20px;
  }

  .sub-menu > li.menu-item-has-children > a {
    padding-right: 20px;
  }

  .sub-menu.show {
    display: block;
  }

  .navbar-nav > li {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .navbar-nav > li.current-menu-item > a:after,
  .navbar-nav > li > a:after,
  .navbar-nav > li.menu-item-has-children > a:after {
    width: 100%;
    opacity: 0;
  }

  .navbar-nav > li.current-menu-item > a:after,
  .navbar-nav > li > a:hover:after,
  .navbar-nav > li.menu-item-has-children:hover > a:after {
    width: 100%;
    opacity: 1;
  }

  /* navbar end*/
}

@media (max-width: 991px) {
  /* navbar*/
  .navbar-toggler {
    position: relative;
    width: 33px;
    margin-left: auto;
    height: 28px;
    padding: 0;
    outline: none !important;
    border: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }

  .stick,
  .stick:after,
  .stick:before {
    width: 30px;
    height: 2px;
    background: #000;
    position: absolute;
    left: 0;
    top: auto;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    border-radius: 5px;
  }

  .stick:before {
    content: "";
    top: -10px;
    left: 0;
  }

  .stick:after {
    content: "";
    top: 10px;
    left: 0;
  }

  .stick.open {
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
    background: transparent;
  }

  .stick.open:before {
    -webkit-transform: rotate(45deg) translate(42px, -28px);
    -ms-transform: rotate(45deg) translate(42px, -28px);
    transform: rotate(45deg) translate(42px, -28px);
    left: 2px;
  }

  .stick.open:after {
    -webkit-transform: rotate(-45deg) translate(42px, 28px);
    -ms-transform: rotate(-45deg) translate(42px, 28px);
    transform: rotate(-45deg) translate(42px, 28px);
    left: 2px;
  }

  .navbar-nav .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu > li.menu-item-has-children .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  .sub-menu,
  .navbar-nav > li > .sub-menu .sub-menu {
    position: relative;
    width: 100%;
    left: inherit;
    top: inherit;
    border: none;
    right: inherit;
  }

  .navbar-nav > li.menu-item-has-children {
    padding-right: 0;
  }

  .navbar-nav > li {
    margin: 0;
    padding: 0;
  }

  .navbar-nav > li > a {
    padding: 8px 20px;
    display: inline-block;
    width: 100%;
  }

  .navbar-nav li.menu-item-has-children > a {
    padding-right: 30px;
  }

  .sub-menu > li > a {
    padding-left: 40px;
  }

  .sub-menu .sub-menu > li > a {
    padding-left: 60px;
  }

  .sub-menu .sub-menu .sub-menu > li > a {
    padding-left: 80px;
  }

  .navbar-nav > li > a:after {
    bottom: 0;
  }

  /* navbar end*/

  /* push nav */

  .navbar-collapse {
    background: #fff;
    position: fixed;
    top: 0;
    height: 100% !important;
    width: 290px;
    overflow-y: auto;
    -webkit-transition: inherit !important;
    -o-transition: inherit !important;
    transition: inherit !important;
    right: 0;
    margin: 0;
    display: block !important;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform 0.2s ease-in-out !important;
    -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
    transition: -webkit-transform 0.2s ease-in-out !important;
    -o-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out !important;
    z-index: 100;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    display: block !important;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: transform 0.2s ease-in-out !important;
    -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
    transition: -webkit-transform 0.2s ease-in-out !important;
    -o-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out !important;
  }

  .navbar-collapse .navbar-nav {
    margin: 80px 0 0;
    padding: 0 0 40px 0;
  }

  .navbar-collapse .navbar-toggler {
    display: block;
    right: 20px;
    top: 20px;
    position: absolute;
  }

  #navoverlay.open {
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: all;
    -webkit-transition: background-color 0.5s linear;
    -o-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
  }

  body.open-nav,
  html.open-nav {
    overflow: hidden;
  }

  /* push nav end */

  /* --- index page --- */

  h1,
  .h1-title {
    font-size: 38px;
  }

  h2,
  .h2-title {
    font-size: 34px;
  }

  body {
    font-size: 17px;
  }

  .cmn-gap {
    padding: 50px 0;
  }

  .each-service-wpr a {
    font-size: 16px;
  }

  .our-service-head {
    margin: 0 auto 30px;
  }

  h5,
  .h5-title {
    font-size: 16px;
  }

  h4,
  .h4-title {
    font-size: 22px;
  }

  .testimonial-content p {
    font-size: 17px;
  }

  .ftr-link-lists li a {
    font-size: 16px;
  }

  .main-hdr {
    padding: 15px 0;
  }

  .bnnr-content-wrppr {
    max-width: 490px;
  }

  .veneer-rw {
    --bs-gutter-x: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .veneer-txt-content {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .service-slider-main {
    padding: 0;
  }

  .service-btn-wrppr {
    padding-top: 20px;
  }

  .service-slide-arrw-wrppr {
    margin-top: 20px;
  }

  .each-service-wpr {
    border-radius: 6px;
  }

  .service-arrw.prev {
    margin-right: 13px;
  }

  .sub-menu {
    border-radius: 0;
  }

  .navbar-nav > li > a:after {
    display: none;
  }

  .sub-menu {
    padding: 2px 10px 10px;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .sub-menu > li > a {
    padding-left: 20px;
    font-size: 15px;
  }

  .sub-menu > li {
    margin-bottom: 8px;
  }

  .after-bnnr-rw {
    --bs-gutter-y: 20px;
    margin: 0 -12px;
  }

  .smile-consult-row {
    -webkit-box-align: inherit;
    -ms-flex-align: inherit;
    align-items: inherit;
  }

  .smile-conslt-img-wpr {
    padding-right: 15%;
    padding-bottom: 35px;
    height: 100%;
  }

  .smile-conslt-img-wpr .schdl-img1 {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .smile-conslt-img-wpr .schdl-img2 {
    width: 60%;
  }

  .smile-conslt-col-rit,
  .smile-conslt-col-left {
    width: 50%;
  }

  .adds-content-main .sec-head {
    max-width: 500px;
  }

  .latest-blog-row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .latest-blog-wppr {
    border-radius: 15px;
  }

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

  .blog-card-txt {
    bottom: 25px;
    left: 0;
    max-width: inherit;
    width: 100%;
    padding: 0 15px;
  }

  .blog-card-txt .h5-title {
    margin-bottom: 15px;
  }

  .smile-gallery-sec .sec-head {
    margin-bottom: 30px;
  }

  .testimonial-slider-each {
    padding: 0 20px;
  }

  .testimonial-slider-outer {
    padding: 0 50px;
  }

  .footer-adjustment {
    margin-bottom: -10vw;
    padding-bottom: 15vw;
  }

  .ftr-col-lft,
  .ftr-col-rit {
    width: 100%;
  }

  .ftr-col-lft {
    text-align: center;
  }

  .fttr-logo-wppr a {
    max-width: 280px;
  }

  .ftr-col-lft .ftr-social-wppr {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 25px;
  }

  .footer-top-part {
    padding: 55px 0 30px;
  }

  .smile-conslt-img-wpr img {
    border-radius: 15px;
  }

  .common-page-bnr-sec {
    min-height: 230px;
  }

  .staff-person-content-wrppr {
    padding-top: 0;
  }

  .smile-desnt-row {
    --bs-gutter-x: 24px;
  }

  .veneer-rw.extra {
    -webkit-box-orient: inherit;
    -webkit-box-direction: inherit;
    -ms-flex-direction: inherit;
    flex-direction: inherit;
  }

  .dignostic-img-wppr {
    border-radius: 15px;
  }

  .latest-blog-img-col,
  .latest-blog-txt-col {
    width: 100%;
  }

  .latest-blog-img-main {
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 25px;
  }

  .each-latest-blog-img-wrppr {
    width: calc(50% - 15px);
    height: 100%;
    border-radius: 15px;
  }

  .latest-blog-img-main .each-latest-blog-img-wrppr:not(:last-child) {
    margin-right: 10px;
  }

  .latest-blog-content {
    padding: 30px 25px;
    border-radius: 15px;
  }

  .relate-post-sec .sec-head {
    margin-bottom: 30px;
  }

  .faq-sec .sec-head {
    margin-bottom: 25px;
  }

  .faq-sec-para {
    margin: 0 auto 35px;
  }

  .faq-main-wpr .faq-item .faq-hdr {
    padding: 20px 15px;
  }

  .faq-main-wpr .faq-item .faq-cntnt {
    padding: 0 20px 20px 15px;
  }

  .faq-row.row .faq-item {
    margin-bottom: 20px;
  }

  .faq-row.row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 20px;
  }

  .dental-btm-txt {
    margin: 0 auto 60px;
  }

  .serv-row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .dental-btm-txt {
    margin: 0 auto 40px;
  }

  .disgnst-rw {
    --bs-gutter-y: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .smile-gallery-btm-part,
  .about-us-btm-txt {
    margin-bottom: 0;
  }

  .smile-gal-row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .smile-gap-disp-btn {
    margin-top: 30px;
  }

  .smile-gal-pg-dntst-sec .ds-yl1 {
    bottom: -50%;
  }

  .team-card-outer {
    min-height: 270px;
    border-radius: 15px;
  }

  .team-card-btm {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }

  .team-row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
  }

  .our-team-para {
    max-width: 678px;
    margin-left: 20px;
  }

  .our-team-txt-wppr {
    margin-bottom: 50px;
  }

  .team-card-btm p {
    font-size: 14px;
  }

  .blog-play-btn {
    width: 45px;
    height: 45px;
    padding: 10px;
  }

  .outtr {
    padding-bottom: 60px;
  }

  .appointment-content .h2-title {
    font-size: 30px;
  }

  .make-appmnt-form-wpr {
    padding: 30px;
  }

  .make-appmnt-form-wpr .gform-theme--foundation .gform-field-label,
  .make-appmnt-form-wpr .frm-grp > label {
    margin-bottom: 10px;
    font-size: inherit;
  }

  .make-appmnt-form-wpr .gform-theme--foundation .gform_fields {
    row-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .make-appmnt-form-wpr .form-row {
    --bs-gutter-y: 20px;
  }

  .about-doc-sec .after-bnnr-img-col,
  .about-doc-sec .after-bnnr-txt-col {
    width: 100%;
  }

  .after-bnnr-img-main {
    margin: 0 auto;
  }

  .after-bnnr-img-main.dr-coleman {
    margin-bottom: 30px;
  }

  .about-doc-sec .after-bnnr-rw {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .after-bnnr-content.extra {
    margin-bottom: 0;
  }

  .about-doc-sec .after-bnnr-rw.about {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .about-doc-sec .after-bnnr-rw.about .after-bnnr-img-col,
  .about-doc-sec .after-bnnr-rw.about .after-bnnr-txt-col {
    width: 50%;
  }

  .staff-person-sec:nth-child(odd) .staff-person-img-wrppr:before,
  .staff-person-sec:nth-child(even) .staff-person-img-wrppr:before {
    border-radius: 15px;
  }

  .staff-person-img-wrppr .stff-img1 {
    width: 75%;
  }

  .staff-person-img-wrppr .stff-img1 {
    width: 100%;
  }

  body.page-template-patient-story .dental-btm-txt iframe {
    height: 400px !important;
  }

  .ftr-address-wrpr p {
    font-size: 16px;
  }

  .ftr-phn-wppr a {
    font-size: 16px;
  }

  .footer-adjustment {
    margin-bottom: -13vw;
  }

  .staff-person-img-wrppr {
    height: 350px;
  }

  .staff-person-img-wrppr .stff-img1 {
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
  }

  .back_to_sec .slid-1,
  .back_to_sec .slid-2 {
    width: 20%;
  }
  .dr-detail-txt img {
    border-radius: 15px;
  }
  .contact-map-sec {
    padding-top: 85px;
  }

  .latest-blog-rw.blog-details .single-post-content-column {
    width: 100%;
  }
  .inr-category {
    width: 100%;
    margin-bottom: 20px;
  }
  .latest-blog-rw.blog-details {
    flex-direction: column-reverse;
  }
  .inr-category-wpr {
    border-radius: 15px;
    padding: 27px 30px 30px;
  }

  .page-template-default h2 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  /* images alignment for wordpress content pages */
  .alignright,
  .alignleft,
  .aligncenter {
    float: none;
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    clear: both;
    margin-bottom: 24px;
  }

  /* --- index page --- */
  .bnnr-subtitle {
    font-size: 20px;
  }

  h1,
  .h1-title {
    font-size: 30px;
  }

  h2,
  .h2-title {
    font-size: 28px;
  }

  .cmn-btn {
    min-width: 140px;
    padding: 13px 15px;
    font-size: 15px;
  }

  .cmn-gap {
    padding: 40px 0;
  }

  body {
    font-size: 15px;
  }

  .after-bnnr-content .cmn-btn {
    min-width: 160px;
  }

  .disp-desktop-only {
    display: none;
  }

  .disp-mobile-only {
    display: block;
  }

  .top-list li a {
    padding: 8px 20px;
    color: var(--body-color);
    text-transform: uppercase;
    font-size: 16px;
  }

  .navbar-collapse .navbar-nav {
    padding: 0;
  }

  .after-bnnr-txt-col {
    width: 100%;
  }

  .after-bnnr-img-col {
    width: 100%;
  }

  .after-bnnr-img-main {
    max-width: 350px;
    padding: 30px 1px 30px 45px;
    margin: 0 auto;
  }

  .after-bnnr-content {
    padding-top: 30px;
  }

  .patient-list-wrppr {
    padding: 10px;
  }

  .bnnr-sec {
    padding: 50px 0 140px;
  }

  .bnnr-content-wrppr {
    max-width: 100%;
  }

  .sec-head {
    margin-bottom: 20px;
  }

  .sec-head h2 {
    margin-bottom: 15px;
  }

  .service-btn-wrppr .cmn-btn {
    min-width: 170px;
  }

  .service-arrw {
    width: 35px;
    height: 35px;
  }

  .smile-conslt-col-rit,
  .smile-conslt-col-left {
    width: 100%;
  }

  .smile-conslt-col-left {
    margin-bottom: 35px;
  }

  .smile-rit-txtpart {
    padding-left: 0;
  }

  .smile-rit-txtpart h2 {
    margin-bottom: 15px;
  }

  .smile-conslt-btn-wrppr {
    margin-top: 20px;
  }

  .adds-img-wrppr figure::before {
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      color-stop(50%, #adc05a),
      color-stop(80%, rgba(24, 81, 188, 0))
    );
    background: -o-linear-gradient(left, #adc05a 50%, rgba(24, 81, 188, 0) 80%);
    background: linear-gradient(90deg, #adc05a 50%, rgba(24, 81, 188, 0) 80%);
  }

  .latest-blog-sec .sec-head {
    margin-bottom: 25px;
  }

  .latest-blog-row > * {
    width: 50%;
  }

  .footer-sec .footer-bg-wpr .footer-bg-img,
  .footer-sec .footer-bg-wpr::before {
    -webkit-mask-position-x: 15%;
  }

  .smile-btn-arw .cmn-arw-btn2,
  .testimonial-btn-arw .cmn-arw-btn {
    width: 35px;
    height: 35px;
  }

  .testimonial-slider-each {
    padding: 0 15px;
  }

  .testimonial-slider-outer {
    padding: 0 35px;
  }

  .testimonial-innr-wppr {
    padding: 25px 15px;
  }

  .testimonial-content p {
    font-size: 16px;
  }

  .testimonial-content .top-qt {
    width: 16px;
  }

  .ftr-link-lists li {
    padding-left: 25px;
  }

  .footer-adjustment {
    margin-bottom: -40px;
    padding-bottom: 80px;
  }

  .testimonial-slider-wppr .slick-list {
    margin: 0 -12px;
  }

  .common-page-bnr-sec {
    min-height: 200px;
  }

  .staff-person-rw {
    margin: 0;
  }

  .staff-person-rw > * {
    width: 100%;
    padding: 0;
  }

  .staff-person-txt-col {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .staff-person-img-col {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .staff-person-content-wrppr {
    margin-bottom: 25px;
  }

  .staff-person-img-wrppr.odd-col {
    margin-right: 0;
    width: 100%;
  }

  .smile-desnt-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .smile-dignst-col1,
  .smile-dignst-col2 {
    width: 100%;
  }

  .smile-diagnst-txt {
    margin-bottom: 20px;
  }

  .drc-explore-sec .our-service-head {
    margin-bottom: 30px;
  }

  .serv-row > * {
    width: 50%;
  }

  .serv-row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .staff-person-img-wrppr {
    max-width: 55%;
    width: 100%;
    margin: 0 auto !important;
  }

  .each-latest-blog-img-wrppr {
    width: calc(50% - 10px);
  }

  .latest-blog-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .latest-blog-content p {
    font-size: 16px;
  }

  .latest-blog-btn-wrppr {
    padding-top: 30px;
  }

  .latest-blog-rw > * {
    padding: 0 12px;
  }

  .latest-blog-rw {
    margin: 0 -12px;
  }

  .faq-main-wpr .faq-item .faq-hdr h3 {
    font-size: 18px;
    padding-right: 20px;
  }

  .faq-main-wpr .faq-item .faq-cntnt {
    font-size: 16px;
  }

  .serv-row > * {
    width: 50%;
  }

  .digonostic-part {
    padding-bottom: 40px;
  }

  .disgnst-rw .veneer-txt-content {
    margin-bottom: 0;
  }

  .smile-gal-row > * {
    width: 50%;
  }

  .smile-desnt-row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .smile-dignst-col1 {
    width: 100%;
  }

  .smile-dignst-col2 {
    width: 100%;
  }

  .smile-gal-pg-dntst-sec .ds-yl1 {
    bottom: -20%;
  }

  .about-doc-sec .after-bnnr-rw {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .about-doc-sec .after-bnnr-content {
    padding-top: 0;
  }

  .our-team-txt-wppr {
    margin-bottom: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .about-us-pg-team-block .sec-head {
    margin-bottom: 0;
  }

  .team-row > * {
    width: 50%;
  }

  .team-row {
    --bs-gutter-y: 50px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .our-service-sec.latest-blog-sec .sec-head {
    margin-bottom: 25px;
  }

  .about-doc-sec .after-bnnr-rw {
    margin: 0 -12px;
  }

  .about-doc-sec .after-bnnr-img-col,
  .about-doc-sec .after-bnnr-txt-col {
    padding: 0 12px;
  }

  .blog-card-rw {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
  }

  .appointment-img-wrppr {
    border-radius: 15px;
  }

  .appointment-content {
    padding-top: 20px;
    padding-left: 0;
  }

  .appointment-content .h2-title {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .appointment-rw {
    --bs-gutter-x: 0;
    --bs-gutter-y: 20px;
  }

  .insight-sec.patient-sec .sec-head h2 {
    margin: 0 auto 15px;
  }

  .make-appmnt-sec .sec-head,
  .gnrl-enqry-sec .sec-head {
    margin-bottom: 25px;
  }

  .make-appmnt-form-wpr {
    padding: 30px 20px;
    border-radius: 15px;
  }

  .about-doc-sec .after-bnnr-rw.about .after-bnnr-img-col,
  .about-doc-sec .after-bnnr-rw.about .after-bnnr-txt-col {
    width: 100%;
  }

  .about-doc-sec .after-bnnr-rw.about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .staff-person-sec:nth-child(even) .staff-person-img-wrppr:before {
    height: calc(100% - 30px);
  }

  body.page-template-patient-story .dental-btm-txt iframe {
    height: 290px !important;
  }

  .footer-adjustment {
    margin-bottom: -50px;
  }

  .doc-logo-wpr {
    height: 85px;
  }

  .contact-map-sec {
    padding-top: 30px;
  }
  .page-template-default h2 {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  /* --- index page --- */
  .our-service-head {
    margin: 0 auto 25px;
  }

  .top-hdr-right-part {
    padding-left: 0;
  }

  .patient-list-wrppr li a {
    font-size: 14px;
  }

  .bnnr-sec {
    padding: 50px 0 90px;
  }

  .ftr-link-lists {
    max-width: inherit;
    width: 50%;
  }

  .ftr-col-rit-row {
    --bs-gutter-y: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer-sec .footer-bg-wpr .footer-bg-img,
  .footer-sec .footer-bg-wpr::before {
    -webkit-mask-position-x: 23%;
  }

  .each-service-txt {
    bottom: 30px;
  }

  .smile-gap-card-outer-wppr {
    padding: 0 12px;
  }

  .blog-card-rw > * {
    width: 50%;
  }

  .outtr {
    padding-bottom: 40px;
  }

  body.page-template-patient-story .dental-btm-txt iframe {
    height: 200px !important;
  }
}

@media (max-width: 479px) {
  /* --- index page --- */
  .bnnr-subtitle {
    font-size: 16px;
  }

  h1,
  .h1-title {
    font-size: 28px;
  }

  h2,
  .h2-title {
    font-size: 24px;
  }

  .blog-see-more-btn {
    padding-top: 30px;
  }

  .testimonial-slider-outer {
    padding: 0;
  }

  .testimonial-btn-arw,
  .testimonial-btn-arw > * {
    position: static;
    -webkit-transform: inherit;
    -ms-transform: inherit;
    transform: inherit;
  }

  .testimonial-btn-arw {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 10px;
  }

  .testimonial-btn-arw > *:not(:last-child) {
    margin-right: 10px;
  }

  .ftr-col-rit-row {
    --bs-gutter-y: 25px;
  }

  .fttr-logo-wppr a {
    max-width: 200px;
  }

  .ftr-col-lft .ftr-social-wppr li a {
    width: 30px;
    height: 30px;
    padding: 3px;
  }

  .footer-sec .footer-bg-wpr .footer-bg-img,
  .footer-sec .footer-bg-wpr::before {
    -webkit-mask-position-x: 26%;
  }

  .common-page-bnr-sec {
    min-height: 180px;
    background-position-x: 60%;
  }

  .staff-person-content-wrppr .staff-post {
    margin-bottom: 10px;
  }

  .each-latest-blog-img-wrppr {
    width: 100%;
  }

  .latest-blog-img-main {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .each-latest-blog-img-wrppr:not(:last-child) {
    margin-bottom: 20px;
  }

  .latest-blog-content {
    padding: 25px 15px;
  }

  .faq-main-wpr .faq-item .faq-hdr h3 {
    font-size: 16px;
    padding-right: 15px;
  }

  .faq-sec .sec-head {
    margin-bottom: 20px;
  }

  .faq-main-wpr .faq-item .faq-hdr {
    padding: 15px 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .faq-main-wpr .faq-item .faq-cntnt {
    padding: 0 20px 20px 10px;
  }

  .blog-card-rw > * {
    width: 100%;
  }

  .appointment-content .h2-title {
    font-size: 22px;
  }

  .make-appmnt-form-wpr .frm-grp > label {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .make-appmnt-form-wpr .gform-theme--foundation .gfield .ginput_password,
  .make-appmnt-form-wpr .gform-theme--foundation .gfield input,
  .make-appmnt-form-wpr .gform-theme--foundation .gfield select,
  .make-appmnt-form-wpr .gform-theme--foundation .gfield textarea,
  input[type="text"],
  input[type="tel"],
  input[type="password"],
  input[type="email"],
  input[type="date"],
  input[type="time"],
  select {
    height: 45px !important;
  }

  .make-appmnt-form-wpr .gform-theme--foundation .gfield textarea,
  textarea {
    padding: 10px 15px !important;
    height: 90px !important;
  }

  .make-appmnt-form-wpr .gform-theme--foundation .gform_fields {
    display: block;
  }

  .make-appmnt-form-wpr .gform-theme--foundation .gform_fields .gfield {
    margin-bottom: 15px;
  }

  .gform_confirmation_message {
    font-size: inherit !important;
  }

  .staff-person-img-wrppr.odd-col .stff-img1 {
    margin-right: 0;
  }

  .staff-person-img-wrppr {
    max-width: 100%;
  }

  .team-card-outer {
    background-color: transparent;
  }

  .team-card-top {
    display: flex;
    align-items: flex-end;
    padding-bottom: 56px;
    position: relative;
    padding: 0;
    height: auto;
    top: 0;
  }

  .team-card-top::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #395076;
    z-index: -1;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }

  .team-card-btm {
    position: static;
    transform: none;
  }

  .main-head .patient-list-wrppr {
    padding: 10px 6px;
  }

  .main-head .patient-list-wrppr li {
    padding: 0 10px;
  }

  .main-head .hdr-social-list li a {
    width: 24px;
  }

  .main-head .hdr-social-list li:not(:last-child) {
    margin-right: 6px;
  }

  .main-head .patient-list-wrppr li:last-child {
    padding-right: 0;
  }

  .main-head .patient-list-wrppr li:first-child {
    padding-left: 0;
  }

  .team-row {
    --bs-gutter-y: 30px;
  }

  .team-row > * {
    width: 100%;
  }

  .team-card-top {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .staff-person-img-wrppr .stff-img1 {
    width: 65%;
  }

  .staff-person-img-wrppr {
    height: 450px;
  }

  .back_to_sec .slid-1,
  .back_to_sec .slid-2 {
    width: 25%;
  }
  .blog_img_vid_wrppr {
    padding-top: 115%;
  }
  /* --- index page --- */
  .patient-list-wrppr li a {
    font-size: 13px;
  }

  .navbar-brand {
    max-width: 190px;
  }

  .hdr-social-list li:not(:last-child) {
    margin-right: 6px;
  }

  .patient-list-wrppr li {
    padding: 0 10px;
  }

  .hdr-social-list li a {
    width: 25px;
  }

  .bnnr-sec {
    padding: 50px 0 70px;
  }

  .after-bnnr-img-main {
    max-width: 280px;
    padding: 17px 1px 17px 35px;
  }

  .each-veneer-img-wrppr,
  .each-veneer-img-wrppr:last-child {
    width: 100%;
  }

  .each-veneer-img-wrppr:last-child {
    margin-top: 15px;
  }

  .latest-blog-row > * {
    width: 100%;
  }

  .ftr-link-lists {
    width: 100%;
  }

  .footer-btm-part p {
    max-width: 230px;
    margin: 0 auto;
    line-height: 1.2;
  }

  .staff-person-img-wrppr {
    max-width: 100%;
  }

  .serv-row > *,
  .smile-gal-row > *,
  .team-row > * {
    width: 100%;
  }

  .team-card-outer {
    min-height: 350px;
  }

  .each-veneer-img-wrppr,
  .each-veneer-img-wrppr:last-child {
    border-radius: 15px;
  }

  body.page-template-patient-story .dental-btm-txt iframe {
    height: auto !important;
  }

  .main-head .hdr-social-list li a {
    width: 21px;
  }

  .main-head .hdr-social-list li:not(:last-child) {
    margin-right: 4px;
  }

  .main-head .patient-list-wrppr li a {
    font-size: 12px;
  }

  .main-head .patient-list-wrppr li {
    padding: 0px 5px;
  }

  .main-head .patient-list-wrppr li:last-child {
    padding-right: 0;
  }

  .main-head .patient-list-wrppr li:first-child {
    padding-left: 0;
  }

  .main-head .patient-list-wrppr {
    padding: 10px 5px;
  }

  .staff-person-img-wrppr .stff-img1 {
    width: 100%;
  }

  .staff-person-img-wrppr {
    height: 450px;
  }

  .inr-category-wpr {
    padding: 20px 16px 20px;
  }

  body.single-post
    .latest-blog-img-main
    .each-latest-blog-img-wrppr:not(:last-child) {
    margin-bottom: 10px !important;
  }

  body.single-post .veneer-sec .latest-blog-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  /* support starts 03.04.2025  */
  .google-each-box:not(:last-child) {
    margin-bottom: 15px;
  }
  .review-load-more {
    margin-top: 20px;
  }
  /* support ends 03.04.2025  */
}
