* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  overflow-x: hidden;
  background: #f5f5f5;
}

html {
  scroll-behavior: smooth;
}

a.call-us {
    padding: 20px 20px;
    background: #ffffff;
    border: 3px solid limegreen;
    border-radius: 50%;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
a.call-us img {
    z-index: 101;
    height: 30px;
}

header.header {
  background: rgba(0, 0, 0, 0);
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  z-index: 10;
  min-height: 80px;
  padding: 0 60px;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in;
}
@media screen and (max-width: 900px) {
  header.header {
    background: #e9e9df;
    padding: 0 1rem;
  }
}
header.header .header-cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

header.header.header-scrolled {
  background: #e9e9df;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}
header.header.header-scrolled a.header-cta {
  color: #35bd43;
  border-color: #35bd43;
  box-shadow: none;
  text-shadow: none;
}

nav.navbar ul.nav-links {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all ease-in 750ms;
}
@media screen and (max-width: 900px) {
  nav.navbar ul.nav-links {
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    background: #1e1e1e;
    padding: 4rem;
    pointer-events: none;
    z-index: 10;
    clip-path: circle(50px at 90% -20%);
    -webkit-clip-path: circle(50px at 100% -20%);
  }
}
@media screen and (max-width: 900px) {
  nav.navbar ul.nav-links.active {
    display: flex;
    pointer-events: all;
    clip-path: circle(1000px at 90% -10%);
    -webkit-clip-path: circle(1000px at 90% -10%);
  }
}
nav.navbar .nav-link {
  margin: 0 1rem;
  position: relative;
  cursor: pointer;
}
nav.navbar .nav-link a {
  text-decoration: none;
  color: #4e4e4e;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  transition: all ease-in 200ms;
}
nav.navbar .nav-link::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 3px;
  border-radius: 10px;
  background: #35bd43;
  transition: all ease-in-out 200ms;
}
@media screen and (max-width: 900px) {
  nav.navbar .nav-link::after {
    display: none;
  }
}
nav.navbar .nav-link:hover::after {
  width: 90%;
}
nav.navbar .nav-link:hover a {
  color: #35bd43;
}
nav.navbar .nav-link.active::after {
  width: 90%;
}
nav.navbar .nav-link.active a {
  color: #35bd43;
}

a.header-cta {
  text-decoration: none;
  color: #35bd43;
  background: #e9e9df;
  border: 2px solid #35bd43;
  padding: 0.75rem 1.5rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  margin-right: 2rem;
  cursor: pointer;
}
@media screen and (max-width: 1150px) {
  a.header-cta {
    display: none;
  }
}

.hamburger div {
  width: 30px;
  height: 3px;
  background: #1e1e1e;
  margin: 5px;
  transition: all 0.3s ease;
}

.hamburger.toggle div {
  background: #e9e9df;
}

.hamburger {
  display: none;
}
@media screen and (max-width: 900px) {
  .hamburger {
    display: block;
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 50%;
    transform: translate(-5%, -50%);
    z-index: 15;
    transition: all 0.7s ease;
  }
}

.toggle .ham-line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .ham-line2 {
  transition: all 0.7s ease;
  width: 0;
}

.toggle .ham-line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

.logo img {
  height: 40px;
}

main.hero {
  background: #e9e9df;
  height: 100vh;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .hero-container {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9333333333) 70%, hsla(126, 56%, 47%, 0.9)), url("../assets/images/hero-pattern.jpg");
  }
}

