/* Golbal Css */
:root {
  --light-color: #fff;
  --heading-color: #333333;
  --para-color: #737373;
  --btn-blue-color: #5472d2;
  --red-color: #fe6c61;
  --btn-cyan-color: #00c1cf;
  --box-shadow: 0 0 22px -2px rgba(0, 0, 0, 0.07);
}
*,
*::after,
*::before,
html {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-size: 62.5%;
  font-family: "Roboto Slab", serif;
}
a,
a:hover,
a:visited {
  text-decoration: none;
  font-size: 1.6rem;
}
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto Slab", serif;
  font-weight: 600;
  color: var(--heading-color);
}
p {
  color: var(--para-color);
  margin: 0;
  font-size: 1.6rem;
}
section {
  padding: 80px 0;
  overflow: hidden;
}
.container-fluid{
  padding: 0 20rem !important; 
}
.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 3.6rem;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--heading-color);
}
.section-title p {
  margin-bottom: 0;
}
.btn {
  display: inline-block;
  color: #fff;
  background: var(--red-color);
  padding: 15px 26px;
  border: 2px solid transparent;
  border-radius: 5px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  text-transform: uppercase;
  box-shadow: 0 0 16px -2px var(--primary-color);
}
.btn:hover {
  color: #fff;
  opacity: 0.9;
}
.btn-border {
  border-color: var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  box-shadow: none;
}
.btn-border:hover {
  color: #fff;
  background: var(--primary-color);
}
.f-right {
  float: right;
}
.f-left {
  float: left;
}
.d-block {
  display: block;
}

/* ===== scrollTop Css ===== */
.back-to-top {
	position: fixed;
	display: none;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
	width: 40px;
	height: 40px;
	border-radius: 6px;
	background: #a979c2;
	line-height: 40px;
	text-align: center;
}
.back-to-top svg {
  font-size: 1.6rem;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top svg:hover {
  background: #8d6dc4;
  color: #fff;
}

/* ===== Header Css ===== */
#header {
  position: relative;
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 9;
  background: #fff;
}

#header .logo,
#header nav {
  padding: 0 15px;
}

#header .logo img {
  width: 200px;
}

#header .main-menu li {
  position: relative;
  margin-left: 35px;
}

#header .main-menu li a {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 8px 0;
  color: var(--heading-color);
  transition: all 0.3s ease-in-out;
}

#header .main-menu li:hover > a {
  color: #a979c2;
}

#header .btn-border {
  margin-right: 4px;
}

#header .main-menu .btn-border {
  display: none;
}

#header .toggle-btn {
  display: none;
  cursor: pointer;
  padding: 5px 15px;
}

#header .toggle-btn span {
  display: block;
  width: 25px;
  height: 3px;
  border-radius: 3px;
  background: var(--heading-color);
  transform-origin: 0px 2px;
  transition: all 0.3s ease-in-out;
}

#header .toggle-btn span:not(:last-child) {
  margin-bottom: 6px;
}

#header .toggle-btn.open span:first-child {
  transform: rotate(45deg);
}

#header .toggle-btn.open span:nth-child(2) {
  visibility: hidden;
  transform: translateX(-20px);
  opacity: 0;
  transition: all 0.3s;
}

#header .toggle-btn.open span:last-child {
  transform: rotate(-45deg);
}

.header-scrolled {
  position: fixed !important;
  box-shadow: 0 12px 12px rgb(0 0 0 / 5%);
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 12px 12px rgb(0 0 0 / 5%);
}

/* ===== Slider Css ===== */

#hero-slider {
  position: relative;
}

#hero-slider .owl-nav {
  display: flex;
  position: absolute;
  top: 45%;
  justify-content: space-between;
  left: 22px;
  right: 22px;
}

#hero-slider .owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 4px;
  background: var(--heading-color);
}

#hero-slider .owl-nav button svg {
  font-size: 2.5rem;
  color: #fff;
}

/* ===== Mission Css ===== */
#mission .mission__text h2 {
  font-size: 4rem;
  margin-bottom: 2rem;
}

#mission .mission__text p {
  font-size: 1.8rem;
}

