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

*::after,
*::before {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  text-decoration: none;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font: inherit;
  scrollbar-width: 10px;
  scrollbar-color: #22cef7 #fff;
}

@font-face {
  font-family: "Georgia";
  src: url("Georgia.eot");
  src: url("Georgia.eot?#iefix") format("embedded-opentype"),
    url("Georgia.woff2") format("woff2"), url("Georgia.woff") format("woff"),
    url("Georgia.ttf") format("truetype"),
    url("Georgia.svg#Georgia") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sitka Banner";
  src: url("SitkaBanner-Bold.eot");
  src: url("SitkaBanner-Bold.eot?#iefix") format("embedded-opentype"),
    url("SitkaBanner-Bold.woff2") format("woff2"),
    url("SitkaBanner-Bold.woff") format("woff"),
    url("SitkaBanner-Bold.ttf") format("truetype"),
    url("SitkaBanner-Bold.svg#SitkaBanner-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* For Scrollbar */

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
}

*::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #5c4229;
  border: 2px solid #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

*:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

html {
  font-size: 62.5%;
}

body {
  font-weight: normal;
  line-height: normal;
  font-size: 18px;
}

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

button,
input[type="submit"],
input[type="reset"],
a {
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  text-decoration: none;
  outline: none;
}

a:hover,
a:focus {
  text-decoration: none;
}

::-moz-selection {
  color: #fff;
  background: #22cef7;
}

::selection {
  color: #fff;
  background: #22cef7;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: normal;
  font-weight: normal;
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

/***************** FOR BOOTSTRAP ******************/

.container {
  max-width: 1560px;
}

.navbar {
  border-radius: 0;
  margin-bottom: 0;
  padding: 0;
}

.nav > li > a:hover,
.nav > li > a:focus {
  background-color: transparent;
}

.navbar,
.nav-link {
  padding: 0;
  margin: 0;
}

.navbar-expand-md .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.nav > li > a:hover,
.nav > li > a:focus {
  background-color: transparent;
}

/* cmn_margin & Padding */

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

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

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

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

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

.cmn_pdding {
  padding: 90px 0;
}

/*----Common Header and Button----*/

.cmn_hdr h2 {
  font-family: "Georgia";
  font-size: 52px;
  line-height: 1.2;
  color: #292929;
  padding-bottom: 10px;
  text-transform: capitalize;
}

.cmn_hdr h2 span {
  color: #22cef7;
}

.cmn_hdr.wht h2 {
  color: #fff;
}

.cmn_hdr h3 {
  font-size: 24px;
  color: #292929;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.cmn_hdr h4 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 1.5;
  padding-bottom: 10px;
}

.cmn_hdr p {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #797a7a;
  line-height: 1.5;
  padding-bottom: 10px;
}

.cmn_hdr.wht p {
  color: #f9f9f9;
}

.cmn_btn {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  padding: 11px 12px 11px 20px;
  gap: 10px;
  display: flex;
  align-items: center;
  background: #22cef7;
  border: 2px solid #22cef7;
  position: relative;
  text-transform: capitalize;
  transition: 0.5s all;
  z-index: 1;
  border-radius: 50px;
  overflow: hidden;
}

.cmn_btn.btn_wht {
  color: #292929;
  background: #fff;
  border: 2px solid #fff;
}

.cmn_btn.btn_wht::after {
  background-color: #22cef7;
}

.cmn_btn.btn_wht:hover {
  color: #fff;
  background-color: #fff;
  border: 2px solid #22cef7;
}

.cmn_btn::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.7s;
}

.cmn_btn:hover {
  color: #fff;
  border: 2px solid #22cef7;
  background-color: #22cef7;
  color: #22cef7;
}

.cmn_btn:hover::after {
  width: 100%;
}

/*----Common Header and Button End----*/

/*! button back to top !*/

#backToTop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: #22cef7;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 50px;
  position: fixed;
  right: 2.5rem;
  bottom: 105%;
  cursor: pointer;
  z-index: 5555;
  transition: 0.5s all ease;
  border: 1px solid #22cef7;
  font-size: 1.8rem;
  transition: 0.8s all;
}

#backToTop.show {
  bottom: 2.5rem;
}

/*! button back to top End!*/

/* Animation Section */

/* Swing */

@-webkit-keyframes swing {
  0% {
    transform: rotate(3deg);
  }

  100% {
    transform: rotate(-3deg);
  }
}

@keyframes swing {
  0% {
    transform: rotate(3deg);
  }

  100% {
    transform: rotate(-3deg);
  }
}

/* Rotate */

.rotate {
  -webkit-animation: rotation 12s infinite linear;
  animation: rotation 12s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

/* Floating */

.floating {
  -webkit-animation: floating ease-in-out 3s infinite;
  animation: floating ease-in-out 3s infinite;
}

@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }

  50% {
    transform: translate(0, 15px);
  }

  100% {
    transform: translate(0, -0px);
  }
}

/* Animation Section End */

header {
  position: absolute;
  padding: 20px 0;
  right: 0;
  left: 0;
  z-index: 90;
}

header .cus_nav_innr {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: end;
}

