:root {
  --blue: #3f8cba;
  --ink: #084454;
  --text: #676a75;
  --pale: #e4f3fd;
  --max: 1160px;
  --font: Geneva, Verdana, "Lucida Sans", "Lucida Sans Unicode", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text);
  font: 16px/1.44 var(--font);
}
main p a:not(.button),
main li a:not(.button) {
  color: var(--blue);
  font-weight: 700;
}
.content {
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
}
.site-header {
  position: relative;
  z-index: 20;
  background: #fff;
}
.header-inner {
  display: flex;
  width: min(calc(100% - 48px), 1280px);
  min-height: 130px;
  margin: auto;
  align-items: center;
  justify-content: space-between;
}
.brand img {
  display: block;
  width: 250px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}
.main-nav a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.25;
}
.main-nav a:hover {
  color: var(--blue);
}
.main-nav .nav-cta,
.button {
  display: inline-block;
  border: 1px solid var(--blue);
  border-radius: 999px;
  padding: 10px 22px;
  color: var(--blue);
  font-size: 14px;
  text-decoration: none;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 10px;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 32px;
  height: 4px;
  margin: 5px;
  background: #111;
  border-radius: 2px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.hero {
  display: flex;
  min-height: 560px;
  align-items: flex-end;
  background: url("../images/istock-460485379-u11032-fr.jpg") center/cover
    no-repeat;
}
.hero-content {
  padding-bottom: 65px;
}
.hero h1 {
  margin: 0;
  color: #fff;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
}
.section {
  padding: 100px 0;
}
.section-light {
  position: relative;
  overflow: hidden;
  background: #f6f6f6;
}
.section-light::before {
  position: absolute;
  right: 0;
  bottom: -8%;
  width: min(48vw, 680px);
  height: 92%;
  content: "";
  opacity: 0.1;
  background: url("../images/schlingen.svg") right bottom/contain no-repeat;
  pointer-events: none;
}
.section-light > .content {
  position: relative;
  z-index: 1;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 80px;
}
.eyebrow {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 16px;
  line-height: 1.125;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
}
.body-copy p,
.intro-copy p {
  margin: 0 0 26px;
}
.team-section {
  padding-bottom: 0;
  background: var(--pale);
}
.intro-copy {
  max-width: 920px;
  margin: 50px 0 70px;
}
.team-list {
  border-top: 1px solid rgba(255, 255, 255, 0.75);
}
.doctor {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--ink);
  text-decoration: none;
  transition: 0.2s;
}
.doctor-inner {
  display: grid;
  width: min(calc(100% - 48px), var(--max));
  min-height: 150px;
  margin: auto;
  grid-template-columns: 105px 1fr auto;
  align-items: center;
  gap: 28px;
}
.doctor img {
  width: 96px;
  height: 96px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}
