/*
Theme Name: XT Grid Theme
Author: Xtensive Web Design
Author URI: https://www.xtensive.co.uk
Description: A base theme built with CSS Grid
Version: 1.0
*/
/* Breakpoints */
/* Colors */
/* Weights */
/* Animation CSS */
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.site-header {
  background: #FFF;
  display: flex;
  flex-wrap: wrap;
  z-index: 200;
  position: relative;
}
.site-header .toolbar {
  width: 100%;
  background: #F2EBFF;
}
.site-header .toolbar .container {
  padding: 0.4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  color: #000;
  font-size: 0.8rem;
}
@media (min-width: 949px) {
  .site-header .toolbar .container {
    justify-content: flex-end;
  }
}
.site-header .toolbar .container iconify-icon {
  color: #AFA8BA;
  margin-right: 0.2rem;
}
.site-header .toolbar .container p {
  display: flex;
  align-items: center;
  margin: 0;
}
.site-header .toolbar .container p a {
  color: #000;
  text-decoration-color: transparent;
}
.site-header .container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
}
.site-header .logo {
  color: #000;
  text-transform: uppercase;
  font-size: 1.1rem;
  line-height: 1.3rem;
  letter-spacing: 0.1rem;
  padding: 0;
  margin: 0;
  text-decoration-color: transparent;
}
.site-header #mobile-button {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border: 0;
  background: none;
  cursor: pointer;
  -webkit-appearance: none;
}
.site-header #mobile-button iconify-icon {
  color: #000;
  transition: 0.3s;
}
.site-header #mobile-button iconify-icon:hover, .site-header #mobile-button iconify-icon:focus {
  color: #AFA8BA;
}
@media (min-width: 949px) {
  .site-header #mobile-button {
    display: none;
  }
}
.site-header #close-button {
  position: absolute;
  top: 10px;
  right: 0.5rem;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
}
.site-header #close-button iconify-icon {
  color: #F2EBFF;
  transition: 0.3s;
}
.site-header #close-button iconify-icon:hover, .site-header #close-button iconify-icon:focus {
  color: #AFA8BA;
}

#mobile-menu {
  width: 100%;
  max-width: 350px;
  height: 100%;
  position: fixed;
  top: 0;
  right: -100%;
  margin: 0;
  background: #000;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  padding: 0;
  transition: 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
#mobile-menu.active {
  opacity: 1;
  visibility: visible;
  right: 0;
  transition: 0.3s;
}
#mobile-menu .menu-main-menu-container {
  width: 100%;
}
#mobile-menu .menu {
  text-align: left;
  padding: 0;
  margin: 5rem 0 0 0;
}
#mobile-menu .menu li {
  width: 100%;
  position: relative;
}
#mobile-menu .menu li a {
  display: block;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  color: #FFF;
  text-decoration-color: transparent;
  transition: 0.3s;
  position: relative;
}
#mobile-menu .menu li a:hover, #mobile-menu .menu li a:focus {
  background: rgba(255, 255, 255, 0.2);
}
#mobile-menu .sub-menu {
  list-style-type: none;
  padding: 0;
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  display: none;
}
#mobile-menu .sub-menu.active {
  display: block;
}

.menu-item-10 a:first-child:after {
  position: absolute;
  content: " ";
  background: url("/wp-content/uploads/2024/05/arrow-white.png");
  background-size: contain !important;
  width: 12px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  bottom: 0;
  right: 1rem;
  transition: 0.3s;
}

.menu-item-10.active a::after {
  transform: rotate(90deg) translateX(-50%);
}

.menu-item-11 a:after, .menu-item-12 a:after, .menu-item-13 a:after {
  display: none;
}

#main-menu {
  display: none;
}
@media (min-width: 949px) {
  #main-menu {
    display: flex;
  }
}
#main-menu .menu-main-menu-container {
  width: 100%;
}
#main-menu .menu-main-menu-container .menu {
  display: flex;
  justify-content: flex-end;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
