@import url('https://fonts.googleapis.com/css2?family=Questrial&family=SN+Pro:ital,wght@0,200..900;1,200..900&display=swap');

:root {
/*   --theme-color: #000000; */
  --theme-color-second: #0000b6;
  --theme-color-third: #0000b6;

  --heading-font: "SN Pro", sans-serif;
  --paragraph-font: "Questrial", sans-serif;
  --span-font: 'spanist';



  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;

}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 17px;
  color: #1e1e1e;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: "Questrial", sans-serif;
  /* color: var(--theme-color) !important; */
}


a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;

}

a:hover {
  text-decoration: none;
  transition: all .6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 15px;
}

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

.span-font {
  font-family: var(--span-font);
}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 15px;
  font-size: 16px;
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

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

h1 {
  font-size: 65px;
  font-weight: 500;
  line-height: 1;
}

h2 {
  font-size: 42px;
}

h3 {}

h4 {}

h5 {}

h6 {}


.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}

/* navbar----------- */


@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

* {
  box-sizing: border-box;
}

.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 0;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  border-radius: 0;
  text-align: center;
  border: 2px solid var(--theme-color);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 0;
  opacity: 1;
}

.m-backtotop>div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
  z-index: 999;
}

.m-backtotop>div.text {
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 0px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover>div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Progress bar styles */
.m-backtotop .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--theme-color);
  transition: height 0.2s ease-in-out;
}

.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}


/* ******** */
.small {
  display: none;
}


a.navbar-brand img {
  width: 214px;
}

.header_menu li a {
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  padding: 29px 19px;
  display: inline-block;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

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

  flex-wrap: wrap;
}

a.comon-btn {
  background: var(--theme-color-second);
  background: var(--theme-color);
/*   background: linear-gradient(178deg, #0000b6 0%, #0000b6 100%); */
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 12px 6px;
  border-radius: 500px;
  width: 14rem;
  text-align: center;
  text-transform: capitalize;
  font-weight: 500;
  transition: 0.8s;
}

a.comon-btn:hover {
  background: var(--theme-color-second);
  background: #020024;
/*   background: linear-gradient(178deg, #0000b6 0%, #0000b6 100%); */
  color: #fff;
}

a.btn-white {
  background: #fff;
  color: #1e1e1e;
}

.header_menu li a {
  color: #ffff;
  font-size: 16px;
  text-transform: capitalize;
	padding: 20px 15px 20px;
  display: inline-block;
  font-weight: 500;
	
}

.navbar li:hover a {
  color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: #c0c0c0;
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 267px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}


.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999999999999;
}


#main_header .navbar-expand-lg .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
  flex-direction: column;
  justify-content: end;
  align-items: end;
}

#main_header .phone-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-weight: 600;
}

#main_header .phone-btn i {
  background-color: #fff;
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  color: var(--theme-color-second);
  border-radius: 600px;
  display: flex;
  font-size: 21px;
}

#main_header {
  padding-top: 30px;
  padding-bottom: 30px;
}

#main_header .phone-btn p span {
  color: #fff;
}

/* banner_sec */

.banner_sec {
  border-radius: 20px;
  height: 100vh;
}

.banner_sec h1 span {
  color: #bcbcbc;
}

.home_sec_1 .content-box {
  border-radius: 15px !important;
}

.home_sec_1 .content-box img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

.home_sec_1 .content-box h5 {
  font-size: 22px;
  color: #000;
}

.home_sec_1 .content-box p {
  font-size: 15px;
}

a.btn-2 {
  background: var(--theme-color-second);
  background: #fff;
  /* background: linear-gradient(90deg, #0000b6 0%, #0000b6 35%, #0000b6 100%); */
  color: #000;
}

