*,
::after,
::before {
  box-sizing: border-box;
}
@font-face {
  font-family: "bootstrap-icons";
  src: url("../fonts/bootstrap-icons.woff2") format("woff2"),
    url("../fonts/bootstrap-icons.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "bootstrap-icons";
  src: url("../fonts/bootstrap-icons.woff2") format("woff2"),
    url("../fonts/bootstrap-icons.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection {
  color: #fff;
  background-color: var(--theme-blue-color);
}
::-moz-selection {
  color: #fff;
  background-color: var(--theme-blue-color);
}
body {
  font-family: var(--theme-primary-font-family);
  font-weight: 400;
  color: var(--theme-black-color);
  background-color: #ffffff;
  overflow-x: hidden;
}
html,
body {
  scroll-behavior: smooth;
}
:root {
  --theme-blue-color: #00186a;
  --theme-red-color: #ed1b24;
  --theme-white-color: #ffffff;
  --theme-black-color: #000000;
  --theme-dark-blue-color: #111214;
  --theme-black-color: #161616;
  --theme-gray-color: #414141;
  --theme-gray-light-color: #eeeeee;
  --theme-gray-light-2-color: #414141;
  --theme-gray-light-3-color: #787878;
  --theme-header-font-family: "IBM Plex Sans";
  --theme-primary-font-family: "Roboto";
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  transition: color 0.2s ease-in-out;
  text-decoration: none !important;
}
a,
a:focus {
  text-decoration: none;
}
a:focus {
  color: initial;
}
.cmn-img img {
  width: 100%;
}
.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-success {
  background-color: var(--theme-pink-color);
  --bs-btn-border-color: var(--theme-pink-color);
  --bs-btn-hover-bg: #2d802b;
  --bs-btn-hover-border-color: #2d802b;
}
.row-flex {
  display: flex;
  flex-wrap: wrap;
}
.noscroll {
  overflow: hidden;
  height: 100vh;
}
.layout_padding {
  padding: 80px 0;
}
.cmn_btn {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(135deg, #ed1b24, #f87c82);
  color: var(--theme-white-color);
  border-radius: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
}
.cmn_btn:hover {
  color: var(--theme-white-color);
  background: linear-gradient(135deg, #00186a, #2443ae);
}
.cmn_btn2 {
  display: inline-block;
  padding: 12px 25px;
  background: transparent;
  border: 1px solid var(--theme-blue-color);
  color: var(--theme-blue-color);
  border-radius: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 14px;
  text-transform: uppercase;
}
.cmn_btn2:hover {
  color: var(--theme-white-color);
  background-color: var(--theme-blue-color);
  border: 1px solid var(--theme-blue-color);
}
.cmn_btn3 {
  display: inline-block;
  padding: 5px 18px;
  background: var(--theme-blue-color);
  border: 1px solid var(--theme-blue-color);
  color: var(--theme-white-color);
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}
.cmn_btn3 .bi {
  font-size: 24px;
}
.cmn_btn3:hover {
  color: var(--theme-blue-color);
  background-color: transparent;
  border: 1px solid var(--theme-blue-color);
}
.cmn-btn-4 {
  padding: 5px 10px;
  font-size: 18px;
  color: var(--theme-black-color);
  border: 1px solid #c1c1c1;
  border-radius: 8px;
  background: #efefef;
  overflow: hidden;
  transition: 0.4s;
  flex-shrink: 0;
}
.cmn-btn-4:hover {
  opacity: 0.8;
}
.multi-btn {
  display: flex;
  align-items: center;
  gap: 5px;
}
h1.title-bg {
  font-size: 95px;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0.08;
  color: var(--theme-black-color);
  font-family: var(--theme-header-font-family);
}
h1.title-bg2 {
  font-size: 95px;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0.08;
  color: var(--theme-white-color);
  font-family: var(--theme-header-font-family);
  position: relative;
  z-index: 1;
}
.heading_container h2 {
  font-weight: 600;
  font-size: 46px;
  font-family: var(--theme-primary-font-family);
  color: var(--theme-blue-color);
  margin-bottom: 20px;
  position: relative;
  text-transform: capitalize;
}
.heading_container h4 {
  font-size: 20px;
  color: var(--theme-black-color);
}
.heading_container p {
  font-size: 18px;
  color: var(--theme-gray-color);
  line-height: 24px;
  margin-top: 20px;
  margin-bottom: 15px;
}
.heading_container p:last-child {
  margin-bottom: 0;
}
.heading_container ul li::before {
  content: "\F26B";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: var(--theme-blue-color);
  font-size: 18px;
}
.heading_container ul li {
  margin: 0px;
  padding-left: 20px;
  position: relative;
}
.heading_container ul li p {
  font-size: 16px;
  margin-top: 5px;
  padding-left: 10px;
}
.heading_container_2 {
  position: relative;
  z-index: 3;
}
.heading_container_2 h2 {
  font-weight: 600;
  font-size: 46px;
  font-family: var(--theme-primary-font-family);
  color: var(--theme-blue-color);
  margin-bottom: 20px;
  position: relative;
  text-transform: capitalize;
}
ul.dpt-list {
  list-style: circle;
  margin: 0;
  padding-left: 30px;
}
ul.dpt-list li {
  margin-top: 5px;
  font-size: 16px;
}
ul.dpt-list li::marker {
  color: var(--theme-red-color);
}
.heading_container_2 p {
  font-size: 16px;
  color: var(--theme-gray-color);
  line-height: 24px;
}
.heading_container_2 a span.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--theme-pink-color);
  color: var(--theme-black-color);
  display: inline-block;
  text-align: center;
  line-height: 60px;
}
.heading_container_2 a span.icon-box .bi {
  color: var(--theme-white-color);
  font-size: 30px;
}
.heading_container_2 a {
  color: var(--theme-red-color);
}
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: #0d6efd;
  color: #fff;
  border: none;
  outline: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
#backToTop:hover {
  background-color: #084298;
  transform: translateY(-3px);
}
.cmn-nav-htn .owl-carousel .owl-nav button.owl-next,
.cmn-nav-htn .owl-carousel .owl-nav button.owl-prev {
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 400ms ease-in-out 0s;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
}
.cmn-nav-htn .owl-carousel .owl-nav button.owl-next {
  right: 50px;
  font-family: "bootstrap-icons";
}
.cmn-nav-htn .owl-carousel .owl-nav button.owl-prev {
  left: 50px;
  font-family: "bootstrap-icons";
}
.cmn-nav-htn:hover .owl-carousel .owl-nav button.owl-next {
  right: 30px;
  font-family: "bootstrap-icons";
}
.cmn-nav-htn:hover .owl-carousel .owl-nav button.owl-prev {
  left: 30px;
  font-family: "bootstrap-icons";
}
.cmn-nav-htn .owl-carousel .owl-nav button.owl-next:hover {
  color: var(--theme-blue-color);
  border: 1px solid var(--theme-blue-color);
}
.cmn-nav-htn .owl-carousel .owl-nav button.owl-prev:hover {
  color: var(--theme-blue-color);
  border: 1px solid var(--theme-blue-color);
}
.cmn-nav-htn .owl-carousel .owl-nav button.owl-next,
.cmn-nav-htn .owl-carousel .owl-nav button.owl-prev {
  opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  text-align: center;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--theme-red-color);
  color: var(--theme-red-color);
  font-size: 30px;
}
.cmn-nav-htn .owl-carousel .owl-nav button.owl-next img,
.cmn-nav-htn .owl-carousel .owl-nav button.owl-prev img {
  width: 78%;
}
.cmn-nav-htn:hover .owl-carousel .owl-nav button.owl-next,
.cmn-nav-htn:hover .owl-carousel .owl-nav button.owl-prev {
  opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  -moz-opacity: 1;
}
.cmn-nav-htn .owl-carousel .owl-nav button.owl-next:hover,
.cmn-nav-htn .owl-carousel .owl-nav button.owl-prev:hover {
  opacity: 0.8;
}
.cmn-owl-dots-btn .owl-dots {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 35px;
}
.cmn-owl-dots-btn .owl-carousel button.owl-dot span {
  width: 14px;
  height: 15px;
  margin: 5px;
  background: var(--theme-white-color);
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.4s ease;
  border-radius: 30px;
}
.cmn-owl-dots-btn .owl-carousel button.owl-dot.active span,
.cmn-owl-dots-btn .owl-carousel button.owl-dot:hover span {
  background: var(--theme-red-color);
  position: relative;
}
.header_top {
  background-color: var(--theme-blue-color);
  padding: 5px 0;
}
.header_top .nav-list {
  gap: 10px !important;
}
.header_top li.nalist-item {
  padding: 0;
  margin-bottom: 0;
}
.header_top li.nalist-item a {
  font-size: 14px;
  font-weight: 400;
  color: var(--theme-white-color);
}
.header_top li.nalist-item a span {
  font-size: 16px;
  color: var(--theme-white-color) !important;
  margin-right: 5px;
  display: inline-block;
}
.header_top .social_items a {
  width: 24px;
  height: 24px;
  background-color: var(--theme-white-color);
  border-radius: 5px;
  line-height: 24px;
  font-size: 10px;
  color: var(--theme-blue-color);
  gap: 5px;
  display: inline-block;
  text-align: center;
}
.header_top .social_items a:hover {
  background-color: var(--theme-red-color);
  color: var(--theme-white-color);
}
.header_mdl {
  padding: 10px 0;
}
.header_mdl img.hdr-logo {
  width: 100%;
}
.hero-slider .slide-item {
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-slider .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.hero-slider .slide-content {
  position: absolute;
  z-index: 2;
  text-align: left;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
}
.hero-slider .hero-img img {
  width: 100%;
  height: auto;
}
.hero-slider h2 {
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 15px;
  animation: fadeInDown 1s;
  color: var(--theme-blue-color);
}
.hero-slider p {
  font-size: 18px;
  margin-bottom: 20px;
  animation: fadeInUp 1.2s;
  color: var(--theme-gray-color);
}
.hero-slider .btn {
  padding: 10px 25px;
  border-radius: 50px;
}
.what-we-do-area {
}
.what-we-do-area .single-img {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.what-we-do-area .image {
  display: block;
  width: 100%;
  height: auto;
}
.what-we-do-area .img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--theme-blue-color);
  overflow: hidden;
  width: 100%;
  height: 60px;
  transition: 0.5s ease;
}
.what-we-do-area .single-img:hover .img-overlay {
  height: 100%;
  background: rgb(0 24 106 / 80%);
}
.what-we-do-area .text {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-family: poppins;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
}
.what-we-do-area .text span {
  font-weight: 300;
}
.consultants-box {
  border-radius: 10px;
  border: 1px solid var(--theme-blue-color);
  padding: 15px;
  height: 100%;
}
.consultants-box .consultants-icon {
  width: 60px;
  margin: auto;
}
.consultants-box .consultants-icon img {
  width: 100%;
}
.consultants-box h4 {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
  color: var(--theme-black-color);
  text-transform: uppercase;
}
.schedule-sec {
  background: #f7e7e8;
}
.health-section p.subtitle {
  color: #1f4fbf;
  font-size: 18px;
  margin-bottom: 50px;
}
.step-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: left;
  background: #ffffff;
  padding: 15px;
  border-radius: 13px;
}
.step-card img {
  width: 60px;
  height: 60px;
}
.step-card h6 {
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}
.book-btn {
  background: linear-gradient(135deg, #ed1b24, #f87c82);
  color: #fff;
  padding: 12px 35px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  margin-top: 40px;
}
.book-btn:hover {
  color: #fff;
  opacity: 0.9;
}
.book-btn2 {
  background: linear-gradient(135deg, #ed1b24, #f87c82);
  color: #fff;
  padding: 5px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  margin-top: 40px;
}
.book-btn2:hover {
  color: #fff;
  opacity: 0.9;
}
.why-section {
  padding: 70px 0;
}
.why-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 30px;
  padding: 30px 25px;
  height: 100%;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #00186a, #ed1f28);
}
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgb(0 0 0 / 0.2);
}
.why-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #00186a, #ed1f28);
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}
.why-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 15px;
  color: #555;
}
.pharma-stats {
  background: linear-gradient(135deg, #0a1f44, #0d2b63);
  padding: 80px 0;
  color: #fff;
}
.stats-left h2 {
  font-size: 36px;
  font-weight: 700;
}
.stats-left h2 span {
  color: rgb(247 146 150) !important;
}
.stats-left p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 15px;
  max-width: 520px;
}
.stat-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  transition: all 0.35s ease;
}
.stat-box:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
}
.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3658cc, #f4676d);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--theme-white-color);
}
.stat-content h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 4px;
}
.stat-content span {
  font-size: 16px;
  color: var(--theme-white-color);
  line-height: 1.4;
}
.faq-section {
  background: #f4f8fd;
  padding: 80px 0;
}
.faq-title span {
  color: #0d6efd;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.faq-question {
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-left {
  display: flex;
  gap: 15px;
  align-items: center;
}
.faq-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00186a, #ed1f28);
  border-radius: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.faq-question h6 {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}
.faq-toggle {
  font-size: 22px;
  color: var(--theme-blue-color);
  transition: transform 0.3s ease;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding: 0 24px 20px;
  margin: 0;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}
.accreditation-card {
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.accreditation-card img {
  max-width: 160px;
  max-height: 160px;
  object-fit: cover;
}
.award-sec {
  background: var(--theme-white-color);
}
.award-card {
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  padding: 20px;
}
.award-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card {
  background: var(--theme-gray-light-color);
  border-radius: 24px;
  padding: 0;
  height: 100%;
  transition: 0.3s;
  border: 1px solid var(--theme-blue-color);
  overflow: hidden;
}
.service-card:hover {
  background: var(--theme-blue-color);
  transform: translateY(-5px);
}
.service-card-body {
  padding: 25px;
}
.service-img-box {
  background: #fff;
  border-radius: 70px;
  text-align: center;
  width: 130px;
  height: 130px;
  margin: 25px auto 0 auto;
  overflow: hidden;
}
.service-img-box img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--theme-blue-color);
  text-align: center;
}
.service-desc {
  text-align: center;
  font-size: 15px;
  margin: 15px 0 25px;
  color: var(--theme-gray-color);
}
.service-card:hover .service-title,
.service-card:hover .service-desc {
  color: var(--theme-white-color);
}
.read-btn {
  background: transparent;
  color: var(--theme-blue-color);
  border: 1px solid var(--theme-blue-color);
  border-radius: 5px;
  padding: 10px 26px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: 0.4s;
  gap: 8px;
}
.read-btn:hover {
  background: var(--theme-blue-color);
  color: var(--theme-white-color);
}
.arrow {
  font-size: 18px;
}
.service-item {
  display: none;
}
.service-item.show {
  display: block;
}
.services-area2 {
  display: grid;
  list-style-type: none;
  padding: 0;
  margin: 0;
  grid-gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 300px;
  grid-auto-flow: dense;
}
.services-area2 figure {
  margin: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
.wide {
  grid-column: span 2;
}
.tall {
  grid-row: span 2;
}
.services-area2 img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.services-area2 figure {
  overflow: hidden;
}
.services-area2 img {
  transition: all 0.3s ease-in-out;
  transform: scale(1.2);
}
.services-area2 figure figcaption {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  display: grid;
  align-content: center;
  text-align: center;
  pointer-events: none;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
  transform: scale(1.2);
}
.services-area2 figure h1,
.services-area2 figure p {
  opacity: 0;
  transition: all 0.4s;
}
.services-area2 figure h1 {
  transform: translate3d(0, -1rem, 0);
  margin: 0;
  font-size: 36px;
  font-weight: 300;
  text-transform: uppercase;
}
.services-area2 figure h1 span {
  font-size: 36px;
  font-weight: 800;
  color: var(--theme-blue-color);
}
.services-area2 figure p {
  font-size: 18px;
  transform: translate3d(0, 1rem, 0);
}
.services-area2 figure:hover img {
  transform: scale(1);
}
.services-area2 figure:hover figcaption {
  transform: scale(1);
  background: rgb(0 0 0 / 60%);
}
.services-area2 figure:hover figcaption h1,
.services-area2 figure:hover figcaption p {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.services-box {
  background: var(--theme-white-color);
  border: 1px solid var(--theme-white-color);
  border-radius: 20px;
  padding: 30px 20px;
  height: 100%;
  cursor: pointer;
  transition: 0.5s;
}
.services-box:hover {
  box-shadow: 0px 4px 10px rgb(0 0 0 / 10%);
  border: 1px solid var(--theme-blue-color);
}
.serv-icon {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  line-height: 80px;
  background: var(--theme-yellow-light-color);
  padding: 10px;
  margin: 0 auto 15px auto;
}
.services-box .serv-icon svg {
  width: 50px;
  height: 50px;
}
.services-box h4 {
  color: var(--theme-gray-color);
  font-size: 20px;
  font-weight: 600;
  font-family: var(--theme-header-font-family);
}
.services-box:hover h4 {
  color: var(--theme-blue-color);
}
.services-box p {
  color: var(--theme-black-color);
  font-size: 14px;
  font-weight: 400;
}
.video-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.video-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.play-btn i {
  font-size: 70px;
  color: var(--theme-white-color);
  background: rgb(0 24 106 / 61%);
  border-radius: 50%;
  padding: 0px;
  transition: 0.3s;
  width: 130px;
  height: 130px;
  line-height: 130px;
  text-align: center;
}
.play-btn:hover i {
  transform: scale(1.1);
}
.videomodal .btn-close {
  z-index: 99999 !important;
}
.lftrgt_content_section .sidecnt-img img {
  border-radius: 24px;
}
.lftrgt_content_section .sidecnt h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--theme-black-color);
  margin-bottom: 15px;
}
.lftrgt_content_section .sidecnt h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--theme-black-color);
  margin-bottom: 10px;
}
.lftrgt_content_section p {
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.lftrgt_content_section p:last-child {
  margin-bottom: 0;
}
.lftrgt_content_section ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--theme-blue-color);
  font-size: 18px;
}
.lftrgt_content_section ul li {
  margin: 0px;
  padding-left: 20px;
  position: relative;
}
.lftrgt_content_section ul li p {
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 0;
}
.dr-box {
  background-color: var(--theme-white-color);
  box-shadow: 0px 4px 10px rgb(0 0 0 / 10%);
  border-radius: 15px;
  overflow: hidden;
}
.dr-box .dr-img {
  height: 280px;
  overflow: hidden;
}
.dr-box .dr-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}
.dr-box .dr-img:hover img {
  transform: scale(1.07);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}
