/*google font*/
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Rajdhani',sans-serif;
}
body {

  background: #fff !important;
  font-family: 'Poppins', sans-serif;
}

a {
  text-decoration: none;
  color: #1a1e21;
}

.section-title h2 {
  text-shadow: 1px 1px 2px #4444;
}
.active {
  color : #0D6EFD !important;
}

/*****************************
    NavBar Start
******************************/
#header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(63, 62, 62, 0.7)),
  url("../img/landinganimation.jpeg") !important;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  max-width: 100%;
  height: 100vh;
}
#video-bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.transparent-input {
  background-color: transparent !important;
  border: 1px solid #ced4da; /* Adjust border styles as needed */
  color: #212529; /* Text color */
}
.content {
  position: relative;
  z-index: 1;
}
:root {
  --main-color: #e6b30e;
}
.act,
.navbar ul li a:hover {
  color: #0D6EFD !important;
  border-bottom: 1px solid #0D6EFD;
}
.theme-text {
  color: #0D6EFD !important;
}

svg.wave {
  position: absolute;
  bottom: -70px;
}




/*****************************
    NavBar End
******************************/

/*****************************
    SVG start
******************************/
.custom-shape-divider-bottom-1698140094 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1698140094 svg {
  position: relative;
  display: block;
  width: calc(134% + 1.3px);
  height: 160px;
}

.custom-shape-divider-bottom-1698140094 .shape-fill {
  fill: #FFFFFF;
}

/** For mobile devices **/
@media (max-width: 767px) {
  .custom-shape-divider-bottom-1698140094 svg {
      width: calc(140% + 1.3px);
      height: 160px;
  }
}

/*****************************
    SVG End
******************************/

/*****************************
    Login Form Start
******************************/
.form-login {
  bottom: 45% !important;
}





.blue-color{
  color: #007BFF;
}
.list-style{
  list-style: none;
}
/*****************************
    Login Form End
******************************/

/*****************************
    Looping Logos Start
******************************/