.home_sec_1 h2 span {
  background: var(--theme-color);
/*   background: linear-gradient(to right, #0000b6 0%, #0000b6 100%); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}


.home_sec_2 {
  border-radius: 20px;
}

.home_sec_2 .heading h3 {
  font-size: 25px;
}

.home_sec_2 .order-box {
  border-radius: 50px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home_sec_2 h4 {
  font-size: 25px;
/*   color: var(--theme-color-third); */
	color: var(--theme-color);
}

.home_sec_2 .order-box a.read-more {
  color: var(--theme-color-third);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

/* .home_sec_2 .order-box .content {
  height: 320px;
} */
.home_sec_2 .order-box .content {
    min-height: 320px;
}

/* ******** */
.home_sec6 .star-img img {
  width: 68px;
}

.home_sec6 .right_content .review_content {
  border-radius: 15px;
  padding: 21px 22px;
}

.home_sec7 .accordion-body {
  padding-top: 0 !important;
}

/* ****** */
.contact-section .contact-left .highlight {
  color: #e30613;
}

.contact-section .contact-left .desc {
  color: #666;
  margin-bottom: 20px;
}

.contact-section .contact-left .info {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 19px;
}

.contact-section .contact-left .social {
  font-size: 28px;
  color: #000;
  text-decoration: none;
}

/* Right side form */
.contact-section .contact-right {
  flex: 1;
  min-width: 320px;
  background: #fff;
  padding: 45px 22px;
  border-radius: 15px;
}

.contact-section .contact-right h3 {
  color: #000;
  font-size: 38px;
  margin-bottom: 4px;
}

.contact-section .contact-right form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-section .contact-right input, .contact-section .contact-right textarea {
  padding: 16px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  background: #e5e5e5;
}

.contact-section .contact-right textarea {
  resize: none;
}

.contact-section .contact-right button {
  background: #00329f;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.contact-section .contact-right button:hover {
  background: #333;
}

.contact-section .contact-left li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.contact-section .contact-left li img {
  width: 30px;
}

.contact-section .contact-left .btom_content p a {
  font-size: 27px;
  color: #000;
}

.contact-section .contact-left .btom_content a {
  color: #000;
}

/* ******** */
footer {
  padding: 80px 0 40px;
  color: #fff;
}

footer a {
  color: #fff;
}

footer h2 {
  font-size: 114px;
  margin-bottom: 5px;
  line-height: 1;
}

footer ul li {
  margin-bottom: 14px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

footer ul li img {
  width: 45px;
  height: 45px;
}

footer ul li .content span {
  font-size: 19px;
  color: #fca935;
}

footer ul li .content a {
  font-size: 20px;
}

footer ul li .content {
  display: flex;
  flex-direction: column;
  font-family: var(--heading-font);
  line-height: 1.2;
}

footer .ft_heading img {
  width: 285px;
  margin-bottom: 19px;
}

.social_icon {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.social_icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50px;
  background: #fff;
  color: #000;
}

footer .copy_right {
  margin-top: 30px;
}

/* INNER PAGE */

#inner_banner {
  text-align: start;
  padding: 65px 0 50px;
  background: #e8e8e8 !important;
  color: #0000c3;
}

#inner_banner h1 {
  font-size: 64px;
  font-weight: 500;
  line-height: 64px;
  margin-bottom: 12px;
}

#inner_banner .breadcrumb {
  justify-content: start;
}

#inner_banner .breadcrumb a {
  color: #0000c3;
}

#inner_banner .breadcrumb-item.active {
  color: #000;
}

#inner_banner .breadcrumb-item+.breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: #000;
  content: var(--bs-breadcrumb-divider, "/");
}

/* ********** */
#home_sec_1 img {
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}


/* inner-blog-right-sec */

.inner-blog-right-sec {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  padding: 35px 21px 20px;
  border-radius: 8px;
}