.hero-text {
  font-family: "Poppins", sans-serif;
  margin-left: 4rem;
  flex: 1;
}
@media screen and (max-width: 900px) {
  .hero-text {
    text-align: center;
    margin: 0 2rem;
  }
}
.hero-text .hero-image-mobile {
  display: none;
}
@media screen and (max-width: 500px) {
  .hero-text .hero-image-mobile {
    display: block;
    width: 300px;
    margin: 0 auto;
    margin-bottom: 1rem;
  }
}
.hero-text h1.hero-title {
  font-size: 4rem;
  font-weight: 600;
  color: #1e1e1e;
}
@media screen and (max-width: 1150px) {
  .hero-text h1.hero-title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 900px) {
  .hero-text h1.hero-title {
    font-size: 4rem;
  }
}
@media screen and (max-width: 500px) {
  .hero-text h1.hero-title {
    font-size: 2rem;
  }
}
.hero-text h1.hero-title span {
  color: #35bd43;
}
.hero-text p.hero-subtitle {
  font-size: 1.5rem;
  color: #4e4e4e;
  margin-top: 1rem;
}
@media screen and (max-width: 1150px) {
  .hero-text p.hero-subtitle {
    font-size: 1rem;
  }
}
.hero-text .hero-cta {
  margin-top: 2.5rem;
}
@media screen and (max-width: 900px) {
  .hero-text .hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 500px) {
  .hero-text .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
}
.hero-text .hero-cta .hero-cta-btn {
  padding: 1rem 2rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  margin-right: 2rem;
  cursor: pointer;
  text-decoration: none;
}
@media screen and (max-width: 900px) {
  .hero-text .hero-cta .hero-cta-btn {
    margin: 0 1rem;
  }
}
@media screen and (max-width: 1150px) {
  .hero-text .hero-cta .hero-cta-btn {
    font-size: 0.75rem;
    padding: 0.75rem 1.5rem;
  }
}
.hero-text .hero-cta .hero-cta-appointment {
  background: #35bd43;
  color: #fff;
  border: 2px solid #35bd43;
}
.hero-text .hero-cta .hero-cta-learn {
  background: transparent;
  border: 2px solid #35bd43;
  color: #35bd43;
}

.hero-img-cont {
  height: 100%;
  background: #b7e9b7;
  position: relative;
  min-width: 50%;
}
@media screen and (max-width: 900px) {
  .hero-img-cont {
    display: none;
  }
}
.hero-img-cont .hero-img-color {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
          clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
  background: linear-gradient(to bottom, hsla(126, 56%, 47%, 0.9), hsla(126, 56%, 47%, 0.9)), url("../assets/images/hero-pattern.jpg");
}
.hero-img-cont img.hero-image {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 900px) {
  .hero-img-cont img.hero-image {
    display: none;
  }
}

section.about-us {
  width: 100%;
  background: #e9e9df;
  font-family: "Poppins", sans-serif;
}

.about-us-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  padding: 6rem 4rem;
}
@media screen and (max-width: 1000px) {
  .about-us-cont {
    flex-direction: column;
    padding: 5rem 2rem;
  }
}

@media screen and (max-width: 1000px) {
  .about-us-text {
    text-align: center;
  }
}

