@import "../components/hero.css";
@import "../components/cta.css";
@import "../components/techniques-expertise.css";
@import "../components/contact-us.css";
@import "../components/testimonials.css";
@import "../components/news-articles.css";
/* Section Improving your health
========================================================================== */
.section-improving-health {
  padding: 5rem 0;
}
.section-improving-health .left {
  position: relative;
}
.section-improving-health .we-cover {
  position: absolute;
  background-color: var(--secondary);
  color: var(--white);
  padding: 1rem;
  border-radius: 7px;
  left: 5rem;
  bottom: 4rem;
}
.section-improving-health .we-cover span {
  display: block;
  text-align: center;
  font-size: 3.75rem;
  font-weight: 700;
}
.section-improving-health .we-cover  {
  display: block;
  text-align: center;
}
.section-improving-health .right img {
  margin-top: 2rem;
}
/* Section Our services
========================================================================== */
.section-our-services {
  padding: 5rem 0;
  background-image: linear-gradient(#f5f9fd, #f5f9fd);
}
.section-our-services.group {
  background-image: linear-gradient(#f5f9fd, #ffffff);
}
.section-our-services .title {
  text-align: center;
}
.section-our-services .services {
  margin-top: 3rem;
  margin-bottom: 2rem;
  grid-gap: 3rem;
}
.section-our-services .services:last-child {
  margin-bottom: 0;
}
.section-our-services .learn-more {
  font-weight: 700;
  margin-top: 1rem;
  display: inline-block;
  transition: 0.3s ease-in-out all;
}
.section-our-services .learn-more:hover {
     transform: translateY(-5px);
     transition: 0.3s ease-in-out all;
   }
.section-our-services .service-heading {
  font-size: 1.875rem;
}
.section-our-services h3 {
  font-size: 1.5rem;
  margin-top: 3rem;
}
.section-our-services .card {
  position: relative;
  background-color: var(--white);
  padding: 1rem;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 10px rgb(0 0 0 / 9%);
  color: var(--primary);
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 2s;
}
.section-our-services .card .icon {
  width: 5rem;
  height: 5rem;
  background-color: var(--white);
  background-size: 40%;
  border-radius: 50%;
  border: 2px solid #e7ebf4;
  position: absolute;
  top: -2.5rem;
  left: 40%;
}
.section-our-services .card:hover {
  background-color: var(--primary);
  color: var(--white);
}
.section-our-services .card:hover h3 {
  color: var(--white);
}
/* Section Meet our team
========================================================================== */
.section-meet-our-team {
  padding: 5rem 0;
}
.section-meet-our-team .grid {
  align-items: center;
}
/* Media CSS 
========================================================================== */
@media(min-width: 768px) {
  .section-our-services .services {
    margin-bottom: 10rem;
  }
}