@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --white-color: #ffffff;
  --primary-color: #247cff;
  --section-bg-color: #f9f9f9;
  --dark-color: #000000;
  --title-color: #565758;
  --p-color: #717275;
  --border-color: #eaeaea;
  --transition: 0.5s;
}

html {
  scroll-behavior: smooth;
}
::-webkit-scrollbar {
  background-color: var(--section-bg-color);
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 8px;
}

ul li {
  list-style: none;
}
a {
  text-decoration: none;
}

body {
  background-color: var(--white-color);
  font-family: "Noto Sans", sans-serif;
  scroll-behavior: smooth;
  /* height: 50000px; */
}

/* start nav */
nav.navbar {
  background-color: var(--section-bg-color);
  box-shadow: 0 0 20px 3px #929292;
}

nav .container > a {
  display: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.nav-link:focus,
.nav-link:hover {
  color: var(--primary-color);
}
@media (max-width: 992px) {
  nav ul > a {
    display: none;
  }
  nav .container > a {
    display: block;
  }
  .navbar-collapse {
    position: absolute;
    background-color: var(--section-bg-color);
    width: 100%;
    top: 75px;
    right: 0;
    clip-path: circle(0% at 50% 0);
    transition: 0.5s;
    z-index: 1000;
  }
}
.navbar-collapse.show {
  clip-path: circle(99.7% at 50% 0);
}
/* end nav */

/* start home */
/* .home .home-slieder{
  height: 100vh;
} */

.home .home-slieder .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home .info-box {
  position: absolute;
  width: 50%;
  background-color: var(--white-color);
  bottom: 0;
  z-index: 100;
  right: 12px;
  display: flex;
  padding: 50px;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 992px) {
  .home .info-box {
    position: relative;
    width: 100%;
    align-items: start;
    padding: 20px;
  }
}
#home .info-box .head {
  height: 50px;
}
#home .info-box h1 {
  width: 100%;
  position: relative;
  margin: 20px 0;
}
#home .info-box h1 span {
  margin-left: 10px;
  position: absolute;
  animation: fullDown 4s linear infinite;
}

/* end home */
/* start about */
.about .text-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about .text-box .text {
  width: 50%;
}
@media (max-width: 992px) {
  .about .text-box .text {
    width: 100%;
  }
  .about .text-box {
    flex-direction: column;
  }
}
.about .num .data-box {
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  border: 1px solid #eee;
  box-shadow: -20px 18px 20px 10px #eee, inset -4px 6px 20px 4px #eee;
}
@media (max-width: 992px) {
  .about .num .data-box {
    margin-top: 30px;
    width: 300px;
    height: 300px;
  }
}

.about .num .data-box h1 {
  font-size: 8rem;
  color: var(--primary-color);
  font-weight: bold;
}
.about .num .data-box h1 span {
  font-size: 20px;
  color: var(--p-color);
}
.about .num .data-box p {
  font-size: 20px;
  color: var(--p-color);
  font-weight: bold;
}
/* end about */
/*start  Our Timeline  */
.our-timeline .box {
  margin-bottom: 20px;
}
.our-timeline .box .icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--white-color);
  box-shadow: inset -3px 4px 6px 1px #eee, inset 1px -8px 6px 1px #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 10px;
  position: relative;
}
.our-timeline .box:not(:last-child) .icon:before {
  content: "";
  position: absolute;
  width: 1px;
  top: 80px;
  left: 50%;
  height: 260px;
  background-color: var(--title-color);
}
.our-timeline .box .icon i {
  color: var(--primary-color);
}

.our-timeline .box .text {
  width: 40%;
  box-shadow: -4px 7px 6px 1px #eee, inset -4px 10px 6px 1px #eee;
}
.our-timeline .box .text p {
  color: var(--p-color);
}
.our-timeline .box .date {
  width: 40%;
}
@media (max-width: 992px) {
  .our-timeline .box .text {
    width: 80%;
  }
  .our-timeline .box .date {
    display: none;
  }
}
/*end  Our Timeline  */
/*start  Our  Patients  */

.carousel .carousel-item .avatar img {
  width: 100px;
}
/*end  Our  Patients */

/*start  booking  */
.booking .container form div input {
  height: 60px;
  font-size: 20px;
}
.booking .container .btn {
  transition: 0.5s;
}
.booking .container .btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
/*end  booking */
/*start  footer */
.footer {
  background-color: var(--section-bg-color);
}
.footer .contact-box .box .social i {
  transition: 0.3s;
}
.footer .contact-box .box .social i:hover {
  color: var(--primary-color);
}
/*end  footer */

/* animation start */
@keyframes fullDown {
  0% {
    transform: translateY(5px);
    opacity: 0;
  }
  20% {
    transform: translateY(5px);
    opacity: 0;
  }

  40% {
    transform: translateY(0);
    opacity: 1;
  }

  60% {
    transform: translateY(0);
    opacity: 1;
  }

  80% {
    transform: translateY(5px);
    opacity: 0;
  }

  100% {
    transform: translateY(5px);
    opacity: 0;
  }
}
/* animation end */
