@import url("https://fonts.googleapis.com/css2?family=Sofia+Sans:ital,wght@0,1..1000;1,1..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
h1, h2, h3, h4, h5, h6 {
  margin: 0px;
}

:root {
  --size-80: 80px;
  --size-76: 76px;
  --size-70: 70px;
  --size-64: 64px;
  --size-58: 58px;
  --size-52: 52px;
  --size-48: 48px;
  --size-44: 44px;
  --size-40: 40px;
  --size-36: 36px;
  --size-32: 32px;
  --size-28: 28px;
  --size-24: 24px;
  --size-20: 20px;
  --size-18: 18px;
  --size-16: 16px;
  --size-14: 14px;
  --size-12: 12px;
  --size-10: 10px;
  --size-8: 8px;
  --sofia: "Sofia Sans", sans-serif;
  --nunito:"Nunito", sans-serif;
  --montserrat:"Montserrat", sans-serif;
}

.shimmer {
  position: relative;
}

.shimmer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: linear-gradient(90deg, #eee, #f9f9f9, #eee);
  background-size: 200%;
  animation: shimmer 1s infinite reverse;
}

@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}
.swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.desk-h100-slider img {
  height: 100vh !important;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .mobile-h100-slider img, .desk-h100-slider img {
    height: 100vh !important;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
}
:root {
  --white:#fff;
  --black:#000;
  --secondary-color:#222222;
  --primary-color:#018989;
  --text-color:#818181;
}

[data-theme=dark] {
  --primary-color:red;
  --secondary-color:#222222;
}

body {
  width: 100%;
  float: left;
  font-family: var(--sofia);
}
body a {
  text-decoration: none;
}
body img {
  max-width: 100%;
}

.main {
  width: 100%;
  float: left;
}

.btn-redmore {
  background-color: var(--primary-color);
  padding: 8px 25px;
  color: var(--white);
}

header {
  width: 100%;
  float: left;
  box-shadow: 1px 2px 13px rgba(0, 0, 0, 0.1411764706);
  z-index: 1000;
}
header .login-btn {
  background: var(--white) !important;
  padding: 8px 30px;
  color: var(--primary-color) !important;
}
header .login-btn img {
  margin-left: 10px;
}
header .top-header {
  padding: 15px 0px;
}
header .top-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .top-header .container .search-sec {
  display: flex;
  align-items: center;
  position: relative;
}
header .top-header .container .search-sec .search-icon {
  position: absolute;
  left: 15px;
}
header .top-header .container .search-sec .send-icon {
  position: absolute;
  right: 10px;
}
header .top-header .container .search-sec input {
  width: 370px;
  padding: 10px;
  background: #d6ecec;
  border-radius: 10px;
  padding-left: 50px;
}
header .top-header .container .doctor-lab-sec {
  display: flex;
  align-items: center;
}
header .top-header .container .doctor-lab-sec a {
  color: var(--primary-color);
  font-size: 20px;
  display: flex;
  align-items: center;
  margin-right: 30px;
}
header .top-header .container .doctor-lab-sec a img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}
header .top-header .container .doctor-lab-sec a:nth-last-of-type(1) {
  margin-right: 0px;
}
header .menu-part {
  background-color: var(--primary-color);
}
header .menu-part li {
  position: relative;
}
header .menu-part li a {
  color: var(--white) !important;
  padding: 10px 20px;
  float: left;
  width: 100%;
}
header .menu-part li:nth-of-type(1) a {
  padding-left: 0px;
}
header .logo {
  width: 130px;
}
header .navbar-toggler {
  border: 0px;
  outline: 0px !important;
  padding: 0px;
  display: none;
}
header .navbar-toggler:focus {
  outline: 0px;
  box-shadow: none;
}

.header-fixed {
  position: fixed;
  background-color: var(--white);
  top: -100px;
  transition: transform 0.5s;
  transform: translateY(100px);
}