.inner-blog-right-sec .blog-search form {
  position: relative;
  border: 1px solid #1c1c1c3b;
  border-radius: 5px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.inner-blog-right-sec .blog-search form input {
  border: none;
  outline: none;
  padding: 0;
  width: 100%;
}

.inner-blog-right-sec .blog-search form button {
  /* position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%; */
  cursor: pointer;
  background: none !important;
  border: 0;
  font-size: 15px;
  color: #000000 !important;
}

.inner-blog-right-sec .popular-sec .popular-cards1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #1c1c1c3b;
  padding: 15px 0;
  gap: 10px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .img-top img {
  width: 130px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 p {
  color: #000000ab;
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 0;
}

.inner-blog-right-sec .popular-sec .popular-cards1 a {
  color: #000000ab;
  font-size: 15px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .heading {
  width: 100%;
}

.main-sec .heading a {
  color: var(--theme-color);
}

.main-sec h4 {
  font-size: 21px;
  /* margin-bottom: -25px; */
}

.inner-blog-left-sec {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  padding: 15px 5px 35px;
  border-radius: 8px;
}

.inner-blog-left-sec .inner-blog-sec1 p {
  color: #000000ab;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head p {
  color: #606060;
  margin-bottom: 12px;
}

.inner-blog-left-sec .inner-blog-sec1 h3 {
  font-weight: 600;
  margin-bottom: 18px;
  /* font-size: 29px; */
}

.inner-blog-left-sec .inner-blog-sec1 img {
  border-radius: 5px;
  margin-bottom: 0;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1c1c1c2b;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul {
  display: flex;
  gap: 15px;
  align-items: center;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li i {
  font-size: 17px;
  color: var(--theme-color);
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head i {
  color: var(--theme-color);
  font-size: 16px;
  margin-right: 3px;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li a {
  color: #00000059;
}

.inner-blog-left-sec .navigation-sec .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-blog-left-sec .navigation-sec .navigation a {
  color: var(--theme-color);
  font-size: 15px;
  font-weight: 600;
}

.inner-blog-left-sec .navigation-sec .navigation i {
  color: var(--theme-color);
}

.inner-blog-left-sec .navigation-sec .blog-contain {
  padding: 25px 18px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  border-radius: 5px;
  height: 100%;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top {
  padding-bottom: 15px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top img {
  border-radius: 5px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading h3 {
  color: #000;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p strong {
  color: #00000059;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p {
  color: #000000ab;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading .blog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-blog-left-sec .inner-blog-comment .contact-form {
  padding: 20px 25px;
  border: 1px solid rgba(69, 69, 70, 0.2);
  border-radius: 8px;
  background: #fff;
  color: #000;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form input {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form textarea {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button {
  color: #ffffff;
  background-color: #000;
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #000;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 400;
  transition: 0.5s;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button:hover {
  background: #1c1c1c3b;
  border: 1px solid #1c1c1c3b;
  color: #000;
  transition: 0.5s;
}

.inner-blog-left-sec .admin-sec p {
  color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul {
  display: flex;
  gap: 25px;
  align-items: center;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li i {
  font-size: 18px;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li a {
  color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content {
  border-top: 1px solid #1c1c1c3b;
  border-bottom: 1px solid #1c1c1c3b;
  padding: 10px 20px;
}

.inner-blog-left-sec .admin-sec img {
  border-radius: 5px;
}

.main-sec h2 {
  font-size: 38px;
}

.main-sec h3 {
  font-size: 28px;
  font-weight: 600;
}

.inner-blog-left-sec img {
  height: 350px;
  object-fit: cover;
}

/* ************ */
.shockwave-therapy-sec1 .content h5 {
  font-size: 28px;
  margin-bottom: 11px;
  color: var(--theme-color);
}

.shockwave-therapy-sec1 .content {
  background: #fff;
  padding: 30px 30px;
  border-radius: 15px;
  height: 100%;
  border: 2px solid var(--theme-color);
}

/* *************** */
#orthopaedics-sec1 img {
  height: 240px;
  object-fit: cover;
  border-radius: 10px !important;
}

/* ********** */
.neurology_sec1 img {
  height: 250px;
  object-fit: cover;
}

/* *********** */

/* TESTIMONIAL SEC */

.testimonial .test-mat img {
  width: 60px !important;
  text-align: end;
  /* margin-left: auto; */
  margin-bottom: 25px;
}

.testimonial .test-mat ul {
  gap: 6px;
  color: #fe8a02;
  margin-bottom: 0;
}

.testimonial .test-mat {
  background: #fff;
  padding: 26px 17px;
  border-radius: 0;
  height: 100%;
  border: none;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 0 9px 0px;
  margin: 10px 10px;
}

.testimonial .test-mat .karge {
  font-size: 20px;
  height: 177px;
}

.testimonial .owl-dots {
  display: none;
}

.testimonial .test-mat p {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  padding-right: 0;
}

.testimonial .test-mat .btom_img {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial .test-mat .btom_img img {
  width: 60px !important;
  text-align: start;
  margin: 0;
}

.testimonial .test-mat .btom_content h6 {
  font-family: var(--paragraph-font);
  font-weight: 500;
  margin-bottom: 3px;
}

.testimonial .test-mat .btom_content p {
  margin-bottom: 0;
}

.testimonial .test-mat .btom_content p span {
  font-size: 13px;
}

.testimonial .owl-nav {
  position: relative;
}

.testimonial .owl-next {
  position: absolute;
  right: -40px;
  top: -214px;
}

.testimonial .owl-prev {
  position: absolute;
  left: -40px;
  top: -214px;
}

.testimonial .owl-nav img {
  width: 25px;
}

.testimonial h6 {
  font-size: 16px;
  margin-bottom: 0;
  line-height: 0.9;
}

.testimonial .test-mat .content p {
  min-height: 193px;
}

/* ************ */
.flyer-masterpuls-ultra-plus-sec1 h5 {
  font-size: 34px;
}

.flyer-masterpuls-ultra-plus-sec1 ul li {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 11px;
  font-size: 17px;
}

.flyer-masterpuls-ultra-plus-sec1 ul li i {
  font-size: 13px;
  color: var(--theme-color-second);
}

/* ************** */
.product-section ul {
  /* margin: 20px 0 35px 20px;  */
}

.product-section ul li {
  margin-bottom: 10px;
  color: #374151;
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.product-section ul li i {
  font-size: 13px;
}

/* Section Images */
.product-section .overview-image img,
.product-section .device-image img {
  width: 100%;
  border-radius: 14px;
  margin: 40px 0;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

/* ************ */
.research-section .research-container ul {
  margin: 20px 0 30px 20px;
}

.research-section .research-container li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.research-section .research-container img {
  max-width: 100%;
  display: block;
  margin: 35px auto;
  border-radius: 4px;
}

.reference-box ul li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 6px;
}

.reference-box ul li i {
  font-size: 13px;
}

.research-section .research-container figure {
  margin: 40px 0;
  text-align: center;
}

.research-section .research-container figcaption {
  font-size: 13px;
  color: #666;
  margin-top: 8px;
}

.research-section .graph-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.research-section .abstract-box {
  background: #f1f5f9;
  padding: 25px;
  border-left: 4px solid #1e3a8a;
  margin-bottom: 40px;
}

/* ************ */


.training-section .training-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
}

.training-section .sort-dropdown {
  padding: 10px 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 14px;
}


.training-section .training-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s ease;
}

.training-section .training-card:hover {
  transform: translateY(-5px);
}

.training-section .card-image {
  text-align: center;
  margin-bottom: 20px;
}

.training-section .card-image img {
  max-width: 100%;
  height: 160px;
  object-fit: contain;
}

.training-section .training-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #333;
  line-height: 1.5;
}

.training-section .card-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.training-section .author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.training-section .avatar {
  width: 32px;
  height: 32px;
  background: #3b5bdb;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.training-section .enroll-btn {
  padding: 10px;
  border: 1px solid #3b5bdb;
  background: transparent;
  color: #3b5bdb;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.training-section .enroll-btn:hover {
  background: #3b5bdb;
  color: #fff;
}

/* ********** */

/* Modal Card */
.custom-modal {
  border-radius: 16px;
  padding: 10px;
  border: none;
  position: relative;
}

/* Blue Round Close Button */
.custom-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1e2bbf;
  color: #fff;
  border: none;
  font-size: 22px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Input Styling */
.custom-input {
  height: 45px;
  border-radius: 6px;
  font-size: 14px;
}

/* Login Button */
.login-btn {
  height: 45px;
  border-radius: 6px;
  font-weight: 500;
  background-color: #1e2bbf;
  border: none;
}

.login-btn:hover {
  background-color: #1620a0;
}

/* Links */
.forgot-link,
.register-link {
  font-size: 14px;
  text-decoration: none;
  color: #1e2bbf;
}

.forgot-link:hover,
.register-link:hover {
  text-decoration: underline;
}

/* Dark Background Blur */
.modal-backdrop.show {
  opacity: 0.7;
}

/* *********** */

.alz-section .info-link a {
  color: #0a58ca;
  text-decoration: none;
  font-weight: 500;
}

.alz-section .alz-right img {
  width: 100%;
  border-radius: 4px;
}

/* .alz-section .alz-content h4 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
} */

.alz-section .alz-content ul, .alz-section .alz-content ol {
  margin-left: 0;
  margin-bottom: 0;
}

.alz-section .alz-brain-img,
.alz-section .alz-system-img {
  border-radius: 10px;
}

.alz-section ul li i {
  font-size: 13px;
}

.alz-section ul li {
  margin-bottom: 10px;
}

/* ************ */
/* CONTACT US PAGE */

.contact .heading {
  text-align: center;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
  /* background: #e8e4e4 !important; */
  padding: 38px 0 27px;
  border: 1px solid #e8e4e4;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0px 0px 9px 5px rgba(0, 0, 0, 0.08);
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
  margin-top: 20px;
  color: #000;
}

#contact .contact-info .fa-map-marker {
  font-size: 39px;
}

#contact .contact-info h3 {
  text-transform: capitalize;
  color: #272727;
  margin: 14px 0 0;
  /* margin-bottom: 0; */
  font-size: 23px;
  margin-bottom: 6px;
  /* font-family: 'Poppins', sans-serif; */
  text-transform: capitalize;
}

#contact address {
  margin-bottom: 16px;
  font-style: normal;
  line-height: inherit;
  color: #202020;
  font-weight: 400;
}

#contact .contact-info i {
  font-size: 45px;
  display: inline-block;
  margin-bottom: 0;
  color: var(--theme-color) !important;
}

#contact .contact-info .fa-envelope {
  font-size: 32px;
}

#contact .contact-info a {
  color: #585858;
  font-size: 17px;
}

#contact .con-form form input, #contact .con-form form textarea, #contact .con-form form select {
  padding: 15px 8px;
  border-left: transparent;
  border-right: transparent;
  border-top: transparent;
  border-bottom: 1px solid #000;
  box-shadow: none;
  font-size: 16px;
  outline: none;
  width: 100%;
  background: transparent;
  height: 100%;
}

#contact .checkbox-group {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

#contact .checkbox-group label {
  display: flex;
  align-items: center;
}

#contact .checkbox-group label input {
  width: 25px;
}

#contact .con-form form input {
  color: #000;
}

#contact h3 {
  font-size: 29px;
}

#contact .con-form form label {
  color: #00000080;
}

#contact .con-form form button[type="submit"] {
/*   background: #737373; */
	background: var(--theme-color);
  border: 0;
  padding: 16px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 1000px; /*before width: 100%*/
  font-weight: 500;
  border-radius: 5px;
}

