/* Fonts Linking */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


/*=====Reset CSS======*/

article,
aside,
canvas,
figure,
figcaption,
footer,
header,
nav,
section,
audio,
video,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
label {
  margin: 0;
  padding: 0;
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading__font);
}

a,
button,
input,
input[type="button"],
input[type="submit"],
select,
.btn,
textarea {
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  text-decoration: none;
  font-style: normal;
}

a:focus,
button:focus,
input[type="button"]:focus,
input[type="submit"]:focus,
select:focus,
.btn:focus,
textarea:focus,
.bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none !important;
}

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

a,
label {
  display: inline-block;
  vertical-align: middle;
  vertical-align: 0;
}

figure {
  -webkit-transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
  transition: all ease 0.4s;
  margin: 0;
  font-size: 0;
  line-height: 100%;
}

figure,
img {
  max-width: 100%;
}

ul,
ol {
  list-style: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


/* Firefox */

input[type=number] {
  -moz-appearance: textfield;
}



.svg_container {
  display: none;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  line-height: 26px;
  color: var(--black__color);
  background: #fff;
  font-family: var(--body__font);
  overflow-x: hidden;
  font-size: 17px;
  font-weight: 400;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}


::-webkit-scrollbar-thumb {
  background: var(--btn__color);
}

::-webkit-scrollbar {
  background: #fff;
  width: 8px;
}

::-moz-selection {
  background-color: var(--btn__color);
  color: #fff;
}

::selection {
  background-color: var(--btn__color);
  color: #fff;
}

/* Reset-css--------------- */

:root {
  --btn__color: #2AA9E0;
  --blue__color: #1F205E;
  --black__color: #000000;
  --heading__color: #323634;
  --secondary__text_color: #7A7A7A;
  --body__font: "Roboto", sans-serif;
  --heading__font: "Montserrat", sans-serif;
  --secondary__font: "Poppins", sans-serif;
  --transition: 0.4s all ease-in-out;
}

/* Global Headings */

h1 {
  font-family: var(--secondary__font);
  font-size: 42px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 52px;
  color: #FFFFFF;
  position: relative;
}

h1 span {}


h2 {
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: -1px;
  color: var(--heading__color);
  margin-bottom: 15px;
}

h2 span {}

h3 {
  font-family: var(--secondary__font);
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 1px;
}


h4 {}

h5 {}

h6 {}



a {
  color: var(--btn__color);
  transition: var(--transition);
}

a:hover {
  color: #3576e9;
  text-decoration: none;
}

section {
  position: relative;
}

.gap {
  padding: 50px 0;
}

.gaptwo {
  padding: 70px 0;
}

.site_btn {
  background: var(--btn__color);
  color: #fff;
  padding: 13px 25px;
  min-width: 110px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-family: var(--heading__font);
  font-size: 14px;
  font-weight: 600;
}

.site_btn:hover {
  background: var(--black__color);
  color: #fff;
}



/* Global Headings */


/* -----------------********** */
/* Section: Header Start */
/* -----------------********** */

.sticky_hdr .header {
  filter: drop-shadow(0px 15px 25px rgba(0, 76, 102, 0.15));
  -webkit-filter: drop-shadow(0px 15px 25px rgba(0, 76, 102, 0.15));
  padding: 5px 0;
}

/* sticky */


.hdrmobile_logo {
  display: none;
}

.menu-link-wrapper {
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: none;
}

.line {
  /* background: #000; */
  width: 30px;
  height: 3px;
  display: block;
  margin: 3px 0;
  background: #2196f3;
  border-radius: 50px;
}

.header_listing_holder {
  flex-grow: 1;
}

.header_wrppr {
  display: flex;
  align-items: center;
  position: relative;
}

.navlink {
  text-transform: capitalize;
  transition: var(--transition);
  position: relative;
  line-height: 20px;
  color: #4A4949;
  font-size: 13px;
  letter-spacing: 0.5px;
  font-family: var(--secondary__font);
  padding: 6px 0;
}

.navitem {
  position: relative;
  padding: 0 15px;
}

.navlist {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  justify-content: end;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 4;
  top: 0;
  transition: var(--transition);
  padding: 0;
  background: #fff;
}


.header_logo {
  max-width: 160px;
}

.navlink:hover {
  color: var(--btn__color);
}




/* Scroll-up */
.nav-up {
  top: -180px;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.navlist .navitem.in,
.contct-btn .contact-us.in {
  animation: slideIn 0.7s forwards;
}

/* Animated Offcanvas */

.header__top_left>ul {
  display: flex;
  align-items: center;
  column-gap: 7px;
}

.header__top_left>ul a,
.header__top_right>ul li a i {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0ba0dc;
  color: #fff;
  font-size: 13px;
  border: 1px solid transparent;
  flex: 0 0 auto;
  transition: var(--transition);
}

.header__top_left>ul>li {
  transition: var(--transition);
}

.header__top_left>ul>li:has(a:hover) {
  opacity: 0.7;
  transform: translateY(6px);
}

.platinum_logo span {
  display: block;
  padding-left: 35px;
  font-size: 15px;
  color: #eca65a;
  margin-top: -10px;
  font-family: var(--secondary__font);
  font-weight: 300;
}

.platinum_logo img {
  max-width: 160px;
}

.header__top_left {
  display: flex;
  align-items: center;
  column-gap: 25px;
}

.header__top_left>ul a:has(.fa-twitter) {
  background: #42C0FB;
}

.header__top_left>ul a:has(.fa-youtube) {
  background: #CF3427;
}

.header__top_left>ul a:has(.fa-instagram) {
  background: radial-gradient(circle at 30% 30%, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

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

.header__top_right {
  display: flex;
  align-items: baseline;
}

.header__top_right>ul {
  display: flex;
  align-items: center;
  column-gap: 25px;
  margin-left: 25px;
  flex-wrap: wrap;
}

.header__top_right>ul li a {
  display: flex;
  align-items: center;
  column-gap: 5px;
  font-weight: 600;
  color: #2a3b0f;
  letter-spacing: 0.3px;
  font-size: 15px;
  font-family: var(--secondary__font);
  transition: var(--transition);
}

.header__top_right>ul li a:hover {
  color: var(--btn__color);
}

.header__top_right h3 {
  font-weight: 300;
}

.header__top {
  padding: 5px 0;
  border-bottom: 1px solid #d4d4d4;
}

.header__bottom {
  padding: 5px 0;
}

.submenu {
  position: absolute;
  background: #0ba0dc;
  width: 220px;
  left: 0;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 10px 0;
  transform: translateY(15px);
}

.submenu::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid #fff;
  z-index: -1;
}

.submenu li a {
  color: #fff;
  padding: 8px 14px;
  font-size: 12px;
  width: 100%;
  transition: var(--transition);
  font-family: var(--secondary__font);
  letter-spacing: 0.1px;
  line-height: 1.5;
}

.submenu li a:hover {
  background-color: #0069bd;
  color: #ffffff;
}

.navitem:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.navlist_hldr>ul>li:has(.submenu) .navlink::after {
  content: '\f0d7';
  font-family: 'fontawesome';
  position: absolute;
  right: -13px;
}

.navlist_hldr ul li:has(.submenu:hover) .navlink {
  color: var(--btn__color);
}


/* -----------------********** */
/* Section :Header End */
/* -----------------********** */

/* -----------------********** */
/* Section: Footer Start */
/* -----------------********** */
.footer {
  background: #043245;
  margin-top: auto;
}

.footer__card h3 {
  padding: 0 0 15px;
  position: relative;
  color: #FFF;
  margin: 0 0 20px;
}

.footer__card h3::after {
  content: '';
  position: absolute;
  width: 170px;
  height: 1px;
  left: 0;
  bottom: 0;
  background: #fff;
}

.footer__card ul li a {
  font-size: 14px;
  color: #e1dede;
  font-weight: 300;
  font-family: var(--secondary__font);
  line-height: 1.5;
  transition: var(--transition);
  position: relative;
}

.footer__card ul li {
  font-size: 14px;
  color: #e1dede;
  font-weight: 300;
  font-family: var(--secondary__font);
  line-height: 1.5;
  display: flex;
  column-gap: 10px;
  align-items: baseline;
}

.footer__card ul li span a::before {
  content: '';
  position: absolute;
  background: #e1dede;
  height: 12px;
  width: 1px;
  right: 2px;
  top: 4px;
}

.footer__card ul li span a:last-child::before {
  display: none;
}

.footer__card ul li span a {
  padding-right: 10px;
}

.footer__card ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background: var(--btn__color);
  transition: var(--transition);
}

.footer__card ul li a:hover::after {
  width: 100%;
}

.footer__card ul li a:hover {
  color: var(--btn__color);
}

.footer__card ul li+li {
  margin-top: 15px;
}

.footer_bottom_heading ul li {
  max-width: 120px;
}

.footer_bottom_heading ul {
  display: flex;
  align-items: center;
  column-gap: 25px;
  margin-top: 20px;
}

.footer_bottom_heading h3 {
  font-size: 30px;
  color: #ccc;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 25px;
}

.footer__bottom_content {
  background: #082836;
  margin-top: 40px;
}

.footer__bottom_content ul {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  column-gap: 6px;
}

.footer__bottom_content ul li {
  font-size: 12px;
  color: #e1dede;
  position: relative;
  letter-spacing: 0.2px;
  font-family: var(--heading__font);
}

.footer__bottom_content ul li:last-child::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 11px;
  left: -2px;
  top: 7px;
  background: #e1dede;
}

.footer__bottom_content ul li:last-child {
  padding-left: 3px;
}

.footer__input input {
  width: 100%;
  height: 45px;
  padding: 5px 10px;
  border: 1px solid #dddddd;
  border-radius: 6px;
  color: #dedede;
  background: none;
  font-family: var(--secondary__font);
}

.footer__input input::placeholder,
.footer__input textarea::placeholder {
  font-size: 14px;
}

.footer__input textarea {
  width: 100%;
  height: 80px;
  padding: 5px 10px;
  border: 1px solid #dddddd;
  border-radius: 6px;
  color: #dedede;
  background: none;
  font-family: var(--secondary__font);
  resize: none;
}

.footer__input {
  margin-bottom: 10px;
}

.footer__card form .site_btn {
  padding: 10px 25px;
  text-transform: uppercase;
  border: none;
}

.footer__input input:focus-visible {
  outline: none;
}

.footer__input input:focus,
.footer__input textarea:focus {
  border-color: var(--btn__color);
}

/* -----------------********** */
/* Section: Footer End */
/* -----------------********** */



/* -----------------********** */
/* Page:Home Page Start */
/* -----------------********** */

.hero_slider_bnr {
  margin-top: 150px;
}

.banner_slider_holder {
  height: 550px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  display: flex;
}

.banner_slider_holder::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0, 0.5);
  top: 0;
  left: 0;
}