@keyframes slide{
  from{
    transform: translateX(0);

  }
  to{
    transform: translateX(-100%);
  }
}
.logos{
  overflow: hidden;
  padding: 60px 0;
  background-color: #FFF;
  white-space: nowrap;
  position: relative;
}
.logos:before, .logos:after{
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}
.logos:before{
  left: 0;
  background: linear-gradient(to left, rgba(255,255,255,0), #fff);
}
.logos:after{
  right: 0;
  background: linear-gradient(to right, rgba(255,255,255,0), #fff);
}
.logos:hover .logos-slide{
  animation-play-state: paused;
}
.logos-slide{
  display: inline-block;
  animation: slide 35s infinite linear;
}
.logos-slide img{
  height: 150px;
  margin: 0 40px;
}

/*****************************
    Looping Logos End
******************************/
.counter {
  text-align: center;
  padding: 50px 0;
}
.counter h3 {
  font-size: 48px;
}
/*****************************
    Testimonials Start
******************************/
.testimonials .active {
  color: #000 !important;
}
.testimonials h1 {
	color: #333;
	text-transform: uppercase;
    font-family: 'Noto Sans', sans-serif;
	font-weight: bold;
	position: relative;
}
.testimonials hr {
	width: 140px;
	height: 3px;
	background: #0D6EFD;
}
.testimonials .col-center {
	margin: 0 auto;
	float: none !important;
}
.testimonials .carousel {
	margin: 50px auto;
	padding: 0 70px;
}
.testimonials .carousel-item {
	color: #666;
	font-size: 14px;
    text-align: center;
	overflow: hidden;
    min-height: 290px;
    margin-top: 30px;
}
.testimonials .carousel .item .img-box {
	width: 135px;
	height: 135px;
	margin: 0 auto;
	padding: 5px;
	border: 1px solid #ddd;
	border-radius: 50%;
}
.testimonials .carousel .img-box img {
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 50%;
}
.testimonials .carousel .testimonial {
	padding: 30px 0 10px;
}
.testimonials .carousel .overview {	
	font-style: italic;
}
.testimonials .carousel .overview b {
	text-transform: uppercase;
	color: #db584e;
}
.testimonials .carousel .carousel-control {
	width: 40px;
    height: 40px;
    margin-top: -20px;
    top: 50%;
	background: none;
}
.testimonials .carousel-control i {
    font-size: 68px;
	line-height: 42px;
    position: absolute;
    display: inline-block;
	color: rgba(0, 0, 0, 0.8);
    text-shadow: 0 3px 3px #e6e6e6, 0 0 0 #000;
}
.testimonials .carousel .carousel-indicators {
	bottom: -40px;
}
.testimonials .carousel-indicators li {
	width: 20px;
	height: 10px;
	border-radius: 10px;
}
.carousel-indicators li.active{
  width: 30px;
}
.testimonials .carousel-indicators li {	
	background: #999;
	border-color: transparent;
	box-shadow: inset 0 2px 1px rgba(0,0,0,0.2);
}
.testimonials .carousel-indicators li.active {	
	background: #555;		
	box-shadow: inset 0 2px 1px rgba(0,0,0,0.2);
}


/*****************************
    Testimonials End
******************************/


/*****************************
    About Start
******************************/

/* #about .col-md-7 {
  background: rgba(75, 222, 248, 0.3);
} */


/*****************************
    About End
******************************/

/*------------
.course .box {
  padding: 10px 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
}

.course .box img {
  border-radius: 5px;
}

.course .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #ffcf88;
}
------*/
/*--------------- Book Appointment -------------- */


/*================= Header End=================*/


/*****************************
    Services Start
******************************/
.services {
  padding: 50px 0;
}

.sub-title {
  text-align: center;
}

.work-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 40px;
  margin-top: 50px;
  
}

.work {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.work img {
  width: 100%;
  border-radius: 10px;
  display: block;
  transition: transform 0.5s;
}

.layer {
  width: 100%;
  height: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), #0D6EFD);
  color: #fff;
  border-radius: 10pox;
  position: absolute;
  left: 0;
  bottom: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 40px;
  text-align: center;
  font-size: 14px;
  transition: height 0.5s;
}

.layer h3 {
  font-weight: 400px;
  margin-bottom: 20px;
}

.layer a {
  margin-top: 20px;
  color: #e35280;
  text-decoration: none;
  font-size: 18px;
  line-height: 60px;
  background: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  text-align: center;
}

.work:hover img {
  transform: scale(1.1);
}

.work:hover .layer {

  height: 100%;
}

/*****************************
    Services End
******************************/


/*****************************
    About Us Start
******************************/

.about-title h1 {
  color: black;
  font-weight: bold;
}


.about-item {
  
  background-color: white;
  padding: 40px 20px 50px;
  margin: 30px 0px 120px;
  
}

.about-item hr {
  width: 46px;
  height: 3px;
  background-color: #5fbff9;
  margin: 0 auto;
  border: none;
  text-align: center;
}

.about-item:hover {
  background-color: #0D6EFD;
}

.about-item:hover i,
.about-item:hover h3,
.about-item:hover p,
.about-item:hover p ul li {
  color: #fff !important;
}

.about-item:hover hr {
  background-color: #fff;
}

.about-item:hover i {
  transform: translateY(-20px);
}

.about-item:hover i,
.about-item:hover h3,
.about-item:hover hr {
  transition: all 400ms ease-in-out;
}


/*****************************
    About Us End
******************************/

/*****************************
    Nurses Start
******************************/
.nurses .work-list {
  display: grid;
  flex-direction: row;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 40px;
  margin-top: 50px;
  
}
.nurses .work-list .card {
  padding-bottom: 20px;
}
.nurses .work {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.nurses .work img {
  width: 100%;
  border-radius: 10px;
  display: block;
  transition: transform 0.5s;
}

.nurses .layer {
  width: 100%;
  height: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), #0D6EFD);
  color: #fff;
  border-radius: 10pox;
  position: absolute;
  left: 0;
  bottom: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 40px;
  text-align: center;
  font-size: 14px;
  transition: height 0.5s;
}

.nurses .layer h3 {
  font-weight: 400px;
  margin-bottom: 20px;
}

.nurses .layer a {
  margin-top: 20px;
  color: #e35280;
  text-decoration: none;
  font-size: 18px;
  line-height: 60px;
  background: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  text-align: center;
}

.nurses .work:hover img {
  transform: scale(1.1);
}

.nurses .work:hover .layer {

  height: 100%;
}

/*****************************
    Nurses End
******************************/

/*****************************
    Footer Start
******************************/
footer {
  background: #212226;
}

footer p {
  color: #fff;
}

/*****************************
    Footer End
******************************/
/*================= Contact Us Start=================*/
.form-row {
  size: 40px;
}
.map-wrapper{
  max-width: 700px;
}
sup {
  color: red;
}
.contactUs{
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 25rem;
}
.contactUs_items{
  background: #fff;
}

/*****************************
    Shop Start
******************************/

.shop .card-img-top{
  border-radius: 50px;
  padding: 20px;
}
.shop .card{
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px;
}
.shop .card-body{
  padding: 25px;
  margin-top: -15px;
}
.shop .btn-primary{
  border-radius: 50px;
  width: 120px;
}
.shop .btn-primary:hover{
  background-color: black;
  border: none;
}
/*****************************
    Shop End
******************************/