.dr-box .dr-dtls {
  padding: 20px;
}
.dr-box .dr-dtls h3 {
  font-size: 20px;
  color: var(--theme-black-color);
  text-transform: uppercase;
  font-family: var(--theme-header-font-family);
}
.dr-box .dr-dtls p {
  font-size: 16px;
  color: var(--theme-gray-color);
  font-family: var(--theme-primary-font-family);
  font-weight: 400;
}
.dr-box .dr-dtls p span {
  font-size: 12px;
  color: var(--theme-blue-color);
  font-family: var(--theme-primary-font-family);
  font-weight: 400;
  padding: 5px 10px;
  border: 1px solid #f1f1f1;
  border-radius: 30px;
  margin: 5px;
  display: inline-block;
  width: 60px;
}
.doctors-slider .slide-item {
  margin: 15px;
}
.doctors-slider .owl-dots {
  text-align: center;
}
.doctors-slider .owl-dots .owl-dot.active span,
.doctors-slider .owl-dots .owl-dot:hover span {
  border: 1px solid var(--theme-blue-color);
  background: var(--theme-white-color);
  position: relative;
}
.doctors-slider .owl-dots .owl-dot.active span:after,
.doctors-slider .owl-dots .owl-dot:hover span:after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 15px;
  height: 15px;
  border-radius: 30px;
  background: var(--theme-blue-color);
}
.doctors-slider .owl-dots .owl-dot span {
  width: 21px;
  height: 21px;
  margin: 5px 7px;
  border: 1px solid var(--theme-blue-color);
  background: var(--theme-white-color);
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.4s ease;
  border-radius: 30px;
}
.facilities-sec {
  background: url(../images/facilities-bg.jpg) center center no-repeat;
  background-size: cover;
}
.facilities-container {
  width: 80%;
  margin: 30px auto 0 auto;
}
.facilities-mdl {
  position: relative;
  height: 100%;
}
.facilities-mdl img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 90%;
}
.facilities-box {
  background: var(--theme-white-color);
  border: 1px solid var(--theme-white-color);
  border-radius: 20px;
  padding: 30px 20px;
  height: 100%;
  cursor: pointer;
  transition: 0.5s;
}
.facilities-box:hover {
  box-shadow: 0px 4px 10px rgb(0 0 0 / 10%);
  border: 1px solid var(--theme-blue-color);
}
.fac-icon {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  line-height: 80px;
  background: #f1f1f1;
  padding: 10px;
  margin: 0 auto 15px auto;
}
.facilities-box .fac-icon svg {
  width: 50px;
  height: 50px;
}
.facilities-box h4 {
  color: var(--theme-gray-color);
  font-size: 20px;
  font-weight: 600;
  font-family: var(--theme-header-font-family);
}
.facilities-box:hover h4 {
  color: var(--theme-blue-color);
}
.programs-sec {
  background: #f6f6f6;
}
.programs-catagory .nav-tabs {
  border-bottom: 1px solid var(--theme-gray-light-color);
}
.programs-catagory .nav-tabs .nav-link {
  color: var(--theme-black-color);
  text-transform: uppercase;
  border: none;
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border: none;
  border-radius: 0;
  border-bottom: 2px solid var(--theme-blue-color);
  color: var(--theme-blue-color);
}
.programs-catagory .nav-tabs .nav-item.show .nav-link,
.programs-catagory .nav-tabs .nav-link.active {
  border: none;
  border-radius: 0;
  border-bottom: 2px solid var(--theme-blue-color);
  color: var(--theme-blue-color);
}
.programs {
  overflow: hidden;
}
.programs iframe {
  width: 100%;
  height: 220px;
  border-radius: 20px;
}
.gallery-list {
  overflow: visible;
}
.gallery-list .sk-box {
  position: relative;
  overflow: hidden;
  background: #0e86d4 !important;
  color: #fff;
  -webkit-border-radius: 15px;
  border-radius: 15px;
}
.gallery-list .sk-box a {
  display: block;
  color: inherit;
}
.gallery-list .sk-box figure {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 64%;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 0;
}
.gallery-list .sk-box figure img {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%) scale(1.01);
  transform: translate(0, -50%) scale(1.01);
  width: 100%;
  height: 100%;
  -webkit-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
  object-fit: cover;
}
.sk-box:hover a figure img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.gallery-list .sk-box .sk-text {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 10px;
  margin: 0;
  -moz-transition: all 300ms ease-in-out 0s;
  -webkit-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
  margin: 0 auto;
  text-align: center;
}
.gallery-list .sk-box:hover .sk-text {
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.gallery-list .readmore {
  width: 50px !important;
  height: 50px !important;
  display: block;
  margin: auto;
  background: #fff !important;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  padding: 0;
  color: #0e86d4 !important;
  font-size: 0;
  position: relative;
}
.gallery-list .readmore:before {
  content: "\f002";
  display: block;
  font-family: "FontAwesome";
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.gallery-list .sk-video-box .readmore:before {
  content: "\f16a";
}
.gallery-list .readmore:hover {
  color: #4f5cc5;
}
.gallery-list .sk-box .sk-text .subheading {
  text-align: inherit;
  color: inherit;
  text-transform: uppercase;
  font-size: 20px;
}
.gallery-list .sk-box:hover figure img {
  -webkit-transform: translate(0, -50%) scale(1.1);
  transform: translate(0, -50%) scale(1.1);
  opacity: 0.1;
}
.gallery-list .sk-box:hover .sk-text .readmore {
  text-align: center;
  margin: 0 auto;
}
.call-bg {
  background: url(../images/call-bg.jpg) center center no-repeat;
  background-size: cover;
  border-radius: 30px;
}
.contact-sec .btn-area {
  padding: 25px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.call-mdl {
  margin-top: -113px;
}
.call-mdl img {
  width: 267px;
}
.contact-sec .donate-btn {
  display: inline-block;
  color: var(--theme-blue-color);
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 25px 75px;
  background: var(--theme-white-color);
  border-radius: 50px;
  transition: 0.3s;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
}
.contact-sec .callnow-btn {
  display: inline-flex;
  color: var(--theme-black-color);
  font-size: 25px;
  line-height: 45px;
  text-transform: uppercase;
  font-weight: 600;
  background: #e8c020;
  border-radius: 50px;
  transition: 0.3s;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
}
.contact-sec .callnow-btn:hover {
  opacity: 0.9;
}
.contact-sec .callnow-btn div.callnow {
  padding: 25px 50px 25px 25px;
}
.contact-sec .callnow-btn span svg {
  width: 95px;
  height: 95px;
}
.call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eabf25;
  color: #000;
  font-size: 30px;
  font-weight: 600;
  padding: 25px 40px 25px 110px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}
.call-btn:hover {
  background-color: #d4a919;
}
.call-btn i {
  background: #fff;
  color: #eabf25;
  border-radius: 50%;
  padding: 20px;
  margin-right: 12px;
  font-size: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 2px;
}
.testimonial-sec {
  background-color: #e8f3ff;
}
.test-slider-container {
  display: flex;
}
.test-slider-container .quote-img {
  width: 51px;
  height: 34px;
  flex-shrink: 0;
  margin-top: 10px;
}
.testimonial-inner {
  position: relative;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  position: relative;
}
.testimonial-item .testimonial-text {
  padding: 0 0 0 40px;
}
.testimonial-item .testimonial-text p {
  font-size: 16px;
  color: var(--theme-gay-color);
  margin-bottom: 0;
  line-height: 26px;
}
.testimonial-item .testimonial-text .testimonial-rating {
  margin-top: 15px;
}
.testimonial-item .testimonial-text .testimonial-rating span {
  color: #f09d21;
}
.testimonial-item .testimonial-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.testimonial-item .testimonial-img img {
  border-radius: 50px;
  width: 80px !important;
  height: 80px;
  object-fit: cover;
}
.testimonial-item .testimonial-text .client-detail {
  margin-top: 15px;
}
.testimonial-item .testimonial-text .client-detail h6 {
  margin-bottom: 5px;
  color: var(--theme-blue-color);
}
.testimonial-item .testimonial-text .client-detail span {
  color: var(--theme-blue-color);
  opacity: 0.8;
}
.testimonial-item {
  margin: 15px;
}
.testimonial-slider .owl-dots {
  text-align: center;
}
.testimonial-slider .owl-dots .owl-dot.active span,
.testimonial-slider .owl-dots .owl-dot:hover span {
  border: 1px solid var(--theme-red-color);
  background: var(--theme-white-color);
  position: relative;
}
.testimonial-slider .owl-dots .owl-dot.active span:after,
.testimonial-slider .owl-dots .owl-dot:hover span:after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 15px;
  height: 15px;
  border-radius: 30px;
  background: var(--theme-red-color);
}
.testimonial-slider .owl-dots .owl-dot span {
  width: 21px;
  height: 21px;
  margin: 5px 7px;
  border: 1px solid var(--theme-red-color);
  background: var(--theme-white-color);
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.4s ease;
  border-radius: 30px;
}
.media-sec {
  padding-top: 270px;
}
.media-sec .media-card {
  border: 1px solid var(--theme-blue-color);
  background: var(--theme-white-color);
  border-radius: 15px;
  box-shadow: 0px 4px 10px rgb(0 0 0 / 10%);
  height: 100%;
}
.media-sec .media-card .media-card-hdr {
  border-bottom: 1px solid var(--theme-blue-color);
  padding: 15px 10px;
  text-align: center;
}
.media-sec .media-card .media-card-hdr h3 {
  font-size: 24px;
  text-transform: uppercase;
  color: var(--theme-black-color);
  font-family: var(--theme-header-font-family);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-sec .media-card .media-card-hdr h3 span {
  margin-right: 10px;
}
.media-sec .media-card .media-card-body {
  padding: 20px;
  height: 100%;
}
.media-sec .media-card .media-card-body .news-events-item img {
  border-radius: 10px;
  width: 100%;
  min-height: 150px;
  object-fit: cover;
}
.media-sec .media-card .media-card-body .news-events-cnt .date-time {
  padding-right: 5px;
  margin-top: 10px;
}
.media-sec .media-card .media-card-body .news-events-cnt .date-time p {
  color: var(--theme-blue-color);
  font-size: 14px;
  font-weight: 600;
  margin-left: 15px;
  margin-bottom: 0;
}
.media-sec .media-card .media-card-body .news-events-cnt {
  margin-top: 15px;
}
.media-sec .media-card .media-card-body .news-events-cnt h4 {
  font-size: 18px;
  color: var(--theme-blue-color);
}
.media-sec .media-card .media-card-body .news-events-cnt p {
  font-size: 14px;
  color: var(--theme-gray-color);
}
.media-sec .media-card .media-card-body .news-events-cnt .date-time p span {
  margin-right: 5px;
}
.news-events-slider .owl-dots .owl-dot span {
  width: 20px;
  height: 4px;
  border-radius: 3px;
  display: block;
  background: var(--theme-gray-light-color);
  margin-right: 5px;
}
.news-events-slider .owl-dots .owl-dot.active span,
.news-events-slider .owl-dots .owl-dot:hover span {
  width: 20px;
  height: 4px;
  border-radius: 3px;
  display: block;
  background: var(--theme-blue-color);
}
.newsTickerCon {
  width: 100%;
  height: 322px;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.newsTickerCon ul {
  position: relative;
  padding: 0px;
  margin: 0px;
  list-style: none;
}
.newsTickerCon ul li {
  margin: 10px 0;
  border-bottom: 0px solid #a1a9a5;
  position: relative;
}
.newsTickerCon ul li:after {
  content: "\F309";
  font-family: "bootstrap-icons";
  position: absolute;
  left: -15px;
  top: -14px;
  font-size: 36px;
  color: var(--theme-blue-color);
}
.newsTickerCon ul li a {
  padding-left: 15px;
  color: var(--theme-blue-color);
  font-size: 14px;
  font-family: var(--theme-header-font-family);
  font-weight: 600;
}
.newsTickerCon ul li a:hover,
.newsTickerCon ul li:hover:after {
  color: var(--theme-blue-color);
}
.bmw-report-cnt {
  overflow-y: auto;
  height: 400px;
}
.bmw-report-cnt .list-group-flush > .list-group-item a {
  color: var(--theme-blue-color);
}
.bmw-report-cnt .list-group-flush > .list-group-item a:hover {
  color: var(--theme-blue-color);
}
.bmw-report-cnt .list-group-flush > .list-group-item .bi {
  color: red;
}
.bmw-report-cnt .accordion-flush > .accordion-item > .accordion-collapse,
.bmw-report-cnt
  .accordion-flush
  > .accordion-item
  > .accordion-header
  .accordion-button,
.bmw-report-cnt
  .accordion-flush
  > .accordion-item
  > .accordion-header
  .accordion-button.collapsed {
  border-radius: 5px;
}
.bmw-report-cnt .accordion-button:not(.collapsed) {
  color: var(--theme-black-color);
  background-color: #b8e1f5;
  box-shadow: none;
}
.bmw-report-cnt
  .accordion-flush
  > .accordion-item
  > .accordion-header
  .accordion-button:hover {
  color: var(--theme-blue-color);
}
.bmw-report-cnt .accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}
.client-slider .client-item {
  overflow: hidden;
}
.client-slider .client-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  max-width: 94%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}
.client-slider .client-item:hover img {
  transform: scale(1.07);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  filter: grayscale(100);
}
.footer-main {
  background: var(--theme-blue-color);
  position: relative;
}
.footer-top-sec {
  position: relative;
  background-color: #dae0f6;
  position: relative;
  z-index: 2;
  padding: 60px 0;
}
.footer-top-sec .ftr-contact h1 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--theme-blue-color);
  font-family: var(--theme-header-font-family);
}
.footer-top-sec .ftr-contact p {
  font-size: 16px;
  color: var(--theme-gray-color);
}
.footer-top-sec .ftr-contact .cnt-list {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.footer-top-sec .ftr-contact .cnt-list:last-child {
  margin-bottom: 0;
}
.footer-top-sec .ftr-contact .cnt-list figure {
  width: 75px;
  height: 75px;
  background: rgb(0 24 106 / 9%);
  border-radius: 15px;
  margin: 0;
  position: relative;
}
.footer-top-sec .ftr-contact .cnt-list img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.footer-top-sec .ftr-contact .cnt-text {
  width: calc(100% - 110px);
  text-align: left;
  padding-left: 15px;
}
.footer-top-sec .ftr-contact .cnt-text h4 {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--theme-header-font-family);
  color: var(--theme-black-color);
  margin-bottom: 10px;
}
.footer-top-sec .ftr-contact .cnt-text a,
.footer-top-sec .ftr-contact .cnt-text p {
  font-size: 16px;
  color: var(--theme-gray-color);
  line-height: 20px;
}
.footer-top-sec .ftr-contact .cnt-text a:hover {
  color: var(--theme-blue-color);
}
.footer-top-sec .ftr-contact .cnt-text p.text-conpany {
  text-transform: capitalize;
  color: var(--theme-gray-color);
  margin-bottom: 5px;
}
.footer-top-sec .ftr-contact .g-map iframe {
  border-radius: 15px;
  overflow: hidden;
}
.contact-box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-icon {
  width: 70px;
  height: 70px;
  background: var(--theme-white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  color: var(--theme-blue-color);
  font-size: 32px;
  flex-shrink: 0;
}
.contact-box h6 {
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.contact-box p {
  margin-bottom: 4px;
  color: #6c757d;
}
.contact-box a {
  color: var(--theme-blue-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 20px;
}
.contact-box a:hover {
  text-decoration: underline;
}
.subscribe-btn {
  background-color: var(--theme-white-color);
  border-radius: 8px;
  font-family: var(--theme-header-font-family);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
  padding: 5px 0;
  margin-bottom: 0;
  position: relative;
  text-align: left;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
}
.subscribe-btn .btn-text {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subscribe-btn .dis-icon2 {
  margin-left: 38px;
}
.subscribe-btn .dis-icon2::before,
.subscribe-btn .dis-icon2::after {
  content: "→";
  display: block;
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  top: 45%;
  right: 14px;
  margin: auto;
  color: var(--theme-red-color);
  transform: translate(0%, -50%);
  transition: all 0.5s cubic-bezier(0.25, 0.25, 0.08, 1.08);
}
.subscribe-btn .dis-icon2::before,
.subscribe-btn .dis-icon2::after {
  font-weight: 600;
}
.subscribe-btn .dis-icon2::before {
  opacity: 0;
  transform: translate(-100%, -50%);
}
.subscribe-btn:hover .dis-icon2::before {
  opacity: 1;
  transform: translate(0, -50%);
}
.subscribe-btn:hover .dis-icon2::after {
  opacity: 0;
  transform: translate(100%, -50%);
}
.newsletter .input-group-text .bi {
  color: var(--theme-red-color);
  font-size: 20px;
}
.newsletter .form-control {
  padding: 1rem;
  border: none;
}
.newsletter .input-group-text {
  padding-left: 1rem;
}
.newsletter .form-control:focus {
  box-shadow: none;
}
.footerbtm {
  border-top: 1px solid rgb(23 23 23 / 10%);
  margin-top: 50px;
  padding-top: 60px;
}
.ftr-logo {
  width: 50%;
}
.footerbtm p.ftr-abt {
  font-size: 16px;
  font-weight: 400;
  color: var(--theme-white-color);
}
.footerbtm h4 {
  font-size: 20px;
  font-weight: 500;
  color: var(--theme-blue-color);
  font-family: var(--theme-primary-font-family);
}
.footerbtm .ftr-link ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 20px;
}
.footerbtm .ftr-link ul li {
  margin: 0 8px 5px 0;
}
.footerbtm .ftr-link ul li a {
  color: var(--theme-gray-color);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: 0.4s;
}
.footerbtm .ftr-link ul li a:hover {
  color: var(--theme-red-color) !important;
  padding-left: 5px;
}
.footerbtm .ftr-contact {
  margin-top: 20px;
}
.footerbtm .ftr-contact a {
  color: var(--theme-white-color);
}
.footerbtm .ftr-contact a.phone {
  font-size: 26px;
  font-weight: 800;
  color: var(--theme-blue-color);
}
.footerbtm .ftr-contact a:hover {
  color: var(--theme-red-color) !important;
}
.footerbtm .ftr-contact p {
  font-size: 16px;
  color: var(--theme-gray-color);
}
.footerbtm .ftr-contact p a {
  font-size: 18px;
  color: var(--theme-gray-color);
}
.footerbtm {
  position: relative;
}
.ftr_social_items a {
  width: 50px;
  height: 50px;
  background-color: rgb(0 24 106 / 9%);
  border-radius: 8px;
  line-height: 50px;
  font-size: 20px;
  color: var(--theme-blue-color);
  gap: 5px;
  display: inline-block;
  text-align: center;
  margin-right: 5px;
}
.ftr_social_items a:hover {
  background-color: var(--theme-red-color);
  color: var(--theme-white-color);
}
.copy-cnt {
  position: relative;
  z-index: 3;
}
.ftr-copy-info {
  padding: 30px 0;
}
.copy-info p {
  color: var(--theme-white-color);
  margin-top: 0px;
  margin-bottom: 0;
}
.copy-info a {
  color: var(--theme-white-color);
}
.copy-info a:hover {
  color: var(--theme-red-color);
}
.legal-link a {
  font-size: 14px;
  color: var(--theme-white-color);
  margin: 5px 10px;
}
.legal-link a:hover {
  color: var(--theme-blue-color);
}
.ftr-btm {
  border-top: 1px solid #43536a;
  padding-top: 30px;
  margin-top: 30px;
}
.ftr-btm ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ftr-btm ul li {
  display: inline-block;
  color: var(--theme-white-color);
  margin: 0 10px;
}
.ftr-btm ul li a {
  font-size: 16px;
  color: var(--theme-white-color);
}
.ftr-btm ul li a:hover {
  color: var(--theme-pink-color);
}
.inner-hero {
  position: relative;
}
.inner-hero img {
  width: 100%;
}
.overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 41%);
}
.overlay-content h3 {
  font-size: 40px;
  font-weight: 600;
  color: var(--theme-white-color);
  text-transform: uppercase;
}
.contact-form-area {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  background-color: #ffffff;
}
.contact-form-content {
  position: relative;
  display: block;
  padding-top: 70px;
  padding-right: 100px;
  padding-bottom: 70px;
  z-index: 1;
}
.contact-form-content:before {
  position: absolute;
  top: 0;
  left: 100px;
  bottom: 0;
  right: 0;
  content: "";
  z-index: -1;
  -webkit-box-shadow: 0px 4px 10px 2px #e9e9e9;
  box-shadow: 0px 4px 10px 2px #e9e9e9;
  border-radius: 15px;
}
.contact-information-box {
  position: relative;
  display: block;
  padding: 53px 50px 53px;
  background-image: url(../images/pattern-bg-2.png);
  max-width: 400px;
  width: 100%;
}
.contact-information-box {
  background-color: var(--theme-red-color);
}
.contact-information-box .sec-title {
  padding-bottom: 42px;
}
.contact-information-box .sec-title .big-title {
  padding: 0 0 11px;
}
.contact-information-box .sec-title .big-title h2 {
  font-size: 36px;
  color: var(--theme-white-color);
}
.contact-information-box .sec-title .border-box {
  justify-content: flex-start;
  align-items: flex-start;
}
.contact-information-box .sec-title .border-box .linebottom {
  background: #ffffff;
}
.contact-information-box .contact-us {
  position: relative;
  display: block;
}
.contact-information-box .contact-us li {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.contact-information-box .contact-us li:last-child {
  margin-bottom: 0;
}
.contact-information-box .contact-us li .icon {
  position: relative;
  top: 1px;
  width: 50px;
}
.contact-information-box .contact-us li .icon i {
  color: var(--theme-white-color);
  font-size: 26px;
}
.contact-information-box .contact-us li .icon,
.contact-information-box .contact-us li .text {
  display: table-cell;
  vertical-align: top;
}
.contact-information-box .contact-us li .text p {
  color: var(--theme-white-color);
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  margin: 0;
}
.contact-information-box .contact-us li .text a {
  color: var(--theme-white-color);
  font-size: 18px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.contact-information-box .contact-us li .text a:hover {
  color: #f5f5f5;
}
.contact-information-box .follow-us {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 44px;
}
.contact-information-box .follow-us .text {
  position: relative;
  display: block;
}
.contact-information-box .follow-us .text h3 {
  color: var(--theme-white-color);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}
.contact-information-box .follow-us .social-links {
  position: relative;
  display: block;
  padding-left: 20px;
}
.contact-information-box .follow-us .social-links ul {
  overflow: hidden;
}
.contact-information-box .follow-us .social-links ul li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 20px;
}
.contact-information-box .follow-us .social-links ul li:last-child {
  margin-right: 0;
}
.contact-information-box .follow-us .social-links ul li a {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 30px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.contact-information-box .follow-us .social-links ul li a:hover {
  color: var(--theme-blue-color);
}
.contact-form {
  position: relative;
  display: block;
  padding-left: 40px;
}
.contact-form .title {
  position: relative;
  display: block;
  margin-top: -5px;
  padding-bottom: 40px;
}
.contact-form .title h2 {
  color: #222222;
  font-size: 36px;
  line-height: 40px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 0 10px;
}
.contact-form .title p {
  margin: 0;
}
.contact-form form {
  position: relative;
  display: block;
}
.contact-form form .input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}
.contact-form form input[type="text"],
.contact-form form input[type="email"],
.contact-form form textarea {
  position: relative;
  display: block;
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
  width: 100%;
  height: 50px;
  color: var(--theme-blue-color);
  font-size: 14px;
  font-weight: 500;
  padding-left: 30px;
  padding-right: 20px;
  border-radius: 30px;
  transition: all 500ms ease;
}
.contact-form form textarea {
  height: 50px;
  padding-top: 15px;
  padding-left: 30px;
  padding-right: 20px;
  border-radius: 30px;
  margin-bottom: 25px;
}
.contact-form form input[type="text"]:focus {
  color: #222222;
  border-color: rgb(1 24 104 / 57%);
}
.contact-form form input[type="email"]:focus {
  color: #222222;
  border-color: rgb(1 24 104 / 57%);
}
.contact-form form textarea:focus {
  color: #222222;
  border-color: rgb(1 24 104 / 57%);
}
.contact-form form input[type="text"]::-webkit-input-placeholder {
  color: #777777;
}
.contact-form form input[type="text"]:-moz-placeholder {
  color: #777777;
}
.contact-form form input[type="text"]::-moz-placeholder {
  color: #777777;
}
.contact-form form input[type="text"]:-ms-input-placeholder {
  color: #777777;
}
.contact-form form input[type="email"]::-webkit-input-placeholder {
  color: #777777;
}
.contact-form form input[type="email"]:-moz-placeholder {
  color: #777777;
}
.contact-form form input[type="email"]::-moz-placeholder {
  color: #777777;
}
.contact-form form input[type="email"]:-ms-input-placeholder {
  color: #777777;
}
.contact-form form textarea::-webkit-input-placeholder {
  color: #777777;
}
.contact-form form textarea:-moz-placeholder {
  color: #777777;
}
.contact-form form textarea::-moz-placeholder {
  color: #777777;
}
.contact-form form textarea:-ms-input-placeholder {
  color: #777777;
}
.contact-form form button {
  padding: 12px 25px;
  background: var(--theme-red-color);
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  font-size: 14px;
  text-transform: uppercase;
}
.contact-form form button:hover {
  color: var(--theme-black-color);
}
.awards-section {
  background: #ffffff;
  padding: 60px 15px;
}
.section-title {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: #0b3c5d;
  margin-bottom: 40px;
}
.awards-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.awards-wrapper img {
  max-height: 110px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.awards-wrapper img:hover {
  transform: scale(1.05);
}
.soft-box {
  border-radius: 24px;
  text-align: center;
  height: 100%;
  overflow: hidden;
}
.title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--theme-blue-color);
}
.sub-text {
  color: var(--theme-gray-color);
  font-size: 16px;
}
.icon-list li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 16px;
}
.icon-list i {
  color: #1aa3b8;
  margin-right: 10px;
}
.rounded-img {
  border-radius: 24px;
  width: 100%;
  object-fit: cover;
}
.link-arrow {
  color: #1aa3b8;
  font-weight: 600;
  text-decoration: none;
}
.link-arrow i {
  transition: 0.3s;
}
.link-arrow:hover i {
  transform: translateX(5px);
}
.filter-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 12px 22px;
  border-radius: 30px;
  border: 1px solid var(--theme-gray-light-color);
  background: #fff;
  color: #0b5c80;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--theme-blue-color);
  color: #fff;
  border-color: var(--theme-blue-color);
}
.job-card {
  border: 1px solid var(--theme-gray-light-color);
  border-radius: 30px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.job-left h2 {
  margin: 0;
  color: var(--theme-gray-color);
}
.badge {
  display: inline-block;
  margin-left: 10px;
  background: #3b8cff;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
}
.job-desc {
  margin-top: 15px;
  color: #444;
  line-height: 1.6;
  max-width: 650px;
}
.job-right {
  min-width: 200px;
}
.job-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6b7f90;
  margin-bottom: 15px;
  font-size: 15px;
}
.job-meta i {
  color: #8aaed3;
}
.divider {
  border-top: 1px solid #e5e5e5;
  margin: 20px 0 30px;
}
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.client-logo img {
  max-width: 140px;
  max-height: 60px;
  object-fit: contain;
  transition: 0.3s;
  opacity: 1;
}
.client-logo img:hover {
  transform: scale(1.07);
  filter: grayscale(100%);
  opacity: 0.8;
}
.sub-title h2 {
  font-size: 26px;
  line-height: normal;
  color: var(--theme-blue-color);
  font-weight: 700;
  margin-bottom: 0;
}
.breadcrumb-dtls {
  background: var(--theme-white-color);
  padding: 10px 0;
}
.breadcrumb-dtls p {
  color: var(--theme-gray-color);
  margin-top: 5px;
  margin-bottom: 0;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 500;
}
.breadcrumb-item a {
  color: var(--theme-black-color);
  font-weight: 500;
}
.breadcrumb-item.active {
  color: var(--theme-red-color) !important;
}
.login-modal {
  border-radius: 14px;
  padding: 10px;
}
.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 10;
}
.login-img {
  max-height: 280px;
}
.divider {
  width: 1px;
  height: 260px;
  background: #ccc;
}
.btn-info {
  background-color: #14b6d8;
  border: none;
}
.btn-info:hover {
  background-color: #0da2c0;
}
.signin-cnt h3 {
  color: var(--theme-blue-color);
}
.country-select .flag {
  width: 20px;
  height: auto;
}
.country-select .dropdown-menu {
  max-height: 220px;
  overflow-y: auto;
}
.country-select .dropdown-toggle {
  min-width: 95px;
}
.country-select .form-control {
  border-color: var(--bs-btn-hover-border-color);
}
.country-select .form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: none;
}
.enquiry-cnt h3 {
  color: var(--theme-blue-color);
  font-size: 22px;
}
.enquiry-cnt label {
  font-size: 13px;
}
.enquiry-cnt .form-control {
  border-radius: 5px;
  border: 1px solid var(--theme-gray-light-3-color);
}
.enquiry-cnt input::placeholder,
.enquiry-cnt textarea::placeholder {
  font-size: 14px;
  color: #999;
}
.enquiry-cnt::placeholder {
  font-size: 14px;
}
.enquiry-cnt::-webkit-input-placeholder {
  font-size: 14px;
}
.enquiry-cnt::-moz-placeholder {
  font-size: 14px;
}
.enquiry-cnt:-ms-input-placeholder {
  font-size: 14px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}