.banner__slider_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  z-index: 1;
  position: relative;
  align-items: start;
}

.banner__slider_content h1 {
  color: #fff;
  font-size: 33px;
  font-weight: 700;
  margin-bottom: 20px;
}

.banner__slider_content p {
  font-family: var(--heading__font);
  color: #fff;
  font-size: 15px;
}

p {
  margin-bottom: 10px;
}

.banner__slider_content .site_btn {
  margin-top: 15px;
}

.slick-next {
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--btn__color);
  border-radius: 50%;
}

.slick-next {
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--btn__color);
  border-radius: 50%;
}

.slick-prev:before,
.slick-next:before {
  opacity: 1;
  font-family: 'fontawesome';
}

.slick-prev:before {
  content: '\f104 ';
}

.slick-next:before {
  content: '\f105 ';
}

.slick-prev {
  left: 20px;
  z-index: 1;
  width: 50px;
  height: 50px;
  background: var(--btn__color);
  border-radius: 50%;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: #fff;
  background: var(--black__color);
}

.hero__dental_wrap ul {
  display: flex;
}

.hero__dental_wrap ul li {
  width: 16.66%;
  flex: 0 0 auto;
  background: #f2f2f2;
  padding: 15px 15px 20px;
  border-right: 1px solid #0201011A;
  border-bottom: 1px solid #0201011A;
  transition: var(--transition);
}

