* {
  padding: 0;
  box-sizing: border-box;
  margin: 0;
}
html {
  --top-spacing: 140px;
  scroll-padding-top: var(--top-spacing);
}
:root {
  --botton_color: #e6b0a8;
  --light_grey: #eef3f7;
  --pink: #faefee;
  --botton_transparent: #051c2f;
  --bg: #edf3f6;
  --dark-black: #000;
  --white: #fff;
  --green: #47ccc8;
  --blue: #2f3662;
  --black: #3c3c3c;
  --light_blue: #444c86;
  --bg-green-light: #faefee;
  --bg-grey: #eeeeee;
  --btn-shade: #1a6b67;
}
body {
  font-family: "Niramit";
}
.nav_item ul li .sub_menu ul li .sub_menu.third_menu::-webkit-scrollbar {
  width: 5px;
}
.nav_item ul li .sub_menu ul li .sub_menu.third_menu::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
}
.nav_item ul li .sub_menu ul li .sub_menu.third_menu::-webkit-scrollbar-thumb {
  background: var(--botton_color);
  border-radius: 10px;
}
.nav_item
  ul
  li
  .sub_menu
  ul
  li
  .sub_menu.third_menu::-webkit-scrollbar-thumb:hover {
  background: var(--pink);
}
a {
  text-decoration: none !important;
  color: var(--black);
}
ul,
li {
  list-style: none;
}
.form-control:focus {
  border: none;
  box-shadow: unset;
}
.for_desktop .logo p {
  font-weight: 800;
  font-size: 35px;
  color: var(--white);
  margin-bottom: 0;
}
.for_desktop_header.Sticky .logo p {
  font-weight: 800;
  font-size: 35px;
  color: var(--dark-black);
  margin-bottom: 0;
}
.logo p span {
  color: var(--botton_color);
}
.for_desktop .logo {
  width: 150px;
}
.for_desktop .logo img {
  width: 100%;
}
.common_heading {
  font-size: 40px;
  font-weight: 500;
  color: var(--black);
  line-height: 1;
  margin-bottom: 10px;
  font-family: "Times New Roman", Times, serif;
}
.sub_para {
  opacity: 0.8;
  font-family: "Lora";
}
.sub_tag {
  font-size: 20px;
  color: var(--botton_color);
  font-weight: 800;
  position: relative;
}
header {
  position: absolute;
  top: 0;
  z-index: 99999;
  width: 100%;
  transition: 0.3s ease-in-out;
}
.top_bars ul {
  padding: 0;
  margin: 0;
  text-align: right;
  border-bottom: 1px solid #848484;
}
.top_bars ul li {
  display: inline-block;
  padding: 15px;
  color: var(--white);
}
.top_bars ul li a {
  color: var(--white);
}
.top_bars ul li i {
  background: var(--botton_color);
  width: 30px;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
}
.for_desktop_header.Sticky .top_bars ul li {
  color: var(--black);
}
.for_desktop_header.Sticky {
  position: fixed;
  z-index: 99;
  top: 0;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  background-color: var(--white);
}
.navbar {
  position: relative;
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.hameburger {
  position: absolute;
  color: var(--black);
  font-size: 50px;
  font-weight: 700;
  right: 0;
  display: none;
}
.nav_item {
  display: flex;
  align-items: center;
  justify-content: End;
}
.nav_item > ul {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
}
.nav_item > ul > li {
  padding: 25px 15px;
  position: relative;
  transition: 0.3s ease-out;
}
.nav_item > ul > li > a::after {
  content: "";
  position: absolute;
  height: 3px;
  background-color: var(--botton_color);
  width: 80%;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav_item > ul > li :hover::after {
  opacity: 1;
}
.nav_item > ul > li:hover .sub_menu {
  display: block;
}
.nav_item > ul > li a {
  color: var(--white);
}
.for_desktop_header.Sticky .nav_item > ul > li a {
  color: var(--dark-black);
}
.appointment_btn {
  padding: 0 15px;
}
.appointment_btn button {
  all: unset;
}
.appointment_btn a {
  color: var(--black);
  background-color: var(--botton_color);
  white-space: nowrap;
  font-weight: 500;
  padding: 10px 30px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  position: relative;
}
.appointment_btn a:hover {
  background-color: var(--botton_transparent);
  color: var(--white);
}
.appointment_btn i {
  background-color: var(--white);
  font-weight: bold !important;
  transition: 0.3s ease-out;
}
.appointment_btn .bi-arrow-right-short {
  margin-left: 10px;
  border-radius: 50%;
  color: var(--black);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.appointment_btn a:hover i {
  font-weight: bold !important;
  background-color: var(--botton_color);
  color: var(--black);
  margin-left: 10px;
  border-radius: 50%;
}
.appointment_btn .bi-arrow-right-shor {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.sub_menu {
  display: none;
}
.nav_item .sub_menu ul li:last-child {
  border-bottom: none;
}
.nav_item .sub_menu {
  position: absolute;
  background: var(--white);
  box-shadow: rgb(0 0 0 / 0.1) 0 4px 12px;
  left: 0;
  width: 290px;
  top: 65px;
}
.nav_item .sub_menu ul {
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
}
.nav_item .sub_menu ul > li {
  border-bottom: 1px solid #ccc;
  transition: 0.3s ease-out;
  position: relative;
}
.nav_item .sub_menu ul li:hover {
  background-color: var(--botton_color);
}
.nav_item .sub_menu ul li a {
  color: var(--black);
  font-weight: 400;
  padding: 5px 0.5rem;
  display: block;
}
.nav_item ul li .sub_menu > ul > li:hover .sub_menu.third_menu {
  display: block;
  top: 0;
  top: 0;
}
.nav_item ul li .sub_menu ul li .sub_menu.third_menu {
  left: 291px;
  position: absolute;
  transition: 0.3s;
  display: none;
  max-height: 250px;
  overflow-y: auto;
}
.has_dropdown::after {
  position: absolute;
  content: "\F124";
  right: 0;
  font-family: bootstrap-icons;
  color: var(--white);
}
.for_desktop_header.Sticky .nav_item > ul > li.has_dropdown::after {
  position: absolute;
  content: "\F124";
  right: 0;
  font-family: bootstrap-icons;
  color: var(--dark-black);
}
body.nav-is-toggled {
  overflow: hidden;
}
.mob_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 0.3);
  z-index: 99999;
  display: none;
}
.nav-is-toggled .mob_overlay {
  display: block;
}
.Mobile_menu.Sticky {
  background-color: var(--white);
  box-shadow: 0 0 5px var(--black);
}
.Mobile_menu.Sticky .logo p {
  margin-bottom: 0;
}
.nav-top {
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 101;
  padding: 20px;
  width: 100%;
  justify-content: space-between;
  z-index: 999999;
}
.hameburgerr {
  font-size: 30px;
  color: var(--white);
}
.Sticky .hameburgerr {
  font-size: 30px;
  color: var(--botton_color);
}
.nav-top .hamburger {
  margin-left: auto;
  color: #fff;
  cursor: pointer;
}
.nav-drill {
  transform: translateX(100%);
}
.nav-is-toggled .nav-drill {
  transform: translateX(0);
}
.nav-is-toggled::after {
  opacity: 1;
  visibility: visible;
}
.nav-drill {
  display: flex;
  position: fixed;
  flex-direction: column;
  z-index: 100;
  top: 0;
  right: 0;
  width: 250px;
  height: 100vh;
  background-color: var(--botton_transparent);
  transition: 0.45s;
}
.nav-drill ul {
  padding-left: 0;
}
.nav-drill .logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  background-color: var(--white);
}
.nav-drill .logo p {
  color: #000;
  margin-bottom: 0;
  font-size: 25px;
}
.nav-drill .logo i {
  color: #000;
  font-size: 25px;
  font-weight: 800;
}
.nav-items.nav-level-1 {
  position: relative;
  overflow-y: auto;
}
.nav-items {
  flex: 0 0 100%;
}
.nav-item:not(:last-child) {
  border-bottom: solid 1px #daf9f4;
}
.nav-link {
  display: block;
  padding: 0.875em 1em;
  background-color: var(--botton_transparent);
  color: var(--white);
  font-size: 1rem;
  line-height: 1.5em;
  font-weight: 300;
}
.nav-link:focus,
.nav-link:hover {
  color: var(--botton_color);
}
.nav-expand-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  background-color: #daf9f4;
  transition: 0.3s;
  visibility: hidden;
}
.nav-expand-content .nav-item:not(:last-child) {
  border-bottom: solid 1px var(--white);
}
.nav-expand-content .nav-link {
  background-color: #daf9f4;
}
.nav-expand-content .nav-back-link {
  display: flex;
  align-items: center;
  background-color: var(--botton_color) !important;
  color: var(--white);
  font-weight: 600;
}
.nav-expand-content .nav-back-link::before {
  content: "\F12C";
  margin-right: 11px;
  flex: 0 1 auto;
  font-family: "Bootstrap-Icons";
  background: var(--botton_transparent);
  border-radius: 100%;
  height: 18px;
  color: var(--white);
  width: 18px;
  align-items: center;
  display: flex;
  justify-content: center;
}
.nav-expand-link {
  display: flex !important;
  justify-content: space-between;
}
.nav-expand-link::after {
  content: "\F135";
  flex: 0 1 auto;
  font-family: "Bootstrap-Icons";
  background: #fff;
  border-radius: 100%;
  height: 20px;
  color: #000;
  width: 20px;
  align-items: center;
  display: flex;
  justify-content: center;
}
.nav-expand.active > .nav-expand-content {
  transform: translateX(0);
  visibility: visible;
}
.nav-expand .nav-expand-content {
  background-color: var(--botton_transparent);
}
.nav-expand .nav-expand-content .nav-link {
  background-color: var(--botton_transparent);
}
.nav-expand .nav-expand-content .nav-expand-content {
  background-color: var(--botton_transparent);
}
.nav-expand .nav-expand-content .nav-expand-content .nav-link {
  background-color: var(--botton_transparent);
}
.nav-expand .nav-expand-content .nav-expand-content .nav-expand-content {
  background-color: var(--botton_transparent);
}
.nav-expand
  .nav-expand-content
  .nav-expand-content
  .nav-expand-content
  .nav-link {
  background-color: var(--botton_transparent);
}
.nav-expand
  .nav-expand-content
  .nav-expand-content
  .nav-expand-content
  .nav-expand-content {
  background-color: var(--botton_transparent);
}
.nav-expand
  .nav-expand-content
  .nav-expand-content
  .nav-expand-content
  .nav-expand-content
  .nav-link {
  background-color: var(--botton_transparent);
}
.Mobile_menu {
  display: none;
}
.Mobile_menu .logo {
  width: 100px;
}
.Mobile_menu .logo img {
  width: 100%;
}
.Mobile_menu .nav-drill .logo {
  width: 100%;
}
.Mobile_menu .nav-drill .logo img {
  width: 100px;
}
.Mobile_menu .nav-drill .nav-link {
  color: #fff !important;
}
.Common_footer ul {
  margin: 0;
  padding: 0;
}
.footer-section {
  background: var(--bg);
  position: relative;
}
.footer-cta {
  border-bottom: 1px solid #373636;
}
.single-cta i {
  color: var(--green);
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  display: inline-block;
}
.cta-text .cta_name {
  color: var(--botton_color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text .cta_desc a {
  color: var(--black);
  font-size: 15px;
  font-family: "Lora";
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 600;
}
.footer-logo img {
  max-width: 150px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--black);
  line-height: 28px;
  font-family: "Lora";
}
.footer-social-icon {
  display: flex;
  align-items: center;
  padding: 20px 0;
}
.footer-social-icon span {
  color: var(--botton_color);
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  align-items: center;
  margin-right: 20px;
}
.footer-social-icon a {
  color: var(--black);
  font-size: 16px;
  margin: 0 5px;
}
.footer-social-icon a:nth-child(1):hover {
  color: var(--white);
  background-color: #1877f2;
}
.footer-social-icon a:nth-child(2):hover {
  color: var(--white);
  background:
    radial-gradient(
      circle farthest-corner at 35% 90%,
      #fec564,
      transparent 50%
    ),
    radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%),
    radial-gradient(
      ellipse farthest-corner at 0 -25%,
      #5258cf,
      transparent 50%
    ),
    radial-gradient(
      ellipse farthest-corner at 20% -50%,
      #5258cf,
      transparent 50%
    ),
    radial-gradient(
      ellipse farthest-corner at 100% 0,
      #893dc2,
      transparent 50%
    ),
    radial-gradient(
      ellipse farthest-corner at 60% -20%,
      #893dc2,
      transparent 50%
    ),
    radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent),
    linear-gradient(
      #6559ca,
      #bc318f 30%,
      #e33f5f 50%,
      #f77638 70%,
      #fec66d 100%
    );
}
.footer-social-icon a:nth-child(3):hover {
  color: var(--white);
  background-color: #fa0019;
}
.footer-social-icon a:nth-child(4):hover {
  color: var(--white);
  background-color: #1877f2;
}
.footer-social-icon a {
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 38px;
  border-radius: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
  background: var(--white);
  box-shadow: 0 0 15px #ddd;
}
.footer-widget-heading h3 {
  color: var(--botton_color);
  font-size: 20px;
  font-weight: 600;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 2px;
  width: 50px;
  background: var(--botton_color);
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover {
  color: var(--botton_color);
}
.footer-widget ul li a {
  color: var(--black);
  text-transform: capitalize;
  transition: 0.3s ease-in-out;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: var(--white);
  border: none;
}
.subscribe-form button {
  position: absolute;
  right: 0;
  background: var(--botton_color);
  padding: 13px 20px;
  top: 0;
  border: none;
}
.subscribe-form button i {
  color: var(--white);
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area {
  background: var(--black);
  padding: 7px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: var(--light_grey);
}
.copyright-text p a {
  color: var(--botton_color);
}
.footer-menu ul {
  text-align: center;
}
.footer-menu li {
  display: inline-block;
  margin-left: 10px;
  position: relative;
}
.footer-menu li:hover a {
  color: var(--botton_color);
}
.footer-menu li a {
  font-size: 14px;
  color: var(--light_grey);
}
.footer-menu ul li::before {
  content: "|";
  right: -9px;
  position: absolute;
  color: #fff;
}
.footer-menu ul li:last-child:before {
  content: "";
}
.privacy-subsection {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.privacy-policy ul {
  padding: 0 0 0 0;
  margin: 10px 4px 10px 40px;
  list-style: square;
}
.privacy-policy p {
  color: #555;
  font-size: 17px;
}
.privacy-subsection a {
  color: #e6b0a8;
}
.privacy-subsection a:hover {
  color: #171717;
}
.privacy-policy ul li {
  margin-top: 18px;
  color: #555;
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 10px;
  margin-top: 0;
  list-style-type: square;
}
.bannr_img {
  position: relative;
}
.bannr_img img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  object-position: top;
}
.light-background {
  width: 100%;
}
.light-background .breadcrum-section {
  position: relative;
}
.light-background .breadcrum-section ul {
  padding-left: 0;
  padding: 5px 0;
}
.light-background .breadcrum-section ul li {
  white-space: nowrap;
  display: inline-block;
}
.breadcrum-section {
  width: 100%;
  background-color: var(--pink);
  position: absolute;
  bottom: 0;
}
.con_cus {
  max-width: 1425px;
  position: relative;
}
.breadcrum-section ul {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.breadcrum-section ul li a {
  color: var(--black);
  font-weight: 600;
}
div.breadcrum-section ul li a::after {
  content: "|";
  margin: 0 3px;
}
.breadcrum-section ul li:last-child a {
  color: var(--botton_color);
}
div.breadcrum-section ul li:last-child a::after {
  content: "";
}
section.callback-form {
  background-color: var(--bg-green-light);
  padding: 15px 0;
}
section.callback-form .reqHd {
  font-size: 22px;
  font-family: canelaTextMedium;
  font-weight: 500;
}
.callback-form .field {
  margin-bottom: 0;
}
section.common-banner img {
  width: 100%;
}
section.callback-form img {
  width: 100%;
  height: 45px;
}
section.callback-form .btn-submit {
  border: none;
  width: 100%;
  color: var(--white);
  padding: 8px 0;
  background: var(--botton_color) 0% 0% no-repeat padding-box;
  border-radius: 8px;
  font-size: 18px;
}
.error {
  margin-left: 12px !important;
  margin-top: 0 !important;
  font-size: 12px;
  color: red;
}
.contact_form {
  padding: 60px;
}
.footer_heading {
  padding-bottom: 40px;
}
.footer_heading .common_heading {
  text-align: center;
}
.field {
  margin-bottom: 20px;
}
.field .form-control:focus {
  color: #212529;
  outline: none;
  box-shadow: none;
  border: none;
  background-color: var(--white);
}
.field .form-control {
  border: none;
  border-bottom: unset;
  background: var(--white);
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 25px;
}
.field .form-control::placeholder {
  color: var(--botton_transparent);
}
.captch_field {
  display: flex;
  align-items: center;
}
.captch_field .captcha_img {
  height: 40px;
}
.captch_field .captcha_img img {
  height: 100%;
  width: 100%;
}
.refresh {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-color: var(--botton_transparent);
  border-radius: 0 0.25rem 0.25rem 0;
  font-weight: 700;
  border: none;
}
.callback-form .refresh {
  background-color: var(--botton_color);
}
.refresh i {
  color: var(--white);
}
.form_btn .submit_btn {
  background-color: var(--botton_transparent);
  color: var(--white);
  font-weight: 600;
  border-radius: 15px;
  border: none;
}
.form_btn .submit_btn:focus {
  color: var(--white);
  background-color: var(--botton_transparent);
  box-shadow: none;
}
.map {
  height: 100%;
  padding: 0 20px;
}
.form_design {
  background: var(--botton_color);
  padding: 30px;
  border-radius: 15px;
  box-shadow: rgb(99 99 99 / 0.2) 0 2px 8px 0;
}
.bannr_img {
  position: relative;
}
.bannr_img .page-title-dv {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.bannr_img .PageHeading {
  font-size: 52px;
  line-height: 60px;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: canelaTextMedium;
  font-weight: 500;
}
.bannr_img .page-breadcrumbs ul {
  display: flex;
  list-style-type: none;
  justify-content: left;
  gap: 20px;
  font-size: 16px;
  padding: 0;
}
.bannr_img .page-breadcrumbs ul li a {
  text-decoration: none;
  color: #fff;
}
.bannr_img .page-breadcrumbs ul li .current-page {
  position: relative;
  color: #fff;
  padding-left: 15px;
}
.bannr_img .page-breadcrumbs ul li .current-page::before {
  content: ">>";
  position: absolute;
  left: -9px;
  color: #fff;
}
.bannr_img::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: linear-gradient(rgb(0 0 0 / 0.4), rgb(0 0 0 / 0.1));
}
.Testimonials {
  text-align: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px;
  background-color: #f8f9fa;
  background-attachment: fixed;
}
.Testimonials .sub_tag {
  color: var(--black);
}
.Testimonials .common_heading {
  color: var(--botton_color);
}
.testimonials_card {
  border-radius: 10px;
  padding: 80px 20px 40px;
  background-color: var(--bg);
  position: relative;
  box-shadow:
    rgb(0 0 0 / 0.1) 0 4px 6px -1px,
    rgb(0 0 0 / 0.06) 0 2px 4px -1px;
}
.testimonials_card::before {
  content: "";
  position: absolute;
  background-color: var(--bg);
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  border-radius: 10px 10px 0 0;
}
.testimonials_card::after {
  content: "";
  position: absolute;
  background-color: var(--white);
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  z-index: 1;
  border-radius: 0 0 10px 10px;
}
.patient_testimonials {
  position: relative;
  z-index: 2;
}
.testimonials_card .sub_para::before {
  content: "\F6B0";
  font-family: "Bootstrap-Icons";
  position: absolute;
  font-size: 50px;
  color: var(--botton_color);
  top: 10px;
  left: 50%;
  transform: translate(-50%);
}
.testimonials_card .sub_para {
  margin-bottom: 20px;
}
.patient_img {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin: auto;
  background-color: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--botton_color);
}
.patient_img img {
  border-radius: 50%;
}
.testmonials_name .common_heading {
  font-size: 25px;
  color: var(--blue);
  padding-top: 15px;
  margin-bottom: 10px;
}
.testmonials_name .sub_tag {
  color: var(--botton_color);
}
.Testimonials_headings .common_heading {
  margin-bottom: 30px;
}
.Testimonials .owl-carousel .owl-nav button.owl-next,
.Testimonials .owl-carousel .owl-nav button.owl-prev,
.real_results .owl-carousel .owl-nav button.owl-next,
.real_results .owl-carousel .owl-nav button.owl-prev,
.video_section .owl-carousel .owl-nav button.owl-next,
.video_section .owl-carousel .owl-nav button.owl-prev,
.Testimonials .owl-carousel button.owl-dot,
.video_section .owl-carousel button.owl-dot,
.real_results .owl-carousel button.owl-dot {
  padding: 0 !important;
  font: inherit;
  background: #fff;
  margin: 0 10px !important;
  font-size: 30px !important;
  width: 40px !important;
  height: 36px !important;
  border-radius: 50% !important;
  line-height: 30px !important;
  border: none;
  padding-bottom: 15px !important;
  transition: 0.3s ease-in-out;
}
.Testimonials .owl-carousel .owl-nav button:hover,
.video_section .owl-carousel .owl-nav button:hover,
.real_results .owl-carousel .owl-nav button:hover {
  background-color: var(--botton_color) !important;
}
.owl-dots {
  display: none;
}
.owl-nav {
  text-align: center;
  padding: 20px;
}
.view_more button {
  padding: 10px 20px;
  background-color: var(--botton_color);
  border-radius: 25px;
  border: 1px solid #fff0;
  transition: 0.3s ease-in-out;
}
.view_more {
  padding: 20px;
  text-align: center;
}
.view_more button a {
  color: var(--white);
  display: flex;
  align-items: center;
  font-weight: 600;
}
.view_more button:hover {
  background-color: var(--white);
  border: 1px solid #ccc;
  letter-spacing: 1px;
  color: var(--black);
}
.view_more button:hover a {
  color: var(--black);
}
.view_more button:hover i {
  background-color: var(--botton_color);
  color: var(--white);
  font-weight: 600;
}
.view_more button i {
  margin-left: 10px;
  border-radius: 50%;
  color: var(--black);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: 0.3s ease-in-out;
}
.doc_pointers li {
  width: 50%;
  float: left;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
.doc_pointers li::before {
  content: "\F269";
  font-family: "Bootstrap-Icons";
  position: absolute;
  left: 0;
  color: var(--botton_color);
}
.video_section_content:hover .play-box {
  border-radius: 50%;
  animation: blink 1s ease-in-out infinite none;
}
@keyframes blink {
  0% {
    box-shadow: 0 0 0 0 rgb(230 176 168 / 0.6);
  }
  100% {
    box-shadow: 0 0 0 10px rgb(230 176 168 / 0.4);
  }
}
.v_thumb img {
  position: relative;
}
.v_thumb::before {
  width: 100%;
  content: "";
  position: absolute;
  height: 30%;
  background-image: linear-gradient(#fff0, rgb(0 0 0 / 0.3));
  bottom: 0;
  z-index: 1;
}
.video-details {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 20px;
  left: 15px;
  z-index: 2;
}
.play-box {
  width: 35px;
  height: 35px;
  line-height: 50px;
  text-align: center;
  background: #fff0
    linear-gradient(180deg, var(--botton_color) 0%, var(--botton_color) 100%) 0%
    0% no-repeat padding-box;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  float: left;
  box-shadow: 0 0 20px var(--botton_color);
  cursor: pointer;
}
.play-box i {
  font-size: 18px;
  color: var(--black);
}
.sm_heading {
  font-weight: 600;
  color: var(--white);
  padding-left: 15px;
  font-size: 18px;
}
.v_model .video-box iframe {
  height: 480px;
  width: 100%;
  display: block;
  border: 0;
}
.video-modal {
  width: 90%;
  z-index: 99999;
}
.blog_cards .para {
  color: #fff;
}
.blog_cards .para p {
  margin-bottom: 0;
}
.blog_cards .para p a {
  color: var(--botton_color);
}
.cat_content a {
  color: var(--black);
}
.whatsapp {
  background-color: #25d366;
  left: 18px;
  right: auto;
  color: #fff0;
}
.sticky-bot {
  position: fixed;
  bottom: 68px;
  width: 40px;
  height: 40px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow:
    rgb(0 0 0 / 0.19) 0 10px 20px,
    rgb(0 0 0 / 0.23) 0 6px 6px;
}
.whatsapp i {
  color: #fff;
  font-size: 25px;
}
.scrollBtn {
  position: fixed;
  bottom: -40px;
  right: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  z-index: 3;
  background-color: var(--botton_color);
  border: none;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  color: var(--black);
}
.scrollBtn.active {
  opacity: 1;
  bottom: 68px;
  visibility: visible;
  box-shadow:
    rgb(0 0 0 / 0.19) 0 10px 20px,
    rgb(0 0 0 / 0.23) 0 6px 6px;
}
.mobShow {
  display: none;
}
input[type="date"] {
  position: relative;
  z-index: 2;
}
input[type="date"]::after {
  position: absolute;
  content: "\F1F6";
  right: 1rem;
  z-index: -1;
  font-family: "bootstrap-icons";
  top: 50%;
  transform: translateY(-50%);
}
input[type="date"]::-webkit-calendar-picker-indicator {
  background: #fff0;
  color: #fff0;
  cursor: pointer;
  height: auto;
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  width: auto;
}
.bgDark {
  background-color: #000000cf;
}
.custm-pgntion .page-item.active .page-link {
  z-index: 3;
  color: var(--black);
  background-color: var(--botton_color);
  border-color: var(--botton_color);
}
.custm-pgntion .page-link {
  color: var(--black);
}
.custm-pgntion .page-link:hover {
  z-index: 2;
  border-color: var(--bg-green-light);
}
.custm-pgntion .page-link:focus,
.custm-pgntion .page-link:hover {
  color: var(--black);
  box-shadow: none;
  background-color: var(--bg-green-light);
}
span.marker {
  background-color: #fdfdfd;
  padding: 7px 15px;
  box-shadow: 0 0 20px #e6b0a8;
  display: inline-block;
  line-height: 24px;
  font-style: italic;
  margin-top: 8px;
  margin-bottom: 12px;
}
.table-layout table {
  width: 100% !important;
}
.table-layout table tbody tr {
  background: #f9f9f9;
}
.table-layout table tbody tr:first-child {
  background-color: #e6b0a8;
}
.table-layout table tbody tr td {
  border: 1px solid #eee;
  padding: 10px;
  text-align: center;
}
@media only screen and (min-width: 992px) and (max-width: 1024px) {
  .for_desktop_header {
    display: none;
  }
  .Mobile_menu {
    display: block;
  }
  .nav-top {
    display: flex;
  }
  .nav-top .logo a {
    font-size: 35px;
    color: var(--white);
    font-weight: 600;
  }
  .nav-top.Sticky .logo a {
    font-size: 35px;
    color: var(--black);
    font-weight: 600;
  }
  .bannr_img .PageHeading {
    font-size: 40px;
    line-height: 40px;
  }
  .book_appointment_mob {
    padding: 0.5rem;
  }
  .book_appointment_mob button {
    padding: 10px 19px;
    white-space: nowrap;
    border: none;
    width: 100%;
    border-radius: 20px;
    font-size: 15px;
    background: var(--botton_color);
  }
  .book_appointment_mob button a {
    color: var(--black);
  }
  .Social_icons_mob {
    display: flex;
    align-items: center;
    padding: 8px 0;
    justify-content: center;
  }
  .Social_icons_mob a {
    height: 30px;
    width: 30px;
    text-align: center;
    margin: 0 10px;
    line-height: 38px;
    border-radius: 25%;
    color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
    background: var(--white);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .for_desktop_header {
    display: none;
  }
  .Mobile_menu {
    display: block;
  }
  .nav-top {
    display: flex;
  }
  .nav-top .logo a {
    font-size: 35px;
    color: var(--white);
    font-weight: 600;
  }
  .Sticky.nav-top .logo a {
    font-size: 35px;
    color: var(--black);
    font-weight: 600;
  }
  .bannr_img .PageHeading {
    font-size: 40px;
    line-height: 30px;
  }
  .bannr_img img {
    height: 350px;
    object-fit: cover;
  }
  .common_heading {
    font-size: 35px;
  }
  .book_appointment_mob {
    padding: 0.5rem;
  }
  .book_appointment_mob button {
    padding: 10px 19px;
    white-space: nowrap;
    border: none;
    width: 100%;
    border-radius: 20px;
    font-size: 15px;
    background: var(--botton_color);
  }
  .book_appointment_mob button a {
    color: var(--black);
  }
  .Social_icons_mob {
    display: flex;
    align-items: center;
    padding: 8px 0;
    justify-content: center;
  }
  .Social_icons_mob a {
    height: 30px;
    width: 30px;
    text-align: center;
    margin: 0 10px;
    line-height: 38px;
    border-radius: 25%;
    color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
    background: var(--white);
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .for_desktop_header {
    display: none;
  }
  .Mobile_menu {
    display: block;
  }
  .dark_overlay {
    position: absolute;
    top: 55px px;
    right: 0;
    height: 100vh;
    width: 100%;
    z-index: 1;
    visibility: hidden;
    opacity: 1;
  }
  .nav-top {
    display: flex;
  }
  .nav-top .logo a {
    font-size: 30px;
    color: var(--white);
    font-weight: 600;
  }
  .nav-top.Sticky .logo a {
    color: var(--black);
  }
  .nav-top .logo p {
    margin-bottom: 0;
  }
  .about_section,
  .category_section,
  .Our_technology,
  .Our_team_section,
  .Testimonials,
  .subscription_form,
  .blog_section,
  .sponser_strip,
  .contact_form {
    padding: 20px 0;
  }
  .map {
    padding: 20px 0;
  }
  .footer_heading {
    padding-bottom: 15px;
  }
  .callback-form .field {
    margin-bottom: 15px;
  }
  .common_heading {
    font-size: 35px;
  }
  .callback-form {
    box-shadow: rgb(0 0 0 / 0.1) 0 4px 12px;
    margin: 15px;
  }
  .bannr_img .PageHeading {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 0;
  }
  .bannr_img img {
    height: 350px;
    object-fit: cover;
    object-position: right;
  }
  .sub_tag {
    font-size: 18px;
  }
  .field input[type="date"]::before {
    content: "mm/dd/yyyy";
    left: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .field input[type="date"]::-webkit-calendar-picker-indicator {
    background: #fff0;
    color: #fff0;
    cursor: pointer;
    height: auto;
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    width: auto;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .field input[type="date"] {
    position: relative;
  }
  .field input[type="date"]::after {
    font-family: "Bootstrap-Icons";
    content: "\F1F6";
    right: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  section.mobile-tabs {
    position: fixed;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: #fff;
    box-shadow: 3px 0 10px #00000029;
  }
  .mobShow {
    display: block;
  }
  section.mobile-tabs .tab-boxes {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  section.mobile-tabs .tab-boxes a {
    text-align: center;
    padding: 10px 0;
  }
  section.mobile-tabs a i {
    display: block;
    text-align: center;
    font-size: 25px;
    color: var(--botton_color);
  }
  section.mobile-tabs .tab-boxes a span {
    display: block;
    font-size: 10px;
    margin-top: 5px;
    color: #000;
  }
  section.mobile-tabs .tab-boxes a.active {
    background: radial-gradient(#e4b0a9, #d5a19a);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  section.mobile-tabs .tab-boxes a.active i {
    color: #fff;
  }
  .sticky-bot,
  .scrollBtn.active {
    bottom: 88px;
  }
  .footer-section {
    margin-bottom: 75px;
  }
  .book_appointment_mob {
    padding: 0.5rem;
  }
  .book_appointment_mob button {
    padding: 10px 19px;
    white-space: nowrap;
    border: none;
    width: 100%;
    border-radius: 20px;
    font-size: 15px;
    background: var(--botton_color);
  }
  .book_appointment_mob button a {
    color: var(--black);
  }
  .Social_icons_mob {
    display: flex;
    align-items: center;
    padding: 8px 0;
    justify-content: center;
  }
  .Social_icons_mob a {
    height: 30px;
    width: 30px;
    text-align: center;
    margin: 0 10px;
    line-height: 38px;
    border-radius: 25%;
    color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
    background: var(--white);
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .for_desktop_header {
    display: none;
  }
  .Mobile_menu {
    display: block;
  }
  .nav-top {
    display: flex;
  }
  .nav-top .logo a {
    font-size: 25px;
    color: var(--white);
    font-weight: 600;
  }
  .nav-top.Sticky .logo a {
    color: var(--black);
  }
  .nav-top .logo p {
    margin-bottom: 0;
  }
  .about_section,
  .category_section,
  .Our_technology,
  .Our_team_section,
  .Testimonials,
  .subscription_form,
  .blog_section,
  .sponser_strip,
  .contact_form {
    padding: 20px 0;
  }
  .map {
    padding: 20px 0;
  }
  .footer_heading {
    padding-bottom: 15px;
  }
  .bannr_img img {
    height: 250px;
    object-fit: cover;
    object-position: right;
  }
  .callback-form .field {
    margin-bottom: 15px;
  }
  section.callback-form .reqHd {
    text-align: center;
  }
  .callback-form {
    box-shadow: rgb(0 0 0 / 0.1) 0 4px 12px;
    margin: 15px;
  }
  .common_heading {
    font-size: 35px;
  }
  .bannr_img .PageHeading {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 0;
  }
  .sub_tag {
    font-size: 18px;
  }
  .field input[type="date"]::before {
    content: "mm/dd/yyyy";
    left: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .field input[type="date"]::-webkit-calendar-picker-indicator {
    background: #fff0;
    color: #fff0;
    cursor: pointer;
    height: auto;
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    width: auto;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .field input[type="date"] {
    position: relative;
  }
  .field input[type="date"]::after {
    font-family: "Bootstrap-Icons";
    content: "\F1F6";
    right: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  section.mobile-tabs {
    position: fixed;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: #fff;
    box-shadow: 3px 0 10px #00000029;
  }
  .mobShow {
    display: block;
  }
  section.mobile-tabs .tab-boxes {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  section.mobile-tabs .tab-boxes a {
    text-align: center;
    padding: 10px 0;
  }
  section.mobile-tabs a i {
    display: block;
    text-align: center;
    font-size: 25px;
    color: var(--botton_color);
  }
  section.mobile-tabs .tab-boxes a span {
    display: block;
    font-size: 10px;
    margin-top: 5px;
    color: #000;
  }
  section.mobile-tabs .tab-boxes a.active {
    background: radial-gradient(#e4b0a9, #d5a19a);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  section.mobile-tabs .tab-boxes a.active i {
    color: #fff;
  }
  .sticky-bot,
  .scrollBtn.active {
    bottom: 88px;
  }
  .footer-section {
    margin-bottom: 75px;
  }
  .book_appointment_mob {
    padding: 0.5rem;
  }
  .book_appointment_mob button {
    padding: 10px 19px;
    white-space: nowrap;
    border: none;
    width: 100%;
    border-radius: 20px;
    font-size: 15px;
    background: var(--botton_color);
  }
  .book_appointment_mob button a {
    color: var(--black);
  }
  .Social_icons_mob {
    display: flex;
    align-items: center;
    padding: 8px 0;
    justify-content: center;
  }
  .Social_icons_mob a {
    height: 30px;
    width: 30px;
    text-align: center;
    margin: 0 10px;
    line-height: 38px;
    border-radius: 25%;
    color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
    background: var(--white);
  }
  .breadcrum-section ul {
    display: inline-block;
  }
  .buttonimagetext p {
    white-space: nowrap;
  }
  .bannr_img .page-title-dv {
    top: 56%;
  }
}
img {
  max-width: 100%;
  height: auto;
}
.appointmentbtn {
  color: var(--black);
  background-color: var(--botton_color);
  white-space: nowrap;
  font-weight: 500;
  padding: 10px 30px;
  border-radius: 25px;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  position: relative;
  border: none;
  text-align: center;
}