/* Sangita 13.11.25 */
/* ========================navbar==================== */
.navbar {
  display: flex;
  /* gap: 66px; */
}

.hdr_cntc {
  display: flex;
  align-items: center;
  gap: 27px;
}

.tooth_icn {
  font-size: 18px;
  width: 27px;
  height: 27px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #22cef7;
  background-color: #fff;
  border-radius: 50%;
  outline: 5px solid #00afe6;
}

.btn_wht .tooth_icn {
  outline: 5px solid #a6e0ee;
}

.hdr_num {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hdr_ph_icn {
  color: #fff;
  border: 3px solid #00afe6;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.hdr_ph a {
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  color: #ffffff;
  font-weight: 600;
  font-family: "Poppins";
}

.nav-link {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-link:hover {
  color: #3ec9ea;
}

.hdr_ph a:hover {
  color: #3ec9ea;
}

.navbar-nav .nav-link.active {
  color: #3ec9ea;
}

.navbar-nav {
  gap: 39px;
}

.logo_area {
  display: block;
  width: 271px;
}

/* ==========================banner===================== */
.bnr_img {
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.banner {
  position: relative;
}

.bnr_content {
  position: absolute;
  top: 21%;
  left: 10%;
  width: 45%;
}

.dntr_dtl h1 {
  font-family: "Georgia";
  font-size: 70px;
  color: #ffffff;
}

.dntr_dtl h1 span {
  color: #22cef7;
}

.bnr_icn {
  position: absolute;
  bottom: 169px;
  left: -10px;
}

.dntr_dtl {
  padding-bottom: 50px;
}

.bnr_btns {
  display: flex;
  gap: 12px;
}

.bnr_content p {
  padding-bottom: 33px;
}

/* ==========================about================== */
.abt_ph .hdr_ph_icn {
  color: #292929;
}

.about {
  position: relative;
}

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

.abt_lft_prt {
  width: 49%;
}

.abt_rgt_prt {
  width: 45%;
}

.abt_lft_prt {
  position: relative;
}

.abt_imgs_otr {
  position: absolute;
  bottom: 0;
  right: 128px;
}

.abt_rnd_img {
  background: #22cef7;
  width: 500px;
  height: 500px;
  border-radius: 50%;
}

.abt_teeth_img {
  position: absolute;
  width: 494px;
  right: -7px;
}

.abt_rgtside_img {
  position: absolute;
  right: 0;
  top: 12%;
}

.abt_lft_cntn {
  background-color: #4a4a48;
  width: 198px;
  height: 198px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  outline: 8px solid #fff;
  position: absolute;
  right: -73px;
  bottom: 64px;
}

.abt_bld_txt {
  font-size: 82px;
  line-height: 1;
  color: #22cef7;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.abt_lft_cntn.cmn_hdr p {
  font-weight: 500;
}

.about.cmn_pdding {
  padding-top: 0;
}

.abt_rgt_prt.cmn_hdr h2 {
  padding-bottom: 0;
}

.abt_rgt_prt.cmn_hdr h4 {
  color: #22cef7;
  font-weight: 500;
}

.abt_rgt_prt p {
  padding-bottom: 17px;
}

.abt_cntc_prt {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 14px;
}

.abt_ph a {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  color: #292929;
  font-weight: 700;
}

.abt_tht_bg {
  position: relative;
  top: -69px;
}

.denture_txt {
  font-family: "Sitka Banner";
  font-size: 240px;
  color: #f0fbfd;
  font-weight: bold;
  position: absolute;
  bottom: -193px;
  width: 100%;
  text-align: center;
}

/* =============================blue_flx_dv============================= */
.blue_flx {
  background-color: #21cdf7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 50px;
  border-radius: 15px;
}

.blue_flx_dv {
  position: relative;
  margin-top: 50px;
}

.blue_txt.cmn_hdr h2 {
  text-transform: none;
}

.blue_cntn.cmn_hdr h4 {
  font-weight: 400;
  color: #fff;
  padding-bottom: 15px;
}

.blue_flx_btn {
  display: flex;
}

.str_img_otr {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #21cdf7;
  width: 250px;
  height: 250px;
  border: 12px solid #fff;
  border-radius: 50%;
  outline: 29px solid rgba(255, 255, 255, 0.2);
}

.str_img {
  width: 157px;
}

/* ========================service===================== */
.srvc_hdr h2 {
  text-align: center;
  padding-bottom: 25px;
  margin-bottom: 40px;
}

.srvc_layout {
  display: flex;
  justify-content: space-between;
}

.srvc_img_otr {
  background-color: #d0f4fd;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  margin-inline: auto;
  margin-bottom: 20px;
}

.srvc_img {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
  position: absolute;
  top: 10px;
}

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

.srvc_card {
  position: relative;
}

.srvc_icn_otr {
  background-color: #21cdf7;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 62px;
  height: 62px;
  outline: 4px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: -33px;
  left: 50%;
  transform: translateX(-50%);
}

.srvc_icn {
  width: 43px;
}

.srvc_swpr .swiper {
  overflow-y: visible;
}

.service {
  position: relative;
}

.srvc_navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 37%;
  width: 100%;
  z-index: 50;
}

.srvc-button-prev,
.srvc-button-next {
  color: #fff;
  background: #9e9e9e;
  width: 27px;
  height: 27px;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.srvc-button-prev {
  margin-left: 104px;
}

.srvc-button-next {
  margin-right: 104px;
}

.srvc_cntn {
  text-align: center;
}

.srvc_cntn.cmn_hdr p {
  padding-bottom: 15px;
}

.srvc_cntn.cmn_hdr h3 {
  padding-bottom: 10px;
}

.srvc_cntn a {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  text-decoration: underline;
  color: #22cef7;
  font-weight: 600;
}

.srvc_swpr {
  padding-bottom: 30px;
}

.srvc_btn {
  display: flex;
  justify-content: center;
}

/* =======================choose================= */
.choose {
  background-image: url(../images/choose_bg.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  height: 968px;
}

.ch_hdr.cmn_hdr h2 {
  text-align: center;
}

.blue_line {
  width: 81%;
  margin-inline: auto;
}

.long_line {
  display: flex;
  width: 1252px;
  height: 2px;
  background-color: #8ce5fa;
}

.ch_hdr {
  padding-bottom: 22px;
}

.ch_layout {
  display: flex;
  justify-content: space-between;
}

.ch_card {
  width: 19%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 1));
  padding: 0 15px 31px 15px;
  border-bottom-left-radius: 146px;
  border-bottom-right-radius: 146px;
}

.shrt_line {
  display: flex;
  background-color: #8ce5fa;
  width: 2px;
  height: 50px;
}

.ch_shrt_line {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ch_bx.cmn_hdr h4 {
  color: #292929;
  font-weight: 600;
  padding-bottom: 20px;
}

.ch_icn {
  width: 75px;
}

.ch_icn_otr {
  background-color: #21cdf7;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  outline: 12px solid #c7f2fd;
}

.ch_bx {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: space-between;
}

/* ==============================gallery========================= */
.gallery {
  position: relative;
}

.gallery.cmn_pdding {
  padding-top: 50px;
}

.glry_hdr {
  text-align: center;
  padding-bottom: 26px;
}

.glry_str {
  width: 116px;
  position: absolute;
  top: 72px;
  left: 116px;
}

.glry_img {
  border-radius: 10px;
  overflow: hidden;
}

.glry_flx {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 36px;
}

.glry_btn {
  display: flex;
  justify-content: center;
}

/* Sangita 14.11.25 */
/* ======================================mouthguard========================== */
.mouthguard.cmn_pdding {
  padding-top: 0;
}

.m_wrpr {
  display: flex;
  justify-content: space-between;
}

.mthgrd_left_prt {
  position: relative;
  width: 51%;
}

.mthgrd_cntn {
  position: absolute;
  top: 169px;
  left: 170px;
}

.mthgrd_rgt_prt {
  width: 44%;
  margin-top: 35px;
  justify-content: end;
  display: flex;
}

.mthgrd_cntn.cmn_hdr h4 {
  color: #797a7a;
  font-weight: 600;
  line-height: 1.3;
  padding-bottom: 27px;
}

.glry_btn.mthgrd_btn {
  justify-content: start;
}

.mth_img {
  width: 658px;
}

.mouthguard {
  position: relative;
}

/* .denture_txt.mthgrd_txt {
    bottom: -189px;
} */
.denture_txt.mthgrd_txt {
  bottom: -157px;
}

/* ====================================treatment========================= */
.treatment {
  background-image: url(../images/treatment_bg.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  margin-top: 104px;
}

.trtmnt_hdr {
  text-align: center;
  padding-bottom: 52px;
}

.wave_shape {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.trtmnt_layout {
  display: flex;
  justify-content: space-between;
}

.wave_img {
  width: 1116px;
}

.tr_card.cmn_hdr h3 {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.2;
}

.tr_card {
  width: 17%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.tr_img {
  width: 65px;
}

.tr_crd_img {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  outline: 12px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 26px;
}

.tr_blk_rnd {
  color: #fff;
  font-weight: 600;
  background-color: #4a4a48;
  outline: 8px solid #1fc8f1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: -34px;
}

.tr_card.cmn_hdr h4 {
  padding-bottom: 0;
}

/* ===========================map_sec======================== */
.map_hdr.cmn_hdr {
  text-align: center;
}

.map_sec {
  position: relative;
}
.map_part iframe {
  height: 460px;
}

/* =====================appntmnt =========================== */
.appntmnt {
  margin-top: 50px;
  background: linear-gradient(to bottom, #fbfeff, #cff4fd);
  margin-bottom: -199px;
  padding-bottom: 201px;
}
.apnmnt_btns {
  display: flex;
  align-items: center;
  gap: 25px;
}
.apntm_wrpr {
  display: flex;
  justify-content: space-between;
}
.appnmnt_dtls {
  width: 40%;
}
.appnmtn_bkng {
  width: 45%;
  background-color: #fff;
  padding: 16px;
  padding-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0 16px 16px rgba(0, 0, 0, 0.1);
}
.apntm_frm_hdr {
  background-color: #494947;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 18px;
}
.apntm_frm_hdr.cmn_hdr h2 {
  padding-bottom: 0;
}
.form_grp {
  display: flex;
  justify-content: space-between;
  gap: 7px;
  padding-bottom: 9px;
}
.frm_prt {
  width: 50%;
}
.frm_prt input,
.form_grp textarea {
  width: 100%;
  font-size: 17px;
  color: #797a7a;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  border: 1px solid #aeaeae;
  padding: 12px;
  border-radius: 6px;
}
.form_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form_btn .cmn_btn {
  width: 50%;
  text-align: start;
}
.form_btn .tooth_icn_otr {
  position: absolute;
  z-index: 1;
  right: 186px;
}
.form_grp:last-child {
  padding-bottom: 30px;
}
.appnmnt_dtls {
  position: relative;
}
.apntmn_usr {
  width: 425px;
  height: 475px;
  position: absolute;
  bottom: 13px;
}
.apntmn_usr_otr {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  width: 455px;
  height: 455px;
  border-radius: 50%;
  position: absolute;
  left: 4px;
}
.apnmt_bl_rnd {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #22cef7;
  width: 490px;
  height: 490px;
  border-radius: 50%;
}
.apntmt_bg_img {
  position: absolute;
  bottom: -264px;
  left: -49px;
}
.apnmt_bl_rnd {
  position: absolute;
  bottom: -326px;
  left: 56px;
}
.form_btn .cmn_btn:hover {
  color: #22cef7;
  background: #fff;
  border: 2px solid #22cef7;
}

/* ==========================footer===================== */
footer {
  background-image: url(../images/ftr_bg.webp);
  height: 750px;
}
.top_ftr {
  padding-top: 381px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #272727;
}
.ftr_dv li a,
.ftr_dv li,
.ftr_dv p {
  font-size: 14px;
  color: #a4a3a3;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
.ftr_dv li a,
.ftr_dv li {
  transition: 0.3s ease;
}
.ftr_dv li a:hover,
.ftr_dv li:hover {
  color: #3ec9ea;
}
.ftr_dv:nth-child(1) {
  width: 20%;
}
.ftr_hdr h3 {
  font-family: "Georgia";
  font-size: 24px;
  color: #ffffff;
  text-transform: capitalize;
  padding-bottom: 25px;
}
.ftr_dv:nth-child(2) {
  width: 22%;
}
.ftr_dv:nth-child(3) {
  width: 15%;
}
.ftr_dv:nth-child(4) {
  width: 17%;
}
.ftr_dv:nth-child(5) {
  width: 14%;
  border-right: 0;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}
.ftr_logo {
  width: 271px;
  padding-bottom: 15px;
}
.ftr_dv {
  border-right: 1px solid #272727;
  padding-right: 31px;
  padding-bottom: 23px;
}
.ftr_dv:nth-child(1) p {
  width: 94%;
  padding-bottom: 30px;
}
.ftr_icns ul {
  display: flex;
  gap: 8px;
}
.ftr_icns ul li {
  color: #fff;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid #fff;
  border-radius: 50%;
}
.ftr_dv li {
  padding-bottom: 10px;
}
.ftr_dv:nth-child(2) li {
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ftr_dv:nth-child(2) li a {
  display: flex;
  align-items: center;
  gap: 8px;
  word-break: break-all;
}
.ftr_icn {
  color: #fff;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.ftr_icn:hover {
  transform: rotate(360deg);
}
.ftr_dv:nth-child(1) li {
  padding-bottom: 0;
}
.btm_ftr {
  padding: 12px;
}
.btm_ftr p {
  text-align: center;
  font-size: 14px;
  color: #a4a3a3;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
.btm_ftr a {
  color: #a4a3a3;
}
.btm_ftr a:hover {
  color: #3ec9ea;
}

/* sangita 18.11.25 */
/* ================choose================== */
.ch_mbl_swpr .ch_card {
  width: 100%;
}
.ch_mbl_swpr {
  display: none;
}

/* ====================gallery================== */
.glry_mbl_vw {
  display: none;
}

/* ===================navbar====================== */
.main_nav {
  width: 100%;
  justify-content: space-between;
  gap: 262px;
}
.hdr_ph {
  position: absolute;
  right: 190px;
}

/* =======================footer==================== */
.mbl_ftr {
  display: none;
}
.ftr_acc .acc_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.ftr_acc.active .acc_content {
  max-height: 500px;
}

.acc_hdr {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  align-items: center;
}

.acc_icon {
  transition: 0.3s ease;
  font-size: 16px;
  color: #fff;
}

.ftr_acc.active .acc_icon {
  transform: rotate(180deg);
}

/* sangita 19.11.25 */
/* =================banner================== */
.bnr_mbl_img {
  display: none;
}

/* sangita 01.12.25 */
/* ---------------------------HOME PAGE--------------------- */
.map_hdr.cmn_hdr {
  position: absolute;
  width: max-content;
  background: #4a4a48;
  margin-inline: auto;
  left: 0;
  right: 0;
  padding: 6px 18px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}
.map_hdr.cmn_hdr h2 {
  color: #fff;
  padding-bottom: 0;
}

/* -----------------------------------------ABOUT PAGE---------------------------- */
/* ===========banner========== */
.about_bnnr .dntr_dtl {
  padding-bottom: 10px;
}
.about_bnnr .bnr_content {
  width: 31%;
  top: 30%;
}

/* =============care================ */
.care_wht_otr {
  position: absolute;
  right: -150px;
  bottom: 109px;
  background-color: #fff;
  width: 252px;
  height: 252px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
}
.care_apprv_img {
  position: absolute;
  top: 16px;
}
.care .abt_teeth_img {
  width: 489px;
  right: 0;
  bottom: 3px;
}
.care .abt_rgt_prt {
  width: 34%;
}
.care .abt_wrpr {
  justify-content: unset;
  gap: 164px;
}
.care .abt_rgt_prt.cmn_hdr h2 {
  padding-bottom: 14px;
}
.wrapper {
  display: flex;
  justify-content: space-between;
}
/* ===========blue_flex_dv========== */
.blue_flx_dv.abt_blue_sec {
  background-color: #f6fcfe;
  z-index: 2;
  margin-top: 102px;
}
.blue_flx_dv.abt_blue_sec.cmn_pdding {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* ===========meet============ */
.meet {
  background-image: url(../images/meet_bg.webp);
  height: 700px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
}
.meet_cntn {
  width: 55%;
  padding-top: 55px;
}
.meet_rgt_img {
  width: 41%;
  position: absolute;
  right: 0;
  bottom: 0;
}
.meet_blu_flx {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #21cdf7;
  width: 65%;
  padding: 5px 5px;
  margin-bottom: 24px;
  border-radius: 6px;
}
.blk_hdr {
  background-color: #494947;
  padding: 5px 15px;
}
.meet_blu_flx h3 {
  color: #fff;
}
.meet_cntn.cmn_hdr p span {
  font-weight: 600;
  color: #292929;
}
.meet_cntn.cmn_hdr p {
  padding-bottom: 18px;
}
.meet_blu_rnd {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #21cdf7;
  width: 580px;
  height: 580px;
  border-radius: 50%;
}
.mt_wht_rnd {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  width: 535px;
  height: 535px;
  border-radius: 50%;
  position: absolute;
  right: 210px;
}
.meet_img {
  width: 495px;
  height: 496px;
  border-radius: 50%;
  overflow: hidden;
}

/* ==============approach============= */
.apprch_hdr {
  text-align: center;
  padding-bottom: 32px;
}
.apprch_layout {
  display: flex;
  justify-content: space-between;
}
.aprch_crd {
  width: 32%;
  background-color: #fff;
  filter: drop-shadow(0 0 6.5px rgba(5, 64, 78, 0.08));
  padding: 10px;
  border-radius: 12px;
}
.aprch_crd_img {
  width: 459px;
  height: 300px;
  margin-inline: auto;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 9px;
}
.apprch_crd_dtls {
  padding: 19px 10px;
}
.apprch_crd_dtls.cmn_hdr p span {
  font-weight: 600;
  color: #292929;
}
.approach {
  position: relative;
}
.approach .denture_txt.mthgrd_txt {
  margin-bottom: 17px;
  bottom: -208px;
}
.appntmnt.abt_apntm {
  /* margin-top: 50px; */
  margin-top: 74px;
}
.aprch_crd_img img {
  width: 100%;
  height: 100%;
}

/* sangita 02.12.25 */
/* ------------------------------------------SERVICE PAGE------------------------ */
/* =================denture about=========== */
.denture .abt_rgt_prt {
  width: 37%;
}

/* sangita 03.12.25 */
/* ===================blue_flx_dv============== */
.servc_blue_sec .blue_txt {
  width: 33%;
}
.blu_center_img_prnt {
  border: 16px solid #fff;
  border-radius: 50%;
  outline: 27px solid rgba(255, 255, 255, 0.2);
}
.blu_center_img {
  width: 286px;
  height: 286px;
  border-radius: 50%;
  overflow: hidden;
}
.servc_blue_sec .blue_cntn {
  width: 33%;
}
.servc_blue_sec .blue_cntn p {
  color: #fff;
  font-weight: 400;
}
.servc_blue_sec .blue_cntn p:nth-child(1) {
  padding-bottom: 21px;
}
.servc_blue_sec .blue_flx_dv.servc_blue_sec {
  background-color: #f8fdfe;
  margin-top: 100px;
  padding-top: 60px;
}

/* ===================chrome================ */
.chrome .meet_cntn {
  width: 44%;
  padding-top: 86px;
}
.meet_cntn.cmn_hdr h2 {
  padding-bottom: 20px;
}

/* =================repair================= */
.repair .aprch_crd {
  width: 49%;
}
.repair .aprch_crd_img {
  width: 100%;
  height: 420px;
}
.repair .apprch_crd_dtls.cmn_hdr h3 {
  padding-bottom: 12px;
}
.repair .apprch_crd_dtls {
  padding: 19px 67px 20px 19px;
}
.repair .apprch_crd_dtls p {
  padding-bottom: 17px;
}
.repair .apprch_crd_dtls p:last-child {
  padding-bottom: 0;
}

/* ========================valplast============== */
.valplast {
  background-image: url(../images/valplast_bg.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-top: 106px;
}
.play_icn {
  font-size: 26px;
  background-color: #fff;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  outline: 10px solid rgba(255, 255, 255, 0.4);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.play_icn a {
  color: #3dc9e9;
}
.vlplst_hdr.cmn_hdr h2 {
  color: #fff;
}
.vlplst_hdr.cmn_hdr p {
  color: #fff;
  padding-bottom: 25px;
}
.vlplst_hdr.cmn_hdr p span {
  font-weight: 600;
}
.vlplst_hdr {
  text-align: center;
  padding-bottom: 30px;
}
.vlplst_hdr.cmn_hdr p:nth-child(2) {
  width: 77%;
  margin-inline: auto;
}
.vlplst_hdr.cmn_hdr p:nth-child(3) {
  width: 83%;
  margin-inline: auto;
}
.vlplst_hdr.cmn_hdr p:nth-child(4) {
  width: 56%;
  margin-inline: auto;
}
.vdo_flx_dv {
  display: flex;
  justify-content: space-between;
}
.vlps_vdo_img {
  border-radius: 10px;
  overflow: hidden;
}
.valplst_vdo_prt {
  position: relative;
}

/* ========================= service mouthguard ================== */
.mouthguard.srvc_mthgrd.cmn_pdding {
  padding-top: 145px;
  margin-top: 42px;
}
.srvc_mthgrd .m_wrpr {
  align-items: center;
}
.srvc_mthgrd .mthgrd_left_prt {
  width: 50%;
  top: -138px;
}
.srvc_mthgrd .mthgrd_cntn p {
  padding-bottom: 24px;
}
.srvc_mthgrd .mthgrd_rgt_prt {
  margin-top: 0;
}

/* ================================kits==================== */
.kits {
  position: relative;
  padding-top: 40px;
}
.kits .wrapper {
  align-items: center;
}
.kit_dtls {
  width: 51%;
}
.kit_img_prt {
  width: 41%;
}
.kit_img {
  width: 633px;
  border-radius: 8px;
  overflow: hidden;
}
.kits .container {
  padding-bottom: 70px;
}

/* ayon paul start / 09.12.2025 */
.navbar-expand-lg .navbar-nav li.nav-link {
  padding-right: 0;
  padding-left: 0;
}
.form_grp p {
  width: 100%;
}
.form_btn p .tooth_icn_otr {
  position: absolute;
  z-index: 1;
  right: 189px;
}
.form_btn p {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 10px;
}
.form_btn p .wpcf7-spinner {
  display: none;
}
/* ayon paul end / 09.12.2025 */

/* ayon paul start / gallery page / 10.12.2025 */

.photo_gall_flx {
  display: flex;
  width: 100%;
  gap: 2%;
  row-gap: 20px;
  flex-wrap: wrap;
}
.photo_gall_flx .glry_img.photo {
  width: 32%;
}
.photo_gall_flx .glry_img.photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin: auto;
  border: 1px solid transparent;
  border-radius: 10px;
}
.gallery_sec .glry_dv .pagination {
  justify-content: center !important;
  gap: 10px;
  align-items: center;
  padding-top: 20px;
}
.gallery_sec .glry_dv .pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #22cef7;
  border: 1px solid #22cef7;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  transition: all 0.3s;
}
.gallery_sec .glry_dv .pagination a.active {
  background: #22cef7;
  color: #fff;

}
.gallery_sec .glry_dv .pagination li:first-child a {
  width: auto;
  height: auto;
  background: 0;
  border: 0;
}
.gallery_sec .glry_dv .pagination li:first-child a svg {
  color: #22cef7;
}
.gallery_sec .glry_dv .pagination li:last-child a {
  width: auto;
  height: auto;
  background: 0;
  border: 0;
}
.gallery_sec .glry_dv .pagination li:last-child a svg {
  color: #22cef7;
}
.gallery_sec.photo_sec.cmn_pdding {
  padding-bottom: 0;
}

/* ayon paul end / gallery page / 10.12.2025 */

/* ayon paul start / 10.12.2025 */

.faq_accrd {
  position: relative;
}

.faq_accordion {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 2%;
  row-gap: 20px;
}

.faq_accordion_itmottr {
  width: 49%;
}

.faq_accordion-item {
  background: #35c6e8;
  padding: 20px;
  border-radius: 10px;
  color: white;
  transition: 0.3s ease;
  width: 100%;
}

.faq_accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  color: white;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq_accordion-header .arrow {
  transition: transform 0.3s ease;
}

.faq_accordion-item.active .arrow {
  transform: rotate(180deg);
}

.faq_accordion-content {
  max-height: 0;
  overflow: auto;
  transition: max-height 0.35s ease;
}

.faq_accordion-content p {
  margin-top: 15px;
  line-height: 1.2;
}
.faq_accordion-header.cmn_hdr h3 {
  color: #fff;
}
.faq_accordion-content.cmn_hdr p {
  color: #fff;
}
.about_bnnr.prf_asst_bnnr .bnr_content {
  width: 40%;
}
.denture.prf_asst_dntr.denture .abt_rgt_prt {
  width: 41%;
}
.wrk_frst_innr {
  background: #22cef7;
  padding: 50px 10px;
  border-radius: 15px;
}
.wrk_frst_cnt_ttl {
  width: 88%;
  margin: auto;
}
.wrk_frst_flx {
  width: 100%;
  display: flex;
  gap: 2%;
  row-gap: 15px;
  flex-wrap: wrap;
}
.wrk_frst_prt {
  width: 23.5%;
  background: url(../images/wrk_bx_imp.webp) no-repeat;
  background-size: 100% 100%;
  height: 100%;
  padding: 50px 10px;
}
.wrk_prt_txt h3 {
  color: #feffff;
  width: 53%;
  margin: auto;
}
.wrk_prt_txt {
  padding-bottom: 3rem;
}
.wrk_prt_round {
  width: 139px;
  height: 139px;
  background: #feffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 100%;
  outline: 10px solid #21cef7;
  margin: auto;
}
.wrk_rnd_pic {
  width: 7rem;
  height: 7rem;
}
.wrk_rnd_pic img {
  width: 100%;
  margin: auto;
}
.imp_wrk_first {
  margin-top: 50px;
}
.wrk_frst_top {
  padding-bottom: 20px;
}
.meet_img img {
  width: 100%;
  height: 100%;
  margin: auto;
}
.fxd_imp_flx {
  width: 100%;
  display: flex;
  gap: 2%;
  flex-wrap: wrap;
}
.fxd_imp_bx {
  width: 49%;
}
.fxd_imp_bx_img {
  width: 100%;
  height: 100%;
}
.fxd_imp_bx_img img {
  width: 100%;
  height: 100%;
  margin: auto;
  border-radius: 10px;
}
.imp_wrk_scnd_flx {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  row-gap: 15px;
}
.imp_wrk_scnd_prt {
  width: 23.5%;
  padding: 10px;
}
.imp_wrk_scnd_round {
  margin-bottom: 15px;
  width: 139px;
  height: 139px;
  background: #feffff;
  border: 1px solid transparent;
  border-radius: 100%;
  outline: 10px solid #60d5f1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.imp_wrk_scnd_txt h3 {
  color: #feffff;
}
.imp_wrk_scnd_pic {
  width: 7rem;
  height: 7rem;
}
.imp_wrk_scnd_pic img {
  width: 100%;
  margin: auto;
}
.imp_wrk_scnd_txt {
  padding-top: 20px;
}
.imp_wrk_scnd_top {
  padding-bottom: 4rem;
}
.imp_wrk_scnd {
  margin-top: 108px;
}
.imp_wrk_scnd_innr {
  width: 90%;
  margin: auto;
}
.about.imp_prs.cmn_pdding {
  padding-top: 90px;
}
.prf_asst_anchrtxt {
  text-align: center;
  padding-top: 10px;
}
.prf_asst_anchrtxt p {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #292929;
}
.prf_asst_anchrtxt p a{
  transition: all 0.3s;
  color: #22cef7;
}
.prf_asst_anchrtxt p a:hover{
  color: #22cef7;
  text-decoration: underline;
}
/* ayon paul end / 10.12.2025 */

/* sangita 09.01.26 */
.valplst_vdo_prt.valpst_flx_img{
	display:flex;
}
.valpst_flx_img .vlps_vdo_img{
	height: 500px;
}
.valpst_flx_img .vlps_vdo_img img{
	height: 100%;
}

/* -------------------sangita 12.01.26------------- */
/* ==============cost================ */
.apntm_frm_hdr.cmn_hdr h2{
  text-transform: none;
}
.cost{
  position: relative;
}
.cost .abt_lft_prt{
  background: #fff;
    border: 20px solid #fdf1f7;
    width: 555px;
    height: 555px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.cost .abt_wrpr{
  background: #fdf7fb;
    border-top-left-radius: 264px;
    border-bottom-left-radius: 264px;
}
.chk_icn{
      color: #ef4d97;
    font-size: 14px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    border: 4px solid #ef4d97;
    border-radius: 50%;
    margin-right: 11px;
}
.cost .abt_rgt_prt {
    width: 55%;
}
.cost .abt_rgt_prt.cmn_hdr h2 {
    padding-bottom: 20px;
}
.cost_listing li {
    display: flex;
    padding-bottom: 17px;
}
.cost_listing li,
.plan_rgt_cntn li{
      font-family: "Poppins", sans-serif;
      font-size: 18px;
      font-weight: 400;
      color: #797a7a;
}
.cost_listing li .sm_bld{
  font-weight: 600;
  color: #292929;
}
.cost .abt_rgt_prt p {
    font-weight: 600;
    color: #292929;
}
.cost_listing{
  padding-bottom: 15px;
}
.cost .abt_rgt_prt p {
    padding-bottom: 0;;
}
/* ====================plan============== */
.plan.cmn_pdding{
  padding-top: 0;
}
.pln_wrppr{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pln_btn{
  display: flex;
      margin-top: 30px;
}
.plan_lft_cntn {
      border-right: 2px solid #e9e9e9;
    width: 45%;
}
.plan_rgt_cntn {
      width: 49%;
}
.plan_link{
        font-family: "Poppins", sans-serif;
      font-size: 18px;
      font-weight: 600;
      color: #ef4d97;
          text-decoration: underline;
              cursor: pointer;
              transition: 0.3s ease;
}
.plan_link:hover{
  text-decoration: none;
}
.plan_lft_cntn .cmn_btn{
  text-transform: none;
}
.plan_rgt_cntn.cmn_hdr h3{
  padding-bottom: 3px;
}
.plan_rgt_cntn.cmn_hdr p{
  font-weight: 600;
      padding-bottom: 20px;
}
.plan_rgt_cntn li{
  padding-bottom: 18px;
  display: flex;
    align-items: baseline;
    gap: 12px;
}
.pink_rnd{
  display: flex;
    background: #ef4d97;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.plan_rgt_cntn ul{
width: 70%;
}
.rcknr_hdng{
  text-align: center;
  padding-bottom: 25px;
}
.pay_tbl{
      width: 58%;
    margin-inline: auto;
    overflow-y: auto;
    border: 1px solid #d4d4d4;
    border-radius: 20px;
    border-top: none;
}
.pay_tbl table{
  width: 100%;
}
.pay_tbl th:nth-child(1){
     background: #ce347a;
    width: 50%;
    border-right: 1px solid #fff;
    padding: 10px;
        border-top-left-radius: 20px;
}
.pay_tbl th:nth-child(2){
      background: #ef4d97;
    width: 50%;
        border-top-right-radius: 20px;
}
.pay_tbl th{
      font-size: 24px;
    color: #fff;
    font-weight: 600;
    text-align: center;
}
.pay_tbl td{
    font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #292929;
  text-align: center;
  padding: 10px;
}
.pay_tbl td span{
  font-weight: 400;
}
.pay_tbl td:nth-child(1){
  border-right: 1px solid #d4d4d4;
}
.pay_tbl tr:nth-child(odd){
  background: #fff;
}
.pay_tbl tr:nth-child(even){
  background: #f3f3f3;
}
.pay_card{
  width: 19.33%;
}
.choose.paymnt_ch{
  margin-top: -50px;
    height: 700px;
    padding-top: 111px;
}
.paymnt_ch .ch_bx {
    justify-content: center;
    background: #fff;
       padding: 30px 12px;
    margin-top: 30px;
    height: 64%;
    text-align: center;
        border-radius: 6px;
    position: relative;
}
.paymnt_ch .ch_bx p{
  font-weight: 600;
}
.pay_chk{
      position: absolute;
    top: -20px;
}
.paymnt_ch .chk_icn{
  font-size: 16px;
  width: 40px;
  height: 40px;
    border: 6px solid #ef4d97;
        margin-right: 0;
}

/* Avik Kumar Das / 12.01.2026*/

/* ====================banner==================== */

.banner_hd {
  padding-bottom: 20px;
}

.banner_pay .bnr_content {
  width: 42%;
}

.banner_tlc_logo {
  position: absolute;
  width: 252px;
  right: 5%;
  bottom: 15%;
}

/* ====================appointment==================== */

.cmn_btn.pink .tooth_icn {
  color: #6e7070;
  outline: 5px solid #f77eb7;
}

.cmn_btn.pink {
  background: #ee4e98;
  border: 2px solid #ee4e98;
}

.cmn_btn.pink:hover {
  color: #ee4e98;
}

.tret_tlc p {
  padding-bottom: 18px;
  font-weight: 600;
}

/* ====================FAQ section==================== */

.faq_pay_sec {
  position: relative;
}

.faq_pay_cont {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
      padding-bottom: 25px;
}

.left_img {
  width: 688px;
  height: 513px;
  border-radius: 5px;
  overflow: hidden;
}

.right_cont {
  width: 45%;
}

.faq_pay_hdr p {
  padding-bottom: 25px;
}

.faq_pay_sec .right_cont .accordion {
  --bs-accordion-border-color: none;
}

.faq_pay_sec .right_cont .accordion-item {
  font-size: 18px;
  color: #ffffff;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  transition: 0.3s ease;
  padding-bottom: 12px;
}

.right_cont .accordion-button {
  font-size: 18px;
  background-color: #f3f3f3;
  color: #292929;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  transition: 0.3s ease;
  border-radius: 6px;
}

.faq_pay_sec .right_cont .accordion-body {
  font-size: 18px;
  background-color: #ef4d97;
  color: #ffffff;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  transition: 0.3s ease;
  padding: 0px 33px 25px;
}

.right_cont .accordion-button:focus {
  color: #ffffff;
  background-color: #ef4d97;
  border-color: #f3f3f3;
  box-shadow: none;
}

.right_cont .accordion-button:not(.collapsed) {
  background: #ef4d97 !important;
  color: #ffffff !important;
  border-radius: 6px 6px 0 0;
}

.right_cont .accordion-collapse {
  border-radius: 0 0 6px 6px;
  overflow: hidden;
}

.faq_pay_sec .denture_txt.mthgrd_txt {
    bottom: -160px;
}

.right_cont .accordion-button:not(.collapsed) .pink_rnd {
  background: #ffffff; 
}

.right_cont .accordion-button:not(.collapsed)::after {
  background-image: url(/images/up_arrow.webp);
  transform: rotate(0deg);
}

.right_cont .pink_rnd {
  margin-right: 10px;
}