.hero__dental_wrap ul li:hover {
  background: #fff;
}

.hero__dental_wrap ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
  line-height: 26px;
  color: var(--black__color);
  font-family: var(--secondary__font);
  row-gap: 10px;
  text-align: center;
}

.hero__dental_wrap ul li a img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.section__heading {
  font-size: 40px;
  text-align: center;
  margin-bottom: 25px;
}

.dental__clinic_section {
  padding-top: 35px;
}

.dental_clinic_wrap .row {
  padding: 65px 0;
  position: relative;
}

.banner_slider_holder .row {
  height: 100%;
}

.dental_clinic_wrap .row:nth-child(even) {
  flex-direction: row-reverse;
}

.dental_clinic_wrap .row:nth-child(even)::after {
  position: absolute;
  background: #F4F9FF;
  content: '';
  left: 0;
  right: 0;
  width: 100vw;
  top: 0;
  bottom: 0;
  margin-left: -50vw;
  left: 50%;
  z-index: -1;
}

.clinic_content .site_btn {
  margin-top: 20px;
}

.patient_centric_wrp img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.patient_centric_wrp img {
  filter: brightness(0) saturate(100%) invert(54%) sepia(84%) saturate(729%) hue-rotate(165deg) brightness(92%) contrast(90%);
}

.patient_centric_wrp {
  text-align: center;
  margin-bottom: 25px;
  padding: 0 20px;
}

.patient_centric_wrp p {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  color: #131313;
}

.patient_centric_wrp h3 {
  margin-bottom: 10px;
  padding: 0 20px;
}

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

.about__doctor .row+.row {
  margin-top: 35px;
}

.section__heading_about {
  text-align: center;
  margin-bottom: 30px;
}

.doctor_content h3 {
  font-family: var(--body__font);
  font-size: 24px;
  font-weight: 900;
  color: var(--blue__color);
  margin-bottom: 20px;
}

.doctor_content p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 12px;
}

.doctor_content ul li {
  font-size: 18px;
}

.doctor_content ul li span {
  font-weight: 700;
}

.credential__wrap h2 {
  text-align: center;
  color: var(--blue__color);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 30px;
  letter-spacing: 0.4px;
  font-family: var(--secondary__font);
}

.credential__option {
  text-align: center;
}

.credential__option h3 {
  color: var(--blue__color);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 5px;
  line-height: 1.3;
}

.credential__option p {
  font-size: 15px;
}

.credential__wrap+.credential__wrap {
  margin-top: 30px;
}

.credential__wrap .row {
  row-gap: 20px;
}

.whychhose__text {
  text-align: left;
}

.whychhose__text p span {
  font-weight: 700;
}

.whychhose__text p {
  line-height: 1.5;
}

.credentials__section {
  padding-bottom: 70px;
}