.value-card {
  background: var(--theme-white-color);
  border-radius: 14px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.value-card:hover {
  transform: translateY(-8px);
}
.letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00186a, #ee252e);
  color: var(--theme-white-color);
  font-size: 26px;
  font-weight: bold;
  border-radius: 50%;
  margin-bottom: 20px;
}
.value-card h3 {
  font-size: 16px;
  color: var(--theme-blue-color);
  margin-bottom: 12px;
}
.value-card p {
  font-size: 15px;
  color: var(--theme-gray-color);
  line-height: 1.6;
}
.prod-category {
  background: #e8f3ff;
}
.category-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}
.category-card a {
  display: flex;
  flex-direction: column-reverse;
  text-align: center;
}
.category-card:hover {
  transform: translateY(-5px);
}
.category-info {
  margin-top: 10px;
}
.category-info h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}
.category-info p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}
.category-img img {
  max-width: 90px;
  height: auto;
}
p.learn-more {
  color: var(--theme-red-color);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 30px;
  border: 1px solid var(--theme-red-color);
  padding: 5px 10px;
  display: inline-block;
  margin-top: 5px;
}
.category-card:hover p.learn-more {
  background: var(--theme-red-color);
  color: var(--theme-white-color);
}
.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-6px);
}
.product-img {
  overflow: hidden;
  border-radius: 10px;
}
.product-img img {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img img {
  transform: scale(1.15);
}
.product-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 20px 0 10px 0;
}
.product-sub-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-gray-light-3-color);
  margin-bottom: 20px;
}
.btn-cart {
  background: var(--theme-blue-color);
  color: var(--theme-white-color);
  border-radius: 30px;
  padding: 12px 0;
  font-weight: 600;
  border: none;
  width: 100%;
  transition: 0.3s;
}
.btn-cart:hover {
  color: var(--theme-white-color);
  background: var(--theme-red-color);
}
.featured-brands {
  background: #f6f6f6 url(../images/brand-bg.jpg) center center no-repeat;
  background-size: cover;
}
.brand-card {
  background: var(--theme-white-color);
  height: 120px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.brand-card img {
  max-width: 150px;
  max-height: 60px;
  object-fit: contain;
}
.brand-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--theme-white-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-left: 8px;
  transition: 0.3s;
}
.brand-nav button:hover {
  background: var(--theme-red-color);
  color: var(--theme-white-color);
}
.trending-products {
  background: var(--theme-white-color);
}
.trending-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--theme-white-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-left: 8px;
  transition: 0.3s;
}
.trending-nav button:hover {
  background: var(--theme-red-color);
  color: var(--theme-white-color);
}
.product-dtls-card {
  background: var(--theme-white-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.product-dtls-image {
  background: #cfd2e1;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
}
.product-dtls-image img {
  max-width: 100%;
  height: auto;
}
.product-subtitle {
  font-size: 13px;
  color: var(--theme-gray-color);
  letter-spacing: 1px;
}
.product-dtls-title {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
}
.pack-info {
  font-size: 15px;
  margin: 15px 0;
  color: var(--theme-gray-color);
}
.btn-orange {
  background: #f58220;
  color: #fff;
  border-radius: 30px;
  padding: 10px 25px;
  border: none;
}
.btn-outline-dark {
  border-radius: 30px;
  padding: 10px 25px;
}
.product-dtls-card .nav-tabs .nav-link:focus,
.product-dtls-card .nav-tabs .nav-link:hover,
.bottom-tabs .nav-tabs .nav-link:focus,
.bottom-tabs .nav-tabs .nav-link:hover {
  border-bottom: none;
}
.nav-tabs .nav-link {
  border: none;
  background: var(--theme-gray-light-color);
  color: var(--theme-black-color);
  font-weight: 600;
  border-radius: 0;
}
.nav-tabs .nav-link.active {
  background: #cfd2e1;
}
.tab-content {
  border: 1px solid #dee2e6;
  padding: 20px;
  background: #fff;
}
.product-dtls-card .tab-content p,
.bottom-tabs .tab-content p {
  color: var(--theme-gray-color);
}
.bottom-tabs {
  margin-top: 40px;
}
.zoom-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: zoom-in;
}
.zoom-image {
  width: 100%;
  transition: transform 0.6s ease;
}
.zoom-container:hover .zoom-image {
  transform: scale(1.25);
}
.zoom-container:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.cta-section {
  background: #1373bf url(../images/call-bg.jpg) center center no-repeat;
  background-size: cover;
  padding: 90px 20px;
}
.cta-title {
  color: var(--theme-white-color);
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}
.cta-subtitle {
  color: #d5e3ea;
  font-size: 18px;
  max-width: 750px;
  margin: 0 auto 35px;
  line-height: 1.6;
}
.cta-btn {
  background-color: var(--theme-white-color);
  color: var(--theme-blue-color);
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.cta-btn:hover {
  background-color: var(--theme-blue-color);
  color: var(--theme-white-color);
  transform: translateY(-2px);
}
:not(.cta-btn) + .btn:active {
  border-color: var(--theme-blue-color);
  background-color: var(--theme-blue-color);
  color: var(--theme-white-color);
}