.about-us-image {
  min-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-us-image img.about-us-img {
  width: 100%;
}

.about-us-title {
  font-size: 2.5rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #1e1e1e;
  margin-bottom: 2rem;
}
.about-us-title span {
  color: #35bd43;
  font-weight: 500;
}

.about-us-desc {
  color: #4e4e4e;
  font-size: 1.2rem;
  margin-bottom: 3rem;
}
.about-us-desc span {
  color: #35bd43;
  text-transform: uppercase;
}
@media screen and (max-width: 800px) {
  .about-us-desc {
    font-size: 1rem;
  }
}

.about-us-cta {
  padding: 0.75rem 1.5rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  color: #35bd43;
  border: 2px solid #35bd43;
  text-decoration: none;
}
@media screen and (max-width: 1000px) {
  .about-us-cta {
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
  }
}

section.services {
  width: 100%;
  padding: 1rem 4rem 1rem;
}
@media screen and (max-width: 800px) {
  section.services {
    padding: 1rem;
  }
}

.services-cont {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4rem;
  margin: 5rem auto;
}
@media screen and (max-width: 1000px) {
  .services-cont {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 20rem;
  padding: 2rem 2.5rem;
  font-family: "Poppins", sans-serif;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  border-top: 5px solid #35bd43;
  border-bottom: 5px solid #35bd43;
}
@media screen and (max-width: 1200px) {
  .service-card {
    padding: 1rem 1.5rem;
    max-width: 18rem;
  }
}
@media screen and (max-width: 1000px) {
  .service-card {
    padding: 2rem 2.5rem;
    max-width: 30rem;
  }
}
@media screen and (max-width: 600px) {
  .service-card {
    padding: 1rem 1.5rem;
    max-width: 20rem;
  }
}
.service-card-img {
  width: 10rem;
}
@media screen and (max-width: 600px) {
  .service-card-img {
    width: 6rem;
  }
}
.service-card-img-cont {
  border-radius: 5px;
  background: #35bd43;
  width: 10rem;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .service-card-img-cont {
    width: 6rem;
    height: 6rem;
  }
}
.service-card-title {
  color: #1e1e1e;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.5rem;
}
.service-card-desc {
  color: #4e4e4e;
  font-size: 0.9rem;
  margin-top: 1rem;
}
.service-card-btn {
  text-decoration: none;
  border: 2px solid #35bd43;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #35bd43;
  padding: 0.25rem 1rem;
  margin-top: 1.5rem;
  cursor: pointer;
}

section.actions {
  width: 100%;
  font-family: "Poppins", sans-serif;
  padding-top: 8rem;
  background: #e9e9df;
}

section.actions.page {
  padding-top: 80px;
}

.action {
  width: 100%;
  background: rgb(52, 14, 21);
  padding: 6rem 4rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 800px) {
  .action {
    padding: 6rem 1rem;
  }
}

.action.page {
  text-align: center;
}

.action-cont .action-title {
  font-size: 2.5rem;
  font-weight: 600;
}
@media screen and (max-width: 800px) {
  .action-cont .action-title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .action-cont .action-title {
    font-size: 1.5rem;
  }
}
.action-cont .action-text {
  font-size: 1.2rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 800px) {
  .action-cont .action-text {
    font-size: 1rem;
  }
}
.action-cont .action-cta {
  color: #35bd43;
  text-decoration: none;
  font-size: 1.2rem;
  border: 1px solid;
  padding: 5px 20px;
  border-radius: 100px;
}
@media screen and (max-width: 800px) {
  .action-cont .action-cta {
    font-size: 1rem;
  }
}

.diagnostics {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../assets/images/diagnostic-banner.jpg");
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
.diagnostics-title {
  color: #e9e9df;
}
.diagnostics-text {
  color: #c9c9c9;
}
.diagnostics-cta {
  border-color: #fff;
}

.treatment {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../assets/images/treatment-banner.jpg");
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: right;
}
.treatment-title {
  color: #e9e9df;
}
.treatment-text {
  color: #c9c9c9;
}
.treatment-cta {
  border-color: #fff;
}

.gercare {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../assets/images/gercare-banner.jpg");
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
.gercare-title {
  color: #e9e9df;
}
.gercare-text {
  color: #c9c9c9;
}
.gercare-cta {
  border-color: #fff;
}

.pain {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../assets/images/pain-banner.jpg");
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
.pain-title {
  color: #e9e9df;
}
.pain-text {
  color: #c9c9c9;
}
.pain-cta {
  border-color: #fff;
}

section.catalogue-list {
  background: #e9e9df;
  margin-bottom: 5rem;
}

.catalogue-list-title {
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  color: #1e1e1e;
  margin-bottom: 2rem;
  margin-left: 4rem;
  margin-right: 4rem;
}
@media screen and (max-width: 800px) {
  .catalogue-list-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .catalogue-list-title {
    font-size: 1.5rem;
  }
}

.catalogue-list-subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
  color: #4e4e4e;
  margin-bottom: 2rem;
  margin-left: 4rem;
  margin-right: 4rem;
}
@media screen and (max-width: 500px) {
  .catalogue-list-subtitle {
    font-size: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-bottom: 1.5rem;
  }
}

.cat-list-cont {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
  padding: 4rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 500px) {
  .cat-list-cont {
    padding: 2rem 0rem;
  }
}

.cat-list-card {
  max-width: 450px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2rem 1rem;
  text-align: center;
}
.cat-list-card-img {
  height: 10rem;
  width: 10rem;
  border-radius: 5px;
  border: 3px solid #35bd43;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 500px) {
  .cat-list-card-img {
    height: 6rem;
    width: 6rem;
  }
}
.cat-list-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 1rem;
}
@media screen and (max-width: 500px) {
  .cat-list-card-title {
    font-size: 1.2rem;
  }
}
.cat-list-card-info {
  color: #4e4e4e;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.cat-list-card-btn {
  text-decoration: none;
  border: 2px solid #35bd43;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #35bd43;
  padding: 0.25rem 1rem;
  cursor: pointer;
  background: transparent;
  justify-self: flex-end;
}
.cat-list-card-btn:hover {
  background: #35bd43;
  color: #e9e9df;
}
@media screen and (max-width: 500px) {
  .cat-list-card-btn {
    margin-bottom: 2rem;
  }
}

section.testimonials {
  background: linear-gradient(to bottom, #e9e9df, hwb(126 21% 10%/0.9), #e9e9df), url("../assets/images/hero-pattern.jpg");
  font-family: "Poppins", sans-serif;
}

.testimonials-title {
  font-size: 2.5rem;
  color: #1e1e1e;
  text-align: center;
  margin-bottom: 2rem;
  padding: 1rem;
}
@media screen and (max-width: 500px) {
  .testimonials-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

.testimonials-subtitle {
  font-size: 1.2rem;
  color: #4e4e4e;
  text-align: center;
  margin-bottom: 3rem;
  padding: 1rem;
}
@media screen and (max-width: 500px) {
  .testimonials-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

.testimonials-card-cont {
  padding: 4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 4rem;
}
@media screen and (max-width: 800px) {
  .testimonials-card-cont {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
  }
}

.testimonials-card {
  background: #e9e9df;
  position: relative;
  text-align: center;
  border: 1px solid hsla(126, 56%, 47%, 0.9);
  border-radius: 5px;
  max-width: 35%;
  min-width: 34%;
  padding: 2rem 2rem 3rem;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.05) 0px 4px 4px, rgba(0, 0, 0, 0.05) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px;
}
@media screen and (max-width: 800px) {
  .testimonials-card {
    max-width: 100%;
    min-width: 99%;
    padding: 1rem 1rem 2rem;
  }
}
.testimonials-card-stars {
  color: #35bd43;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.testimonials-card-text {
  color: #4e4e4e;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.testimonials-card-name {
  color: #1e1e1e;
  font-size: 1.2rem;
  font-weight: 500;
}

.testimonials-card::before {
  content: open-quote;
  font-size: 6rem;
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  position: absolute;
  color: #35bd43;
  top: -2.3rem;
  left: 2rem;
}

.testimonials-card::after {
  content: close-quote;
  font-size: 6rem;
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  position: absolute;
  color: #35bd43;
  bottom: -4.5rem;
  right: 2rem;
}

section.cta {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/images/cta-banner.jpg");
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

.cta-container {
  border: 1px soolid green;
  padding: 4rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
@media screen and (max-width: 750px) {
  .cta-container {
    flex-direction: column;
  }
}
@media screen and (max-width: 500px) {
  .cta-container {
    padding: 4rem 1rem;
  }
}

.cta-title {
  font-size: 2rem;
  font-weight: 600;
  color: #e9e9df;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 950px) {
  .cta-title {
    font-size: 1.5rem;
  }
}

.cta-subtitle {
  font-size: 1.2rem;
  color: #c9c9c9;
}
@media screen and (max-width: 950px) {
  .cta-subtitle {
    font-size: 1rem;
  }
}

button.cta-btn {
  padding: 1rem 2rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 300px;
  margin-right: 2rem;
  cursor: pointer;
  border: 2px solid #fff;
  color: #e9e9df;
  background: transparent;
}
@media screen and (max-width: 950px) {
  button.cta-btn {
    padding: 0.75rem 1.5rem;
  }
}

section.contact-us {
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 600px) {
  section.contact-us {
    flex-direction: column;
    height: auto;
  }
}
section.contact-us .contact-us-text {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../assets/images/contact-us.jpg");
  background-size: cover;
  height: 100%;
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 4rem;
}
@media screen and (max-width: 600px) {
  section.contact-us .contact-us-text {
    height: 50%;
    width: 100%;
  }
}
section.contact-us .contact-us-text-title {
  color: #e9e9df;
  font-size: 5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}
@media screen and (max-width: 1000px) {
  section.contact-us .contact-us-text-title {
    font-size: 3rem;
  }
}
section.contact-us .contact-us-text-subtitle {
  color: #c9c9c9;
  font-size: 1.5rem;
  font-weight: 400;
}
@media screen and (max-width: 1000px) {
  section.contact-us .contact-us-text-subtitle {
    font-size: 1rem;
  }
}
section.contact-us .contact-us-form-section {
  position: relative;
  background: linear-gradient(to bottom, #2f6634, #2f6634), url("../assets/images/hero-pattern.jpg");
  width: 50%;
  height: 100%;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  section.contact-us .contact-us-form-section {
    height: 50%;
    width: 100%;
  }
}
section.contact-us .form-error-cont span.success {
  background: rgb(180, 255, 180);
  color: green;
  padding: 0.5rem 1rem;
  position: absolute;
  font-size: 1rem;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 70%;
}
section.contact-us .form-error-cont span.error {
  background: rgb(255, 180, 180);
  color: red;
  padding: 1rem 1.5rem;
  position: absolute;
  font-size: 1rem;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 70%;
}

form.contact-form {
  background: #e9e9df;
  padding: 4rem 2rem;
  border-radius: 3px;
  min-width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 560px) {
  form.contact-form {
    width: 100%;
  }
}

.form-contact-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
}

.contact-input {
  width: 100%;
  margin-bottom: 2rem;
  border: none;
  color: #1e1e1e;
  border: 1px solid #35bd43;
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
  font-family: "Poppins", sans-serif;
}
.contact-input:focus {
  outline: 2px solid #35bd43;
}

label {
  color: #4e4e4e;
  margin-left: 5px;
}

.radio-btn-cont {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.radio-btn-cont input[type=radio] {
  width: 1.2rem;
  height: 1.2rem;
}

#contact-form-message {
  height: 5rem;
  line-height: 150%;
  resize: vertical;
}

.contact-form-submit {
  width: 100%;
  padding: 0.8rem 1.5rem;
  border: none;
  color: #e9e9df;
  background: #35bd43;
  border-radius: 3px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  border-radius: 5px;
}

section.page-about-us-about-us {
  width: 100%;
  background: #e9e9df;
  font-family: "Poppins", sans-serif;
  position: relative;
}

.page-about-us-about-us-rect {
  background: linear-gradient(to bottom, hsla(126, 56%, 47%, 0.9), hsla(126, 56%, 47%, 0.9)), url("../assets/images/hero-pattern.jpg");
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 75%;
  z-index: 0;
}

.page-about-us-about-us-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  padding: 8rem 4rem 6rem;
  position: inherit;
  z-index: 5;
}
@media screen and (max-width: 800px) {
  .page-about-us-about-us-cont {
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .page-about-us-about-us-cont {
    padding: 6rem 1rem 6rem;
  }
}

.page-about-us-about-us-image {
  min-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-about-us-about-us-image img.page-about-us-about-us-img {
  width: 100%;
}

.page-about-us-about-us-title {
  font-size: 2.5rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #1e1e1e;
  margin-bottom: 2rem;
}
@media screen and (max-width: 500px) {
  .page-about-us-about-us-title {
    font-size: 2rem;
  }
}
.page-about-us-about-us-title span {
  color: #35bd43;
  font-weight: 500;
}

.page-about-us-about-us-desc {
  color: #4e4e4e;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  background: #fff;
  padding: 0.5rem;
  padding-left: 0;
}
@media screen and (max-width: 600px) {
  .page-about-us-about-us-desc {
    font-size: 1rem;
  }
}
.page-about-us-about-us-desc span {
  color: #35bd43;
  text-transform: uppercase;
}

section.page-about-us-our-consultant {
  width: 100%;
  background: #e9e9df;
  font-family: "Poppins", sans-serif;
  position: relative;
}

.page-about-us-our-consultant-rect {
  background: linear-gradient(to bottom, hsla(126, 56%, 47%, 0.9), hsla(126, 56%, 47%, 0.9)), url("../assets/images/hero-pattern.jpg");
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 75%;
  z-index: 0;
}

section.page-about-us-our-consultant2 {
  width: 100%;
  background: #e9e9df;
  font-family: "Poppins", sans-serif;
  position: relative;
}
section.page-about-us-our-consultant2 .page-about-us-our-consultant-cont {
  padding: 6rem 4rem 6rem;
}
@media screen and (max-width: 600px) {
  section.page-about-us-our-consultant2 .page-about-us-our-consultant-cont {
    padding: 4rem 1rem 4rem;
  }
}
section.page-about-us-our-consultant2 .page-about-us-our-consultant-rect {
  background: linear-gradient(to bottom, hsla(126, 56%, 47%, 0.9), hsla(126, 56%, 47%, 0.9)), url("../assets/images/hero-pattern.jpg");
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 75%;
  z-index: 0;
}
section.page-about-us-our-consultant2 .page-about-us-our-consultant-desc {
  background: #e9e9df;
  padding: 4rem 2rem;
}
@media screen and (max-width: 600px) {
  section.page-about-us-our-consultant2 .page-about-us-our-consultant-desc {
    padding: 0;
  }
}

.page-about-us-our-consultant-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  padding: 8rem 4rem 1rem;
  position: inherit;
  z-index: 5;
}
@media screen and (max-width: 800px) {
  .page-about-us-our-consultant-cont {
    flex-direction: column;
    padding: 6rem 1rem 1rem;
  }
}
@media screen and (max-width: 600px) {
  .page-about-us-our-consultant-cont {
    padding: 6rem 1rem 1rem;
  }
}

.page-about-us-our-consultant-image {
  min-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-about-us-our-consultant-image img.page-about-us-our-consultant-img {
  width: 100%;
}

.page-about-us-our-consultant-text {
  background: #fff;
  padding: 0.5rem;
}

.page-about-us-our-consultant-title {
  font-size: 2.5rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #1e1e1e;
  margin-bottom: 2rem;
}
@media screen and (max-width: 600px) {
  .page-about-us-our-consultant-title {
    font-size: 2rem;
  }
}
.page-about-us-our-consultant-title span {
  color: #35bd43;
  font-weight: 500;
}

.page-about-us-our-consultant-subtitle {
  color: #4e4e4e;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 600px) {
  .page-about-us-our-consultant-subtitle {
    font-size: 1.2rem;
  }
}
.page-about-us-our-consultant-subtitle span {
  color: #35bd43;
  text-transform: uppercase;
  font-weight: 500;
}

.page-about-us-our-consultant-desc {
  color: #4e4e4e;
  font-size: 1.2rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 600px) {
  .page-about-us-our-consultant-desc {
    font-size: 1rem;
  }
}
.page-about-us-our-consultant-desc span {
  color: #35bd43;
}

section.page-about-us-our-vision {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to bottom, rgba(30, 30, 30, 0.9), rgba(30, 30, 30, 0.9)), url("../assets/images/hero-pattern.jpg");
}
section.page-about-us-our-vision .page-about-us-our-vision-cont {
  padding: 8rem 4rem 6rem;
  color: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
@media screen and (max-width: 600px) {
  section.page-about-us-our-vision .page-about-us-our-vision-cont {
    padding: 5rem 1rem;
  }
}
section.page-about-us-our-vision .page-about-us-our-vision-title {
  font-size: 2.5rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #e9e9df;
  margin-bottom: 2rem;
}
@media screen and (max-width: 600px) {
  section.page-about-us-our-vision .page-about-us-our-vision-title {
    font-size: 2rem;
  }
}
section.page-about-us-our-vision .page-about-us-our-vision-title span {
  color: #35bd43;
  font-weight: 500;
}
section.page-about-us-our-vision .page-about-us-our-vision-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  color: #c9c9c9;
  margin-bottom: 4rem;
}
@media screen and (max-width: 600px) {
  section.page-about-us-our-vision .page-about-us-our-vision-subtitle {
    font-size: 1.2rem;
  }
}
section.page-about-us-our-vision .page-about-us-our-vision-subtitle span {
  color: #35bd43;
  font-weight: 400;
}
section.page-about-us-our-vision .page-about-us-our-vision-subtitle2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #e9e9df;
  text-transform: uppercase;
}
@media screen and (max-width: 600px) {
  section.page-about-us-our-vision .page-about-us-our-vision-subtitle2 {
    font-size: 1.2rem;
  }
}
section.page-about-us-our-vision ul.our-vision-list {
  list-style-type: none;
}
section.page-about-us-our-vision ul.our-vision-list li {
  font-size: 1.1rem;
  color: #c9c9c9;
  font-weight: 300;
  margin-bottom: 1rem;
}
@media screen and (max-width: 600px) {
  section.page-about-us-our-vision ul.our-vision-list li {
    font-size: 1rem;
  }
}

section.our-team {
  min-height: 20rem;
}

section.geriatric-care-page-main {
  font-family: "Poppins", sans-serif;
  padding: 0 4rem 6rem;
}
@media screen and (max-width: 600px) {
  section.geriatric-care-page-main {
    padding: 0 1rem 5rem;
  }
}

.geriatric-care-title {
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  color: #1e1e1e;
  margin-bottom: 2rem;
  margin-left: 4rem;
  margin-right: 4rem;
}
@media screen and (max-width: 600px) {
  .geriatric-care-title {
    margin-left: 2rem;
    margin-right: 2rem;
    font-size: 2rem;
  }
}

.geriatric-care-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  color: #4e4e4e;
  margin-bottom: 3.5rem;
  margin-left: 4rem;
  margin-right: 4rem;
}
@media screen and (max-width: 600px) {
  .geriatric-care-subtitle {
    margin-left: 0rem;
    margin-right: 0rem;
    font-size: 1.2rem;
  }
}

.geriatric-care-main-info {
  font-size: 1.2rem;
  font-weight: 400;
  text-align: left;
  color: #4e4e4e;
}
@media screen and (max-width: 600px) {
  .geriatric-care-main-info {
    font-size: 1rem;
  }
}

.geriatric-services {
  font-family: "Poppins", sans-serif;
  padding: 0 4rem 5rem;
}
@media screen and (max-width: 600px) {
  .geriatric-services {
    padding: 0 1rem 3rem;
  }
}

.geriatric-services-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: #1e1e1e;
  margin-bottom: 3rem;
}
@media screen and (max-width: 600px) {
  .geriatric-services-title {
    font-size: 1.2rem;
  }
}

.geriatric-services-cont {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
@media screen and (max-width: 800px) {
  .geriatric-services-cont {
    flex-direction: column;
  }
}

img.geriatric-services-img {
  width: 60%;
}
@media screen and (max-width: 800px) {
  img.geriatric-services-img {
    width: 100%;
  }
}

.geriatric-services-list ul {
  list-style-type: none;
}

li.geriatric-services-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
li.geriatric-services-list-item img {
  height: 2rem;
  margin-right: 0.5rem;
}
@media screen and (max-width: 600px) {
  li.geriatric-services-list-item img {
    height: 1.5rem;
  }
}
li.geriatric-services-list-item p {
  color: #4e4e4e;
  font-size: 1.2rem;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  li.geriatric-services-list-item p {
    font-size: 1rem;
  }
}

.contact-space {
  background: #e9e9df;
  width: 100%;
  height: 80px;
}

section.contact-main {
  font-family: "Poppins", sans-serif;
  padding: 6rem 4rem;
}
@media screen and (max-width: 600px) {
  section.contact-main {
    padding: 4rem 1rem;
  }
}

p.contact-main-title {
  font-size: 2rem;
  color: #1e1e1e;
  font-weight: 400;
  margin-bottom: 4rem;
}
@media screen and (max-width: 800px) {
  p.contact-main-title {
    font-size: 1.5rem;
    margin-bottom: 2em;
  }
}
@media screen and (max-width: 600px) {
  p.contact-main-title {
    font-size: 1.2rem;
  }
}

.contact-main-doctor {
  font-size: 1.5rem;
  color: #4e4e4e;
  margin-bottom: 2rem;
}
@media screen and (max-width: 800px) {
  .contact-main-doctor {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 600px) {
  .contact-main-doctor {
    font-size: 1rem;
  }
}

.contact-map {
  margin-top: 6rem;
}
@media screen and (max-width: 600px) {
  .contact-map {
    margin-top: 4rem;
  }
}
.contact-map iframe {
  width: 100%;
}

.contact-main-address, .contact-main-telephone,
.contact-main-mobile, .contact-main-email {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.contact-main-address img, .contact-main-telephone img,
.contact-main-mobile img, .contact-main-email img {
  height: 1.5rem;
  width: 1.5rem;
  margin-top: 0.4rem;
  margin-right: 1rem;
}
@media screen and (max-width: 600px) {
  .contact-main-address img, .contact-main-telephone img,
  .contact-main-mobile img, .contact-main-email img {
    height: 1rem;
    width: 1rem;
  }
}
.contact-main-address a, .contact-main-address p, .contact-main-telephone a, .contact-main-telephone p,
.contact-main-mobile a,
.contact-main-mobile p, .contact-main-email a, .contact-main-email p {
  font-size: 1.2rem;
  color: #4e4e4e;
  text-decoration: none;
}
@media screen and (max-width: 600px) {
  .contact-main-address a, .contact-main-address p, .contact-main-telephone a, .contact-main-telephone p,
  .contact-main-mobile a,
  .contact-main-mobile p, .contact-main-email a, .contact-main-email p {
    font-size: 1rem;
  }
}

section.t-page-main {
  background: #e9e9df;
  margin-top: 80px;
  font-family: "Poppins", sans-serif;
  padding: 2rem 4rem 6rem;
}
@media screen and (max-width: 600px) {
  section.t-page-main {
    padding: 2rem 1rem 4rem;
  }
}
section.t-page-main .t-page-main-title {
  font-size: 3rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #1e1e1e;
  margin-bottom: 2rem;
}
@media screen and (max-width: 600px) {
  section.t-page-main .t-page-main-title {
    font-size: 2rem;
  }
}
section.t-page-main .t-page-main-img {
  max-width: 80%;
  margin-bottom: 4rem;
}
@media screen and (max-width: 600px) {
  section.t-page-main .t-page-main-img {
    max-width: 100%;
  }
}

.t-page-cont {
  margin-bottom: 4rem;
}
.t-page-cont .t-page-title {
  color: #1e1e1e;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media screen and (max-width: 600px) {
  .t-page-cont .t-page-title {
    font-size: 1.5rem;
  }
}
.t-page-cont .t-page-info {
  color: #4e4e4e;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 600px) {
  .t-page-cont .t-page-info {
    font-size: 1rem;
  }
}
.t-page-cont a.t-page-link {
  color: #35bd43;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .t-page-cont a.t-page-link {
    font-size: 1rem;
  }
}
.t-page-cont ul.t-page-list {
  list-style-type: none;
  margin-bottom: 1.5rem;
}
.t-page-cont ul.t-page-list li.t-page-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.t-page-cont ul.t-page-list li.t-page-list-item p {
  color: #4e4e4e;
  font-size: 1.2rem;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .t-page-cont ul.t-page-list li.t-page-list-item p {
    font-size: 1rem;
  }
}
.t-page-cont ul.t-page-list li.t-page-list-item img {
  height: 1.5rem;
  margin-right: 0.5rem;
}
@media screen and (max-width: 600px) {
  .t-page-cont ul.t-page-list li.t-page-list-item img {
    height: 1.2rem;
  }
}

.t-page-subtitle {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 2rem;
}
@media screen and (max-width: 600px) {
  .t-page-subtitle {
    font-size: 2rem;
  }
}

a.t-page-main-cta {
  text-decoration: none;
  color: #e9e9df;
  background: #35bd43;
  border: none;
  padding: 0.75rem 1.5rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  margin-right: 2rem;
  cursor: pointer;
}

footer.footer {
  min-height: 30rem;
  background: #1e1e1e;
  font-family: "Poppins", sans-serif;
}

.footer-cont {
  padding: 6rem 4rem;
}
@media screen and (max-width: 600px) {
  .footer-cont {
    padding: 4rem 1rem;
  }
}

.footer-logo {
  margin-bottom: 2rem;
}

.footer-title {
  color: #35bd43;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.footer-doctor {
  color: #e9e9df;
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.footer-icon {
  width: 1.3rem;
  height: 1.3rem;
  margin-top: 4px;
  margin-right: 0.5rem;
}

.footer-address, .footer-telephone, .footer-mobile, .footer-email {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: #e9e9df;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.footer-social {
  height: 1.8rem;
}

.footer-line {
  background: #4e4e4e;
  width: 80vw;
  height: 1px;
  margin: 3rem auto;
}

.footer-copyright {
  background-color: #fff;
  padding: 0.3rem;
}
.footer-copyright p {
  font-size: 0.8rem;
  text-align: center;
}/*# sourceMappingURL=style.css.map */