#contact .con-form .contact-location .timing {
  gap: 10px;
  display: grid;
}

#contact .con-form form .form-btn-grp {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

#contact .con-form a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

#contact .con-form .form-info {
  box-shadow: 1px 2px 35px 7px rgba(0, 0, 0, 0.11);
  padding: 40px 20px;
  border-radius: 6px;
}

#contact .con-form {
  padding: 20px 0px 0;
}

#contact .con-form .right_img {
  height: 100%;
}

#contact .con-form img {
  height: 100%;
}

/*02.04.2026*/

.custom-pagination {
    gap: 8px;
}

.custom-pagination .page-item {
    margin: 0;
}

.custom-pagination .page-link {
    font-family: var(--paragraph-font);
    font-size: 18px;
    font-weight: 500;
    color: #111;
    background: #fff;
    border: 1px solid #1e1e1e;
    border-radius: 4px;
    min-width: 50px;
    height: 42px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.custom-pagination .page-item.active .page-link {
    background: #000;
    color: #fff;
    border-color: #000;
}

.custom-pagination .page-item.disabled .page-link,
.custom-pagination .page-item .page-link[aria-disabled="true"] {
    color: #b5b5b5;
    background: #f5f5f5;
    border-color: #d9d9d9;
    pointer-events: none;
}

.custom-pagination .page-link:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.custom-pagination .page-link:focus {
    box-shadow: none;
    outline: none;
}

/*03.04.2026*/
input#search-form-1 {
    border: none;
    outline: none;
width: 100%;
}
.single-post label {
    width: 100%;
}
.search-form label {
width: 100% !important;
}