.whychoose__section::after {
  content: '';
  position: absolute;
  background: rgb(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.whychoose__wrapper {
  position: relative;
  z-index: 1;
  color: #fff;
}

.whychoose__single h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.whychoose__single {
  border: 1px solid #fff;
  border-radius: 16px;
  padding: 15px 15px 5px 90px;
  height: 100%;
  position: relative;
}

.whychoose__single::after {
  content: '';
  position: absolute;
  background: #2AA9E0 url(../images/star__icon.png) no-repeat center;
  left: 18px;
  top: 18px;
  width: 55px;
  height: 55px;
  background-size: 35px;
  border-radius: 50%;
}

.whychoose__wrapper .row {
  row-gap: 25px;
}

.whychoose__wrapper .section__heading_about {
  color: #fff;
}

.whychoose__section {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.blogs__section {
  background: #F4F9FF;
}

.blogs__holder>a {
  overflow: hidden;
}

.blogs__holder:hover .blogs_img {
  scale: 1.1;
}

.blogs_img {
  transition: var(--transition);
}

.blogs__content {
  padding: 30px 60px 30px 30px;

}

.blogs__holder {
  height: 100%;
  background-color: #f5f5f5;
}

.blogs__content>a {
  color: #54595F;
  font-size: 18px;
  font-family: var(--secondary__font);
  margin-bottom: 5px;
  transition: var(--transition);
}

.blogs__content>a:hover {
  color: var(--btn__color);
}

.blogs__content ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 14px;
  margin-bottom: 15px;
}

.blogs__content ul li {
  font-size: 13px;
  color: #adadad;
  position: relative;
}

.blogs__content ul li:last-child::after {
  display: none;
}

.blogs__content ul li::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: #adadad;
  top: 11px;
  right: -9px;
  border-radius: 50%;
}

.blogs__content ul li i {
  margin-right: 5px;
}

.blogs__content ul li a {
  color: #adadad;
}

.blogs__content p {
  color: #adadad;
  line-height: 1.4;
  font-size: 16px;
}

.blogs__wrap .row {
  row-gap: 20px;
}

.ifrmae__thumbnail iframe {
  width: 100%;
}

.review__info {
  margin-top: 50px;
  text-align: center;
}

.review__info ul li+li {
  margin-top: 50px;
}

.emergency_btn .site_btn {
  text-transform: uppercase;
  min-width: 206px;
  height: 55px;
}

.emergency__text h4 {
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  color: #323634;
}

.emergency__section .row {
  align-items: center;
}

.emergency__section {
  background: #F4F9FF;
  ;
}

.faq__section_wrpr li {
  position: relative;
  padding-left: 33px;
  color: #7A7A7A;
  font-size: 20px;
}

.faq__section_wrpr li+li {
  margin-top: 10px;
}

.faq__section_wrpr li::after {
  content: '';
  position: absolute;
  background: url(../images/check_icon.png) no-repeat center;
  width: 25px;
  height: 25px;
  left: 0;
  top: 0;
  scale: 0.9;
}

.faq__section_wrpr p {
  color: #7A7A7A;
  font-size: 15px;
  line-height: 1.4;
}

.faq__section_wrpr ul {
  margin-top: 40px;
}

.faq__section_wrpr h2 {
  margin-bottom: 40px;
}

.faq_questions_wrap {
  margin-top: 30px;
}

.faq_questions_wrap .accordion-button {
  background-color: #F1F1F1;
  color: #333333;
  font-weight: 700;
  font-family: var(--secondary__font);
  padding-top: 8px;
  padding-bottom: 8px;
  z-index: 1;
}

.faq_questions_wrap .accordion-item+.accordion-item {
  margin-top: 10px;
  border: 1px solid #d5d8dc;
}

.faq_questions_wrap .accordion-body {
  font-family: var(--secondary__font);
  font-size: 16px;
  font-weight: 400;
  color: #333333;
}

.faq_questions_wrap .accordion-button:not(.collapsed) {
  background-color: #414141;
  color: #fff;
}

.faq_questions_wrap .accordion-button::after {
  background-image: none;
  content: '\2b';
  font-size: 28px;
  width: auto;
  height: auto;

}

.faq_questions_wrap .accordion-button:not(.collapsed)::after {
  background-image: none;
  content: '-';
  font-size: 28px;
}

.faq_questions_wrap .accordion-button:hover {
  background-color: #414141;
  color: #fff;
}

.appointment__wrap {
  max-width: 750px;
  margin: auto;
}

.appointment__field input {
  padding: 12px 15px;
  border: 1px solid #000000;
  font-family: var(--secondary__font);
  border-radius: 5px;
  width: 100%;
  font-size: 15px;
}

.appointment__field input:focus-visible {
  outline: none;
}

.appointment__field input:focus,
.appointment__field textarea:focus {
  border-color: var(--btn__color);
}

.appointment__field textarea {
  padding: 12px 15px;
  border: 1px solid #000000;
  font-family: var(--secondary__font);
  border-radius: 5px;
  width: 100%;
  height: 120px;
  font-size: 15px;
  resize: none;
}

.appointment__field {
  margin-bottom: 18px;
}

.appointment__field .site_btn {
  border: none;
}

.appointment__wrap form .site_btn {
  border: none;
  width: auto;
  margin: auto;
  padding: 13px 25px !important;
}

.appointment__wrap form .row>* {
  padding: 0 8px;
}

.section__heading_about span {
  display: block;
}

.review__wrap {
  margin-top: 100px;
}

/* .fixed_appointment {
  background: #2196f3;
  color: #fff;
  padding: 20px 5px 20px 10px;
  border-radius: 10px 0px 0px 10px;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  position: fixed;
  right: 0;
  top: 50%;
  writing-mode: sideways-lr;
  transition: var(--transition);
  transform: translateY(-50%);
  font-family: var(--secondary__font);
  z-index: 1;
} */

.fixed_appointment {
  background: #2196f3;
  color: #fff;
  padding: 20px 10px 20px 5px;
  border-radius: 0px 10px 10px 0px;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  position: fixed;
  right: 0;
  top: 50%;
  writing-mode: sideways-rl;
  transition: var(--transition);
  transform: translateY(-50%) rotate(180deg);
  font-family: var(--secondary__font);
  z-index: 1;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  text-orientation: mixed;
}

.fixed_appointment:hover {
  background: var(--black__color);
  color: #fff;
}

.appnt__modal_form .footer__input input {
  color: var(--black__color);
  font-size: 15px;
}

.appnt__modal_form .footer__input textarea {
  height: 120px;
  color: var(--black__color);
  font-size: 15px;
}

.appoint__modal .modal-body {
  padding: 20px;
  padding-bottom: 30px;
}

.appoint__modal .modal-dialog {
  max-width: 600px;
}

.appnt__modal_image {
  background: #0ba0dc;
  width: 100%;
  height: 130px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 10px;
  font-weight: 600;
  transition: var(--transition);
}

.appnt__modal_image:hover {
  background: var(--black__color);
  color: #fff;
}

.appnt__modal_image i {
  font-size: 40px;
}

.appoint__modal .modal-header h1 {
  color: var(--btn__color);
  font-weight: 600;
}

/* -----------------********** */
/* Page:Home Page End */
/* -----------------********** */


/* -----------------********** */
/* Page:Our Mission Page Start */
/* -----------------********** */
.our_mission_hero {
  margin-top: 156px;
}

.breadcrumb {
  margin-bottom: 0;
  margin-top: -45px;
}

.breadcrumb__holder {
  background: linear-gradient(#0ba0dc 10%, #12dbd4 150%);
  padding: 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.breadcrumb__holder ul {
  display: flex;
  align-items: center;
  column-gap: 30px;
}

.breadcrumb__holder h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--secondary__font);
  line-height: 27px;
}

.breadcrumb__holder li a {
  color: #fff;
  font-size: 14px;
  font-family: var(--secondary__font);
}

.breadcrumb__holder li a:hover {
  opacity: 0.8;
}

.breadcrumb__holder li {
  position: relative;
  color: #fff;
  font-size: 14px;
}

.breadcrumb__holder li::after {
  content: '\f101';
  position: absolute;
  font-family: 'fontawesome';
  right: -20px;
  top: 2px;
  font-size: 10px;
  color: #fff;
}

.breadcrumb__holder li:last-child:after {
  display: none;
}

.om_content h1 {
  margin-bottom: 15px;
  color: #ccc;
  letter-spacing: 0.3px;
  font-family: var(--secondary__font);
  font-size: 40px;
  position: relative;
}

.om_content h1::after {
  width: 80px;
  height: 1px;
  left: 0;
  top: 0;
  content: '';
  position: absolute;
  background: #0ba0dc;
}

.om_content {
  padding-top: 23px;
}

.om_content h3 {
  color: #7a7a7a;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.om_content p {
  font-size: 14px;
  color: #262626;
  text-align: justify;
  line-height: 24px;
  margin-bottom: 15px;
  letter-spacing: 0.3px;
  font-family: var(--secondary__font);
}

.om_left_img {
  border: 1px solid #dedede;
  padding: 4px;
}

.submenu li.active a {
  background-color: #0069bd;
  color: #ffffff;
}

.navitem.active .navlink {
  color: var(--btn__color);
}

/* -----------------********** */
/* Page:Our Mission Page End */
/* -----------------********** */


/* -----------------********** */
/* Page: Our Team Start */
/* -----------------********** */
.memeber_dp {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  box-shadow: 1px 1px 1px 1px #a0a0a0;
  overflow: hidden;
  border: 6px solid #fff;
  position: absolute;
  top: -76px;
  left: 0;
  right: 0;
  margin: auto;
}

.memeber_dp .w100 {
  object-position: top;
}

.member__holder {
  border-radius: 12px;
  background: linear-gradient(#7ad4f8 10%, #12dbd4 150%);
  text-align: center;
  border: #1195a0 1px solid;
  position: relative;
  padding: 100px 20px 40px;
  height: 100%;
}

.team__members .row {
  row-gap: 110px;
}

.team__members {
  padding-top: 110px;
}

.member__holder h6 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 8px;
  font-family: var(--secondary__font);
}

.member__holder p {
  letter-spacing: 0.3px;
  font-family: var(--secondary__font);
  line-height: 1.5;
  font-size: 16px;
}

.fixed__whatspapp {
  width: 55px;
  height: 55px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 35px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1;
}

.fixed__whatspapp:hover {
  color: #fff;
}

/* -----------------********** */
/* Page: Our Team End */
/* -----------------********** */


/* -----------------********** */
/* Page: Our Videos Start */
/* -----------------********** */

.our_videos_card iframe {
  width: 100%;
}

.our_videos_card h3 {
  font-size: 18px;
  color: #333;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  /* margin-bottom: 15px; */
}

.our_videos_card {
  margin-bottom: 30px;
}

.our_videos_card p {
  color: #262626;
  text-align: justify;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  letter-spacing: 0.3px;
  font-family: var(--secondary__font);
}


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

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

.playicon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: #ff0033;
}