.hero-banner {
  padding: 20px 0px;
  overflow-x: hidden !important;
  overflow-y: clip;
}
.hero-banner .container {
  position: relative;
}
.hero-banner .container .banner-round {
  width: 300px;
  position: absolute;
  bottom: -100px;
  right: -70px;
  z-index: 1;
}
.hero-banner .container .banner-round img {
  width: 100%;
  height: 100%;
}
.hero-banner .owl-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 40px;
  width: 100%;
  z-index: 1;
}
.hero-banner .owl-nav button {
  width: 40px;
  height: 40px;
  background: var(--primary-color) !important;
  border: 0px;
  border-radius: 50% !important;
  margin: 0px 10px;
  color: var(--white) !important;
}
.hero-banner .item {
  border-radius: 20px;
  overflow: hidden;
}
.hero-banner .row {
  flex-direction: row-reverse;
  align-items: center;
}
.hero-banner .row .img-part {
  display: flex;
  justify-content: center;
}
.hero-banner .row .img-part img {
  width: 400px !important;
  height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero-banner .row .text-part {
  padding-left: 40px;
}
.hero-banner .row .text-part strong {
  font-size: var(--size-48);
  color: var(--primary-color);
  font-family: var(--nunito);
  line-height: 1;
}
.hero-banner .row .text-part p {
  font-size: var(--size-20);
  line-height: 40px;
  font-weight: 400;
  margin: 30px 0px;
}
.hero-banner .owl-stage-outer {
  overflow: inherit;
}
.hero-banner #heart-bg {
  background-image: url("../images/heart-banner-bg.png");
  border: 1px solid var(--primary-color);
  background-size: cover;
  background-repeat: no-repeat;
}

.owl-nav.disabled {
  display: none !important;
}

.cronic-factor-sec {
  padding-top: 60px;
  background: #fffcfc;
}
.cronic-factor-sec h2 {
  margin-bottom: 50px;
}

.cronic-factor-card {
  width: 100%;
  float: left;
  border: 1px solid rgba(1, 137, 137, 0.5803921569);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
  background-color: var(--white);
  transition: all 0.3s ease-in-out;
}
.cronic-factor-card .top-part {
  padding: 20px;
}
.cronic-factor-card .top-part .fent-icon {
  width: 100px;
  height: 100px;
  position: absolute;
  right: 30px;
  top: 30px;
}
.cronic-factor-card .icon-part {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d6ecec;
  border-radius: 50%;
}
.cronic-factor-card h3 {
  color: #4A4A4A;
  margin: 20px 0px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: var(--size-28);
}
.cronic-factor-card p {
  color: var(--text-color);
}
.cronic-factor-card a {
  padding: 15px 20px;
  background: var(--primary-color);
  display: flex;
  color: var(--white);
  transition: all 0.3s ease-in-out;
}
.cronic-factor-card a img {
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cronic-factor-card a:before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
}
.cronic-factor-card a:hover img {
  margin-left: 15px;
}
.cronic-factor-card:hover {
  box-shadow: 0px 0px 20px 0px rgba(1, 137, 137, 0.0509803922);
}

.man-head h2 {
  font-size: var(--size-44);
  font-weight: bold;
  text-align: center;
  color: var(--primary-color);
}