.inner-blog-left-sec .inner-blog-comment .contact-form {
    padding: 20px 25px;
    border: 1px solid rgba(69, 69, 70, 0.2);
    border-radius: 8px;
    background: #fff;
    color: #000;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


#respond {
/*     max-width: 600px; */
    margin: 0 auto;
}
#respond #reply-title small a{
color: white !important;
background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#respond h2 {
    font-size: 24px;
    margin: 24px 0 16px 0;
    font-weight: 500;
}
#respond form {
    display: block;
    margin-top: 0em;
border: none;
}
#respond form p{
color: #6d6d6d;
 margin: 0;
    line-height: 26px;
    margin-bottom: 21px;
    font-size: 16px;
}
#respond .comment-form-comment,
#respond .comment-form-author,
#respond .comment-form-email,
#respond .comment-form-url {
    margin-bottom: 20px;
}

#respond label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

#respond textarea,
#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#respond .comment-form-cookies-consent {
    margin-top: 20px;
}

#respond .form-submit {
    margin-top: 20px;
}

#respond .submit {
    background-color: var(--theme-color-second);
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#respond .submit:hover {
    background: #000000;
    color: #fff;
    transition: all 0.8s;
}#respond .comment-form-cookies-consent input {
    width: 18px;
    height: 12px;
}
#respond .comment-form-cookies-consent input,
#respond .comment-form-cookies-consent label {
  display: inline;
}
#respond p.logged-in-as a{
color: #0f3ca1 !important;
text-decoration: underline;
display: inline-block !important;
}
#comments .comment-author a{
color: #000 !important;
}
#comments .comment-metadata a{
color: #000 !important;
}
#comments .comment-metadata a.comment-edit-link{
color: white !important;
background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#comments span.comment-reply a{
color: white !important;
background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
margin-right: 10px !important;
}

.accordion-body {
    color: #000;
}

/*06.04.2026*/
.pro-cat li{
	margin-left: 20px;
/* 	list-style: disc; */
}

/*24.04.2026*/

/* Primary Theme Color Override */
:root {
    --theme-color: #1b3562;
    --primary-color: #1b3562;
}

.navbar-nav .dropdown-menu li:hover > a {
    background: var(--theme-color) !important;
    color: #fff !important;
}

/*30.04.2026*/
a.navbar-brand {
    margin-left: 16px;
}