.doctor strong,
.doctor small {
  display: block;
}
.doctor strong {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3;
}
.doctor small {
  color: #6f7174;
  font-size: 16px;
  line-height: 1.45;
}
.doctor em {
  color: var(--blue);
  font-size: 16px;
  font-style: normal;
}
.doctor:hover {
  color: #fff;
  background: var(--blue);
}
.doctor:hover small,
.doctor:hover em {
  color: #fff;
}
.services {
  color: #555;
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
    url("../images/thumb_dsc_0832_1024-u33628-fr.png") center/cover;
}
.services .button {
  margin-top: 40px;
}
.site-footer {
  padding: 35px 0;
  background: #fff;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
  line-height: 16px;
}
.site-footer a {
  color: var(--blue);
}
.back-top {
  display: grid;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  place-items: center;
  color: #fff !important;
  background: var(--blue);
  text-decoration: none;
  font-size: 12px;
}
@media (max-width: 900px) {
  .header-inner {
    min-height: 110px;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 25px 24px;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .hero {
    min-height: 480px;
  }
  .section {
    padding: 72px 0;
  }
  .doctor-inner {
    grid-template-columns: 88px 1fr;
    min-height: 132px;
  }
  .doctor img {
    width: 80px;
    height: 80px;
  }
  .doctor em {
    display: none;
  }
}
@media (max-width: 560px) {
  body {
    font-size: 15px;
    line-height: 22px;
  }
  .content,
  .header-inner,
  .doctor-inner {
    width: min(calc(100% - 36px), var(--max));
  }
  .header-inner {
    min-height: 96px;
  }
  .brand img {
    width: 210px;
  }
  .hero {
    min-height: 390px;
    background-image: url("../images/istock-460485379-u33627-fr.jpg");
  }
  .hero-content {
    padding-bottom: 38px;
  }
  .hero h1 {
    font-size: 25px;
    line-height: 33px;
  }
  .section {
    padding: 58px 0;
  }
  .section h2 {
    font-size: 25px;
    line-height: 33px;
  }
  .eyebrow {
    font-size: 15px;
    line-height: 17px;
  }
  .intro-copy {
    margin: 38px 0 50px;
  }
  .doctor-inner {
    grid-template-columns: 68px 1fr;
    gap: 16px;
    min-height: 108px;
  }
  .doctor img {
    width: 64px;
    height: 64px;
  }
  .doctor strong {
    font-size: 20px;
    line-height: 26px;
  }
  .doctor small {
    font-size: 14px;
    line-height: 20px;
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .back-top {
    align-self: flex-end;
  }
}
@media (max-width: 380px) {
  .doctor-inner {
    grid-template-columns: 1fr;
  }
  .doctor img {
    display: none;
  }
  .doctor-inner {
    padding: 20px 0;
  }
  .brand img {
    width: 185px;
  }
}
/* Original AP Medical text and button colors. */
body,
.services {
  color: #717171;
}
.main-nav a {
  color: #717171;
}
.main-nav .nav-cta,
.button {
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}
.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible,
.button:hover,
.button:focus-visible {
  border-color: #3f8cba;
  color: #fff;
  background: #3f8cba;
  text-decoration: none;
}
.service-actions {
  display: flex;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 14px;
}
.services .service-actions .button {
  margin-top: 0;
}
.section h2 {
  color: #717171;
}
.hero {
  background-position: left bottom;
}
.hero h1 {
  margin-left: 120px;
}
@media (max-width: 900px) {
  .hero h1 {
    margin-left: 55px;
  }
}
@media (max-width: 560px) {
  .hero {
    background-position: left bottom;
  }
  .hero h1 {
    max-width: 300px;
    margin-left: 36px;
  }
}
.services {
  min-height: 860px;
  background-image: url("../images/thumb_dsc_0832_1024-u33628-fr.png");
  background-position: center;
  background-size: cover;
}
.footer-inner {
  justify-content: space-between;
}
.facebook-link {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid #3f8cba;
  border-radius: 50%;
  place-items: center;
  transition: 0.25s;
}
.facebook-link svg {
  width: 24px;
  height: 24px;
  fill: #3f8cba;
}
.facebook-link:hover,
.facebook-link:focus-visible {
  background: #3f8cba;
}
.facebook-link:hover svg,
.facebook-link:focus-visible svg {
  fill: #fff;
}
.back-top {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  margin: 0;
  opacity: 0.78;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.back-top:hover,
.back-top:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}
@media (max-width: 560px) {
  .services {
    min-height: 940px;
  }
  .footer-inner {
    width: min(calc(100% - 80px), var(--max));
    flex-direction: row;
    align-items: center;
  }
  .back-top {
    right: 14px;
    bottom: 14px;
  }
}
.main-nav {
  gap: 20px;
}
.main-nav a {
  font-size: 16px;
  font-weight: 600;
}
.main-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.main-nav .nav-cta::after {
  display: block;
  width: 18px;
  height: 20px;
  content: "";
  background: url("../images/t_b.gif") center/contain no-repeat;
}
.main-nav .nav-cta:hover::after,
.main-nav .nav-cta:focus-visible::after {
  background-image: url("../images/t_w.gif");
}
@media (max-width: 1100px) and (min-width: 901px) {
  .main-nav {
    gap: 12px;
  }
  .main-nav a {
    font-size: 14px;
  }
  .main-nav .nav-cta {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.team-section {
  padding-bottom: 100px;
}
@media (max-width: 900px) {
  .team-section {
    padding-bottom: 72px;
  }
}
@media (max-width: 560px) {
  .team-section {
    padding-bottom: 58px;
  }
}
.hero-content {
  margin: 0 auto;
  padding-bottom: 60px;
}
@media (max-width: 900px) {
  .hero-content {
    padding-bottom: 50px;
  }
}
@media (max-width: 560px) {
  .hero-content {
    padding-bottom: 38px;
  }
}
.hours-block {
  margin-top: 34px;
}
.hours-block h3 {
  margin: 0 0 10px;
  color: #717171;
  font-size: 16px;
  font-weight: 700;
}
.hours {
  width: min(100%, 440px);
  margin: 0;
}
.hours > div {
  display: grid;
  padding: 8px 0;
  border-bottom: 1px solid rgba(113, 113, 113, 0.24);
  grid-template-columns: 130px 1fr;
  gap: 18px;
}
.hours dt {
  font-weight: 600;
}
.hours dd {
  margin: 0;
}
@media (max-width: 560px) {
  .hours > div {
    grid-template-columns: 105px 1fr;
    gap: 12px;
  }
}
.hours-block {
  width: min(100%, 500px);
  padding: 22px 24px;
  border-left: 4px solid #3f8cba;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.hours-block + .hours-block {
  margin-top: 22px;
  border-left-color: #717171;
  background: rgba(228, 243, 253, 0.9);
}
.hours-block h3 {
  margin-bottom: 14px;
  font-size: 17px;
  letter-spacing: 0.02em;
}
.hours-block + .hours-block h3 {
  color: #3f8cba;
}
.hours > div:last-child {
  border-bottom: 0;
}
.button-white {
  background: #fff;
}
.services-summary {
  max-width: 520px;
  margin: 30px 0 0;
  line-height: 1.55;
}
.hero h1 {
  font-size: 48px;
  line-height: 1.24;
}
@media (max-width: 900px) {
  .hero h1 {
    font-size: 40px;
    line-height: 1.25;
  }
}
@media (max-width: 560px) {
  .hero h1 {
    font-size: 30px;
    line-height: 38px;
  }
}
.section-light .split {
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (max-width: 900px) {
  .section-light .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.hero h1,
.section h2,
.eyebrow,
.hours-block h3 {
  font-weight: 700;
}
.service-phone {
  color: #3f8cba;
  font-size: inherit;
  font-weight: 700;
  text-decoration: none;
}
.service-phone:hover,
.service-phone:focus-visible {
  text-decoration: underline;
}
body {
  font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
  font-weight: 400;
}
.main-nav a {
  font-weight: 600;
}
.hero h1,
.section h2,
.hours-block h3 {
  font-weight: 600;
}
.eyebrow {
  font-weight: 700;
}
.doctor strong {
  font-weight: 600;
}
body {
  font-size: 18px;
  line-height: 1.62;
}
@media (max-width: 560px) {
  body {
    font-size: 17px;
    line-height: 27px;
  }
}
@media (max-width: 900px) {
  .main-nav a {
    display: flex;
    box-sizing: border-box;
    width: 100%;
    min-height: 48px;
    padding: 11px 14px;
    align-items: center;
  }
  .main-nav .nav-cta {
    padding: 11px 14px;
  }
  .main-nav .nav-cta::after {
    margin-left: auto;
  }
}
.nav-group {
  position: relative;
  display: flex;
  align-items: center;
}
.submenu-toggle {
  border: 0;
  padding: 6px;
  color: #717171;
  background: transparent;
  font: 700 18px/1 inherit;
  cursor: pointer;
}
.submenu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 14px);
  left: 0;
  display: none;
  width: 310px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}
.submenu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 18px;
  content: "";
}
.submenu a {
  display: block !important;
  width: 100%;
  padding: 11px 13px;
  font-size: 15px;
  line-height: 1.3;
}
.nav-group:hover .submenu,
.nav-group:focus-within .submenu,
.nav-group.submenu-open .submenu {
  display: block;
}
@media (max-width: 900px) {
  .nav-group {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr auto;
  }
  .nav-group > a {
    grid-column: 1;
  }
  .submenu-toggle {
    grid-column: 2;
    grid-row: 1;
    width: 48px;
  }
  .submenu {
    position: static;
    grid-column: 1/-1;
    width: 100%;
    padding: 4px 0 8px;
    box-shadow: none;
  }
  .nav-group:hover .submenu {
    display: none;
  }
  .nav-group.submenu-open .submenu {
    display: block;
  }
  .submenu a {
    min-height: 42px !important;
    padding-left: 30px !important;
    font-size: 15px !important;
  }
}
@media (max-width: 900px) {
  .nav-group {
    grid-template-columns: 1fr;
  }
  .submenu-toggle {
    display: none;
  }
  .nav-group .submenu,
  .nav-group:hover .submenu,
  .nav-group:focus-within .submenu {
    display: block;
  }
  .submenu {
    border-left: 2px solid rgba(63, 140, 186, 0.25);
    margin-left: 14px;
  }
}