.footer {
  background-image: url("../images/footer-bg.svg");
  padding: 100px 0px 0px 0px;
  margin-top: 80px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer .footer-head {
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 0;
  background: var(--primary-color);
  color: var(--white);
  padding: 15px 50px;
  border-radius: 60px;
  left: 0;
  right: 0;
  margin: auto;
  top: -30px;
}
.footer .footer-card {
  color: var(--white);
  width: 100%;
  float: left;
  padding-top: 80px;
}
.footer .footer-card .footer-logo {
  width: 140px;
  margin-bottom: 20px;
  margin-top: -70px;
}
.footer .footer-card strong {
  font-size: var(--size-28);
  display: block;
  margin-bottom: 30px;
  line-height: 1;
}
.footer .footer-card ul {
  padding: 0px;
  margin: 0px;
}
.footer .footer-card ul li {
  margin-bottom: 15px;
  list-style: none;
}
.footer .footer-card ul li a {
  color: var(--white);
}
.footer .footer-card ul li a img {
  width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 15px;
  height: 20px;
}
.footer .footer-link li {
  width: 50%;
  float: left;
}
.footer .social-flex ul {
  display: inline-flex;
  align-items: center;
}
.footer .social-flex ul li {
  margin: 0px 25px 0px 0px;
}
.footer .social-flex ul li img {
  margin-right: 0px !important;
}
.footer .copyright-sec {
  text-align: center;
  margin: 20px 0px 0px 0px;
  border-top: 1px solid var(--white);
  padding: 20px 0px;
  color: var(--white);
  font-style: italic;
  font-weight: 100;
}

/* Icon 1 */
.animated-icon1, .animated-icon2, .animated-icon3 {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.animated-icon1 span, .animated-icon2 span, .animated-icon3 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.animated-icon1 span {
  background: #222222;
}

.animated-icon1 span:nth-child(1) {
  top: 0px;
}

.animated-icon1 span:nth-child(2) {
  top: 10px;
}

.animated-icon1 span:nth-child(3) {
  top: 20px;
}

.animated-icon1.open span:nth-child(1) {
  top: 11px;
  transform: rotate(135deg);
}

.animated-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.animated-icon1.open span:nth-child(3) {
  top: 11px;
  transform: rotate(-135deg);
}

.inner-banner {
  position: relative;
  display: flex;
  align-items: center;
}
.inner-banner .text-part {
  position: absolute;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  color: var(--white);
}
.inner-banner .text-part h1 {
  font-size: 50px;
  margin-bottom: 15px;
  font-family: var(--montserrat);
  font-weight: 600;
}
.inner-banner .text-part .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #BDBDBD !important;
}
.inner-banner .text-part .breadcrumb li, .inner-banner .text-part .breadcrumb a {
  color: #BDBDBD !important;
}
.inner-banner .text-part .breadcrumb .active {
  color: #fff !important;
}
.inner-banner img {
  width: 100%;
  height: 305px;
  -o-object-fit: cover;
     object-fit: cover;
}
.inner-banner::before {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.568627451);
  content: "";
  position: absolute;
}

.inner-tab-sec {
  margin-top: 60px;
}

.sidebar {
  background: #E8EBF5;
  padding: 30px 20px;
  border-radius: 20px;
  position: sticky;
  top: 150px;
}
.sidebar li {
  width: 100%;
  margin-bottom: 15px;
}
.sidebar li button {
  background: var(--white);
  width: 100%;
  border-radius: 50px !important;
  text-align: left;
  color: #2C2C2C !important;
  padding: 12px 20px 12px 50px;
  position: relative;
}
.sidebar li button::before {
  width: 16px;
  height: 16px;
  background: url("../images/right-tik-icon.svg");
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  background-size: contain;
}
.sidebar li .active {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
}
.sidebar li .active::before {
  filter: grayscale(100) brightness(100);
}
.sidebar li:nth-last-of-type(1) {
  margin-bottom: 0px;
}

.tab-content-part {
  color: #414141;
}
.tab-content-part img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 30px;
}
.tab-content-part h3 {
  font-size: 34px;
  font-family: "Montserrat";
  font-weight: 600;
  margin-bottom: 20px;
}
.tab-content-part h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary-color);
}
.tab-content-part h5, .tab-content-part h6 {
  margin-bottom: 20px;
  color: var(--primary-color);
}
.tab-content-part li {
  margin-bottom: 15px;
}
.tab-content-part li ol {
  margin-top: 15px;
}

table {
  border: 1px solid rgba(206, 206, 206, 0.4431372549);
  vertical-align: middle;
}
table thead th {
  background: var(--primary-color) !important;
  color: var(--white) !important;
}
table tr td:nth-child(1) {
  min-width: 200px;
}

.responsive-thead {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.responsive-thead thead {
  white-space: nowrap;
}

.horizontal-content {
  border: 1px solid #DDD8D8;
  padding: 40px;
  border-radius: 0px 0px 30px 30px;
  box-shadow: 2px 2px 20px 3px rgba(221, 216, 216, 0.2509803922);
}

.inner-tab-sec-horizontal {
  padding-top: 60px;
}
.inner-tab-sec-horizontal h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
}
.inner-tab-sec-horizontal table thead th {
  text-align: center;
}
.inner-tab-sec-horizontal .main-head {
  margin-bottom: 40px;
}
.inner-tab-sec-horizontal .nav-link {
  color: #666666 !important;
  border: 0px !important;
}
.inner-tab-sec-horizontal .nav-link.active {
  background: var(--primary-color) !important;
  color: #fff !important;
}