.our_videos_card a {
  width: 100%;
}


/* -----------------********** */
/* Page: Our Videos End */
/* -----------------********** */


/* -----------------********** */
/* Page: Doctors In Media Start */
/* -----------------********** */

.doctors_media_imgwrap a {
  width: 100%;
  height: 300px;
  border: 1px solid #333;
  border-radius: 12px;
  overflow: hidden;
}

.doctors_media_imgwrap {
  margin-bottom: 30px;
}

/* -----------------********** */
/* Page: Doctors In Media End */
/* -----------------********** */

/* -----------------********** */
/* Page: Sterilization Start */
/* -----------------********** */

.sterilization_wrap p {
  font-size: 15px;
  color: #262626;
  margin-bottom: 15px;
  font-family: var(--secondary__font);
}

.sterilization_wrap {
  margin-bottom: 60px;
}

/* -----------------********** */
/* Page: Sterilization End */
/* -----------------********** */


/* -----------------********** */
/* Page: Dental Service Start */
/* -----------------********** */

.dental__service_banner::after {
  content: '';
  position: absolute;
  background: rgb(32, 32, 95, 0.5);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.dental__service_banner {
  margin-top: 156px;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hamhead {
  font-family: var(--secondary__font);
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.dental__service_content p {
  font-size: 20px;
  font-weight: 500;
  color: #FFFFFF;
}

.dental__service_content h1 {
  padding-bottom: 60px;
}

.dental__service_content h1::after {
  content: '';
  position: absolute;
  width: 224px;
  height: 4px;
  bottom: 30px;
  left: 0;
  background: #D9D9D9;
}

.dental__service_content {
  max-width: 590px;
}

.banner_appointment {
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  border: 2px solid #E5E5E5;
  border-radius: 20px;
  max-width: 420px;
  margin-left: auto;
  overflow: hidden;
}

.banner_appointment h3 {
  font-family: var(--secondary__font);
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  color: #650D0D;
  background-color: #D9D9D9;
  text-align: center;
  padding: 13px 0;
}

.dental__banner_input input {
  color: #fff;
  width: 100%;
  height: 50px;
  border: none;
  background: transparent;
  border-bottom: 1px solid #fff;
  font-family: var(--secondary__font);
  font-size: 16px;
  padding: 0 10px;
}

.dental__banner_input input:focus-visible {
  outline: none;
}

.dental__banner_input input:focus {
  border-color: #D9D9D9;
}

.dental__banner_input input::placeholder {
  color: #fff;
}

.banner_appointment form {
  padding: 30px 25px 40px;
}

.dental__banner_input {
  margin-bottom: 20px;
}

.submit_button {
  background-color: #D9D9D9;
  font-family: var(--secondary__font);
  font-size: 16px;
  border-radius: 5px;
  color: #650D0D;
  min-width: 200px;
  border: none;
  height: 50px;
  transition: var(--transition);
}

.submit_button:hover {
  background: #650D0D;
  color: #D9D9D9;
}

.banner_appointment .submit_button {
  margin: auto;
  display: block;
}

.scroll_box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll__down {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  transition: var(--transition);
}

.scroll__down:hover {
  opacity: 0.7;
}

.scroll_box span {
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  margin: -10px;
  animation: animate 2s infinite;
}

.scroll_box span:nth-child(2) {
  animation-delay: -0.2s;
}

.scroll_box span:nth-child(3) {
  animation-delay: -0.4s;
}

@keyframes animate {

  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px);
  }
}

.scroll__down p {
  color: #fff;
  letter-spacing: 0.5px;
  margin: 0;
  font-size: 13px;
  padding-top: 45px;
}

.reverse__wrap .row:nth-child(even) {
  flex-direction: row-reverse;
}

.reverse__wrap .row:nth-child(even) .reverse__hldr_content {
  padding: 40px 20px 20px 20px;
}

.reverse__wrap .row>* {
  padding: 0;
}

.reverse__wrap {
  padding: 0 12px;
}

.reverse__section h2 {
  color: var(--blue__color);
  font-weight: 700;
  font-family: var(--body__font);
  letter-spacing: 0;
  margin-bottom: 10px;
}

.reverse__hldr_content {
  padding: 40px 20px 20px 0px;
}

.reverse__section p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.reverse__hldr_content p a {
  font-weight: 500;
}

.reverse__hldr_content ul li+li {
  margin-top: 20px;
}

.reverse__hldr_image {
  height: 500px;
  top: 80px;
  position: sticky;
}

.reverse_heading h3 {
  color: var(--blue__color);
  font-size: 32px;
  text-align: center;
  letter-spacing: 0.5px;
  font-weight: 700;
  max-width: 1000px;
  margin: 0 auto 40px;
  line-height: 40px;
}

.why__choose_heading ul li+li {
  margin-top: 25px;
}

.why__choose_heading ul li {
  text-align: center;
}

.why__choose_heading h2 {
  color: var(--blue__color);
  font-weight: 700;
  font-family: var(--body__font);
  letter-spacing: 0;
  margin-bottom: 10px;
}

.why__choose_heading p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.dental__service_faq .accordion-button {
  color: #000;
  background-color: #2575fc;
  position: relative;
  border: 0;
  padding-left: 70px;
  box-shadow: none;
  padding-block: 6px;
  font-weight: 700;
  font-family: var(--secondary__font);
}

.dental__service_faq .accordion-item {
  position: relative;
}

.dental__service_faq .accordion-header::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 30px;
  background-color: rgba(255, 255, 255, .2);
  pointer-events: none;
}