/* ===== Founder Css ===== */
#founder {
  background: #9cd673;
}

#founder .founder__text h2 {
  font-size: 4rem;
  margin-bottom: 2rem;
}

#founder .founder__text p {
  color: var(--heading-color);
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

#founder .founder__text span {
  display: block;
  font-size: 2rem;
  text-align: right;
}

#founder .founder__img {
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: 300px;
}

/* ===== Vaccination Css ===== */
#vaccination {
  padding: 25rem 0 6rem 0;
}

#vaccination .vaccination__wrapper {
  position: relative;
  border-radius: 20px 20px 8px 8px;
  padding-bottom: 4rem;
  width: 90%;
  margin: 0 auto;
  padding-top: 17rem;
}

#vaccination .vaccination--img {
  position: absolute;
  top: -24%;
  left: 50%;
  transform: translate(-50%, -12%);
  border-radius: 100%;
  width: 100%;
}

#vaccination .vaccination--img img {
  width: 100%;
}

#vaccination .vaccination--text {
  padding: 30px;
}

#vaccination .vaccination--text h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

#vaccination .vaccination--text p {
  color: #fff;
}

#vaccination .btn {
  position: absolute;
  bottom: -22px;
  left: 50%;
  border-radius: 100px;
  transform: translateX(-50%);
}

.yellow-color {
  background: #ffc343;
}
.green-color {
  background: #4ebb5b;
}
.purple-color {
  background: #a979c2;
}
.yellow-color-dark {
  background: #ca992e;
}
.green-color-dark {
  background: #32913d;
}
.purple-color-dark {
  background: #704a85;
}

/* ===== Hospital Css ===== */
#hospital .row {
  padding: 5rem 2rem;
}
.brown-bg {
  background: #ddb06c;
}

#hospital .hospital--text p {
  font-size: 2rem;
  text-align: center;
  color: var(--heading-color);
}

#hospital .hospital--entry-box {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border: 2px dotted #000;
  padding: 2rem;
  text-align: right;
}

#hospital .hospital--entry-box a {
  font-size: 1.6rem;
  font-weight: 500;
  margin-right: 1rem;
  padding: 1rem 0;
  color: #a979c2;
  border-bottom: 2px solid #a979c2;
  transition: all .2s ease-in-out;
}

#hospital .hospital--entry-box:hover a {
  color: #b6d6a0;
  border-color: #b6d6a0;
}

#hospital svg {
  font-size: 1.5rem;
  color: var(--heading-color);
}

/* ===== Image Gallery Css ===== */
#gallery .gallery-bg {
  padding: 2rem;
  background: #82a1bf;
}

#gallery .img-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  grid-gap: 20px;
  text-align: center;
}

#gallery .img-gallery img {
  width: 100%;
}

#gallery .gallery-item .img-title {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--heading-color);
}

/* ===== Image Gallery Css ===== */

/* faq-area */
.accordion .card {
  border-radius: 0;
  padding: 0;
  background: #fff;
  z-index: 1;
  border: none;
}
a .btn-link.btn-block.text-left {
  color: #000;
  position: relative;
}
.btn-link.btn-block.text-left {
  border-radius: 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  font-family: "Roboto Slab", serif;
  text-decoration: none;
  padding: 25px 35px;
  background: #a979c2;
  border: 1px solid #e6e6e6;
}
.btn-link.btn-block.text-left.collapsed {
  color: #000;
  background: #eee;
  transition: 0.3s;
  border-radius: 0;
}
.card-header {
  padding: 0;
  border-radius: 0;
}
.card-header a {
  padding-left: 60px !important;
}
.accordion .card-body {
  padding: 1rem 6rem;
  color: #878991;
  border: 1px solid #e6e6e6;
  text-align: left;
  background: #f8f8f8;
}

.accordion .card-body li {
  font-size: 1.8rem;
  list-style: disc;
  color: #2b2b2b;
}

