/* Added fallbacks to help with CLS, feel free to remove if it doesn't help on your project */
/* Colours */
/* Fluid heading sizes - set your min/max sizes and you're done! */
/* Some device sizes to use with min-width */
/* adjusted breakpoints for above */
/* 100% widths look better than "Snapping" IMO */
/* Utility */
/* Additional Spacers -- don't think you'll need more than 7, but if you do -- maybe just use a custom class  :)  */
/* Added fallbacks to help with CLS, feel free to remove if it doesn't help on your project */
/* Colours */
/* Fluid heading sizes - set your min/max sizes and you're done! */
/* Some device sizes to use with min-width */
/* adjusted breakpoints for above */
/* 100% widths look better than "Snapping" IMO */
/* Utility */
/* Additional Spacers -- don't think you'll need more than 7, but if you do -- maybe just use a custom class  :)  */
#hero {
  display: flex;
  align-items: center;
  min-height: 725px;
  padding-top: 128px;
  padding-bottom: 3em;
}
#hero h1, #hero h2, #hero h3, #hero h4, #hero h5, #hero h6, #hero p, #hero a {
  color: #FFFFFF;
}
#hero h1 {
  text-transform: capitalize;
}
#hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  background: linear-gradient(0deg, rgba(25, 51, 72, 0.6) 0%, rgba(25, 51, 72, 0.6) 100%);
}
#hero .container {
  position: relative;
  z-index: 1;
}
#hero picture.main-image {
  max-width: 100% !important;
  max-height: 100% !important;
  width: 100% !important;
  height: 100% !important;
  z-index: -1;
  top: 0;
}
#hero picture.main-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  min-height: 725px;
  object-position: top;
}
#hero .new-patients {
  font-weight: 600;
  line-height: normal;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
#hero .container-buttons {
  flex-direction: column;
}
#hero .rank-math-breadcrumb {
  position: absolute;
  bottom: 2em;
  right: 4em;
}
#hero .rank-math-breadcrumb a {
  border-bottom: 1px solid #FFFFFF;
}
@media screen and (min-width: 420px) {
  #hero .container-buttons {
    flex-direction: row;
  }
}
@media screen and (min-width: 1025px) {
  #hero {
    min-height: 100vh;
    padding-top: unset;
    padding-bottom: unset;
    padding-top: 112px;
  }
  #hero h1 {
    padding-right: 40px;
  }
  #hero .main-content p {
    max-width: 692px;
  }
  #hero picture.main-image img {
    min-height: 100vh;
    object-position: center;
  }
  #hero::before {
    display: none;
  }
  #hero p.p-large {
    max-width: 692px;
  }
}

.testimonial-item {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
}
.testimonial-item h2, .testimonial-item h3, .testimonial-item h4, .testimonial-item h5, .testimonial-item h6, .testimonial-item p {
  color: #091722;
}
.testimonial-item .author {
  margin-bottom: 12px;
}
.testimonial-item .container-stars {
  gap: 6px;
  margin-bottom: 12px;
}

.testimonial-text {
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.testimonial-text.is-collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more-link {
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-weight: 600;
  color: #091722;
  text-decoration: none;
  width: fit-content;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.read-more-link:hover {
  text-decoration: none;
}
.read-more-link i {
  color: #9ac2de;
  transition: transform 0.2s ease;
  font-size: 11px;
  margin-left: 5px;
}
.read-more-link.is-open i {
  transform: rotate(180deg);
}

body {
  background: #F6F6F6;
}

/*Reviews*/
#reviews {
  margin-top: 4em;
  margin-bottom: 4em;
}
#reviews p.h6 {
  text-transform: uppercase;
  color: #B9A77B;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 2.4px;
}
#reviews .main-container-top {
  max-width: 1088px;
  margin-left: auto;
  margin-right: auto;
}
#reviews h3 {
  margin-bottom: 5px;
  margin-top: 1em;
}
#reviews .container-row {
  margin-bottom: 24px;
}
@media screen and (min-width: 1025px) {
  #reviews {
    margin-top: 7em;
    margin-bottom: 7em;
  }
}