.dental__service_faq .accordion-header {
  position: relative;
}

.dental__service_faq .accordion-button:hover {
  z-index: unset;
}

.dental__service_faq .accordion-button:focus {
  z-index: unset;
}

.dental__service_faq .accordion-header::before {
  position: absolute;
  content: "";
  left: 30px;
  top: 0;
  background: url(../images/traiangle.png);
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.2;
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
}

.dental__service_faq .accordion-item {
  margin-bottom: 10px;
  border: none;
}

.dental__service_faq .accordion-item:first-of-type .accordion-button,
.dental__service_faq .accordion-item:last-of-type .accordion-button {
  border-radius: 0;
}

.dental__service_faq h3 {
  font-family: var(--body__font);
  font-size: 26px;
  font-weight: 900;
  text-transform: capitalize;
  color: #1F205E;
  letter-spacing: 1.1px;
  text-align: center;
  margin-bottom: 15px;
}

.why__choose_heading {
  margin-bottom: 30px;
}

.dental__service_faq .accordion-body {
  font-family: var(--secondary__font);
}

.reachout_field {
  display: flex;
  flex-direction: column;
  font-family: var(--secondary__font);
}

.reachout_field label {
  font-weight: 700;
  font-size: 15px;
  color: #6ec1e4;
  margin-bottom: 5px;
}

.reachout_holder form {
  max-width: 800px;
  background: #fff;
  padding: 20px;
  border: 3px solid #6ec1e4;
  border-radius: 15px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  margin: auto;
}

.reachout_holder form sup {
  top: -2px;
  font-size: 100%;
  font-weight: 600;
  color: #ff0000;
}