#main-menu .menu-main-menu-container .menu li a {
  color: #000;
  margin-left: 1rem;
  font-size: 0.9rem;
  text-decoration-color: transparent;
  display: block;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}
#main-menu .menu-main-menu-container .menu li a:hover, #main-menu .menu-main-menu-container .menu li a:focus {
  border-bottom: 2px solid #AFA8BA;
}
#main-menu .menu-main-menu-container .menu .sub-menu {
  position: absolute;
  background: #FFF;
  bottom: -112px;
  padding: 1rem 1rem 1.5rem 1rem;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  list-style-type: none;
  margin: 0;
  opacity: 0;
  transform: translateY(-1rem);
  transition: 0.3s;
}
#main-menu .menu-main-menu-container .menu .sub-menu li {
  margin-bottom: 1rem;
}
#main-menu .menu-main-menu-container .menu .sub-menu li:last-child {
  margin-bottom: 0;
}
#main-menu .menu-main-menu-container .menu .sub-menu li a {
  margin: 0;
  font-size: 1rem;
}
#main-menu .menu-main-menu-container .menu .sub-menu.active {
  opacity: 1;
  transform: translateY(0);
}

.page-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.page-overlay.active {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 949px) {
  .page-overlay.active {
    display: none;
  }
}

.site-footer {
  background: #AFA8BA;
  width: 100%;
}
.site-footer .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
}
.site-footer .container .box {
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
}
.site-footer .container .box:last-child {
  margin-bottom: 0;
}
.site-footer .container .box address {
  font-style: normal;
  line-height: 1.8rem;
  margin-bottom: 1rem;
}
.site-footer .container .box a {
  color: #000;
  text-decoration-color: transparent;
  transition: 0.3s;
}
.site-footer .container .box a:hover, .site-footer .container .box a:focus {
  text-decoration-color: #000;
}
.site-footer .container .box ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.site-footer .container .box ul li {
  margin-bottom: 1rem;
}
.site-footer .container .box ul li:last-child {
  margin-bottom: 0;
}
.site-footer .container .box:last-child img {
  width: 100px;
}
.site-footer .container .box:last-child p {
  font-size: 0.9rem;
  line-height: 1.5rem;
}
@media (min-width: 949px) {
  .site-footer .container .box {
    width: 25%;
    text-align: left;
  }
  .site-footer .container .box:last-child {
    width: 50%;
    text-align: right;
  }
}

.slider {
  width: 100%;
  position: relative;
  width: 100%;
  height: 400px;
}
.slider .slides {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.slider .slides .images {
  height: 400px;
  position: relative;
}
.slider .slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider .slides .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}
.slider .slides .overlay .title {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #FFF;
  font-weight: 300;
  padding: 0;
  margin: 0;
  position: relative;
  letter-spacing: 0.2rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}