.main-head {
  font-size: 40px;
  color: var(--primary-color);
}

.tab-content-part-new #about-blood-horizontal {
  flex-wrap: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
  background: #F2F2F2;
}
.tab-content-part-new #about-blood-horizontal li {
  width: -moz-fit-content;
  width: fit-content;
  flex: 0 0 auto;
  margin: 0px;
}
.tab-content-part-new #about-blood-horizontal li button {
  border-radius: 50px !important;
  padding: 7px 24px;
  color: var(--black);
}
.tab-content-part-new #about-blood-horizontal li .active {
  background: var(--primary-color) !important;
  color: var(--white) !important;
}

.h-tab-content {
  padding-top: 40px;
}
.h-tab-content .img-part {
  width: 45%;
  float: left;
  padding: 0px 30px 20px 0px;
}
.h-tab-content .img-part img {
  border: 1px solid #cecece;
  box-shadow: 0px 0px 15px 0px #e5e5e5;
  border-radius: 10px;
}
.h-tab-content h2 {
  color: var(--primary-color) !important;
  margin-bottom: 30px;
}

#about-blood-horizontal {
  scrollbar-width: thin;
}

.box-head {
  box-shadow: 0px 0px 6px rgba(1, 137, 137, 0.0784313725);
  padding: 15px;
  border-radius: 15px;
  margin-bottom: 20px;
}
.box-head h4 {
  margin: 0px;
}

.tab-content-part a {
  color: var(--primary-color) !important;
  cursor: pointer;
}

.center-head {
  margin-bottom: 20px;
}
.center-head h4 {
  margin-bottom: 5px;
}

.modal-header {
  background: var(--primary-color);
  color: var(--white);
}
.modal-header .modal-title {
  font-size: var(--size-28);
}
.modal-header .btn-close {
  background: none;
  opacity: 2;
  color: var(--white);
  font-size: var(--size-20);
}

.modal-body h4 {
  margin: 0px 0px 15px 0px;
  color: var(--primary-color);
}
.modal-body strong {
  color: var(--primary-color);
}
.modal-body .img-part {
  width: 40%;
  float: left;
  padding: 0px 30px 15px 0px;
}
.modal-body .img-part img {
  border: 1px solid #cecece;
  box-shadow: 0px 0px 15px 0px #e5e5e5;
  border-radius: 10px;
}
.modal-body .big-img {
  width: 60%;
}

.img-part-big {
  width: 45%;
  float: left;
  padding: 0px 30px 20px 0px;
}
.img-part-big img {
  border: 1px solid #cecece;
  box-shadow: 0px 0px 15px 0px #e5e5e5;
  border-radius: 10px;
}

#about-blood-horizontal {
  position: sticky;
  top: 143px;
}

p strong, li strong {
  color: var(--primary-color);
}

.disclaimer-main {
  margin-top: 50px;
}

.disclaimer-card {
  border: 1px solid #DDD8D8;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 2px 2px 20px 3px rgba(221, 216, 216, 0.46);
}
.disclaimer-card h2 {
  color: var(--primary-color);
}

.disclaimer-box {
  background: #f0f8f8;
  padding: 20px;
  border-radius: 15px;
  margin: 20px 0px;
}
.disclaimer-box p {
  color: var(--primary-color);
}
.disclaimer-box p:nth-last-of-type(1) {
  margin-bottom: 0px;
}

#pr-tab {
  border: 1px solid #DDD8D8;
  padding: 40px;
  border-radius: 0px 0px 30px 30px;
  box-shadow: 2px 2px 20px 3px rgba(221, 216, 216, 0.2509803922);
  border-top: 0px;
}

#screening-tab {
  padding-top: 40px;
}

ul li ul li {
  margin: 5px 0px !important;
}

.red-color {
  color: red;
}

.color-theme {
  color: var(--primary-color);
}

.w-50-between span {
  width: 30%;
  float: left;
}

.nav-pills .nav-link {
  text-transform: capitalize;
}/*# sourceMappingURL=main.css.map */