.reachout_field input,
.reachout_field select {
  width: 100%;
  height: 45px;
  color: #000;
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.reachout_field input:focus-visible {
  outline: none;
}

.reachout_field input:focus,
.reachout_field select:focus {
  border-color: #0ba0dc;
}

.reachout_field {
  margin-bottom: 25px;
}

.reachout_field textarea {
  height: 90px;
  resize: none;
  font-size: 14px;
  border: 1px solid #ccc;
  padding: 10px;
}

.reachout_field textarea:focus-visible {
  outline: none;
}

.reachout_field textarea:focus {
  border-color: #0ba0dc;
}

.reachout_field .site_btn {
  color: #fff;
  border: none;
}

.reachout_holder h3 {
  font-size: 28px;
  font-weight: 800;
  line-height: 32px;
  text-align: center;
  color: var(--blue__color);
  margin-bottom: 20px;
}

.reachout_holder {
  padding-top: 50px;
}

.reachout_holder .row>*:last-child .reachout_field {
  margin-bottom: 0;
}

.ortho_treatment__faq .accordion-button {
  color: #000;
  background-color: #f7f9fb;
  font-weight: 700;
  padding: 6px 30px;
  position: relative;
  font-family: var(--secondary__font);
}

.ortho_treatment__faq .accordion-item {
  border: none;
  margin-bottom: 15px;
  font-family: var(--secondary__font);
}

.ortho_treatment__faq .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.accordion-button:focus {
  z-index: 1;
}

.ortho_treatment__faq .accordion-body,
.dental__service_faq .accordion-body {
  padding: 15px 50px;
  font-size: 16px;
}

.ortho_treatment__faq h3 {
  color: var(--blue__color);
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 35px;
  font-size: 32px;
}

.ortho_treatment__faq {
  padding-top: 30px;
}

.treatment_questions h3,
.dental_implant_wrap h3 {
  font-size: 32px;
  color: #000;
  font-family: var(--body__font);
  letter-spacing: 0;
  font-weight: 500;
  margin-bottom: 12px;
}

.treatment_questions li p {
  font-size: 16px;
  line-height: 24px;
  color: #000;
}

.treatment_questions li p a {
  font-weight: 600;
}

.treatment_questions li+li,
.dental_implant_wrap li+li {
  margin-top: 25px;
}

.treatment_questions,
.dental_implant_wrap {
  padding-top: 30px;
}

.pre_post_treatmnt .row {
  row-gap: 25px;
}

.pre_post_treatment {
  padding-top: 30px;
}

.dental_heading {
  color: var(--blue__color);
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 30px;
  letter-spacing: 0.5px;
  font-family: var(--body__font);
  text-transform: capitalize;
}

.dental_implant_wrap li p {
  font-size: 18px;
  line-height: 28px;
  color: #000;
}

.implants__procedure p,
.operative_instructions_holder p {
  font-size: 18px;
  margin-bottom: 15px;
}

.implants__procedure p span {
  font-weight: 700;
}

.operative_instructions_holder li {
  position: relative;
  padding-left: 32px;
}

.operative_instructions_holder li::after {
  /* content: '\f560'; */
  content: '';
  position: absolute;
  background: url(../images/double-check.png) no-repeat left;
  width: 25px;
  height: 25px;
  font-size: 23px;
  left: 0;
  top: 0;
  color: var(--blue__color);
  scale: 0.86;
  /* font-family: 'fontawesome'; */
}

.operative_instructions_holder ul {
  margin-top: 30px;
}

.operative_instructions_holder p span {
  font-weight: 700;
}

.dental__comparison_wrap {
  padding: 50px 32px 50px 32px;
  background: #f5f5f5;
}

.dental__comparison_wrap h6 {
  color: #7a7a7a;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--body__font);
}

.guide_blog_card {
  border-radius: 10px;
  background: #123075;
  -webkit-box-shadow: 9.899px 9.899px 30px 0 rgba(0, 0, 0, .1);
  box-shadow: 9.899px 9.899px 30px 0 rgba(0, 0, 0, .1);
  padding: 20px;
  transition: var(--transition);
}

.guide_blog_card a img {
  transition: var(--transition);
}

.guide_blog_card:hover a img {
  transform: rotate(2deg) scale(1.02);
}

.guide_content .heading {
  font-size: 18px;
  margin-bottom: 28px;
  color: #fff;
  font-weight: 500;
  font-family: var(--secondary__font);
}

.guide_content {
  padding: 30px 40px 20px 35px
}

.learn_more_btn {
  background-color: #2575fc;
  color: #fff;
  font-size: 15px;
  padding: 10px 30px;
  border-radius: 5px;
  transition: var(--transition);
  font-family: var(--secondary__font);
}

.learn_more_btn:hover {
  background-color: #0350d2;
  color: #fff;
}

.guide_blog_wrap .row {
  row-gap: 25px;
}

.root__canal_accordian .accordion-item {
  border: none;
  margin-bottom: 13px;
}

.root__canal_accordian .accordion-button {
  font-weight: 700;
  color: #000;
  -webkit-box-shadow: -1.216px 6.894px 15px 0 rgba(37, 117, 252, .2);
  box-shadow: -1.216px 6.894px 15px 0 rgba(37, 117, 252, .2);
  border-radius: 0 0 5px 5px;
  background-color: #fff;
  padding: 7px 30px;
  font-family: var(--secondary__font);
}

.root__canal_accordian .accordion-button:focus {
  -webkit-box-shadow: -1.216px 6.894px 15px 0 rgba(37, 117, 252, .2);
  box-shadow: -1.216px 6.894px 15px 0 rgba(37, 117, 252, .2) !important;
}

.root__canal_accordian .accordion-body {
  padding: 15px 50px;
  font-family: var(--secondary__font);
}

.root__canal_accordian .accordion-body p {
  margin-bottom: 0;
}

.root__canal_accordian .accordion-body p+p {
  margin-bottom: 10px;
}



/* -----------------********** */
/* Page: Dental Service End */
/* -----------------********** */


/* -----------------********** */
/* Page: Blog Start */
/* -----------------********** */

.blog__section {
  margin-top: 160px;
  background: #eeeeee;
}

.blog_wrapper .blogs_img {
  height: 425px;
  width: 100%;
}

.blog_wrapper .title {
  padding-top: 17px;
  font-size: 24px;
  letter-spacing: 0.3px;
  font-family: 'Poppins', sans-serif;
  color: #337ab7;
  font-weight: 500;
  transition: var(--transition);
}

.blog_wrapper .title:hover {
  color: #0056b3
}

.blog_wrapper>ul {
  margin: 15px 0 5px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 13px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--secondary__font);
}

.blog_wrapper>ul>li {
  display: flex;
  align-items: baseline;
  column-gap: 5px;
}

.blog_wrapper p {
  font-size: 14px;
  color: #262626;
  text-align: justify;
  line-height: 25px;
  margin-bottom: 15px;
  letter-spacing: 0.3px;
  font-family: var(--secondary__font);
}

.blog_wrapper .site_btn {
  text-transform: uppercase;
}

.blog_content>ul>li {
  margin-bottom: 25px;
}

.posts__wrapper h3 {
  background: #000;
  color: #fff;
  font-size: 18px;
  letter-spacing: .5px;
  padding: 10px 0;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
}

.posts_linking li a {
  color: #212121;
  font-size: 15px;
  letter-spacing: .5px;
  text-decoration: none;
  font-family: var(--secondary__font);
  line-height: 23px;
}

.posts_linking li {
  margin-bottom: 10px;
}

.posts_linking {
  background: #fff;
  margin-bottom: 30px;
  padding: 15px 20px;
}

.blog__section .breadcrumb__holder {
  padding: 8px 30px;
  margin-bottom: 30px;
}

.blog__section .breadcrumb__holder h4 {
  font-size: 14px;
}

.blog__section .breadcrumb__holder ul {
  align-items: baseline;
}