@media (min-width: 949px) {
  .slider .slides .overlay .title {
    font-size: 2rem;
  }
}
.slider .slides .overlay .title:before {
  content: "WELCOME TO";
  position: absolute;
  font-size: 1rem;
  top: -1.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  letter-spacing: 0.2rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

.wp-block-media-text {
  margin: 4rem 0;
}
.wp-block-media-text:first-of-type {
  margin: 0 0 2rem 0;
}
.wp-block-media-text:last-of-type {
  margin-bottom: 0;
}
.wp-block-media-text .wp-block-media-text__content {
  margin: 2rem 0 0 0;
  padding: 0;
}
@media (min-width: 949px) {
  .wp-block-media-text .wp-block-media-text__content {
    padding: 4rem 0 4rem 2rem;
    margin: 0;
  }
}
.wp-block-media-text .wp-block-media-text__media {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
@media (min-width: 949px) {
  .wp-block-media-text .wp-block-media-text__media {
    margin: 0 2rem 0 0;
  }
}
.wp-block-media-text .wp-block-media-text__media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

@media (min-width: 949px) {
  .has-media-on-the-right .wp-block-media-text__content {
    padding: 4rem 2rem 4rem 0;
  }
}
.has-media-on-the-right .wp-block-media-text__media {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
@media (min-width: 949px) {
  .has-media-on-the-right .wp-block-media-text__media {
    margin: 0 0 0 2rem;
  }
}
.has-media-on-the-right .wp-block-media-text__media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

@media (max-width: 949px) {
  .wp-block-media-text.is-stacked-on-mobile {
    grid-template-columns: 100% !important;
  }
}
@media (max-width: 949px) {
  .wp-block-media-text.is-stacked-on-mobile > .wp-block-media-text__media {
    grid-column: 1;
    grid-row: 1;
  }
  .wp-block-media-text.is-stacked-on-mobile > .wp-block-media-text__content {
    grid-column: 1;
    grid-row: 2;
  }
}
.blog-main {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
}
@media (min-width: 576px) {
  .blog-main {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 949px) {
  .blog-main {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog-main .blog-post {
  color: #000;
  text-decoration-color: transparent;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-fill-mode: forwards;
}
.blog-main .blog-post:nth-child(1) {
  animation-delay: 0.3s;
}
.blog-main .blog-post:nth-child(2) {
  animation-delay: 0.4s;
}
.blog-main .blog-post:nth-child(3) {
  animation-delay: 0.5s;
}
.blog-main .blog-post:nth-child(4) {
  animation-delay: 0.6s;
}
.blog-main .blog-post:nth-child(5) {
  animation-delay: 0.7s;
}
.blog-main .blog-post:nth-child(8) {
  animation-delay: 0.8s;
}
.blog-main .blog-post:nth-child(9) {
  animation-delay: 0.9s;
}
.blog-main .blog-post:nth-child(n+10) {
  animation-delay: 1s;
}
.blog-main .blog-post .image {
  border-radius: 10px;
  overflow: hidden;
}
.blog-main .blog-post .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-main .blog-post .title {
  font-size: calc(1.1rem + 0.2vw);
  line-height: 1.6rem;
  padding: 0;
  margin: 0.5rem 0 0 0;
  text-transform: uppercase;
}
.blog-main .blog-post .meta {
  font-size: 0.9rem;
  margin: 0 0 0 0;
  padding: 0;
}
.blog-main .blog-navigation {
  grid-column: 1/2;
}
@media (min-width: 576px) {
  .blog-main .blog-navigation {
    grid-column: 1/3;
  }
}
@media (min-width: 949px) {
  .blog-main .blog-navigation {
    grid-column: 1/4;
  }
}
.blog-main .blog-navigation ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.blog-main .blog-navigation ul li a {
  padding: 0.5rem;
  border: 1px solid #000;
  border-radius: 4px;
  text-decoration-color: transparent;
  margin: 0 0.5rem;
  color: #000;
}
.blog-main .blog-navigation ul .active a {
  background: #AFA8BA;
  border-color: #AFA8BA;
  color: #000;
}

.single-blog-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.single-blog-content article {
  width: 100%;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}
@media (min-width: 949px) {
  .single-blog-content article {
    width: 60%;
  }
}
.single-blog-content article p {
  margin: 0 0 2rem 0;
}
.single-blog-content aside {
  display: none;
}
@media (min-width: 949px) {
  .single-blog-content aside {
    width: 35%;
    display: block;
    margin-left: 5%;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 1s ease;
    animation-fill-mode: forwards;
    animation-delay: 0.3s;
  }
}
.single-blog-content aside h2 {
  padding: 0;
  margin: 0 0 1rem 0;
}
.single-blog-content aside .wp-block-latest-posts.wp-block-latest-posts__list li {
  margin-bottom: 2rem;
}
.single-blog-content aside .wp-block-latest-posts__featured-image {
  border-radius: 10px;
  overflow: hidden;
}
.single-blog-content aside .wp-block-latest-posts__post-title {
  font-size: 1rem;
  color: #000;
  text-decoration-color: transparent;
}

.announcement-banner .has-medium-font-size {
  padding: 0;
  margin: 0;
}

.error {
  width: 100%;
  height: 100vh;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.error .content {
  max-width: 61.25rem;
  width: 100%;
  padding: 2rem;
  text-align: center;
}
.error .content h1 {
  font-size: 14rem;
  font-weight: 900;
  margin: 0;
  padding: 0;
  color: #000;
}
.error .content h3 {
  font-size: 5rem;
  font-weight: 900;
  color: #000;
  margin: 0;
  padding: 0;
}
.error .content h4 {
  font-size: 2rem;
  color: #000;
  margin-top: 0.625rem;
}
.error .content a {
  background: #FFF;
  border: 3px solid #000;
  color: #000;
  margin-top: 0.625rem;
  padding: 0.5rem 2rem;
  display: inline-block;
}
.error .content a:hover {
  background: #000;
  text-decoration: none;
  color: #FFF;
}

html {
  box-sizing: border-box;
  font-family: "area-normal", sans-serif;
  background: #F2EBFF;
}

* {
  box-sizing: inherit;
}

body {
  font-size: 16px;
  padding: 0;
  margin: 0;
}

.entry-content .alignwide {
  margin-left: -80px;
  margin-right: -80px;
}

.entry-content .alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 100vw;
}

.alignfull img {
  width: 100vw;
}

.js-scroll {
  opacity: 0;
  transition: opacity 500ms;
}

.js-scroll.scrolled {
  opacity: 1;
}

.scrolled.fade-in {
  animation: fade-in 1s ease-in-out both;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.home-video {
  width: 100%;
  height: calc(100svh - 103px);
  position: relative;
}
@media (min-width: 949px) {
  .home-video {
    height: calc(100svh - 114px);
  }
}
.home-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}
.home-video .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}
.home-video .overlay .title {
  font-size: calc(3rem + 0.5vw);
  line-height: 3.4rem;
  text-transform: uppercase;
  color: #FFF;
  font-weight: 300;
  padding: 0;
  margin: 0;
  position: relative;
  letter-spacing: 0.2rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}
.home-video .overlay .title:before {
  content: "Welcome to";
  position: absolute;
  font-size: 1rem;
  top: -2.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  letter-spacing: 0.2rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

.introduction {
  padding: 4rem 0;
}

.clinician-of-the-week {
  background: #FFF;
  width: 100%;
  padding: 2rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 949px) {
  .clinician-of-the-week {
    flex-direction: row;
  }
}
.clinician-of-the-week .clinician-bio {
  width: 100%;
}
@media (min-width: 949px) {
  .clinician-of-the-week .clinician-bio {
    width: 75%;
  }
}
.clinician-of-the-week .clinician-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.single-clinician {
  margin: 4rem 0;
}

.std-content-small {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.std-content-small h1 {
  font-size: calc(2rem + 0.5vw);
  font-weight: 400;
  padding: 0;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}
.std-content-small p {
  font-size: 1rem;
  line-height: 1.6rem;
}

.center {
  text-align: center;
}

.btn {
  background: #F2EBFF;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  color: #000;
  transition: 0.3s;
}
.btn:hover, .btn:focus {
  background: #AFA8BA;
}

.page-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.main-boxes {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 400px) {
  .main-boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 949px) {
  .main-boxes {
    grid-template-columns: repeat(3, 1fr);
  }
}
.main-boxes a {
  background: #FFF;
  width: 100%;
  padding: 2rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration-color: transparent;
  height: 150px;
  transition: 0.3s;
}
.main-boxes a:hover, .main-boxes a:focus {
  background: #f6f6f6;
}
.main-boxes a h2 {
  font-size: calc(1rem + 0.2vw);
  font-weight: 300;
  color: #000;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.wide-box {
  width: 100%;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 2rem;
  position: relative;
  display: block;
  transition: 0.3s;
}
.wide-box:hover .btn, .wide-box:focus .btn {
  background: #AFA8BA;
}
.wide-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wide-box .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  top: 0;
  left: 0;
  padding: 2rem;
}
@media (min-width: 949px) {
  .wide-box .overlay {
    align-items: flex-end;
  }
}
.wide-box .overlay h2 {
  color: #FFF;
  font-size: calc(1.2rem + 0.5vw);
  font-weight: 300;
  text-transform: uppercase;
  padding: 0;
  margin: 0 0 0.5rem 0;
}
.wide-box .overlay p {
  font-size: 1rem;
  color: #FFF;
  padding: 0;
  margin: 0;
}
.wide-box .overlay .btn {
  margin-top: 1rem;
}

.boxes-secondary {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.boxes-secondary a {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
}
@media (min-width: 949px) {
  .boxes-secondary a {
    width: 48%;
    margin-bottom: 0;
    margin-right: 2%;
  }
  .boxes-secondary a:nth-child(even) {
    margin-right: 0;
    margin-left: 2%;
  }
}
.boxes-secondary a:hover .overlay, .boxes-secondary a:focus .overlay {
  padding: 1rem 2rem;
}
.boxes-secondary a:last-child {
  margin-bottom: 0;
}
.boxes-secondary a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.boxes-secondary a .overlay {
  position: absolute;
  bottom: 2rem;
  width: auto;
  background: #F2EBFF;
  padding: 1rem 2rem 1rem 1rem;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  transition: 0.3s;
}
.boxes-secondary a .overlay h2 {
  font-size: calc(1.2rem + 0.2vw);
  font-weight: 300;
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  color: #000;
}

.home-news {
  width: 100%;
  padding: 4rem 0;
}
.home-news h2 {
  font-size: calc(2rem + 0.5vw);
  padding: 0;
  margin: 0 0 2rem 0;
  font-weight: 300;
  text-transform: uppercase;
}
.home-news .news-feed {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.home-news .news-feed .blog-post {
  width: 100%;
  margin-bottom: 2rem;
  text-decoration-color: transparent;
}
@media (min-width: 949px) {
  .home-news .news-feed .blog-post {
    width: 30%;
    margin-bottom: 0;
  }
  .home-news .news-feed .blog-post:nth-child(2) {
    margin: 0 5%;
  }
}
.home-news .news-feed .blog-post:last-child {
  margin-bottom: 0;
}
.home-news .news-feed .blog-post .image {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
}
.home-news .news-feed .blog-post .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-news .news-feed .blog-post .title {
  font-size: calc(1.1rem + 0.2vw);
  padding: 0;
  margin: 1rem 0 0 0;
  text-transform: uppercase;
  color: #000;
}
.home-news .news-feed .blog-post .meta {
  font-size: 0.9rem;
  margin: 0.5rem 0 0 0;
  padding: 0;
  color: #000;
}

.page-header {
  width: 100%;
  background: #AFA8BA;
  height: 400px;
  position: relative;
}
.page-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-header .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-header .overlay .container {
  padding: 1rem 2rem;
}
.page-header .overlay .container h1 {
  font-size: calc(3rem + 0.5vw);
  line-height: 3.4rem;
  max-width: 800px;
  padding: 0;
  margin: 0 0 1rem 0;
  color: #FFF;
  font-weight: 100;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-fill-mode: forwards;
}

.breadcrumbs {
  background: #AFA8BA;
}
.breadcrumbs .container {
  padding: 0.5rem 1rem;
}
.breadcrumbs .fbc-page .fbc-wrap .fbc-items {
  background-color: transparent;
  color: #000;
}
.breadcrumbs .fbc-page .fbc-wrap .fbc-items li.active span,
.breadcrumbs .fbc-page .fbc-wrap .fbc-items li .fbc-end-text {
  color: #000;
}
.breadcrumbs .fbc-page .fbc-wrap .fbc-items li .fbc-separator {
  color: #000;
}
.breadcrumbs .fbc-page .fbc-wrap .fbc-items li a {
  color: #000;
}

.std-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}
.std-content table {
  background: #FFF;
}
.std-content table a {
  color: #000;
}
.std-content a {
  color: #000;
}
.std-content .wp-block-media-text.has-media-on-the-right {
  grid-template-columns: 1fr;
}
@media (min-width: 949px) {
  .std-content .wp-block-media-text.has-media-on-the-right {
    grid-template-columns: 1fr 50%;
  }
}
.std-content .wp-block-media-text .wp-block-media-text__content {
  padding: 2rem;
  background: #FFF;
  grid-column: 1;
  grid-row: 2;
}
@media (min-width: 949px) {
  .std-content .wp-block-media-text .wp-block-media-text__content {
    grid-row: 1;
  }
}
.std-content .wp-block-media-text .wp-block-media-text__content h2 {
  padding: 0;
  margin: 0 0 1rem 0;
}
.std-content .wp-block-media-text .wp-block-media-text__media {
  grid-column: 1;
  grid-row: 1;
}
@media (min-width: 949px) {
  .std-content .wp-block-media-text .wp-block-media-text__media {
    grid-column: 2;
  }
}

.register-private {
  margin-bottom: 2rem !important;
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: #f6f6f6 !important;
}

.wp-block-cover {
  padding: 2rem;
}
.wp-block-cover h2 {
  padding: 0;
  margin: 0 0 1rem 0;
}

.registration-list {
  background: #AFA8BA;
  list-style-type: none;
  padding: 1rem;
  margin: 0;
  min-height: 250px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.registration-list li {
  border: 1px solid #F2EBFF;
  margin-bottom: 0.5rem;
  display: block;
  width: 100%;
}
.registration-list li:last-child {
  margin-bottom: 0;
}
.registration-list li a {
  text-decoration-color: transparent;
  transition: 0.3s;
  display: block;
  padding: 0.5rem;
}
.registration-list li a:hover, .registration-list li a:focus {
  background: #F2EBFF;
}

.register-box {
  width: 100%;
  background: #FFF;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 949px) {
  .register-box {
    flex-direction: row-reverse;
  }
}
.register-box .image {
  width: 100%;
  height: 300px;
  position: relative;
}
.register-box .image .boundary {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1rem;
}
@media (min-width: 949px) {
  .register-box .image {
    width: 50%;
    height: auto;
  }
}
.register-box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.register-box .content {
  width: 100%;
  padding: 2rem;
}
@media (min-width: 949px) {
  .register-box .content {
    width: 50%;
  }
}
.register-box .content h2 {
  padding: 0;
  margin: 0 0 1rem 0;
}

.appointment-box {
  width: 100%;
  background: #FFF;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 949px) {
  .appointment-box {
    flex-direction: row-reverse;
  }
}
.appointment-box .image {
  width: 100%;
  height: 300px;
  position: relative;
}
.appointment-box .image .boundary {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1rem;
}
@media (min-width: 949px) {
  .appointment-box .image {
    width: 50%;
    height: auto;
  }
}
.appointment-box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.appointment-box .content {
  width: 100%;
  padding: 2rem;
}
@media (min-width: 949px) {
  .appointment-box .content {
    width: 50%;
  }
}
.appointment-box .content h2 {
  padding: 0;
  margin: 0 0 1rem 0;
}

.registration {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.registration .register-text {
  width: 100%;
  background: #FFF;
  padding: 2rem;
}
@media (min-width: 949px) {
  .registration .register-text {
    width: 49%;
    margin-right: 1%;
  }
}
.registration .register-text h2 {
  padding: 0;
  margin: 0 0 1rem 0;
}
.registration .forms {
  background: #AFA8BA;
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
}
@media (min-width: 949px) {
  .registration .forms {
    width: 49%;
    margin-left: 1%;
  }
}
.registration .forms a {
  width: 100%;
  display: block;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  text-decoration-color: transparent;
  transition: 0.3s;
  background: #F2EBFF;
}
.registration .forms a:hover, .registration .forms a:focus {
  background: #e1d2ff;
}
.registration .forms a:last-child {
  margin-bottom: 0;
}

.twin-boxes {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.twin-boxes .box {
  width: 100%;
  background: #FFF;
  padding: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 949px) {
  .twin-boxes .box {
    width: 49%;
    margin-right: 1%;
  }
  .twin-boxes .box:nth-child(even) {
    margin-left: 1%;
    margin-right: 0;
  }
}
.twin-boxes .box h2 {
  padding: 0;
  margin: 0 0 1rem 0;
}

.full-box {
  width: 100%;
  background: #FFF;
  padding: 2rem;
}
.full-box h2 {
  padding: 0;
  margin: 0 0 1rem 0;
}

.full-box-private {
  margin-bottom: 2rem;
}

.non-english-speakers {
  width: 100%;
  background: #FFF;
  padding: 2rem;
}
.non-english-speakers h2 {
  padding: 0;
  margin: 0 0 1rem 0;
}
.non-english-speakers .languages {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.non-english-speakers .languages .box {
  width: 100%;
  margin-bottom: 1rem;
}
@media (min-width: 300px) {
  .non-english-speakers .languages .box {
    width: 50%;
  }
}
@media (min-width: 576px) {
  .non-english-speakers .languages .box {
    width: 33.333333%;
  }
}
@media (min-width: 949px) {
  .non-english-speakers .languages .box {
    width: 25%;
  }
}

.self-referral {
  background: #FFF;
  padding: 2rem;
  margin-top: 2rem;
}
.self-referral .referral-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
}
@media (min-width: 949px) {
  .self-referral .referral-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .self-referral .referral-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.self-referral .referral-list .box {
  border: 1px solid #eee;
  padding: 2rem;
}
.self-referral .referral-list .box h3 {
  padding: 0;
  margin: 0 0 1rem 0;
}

.who-we-are {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
  opacity: 0;
  transform: translateY(2rem);
  animation: fadeup 1s ease;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}
@media (min-width: 600px) {
  .who-we-are {
    grid-template-columns: 1fr 1fr;
  }
}
.who-we-are h2 {
  font-size: 2rem;
  width: 100%;
  grid-column: 1/2;
}
@media (min-width: 600px) {
  .who-we-are h2 {
    grid-column: 1/3;
  }
}
.who-we-are .bio {
  width: 100%;
  position: relative;
  background: #FFF;
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  color: #000;
  text-decoration-color: transparent;
  transition: 0.3s;
}
.who-we-are .bio .image {
  width: 25%;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
}
.who-we-are .bio .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.who-we-are .bio .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 1rem;
  width: 75%;
}
.who-we-are .bio .name {
  font-size: 1.3rem;
  font-weight: 900;
  padding: 0;
  margin: 0;
}
.who-we-are .bio p {
  margin: 0;
  padding: 0;
  font-size: 1rem;
}
.who-we-are .bio .bio-btn {
  color: #000;
  transition: 0.3s;
  border-bottom: 1px solid #FFF;
}
.who-we-are .bio:hover .content .bio-btn, .who-we-are .bio:focus .content .bio-btn {
  border-bottom: 1px solid #000;
}

.nurse-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
  opacity: 0;
  transform: translateY(2rem);
  animation: fadeup 1s ease;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}
@media (min-width: 600px) {
  .nurse-section {
    grid-template-columns: 1fr 1fr;
  }
}
.nurse-section h2 {
  font-size: 2rem;
  width: 100%;
  grid-column: 1/2;
}
@media (min-width: 600px) {
  .nurse-section h2 {
    grid-column: 1/3;
  }
}
.nurse-section .bio {
  width: 100%;
  position: relative;
  background: #FFF;
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
}
.nurse-section .bio .image {
  width: 25%;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
}
.nurse-section .bio .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nurse-section .bio .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 1rem;
  width: 75%;
}
.nurse-section .bio .name {
  font-size: 1.3rem;
  font-weight: 900;
  padding: 0;
  margin: 0;
}
.nurse-section .bio p {
  margin: 0;
  padding: 0;
  font-size: 1rem;
}

.team,
.allied,
.district,
.training,
.nurse {
  padding-top: 0;
}

/* animation css
opacity: 0;
      -webkit-animation: fadein 2s;
      -moz-animation: fadein 2s;
      -ms-animation: fadein 2s;
      -o-animation: fadein 2s;
      animation: fadein 2s;
      animation-delay: 1s;
      -webkit-animation-fill-mode: forwards;   *//*# sourceMappingURL=style.css.map */