.btn-link.btn-block.text-left::before {
  position: absolute;
  content: "\f068";
  top: 26px;
  left: 28px;
  font-size: 20px;
  font-family: fontAwesome;
  color: rgb(88, 88, 88);
}
.btn-link.btn-block.text-left.collapsed::before {
  position: absolute;
  content: "\f067";
  top: 26px;
  left: 28px;
  font-size: 20px;
  font-family: fontAwesome;
  color: #fff;
}

.card-header a {
  font-size: 2rem !important;
  background: #f8f8f8 !important;
  color: rgb(88, 88, 88) !important;
  font-weight: 400 !important;
  border: 1px solid transparent;
}
.card-header a.collapsed {
  background: #a979c2 !important;
  color: #fff !important;
}

.app-store img {
  width: 100%;
}

.app--link {
  padding: 3rem;
  background: #b6d6a0;
}

.app--link h2 {
  font-size: 3.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.link--1,
.link--2 {
  font-size: 1.6rem;
}

.app--link a {
  color: #a979c2;
  word-break: break-all;
}

.app--link a:hover {
  color: #4ebb5b;
  text-decoration: underline;
}


/* ===== Our Partners Css ===== */
#partner {
  position: relative;
}

#partner .item {
  display: flex;
	align-items: center;
	width: 100%;
	height: 150px;
	background: #fff;
}

#partner .item img{
  width: 100%;
}

#partner .clients{
  background: #b6d6a0;
  padding: 20px;
}

#partner .owl-dots {
	display: none;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 30px;
}

#partner .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  display: block;
  backface-visibility: visible;
  margin: 5px 7px;
  background: #a979c26b;
  transition: all 0.3s ease 0s;
  border-radius: 30px;
}
#partner .owl-dots .owl-dot.active span{
  width: 15px;
  height: 15px;
  border-radius: 15px;
}
#partner .owl-dots .owl-dot.active span, .owl-dots .owl-dot:hover span {
  background: #a979c2;
}


/* ===== Latest Updates Css ===== */
.updates .card {
	cursor: pointer;
	width: 100%;
	height: 300px;
	border: none;
	background: #f8f8f8;
}
.updates .front, .back{
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  backface-visibility: hidden;
  position: absolute;
  transition: transform .4s linear;
}
.updates .front img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.updates .front{
  transform: perspective(600px) rotateY(0deg);
}
.updates .back {
	background: #ebebeb;
	transform: perspective(600px) rotateY(180deg);
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.updates .back h1{
  font-size: 4rem;
}
.updates .card:hover > .front{
  transform: perspective(600px) rotateY(-180deg);
}
.updates .card:hover > .back{
  transform: perspective(600px) rotateY(0deg);
}

.updates__wrapper.border{
  border: 2px solid !important;
  padding: 40px;
}

.updates .nav-tabs {
	border-bottom: none;
}

.updates .nav-tabs .nav-item .nav-link{
  border-radius: 5px 5px 0 0 !important;
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: uppercase;
  padding: 15px 20px;
  margin: 0 .5px;
  color: #fff;
  background: #fe6c61;
}

.updates .nav-tabs .nav-item.show .nav-link, .updates .nav-tabs .nav-link.active {
  background-color: #f8f8f8;
	border-color: #dee2e6 #dee2e6 #fff;
  color: var(--heading-color);
}

.cards__wrapper{
  padding: 30px 20px;
  background: #f8f8f8;
  border-radius: 8px;
  border: 1px solid #dee2e6;
}

.cards__wrapper .btn{
  background: #8d6dc4;
  text-transform: capitalize;
}

.cards__wrapper .btn.view-more{
  background: #00c1cf;
  text-transform: uppercase;
}

/* ===== Footer Css ===== */
#footer{
  background: var(--heading-color);
  padding-top: 40px;
}

#footer h4{
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

#footer p{
  color: #fff;
  line-height: 2;
}

#footer .footer--socials a{
  width: 40px;
  height: 40px;
}

#footer .footer--socials a img{
  width: 100%;
}

#footer .footer--socials a:not(:last-child){
  margin-right: 12px;
}

#footer .copyright{
  padding: 60px 0 20px 0;
}

#footer .copyright a{
  color: #8d6dc4;
}

#footer .copyright a:hover{
  text-decoration: underline;
}