.page-numbers {
  background-color: #00a1df4f;
  color: #000;
  font-size: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.page-numbers.current {
  background: #000;
  color: #fff;
}

.post-content h2 {
  color: #000;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 5px;
  font-family: var(--secondary__font);
  letter-spacing: 0;
}

.pagination {
  gap: 10px;
}

.single-post .blog_content {
  background: #fff;
  padding: 20px;
}

.blog_wrapper h1.title {
  line-height: 1.2;
}

.comment-form p {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 10px;
}

.comment-form label {
  margin-bottom: 8px;
}

.comment-form {
  display: flex;
  flex-wrap: wrap;

}

.form-submit input[type="submit"] {
  background: var(--btn__color);
  color: #fff;
  padding: 13px 25px;
  min-width: 110px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-family: var(--heading__font);
  font-size: 14px;
  font-weight: 600;
  border: none;
}

.form-submit input[type="submit"]:hover {
  background: var(--black__color);
  color: #fff;
}

.form-submit {
  display: block !important;
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
  width: 33.33% !important;
  flex: 0 0 auto;
  padding: 0 10px;
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
  height: 45px;
}

.comment-form-cookies-consent {
  display: block !important;
}

.comment-reply-title {
  color: #000;
  font-size: 22px;
  line-height: 30px;
  padding: 0 10px;
  font-weight: 500;
}



/* -----------------********** */
/* Page: Blog End */
/* -----------------********** */



/* -----------------********** */
/* Page: Contact Us Start */
/* -----------------********** */

.contact__page_info,
.contact__page_form {
  background: #fff;
  padding: 10px;
  -webkit-box-shadow: 1px 1px 5px 1px #000 !important;
  box-shadow: 1px 1px 5px 1px #000 !important;
  height: 100%;
}

.contact__page_info h2 {
  color: #000;
  font-family: var(--secondary__font);
  line-height: 36px;
  font-size: 28px;
  margin: 10px 0 15px;
}

.contact_page_img .site_btn {
  text-transform: uppercase;
  margin-top: 20px;
  padding: 7px 25px;
}

.contact__address .icon {
  background: #0ba0dc;
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  border-radius: 5px;
  flex: 0 0 auto;
}

.contact__address>ul>li {
  display: flex;
  align-items: center;
  column-gap: 16px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #000;
  letter-spacing: 0.3px;
  font-family: var(--secondary__font);
  line-height: 22px;
}

.mobile_holder a {
  color: #000;
  transition: var(--transition);
  position: relative;
}

.mobile_holder a:hover {
  color: var(--btn__color);
}

.mobile_holder a:not(:last-child):after {
  content: '';
  position: absolute;
  width: 2px;
  height: 15px;
  background: rgb(0, 0, 0, 0.6);
  right: -10px;
  top: 3px;
}


.mobile_holder {
  display: flex;
  flex-wrap: wrap;
  column-gap: 15px;
}

.contact__page_form .form_field input {
  width: 100%;
  height: 45px;
  padding: 5px 10px;
  border: 1px solid #dddddd;
  border-radius: 6px;
  color: #000;
  font-size: 14px;
  font-family: var(--secondary__font);
}

.contact__page_form .form_field input:focus-visible {
  outline: none;
}

.contact__page_form .form_field input:focus,
.contact__page_form .form_field textarea:focus {
  border-color: var(--btn__color);
}

.contact__page_form .form_field textarea {
  width: 100%;
  height: 80px;
  font-family: var(--secondary__font);
  padding: 5px 10px;
  border: 1px solid #dddddd;
  border-radius: 6px;
  color: #000;
  font-size: 14px;
}

.contact__page_form .form_field {
  margin-bottom: 20px;
}

.contact__page_form .form_field .site_btn {
  color: #fff;
  text-transform: uppercase;
  width: auto;
}

.about_doctor ul li {
  color: #54595F;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 26px;
}

.about_doctor ul li::after {
  content: '\f105';
  position: absolute;
  font-family: 'fontawesome';
  font-size: 25px;
  left: 0;
  top: 0;
  color: #1F205E;
}

.top_orthodontic_wrppr>ul {
  display: flex;
  flex-wrap: wrap;
}

.top_orthodontic_wrppr>ul>li {
  width: 20%;
  flex: 0 0 auto;
  padding: 0 12px;
  margin-bottom: 10px;
}

.top_orthodontic_wrppr .card {
  border: none;
}

.top_orthodontic_wrppr .card a {
  color: #337ab7;
  margin-bottom: 10px;
  transition: var(--transition);
}

.top_orthodontic_wrppr .card a:hover {
  color: #0056b3;
}

.top_orthodontic_wrppr .card p {
  color: #7a7a7a;
  line-height: 1.6;
}

.top_orthodontic_wrppr li {
  font-size: 14px;
}

.top_orthodontic_wrppr {
  text-align: center;
}

.mobile_social_icons {
  display: none;
}

.hero_slider_bnr .container-fluid .row>* {
  padding: 0;
}



/* -----------------********** */
/* Page: Contact Us End */
/* -----------------********** */


.banner_slider_wrp {
  visibility: hidden;
}

.banner_slider_wrp.slick-initialized {
  visibility: visible;
}

.page-template-template-dr-angsuman h2 {
  text-align: center;
}

.reachout_field textarea {
  width: 100%;
}

.smlfont {
  font-size: 14px;
}

/* video part start 27-11 */

.vid_yt {
  height: 500px;
  width: 100%;
}

.reverse__section .reverse__wrap .row+.row {
  margin-top: 50px;
}

.pre_post_treatment .row {
  row-gap: 25px;
}

.pre_post_treatment .prepost__card {
  height: 258px;
}

.reverse__hldr_image.vid_yt video {
  object-fit: contain;
}





/* Mission Smile Slider  */


.mission_smile_slider .slider_item {
  padding: 0 10px;
}

.ms_slider_card {
  border-radius: 10px;
  background: #123075;
  padding: 20px;
}

.ms_slider_card .image {
  height: 235px;
  border-radius: 4px;
  overflow: hidden;
  /* margin-bottom: 15px; */
}

.ms_slider_card p {
  color: #fff;
}

.ms_slider_card h3 {
  color: #fff;
  font-weight: 500;
  margin-bottom: 10px;
}

/* Mission Smile Slider  */

/* Workshop Demo Accordian */
.workshop_demo_accordian h2 {
  text-align: center;
  margin-bottom: 15px;
}

/* Workshop Demo Accordian */

/* video slider */

.review_video_slider .slider_item {
  padding: 0 10px;
}

.review_video_slider .slider_video {
  height: 400px;
}

/* video slider */

/* Development Fixing */

.dental__service_banner .wpcf7 form .wpcf7-response-output {
  color: #fff;
  text-align: center;
}

.dental__service_banner .wpcf7-spinner {
    display: block;
    opacity: 1;
    margin: 10px 0;
    left: 50%;
    transform: translateX(-50%);
}